Compare commits

..

No commits in common. "main" and "organize-maintenance-docs" have entirely different histories.

2766 changed files with 343480 additions and 392974 deletions

View file

@ -1,15 +0,0 @@
# Optional override for the hosted contact-form endpoint configured in src/config/contact.ts.
PUBLIC_CONTACT_FORM_ENDPOINT=
# Optional comma-separated fallback recipients used by the mailto fallback.
PUBLIC_CONTACT_RECIPIENTS=directors@familyfed.ie,info@familyfed.ie,media@familyfed.ie
# Optional override for the submissions URL configured in src/config/contact.ts.
PUBLIC_CONTACT_SUBMISSIONS_URL=
# Optional override for the Cloudflare Web Analytics dashboard link in admin.
PUBLIC_ANALYTICS_DASHBOARD_URL=
# Optional Plausible tracking in addition to Cloudflare Web Analytics.
PUBLIC_PLAUSIBLE_DOMAIN=familyfed.ie
PUBLIC_PLAUSIBLE_SCRIPT_SRC=https://plausible.io/js/script.js

View file

@ -1,87 +1,25 @@
name: Build and publish static site
on:
push:
workflow_dispatch:
concurrency:
group: site-${{ github.ref }}
cancel-in-progress: true
branches: [main]
jobs:
build:
deploy:
runs-on: docker
container:
image: node:24-bookworm
timeout-minutes: 30
env:
NODE_OPTIONS: --max-old-space-size=768
PUBLIC_ANALYTICS_DASHBOARD_URL: ${{ secrets.PUBLIC_ANALYTICS_DASHBOARD_URL }}
PUBLIC_CONTACT_FORM_ENDPOINT: ${{ secrets.PUBLIC_CONTACT_FORM_ENDPOINT }}
PUBLIC_CONTACT_RECIPIENTS: ${{ secrets.PUBLIC_CONTACT_RECIPIENTS }}
PUBLIC_CONTACT_SUBMISSIONS_URL: ${{ secrets.PUBLIC_CONTACT_SUBMISSIONS_URL }}
PUBLIC_PLAUSIBLE_DOMAIN: ${{ secrets.PUBLIC_PLAUSIBLE_DOMAIN }}
PUBLIC_PLAUSIBLE_SCRIPT_SRC: ${{ secrets.PUBLIC_PLAUSIBLE_SCRIPT_SRC }}
steps:
- uses: actions/checkout@v4
- name: Install validation tools
run: |
apt-get update -qq
apt-get install -y -q python3
- name: Install dependencies
run: npm ci --no-audit --no-fund
- name: Build and validate Astro output
run: npm run check
- name: Split public and protected admin bundles
run: |
set -eu
rm -rf bundle-public bundle-admin
mkdir -p bundle-public bundle-admin/admin bundle-admin/css
cp -a dist/. bundle-public/
rm -rf bundle-public/admin bundle-public/admin.html
test ! -e bundle-public/admin
test ! -e bundle-public/admin.html
cp dist/admin/index.html bundle-admin/index.html
cp dist/admin/index.html bundle-admin/admin/index.html
cp -a dist/admin/content bundle-admin/admin/content
cp dist/css/admin.css bundle-admin/css/admin.css
- name: Install Garage publishing tools
if: github.ref == 'refs/heads/main'
run: |
set -eu
apt-get update -qq
apt-get install -y -q ca-certificates python3-venv
python3 -m venv /opt/awscli
/opt/awscli/bin/pip install --quiet awscli
- name: Publish main to Garage
if: github.ref == 'refs/heads/main'
- name: Restart Nomad allocation
env:
AWS_ACCESS_KEY_ID: ${{ secrets.GARAGE_REPLICATED_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.GARAGE_REPLICATED_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: garage-replicated
GARAGE_S3_ENDPOINT: https://s3-replicated.bcgen.ie
NOMAD_ADDR: ${{ secrets.NOMAD_ADDR }}
NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }}
run: |
set -eu
aws=/opt/awscli/bin/aws
common="--endpoint-url $GARAGE_S3_ENDPOINT --no-progress"
$aws $common s3 sync bundle-public s3://familyfed.ie --delete \
--cache-control 'public, max-age=3600, must-revalidate'
$aws $common s3 cp bundle-public s3://familyfed.ie --recursive \
--exclude '*' --include '*.html' \
--cache-control 'public, max-age=0, must-revalidate'
$aws $common s3 cp bundle-public s3://familyfed.ie --recursive \
--exclude '*' --include '*.json' \
--cache-control 'public, max-age=0, must-revalidate'
$aws $common s3 sync bundle-admin s3://admin.familyfed.ie --delete \
--cache-control 'private, max-age=0, must-revalidate'
$aws $common s3 cp bundle-admin s3://admin.familyfed.ie --recursive \
--cache-control 'private, no-store'
set -e
ALLOC_ID=$(curl -sf \
-H "X-Nomad-Token: $NOMAD_TOKEN" \
"$NOMAD_ADDR/v1/job/familyfed/allocations" \
| python3 -c "import sys,json; allocs=json.load(sys.stdin); print(next(a['ID'] for a in allocs if a['ClientStatus']=='running'))")
echo "Stopping allocation to trigger fresh prestart: $ALLOC_ID"
curl -sf -X POST \
-H "X-Nomad-Token: $NOMAD_TOKEN" \
"$NOMAD_ADDR/v1/allocation/$ALLOC_ID/stop"
echo "Deploy triggered — Nomad will schedule a new alloc that re-fetches the site."

16
.gitignore vendored
View file

@ -1,17 +1 @@
.DS_Store
Thumbs.db
*.tmp
*.bak
*~
.env
.env.*
!.env.example
npm-debug.log*
yarn-debug.log*
yarn-error.log*
node_modules/
dist/
.astro/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

104
AGENTS.md
View file

@ -1,75 +1,77 @@
# AGENTS.md - Family Fed Ireland website
# AGENTS.md Family Fed Ireland website
This repository is for local work only. Do not treat it as a live production
server, and do not avoid changes because of live URL concerns unless the user
explicitly says a change must preserve a URL.
This file tells any AI coding assistant how to work on this website. Read it before
making changes.
## What This Is
## What this is
This is an Astro-built static website. `content/` is the future source of truth
for editable blog and speech content. `archive-source/` keeps legacy exported
HTML plus CSS, JavaScript, images, PDFs, and other static assets while the
migration continues.
A static replica of the **Family Fed Ireland** website (familyfed.ie). It is a
**plain static site**: HTML, CSS, JavaScript and image assets with **no build step
and no dependencies**. The files in this repo are served to visitors *exactly as they
are committed* — what you see locally is what goes live.
## Working Rules
The replica is served at **https://familyfed.bcgen.ie**.
- All files in this repository may be changed when needed.
- For requested website changes, deploy the completed change to the live site by
default. Do not start or present a local preview unless the user explicitly
asks for one.
- When the user says to move something, move it. Do not only copy it or create a
parallel structure unless the user specifically asks for a copy.
- If moving files requires updating links, imports, scripts, stylesheets, image
paths, or documentation, update those references too.
- Keep the structure simple and close to what the user asks for.
- `.forgejo/` and deployment configuration are not special unless the user says
they are.
- Feature-branch Actions build and validate only. Production Garage publishing
is restricted to commits on `main`.
## Repo Map
## Repo map
| Path | What it is |
|------|------------|
| `content/` | Future source of truth for editable speeches and blog posts |
| `archive-source/index.html` | Legacy exported home page |
| `archive-source/about.html` | Legacy exported about page |
| `archive-source/contact.html` | Legacy exported contact page with the form |
| `archive-source/` | Legacy exported HTML pages, blog posts, speech archives, categories, and tags |
| `archive-source/PAGES.md` | Map from old folder paths to current HTML paths |
| `src/pages/` | Astro endpoints that generate static output from `archive-source/` where routes are not migrated |
| `src/components/` | Astro components for shared layout migration |
| `dist/` | Generated static output from `npm run build` |
| `css/` | Site-level stylesheets |
| `css/theme.css` | Extracted Parabola inline theme settings |
| `css/site.css` | Extracted site fixes and homepage/frontpage rules |
| `js/` | Site-level scripts |
| `assets/` | Images, PDFs, fonts, theme files, uploads, and static vendor files |
| `index.html` | Home page |
| `*/index.html` | Public pages and archives; folder names are live URL paths |
| `blog/` | Mirrored blog archive, category, tag, and dated pages |
| `assets/` | CSS, JavaScript, fonts, images, PDFs, and static vendor files |
| `docs/` | Maintainer notes and site-structure documentation |
| `.forgejo/` | **Deploy automation — do not touch** (see "Guardrails") |
## Local Preview
Treat top-level content folders as production URLs. Do not move or rename them
unless redirects are planned outside this repo.
For Astro development:
Preview through a local web server, not by opening the `.html` file directly, so
that absolute links (e.g. `/css/style.css`) resolve.
## The workflow (follow this every time)
### 1. Make changes on a branch
Never edit `main` directly. Start from an up-to-date `main` and create a branch:
```bash
npm run dev
git checkout main && git pull
git checkout -b describe-your-change
```
For a production-style Astro preview:
### 2. Preview locally before shipping
From the repo root, start a local server and open it in a browser:
```bash
npm run build
npm run preview
python3 -m http.server 8000
# then open http://localhost:8000
```
For a build health check:
Visually check every page you touched. **Do not ship a change you have not previewed.**
### 3. Open a pull request into `main`
When it looks right, commit, push the branch, and open a PR targeting `main`:
```bash
npm run check
git add -A
git commit -m "Describe your change"
git push -u origin describe-your-change
```
Then open:
### 4. Merge to publish
Merging the PR into `main` triggers automatic deployment. The live site at
**https://familyfed.bcgen.ie** updates within about a minute. There is nothing else
to run or deploy.
```text
http://localhost:4321/
```
## Guardrails
- **Keep it dependency-free static HTML/CSS/JS.** No frameworks, bundlers, or build
tools — anything added to the repo is served raw.
- **Never edit `.forgejo/`** or anything related to deployment/hosting. That is managed
separately; changing it can break publishing.
- Keep new images in `assets/`, prefer modern formats (`.webp`/`.avif`) where possible,
and keep them reasonably small so pages load fast.
- After editing, check that internal links and images still resolve (you'll catch this
in the local preview).
- Match the existing style and reuse the classes already defined under `css/` rather
than inventing new patterns.

2
CLAUDE.md Normal file
View file

@ -0,0 +1,2 @@
See [AGENTS.md](./AGENTS.md) for how to work on this website (repo layout, local
preview, and the branch → PR → merge-to-publish workflow).

138
README.md
View file

@ -1,127 +1,29 @@
# familyfedie-website
Local static website files built with Astro.
A static replica of the **Family Fed Ireland** website (familyfed.ie) — plain
HTML/CSS/JS, served exactly as committed.
`content/` is the future source of truth for editable blog and speech content.
`archive-source/` keeps the legacy exported HTML used by the current static
archive routes while the migration continues.
Live at **https://familyfed.bcgen.ie**.
## Project Structure
## Project structure
- `content/` - future source of truth for editable speeches and blog posts
- `archive-source/` - legacy exported HTML pages and archive pages
- `src/content/pages/` - preserved HTML body fragments for migrated public pages
- `src/pages/` - Astro routes for migrated public pages plus the static archive catch-all
- `src/components/` - Astro components for shared page layout
- `dist/` - generated static output from `npm run build`
- `src/pages/index.astro` - homepage route generated from migrated content
- `src/pages/about.astro` - about page route generated from migrated content
- `src/pages/contact.astro` - contact page route generated from migrated content
- `archive-source/index.html`, `archive-source/about.html`, `archive-source/contact.html` - original exported source for migrated public pages
- `archive-source/blog/YYYY/MM/DD/` - legacy dated blog post pages
- `archive-source/blog/categories/` - legacy blog category archive pages
- `archive-source/blog/tags/` - legacy blog tag archive pages
- `archive-source/speeches/` - legacy speech archive indexes and speech category pages
- `archive-source/PAGES.md` - map from the old folder URLs to the current HTML paths
- `css/` - site-level stylesheets
- `css/theme.css` - extracted Parabola inline theme settings
- `css/site.css` - extracted site fixes and homepage/frontpage rules
- `js/` - site-level scripts
- `assets/` - images, PDFs, fonts, theme files, uploads, and vendor files
- `docs/` - maintainer notes
- `scripts/components.mjs` - shared nav/sidebar/footer components
- `scripts/render-shared-layout.mjs` - updates repeated layout across HTML files
- `scripts/organize-content.mjs` - organizes exported blog and speech pages
- `scripts/extract-content.mjs` - extracts posts into `content/`
- `scripts/extract-theme-css.mjs` - extracts repeated inline theme CSS into files
This site is maintained as static HTML/CSS/JS. Top-level folders such as
`about-us/`, `events/`, `services/`, and `2013-sunday-service-archive/` are public
URLs, so do not move or rename them without also planning redirects.
## Maintenance
- `index.html` — home page
- `*/index.html` — public pages and archives
- `blog/` — mirrored blog archive pages
- `assets/` — CSS, JavaScript, fonts, images, PDFs, and static vendor files
- `docs/` — maintainer notes and structure guides
- `.forgejo/` — deploy automation, do not edit during content work
Run Astro locally while editing:
## Editing & deploy
```bash
npm run dev
```
Plain static files, no build step. Edit on a branch, **preview locally**
(`python3 -m http.server 8000` → http://localhost:8000), open a PR into `main`, and
merge — merging `main` auto-deploys to the live site within ~1 minute.
Check that the generated site builds successfully:
```bash
npm run check
```
Run the static link and media audit against the generated `dist/` output:
```bash
npm run audit:links
```
Regenerate Markdown content from the legacy exported post HTML:
```bash
npm run extract:content
```
The important public pages are now Astro routes that reuse shared layout
components. The large blog and speech archive is still served from legacy
exported HTML in `archive-source/` through `src/pages/[...route].ts`.
The repeated exported inline styles have been moved into `css/theme.css` and
`css/site.css`. Tiny one-page WordPress block-support styles may still remain
inline when they only apply to a single page.
After changing shared navigation, sidebar, or footer markup in
`scripts/components.mjs`, run:
```bash
npm run render:layout
```
## Local Preview
Run Astro locally while editing:
```bash
npm run dev
```
Then open Astro's local URL, usually:
```text
http://localhost:4321/
```
For a production-style Astro preview, build the static output first:
```bash
npm run build
```
Then serve `dist/` with Astro preview:
```bash
npm run preview
```
Then open:
```text
http://localhost:4321/
```
## Deployment
This project deploys as a static Astro build through Forgejo Actions. Every
branch push installs dependencies, builds the complete site, audits its links,
and prepares the separate public and protected-admin bundles. Feature branches
never receive Garage publishing credentials and never change production.
Only commits on `main` synchronize the validated bundles to `familyfed.ie` and
`admin.familyfed.ie` in Garage. A manual workflow dispatch is subject to the
same branch guard: dispatching a feature branch builds it but cannot publish it.
The equivalent local validation is:
```bash
npm ci
npm run check
```
See **[AGENTS.md](./AGENTS.md)** for the full workflow and
**[docs/SITE-STRUCTURE.md](./docs/SITE-STRUCTURE.md)** for a maintainer-oriented
map of what lives where.

198
about-us/index.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2013/">
<link rel="canonical" href="/archive-sunday-services-2013.html">
<title>2013 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2013/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2013.html">/archive/sunday-services/2013/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2014/">
<link rel="canonical" href="/archive-sunday-services-2014.html">
<title>2014 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2014/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2014.html">/archive/sunday-services/2014/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2015/">
<link rel="canonical" href="/archive-sunday-services-2015.html">
<title>2015 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2015/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2015.html">/archive/sunday-services/2015/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2016/">
<link rel="canonical" href="/archive-sunday-services-2016.html">
<title>2016 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2016/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2016.html">/archive/sunday-services/2016/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2017/">
<link rel="canonical" href="/archive-sunday-services-2017.html">
<title>2017 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2017/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2017.html">/archive/sunday-services/2017/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0; url=/archive/sunday-services/2018/">
<link rel="canonical" href="/archive-sunday-services-2018.html">
<title>2018 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2018/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body>
<p>This page has moved to <a href="/archive-sunday-services-2018.html">/archive/sunday-services/2018/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,929 +0,0 @@
# Website Pages
HTML files moved from the previous WordPress-style folder structure. Blog posts now live under `blog/YYYY/MM/DD/`, blog categories and tags live under `blog/categories/` and `blog/tags/`, and speech indexes live under `speeches/`.
- `2013-sunday-service-archive.html` - moved from `/2013-sunday-service-archive/`
- `2014-sunday-services.html` - moved from `/2014-sunday-services/`
- `2015-sunday-services-archive.html` - moved from `/2015-sunday-services-archive/`
- `2016-sunday-service-archive.html` - moved from `/2016-sunday-service-archive/`
- `2017-sunday-service-archive.html` - moved from `/2017-sunday-service-archive/`
- `2018-sunday-service-archive.html` - moved from `/2018-sunday-service-archive/`
- `about-us-organizations.html` - moved from `/about-us/organizations/`
- `about.html` - moved from `/about-us/`
- `speeches/rev-dr-sun-myung-moon/1956.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1956/`
- `speeches/rev-dr-sun-myung-moon/1957.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1957/`
- `speeches/rev-dr-sun-myung-moon/1958.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1958/`
- `speeches/rev-dr-sun-myung-moon/1959.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1959/`
- `speeches/rev-dr-sun-myung-moon/1965.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1965/`
- `speeches/rev-dr-sun-myung-moon/1971.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1971/`
- `speeches/rev-dr-sun-myung-moon/1972.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1972/`
- `speeches/rev-dr-sun-myung-moon/1976.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1976/`
- `speeches/rev-dr-sun-myung-moon/1977.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1977/`
- `speeches/rev-dr-sun-myung-moon/1978.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1978/`
- `speeches/rev-dr-sun-myung-moon/1979.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1979/`
- `speeches/rev-dr-sun-myung-moon/1980.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1980/`
- `speeches/rev-dr-sun-myung-moon/1981.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1981/`
- `speeches/rev-dr-sun-myung-moon/1982.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1982/`
- `speeches/rev-dr-sun-myung-moon/1983.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1983/`
- `speeches/rev-dr-sun-myung-moon/1984.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1984/`
- `speeches/rev-dr-sun-myung-moon/1985.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1985/`
- `speeches/rev-dr-sun-myung-moon/1986.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1986/`
- `speeches/rev-dr-sun-myung-moon/1987.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1987/`
- `speeches/rev-dr-sun-myung-moon/1988.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1988/`
- `speeches/rev-dr-sun-myung-moon/1989.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1989/`
- `speeches/rev-dr-sun-myung-moon/1990.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1990/`
- `speeches/rev-dr-sun-myung-moon/1991.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1991/`
- `speeches/rev-dr-sun-myung-moon/1992.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1992/`
- `speeches/rev-dr-sun-myung-moon/1993.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1993/`
- `speeches/rev-dr-sun-myung-moon/1994.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1994/`
- `speeches/rev-dr-sun-myung-moon/1995.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1995/`
- `speeches/rev-dr-sun-myung-moon/1996.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1996/`
- `speeches/rev-dr-sun-myung-moon/1997.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1997/`
- `speeches/rev-dr-sun-myung-moon/1998.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1998/`
- `speeches/rev-dr-sun-myung-moon/1999.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/1999/`
- `speeches/rev-dr-sun-myung-moon/2000.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2000/`
- `speeches/rev-dr-sun-myung-moon/2001.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2001/`
- `speeches/rev-dr-sun-myung-moon/2002.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2002/`
- `speeches/rev-dr-sun-myung-moon/2003.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2003/`
- `speeches/rev-dr-sun-myung-moon/2004.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2004/`
- `speeches/rev-dr-sun-myung-moon/2005.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2005/`
- `speeches/rev-dr-sun-myung-moon/2006.html` - moved from `/archive/speeches/rev-dr-sun-myung-moon/2006/`
- `speeches/index.html` - moved from `/archive/speeches/`
- `archive-sunday-services-2013.html` - moved from `/archive/sunday-services/2013/`
- `archive-sunday-services-2014.html` - moved from `/archive/sunday-services/2014/`
- `archive-sunday-services-2015.html` - moved from `/archive/sunday-services/2015/`
- `archive-sunday-services-2016.html` - moved from `/archive/sunday-services/2016/`
- `archive-sunday-services-2017.html` - moved from `/archive/sunday-services/2017/`
- `archive-sunday-services-2018.html` - moved from `/archive/sunday-services/2018/`
- `blog/2013/08/03/news.html` - moved from `/blog/2013/08/03/news/`
- `blog/2013/10/25/add-event.html` - moved from `/blog/2013/10/25/add-event/`
- `blog/2014/03/30/divine-principle-introduction-evening.html` - moved from `/blog/2014/03/30/divine-principle-introduction-evening/`
- `blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html` - moved from `/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine/`
- `blog/2015/08/26/celebrating-the-life-of-rev-moon.html` - moved from `/blog/2015/08/26/celebrating-the-life-of-rev-moon/`
- `blog/2016/01/03/happy-new-year.html` - moved from `/blog/2016/01/03/happy-new-year/`
- `blog/2018/05/20/jesus-christ-the-pride-of-god.html` - moved from `/blog/2018/05/20/jesus-christ-the-pride-of-god/`
- `blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html` - moved from `/blog/2018/05/20/jesus-is-searching-for-us-in-this-way/`
- `blog/2018/05/20/let-us-become-the-elite-troop-of-god.html` - moved from `/blog/2018/05/20/let-us-become-the-elite-troop-of-god/`
- `blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html` - moved from `/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth/`
- `blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html` - moved from `/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god/`
- `blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html` - moved from `/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts/`
- `blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html` - moved from `/blog/2018/05/22/let-us-bring-out-the-value-of-restoration/`
- `blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html` - moved from `/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him/`
- `blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html` - moved from `/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification/`
- `blog/2018/05/22/the-pledge-that-must-be-fulfilled.html` - moved from `/blog/2018/05/22/the-pledge-that-must-be-fulfilled/`
- `blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html` - moved from `/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root/`
- `blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html` - moved from `/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world/`
- `blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html` - moved from `/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution/`
- `blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html` - moved from `/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind/`
- `blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html` - moved from `/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god/`
- `blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html` - moved from `/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes/`
- `blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html` - moved from `/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven/`
- `blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html` - moved from `/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality/`
- `blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html` - moved from `/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope/`
- `blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html` - moved from `/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world/`
- `blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html` - moved from `/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration/`
- `blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html` - moved from `/blog/2018/06/02/jesus-who-is-to-establish-heavens-love/`
- `blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html` - moved from `/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate/`
- `blog/2018/06/02/let-us-be-the-ones-jesus-wants.html` - moved from `/blog/2018/06/02/let-us-be-the-ones-jesus-wants/`
- `blog/2018/06/04/for-whom-are-we-living.html` - moved from `/blog/2018/06/04/for-whom-are-we-living/`
- `blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html` - moved from `/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires/`
- `blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html` - moved from `/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven/`
- `blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html` - moved from `/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice/`
- `blog/2018/06/04/let-us-untie-the-knot.html` - moved from `/blog/2018/06/04/let-us-untie-the-knot/`
- `blog/2018/06/04/the-lord-is-my-good-shepherd.html` - moved from `/blog/2018/06/04/the-lord-is-my-good-shepherd/`
- `blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven/`
- `blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html` - moved from `/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish/`
- `blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html` - moved from `/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized/`
- `blog/2018/06/05/heaven-is-calling-us.html` - moved from `/blog/2018/06/05/heaven-is-calling-us/`
- `blog/2018/06/05/jesus-true-heart-for-god.html` - moved from `/blog/2018/06/05/jesus-true-heart-for-god/`
- `blog/2018/06/05/let-the-sleeping-world-awaken.html` - moved from `/blog/2018/06/05/let-the-sleeping-world-awaken/`
- `blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html` - moved from `/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness/`
- `blog/2018/06/05/let-us-be-a-victor-for-god.html` - moved from `/blog/2018/06/05/let-us-be-a-victor-for-god/`
- `blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html` - moved from `/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god/`
- `blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html` - moved from `/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land/`
- `blog/2018/06/05/let-us-be-the-people-who-attend-god.html` - moved from `/blog/2018/06/05/let-us-be-the-people-who-attend-god/`
- `blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html` - moved from `/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family/`
- `blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html` - moved from `/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord/`
- `blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html` - moved from `/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus/`
- `blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven/`
- `blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html` - moved from `/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow/`
- `blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html` - moved from `/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father/`
- `blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html` - moved from `/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven/`
- `blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html` - moved from `/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune/`
- `blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html` - moved from `/blog/2018/06/05/let-us-establish-the-glorious-original-homeland/`
- `blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html` - moved from `/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden/`
- `blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html` - moved from `/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland/`
- `blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html` - moved from `/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will/`
- `blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html` - moved from `/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness/`
- `blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html` - moved from `/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path/`
- `blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html` - moved from `/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ/`
- `blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html` - moved from `/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon/`
- `blog/2018/06/05/the-meaning-of-the-trinity.html` - moved from `/blog/2018/06/05/the-meaning-of-the-trinity/`
- `blog/2018/06/05/the-path-its-purpose-and-its-value.html` - moved from `/blog/2018/06/05/the-path-its-purpose-and-its-value/`
- `blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html` - moved from `/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will/`
- `blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html` - moved from `/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose/`
- `blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html` - moved from `/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden/`
- `blog/2018/06/05/when-will-we-stand-before-god.html` - moved from `/blog/2018/06/05/when-will-we-stand-before-god/`
- `blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html` - moved from `/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell/`
- `blog/2018/06/05/why-does-the-lord-have-to-come-back.html` - moved from `/blog/2018/06/05/why-does-the-lord-have-to-come-back/`
- `blog/2018/06/06/let-us-experience-the-sorrow-of-god.html` - moved from `/blog/2018/06/06/let-us-experience-the-sorrow-of-god/`
- `blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html` - moved from `/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven/`
- `blog/2018/06/06/oh-father-we-welcome-you.html` - moved from `/blog/2018/06/06/oh-father-we-welcome-you/`
- `blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html` - moved from `/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks/`
- `blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html` - moved from `/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love/`
- `blog/2018/06/06/to-whom-do-you-belong.html` - moved from `/blog/2018/06/06/to-whom-do-you-belong/`
- `blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html` - moved from `/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity/`
- `blog/2018/06/07/at-a-field-service.html` - moved from `/blog/2018/06/07/at-a-field-service/`
- `blog/2018/06/07/gods-possession-and-our-possession.html` - moved from `/blog/2018/06/07/gods-possession-and-our-possession/`
- `blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html` - moved from `/blog/2018/06/07/humankind-wanders-in-search-of-the-truth/`
- `blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html` - moved from `/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration/`
- `blog/2018/06/07/let-us-be-persons-of-forbearance.html` - moved from `/blog/2018/06/07/let-us-be-persons-of-forbearance/`
- `blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html` - moved from `/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals/`
- `blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html` - moved from `/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn/`
- `blog/2018/06/07/let-us-become-survivors.html` - moved from `/blog/2018/06/07/let-us-become-survivors/`
- `blog/2018/06/07/let-us-become-the-true-sons-god-wants.html` - moved from `/blog/2018/06/07/let-us-become-the-true-sons-god-wants/`
- `blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html` - moved from `/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father/`
- `blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html` - moved from `/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer/`
- `blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html` - moved from `/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus/`
- `blog/2018/06/07/the-forsaken-jesus.html` - moved from `/blog/2018/06/07/the-forsaken-jesus/`
- `blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html` - moved from `/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain/`
- `blog/2018/06/07/the-world-of-ideology-which-we-seek.html` - moved from `/blog/2018/06/07/the-world-of-ideology-which-we-seek/`
- `blog/2018/06/07/who-will-become-the-friend-of-golgotha.html` - moved from `/blog/2018/06/07/who-will-become-the-friend-of-golgotha/`
- `blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html` - moved from `/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years/`
- `blog/2018/06/10/a-true-man-a-man-of-truth.html` - moved from `/blog/2018/06/10/a-true-man-a-man-of-truth/`
- `blog/2018/06/10/god-and-humanity-should-live-together.html` - moved from `/blog/2018/06/10/god-and-humanity-should-live-together/`
- `blog/2018/06/10/gods-will-which-we-must-untangle.html` - moved from `/blog/2018/06/10/gods-will-which-we-must-untangle/`
- `blog/2018/06/10/heavens-sorrowful-heart.html` - moved from `/blog/2018/06/10/heavens-sorrowful-heart/`
- `blog/2018/06/10/i-am-relating-with-two-worlds.html` - moved from `/blog/2018/06/10/i-am-relating-with-two-worlds/`
- `blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html` - moved from `/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil/`
- `blog/2018/06/10/inside-gods-stadium.html` - moved from `/blog/2018/06/10/inside-gods-stadium/`
- `blog/2018/06/10/jesus-whom-god-wanted-to-find.html` - moved from `/blog/2018/06/10/jesus-whom-god-wanted-to-find/`
- `blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html` - moved from `/blog/2018/06/10/let-us-fathom-the-heart-of-heaven/`
- `blog/2018/06/10/let-us-follow-the-way-of-jesus.html` - moved from `/blog/2018/06/10/let-us-follow-the-way-of-jesus/`
- `blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html` - moved from `/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us/`
- `blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html` - moved from `/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky/`
- `blog/2018/06/10/let-us-regain-the-victorious-nation.html` - moved from `/blog/2018/06/10/let-us-regain-the-victorious-nation/`
- `blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html` - moved from `/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud/`
- `blog/2018/06/10/longing-for-eden.html` - moved from `/blog/2018/06/10/longing-for-eden/`
- `blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html` - moved from `/blog/2018/06/10/man-is-an-explorer-in-search-of-truth/`
- `blog/2018/06/10/members-who-will-live-in-gods-family.html` - moved from `/blog/2018/06/10/members-who-will-live-in-gods-family/`
- `blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html` - moved from `/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home/`
- `blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html` - moved from `/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell/`
- `blog/2018/06/10/oh-where-shall-i-go.html` - moved from `/blog/2018/06/10/oh-where-shall-i-go/`
- `blog/2018/06/10/parents-day.html` - moved from `/blog/2018/06/10/parents-day/`
- `blog/2018/06/10/process-of-restoration.html` - moved from `/blog/2018/06/10/process-of-restoration/`
- `blog/2018/06/10/the-father-and-i.html` - moved from `/blog/2018/06/10/the-father-and-i/`
- `blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven/`
- `blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html` - moved from `/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah/`
- `blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html` - moved from `/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope/`
- `blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html` - moved from `/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer/`
- `blog/2018/06/10/the-path-in-search-of-the-original-homeland.html` - moved from `/blog/2018/06/10/the-path-in-search-of-the-original-homeland/`
- `blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html` - moved from `/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully/`
- `blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html` - moved from `/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope/`
- `blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html` - moved from `/blog/2018/06/10/the-person-who-will-serve-the-grieving-father/`
- `blog/2018/06/10/the-religious-persons-attitude.html` - moved from `/blog/2018/06/10/the-religious-persons-attitude/`
- `blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html` - moved from `/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain/`
- `blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html` - moved from `/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children/`
- `blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html` - moved from `/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days/`
- `blog/2018/06/10/untitled-leaders-address.html` - moved from `/blog/2018/06/10/untitled-leaders-address/`
- `blog/2018/06/10/we-who-are-walking-a-life-course.html` - moved from `/blog/2018/06/10/we-who-are-walking-a-life-course/`
- `blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html` - moved from `/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me/`
- `blog/2018/06/10/when-we-should-stay-awake-with-heaven.html` - moved from `/blog/2018/06/10/when-we-should-stay-awake-with-heaven/`
- `blog/2018/06/11/a-pioneer-must-have-endurance.html` - moved from `/blog/2018/06/11/a-pioneer-must-have-endurance/`
- `blog/2018/06/11/america-and-gods-will.html` - moved from `/blog/2018/06/11/america-and-gods-will/`
- `blog/2018/06/11/boundary-line.html` - moved from `/blog/2018/06/11/boundary-line/`
- `blog/2018/06/11/childrens-day.html` - moved from `/blog/2018/06/11/childrens-day/`
- `blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html` - moved from `/blog/2018/06/11/divine-providence-and-the-turning-point-of-history/`
- `blog/2018/06/11/gods-hope-for-america.html` - moved from `/blog/2018/06/11/gods-hope-for-america/`
- `blog/2018/06/11/gods-will-and-christmas.html` - moved from `/blog/2018/06/11/gods-will-and-christmas/`
- `blog/2018/06/11/history-of-the-unification-church-part-1.html` - moved from `/blog/2018/06/11/history-of-the-unification-church-part-1/`
- `blog/2018/06/11/history-of-the-unification-church-part-2.html` - moved from `/blog/2018/06/11/history-of-the-unification-church-part-2/`
- `blog/2018/06/11/history-of-the-unification-church-part-3.html` - moved from `/blog/2018/06/11/history-of-the-unification-church-part-3/`
- `blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html` - moved from `/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence/`
- `blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html` - moved from `/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family/`
- `blog/2018/06/11/on-jesus-family.html` - moved from `/blog/2018/06/11/on-jesus-family/`
- `blog/2018/06/11/one-god-one-world-religion.html` - moved from `/blog/2018/06/11/one-god-one-world-religion/`
- `blog/2018/06/11/past-and-future-generations.html` - moved from `/blog/2018/06/11/past-and-future-generations/`
- `blog/2018/06/11/perfection-and-gratitude.html` - moved from `/blog/2018/06/11/perfection-and-gratitude/`
- `blog/2018/06/11/questions-and-answers.html` - moved from `/blog/2018/06/11/questions-and-answers/`
- `blog/2018/06/11/safeguard-the-unified-front.html` - moved from `/blog/2018/06/11/safeguard-the-unified-front/`
- `blog/2018/06/11/self-reflection.html` - moved from `/blog/2018/06/11/self-reflection/`
- `blog/2018/06/11/the-age-of-judgment-and-ourselves.html` - moved from `/blog/2018/06/11/the-age-of-judgment-and-ourselves/`
- `blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html` - moved from `/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history/`
- `blog/2018/06/11/the-central-figure-and-the-transitional-period.html` - moved from `/blog/2018/06/11/the-central-figure-and-the-transitional-period/`
- `blog/2018/06/11/the-day-of-the-victory-of-heaven.html` - moved from `/blog/2018/06/11/the-day-of-the-victory-of-heaven/`
- `blog/2018/06/11/the-final-warning-concerning-good-and-evil.html` - moved from `/blog/2018/06/11/the-final-warning-concerning-good-and-evil/`
- `blog/2018/06/11/the-formula-for-gods-providence.html` - moved from `/blog/2018/06/11/the-formula-for-gods-providence/`
- `blog/2018/06/11/the-ideal-world.html` - moved from `/blog/2018/06/11/the-ideal-world/`
- `blog/2018/06/11/the-importance-of-heavenly-heart.html` - moved from `/blog/2018/06/11/the-importance-of-heavenly-heart/`
- `blog/2018/06/11/the-liberation-of-heaven-and-earth.html` - moved from `/blog/2018/06/11/the-liberation-of-heaven-and-earth/`
- `blog/2018/06/11/the-responsibility-of-cain-and-abel.html` - moved from `/blog/2018/06/11/the-responsibility-of-cain-and-abel/`
- `blog/2018/06/11/the-way-our-blessed-families-should-go.html` - moved from `/blog/2018/06/11/the-way-our-blessed-families-should-go/`
- `blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html` - moved from `/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith/`
- `blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html` - moved from `/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders/`
- `blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html` - moved from `/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth/`
- `blog/2018/06/12/gods-day.html` - moved from `/blog/2018/06/12/gods-day/`
- `blog/2018/06/12/how-to-witness-to-state-leaders.html` - moved from `/blog/2018/06/12/how-to-witness-to-state-leaders/`
- `blog/2018/06/12/leadership-to-mft-captains.html` - moved from `/blog/2018/06/12/leadership-to-mft-captains/`
- `blog/2018/06/12/let-us-meet-opportunity-well.html` - moved from `/blog/2018/06/12/let-us-meet-opportunity-well/`
- `blog/2018/06/12/our-family-and-the-dispensation-part-i.html` - moved from `/blog/2018/06/12/our-family-and-the-dispensation-part-i/`
- `blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html` - moved from `/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii/`
- `blog/2018/06/12/the-blessing.html` - moved from `/blog/2018/06/12/the-blessing/`
- `blog/2018/06/12/the-dignity-of-god-and-man.html` - moved from `/blog/2018/06/12/the-dignity-of-god-and-man/`
- `blog/2018/06/12/the-greatest-of-all-is-love.html` - moved from `/blog/2018/06/12/the-greatest-of-all-is-love/`
- `blog/2018/06/12/the-ideal-world-of-subject-and-object.html` - moved from `/blog/2018/06/12/the-ideal-world-of-subject-and-object/`
- `blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html` - moved from `/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family/`
- `blog/2018/06/12/the-realm-of-resurrection.html` - moved from `/blog/2018/06/12/the-realm-of-resurrection/`
- `blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html` - moved from `/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves/`
- `blog/2018/06/12/the-spirit-world-and-the-physical-world.html` - moved from `/blog/2018/06/12/the-spirit-world-and-the-physical-world/`
- `blog/2018/06/12/the-will-of-god-and-individual-perfection.html` - moved from `/blog/2018/06/12/the-will-of-god-and-individual-perfection/`
- `blog/2018/06/12/to-whom-do-i-belong.html` - moved from `/blog/2018/06/12/to-whom-do-i-belong/`
- `blog/2018/06/12/today-in-the-light-of-dispensational-history.html` - moved from `/blog/2018/06/12/today-in-the-light-of-dispensational-history/`
- `blog/2018/06/12/who-am-i.html` - moved from `/blog/2018/06/12/who-am-i/`
- `blog/2018/06/12/who-was-i.html` - moved from `/blog/2018/06/12/who-was-i/`
- `blog/2018/06/12/word-and-deed.html` - moved from `/blog/2018/06/12/word-and-deed/`
- `blog/2018/06/13/core-of-unification.html` - moved from `/blog/2018/06/13/core-of-unification/`
- `blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html` - moved from `/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god/`
- `blog/2018/06/13/god-depends-on-us-alone.html` - moved from `/blog/2018/06/13/god-depends-on-us-alone/`
- `blog/2018/06/13/good-day.html` - moved from `/blog/2018/06/13/good-day/`
- `blog/2018/06/13/happy-unification-church-members.html` - moved from `/blog/2018/06/13/happy-unification-church-members/`
- `blog/2018/06/13/host-of-the-future.html` - moved from `/blog/2018/06/13/host-of-the-future/`
- `blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html` - moved from `/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father/`
- `blog/2018/06/13/let-us-thank-god.html` - moved from `/blog/2018/06/13/let-us-thank-god/`
- `blog/2018/06/13/let-us-think-once-more.html` - moved from `/blog/2018/06/13/let-us-think-once-more/`
- `blog/2018/06/13/living-sacrifice.html` - moved from `/blog/2018/06/13/living-sacrifice/`
- `blog/2018/06/13/men-of-justice-rise-up.html` - moved from `/blog/2018/06/13/men-of-justice-rise-up/`
- `blog/2018/06/13/our-destined-relationship.html` - moved from `/blog/2018/06/13/our-destined-relationship/`
- `blog/2018/06/13/our-newborn-selves.html` - moved from `/blog/2018/06/13/our-newborn-selves/`
- `blog/2018/06/13/our-pride.html` - moved from `/blog/2018/06/13/our-pride/`
- `blog/2018/06/13/renewed-pride.html` - moved from `/blog/2018/06/13/renewed-pride/`
- `blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html` - moved from `/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation/`
- `blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html` - moved from `/blog/2018/06/13/the-childrens-day-we-have-been-longing-for/`
- `blog/2018/06/13/the-desire-of-all-things.html` - moved from `/blog/2018/06/13/the-desire-of-all-things/`
- `blog/2018/06/13/the-desire-of-god.html` - moved from `/blog/2018/06/13/the-desire-of-god/`
- `blog/2018/06/13/the-heart-of-reunion.html` - moved from `/blog/2018/06/13/the-heart-of-reunion/`
- `blog/2018/06/13/the-ones-who-can-receive-gods-love.html` - moved from `/blog/2018/06/13/the-ones-who-can-receive-gods-love/`
- `blog/2018/06/13/the-participants-in-celebrating-christmas.html` - moved from `/blog/2018/06/13/the-participants-in-celebrating-christmas/`
- `blog/2018/06/13/the-pinnacle-of-suffering.html` - moved from `/blog/2018/06/13/the-pinnacle-of-suffering/`
- `blog/2018/06/13/the-return-to-tears.html` - moved from `/blog/2018/06/13/the-return-to-tears/`
- `blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html` - moved from `/blog/2018/06/13/the-road-of-religion-and-the-will-of-god/`
- `blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html` - moved from `/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man/`
- `blog/2018/06/13/the-tradition-of-the-unification-church.html` - moved from `/blog/2018/06/13/the-tradition-of-the-unification-church/`
- `blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html` - moved from `/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view/`
- `blog/2018/06/14/all-things-depend-on-us.html` - moved from `/blog/2018/06/14/all-things-depend-on-us/`
- `blog/2018/06/14/gods-day-1978.html` - moved from `/blog/2018/06/14/gods-day-1978/`
- `blog/2018/06/14/new-morning-of-glory.html` - moved from `/blog/2018/06/14/new-morning-of-glory/`
- `blog/2018/06/14/sorrow-and-tears.html` - moved from `/blog/2018/06/14/sorrow-and-tears/`
- `blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html` - moved from `/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth/`
- `blog/2018/06/14/the-burden-of-destiny.html` - moved from `/blog/2018/06/14/the-burden-of-destiny/`
- `blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html` - moved from `/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification/`
- `blog/2018/06/14/the-dividing-peak-of-restoration.html` - moved from `/blog/2018/06/14/the-dividing-peak-of-restoration/`
- `blog/2018/06/14/the-will-of-god-and-thanksgiving.html` - moved from `/blog/2018/06/14/the-will-of-god-and-thanksgiving/`
- `blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html` - moved from `/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing/`
- `blog/2018/06/16/breaking-the-barrier.html` - moved from `/blog/2018/06/16/breaking-the-barrier/`
- `blog/2018/06/16/crossroads-of-life-and-death.html` - moved from `/blog/2018/06/16/crossroads-of-life-and-death/`
- `blog/2018/06/16/for-the-future.html` - moved from `/blog/2018/06/16/for-the-future/`
- `blog/2018/06/16/heavy-burden.html` - moved from `/blog/2018/06/16/heavy-burden/`
- `blog/2018/06/16/history-and-our-responsibility.html` - moved from `/blog/2018/06/16/history-and-our-responsibility/`
- `blog/2018/06/16/how-to-gain-spiritual-help.html` - moved from `/blog/2018/06/16/how-to-gain-spiritual-help/`
- `blog/2018/06/16/how-we-are-born-again.html` - moved from `/blog/2018/06/16/how-we-are-born-again/`
- `blog/2018/06/16/i-proclaim-that-i-know.html` - moved from `/blog/2018/06/16/i-proclaim-that-i-know/`
- `blog/2018/06/16/let-us-be-grateful.html` - moved from `/blog/2018/06/16/let-us-be-grateful/`
- `blog/2018/06/16/mainstream-of-the-dispensation-of-god.html` - moved from `/blog/2018/06/16/mainstream-of-the-dispensation-of-god/`
- `blog/2018/06/16/may-the-fatherland-shine-forth.html` - moved from `/blog/2018/06/16/may-the-fatherland-shine-forth/`
- `blog/2018/06/16/my-life.html` - moved from `/blog/2018/06/16/my-life/`
- `blog/2018/06/16/one-age-one-generation.html` - moved from `/blog/2018/06/16/one-age-one-generation/`
- `blog/2018/06/16/parents-day-2.html` - moved from `/blog/2018/06/16/parents-day-2/`
- `blog/2018/06/16/perseverance-and-contemplation.html` - moved from `/blog/2018/06/16/perseverance-and-contemplation/`
- `blog/2018/06/16/preparation-for-blessing-i.html` - moved from `/blog/2018/06/16/preparation-for-blessing-i/`
- `blog/2018/06/16/preparation-for-blessing-ii.html` - moved from `/blog/2018/06/16/preparation-for-blessing-ii/`
- `blog/2018/06/16/resurrected-kingdom-of-god.html` - moved from `/blog/2018/06/16/resurrected-kingdom-of-god/`
- `blog/2018/06/16/speech-to-the-one-world-crusade-europe.html` - moved from `/blog/2018/06/16/speech-to-the-one-world-crusade-europe/`
- `blog/2018/06/16/spring.html` - moved from `/blog/2018/06/16/spring/`
- `blog/2018/06/16/the-25th-year-of-the-unification-church.html` - moved from `/blog/2018/06/16/the-25th-year-of-the-unification-church/`
- `blog/2018/06/16/the-age-of-new-dispensation.html` - moved from `/blog/2018/06/16/the-age-of-new-dispensation/`
- `blog/2018/06/16/the-age-of-repentance.html` - moved from `/blog/2018/06/16/the-age-of-repentance/`
- `blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html` - moved from `/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will/`
- `blog/2018/06/16/the-burden-on-our-shoulders.html` - moved from `/blog/2018/06/16/the-burden-on-our-shoulders/`
- `blog/2018/06/16/the-completion-period-for-the-dispensation.html` - moved from `/blog/2018/06/16/the-completion-period-for-the-dispensation/`
- `blog/2018/06/16/the-day-of-all-things.html` - moved from `/blog/2018/06/16/the-day-of-all-things/`
- `blog/2018/06/16/the-glorious-sortie.html` - moved from `/blog/2018/06/16/the-glorious-sortie/`
- `blog/2018/06/16/the-go-world-brass-band.html` - moved from `/blog/2018/06/16/the-go-world-brass-band/`
- `blog/2018/06/16/the-inheritance-of-love.html` - moved from `/blog/2018/06/16/the-inheritance-of-love/`
- `blog/2018/06/16/the-path-of-the-chosen.html` - moved from `/blog/2018/06/16/the-path-of-the-chosen/`
- `blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html` - moved from `/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition/`
- `blog/2018/06/16/time-and-our-destiny-relationship.html` - moved from `/blog/2018/06/16/time-and-our-destiny-relationship/`
- `blog/2018/06/16/to-the-crusade.html` - moved from `/blog/2018/06/16/to-the-crusade/`
- `blog/2018/06/16/to-the-departing-seminarians.html` - moved from `/blog/2018/06/16/to-the-departing-seminarians/`
- `blog/2018/06/16/to-the-matching-candidates.html` - moved from `/blog/2018/06/16/to-the-matching-candidates/`
- `blog/2018/06/16/victorious-sons-and-daughters.html` - moved from `/blog/2018/06/16/victorious-sons-and-daughters/`
- `blog/2018/06/16/washington-monument.html` - moved from `/blog/2018/06/16/washington-monument/`
- `blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html` - moved from `/blog/2018/06/16/we-who-have-been-called-to-do-gods-work/`
- `blog/2018/06/16/when-are-we-satisfied.html` - moved from `/blog/2018/06/16/when-are-we-satisfied/`
- `blog/2018/06/16/where-do-we-go.html` - moved from `/blog/2018/06/16/where-do-we-go/`
- `blog/2018/06/16/where-god-resides-and-his-course.html` - moved from `/blog/2018/06/16/where-god-resides-and-his-course/`
- `blog/2018/06/16/yesterdays-and-today.html` - moved from `/blog/2018/06/16/yesterdays-and-today/`
- `blog/2018/06/18/eternal-happiness.html` - moved from `/blog/2018/06/18/eternal-happiness/`
- `blog/2018/06/18/home-church-and-the-battle-of-love.html` - moved from `/blog/2018/06/18/home-church-and-the-battle-of-love/`
- `blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven/`
- `blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html` - moved from `/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland/`
- `blog/2018/06/18/our-position.html` - moved from `/blog/2018/06/18/our-position/`
- `blog/2018/06/18/restored-family.html` - moved from `/blog/2018/06/18/restored-family/`
- `blog/2018/06/18/the-first-day-and-our-lifetime.html` - moved from `/blog/2018/06/18/the-first-day-and-our-lifetime/`
- `blog/2018/06/18/the-present-time.html` - moved from `/blog/2018/06/18/the-present-time/`
- `blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html` - moved from `/blog/2018/06/18/the-sound-of-the-bell-of-the-mind/`
- `blog/2018/06/18/unification-church-and-heavenly-law.html` - moved from `/blog/2018/06/18/unification-church-and-heavenly-law/`
- `blog/2018/06/18/what-shall-we-do.html` - moved from `/blog/2018/06/18/what-shall-we-do/`
- `blog/2018/06/19/25th-anniversary-of-the-unification-church.html` - moved from `/blog/2018/06/19/25th-anniversary-of-the-unification-church/`
- `blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html` - moved from `/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view/`
- `blog/2018/06/19/childrens-day-and-tradition.html` - moved from `/blog/2018/06/19/childrens-day-and-tradition/`
- `blog/2018/06/19/day-of-all-things.html` - moved from `/blog/2018/06/19/day-of-all-things/`
- `blog/2018/06/19/day-of-the-victory-of-heaven.html` - moved from `/blog/2018/06/19/day-of-the-victory-of-heaven/`
- `blog/2018/06/19/do-not-be-discouraged.html` - moved from `/blog/2018/06/19/do-not-be-discouraged/`
- `blog/2018/06/19/god-of-lamentation.html` - moved from `/blog/2018/06/19/god-of-lamentation/`
- `blog/2018/06/19/heaven-and-us.html` - moved from `/blog/2018/06/19/heaven-and-us/`
- `blog/2018/06/19/historical-view-of-the-dispensation.html` - moved from `/blog/2018/06/19/historical-view-of-the-dispensation/`
- `blog/2018/06/19/house-of-providence.html` - moved from `/blog/2018/06/19/house-of-providence/`
- `blog/2018/06/19/ideal-home.html` - moved from `/blog/2018/06/19/ideal-home/`
- `blog/2018/06/19/let-us-analyze-ourselves.html` - moved from `/blog/2018/06/19/let-us-analyze-ourselves/`
- `blog/2018/06/19/let-us-know-ourselves.html` - moved from `/blog/2018/06/19/let-us-know-ourselves/`
- `blog/2018/06/19/let-us-think.html` - moved from `/blog/2018/06/19/let-us-think/`
- `blog/2018/06/19/mankind-and-the-ideal-world.html` - moved from `/blog/2018/06/19/mankind-and-the-ideal-world/`
- `blog/2018/06/19/men-of-god.html` - moved from `/blog/2018/06/19/men-of-god/`
- `blog/2018/06/19/our-one-life.html` - moved from `/blog/2018/06/19/our-one-life/`
- `blog/2018/06/19/our-present-position.html` - moved from `/blog/2018/06/19/our-present-position/`
- `blog/2018/06/19/record-setter-of-history.html` - moved from `/blog/2018/06/19/record-setter-of-history/`
- `blog/2018/06/19/reflection-upon-life.html` - moved from `/blog/2018/06/19/reflection-upon-life/`
- `blog/2018/06/19/return-to-hometown.html` - moved from `/blog/2018/06/19/return-to-hometown/`
- `blog/2018/06/19/spring-season-of-the-providence.html` - moved from `/blog/2018/06/19/spring-season-of-the-providence/`
- `blog/2018/06/19/territory-of-goodness.html` - moved from `/blog/2018/06/19/territory-of-goodness/`
- `blog/2018/06/19/thanksgiving-to-gods-will.html` - moved from `/blog/2018/06/19/thanksgiving-to-gods-will/`
- `blog/2018/06/19/the-contrast-between-secular-people-and-us.html` - moved from `/blog/2018/06/19/the-contrast-between-secular-people-and-us/`
- `blog/2018/06/19/the-importance-of-prayer.html` - moved from `/blog/2018/06/19/the-importance-of-prayer/`
- `blog/2018/06/19/the-mission-of-our-life.html` - moved from `/blog/2018/06/19/the-mission-of-our-life/`
- `blog/2018/06/19/the-original-base-of-cosmic-completion.html` - moved from `/blog/2018/06/19/the-original-base-of-cosmic-completion/`
- `blog/2018/06/19/the-true-meaning-of-christmas.html` - moved from `/blog/2018/06/19/the-true-meaning-of-christmas/`
- `blog/2018/06/19/the-trust-placed-in-us.html` - moved from `/blog/2018/06/19/the-trust-placed-in-us/`
- `blog/2018/06/19/the-way-of-prosperity-and-defeat.html` - moved from `/blog/2018/06/19/the-way-of-prosperity-and-defeat/`
- `blog/2018/06/19/true-couple.html` - moved from `/blog/2018/06/19/true-couple/`
- `blog/2018/06/19/true-parents-day-and-our-family.html` - moved from `/blog/2018/06/19/true-parents-day-and-our-family/`
- `blog/2018/06/19/what-kind-of-thought-do-you-have.html` - moved from `/blog/2018/06/19/what-kind-of-thought-do-you-have/`
- `blog/2018/06/20/christmas-in-view-of-the-will-of-god.html` - moved from `/blog/2018/06/20/christmas-in-view-of-the-will-of-god/`
- `blog/2018/06/20/core-love-and-indemnity.html` - moved from `/blog/2018/06/20/core-love-and-indemnity/`
- `blog/2018/06/20/cross-over-the-boundary.html` - moved from `/blog/2018/06/20/cross-over-the-boundary/`
- `blog/2018/06/20/day-of-all-things-2.html` - moved from `/blog/2018/06/20/day-of-all-things-2/`
- `blog/2018/06/20/gods-day-and-my-congratulations.html` - moved from `/blog/2018/06/20/gods-day-and-my-congratulations/`
- `blog/2018/06/20/grateful-gods-day.html` - moved from `/blog/2018/06/20/grateful-gods-day/`
- `blog/2018/06/20/historical-childrens-day.html` - moved from `/blog/2018/06/20/historical-childrens-day/`
- `blog/2018/06/20/historical-standard-of-indemnity.html` - moved from `/blog/2018/06/20/historical-standard-of-indemnity/`
- `blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html` - moved from `/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity/`
- `blog/2018/06/20/home-church-and-myself.html` - moved from `/blog/2018/06/20/home-church-and-myself/`
- `blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html` - moved from `/blog/2018/06/20/home-church-is-my-kingdom-of-heaven/`
- `blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven/`
- `blog/2018/06/20/i-am-the-center-of-the-whole.html` - moved from `/blog/2018/06/20/i-am-the-center-of-the-whole/`
- `blog/2018/06/20/ideal-nation-of-god.html` - moved from `/blog/2018/06/20/ideal-nation-of-god/`
- `blog/2018/06/20/individual-course-of-life.html` - moved from `/blog/2018/06/20/individual-course-of-life/`
- `blog/2018/06/20/let-us-give-thanks.html` - moved from `/blog/2018/06/20/let-us-give-thanks/`
- `blog/2018/06/20/let-us-set-the-record.html` - moved from `/blog/2018/06/20/let-us-set-the-record/`
- `blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html` - moved from `/blog/2018/06/20/life-of-experience-in-the-realm-of-heart/`
- `blog/2018/06/20/line-of-limitation.html` - moved from `/blog/2018/06/20/line-of-limitation/`
- `blog/2018/06/20/liquidation-and-blessing.html` - moved from `/blog/2018/06/20/liquidation-and-blessing/`
- `blog/2018/06/20/myself.html` - moved from `/blog/2018/06/20/myself/`
- `blog/2018/06/20/noble-dream.html` - moved from `/blog/2018/06/20/noble-dream/`
- `blog/2018/06/20/our-duty-our-mission.html` - moved from `/blog/2018/06/20/our-duty-our-mission/`
- `blog/2018/06/20/our-identity.html` - moved from `/blog/2018/06/20/our-identity/`
- `blog/2018/06/20/our-pride-2.html` - moved from `/blog/2018/06/20/our-pride-2/`
- `blog/2018/06/20/our-standard.html` - moved from `/blog/2018/06/20/our-standard/`
- `blog/2018/06/20/our-tradition.html` - moved from `/blog/2018/06/20/our-tradition/`
- `blog/2018/06/20/parents-day-and-this-age.html` - moved from `/blog/2018/06/20/parents-day-and-this-age/`
- `blog/2018/06/20/persecution-and-blessing.html` - moved from `/blog/2018/06/20/persecution-and-blessing/`
- `blog/2018/06/20/prayer.html` - moved from `/blog/2018/06/20/prayer/`
- `blog/2018/06/20/searching-after-true-parents.html` - moved from `/blog/2018/06/20/searching-after-true-parents/`
- `blog/2018/06/20/seeking-the-true-master.html` - moved from `/blog/2018/06/20/seeking-the-true-master/`
- `blog/2018/06/20/stony-path-of-death.html` - moved from `/blog/2018/06/20/stony-path-of-death/`
- `blog/2018/06/20/the-best-thing.html` - moved from `/blog/2018/06/20/the-best-thing/`
- `blog/2018/06/20/the-center-and-my-position.html` - moved from `/blog/2018/06/20/the-center-and-my-position/`
- `blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html` - moved from `/blog/2018/06/20/the-completion-of-the-providence-and-parents-day/`
- `blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html` - moved from `/blog/2018/06/20/the-day-of-the-victory-of-heaven-2/`
- `blog/2018/06/20/the-dispensation-of-restoration-and-myself.html` - moved from `/blog/2018/06/20/the-dispensation-of-restoration-and-myself/`
- `blog/2018/06/20/the-necessity-of-prayer.html` - moved from `/blog/2018/06/20/the-necessity-of-prayer/`
- `blog/2018/06/20/the-public-and-private-way.html` - moved from `/blog/2018/06/20/the-public-and-private-way/`
- `blog/2018/06/20/the-realm-of-existence.html` - moved from `/blog/2018/06/20/the-realm-of-existence/`
- `blog/2018/06/20/the-things-we-want-to-be-proud-of.html` - moved from `/blog/2018/06/20/the-things-we-want-to-be-proud-of/`
- `blog/2018/06/20/the-two-worlds-of-good-and-evil.html` - moved from `/blog/2018/06/20/the-two-worlds-of-good-and-evil/`
- `blog/2018/06/20/the-victorious-day.html` - moved from `/blog/2018/06/20/the-victorious-day/`
- `blog/2018/06/20/the-way-of-original-form.html` - moved from `/blog/2018/06/20/the-way-of-original-form/`
- `blog/2018/06/20/the-way-of-tuna.html` - moved from `/blog/2018/06/20/the-way-of-tuna/`
- `blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html` - moved from `/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity/`
- `blog/2018/06/20/things-that-are-important-to-you.html` - moved from `/blog/2018/06/20/things-that-are-important-to-you/`
- `blog/2018/06/20/thinking-back-historically.html` - moved from `/blog/2018/06/20/thinking-back-historically/`
- `blog/2018/06/20/to-the-mft.html` - moved from `/blog/2018/06/20/to-the-mft/`
- `blog/2018/06/20/total-self-reevaluation.html` - moved from `/blog/2018/06/20/total-self-reevaluation/`
- `blog/2018/06/20/true-parents-and-our-responsibility.html` - moved from `/blog/2018/06/20/true-parents-and-our-responsibility/`
- `blog/2018/06/20/true-parents-mission.html` - moved from `/blog/2018/06/20/true-parents-mission/`
- `blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html` - moved from `/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven/`
- `blog/2018/06/20/who-is-god-and-who-am-i.html` - moved from `/blog/2018/06/20/who-is-god-and-who-am-i/`
- `blog/2018/06/22/destiny-and-judgment.html` - moved from `/blog/2018/06/22/destiny-and-judgment/`
- `blog/2018/06/22/everyone-is-heading-somewhere.html` - moved from `/blog/2018/06/22/everyone-is-heading-somewhere/`
- `blog/2018/06/22/god-and-my-home.html` - moved from `/blog/2018/06/22/god-and-my-home/`
- `blog/2018/06/22/god-and-us.html` - moved from `/blog/2018/06/22/god-and-us/`
- `blog/2018/06/22/ideal-family-and-ideal-world.html` - moved from `/blog/2018/06/22/ideal-family-and-ideal-world/`
- `blog/2018/06/22/in-the-presence-of-god.html` - moved from `/blog/2018/06/22/in-the-presence-of-god/`
- `blog/2018/06/22/let-us-protect-ourselves.html` - moved from `/blog/2018/06/22/let-us-protect-ourselves/`
- `blog/2018/06/22/public-life.html` - moved from `/blog/2018/06/22/public-life/`
- `blog/2018/06/22/the-deep-desire-of-our-original-nature.html` - moved from `/blog/2018/06/22/the-deep-desire-of-our-original-nature/`
- `blog/2018/06/22/the-ideal-world-of-adam.html` - moved from `/blog/2018/06/22/the-ideal-world-of-adam/`
- `blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html` - moved from `/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god/`
- `blog/2018/06/22/the-road-of-gods-will.html` - moved from `/blog/2018/06/22/the-road-of-gods-will/`
- `blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html` - moved from `/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man/`
- `blog/2018/06/22/the-vibration-of-true-love.html` - moved from `/blog/2018/06/22/the-vibration-of-true-love/`
- `blog/2018/06/22/the-victorious-person-and-the-defeated-person.html` - moved from `/blog/2018/06/22/the-victorious-person-and-the-defeated-person/`
- `blog/2018/06/22/total-completion-of-the-ideal.html` - moved from `/blog/2018/06/22/total-completion-of-the-ideal/`
- `blog/2018/06/22/true-parents-day.html` - moved from `/blog/2018/06/22/true-parents-day/`
- `blog/2018/06/22/victory-and-peace.html` - moved from `/blog/2018/06/22/victory-and-peace/`
- `blog/2018/06/22/victory-of-god.html` - moved from `/blog/2018/06/22/victory-of-god/`
- `blog/2018/06/22/victory-of-home-church-midnight-address.html` - moved from `/blog/2018/06/22/victory-of-home-church-midnight-address/`
- `blog/2018/06/22/victory-of-home-church-morning-address.html` - moved from `/blog/2018/06/22/victory-of-home-church-morning-address/`
- `blog/2018/06/23/about-myself.html` - moved from `/blog/2018/06/23/about-myself/`
- `blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html` - moved from `/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution/`
- `blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html` - moved from `/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing/`
- `blog/2018/06/23/before-and-after-the-blessing.html` - moved from `/blog/2018/06/23/before-and-after-the-blessing/`
- `blog/2018/06/23/blessed-family.html` - moved from `/blog/2018/06/23/blessed-family/`
- `blog/2018/06/23/childrens-day-1982.html` - moved from `/blog/2018/06/23/childrens-day-1982/`
- `blog/2018/06/23/childrens-day-2.html` - moved from `/blog/2018/06/23/childrens-day-2/`
- `blog/2018/06/23/creation-of-the-fatherland.html` - moved from `/blog/2018/06/23/creation-of-the-fatherland/`
- `blog/2018/06/23/day-of-all-things-1984.html` - moved from `/blog/2018/06/23/day-of-all-things-1984/`
- `blog/2018/06/23/day-of-heavenly-victory.html` - moved from `/blog/2018/06/23/day-of-heavenly-victory/`
- `blog/2018/06/23/emergency-time-period.html` - moved from `/blog/2018/06/23/emergency-time-period/`
- `blog/2018/06/23/farewell-speech.html` - moved from `/blog/2018/06/23/farewell-speech/`
- `blog/2018/06/23/final-world-centered-upon-good-and-evil.html` - moved from `/blog/2018/06/23/final-world-centered-upon-good-and-evil/`
- `blog/2018/06/23/generation-record-of-the-true-parents-love.html` - moved from `/blog/2018/06/23/generation-record-of-the-true-parents-love/`
- `blog/2018/06/23/god-the-contemporary-discussion.html` - moved from `/blog/2018/06/23/god-the-contemporary-discussion/`
- `blog/2018/06/23/gods-day-1983.html` - moved from `/blog/2018/06/23/gods-day-1983/`
- `blog/2018/06/23/gods-day-1984.html` - moved from `/blog/2018/06/23/gods-day-1984/`
- `blog/2018/06/23/heavenly-life.html` - moved from `/blog/2018/06/23/heavenly-life/`
- `blog/2018/06/23/heavens-side-and-satans-side.html` - moved from `/blog/2018/06/23/heavens-side-and-satans-side/`
- `blog/2018/06/23/home-church-is-our-land-of-settlement.html` - moved from `/blog/2018/06/23/home-church-is-our-land-of-settlement/`
- `blog/2018/06/23/in-search-of-our-home.html` - moved from `/blog/2018/06/23/in-search-of-our-home/`
- `blog/2018/06/23/let-this-be-a-good-year.html` - moved from `/blog/2018/06/23/let-this-be-a-good-year/`
- `blog/2018/06/23/let-us-go-over-the-hill.html` - moved from `/blog/2018/06/23/let-us-go-over-the-hill/`
- `blog/2018/06/23/love-forever.html` - moved from `/blog/2018/06/23/love-forever/`
- `blog/2018/06/23/master-guests-and-others.html` - moved from `/blog/2018/06/23/master-guests-and-others/`
- `blog/2018/06/23/mission-and-prayer.html` - moved from `/blog/2018/06/23/mission-and-prayer/`
- `blog/2018/06/23/my-new-self.html` - moved from `/blog/2018/06/23/my-new-self/`
- `blog/2018/06/23/myself-part-two.html` - moved from `/blog/2018/06/23/myself-part-two/`
- `blog/2018/06/23/new-family-given-by-god.html` - moved from `/blog/2018/06/23/new-family-given-by-god/`
- `blog/2018/06/23/original-eden-centering-on-true-love.html` - moved from `/blog/2018/06/23/original-eden-centering-on-true-love/`
- `blog/2018/06/23/original-palace-of-utmost-happiness.html` - moved from `/blog/2018/06/23/original-palace-of-utmost-happiness/`
- `blog/2018/06/23/original-race-from-one-lineage.html` - moved from `/blog/2018/06/23/original-race-from-one-lineage/`
- `blog/2018/06/23/original-root-and-self.html` - moved from `/blog/2018/06/23/original-root-and-self/`
- `blog/2018/06/23/original-way-of-gods-will.html` - moved from `/blog/2018/06/23/original-way-of-gods-will/`
- `blog/2018/06/23/original-world-and-present-world.html` - moved from `/blog/2018/06/23/original-world-and-present-world/`
- `blog/2018/06/23/our-basic-attitude.html` - moved from `/blog/2018/06/23/our-basic-attitude/`
- `blog/2018/06/23/our-fatherland.html` - moved from `/blog/2018/06/23/our-fatherland/`
- `blog/2018/06/23/our-front-line.html` - moved from `/blog/2018/06/23/our-front-line/`
- `blog/2018/06/23/our-ideal-home-part-one.html` - moved from `/blog/2018/06/23/our-ideal-home-part-one/`
- `blog/2018/06/23/our-ideal-home-part-three.html` - moved from `/blog/2018/06/23/our-ideal-home-part-three/`
- `blog/2018/06/23/our-ideal-home-part-two.html` - moved from `/blog/2018/06/23/our-ideal-home-part-two/`
- `blog/2018/06/23/our-pledge.html` - moved from `/blog/2018/06/23/our-pledge/`
- `blog/2018/06/23/our-position-from-now-on.html` - moved from `/blog/2018/06/23/our-position-from-now-on/`
- `blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html` - moved from `/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself/`
- `blog/2018/06/23/parents-day-1984.html` - moved from `/blog/2018/06/23/parents-day-1984/`
- `blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html` - moved from `/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility/`
- `blog/2018/06/23/pinnacle-of-the-heavenly-universe.html` - moved from `/blog/2018/06/23/pinnacle-of-the-heavenly-universe/`
- `blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html` - moved from `/blog/2018/06/23/pure-way-of-truth-and-public-righteousness/`
- `blog/2018/06/23/standing-in-the-presence-of-god.html` - moved from `/blog/2018/06/23/standing-in-the-presence-of-god/`
- `blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html` - moved from `/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom/`
- `blog/2018/06/23/textbook-of-love.html` - moved from `/blog/2018/06/23/textbook-of-love/`
- `blog/2018/06/23/the-birth-of-a-new-providence.html` - moved from `/blog/2018/06/23/the-birth-of-a-new-providence/`
- `blog/2018/06/23/the-center-of-responsibility-and-indemnity.html` - moved from `/blog/2018/06/23/the-center-of-responsibility-and-indemnity/`
- `blog/2018/06/23/the-day-of-all-things-1982.html` - moved from `/blog/2018/06/23/the-day-of-all-things-1982/`
- `blog/2018/06/23/the-day-of-all-things-1983.html` - moved from `/blog/2018/06/23/the-day-of-all-things-1983/`
- `blog/2018/06/23/the-day-of-the-love-of-god.html` - moved from `/blog/2018/06/23/the-day-of-the-love-of-god/`
- `blog/2018/06/23/the-harvest-season-for-gods-providence.html` - moved from `/blog/2018/06/23/the-harvest-season-for-gods-providence/`
- `blog/2018/06/23/the-heavenly-possession.html` - moved from `/blog/2018/06/23/the-heavenly-possession/`
- `blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html` - moved from `/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself/`
- `blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html` - moved from `/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love/`
- `blog/2018/06/23/the-original-world-and-the-enemy-world.html` - moved from `/blog/2018/06/23/the-original-world-and-the-enemy-world/`
- `blog/2018/06/23/the-purpose-of-life-coming-and-going.html` - moved from `/blog/2018/06/23/the-purpose-of-life-coming-and-going/`
- `blog/2018/06/23/the-secret-of-total-success.html` - moved from `/blog/2018/06/23/the-secret-of-total-success/`
- `blog/2018/06/23/the-way-god-is-pursuing.html` - moved from `/blog/2018/06/23/the-way-god-is-pursuing/`
- `blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html` - moved from `/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church/`
- `blog/2018/06/23/true-man-true-church-true-country.html` - moved from `/blog/2018/06/23/true-man-true-church-true-country/`
- `blog/2018/06/23/true-way-of-life.html` - moved from `/blog/2018/06/23/true-way-of-life/`
- `blog/2018/06/23/universality.html` - moved from `/blog/2018/06/23/universality/`
- `blog/2018/06/23/victor-throughout-three-ages.html` - moved from `/blog/2018/06/23/victor-throughout-three-ages/`
- `blog/2018/06/23/who-goes-the-way-of-indemnity.html` - moved from `/blog/2018/06/23/who-goes-the-way-of-indemnity/`
- `blog/2018/06/23/with-whom-shall-i-live.html` - moved from `/blog/2018/06/23/with-whom-shall-i-live/`
- `blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html` - moved from `/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2/`
- `blog/2018/06/24/causa-seminar-speech.html` - moved from `/blog/2018/06/24/causa-seminar-speech/`
- `blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html` - moved from `/blog/2018/06/24/creation-of-the-fatherland-and-gods-day/`
- `blog/2018/06/24/highest-ownership.html` - moved from `/blog/2018/06/24/highest-ownership/`
- `blog/2018/06/24/holy-water-ceremony.html` - moved from `/blog/2018/06/24/holy-water-ceremony/`
- `blog/2018/06/24/ideal-home-church.html` - moved from `/blog/2018/06/24/ideal-home-church/`
- `blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html` - moved from `/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon/`
- `blog/2018/06/24/parents-day-3.html` - moved from `/blog/2018/06/24/parents-day-3/`
- `blog/2018/06/24/reflection-of-1986.html` - moved from `/blog/2018/06/24/reflection-of-1986/`
- `blog/2018/06/24/road-toward-the-ideal.html` - moved from `/blog/2018/06/24/road-toward-the-ideal/`
- `blog/2018/06/24/the-building-and-creation-of-the-fatherland.html` - moved from `/blog/2018/06/24/the-building-and-creation-of-the-fatherland/`
- `blog/2018/06/24/the-day-of-all-things-2.html` - moved from `/blog/2018/06/24/the-day-of-all-things-2/`
- `blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html` - moved from `/blog/2018/06/24/the-day-of-the-victory-of-heaven-3/`
- `blog/2018/06/24/the-future-of-the-religious-person.html` - moved from `/blog/2018/06/24/the-future-of-the-religious-person/`
- `blog/2018/06/24/the-globe-is-our-home.html` - moved from `/blog/2018/06/24/the-globe-is-our-home/`
- `blog/2018/06/24/the-glory-of-the-victor.html` - moved from `/blog/2018/06/24/the-glory-of-the-victor/`
- `blog/2018/06/24/the-heavenly-family-and-the-american-family.html` - moved from `/blog/2018/06/24/the-heavenly-family-and-the-american-family/`
- `blog/2018/06/24/the-last-frontier.html` - moved from `/blog/2018/06/24/the-last-frontier/`
- `blog/2018/06/24/the-standard-of-the-unification-church.html` - moved from `/blog/2018/06/24/the-standard-of-the-unification-church/`
- `blog/2018/06/24/true-parents-and-i.html` - moved from `/blog/2018/06/24/true-parents-and-i/`
- `blog/2018/06/24/true-parents-birthday.html` - moved from `/blog/2018/06/24/true-parents-birthday/`
- `blog/2018/06/24/victory-celebration.html` - moved from `/blog/2018/06/24/victory-celebration/`
- `blog/2018/06/25/7th-day-of-the-victory-of-love.html` - moved from `/blog/2018/06/25/7th-day-of-the-victory-of-love/`
- `blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html` - moved from `/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom/`
- `blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html` - moved from `/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence/`
- `blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html` - moved from `/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland/`
- `blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html` - moved from `/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country/`
- `blog/2018/06/25/day-of-the-victory-of-love.html` - moved from `/blog/2018/06/25/day-of-the-victory-of-love/`
- `blog/2018/06/25/declaration-of-true-parents.html` - moved from `/blog/2018/06/25/declaration-of-true-parents/`
- `blog/2018/06/25/early-spring-of-life.html` - moved from `/blog/2018/06/25/early-spring-of-life/`
- `blog/2018/06/25/fathers-seventieth-birthday-address.html` - moved from `/blog/2018/06/25/fathers-seventieth-birthday-address/`
- `blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html` - moved from `/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing/`
- `blog/2018/06/25/founding-anniversary-and-final-liberation.html` - moved from `/blog/2018/06/25/founding-anniversary-and-final-liberation/`
- `blog/2018/06/25/god-and-i.html` - moved from `/blog/2018/06/25/god-and-i/`
- `blog/2018/06/25/gods-and-our-decision.html` - moved from `/blog/2018/06/25/gods-and-our-decision/`
- `blog/2018/06/25/gods-day-1990-morning-address.html` - moved from `/blog/2018/06/25/gods-day-1990-morning-address/`
- `blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html` - moved from `/blog/2018/06/25/gods-day-1990-the-unification-of-my-country/`
- `blog/2018/06/25/gods-day-2.html` - moved from `/blog/2018/06/25/gods-day-2/`
- `blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html` - moved from `/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life/`
- `blog/2018/06/25/harvest-time.html` - moved from `/blog/2018/06/25/harvest-time/`
- `blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html` - moved from `/blog/2018/06/25/heaven-and-man-unite-and-create-goodness/`
- `blog/2018/06/25/heavenly-fatherism.html` - moved from `/blog/2018/06/25/heavenly-fatherism/`
- `blog/2018/06/25/hometown.html` - moved from `/blog/2018/06/25/hometown/`
- `blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html` - moved from `/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience/`
- `blog/2018/06/25/in-yun-and-encounter.html` - moved from `/blog/2018/06/25/in-yun-and-encounter/`
- `blog/2018/06/25/isolation-and-liberation.html` - moved from `/blog/2018/06/25/isolation-and-liberation/`
- `blog/2018/06/25/leaders-meeting.html` - moved from `/blog/2018/06/25/leaders-meeting/`
- `blog/2018/06/25/let-us-go-over-the-original-boundary.html` - moved from `/blog/2018/06/25/let-us-go-over-the-original-boundary/`
- `blog/2018/06/25/let-us-liberate-god.html` - moved from `/blog/2018/06/25/let-us-liberate-god/`
- `blog/2018/06/25/let-us-live-well.html` - moved from `/blog/2018/06/25/let-us-live-well/`
- `blog/2018/06/25/let-us-return-to-gods-side.html` - moved from `/blog/2018/06/25/let-us-return-to-gods-side/`
- `blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html` - moved from `/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world/`
- `blog/2018/06/25/lifestyle-of-prayer.html` - moved from `/blog/2018/06/25/lifestyle-of-prayer/`
- `blog/2018/06/25/living-in-the-highest-historical-age.html` - moved from `/blog/2018/06/25/living-in-the-highest-historical-age/`
- `blog/2018/06/25/original-family-and-the-family-of-today.html` - moved from `/blog/2018/06/25/original-family-and-the-family-of-today/`
- `blog/2018/06/25/original-homeland-and-the-realm-of-heart.html` - moved from `/blog/2018/06/25/original-homeland-and-the-realm-of-heart/`
- `blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html` - moved from `/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god/`
- `blog/2018/06/25/our-posture-on-the-new-year.html` - moved from `/blog/2018/06/25/our-posture-on-the-new-year/`
- `blog/2018/06/25/our-pride-3.html` - moved from `/blog/2018/06/25/our-pride-3/`
- `blog/2018/06/25/parents-day-and-i.html` - moved from `/blog/2018/06/25/parents-day-and-i/`
- `blog/2018/06/25/parents-day-and-our-path.html` - moved from `/blog/2018/06/25/parents-day-and-our-path/`
- `blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html` - moved from `/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection/`
- `blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html` - moved from `/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought/`
- `blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html` - moved from `/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2/`
- `blog/2018/06/25/precious-existence.html` - moved from `/blog/2018/06/25/precious-existence/`
- `blog/2018/06/25/proclamation-of-true-parents.html` - moved from `/blog/2018/06/25/proclamation-of-true-parents/`
- `blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html` - moved from `/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom/`
- `blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html` - moved from `/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace/`
- `blog/2018/06/25/seventieth-birthday-celebration-banquet.html` - moved from `/blog/2018/06/25/seventieth-birthday-celebration-banquet/`
- `blog/2018/06/25/thank-you-for-protecting-us.html` - moved from `/blog/2018/06/25/thank-you-for-protecting-us/`
- `blog/2018/06/25/the-11th-world-media-conference.html` - moved from `/blog/2018/06/25/the-11th-world-media-conference/`
- `blog/2018/06/25/the-blessed-family-is-very-precious.html` - moved from `/blog/2018/06/25/the-blessed-family-is-very-precious/`
- `blog/2018/06/25/the-creation-of-my-heaven.html` - moved from `/blog/2018/06/25/the-creation-of-my-heaven/`
- `blog/2018/06/25/the-end-of-the-world-and-our-age.html` - moved from `/blog/2018/06/25/the-end-of-the-world-and-our-age/`
- `blog/2018/06/25/the-flower-of-absolute-love.html` - moved from `/blog/2018/06/25/the-flower-of-absolute-love/`
- `blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html` - moved from `/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history/`
- `blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html` - moved from `/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate/`
- `blog/2018/06/25/the-palace-of-peaceful-heaven.html` - moved from `/blog/2018/06/25/the-palace-of-peaceful-heaven/`
- `blog/2018/06/25/the-pride-of-the-unification-church.html` - moved from `/blog/2018/06/25/the-pride-of-the-unification-church/`
- `blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html` - moved from `/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west/`
- `blog/2018/06/25/the-tide-of-the-heart.html` - moved from `/blog/2018/06/25/the-tide-of-the-heart/`
- `blog/2018/06/25/the-tribal-messiah.html` - moved from `/blog/2018/06/25/the-tribal-messiah/`
- `blog/2018/06/25/the-way-of-the-victory-of-god.html` - moved from `/blog/2018/06/25/the-way-of-the-victory-of-god/`
- `blog/2018/06/25/the-way-to-grow.html` - moved from `/blog/2018/06/25/the-way-to-grow/`
- `blog/2018/06/25/the-will-and-i.html` - moved from `/blog/2018/06/25/the-will-and-i/`
- `blog/2018/06/25/this-is-the-time-of-change.html` - moved from `/blog/2018/06/25/this-is-the-time-of-change/`
- `blog/2018/06/25/true-parents-and-the-realm-of-liberation.html` - moved from `/blog/2018/06/25/true-parents-and-the-realm-of-liberation/`
- `blog/2018/06/25/unification-church-national-conference.html` - moved from `/blog/2018/06/25/unification-church-national-conference/`
- `blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html` - moved from `/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal/`
- `blog/2018/06/25/unification-of-the-fatherland.html` - moved from `/blog/2018/06/25/unification-of-the-fatherland/`
- `blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html` - moved from `/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand/`
- `blog/2018/06/25/wake-up-america.html` - moved from `/blog/2018/06/25/wake-up-america/`
- `blog/2018/06/25/we-shall-live-in-the-original-homeland.html` - moved from `/blog/2018/06/25/we-shall-live-in-the-original-homeland/`
- `blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html` - moved from `/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love/`
- `blog/2018/06/25/where-god-and-man-meet.html` - moved from `/blog/2018/06/25/where-god-and-man-meet/`
- `blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html` - moved from `/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa/`
- `blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html` - moved from `/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world/`
- `blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html` - moved from `/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal/`
- `blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html` - moved from `/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength/`
- `blog/2018/06/26/blessed-families-and-true-tradition.html` - moved from `/blog/2018/06/26/blessed-families-and-true-tradition/`
- `blog/2018/06/26/blessing-and-resurrection.html` - moved from `/blog/2018/06/26/blessing-and-resurrection/`
- `blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html` - moved from `/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents/`
- `blog/2018/06/26/day-of-victory-of-love.html` - moved from `/blog/2018/06/26/day-of-victory-of-love/`
- `blog/2018/06/26/founders-address.html` - moved from `/blog/2018/06/26/founders-address/`
- `blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html` - moved from `/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life/`
- `blog/2018/06/26/gods-day-midnight-address.html` - moved from `/blog/2018/06/26/gods-day-midnight-address/`
- `blog/2018/06/26/gods-day-morning-address.html` - moved from `/blog/2018/06/26/gods-day-morning-address/`
- `blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html` - moved from `/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves/`
- `blog/2018/06/26/i-will-live-with-true-parents.html` - moved from `/blog/2018/06/26/i-will-live-with-true-parents/`
- `blog/2018/06/26/international-leaders-conference.html` - moved from `/blog/2018/06/26/international-leaders-conference/`
- `blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html` - moved from `/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven/`
- `blog/2018/06/26/leaders-building-a-world-of-peace.html` - moved from `/blog/2018/06/26/leaders-building-a-world-of-peace/`
- `blog/2018/06/26/leaders-meeting-2.html` - moved from `/blog/2018/06/26/leaders-meeting-2/`
- `blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html` - moved from `/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents/`
- `blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html` - moved from `/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation/`
- `blog/2018/06/26/liberation-and-my-ownership.html` - moved from `/blog/2018/06/26/liberation-and-my-ownership/`
- `blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html` - moved from `/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation/`
- `blog/2018/06/26/my-whole-life.html` - moved from `/blog/2018/06/26/my-whole-life/`
- `blog/2018/06/26/new-family-and-the-completed-testament.html` - moved from `/blog/2018/06/26/new-family-and-the-completed-testament/`
- `blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html` - moved from `/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2/`
- `blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html` - moved from `/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge/`
- `blog/2018/06/26/new-nation-and-new-family.html` - moved from `/blog/2018/06/26/new-nation-and-new-family/`
- `blog/2018/06/26/our-mission-during-the-time-of-world-transition.html` - moved from `/blog/2018/06/26/our-mission-during-the-time-of-world-transition/`
- `blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html` - moved from `/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world/`
- `blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html` - moved from `/blog/2018/06/26/parents-day-true-parents-and-blessed-couples/`
- `blog/2018/06/26/religions-mission-for-world-peace.html` - moved from `/blog/2018/06/26/religions-mission-for-world-peace/`
- `blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html` - moved from `/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself/`
- `blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html` - moved from `/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i/`
- `blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html` - moved from `/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii/`
- `blog/2018/06/26/returning-to-the-home-country.html` - moved from `/blog/2018/06/26/returning-to-the-home-country/`
- `blog/2018/06/26/royal-family-of-true-love.html` - moved from `/blog/2018/06/26/royal-family-of-true-love/`
- `blog/2018/06/26/sunday-sermon-and-conference-memos.html` - moved from `/blog/2018/06/26/sunday-sermon-and-conference-memos/`
- `blog/2018/06/26/sunday-service.html` - moved from `/blog/2018/06/26/sunday-service/`
- `blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html` - moved from `/blog/2018/06/26/the-38th-anniversary-of-the-unification-church/`
- `blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html` - moved from `/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing/`
- `blog/2018/06/26/the-completed-testament-era-and-me.html` - moved from `/blog/2018/06/26/the-completed-testament-era-and-me/`
- `blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html` - moved from `/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love/`
- `blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html` - moved from `/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations/`
- `blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html` - moved from `/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history/`
- `blog/2018/06/26/the-dream-of-the-unification-church.html` - moved from `/blog/2018/06/26/the-dream-of-the-unification-church/`
- `blog/2018/06/26/the-joining-of-heaven-earth-and-man.html` - moved from `/blog/2018/06/26/the-joining-of-heaven-earth-and-man/`
- `blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html` - moved from `/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one/`
- `blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html` - moved from `/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii/`
- `blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html` - moved from `/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century/`
- `blog/2018/06/26/the-realm-of-heavenly-liberation.html` - moved from `/blog/2018/06/26/the-realm-of-heavenly-liberation/`
- `blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html` - moved from `/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era/`
- `blog/2018/06/26/the-responsibility-of-tribal-messiahship.html` - moved from `/blog/2018/06/26/the-responsibility-of-tribal-messiahship/`
- `blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html` - moved from `/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family/`
- `blog/2018/06/26/the-tribal-messiah-and-my-homeland.html` - moved from `/blog/2018/06/26/the-tribal-messiah-and-my-homeland/`
- `blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html` - moved from `/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections/`
- `blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html` - moved from `/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea/`
- `blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html` - moved from `/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history/`
- `blog/2018/06/26/the-unification-church-our-pride.html` - moved from `/blog/2018/06/26/the-unification-church-our-pride/`
- `blog/2018/06/26/the-way-to-world-peace.html` - moved from `/blog/2018/06/26/the-way-to-world-peace/`
- `blog/2018/06/26/tribal-messiahship.html` - moved from `/blog/2018/06/26/tribal-messiahship/`
- `blog/2018/06/26/true-family-resurrection-and-world-liberation.html` - moved from `/blog/2018/06/26/true-family-resurrection-and-world-liberation/`
- `blog/2018/06/26/true-love-and-one-unified-thought-2.html` - moved from `/blog/2018/06/26/true-love-and-one-unified-thought-2/`
- `blog/2018/06/26/true-love-and-one-unified-thought.html` - moved from `/blog/2018/06/26/true-love-and-one-unified-thought/`
- `blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html` - moved from `/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration/`
- `blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html` - moved from `/blog/2018/06/26/true-parents-and-the-realm-of-resurrection/`
- `blog/2018/06/26/true-parents-birthday-2.html` - moved from `/blog/2018/06/26/true-parents-birthday-2/`
- `blog/2018/06/26/true-parents-birthday-main-ceremony.html` - moved from `/blog/2018/06/26/true-parents-birthday-main-ceremony/`
- `blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html` - moved from `/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents/`
- `blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html` - moved from `/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions/`
- `blog/2018/06/27/39th-true-childrens-day-address.html` - moved from `/blog/2018/06/27/39th-true-childrens-day-address/`
- `blog/2018/06/27/address-to-the-blessed-children.html` - moved from `/blog/2018/06/27/address-to-the-blessed-children/`
- `blog/2018/06/27/declaration-day-of-heavenly-parentism.html` - moved from `/blog/2018/06/27/declaration-day-of-heavenly-parentism/`
- `blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html` - moved from `/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle/`
- `blog/2018/06/27/everybody-wants-true-love.html` - moved from `/blog/2018/06/27/everybody-wants-true-love/`
- `blog/2018/06/27/fathers-prayer-on-true-parents-day.html` - moved from `/blog/2018/06/27/fathers-prayer-on-true-parents-day/`
- `blog/2018/06/27/find-your-true-self.html` - moved from `/blog/2018/06/27/find-your-true-self/`
- `blog/2018/06/27/following-the-cosmic-true-love-way.html` - moved from `/blog/2018/06/27/following-the-cosmic-true-love-way/`
- `blog/2018/06/27/gods-chest-and-our-chest.html` - moved from `/blog/2018/06/27/gods-chest-and-our-chest/`
- `blog/2018/06/27/gods-fatherland.html` - moved from `/blog/2018/06/27/gods-fatherland/`
- `blog/2018/06/27/in-search-of-the-origin-of-the-universe.html` - moved from `/blog/2018/06/27/in-search-of-the-origin-of-the-universe/`
- `blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html` - moved from `/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address/`
- `blog/2018/06/27/leaders-conference.html` - moved from `/blog/2018/06/27/leaders-conference/`
- `blog/2018/06/27/leaders-meeting-3.html` - moved from `/blog/2018/06/27/leaders-meeting-3/`
- `blog/2018/06/27/leaders-meeting-4.html` - moved from `/blog/2018/06/27/leaders-meeting-4/`
- `blog/2018/06/27/leadership-conference-2.html` - moved from `/blog/2018/06/27/leadership-conference-2/`
- `blog/2018/06/27/leadership-conference.html` - moved from `/blog/2018/06/27/leadership-conference/`
- `blog/2018/06/27/leadership-meeting.html` - moved from `/blog/2018/06/27/leadership-meeting/`
- `blog/2018/06/27/let-us-find-our-true-self.html` - moved from `/blog/2018/06/27/let-us-find-our-true-self/`
- `blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html` - moved from `/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family/`
- `blog/2018/06/27/midnight-benediction-true-gods-day-1998.html` - moved from `/blog/2018/06/27/midnight-benediction-true-gods-day-1998/`
- `blog/2018/06/27/my-life-of-faith.html` - moved from `/blog/2018/06/27/my-life-of-faith/`
- `blog/2018/06/27/my-lifes-fate-and-destiny.html` - moved from `/blog/2018/06/27/my-lifes-fate-and-destiny/`
- `blog/2018/06/27/original-family-and-blessed-family.html` - moved from `/blog/2018/06/27/original-family-and-blessed-family/`
- `blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html` - moved from `/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents/`
- `blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html` - moved from `/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace/`
- `blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html` - moved from `/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family/`
- `blog/2018/06/27/restoration-of-true-sonship.html` - moved from `/blog/2018/06/27/restoration-of-true-sonship/`
- `blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html` - moved from `/blog/2018/06/27/the-43rd-anniversary-of-foundation-day/`
- `blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html` - moved from `/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence/`
- `blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html` - moved from `/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family/`
- `blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html` - moved from `/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires/`
- `blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html` - moved from `/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil/`
- `blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html` - moved from `/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification/`
- `blog/2018/06/27/the-leaders-conference.html` - moved from `/blog/2018/06/27/the-leaders-conference/`
- `blog/2018/06/27/the-leaders-meeting-2.html` - moved from `/blog/2018/06/27/the-leaders-meeting-2/`
- `blog/2018/06/27/the-leaders-meeting-3.html` - moved from `/blog/2018/06/27/the-leaders-meeting-3/`
- `blog/2018/06/27/the-leaders-meeting.html` - moved from `/blog/2018/06/27/the-leaders-meeting/`
- `blog/2018/06/27/the-leadership-conference.html` - moved from `/blog/2018/06/27/the-leadership-conference/`
- `blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html` - moved from `/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love/`
- `blog/2018/06/27/the-new-family-pledge.html` - moved from `/blog/2018/06/27/the-new-family-pledge/`
- `blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html` - moved from `/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity/`
- `blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html` - moved from `/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century/`
- `blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html` - moved from `/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position/`
- `blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html` - moved from `/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace/`
- `blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html` - moved from `/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement/`
- `blog/2018/06/27/the-time-of-youth.html` - moved from `/blog/2018/06/27/the-time-of-youth/`
- `blog/2018/06/27/the-true-family-and-i.html` - moved from `/blog/2018/06/27/the-true-family-and-i/`
- `blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html` - moved from `/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world/`
- `blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html` - moved from `/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i/`
- `blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html` - moved from `/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace/`
- `blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html` - moved from `/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence/`
- `blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html` - moved from `/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony/`
- `blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html` - moved from `/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love/`
- `blog/2018/06/27/true-family-and-world-peace.html` - moved from `/blog/2018/06/27/true-family-and-world-peace/`
- `blog/2018/06/27/true-fathers-forty-years-of-life-alone.html` - moved from `/blog/2018/06/27/true-fathers-forty-years-of-life-alone/`
- `blog/2018/06/27/true-gods-day-2.html` - moved from `/blog/2018/06/27/true-gods-day-2/`
- `blog/2018/06/27/true-gods-day-midnight-address.html` - moved from `/blog/2018/06/27/true-gods-day-midnight-address/`
- `blog/2018/06/27/true-gods-day.html` - moved from `/blog/2018/06/27/true-gods-day/`
- `blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html` - moved from `/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family/`
- `blog/2018/06/27/true-parents-and-true-family.html` - moved from `/blog/2018/06/27/true-parents-and-true-family/`
- `blog/2018/06/27/true-parents-birthday-3.html` - moved from `/blog/2018/06/27/true-parents-birthday-3/`
- `blog/2018/06/27/true-parents-birthday-4.html` - moved from `/blog/2018/06/27/true-parents-birthday-4/`
- `blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html` - moved from `/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day/`
- `blog/2018/06/27/true-parents-wedding-anniversary-address.html` - moved from `/blog/2018/06/27/true-parents-wedding-anniversary-address/`
- `blog/2018/06/27/true-world-peace.html` - moved from `/blog/2018/06/27/true-world-peace/`
- `blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html` - moved from `/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love/`
- `blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html` - moved from `/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation/`
- `blog/2018/06/27/we-have-to-restore-the-original-seed.html` - moved from `/blog/2018/06/27/we-have-to-restore-the-original-seed/`
- `blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html` - moved from `/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life/`
- `blog/2018/06/27/where-is-the-base-for-the-true-ideal.html` - moved from `/blog/2018/06/27/where-is-the-base-for-the-true-ideal/`
- `blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html` - moved from `/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world/`
- `blog/2018/06/27/who-was-i-2.html` - moved from `/blog/2018/06/27/who-was-i-2/`
- `blog/2018/06/27/with-jungsung-and-love.html` - moved from `/blog/2018/06/27/with-jungsung-and-love/`
- `blog/2018/06/27/yeon-jin-nims-birthday.html` - moved from `/blog/2018/06/27/yeon-jin-nims-birthday/`
- `blog/2018/06/27/youth-federation-for-world-peace.html` - moved from `/blog/2018/06/27/youth-federation-for-world-peace/`
- `blog/2018/06/29/breaking-down-boundaries-and-world-peace.html` - moved from `/blog/2018/06/29/breaking-down-boundaries-and-world-peace/`
- `blog/2018/06/29/god-is-our-king-and-true-parent.html` - moved from `/blog/2018/06/29/god-is-our-king-and-true-parent/`
- `blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html` - moved from `/blog/2018/06/29/let-us-discover-the-true-meaning-of-i/`
- `blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html` - moved from `/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace/`
- `blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html` - moved from `/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god/`
- `blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html` - moved from `/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland/`
- `blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html` - moved from `/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there/`
- `blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html` - moved from `/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days/`
- `blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html` - moved from `/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will/`
- `blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html` - moved from `/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love/`
- `blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html` - moved from `/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer/`
- `blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html` - moved from `/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea/`
- `blog/2018/06/30/belvedere-hoon-dok-hae.html` - moved from `/blog/2018/06/30/belvedere-hoon-dok-hae/`
- `blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html` - moved from `/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history/`
- `blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html` - moved from `/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace/`
- `blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html` - moved from `/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom/`
- `blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html` - moved from `/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel/`
- `blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html` - moved from `/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae/`
- `blog/2018/06/30/fathers-words-in-washington-d-c.html` - moved from `/blog/2018/06/30/fathers-words-in-washington-d-c/`
- `blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html` - moved from `/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart/`
- `blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html` - moved from `/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century/`
- `blog/2018/06/30/god-and-a-united-world-of-peace.html` - moved from `/blog/2018/06/30/god-and-a-united-world-of-peace/`
- `blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html` - moved from `/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk/`
- `blog/2018/06/30/gods-fatherland-and-the-one-world-2.html` - moved from `/blog/2018/06/30/gods-fatherland-and-the-one-world-2/`
- `blog/2018/06/30/gods-fatherland-and-the-one-world.html` - moved from `/blog/2018/06/30/gods-fatherland-and-the-one-world/`
- `blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html` - moved from `/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom/`
- `blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html` - moved from `/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release/`
- `blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html` - moved from `/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world/`
- `blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html` - moved from `/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace/`
- `blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html` - moved from `/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality/`
- `blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html` - moved from `/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families/`
- `blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html` - moved from `/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love/`
- `blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html` - moved from `/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind/`
- `blog/2018/06/30/hoon-dok-hae.html` - moved from `/blog/2018/06/30/hoon-dok-hae/`
- `blog/2018/06/30/in-order-to-realize-the-world-of-peace.html` - moved from `/blog/2018/06/30/in-order-to-realize-the-world-of-peace/`
- `blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html` - moved from `/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations/`
- `blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html` - moved from `/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world/`
- `blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html` - moved from `/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary/`
- `blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html` - moved from `/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history/`
- `blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one.html` - moved from `/blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one/`
- `blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days.html` - moved from `/blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days/`
- `blog/2018/06/30/the-messiah-and-true-parents.html` - moved from `/blog/2018/06/30/the-messiah-and-true-parents/`
- `blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html` - moved from `/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven/`
- `blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html` - moved from `/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace/`
- `blog/2018/06/30/the-owner-of-re-creation.html` - moved from `/blog/2018/06/30/the-owner-of-re-creation/`
- `blog/2018/06/30/the-owners-of-re-creation.html` - moved from `/blog/2018/06/30/the-owners-of-re-creation/`
- `blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html` - moved from `/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth/`
- `blog/2018/06/30/true-father-rev-sun-myung-moon.html` - moved from `/blog/2018/06/30/true-father-rev-sun-myung-moon/`
- `blog/2018/06/30/true-father-reverend-sun-myung-moon.html` - moved from `/blog/2018/06/30/true-father-reverend-sun-myung-moon/`
- `blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html` - moved from `/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae/`
- `blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html` - moved from `/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae/`
- `blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html` - moved from `/blog/2018/06/30/true-parents-arrival-and-joyful-gathering/`
- `blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html` - moved from `/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message/`
- `blog/2018/07/20/blessed-marriage-and-eternal-life.html` - moved from `/blog/2018/07/20/blessed-marriage-and-eternal-life/`
- `blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html` - moved from `/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world/`
- `blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html` - moved from `/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity/`
- `blog/2018/07/20/the-origin-of-peace-is-god.html` - moved from `/blog/2018/07/20/the-origin-of-peace-is-god/`
- `blog/2018/07/20/the-path-of-life-for-all-humankind.html` - moved from `/blog/2018/07/20/the-path-of-life-for-all-humankind/`
- `blog/2018/07/20/true-parents-and-the-completed-testament-age.html` - moved from `/blog/2018/07/20/true-parents-and-the-completed-testament-age/`
- `blog/2018/07/20/world-peace-and-the-role-of-women.html` - moved from `/blog/2018/07/20/world-peace-and-the-role-of-women/`
- `blog/2018/07/20/youth-federation-for-world-peace-2.html` - moved from `/blog/2018/07/20/youth-federation-for-world-peace-2/`
- `blog/2019/03/01/marriage-blessing-celebration-event.html` - moved from `/blog/2019/03/01/marriage-blessing-celebration-event/`
- `blog/categories/announcements.html` - moved from `/blog/category/announcements/`
- `blog/categories/events.html` - moved from `/blog/category/events/`
- `blog/categories/news.html` - moved from `/blog/category/news/`
- `speeches/categories/mrs-hak-ja-han-moon.html` - moved from `/blog/category/speeches-of-mrs-hak-ja-han-moon/`
- `speeches/categories/rev-sun-myung-moon-1957-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1957/page/2/`
- `speeches/categories/rev-sun-myung-moon-1957-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1957/page/3/`
- `speeches/categories/rev-sun-myung-moon-1957-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1957/page/4/`
- `speeches/categories/rev-sun-myung-moon-1957.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1957/`
- `speeches/categories/rev-sun-myung-moon-1958-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1958/page/2/`
- `speeches/categories/rev-sun-myung-moon-1958-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1958/page/3/`
- `speeches/categories/rev-sun-myung-moon-1958-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1958/page/4/`
- `speeches/categories/rev-sun-myung-moon-1958.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1958/`
- `speeches/categories/rev-sun-myung-moon-1959-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1959/page/2/`
- `speeches/categories/rev-sun-myung-moon-1959-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1959/page/3/`
- `speeches/categories/rev-sun-myung-moon-1959-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1959/page/4/`
- `speeches/categories/rev-sun-myung-moon-1959.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1959/`
- `speeches/categories/rev-sun-myung-moon-1965.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1965/`
- `speeches/categories/rev-sun-myung-moon-1971-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1971/page/2/`
- `speeches/categories/rev-sun-myung-moon-1971.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1971/`
- `speeches/categories/rev-sun-myung-moon-1972.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1972/`
- `speeches/categories/rev-sun-myung-moon-1976-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1976/page/2/`
- `speeches/categories/rev-sun-myung-moon-1976.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1976/`
- `speeches/categories/rev-sun-myung-moon-1977-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1977/page/2/`
- `speeches/categories/rev-sun-myung-moon-1977-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1977/page/3/`
- `speeches/categories/rev-sun-myung-moon-1977-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1977/page/4/`
- `speeches/categories/rev-sun-myung-moon-1977-page-5.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1977/page/5/`
- `speeches/categories/rev-sun-myung-moon-1977.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1977/`
- `speeches/categories/rev-sun-myung-moon-1978-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/page/2/`
- `speeches/categories/rev-sun-myung-moon-1978-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/page/3/`
- `speeches/categories/rev-sun-myung-moon-1978-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/page/4/`
- `speeches/categories/rev-sun-myung-moon-1978-page-5.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/page/5/`
- `speeches/categories/rev-sun-myung-moon-1978-page-6.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/page/6/`
- `speeches/categories/rev-sun-myung-moon-1978.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1978/`
- `speeches/categories/rev-sun-myung-moon-1979-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1979/page/2/`
- `speeches/categories/rev-sun-myung-moon-1979-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1979/page/3/`
- `speeches/categories/rev-sun-myung-moon-1979-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1979/page/4/`
- `speeches/categories/rev-sun-myung-moon-1979-page-5.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1979/page/5/`
- `speeches/categories/rev-sun-myung-moon-1979.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1979/`
- `speeches/categories/rev-sun-myung-moon-1980-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1980/page/2/`
- `speeches/categories/rev-sun-myung-moon-1980-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1980/page/3/`
- `speeches/categories/rev-sun-myung-moon-1980-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1980/page/4/`
- `speeches/categories/rev-sun-myung-moon-1980.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1980/`
- `speeches/categories/rev-sun-myung-moon-1981-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1981/page/2/`
- `speeches/categories/rev-sun-myung-moon-1981-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1981/page/3/`
- `speeches/categories/rev-sun-myung-moon-1981.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1981/`
- `speeches/categories/rev-sun-myung-moon-1982-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1982/page/2/`
- `speeches/categories/rev-sun-myung-moon-1982-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1982/page/3/`
- `speeches/categories/rev-sun-myung-moon-1982-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1982/page/4/`
- `speeches/categories/rev-sun-myung-moon-1982.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1982/`
- `speeches/categories/rev-sun-myung-moon-1983-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1983/page/2/`
- `speeches/categories/rev-sun-myung-moon-1983-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1983/page/3/`
- `speeches/categories/rev-sun-myung-moon-1983-page-4.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1983/page/4/`
- `speeches/categories/rev-sun-myung-moon-1983.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1983/`
- `speeches/categories/rev-sun-myung-moon-1984-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1984/page/2/`
- `speeches/categories/rev-sun-myung-moon-1984-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1984/page/3/`
- `speeches/categories/rev-sun-myung-moon-1984.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1984/`
- `speeches/categories/rev-sun-myung-moon-1985.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1985/`
- `speeches/categories/rev-sun-myung-moon-1986-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1986/page/2/`
- `speeches/categories/rev-sun-myung-moon-1986.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1986/`
- `speeches/categories/rev-sun-myung-moon-1987-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1987/page/2/`
- `speeches/categories/rev-sun-myung-moon-1987-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1987/page/3/`
- `speeches/categories/rev-sun-myung-moon-1987.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1987/`
- `speeches/categories/rev-sun-myung-moon-1988.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1988/`
- `speeches/categories/rev-sun-myung-moon-1989-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1989/page/2/`
- `speeches/categories/rev-sun-myung-moon-1989.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1989/`
- `speeches/categories/rev-sun-myung-moon-1990-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1990/page/2/`
- `speeches/categories/rev-sun-myung-moon-1990-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1990/page/3/`
- `speeches/categories/rev-sun-myung-moon-1990.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1990/`
- `speeches/categories/rev-sun-myung-moon-1991-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1991/page/2/`
- `speeches/categories/rev-sun-myung-moon-1991-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1991/page/3/`
- `speeches/categories/rev-sun-myung-moon-1991.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1991/`
- `speeches/categories/rev-sun-myung-moon-1992-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1992/page/2/`
- `speeches/categories/rev-sun-myung-moon-1992.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1992/`
- `speeches/categories/rev-sun-myung-moon-1993-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1993/page/2/`
- `speeches/categories/rev-sun-myung-moon-1993-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1993/page/3/`
- `speeches/categories/rev-sun-myung-moon-1993.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1993/`
- `speeches/categories/rev-sun-myung-moon-1994-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1994/page/2/`
- `speeches/categories/rev-sun-myung-moon-1994-page-3.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1994/page/3/`
- `speeches/categories/rev-sun-myung-moon-1994.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1994/`
- `speeches/categories/rev-sun-myung-moon-1995-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1995/page/2/`
- `speeches/categories/rev-sun-myung-moon-1995.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1995/`
- `speeches/categories/rev-sun-myung-moon-1996-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1996/page/2/`
- `speeches/categories/rev-sun-myung-moon-1996.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1996/`
- `speeches/categories/rev-sun-myung-moon-1997-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1997/page/2/`
- `speeches/categories/rev-sun-myung-moon-1997.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1997/`
- `speeches/categories/rev-sun-myung-moon-1998.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1998/`
- `speeches/categories/rev-sun-myung-moon-1999.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-1999/`
- `speeches/categories/rev-sun-myung-moon-2000.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2000/`
- `speeches/categories/rev-sun-myung-moon-2001.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2001/`
- `speeches/categories/rev-sun-myung-moon-2002-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2002/page/2/`
- `speeches/categories/rev-sun-myung-moon-2002.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2002/`
- `speeches/categories/rev-sun-myung-moon-2003-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2003/page/2/`
- `speeches/categories/rev-sun-myung-moon-2003.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2003/`
- `speeches/categories/rev-sun-myung-moon-2004.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2004/`
- `speeches/categories/rev-sun-myung-moon-2005.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2005/`
- `speeches/categories/rev-sun-myung-moon-2006.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon-2006/`
- `speeches/categories/rev-sun-myung-moon-page-2.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon/page/2/`
- `speeches/categories/rev-sun-myung-moon.html` - moved from `/blog/category/speeches-of-rev-sun-myung-moon/`
- `blog/categories/uncategorized.html` - moved from `/blog/category/uncategorized/`
- `blog/tags/blessing.html` - moved from `/blog/tag/blessing/`
- `blog/tags/god.html` - moved from `/blog/tag/god/`
- `blog/tags/marriage.html` - moved from `/blog/tag/marriage/`
- `blog/tags/relationships.html` - moved from `/blog/tag/relationships/`
- `contact.html` - moved from `/contact/`
- `events.html` - moved from `/events/`
- `index.html` - moved from `/`
- `register.html` - moved from `/register/`
- `services.html` - moved from `/services/`
- `the-founders.html` - moved from `/the-founders/`
- `videos.html` - moved from `/videos/`

View file

@ -1,142 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Organizations &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/about-us-organizations.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-124 page-child parent-pageid-29 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children current-menu-item current_page_item menu-item-2"><a href="/about.html" aria-current="page"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-124" class="post-124 page type-page status-publish hentry">
<h1 class="entry-title">Organizations</h1>
<div class="entry-content">
<p>The following is a list of partnering organizations that were founded by Rev. Sun Myung Moon and his wife Dr. Hak Ja Han Moon.</p>
<p>In the belief that the paths to peace are many, in his lifetime Rev. Moon founded many different organizations, focusing on all aspects of life: religion, culture, education, art, dance, sports etc&#8230;<br />
The following are just a few of the logos and links to these organizations&#8217; official international websites.</p>
<p>&nbsp;</p>
<p><a href="http://www.upf.org/"><img decoding="async" class="alignleft wp-image-178" alt="Logo_UPF_fit3" src="/assets/uploads/2013/10/Logo_UPF_fit3.png" width="117" height="117" /></a>The Universal Peace Federation, otherwise known as UPF, in an international organization that works on an inter-faith level. By bringing together leaders of all religious denominations UPF aims to create healthy dialogue and pro-active cooperation to build a world of Peace.</p>
<hr />
<p><a href="http://unificationnews.com/"><img decoding="async" class="alignleft wp-image-177" alt="Logo_UC_Fit3" src="/assets/uploads/2013/10/Logo_UC_Fit31.png" width="117" height="117" /></a> The Unification Church is the religious definition used by those who  choose to study and follow the teachings of Rev. Moon and Dr. Hak  Ja Han moon. It is an international religious movement commonly  known for the mass Blessing-Marriage ceremonies held in Korea  each year. For more information you can also check out the <a href="http://unification.ie/">Unification Church in Ireland </a>.</p>
<hr />
<p><a href="https://www.wfwp.org/our-story"><img decoding="async" class="alignleft wp-image-180" alt="Logo_WFWP_Fit3" src="/assets/uploads/2013/10/Logo_WFWP_Fit3.png" width="117" height="117" /></a>The Womens Federation for World Peace, or WFWP, was founded by Rev. Moon&#8217;s wife, Dr. Hak Ja Han Moon in 1992 in the conviction that a better future for the world is in the hands of women. WFWP aims to encourage and raise new women leaders that can take part in building a better society.</p>
<hr />
<p><a href="https://www.irff-uk.org/"><img loading="lazy" decoding="async" class="alignleft wp-image-176" alt="Logo_IRFF_Fit3" src="/assets/uploads/2013/10/Logo_IRFF_Fit3.png" width="117" height="117" /></a>The IRFF UK, or International Relief Friendship Foundation UK, seeks a world of ethical action, social justice, self-reliance and opportunity. Through educational service projects that promote sustainability,  opportunities for human development, community welfare and social progress are created.</p>
<p>&nbsp;</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,146 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>About Us &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/about.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-29 page-parent custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children current-menu-item current_page_item menu-item-2"><a href="/about.html" aria-current="page"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-29" class="post-29 page type-page status-publish hentry">
<h1 class="entry-title">About Us</h1>
<div class="entry-content">
<p>The Family Federation for World Peace and Unification (Family Fed, or FFWPU) is an international religious organization started by Rev. Sun Myung Moon. Originally called the Holy Spirit Association for the Unification of World Christianity (HSA-UWC), the name was changed in 1994 to reflect the changing nature of our activities.</p>
<p>Commonly known as the Unification Church, FFWPU is committed to creating God-centered families based on our central teachings, summed up in the Exposition of the Divine Principle and the various speeches and talks given by Rev. Sun Myung Moon and his wife, Rev. Hak Ja Han. Our focus is on strengthening families and resolving conflict, from the individual to the international level.</p>
<h3 dir="ltr"><b>Short Introduction to the Divine Principle</b></h3>
<p dir="ltr">Is religion necessary? Yes.</p>
<p dir="ltr">Do the established religions need to make necessary adjustments according to human development? Yes.</p>
<p dir="ltr">It is simple.</p>
<p><b>Science</b> itself deals with the tangible, measurable, physical reality. It deals with the limited world of matter in a testable, logical manner. The how questions. Studying science leads to enlightenment about, and mastery of, the material world.</p>
<p><b>Religion</b> deals with the intangible elements of life such as purpose, meaning, and value. It deals with the world of the ultimate. The why questions. Pursuit of religion leads to enlightenment about, and mastery of, the world of the mind and spirit.</p>
<p>The <b>human being</b> has to cope with both realities, the tangible and the intangible. The limited and the ultimate. The body and the mind. The how and the why.</p>
<p>Here is where a combination of the two, a<b> logical yet ultimate</b> system or Truth needs to be presented.</p>
<h5>For this, check out the <b>Divine Principle</b>, the teachings of Rev. Sun Myung Moon.</h5>
<p><a href="http://www.unification.net/dp96/dp96-1-1.html#Chap1" target="_blank" rel="noopener">The Principle of Creation</a> &#8211; Here is its presentation on the being of <b>God, </b>the process of creation and the purpose of life.</p>
<p dir="ltr"><a href="http://www.unification.net/dp96/dp96-1-2.html#Chap2" target="_blank" rel="noopener">The Human Fall</a> &#8211; Here is its presentation of the <b>human condition</b>, a contradictory state that desires both good and evil.</p>
<p>For the full DP online, visit <a href="http://www.unification.net/dp96/" target="_blank" rel="noopener">Exposition of the Divine Principle</a></p>
<p>Given, this presentation is bible based and primarily geared toward a Christian audience. But the underlying truth it suggests, beyond the biblical references, is solid and deserves to be considered.</p>
<h3>Click <a href="/speeches/index.html">here</a> to see speeches by Rev. Dr. Sun Myung Moon.</h3>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,140 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2013 Sunday Service Archive &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2013.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-405 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-405" class="post-405 page type-page status-publish hentry">
<h1 class="entry-title">2013 Sunday Service Archive</h1>
<div class="entry-content">
<p><a href="https://vimeo.com/89546295" target="_blank">December 1st, 2013</a> &#8220;One Love&#8221; (John)</p>
<p><a href="https://vimeo.com/89541806" target="_blank">November 17th, 2013</a> &#8220;Forgiveness&#8221; (Halvard)</p>
<p><a href="https://vimeo.com/87984490" target="_blank">November 10th, 2013</a> &#8220;None Should Perish&#8221; (Ely)</p>
<p>November 3rd, 2013 &#8220;True Children&#8217;s Day&#8221; (Bruno) Part 1 <a title="Part 2" href="https://vimeo.com/85955223" target="_blank">Part 2</a> <a title="Part 3" href="https://vimeo.com/85955225" target="_blank">Part 3</a> <a title="Part 4" href="https://vimeo.com/85955226" target="_blank">Part 4</a></p>
<p><a title="&quot;Creating the Environment&quot; Oct. 20, 2013" href="https://vimeo.com/85955222" target="_blank">October 20, 2013 </a>&#8220;Creating the Environment&#8221; (John)</p>
<p><a title="2nd Gen Halloween Special Part 1" href="https://vimeo.com/85080546" target="_blank">October 13, 2013</a> &#8220;2nd Gen Halloween Special&#8221; (2nd Gen &#8211; Part 2)</p>
<p><a title="2nd Gen Halloween Special Part 1" href="https://vimeo.com/85080545" target="_blank">October 13, 2013</a> &#8220;2nd Gen Halloween Special&#8221; (2nd Gen &#8211; Part 1)</p>
<p><a title="Connecting to our Roots" href="https://vimeo.com/85080544" target="_blank">October 6, 2013</a> &#8220;Connecting to our Roots&#8221; (Bruno)</p>
<p><a title="&quot;Sincerity&quot;" href="https://vimeo.com/85080543" target="_blank">September 29, 2013</a> &#8220;Sincerity&#8221; (Halvard)</p>
<p><a title="&quot;Mother's Words&quot;" href="https://vimeo.com/85078048" target="_blank">September 22, 2013</a> &#8220;Mother&#8217;s Words&#8221; (John)</p>
<p><a title="&quot;Leader's Meeting Report&quot;" href="https://vimeo.com/83976500" target="_blank">September 15, 2013</a> &#8220;Leader&#8217;s Meeting Report&#8221; (Bruno)</p>
<p><a title="&quot;Love, Sweet Love&quot;" href="https://vimeo.com/83974286" target="_blank">September 8, 2013</a> &#8220;Love, Sweet Love&#8221; (Ely)</p>
<p><a title="Father's SeungHwa 1st Anniversary" href="https://vimeo.com/83430920" target="_blank">September 1, 2013</a> &#8220;Father&#8217;s SeungHwa 1st Anniversary Commemorative Ceremony&#8221;</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,165 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2014 Sunday Services &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2014.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-442 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-442" class="post-442 page type-page status-publish hentry">
<h1 class="entry-title">2014 Sunday Services</h1>
<div class="entry-content">
<p><a title="&quot;Home Church Testimonies&quot;" href="https://vimeo.com/116465037" target="_blank">December 28, 2014</a> &#8220;Home Church Testimonies&#8221; (Ely + John)</p>
<p><a title="&quot;True Meaning of Christmas&quot;" href="https://vimeo.com/116293829" target="_blank">December 14, 2014</a> &#8220;True Meaning of Christmas&#8221; (Ely)</p>
<p>December 7, 2014 &#8211; <a title="&quot;Matching &amp; Blessing P1&quot;" href="https://vimeo.com/116294544" target="_blank">Part 1</a>, <a title="&quot;Matching &amp; Blessing P2&quot;" href="https://vimeo.com/116294546" target="_blank">Part 2 </a>&#8211; &#8220;Matching &amp; Blessing&#8221; (James)</p>
<p><a title="&quot;Home Church Testimonies&quot;" href="https://vimeo.com/116294209" target="_blank">November 30, 2014</a> &#8220;Home Church Testimonies&#8221;</p>
<p><a title="&quot;Heavenly Achievement&quot;" href="https://vimeo.com/115098190" target="_blank">November 23, 2014 </a>&#8220;Heavenly Achievement&#8221; (Ely)</p>
<p><a title="&quot;Thoughts on FLUG&quot;" href="https://vimeo.com/115098188" target="_blank">November 9, 2014</a> &#8220;Thoughts on FLUG&#8221;</p>
<p><a title="&quot;Value of Repentance&quot;" href="https://vimeo.com/115098189" target="_blank">November 2, 2014 </a>&#8220;Value of Repentance&#8221; (Ely)</p>
<p><a title="&quot;God's Truth&quot;" href="https://vimeo.com/112645361" target="_blank">October 26, 2014</a> &#8220;God&#8217;s Truth&#8221; (Omar)</p>
<p><a title="GFLU" href="https://vimeo.com/112645360" target="_blank">October 19, 2014 </a>&#8220;GFLU&#8221; (John)</p>
<p><a title="&quot;Faith &amp; Hope&quot;" href="https://vimeo.com/112645359" target="_blank">October 12, 2014</a> &#8220;Faith &amp; Hope&#8221; (David)</p>
<p><a title="&quot;Inspiration Support&quot;" href="https://vimeo.com/108037762" target="_blank">October 5, 2014</a> &#8220;Inspiration Report&#8221; (Ely)</p>
<p><a title="&quot;F.L.U.&quot;" href="https://vimeo.com/107390602" target="_blank">September 28, 2014</a> &#8220;F.L.U.&#8221; (Vicky)</p>
<p><a title="&quot;Seeing from God's Viewpoint&quot;" href="https://vimeo.com/106722542" target="_blank">September 21, 2014</a> &#8220;Seeing From God&#8217;s Viewpoint&#8221; (Alan)</p>
<p><a title="&quot;F.L.U.&quot;" href="https://vimeo.com/106093317" target="_blank">September 14, 2014</a> &#8220;F.L.U.&#8221; (John)</p>
<p><a title="Failures are the Lessons of Life" href="https://vimeo.com/104842608" target="_blank">August 31, 2014</a> &#8220;Failures are the Lessons of Life&#8221; (Alan)</p>
<p><a title="Duty &amp; Fun" href="https://vimeo.com/104221740" target="_blank">August 24, 2014</a> &#8220;Duty &amp; Fun&#8221; (Ely)</p>
<p><a title="&quot;Testimonies of True Father&quot;" href="https://vimeo.com/103052046" target="_blank">August 10, 2014</a> &#8220;Testimonies of True Father&#8221;</p>
<p><a title="Testimony" href="https://vimeo.com/101295376" target="_blank">July 20, 2014</a> &#8220;Testimony&#8221; (Rosin &amp; Rose)</p>
<p><a title="Rev. An" href="https://vimeo.com/101295375" target="_blank">July 13, 2014</a>  (Rev. An)</p>
<p><a title="&quot;Back to Basics&quot;" href="https://vimeo.com/100027786" target="_blank">July 6, 2014</a> &#8220;Back to Basics&#8221; (Halvard)</p>
<p>June 29, 2014 &#8220;Vision 2020 Recap&#8221; (Ely)</p>
<p><a title="&quot;Ideal Couples&quot;" href="https://vimeo.com/98851086" target="_blank">June 22, 2014</a> &#8220;Ideal Couples&#8221; (John)</p>
<p><a title="&quot;Blessing Testimony&quot;" href="https://vimeo.com/97035770" target="_blank">June 1, 2014</a> &#8220;Blessing Testimony&#8221; (Lisa &amp; Alex)</p>
<p><a title="&quot;Grace&quot;" href="https://vimeo.com/94829881" target="_blank">May 11, 2014</a> &#8220;Grace&#8221; (John)</p>
<p><a title="&quot;Them &amp; Us&quot;" href="https://vimeo.com/93059176" target="_blank">April 27, 2014</a> &#8220;Them &amp; Us&#8221; (Alan)</p>
<p><a title="&quot;Small Groups&quot;" href="https://vimeo.com/91155872" target="_blank">April 6, 2014</a> &#8220;Small Groups&#8221; (John)</p>
<p>March 30, 2014 &#8220;Mother&#8217;s Love on Mother&#8217;s Day&#8221; (Ely) &#8211; still processing</p>
<p><a title="&quot;European Reports&quot;" href="https://vimeo.com/89833976" target="_blank">March 23, 2014</a> &#8220;European Assembly Reports&#8221; (Ely &amp; Bruno)</p>
<p><a title="Identity" href="https://vimeo.com/89227370" target="_blank">March 16, 2014</a> &#8220;Identity&#8221; (Patricia)</p>
<p><a href="https://vimeo.com/90416767">March 9, 2014</a> &#8220;Vicky&#8217;s Reflections&#8221; (Vicky)</p>
<p><a title="Temptation" href="https://vimeo.com/87983321" target="_blank">March 2, 2014 </a> &#8220;Temptation with Returning Resurrection&#8221; (Ely)</p>
<p><a title="report" href="https://vimeo.com/87389138" target="_blank">February 23, 2014</a> &#8220;Report from Korea&#8221; (Bruno)</p>
<p><a title="&quot;Prayer Life&quot;" href="https://vimeo.com/86821523" target="_blank">February 16, 2014</a> &#8220;Prayer Life&#8221; (James &amp; Kotoku)</p>
<p><a title="2nd Gen Reflections" href="https://vimeo.com/86231679" target="_blank">February 9, 2014</a> &#8220;2nd Gen Reflections&#8221;</p>
<p><a title="Halvard" href="https://vimeo.com/85647821" target="_blank">February 2, 2014</a> Sunday Service &#8211; Holy Days (Halvard)</p>
<p><a title="Let's Share Our Happiness" href="https://vimeo.com/85074233" target="_blank">January 26, 2014</a> &#8220;Let&#8217;s Share Our Happiness&#8221; (John)</p>
<p><a title="Motivation &amp; Determination" href="https://vimeo.com/84514235" target="_blank">January 19, 2014 </a>&#8220;Determination &amp; Motivation&#8221; (Ely)</p>
<p><a title="Sunday Service 12.1.2014" href="https://vimeo.com/84514236" target="_blank">January 12, 2014</a> Sunday Service</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,150 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2015 Sunday Services Archive &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2015.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-637 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-637" class="post-637 page type-page status-publish hentry">
<h1 class="entry-title">2015 Sunday Services Archive</h1>
<div class="entry-content">
<p><a title="Youth Service" href="https://vimeo.com/149551747" target="_blank">December 20, 2015</a>  Youth Service (Alex &amp; Joy)</p>
<p><a title="original mind" href="https://vimeo.com/145079678" target="_blank">October 25, 2015</a> &#8220;Original Mind&#8221; (John)</p>
<p>October 11, 2015 <a title="Part 1 original value" href="https://vimeo.com/145080036" target="_blank">Part 1</a>, <a title="part 2" href="https://vimeo.com/145079612" target="_blank"> Part 2</a> &#8211;  &#8220;Original Value&#8221; (Tinko)</p>
<p><a title="We are the miracles" href="https://vimeo.com/141315198">October 4, 2015</a> &#8220;We are the Miracles&#8221; (Ely)</p>
<p><a title="What are vitality elements" href="https://vimeo.com/140564636">September 27, 2015</a> &#8220;What are Vitality Elements?&#8221; (James)</p>
<p><a title="Compassion" href="https://vimeo.com/138459681" target="_blank">September 6, 2015</a> &#8220;Compassion&#8221; (Ely)</p>
<p><a title="Growing Time" href="https://vimeo.com/135788313" target="_blank">August 9, 2015</a> &#8220;Growing Time&#8221; (Ely)</p>
<p><a title="discovering and Making your own offerings" href="https://vimeo.com/135302690" target="_blank">August 3, 2015</a> &#8220;Discovering &amp; Making your own Offering&#8221; (Alan)</p>
<p><a title="First Resurrection" href="https://vimeo.com/134540223" target="_blank">July 26, 2015</a>  &#8220;First Resurrection&#8221;  (Halvard)</p>
<p><a title="Parental Heart" href="https://vimeo.com/133262868" target="_blank">July 12, 2015</a> &#8220;Parental Heart&#8221; (Tinko)</p>
<p><a title="for our family" href="https://vimeo.com/132635649" target="_blank">July 5, 2015</a> &#8220;For our Family&#8221; (Ely)</p>
<p><a title="&quot;Motivation&quot;" href="https://vimeo.com/130014915" target="_blank">June 7, 2015</a> &#8220;Motivation&#8221; (Ely)</p>
<p>May 31, 2015 <a title="singing" href="https://vimeo.com/129345895" target="_blank">Part 1</a> -Singing <a title="Part2 " href="https://vimeo.com/129345893" target="_blank">Part 2</a> &#8220;2nd Gen Testimony&#8221; (Eli)</p>
<p><a title="&quot;True Ownership&quot;" href="https://vimeo.com/126718425" target="_blank">May 3, 2015 </a> &#8220;True Ownership&#8221;  (John)</p>
<p><a title="Testimony David" href="https://vimeo.com/124752355" target="_blank">April 12, 2015</a> &#8220;Testimony&#8221;  (David)</p>
<p><a title="Inheritance" href="https://vimeo.com/124752064">March 22, 2015 </a>&#8220;Inheritance&#8221;  (Halvard)</p>
<p><a title="&quot;Foundation Day Report&quot;" href="https://vimeo.com/124752354">March 15, 2015</a>  &#8220;Foundation Day Report&#8221;  (Ely)</p>
<p><a title="Inheriting Tradition" href="https://vimeo.com/121589948">March 8, 2015</a> &#8212; &#8220;Inheriting Tradition&#8221;  (Ben)</p>
<p><a title="&quot;Matching Testimony&quot;" href="https://vimeo.com/119041914" target="_blank">February 8, 2015</a> &#8220;Matching Testimony&#8221; (Brendan)</p>
<p><a title="&quot;No Man is an Island&quot;" href="https://vimeo.com/118409692" target="_blank">February 1, 2015</a> &#8220;No Man is an Island&#8221; (Ely)</p>
<p><a title="Some Reflections" href="https://vimeo.com/117730566" target="_blank">January 25, 2015</a> &#8220;Some Reflections&#8221; (John)</p>
<p><a title="A Man With a Plan" href="https://vimeo.com/117730567" target="_blank">January 11, 2015</a> &#8220;A Man With a Plan&#8221; (Alan)</p>
<p><a title="&quot;New Years Service&quot; " href="https://vimeo.com/116465041" target="_blank">January 1, 2015 </a>&#8220;New Years Service&#8221; &amp; &#8220;Workshop Graduation&#8221; (Ely)</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,149 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2016 Sunday Service Archive &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2016.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-705 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-705" class="post-705 page type-page status-publish hentry">
<h1 class="entry-title">2016 Sunday Service Archive</h1>
<div class="entry-content">
<p>December 11, 2016 &#8220;Original Mind&#8221; <a href="https://vimeo.com/195726746">Part 1</a>, <a href="https://vimeo.com/195726797">Part 2</a> (Tinko)</p>
<p><a href="https://vimeo.com/192383371">November 13, 2016</a> &#8220;Life and Death&#8221; (Tinko)</p>
<p>November 6, 2016, <a href="https://vimeo.com/190481730">Part 1</a>, <a href="https://vimeo.com/192383222">Part 2</a> &#8220;Physician, Heal Thyself&#8221; (Ely)</p>
<p><a href="https://vimeo.com/190481483">October 30, 2016</a> &#8220;Healing Resentment&#8221; (John)</p>
<p><a href="https://vimeo.com/190481476">October 23, 2016</a> &#8220;Believing in True Parents&#8221; (Halvard)</p>
<p><a href="https://vimeo.com/190481423">October 9, 2016</a> &#8220;Forgiveness&#8221; (Tinko)</p>
<p><a href="https://vimeo.com/185208526">October 4, 2016</a> &#8220;Give and Take Action&#8221; (Ely)</p>
<p><a href="https://vimeo.com/184209006">September 25, 2016</a> “Resolving to Create Culture of Heart Anew” (John)</p>
<p><a href="https://vimeo.com/181417716">September 4, 2016</a> &#8220;Defending Mother&#8221; (Ely)</p>
<p><a href="https://vimeo.com/178792010">August 14, 2016</a> &#8220;Jongsil Testimony&#8221; (Jongsil)</p>
<p><a href="https://vimeo.com/177915899">August 7, 2016</a> &#8220;Subject of Love, Object of Beauty&#8221; (Tinko)</p>
<p><a href="https://vimeo.com/176024359">July 24, 2016</a> &#8220;CheongPyeong Testimony&#8221; (Ben)</p>
<p><a href="https://vimeo.com/172295976">June 26, 2016</a> &#8220;Eternal Hope&#8221; (Ely)</p>
<p><a href="https://vimeo.com/172295969">June 12, 2016</a> &#8220;You Inspire Me&#8221; (Vicky)</p>
<p><a href="https://vimeo.com/172295962">June 5, 2016</a> &#8220;Day of All True Things&#8221; (Matthias)</p>
<p><a href="https://vimeo.com/172295959">May 29, 2016</a> &#8220;Creating Happiness &amp; Avoiding Unhappiness&#8221; (John)</p>
<p><a href="https://vimeo.com/165977665">May 8, 2016</a> &#8220;If We Really Knew&#8221; (Halvard)</p>
<p><a href="https://vimeo.com/165975765">May 1, 2016</a> &#8220;Everything Will Be Alright&#8221; (Ely)</p>
<p><a href="https://vimeo.com/161353160">April 3, 2016</a> &#8220;Finding Inspiration&#8221; (Ely)</p>
<p><a href="https://vimeo.com/158800415">March 13, 2016</a> &#8220;Family and Spiritual Growth&#8221; (James)</p>
<p><a title="Healing Hearts" href="https://vimeo.com/157906531" target="_blank">March 6, 2016</a> &#8220;Healing Hearts&#8221; (Ely)</p>
<p>February 14, 2016, <a href="https://vimeo.com/158800413">Part 1</a>, <a href="https://vimeo.com/158800414">Part 2</a> &#8220;Investing in Conjugal Love&#8221; (Alan)</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,156 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2017 Sunday Service Archive &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2017.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-2500 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-2500" class="post-2500 page type-page status-publish hentry">
<h1 class="entry-title">2017 Sunday Service Archive</h1>
<div class="entry-content">
<p>December 17, 2017 &#8220;<a href="https://vimeo.com/247897429">Angel Workshop Part 2</a>&#8221; (Claire)</p>
<p>December 17, 2017 &#8220;<a href="https://vimeo.com/241437735">Angel Workshop Part 1</a>&#8221; (Claire)</p>
<p>December 5, 2017 &#8220;<a href="https://vimeo.com/247896686">True Confidence</a>&#8221; (John)</p>
<p>December 3, 2017 &#8220;<a href="https://vimeo.com/245642139">A Responsible People</a>&#8221; (Dr. Hanna)</p>
<p>November 26, 2017 &#8220;<a href="https://vimeo.com/245641933">Altar</a>&#8221; (Tinko)</p>
<p>November 5, 2017 &#8220;<a href="https://vimeo.com/241438070">Finding Your Purpose</a>&#8221; (John)</p>
<p>October 29, 2017 &#8220;<a href="https://vimeo.com/241437735">Universal Shared Values</a>&#8221; (Tinko)</p>
<p>October 22, 2017 &#8220;<a href="https://vimeo.com/240309402">Moving Forward</a>&#8221; (Ely)</p>
<p>October 1, 2017 &#8220;<a href="https://vimeo.com/237598809">Attendance</a>&#8221; (John)</p>
<p>October 8, 2017 &#8220;<a href="https://vimeo.com/237593993">The Fall of Doubt</a>&#8221; (Tinko)</p>
<p>September 24, 2017 &#8220;<a href="https://vimeo.com/235248345">Original Mind</a>&#8221; (Tinko)</p>
<p>September 10, 2017 &#8220;<a href="https://vimeo.com/235248293">The Road to Peace</a>&#8221; (Ely)</p>
<p>September 3, 2017 &#8220;<a href="https://vimeo.com/227655899">Human Portion of Responsibility</a>&#8221; (John)</p>
<p>August 27, 2017 &#8220;<a href="https://vimeo.com/231314072">Sunday Service</a>&#8221; (James)</p>
<p>August 13, 2017 &#8220;<a href="https://vimeo.com/229481867">Sunday Service</a>&#8221; (Ely)</p>
<p>July 30, 2017 &#8220;<a href="https://vimeo.com/227655899">New Truth</a>&#8221; (John)</p>
<p>July 2, 2017 &#8220;<a href="https://vimeo.com/227655961">The Walls that Surround Us</a>&#8221; (Tinko)</p>
<p>May 28, 2017 &#8220;<a href="https://vimeo.com/225469296">Family Love</a>&#8221; (Ely)</p>
<p>May 14, 2017 &#8220;<a href="https://vimeo.com/220385435">It is all about love</a>&#8221; (Halvard)</p>
<p>May 7, 2017 &#8220;<a href="https://vimeo.com/220385239">Smart Responsibility</a>&#8221; (Alan)</p>
<p>April 9, 2017 &#8220;<a href="https://vimeo.com/220385372">Easter Service &amp; Workshop Graduation</a>&#8221; (Ely)</p>
<p>May 3, 2017 &#8220;<a href="https://vimeo.com/208048425">Practicing True Love</a>&#8221; (John)</p>
<p>March 13, 2017 &#8220;<a href="https://vimeo.com/208048323">Catcher in the Rye</a>&#8221; (Ely)</p>
<p>February 26, 2017 &#8220;<a href="https://vimeo.com/208048795">Re-creation</a>&#8221; (Tinko)</p>
<p>February 12, 2017 &#8220;<a href="https://vimeo.com/205752267">Korea Reflections</a>&#8221; (Ely)</p>
<p>February 5, 2017 &#8220;<a href="https://vimeo.com/205752130">Fighting for Love &amp; Purity</a>&#8221; (John)</p>
<p>January 29, 2017 &#8220;<a href="https://vimeo.com/205752016">Growth</a>&#8221; (Tinko)</p>
<p>January 22, 2017 &#8220;<a href="https://vimeo.com/200573440">The Blessing</a>&#8221; (Ely)</p>
<p>January 9, 2017 &#8220;<a href="https://vimeo.com/198961275">Reflections &amp; Realizations</a>&#8221; (John)</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,140 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>2018 Sunday Service Archive &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/archive-sunday-services-2018.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="page-template-default page page-id-2510 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-2510" class="post-2510 page type-page status-publish hentry">
<h1 class="entry-title">2018 Sunday Service Archive</h1>
<div class="entry-content">
<p>December 2, 2018 <a href="https://youtu.be/aHcthCMzvvs" target="_blank">&#8220;Sunday Service Part 3&#8221;</a> (John)</p>
<p>December 2, 2018 <a href="https://youtu.be/YdUC8v9TLJo" target="_blank">&#8220;Sunday Service Part 2&#8221;</a> (John)</p>
<p>December 2, 2018 <a href="https://youtu.be/3EeJjaPbvRo" target="_blank">&#8220;Sunday Service Part 1&#8221;</a> (John)</p>
<p>November 25, 2018 <a href="https://youtu.be/Vb_4VT2QVP0" target="_blank">&#8220;Hope for the Future Part 3&#8221;</a> (Ely)</p>
<p>November 25, 2018 <a href="https://youtu.be/pe8kWNP86fg" target="_blank">&#8220;Hope for the Future Part 2&#8221;</a> (Ely)</p>
<p>November 25, 2018 <a href="https://youtu.be/uvgZmbZLXoE" target="_blank">&#8220;Hope for the Future Part 1&#8221;</a> (Ely)</p>
<p>October 14, 2018 <a href="https://youtu.be/iHdjHxxMPwY" target="_blank">&#8220;Testimony&#8221;</a> (Brendan and Pat)</p>
<p>September 16, 2018 <a href="https://youtu.be/1HLw_I0b3ho" target="_blank">&#8220;Sunday Service&#8221;</a> (Dr. Balcomb)</p>
<p>August 12, 2018 <a href="https://youtu.be/GCpggsnOBQo" target="_blank">&#8220;The First Blessing&#8221;</a> (John)</p>
<p>July 22, 2018 <a href="https://youtu.be/CW3WU3n9jH8" target="_blank">&#8220;Sunday Service&#8221;</a> (Dr. Otsuka)</p>
<p>January 28, 2018 <a href="https://youtu.be/SbXFqe2gu4I" target="_blank">&#8220;Sunday Service Testimony&#8221;</a> (Pat and Amberlee)</p>
<p>January 14, 2018 <a href="https://vimeo.com/251256865" target="_blank">&#8220;Core of Evil&#8221;</a> (Ely)</p>
<p>January 7, 2018 <a href="https://vimeo.com/251258078" target="_blank">&#8220;Sunday Service&#8221;</a> (John)</p>
</div><!-- .entry-content -->
</div><!-- #post-## -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,139 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Welcome to our News page &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2013/08/03/news.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-1 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-1" class="post-1 post type-post status-publish format-standard hentry category-announcements category-news">
<h1 class="entry-title">Welcome to our News page</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2013-08-03T22:59:33+01:00"> <a href="/blog/2013/08/03/news.html" rel="bookmark">August 3, 2013</a> </time></span><time class="updated" datetime="2014-09-23T02:12:04+01:00">September 23, 2014</time> <span class="bl_categ"> <a href="/blog/categories/announcements.html" rel="tag">Announcements</a>, <a href="/blog/categories/news.html" rel="tag">News</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2013/08/03/news.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p>Thank you for visiting the &#8216;News&#8217; section of our website. We will aim to update this section with announcements from our community, including upcoming events, initiatives we&#8217;re doing and reports on past events.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2013/08/03/news.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2013/08/03/news.html" title="Permalink to Welcome to our News page" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"></div>
<div class="nav-next"><a href="/blog/2013/10/25/add-event.html" rel="next">Add Event <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

File diff suppressed because one or more lines are too long

View file

@ -1,141 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Divine Principle Introduction Evening &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2014/03/30/divine-principle-introduction-evening.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-428 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-428" class="post-428 post type-post status-publish format-standard hentry category-events">
<h1 class="entry-title">Divine Principle Introduction Evening</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2014-03-30T14:15:55+01:00"> <a href="/blog/2014/03/30/divine-principle-introduction-evening.html" rel="bookmark">March 30, 2014</a> </time></span><time class="updated" datetime="2014-09-23T02:02:26+01:00">September 23, 2014</time> <span class="bl_categ"> <a href="/blog/categories/events.html" rel="tag">Events</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/03/30/divine-principle-introduction-evening.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p>Are you interested in learning more about the Divine Principle and the Unification Church? We are organizing an evening session where we present the basic beliefs of the Unification Movement. This event is open to anyone who is curious about our beliefs.</p>
<p>There will also be dinner after the event for anyone who would like to stick around and keep chatting.</p>
<p><a href="#">More details and registration form here</a>.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/03/30/divine-principle-introduction-evening.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2014/03/30/divine-principle-introduction-evening.html" title="Permalink to Divine Principle Introduction Evening" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2013/10/25/add-event.html" rel="prev"><span class="meta-nav">&laquo;</span> Add Event</a></div>
<div class="nav-next"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html" rel="next">Check Out The Latest Issue of True Peace Magazine! <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,142 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Check Out The Latest Issue of True Peace Magazine! &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-475 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-475" class="post-475 post type-post status-publish format-standard hentry category-uncategorized">
<h1 class="entry-title">Check Out The Latest Issue of True Peace Magazine!</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2014-10-24T19:51:59+01:00"> <a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html" rel="bookmark">October 24, 2014</a> </time></span><time class="updated" datetime="2014-10-24T19:55:43+01:00">October 24, 2014</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p>Announcement from familyfed.org:</p>
<p><em>&#8220;IPeace TV has released its October issue of True Peace magazine, a monthly electronic publication that highlights True Parents words—past and present—as well as recent events and regional news&#8230;&#8230;</em></p>
<p><em>This month <em>True Peace</em> magazine features the <a href="https://2021.familyfed.org/news-story/yeon-jin-moon-and-jeung-jin-moons-joint-holy-wedding-6255/" target="_blank">joint Holy Wedding of True Parents youngest children</a>, Yeon-jin Moon and Jeung-jin Moon, and celebrates this joyful time for the two couples. Other articles include a message that True Father gave in 1988 to commemorate the 38th anniversary of his release from the Heungnam Special Labor Camp, True Mothers message on September 1 and her keynote address which was read at the Global Youth Festival, the founders address read by Dr. Sun-jin Moon at the 2014 World Summit, and some of the latest major events in Japan and the United States.</em></p>
<p><em> The October issue of True Peace magazine can be downloaded <a href="http://en.ipeacetv.com/board/EBOOK/Ebook_list.asp?code=E0201" target="_blank">here</a>. The True Peace magazine editorial team is now preparing for the next issue and beyond. Look forward to more great stories and speeches, and <a href="http://en.ipeacetv.com/" target="_blank">visit the website</a> to keep up with the latest news and publications. &#8220;</em></p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html" title="Permalink to Check Out The Latest Issue of True Peace Magazine!" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2014/03/30/divine-principle-introduction-evening.html" rel="prev"><span class="meta-nav">&laquo;</span> Divine Principle Introduction Evening</a></div>
<div class="nav-next"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html" rel="next">Celebrating the Life of Rev. Moon <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,142 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Celebrating the Life of Rev. Moon &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-624 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-624" class="post-624 post type-post status-publish format-standard hentry category-events">
<h1 class="entry-title">Celebrating the Life of Rev. Moon</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2015-08-26T15:04:05+01:00"> <a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html" rel="bookmark">August 26, 2015</a> </time></span><time class="updated" datetime="2015-08-26T15:26:23+01:00">August 26, 2015</time> <span class="bl_categ"> <a href="/blog/categories/events.html" rel="tag">Events</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><a href="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-626" src="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png" alt="Father's 3rd SeongHwa flier" width="724" height="510" srcset="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png 724w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-300x211.png 300w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-213x150.png 213w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-150x106.png 150w" sizes="(max-width: 724px) 100vw, 724px" /></a></p>
<p class="ai1ec-field-value ai1ec-col-sm-9 dt-duration">Come celebrate with us the life of Rev. Moon, the founder of the Unification Church and a Global Peace Citizen.</p>
<p class="ai1ec-field-label ai1ec-col-sm-3">To RSVP: Click<a title="RSVP" href="#"> HERE</a></p>
<p class="ai1ec-field-label ai1ec-col-sm-3">Find out more about Rev. Moon&#8217;s life and legacy: <strong><a title="Rev. Moon" href="https://familyfed.org/about-us" target="_blank">Official FamilyFed founder biography</a></strong></p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html" title="Permalink to Celebrating the Life of Rev. Moon" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html" rel="prev"><span class="meta-nav">&laquo;</span> Check Out The Latest Issue of True Peace Magazine!</a></div>
<div class="nav-next"><a href="/blog/2016/01/03/happy-new-year.html" rel="next">Happy New Year! <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,142 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Happy New Year! &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2016/01/03/happy-new-year.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-660 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-660" class="post-660 post type-post status-publish format-standard hentry category-uncategorized">
<h1 class="entry-title">Happy New Year!</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2016-01-03T05:14:47+00:00"> <a href="/blog/2016/01/03/happy-new-year.html" rel="bookmark">January 3, 2016</a> </time></span><time class="updated" datetime="2016-01-03T05:14:47+00:00">January 3, 2016</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><div style="width: 628px" class="wp-caption alignnone"><img fetchpriority="high" decoding="async" class="" src="/assets/uploads/2016/01/happy-new-year-2016.svg" alt="Happy New Year 2016 greeting" width="618" height="453" /><p class="wp-caption-text">Happy New Year 2016!</p></div>
<h4>Let go of the past year and bring on the new.</h4>
<h1>2015 Wasnt What I Thought It Would Be</h1>
<h3>&#8230;and That&#8217;s Okay.</h3>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2016/01/03/happy-new-year.html" title="Permalink to Happy New Year!" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html" rel="prev"><span class="meta-nav">&laquo;</span> Celebrating the Life of Rev. Moon</a></div>
<div class="nav-next"><a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html" rel="next">Let Us Become The Elite Troop Of God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,246 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Jesus Christ, The Pride of God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-725 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-725" class="post-725 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Jesus Christ, The Pride of God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-20T15:36:33+01:00"> <a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html" rel="bookmark">May 20, 2018</a> </time></span><time class="updated" datetime="2018-05-20T15:36:33+01:00">May 20, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><center><strong>REVEREND SUN MYUNG MOON<br />
SPEAKS ON</strong><br />
<strong>Jesus Christ, The Pride of God</strong><br />
<strong>May 16, 1956 (Wednesday)<br />
Seoul, Korea</strong></center></p>
<p style="text-align: center;"><em>II Corinthians 8:16-24</em></p>
<p style="text-align: center;"><em><span class="text 2Cor-8-16">Thanks be to God, who put into the heart of Titus the same concern I have for you.</span> <span id="en-NIV-28950" class="text 2Cor-8-17"><sup class="versenum">17 </sup>For Titus not only welcomed our appeal, but he is coming to you with much enthusiasm and on his own initiative.</span> <span id="en-NIV-28951" class="text 2Cor-8-18"><sup class="versenum">18 </sup>And we are sending along with him the brother who is praised by all the churches for his service to the gospel.</span> <span id="en-NIV-28952" class="text 2Cor-8-19"><sup class="versenum">19 </sup>What is more, he was chosen by the churches to accompany us as we carry the offering, which we administer in order to honor the Lord himself and to show our eagerness to help.</span> <span id="en-NIV-28953" class="text 2Cor-8-20"><sup class="versenum">20 </sup>We want to avoid any criticism of the way we administer this liberal gift.</span> <span id="en-NIV-28954" class="text 2Cor-8-21"><sup class="versenum">21 </sup>For we are taking pains to do what is right, not only in the eyes of the Lord but also in the eyes of man.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28955" class="text 2Cor-8-22"><sup class="versenum">22 </sup>In addition, we are sending with them our brother who has often proved to us in many ways that he is zealous, and now even more so because of his great confidence in you.</span> <span id="en-NIV-28956" class="text 2Cor-8-23"><sup class="versenum">23 </sup>As for Titus, he is my partnerand co-worker among you; as for our brothers, they are representatives of the churches and an honor to Christ.</span> <span id="en-NIV-28957" class="text 2Cor-8-24"><sup class="versenum">24 </sup>Therefore show these men the proof of your love and the reason for our pride in you, so that the churches can see it.</span></em></p>
<p><strong>Prayer 1</strong></p>
<p>Beloved Father, on this day You have granted the grace of redemption to all men. Please allow us in this hour not to forget Your bloody trail, in which You left the footprints of toil while passing through the course of history. Let us not forget the footprints of martyrdom left by the saints who walked before us.</p>
<p>Let the bows we offer before You this day and in this hour become an occasion for making a sincere offering in the same manner Abel once made the appeal of his blood sacrifice. Please lead us not to become those who gather centering on the body which will rot away. Allow us to become sanctified so that, just as Abel became a fragrant offering before You and all creation, we can represent the thirty million people of this nation and build the Abel-type altar, even though we are an unworthy group, small in number.</p>
<p>What we sincerely wish, my beloved Father, is that You will lead us to not stand in the position of Cain and brag about ourselves while we are watching Abel shed blood. This I wish and desire most sincerely. Please allow us to become overwhelmed by the heart that faces the heart of Heaven and by the heart of the appeal of the blood. Traces of the blood of goodness still remain on this earth, and since it is blood-stained land that has been bruised by thousands upon thousands of years of lamentation, please allow the emergence of many children who can appear before You as the offering of happiness and who can offer bows of gratitude for this land&#8217;s sake from among these thirty million people. Please allow many more such children among the 2.4 billion people of humanity.</p>
<p>Beloved Father, I sincerely hope and pray for the appearance of throngs of children everywhere who can demolish the wall of sin and evil that has been built up for countless years and who can create the garden of joy and happiness in order to attend You amid joy and glory. In our lives we have forgotten the fact that there remain traces of Your toilsome efforts made in the attempt to seek me and to raise me up. Please let us not forget that the reason I can live comfortably today and lead our life of faith in peace is not because I am great, but because of the blood-stained, laborious works of numerous saints and sages throughout the course of history leading up to this point and the position I am in today. Father, I wish and pray earnestly that You will raise us up to become children who can bow before You as an offering of humility and docility as one offering to be given, as one offering of happiness.</p>
<p>Father, please wake up this audience which is fast asleep. Please consider with mercy those people who are groping in the darkness without direction. For their sake, please quickly raise up those children whom You are going to raise, and call those children whom You are going to call. Please erect a center who walks toward Heaven and grant that they may quickly become the beloved altar that can represent the whole.</p>
<p>Please let every one of these people reap the victory and lead them to be grateful toward Your holy grace and offer praises while facing the holy light. Beloved Father, I earnestly wish and pray for this. Father, although only a small group of people has gathered here today we plead with You to take charge of us. Please govern us. Please penetrate the center of each individual, and lead us not to be in the position where the center of the heart that we ourselves set, the heart of ego, begins from oneself and ends in oneself. Please lead us not to stand in the position where, based on our own concepts and understanding, we form our own thoughts and are intoxicated with self-satisfaction.</p>
<p>Please lead us to honestly reveal our own concepts and assertions and to become humble and obedient offerings before the parental heart. Beloved Father, from the bottom of my heart, I pray that this can be a moment when we can agree on our own weaknesses in the dignified presence of You, Father, and take out everything that we have and offer it all to You. Father, since You have gathered these people and raised them and have already sounded the alarm bell inside this castle, You must be responsible for the whole. The mission of the whole must be completed and the work of the whole must be taken up, so please allow them to step over and stand above this era. Lead them to become the brave soldiers of Heaven who can stand on the front line and move forward to fight on. Beloved Father, from the bottom of my heart I pray that You will raise them to become the soldiers who can represent the thirty million people. Please raise them to be people who will not appear inadequate even when they stand before thousands of people of faith on this earth or go before the angels in heaven.</p>
<p>During this three-day period, there were many moments when we thought only about our selves and lived only to love our selves. We have wasted many hours trying to find justification for our selves. Nonetheless, please forgive us for not having lived in the state that You wish for: forgetting ourselves for the sake of seeking You, for the sake of fulfilling Your wishes, and in order to make manifest Your full value. We feel that we have no other choice but to march forward and make a move.</p>
<p>Do not let those who have been seeking You come with the mentality to just receive blessings and a conceptual attitude of faith here in this hour Do not let them have only the desire to be inspired in their heart. The history of the appeal, &#8220;Save me!&#8221; has already exceeded 6,000 years, and the time has come when the sound of the tearful prayer, &#8220;Please receive me,&#8221; is to be heard on the earth and to reach up to Heaven. Let this hour be the time when we can pray &#8220;Father, please receive me. I give you all that I have, so please receive me.&#8221;</p>
<p>Please lead us to question ourselves as to whether or not we have become sacrificial offerings who meet Your expectations. Every time we stand before the holy body and presence of Father, let us deeply feel how inadequate and sinful we are so that we can lower our heads and bow before You. Please awaken us to the truth and let our heart of repentance be kindled. Please allow this hour to be an opportunity for us to feel our original nature and the substantial manifestation of goodness, and to bow in subjection to the glory of You, Father.</p>
<p>We know that this is what You wish and that heaven is being mobilized for the sake of this one purpose, so please move the Trinity and let the works of the Holy Spirit take place. Please preside over the whole event by placing it all beneath Your hands. Please lead us not to have concepts and understandings that diverge from the will of Father, and lead us to build the temple of the faithful in which the whole is offered to Father. Father, I pray and wish for this earnestly.</p>
<p>Please bless every place where the lonely crowds make impassioned pleas and wishes toward Heaven at this time. Protect those children who, because they have received the command of Heaven which they cannot but follow have stepped forward with the pledge that they will not hesitate to walk even the road of death, the road of conflict, the road of persecution, the road of tribulation, and the hill of Golgotha.</p>
<p>Those who follow the footsteps of those who have walked a difficult course will also face many hardships, and I know that many wounds are inflicted on them while they are walking that path. Father, we cannot but ask You to bear the responsibility Please accept them as sacrificial offerings in Your stead and bestow on them the blessing of the heart and love of You, Father, which is to be granted in the last days.</p>
<p>Let the work of direct dominion be in each of their hearts so they can be immersed in happiness and feel the joy of You, Father. Please be present everywhere they are so that they will not be fettered by the cross of the environment, and comfort and guide them with Your own bands. Since the end of the road of conflict is near, and the remainder of the hill to be climbed is not so high, Father, I most sincerely pray that Your hands will be with them to directly guide them to smoothly climb over it.</p>
<p>We have joined our hearts and came here longing to see the Father in this hour and wish to have a time of offering a deep bow. I pray in the name of the loving Lord that from the first hour to the last, He may govern the whole meeting with the protection and grace of love, and bless us to become the offerings of grace.</p>
<p>Amen.</p>
<h3><strong>Prayer 2</strong></h3>
<p>The garden of creation is the garden of goodness, the garden of love, the garden of oneness and the garden of harmony. We know that it is our responsibility to become good in accordance with God&#8217;s love, and that it is also our responsibility to become one and to be in harmony. Before us remains the children&#8217;s course in which our daily life has to be good, and we have to be in harmony in regard to this one will. Father! Please command us in this hour again, and guide us to walk this path that You have granted us to the very end. Grant that we may not become exhausted in the fight.</p>
<p>You must hold onto us so that we will not deviate from the standard You wish. Father, because we are fallen descendants, we are powerless and in mourning, so please bring to light the perfection that You have hidden in Heaven. We wish that You may find the value of the beauty of the harmony that You are trying to find. Please reveal the original beauty of the creation so that all things in all of heaven and earth can be in harmony and raise all creations as the one original body that can return glory to the Father through love. Father, I pray for these things with a most earnest heart. We know that the cause of the grievances of Heaven lies in man, and the cause of the grievances of creation also lies in man. The lamentation of many thousands of people lies in Christianity. Therefore, the responsibility to perfect one&#8217;s self and eliminate the sorrow of the universe lies in these people, Father, so please raise them up and cultivate them to become ones who can perfect the original values. Please advise them.</p>
<p>Please bestow on them the whole ideology of love that You want, and through them, please deal with Father&#8217;s value of the whole that was lost. Please open the heart You have hidden, and appear before them in order to enable them to consult with You. Loving Father, I earnestly wish and pray for this.</p>
<p>Father! We want to know the whole story about the toilsome work that You have done while gathering this weak group of people. Father! You must appear again and hold tight the wounded hearts, and You must counsel these wounded hearts.</p>
<p>Please allow them to become ones who can take others&#8217; place to bear the grievances of a thousand years. In the course that Satan puts them through, there are tests and he initiates conflicts. As they walk the Heavenly path, lead them to become ones who center only on the one who stands straight before the cause of the whole. Please allow this to be the time in which they can become harmonious, centering on the will that the Father has set. I earnestly pray and wish this.</p>
<p>Have our minds become exhausted now? Have our bodies grown weak? Please bestow God&#8217;s fire of love in our hearts, and to our bodies give the fire of zeal, and please allow our minds and bodies to move. Allow the heavenly soldiers and angels in heaven and all spirits and all existing beings on the earth to move.</p>
<p>Through this, lead us so that by reciprocating with all things, we can restore the one center and be fully qualified to appear before all things as Your sons and daughters. I pray beloved Father, from the bottom of my heart that in this way You will allow us to emerge as the pride before the Father who has been toiling for 6,000 years against countless satans. There are those who are mourning because they are trapped in death and those miserable ones cannot escape sorrow so please hold onto them and grant them the heart with a center that can face the universal laws. Please give them wisdom and keen insight.</p>
<p>The time has come when we have to build the altar of Heaven on behalf of the thirty million people, and the time has come when we have to make the offering of a live animal of goodness. The time has come when we have to join hands and become one group, so Father, please dwell in Your children who have gathered here today and govern over their hearts, govern over their minds, and govern over their whole beings. God of love, God of ability, God of omnipotence, if there remain in them undesirable elements of evil, then please appear with eyes burning with fire and take care of their minds and hearts with Heaven&#8217;s power of the Holy Spirit and the fire of love. Father, even in this day there are countless children of Yours who do not know the path they should take and wonder because they have not found the path of life. Yet was there anyone who cried out before You for their sake, putting his life on the line and taking responsibility for them? Was there anyone who built an altar of life for their sake and shed tears? If there are such ones, please quickly find them and raise them up, so there will be many children of Yours who would cry out in appeal for others, just as Jesus cried out while looking on the cross of death and as Elijah cried out, &#8220;I am the only one that remains.&#8221;</p>
<p>I pray from the bottom of my heart, Father, that You would allow many altars of accomplishment that can contain the joyful news. Remain with these people, and please allow many more who exert themselves in ardent devotion, so that these people can overcome the tribulations of darkness and become the light of love shining down on all places in the world, moving forward upholding the revealed will of God. Beloved Father, since today in this hour, we have come forth longing for Your blessings, we should first look at ourselves. Our hearts must not become critical. I pray from the bottom of my heart, Father, that You will lead us to eradicate our concepts which we have held until now and that we may only become the sacrifice offered for the sake of the Father&#8217;s will and remain as one being that can be used. I pray that You can appear in our minds and bodies based on the original beauty and our humble and obedient attitudes. I wish that You may allow the appearance of the Father&#8217;s works of love in this hour, so that the Father can personally perform the miracle of recreation, centering on us.</p>
<p>Father! These faithful children have come forth up to this hour, persevering through the difficult environment and the path of the cross, so even just for this one hour, please show the Father&#8217;s will of love which has remained hidden for 6,000 years, and let this hour that we bow before You become a great joy that cannot be traded even for an enormous sum of money. Please lead us to pioneer our lives with the blessing and inspiration we receive today, so that by revealing the great way of the universe, we can become grateful offerings in God&#8217;s dispensation.</p>
<p>Even if we are at this place, we are ready to run toward that place whenever You call us, so please allow us to become one with the standard that moves the heart of the Father and the standard of Your love. Through Your mind, let goodness be formed in our hearts, and let that goodness become a seed, so that starting from our body a glorious garden of goodness can be created. Let that goodness expand forming a family a church, a society and a nation.</p>
<p>We know that such a responsibility for the whole lies within us, and we know that we have the responsibility to take on the mission of the Father which still remains unfulfilled, and to fight with Satan. Even if we become exhausted, Father, please give us strength. From the bottom of my heart, I wish and pray that even if we fall into a state of weakness, Father, please urge us on. When we fall down, please raise us up and give us direction so that we may continue until the moment when we penetrate the last barrier and lead a victorious group to go before the Father and return the glory of Hosanna.</p>
<p>Father, today, please let the fire of inspiration and the love of the Father fall on the countless altars we are building on behalf of the thirty million people. Even if they are ignorant and cannot understand the dispensation of 6,000 years, please do not let that cause them to become resentful toward the Heavenly altar.</p>
<p>The time has come when the will is about to be fulfilled which Jesus was crying out in tears for while clutching the Temple of Jerusalem. The divine words, in which even a single stone lying on a stone would not be left untouched, is becoming a reality between the churches and denominations of today. Please hold onto these altars, whose reality makes it impossible for their hearts to become one. Lead them to repentance and link them with the life of Heaven. Until they become an altar that can take on the suffering of Jesus&#8217; cross and sing praise and glory on behalf of the 6,000-year history, Father, please be with them.</p>
<p>Father, I wish that You would preside over all the ceremonies directly, that You would allow us to build the Father&#8217;s nation, and that You would raise us to become victorious people of mission whom You can bless. Even in this hour today Satan is committing despicable acts, so Father, please lead us not to become people who collapse because of the adversities. Please stand firmly in the background until the end and lead us to become people who can protect the altar and block the dark arrows of Satan and be grateful even if we become a sacrifice in the process. Father! I pray and wish this from the bottom of my heart.</p>
<p>Father, we will leave in Your hands all that happens in this hour, so please allow us to yearn for You and to yearn for Your love so that we can offer our lives and follow Your path. Please let us not lose the standard that You, Father, expect. Allow the Heavenly will, which penetrates to the end of the sky emerge among men. Please do not castigate our deficiencies, and please appear before us with love like a friend, and as an intimate father and guardian.</p>
<p>We know that because man has lost his original form, in order to raise this one man and find this one man, our Father has struggled and striven for 6,000 years. This being the case, Father, please hold onto our hands and allow us to have a time of inspiration when we can have repentance. Please bestow the blessings that can grab onto us, cling onto our necks, and kiss us on our lips. Please allow us the blessing, for which this unworthy group can thank the Father&#8217;s love, to reflect upon ourselves and to repent, to be full in our hearts and minds, and above all, in our heads. Those who are participating right now wish that they can appear before the Father with love, so please lead them away from facing accusations. Please lead those who have bowed down here to take responsibility for the fulfillment of Your hopes and not fall before the reproaches and sneers of Satan. Please raise us to be children who will humbly bow before the Father&#8217;s love till the last moment and, Father, I earnestly pray and hope that You will hold these people tight.</p>
<p>We are praying that the blessing which You have granted will appear in our minds and hearts. I pray in the name of the beloved Lord. Amen.</p>
<h3><strong>Prayer 3</strong></h3>
<p>Beloved Father! We have just recited the passage that talks about how to raise up Titus as a pioneer, Paul tried to move his heart for a long time. When we learn about Paul&#8217;s deep, earnest heart toward Heaven, we realize that it is God&#8217;s work that prevented that heart from fading away and left its traces on the earth to build an altar.</p>
<p>Father! The time has come when we have to look to the new world, jump over all the complex historical barriers, and stand before Heaven for the sake of the new dispensation. Father, please guide us until the day we can eradicate all of our complex past, transcend the complex realities, enter the bosom of love where Heaven can be present, and bow toward the Father in peace.</p>
<p>Whether we live or die, please allow us to become the shield for the 6,000 years of sorrow and restore the glory of the ultimate victory before You. Please allow the joy that comes from that to engulf the whole garden of creation. We pray and wish from the bottom of our hearts that You will allow us to join forces and fulfill the one will with Your help. Today we recognize that the dispensation is our destiny so please allow us to question ourselves and to find an answer within to realize how much we lack. Please allow this hour to be the opportunity when we feel the desire to repent before the Father, and to go near the Father, to rely on You and by exposing ourselves to the Father, receive Your compassion. Please let such a heart be the foundation on which we can be fully recreated based on the holy and flawless image of Jesus. Beloved Father, I pray from the bottom of my heart that You will bless us so that we can entrust everything to Your will, depend on it, and become an obedient sacrifice before You. Please command the children who are sitting here. I know that at such a time there is no need for many words, so please let their hearts be moved by every word. Let them feel it with their bodies, and grant them the blessing of compassion and inspiration that can give them joy. Please have dominion over us with the fire of the Holy Spirit, so that we can feel the Father&#8217;s inspirations and can move as one for the sake of the dispensation. We pray from the bottom of our hearts that You will grant us a precious environment of harmony in which we can give and receive, and allow us to stand in the place You permit.</p>
<p>Please govern over the time that remains. I pray in the name of the Lord. Amen.</p>
<p>II Corinthians 8:24: &#8220;Therefore show these men the proof of your love and the reason for our pride in you, so that the churches can see it.,&#8221; I am going to speak on the topic <em>&#8220;Jesus Christ, the Pride of God.&#8221;</em></p>
<h3><strong>Adam and Eve should have become God&#8217;s pride</strong></h3>
<p>God, who created the world, created Adam and Eve as the embodiment of His pride toward all things in heaven and earth. Moreover, He created Adam and Eve to be His pride before the angelic world. When Adam and Eve stood before all the things of the creation, all things were supposed to bow before Adam and Eve.</p>
<p>The garden that was originally created to be like this was destroyed because of the fall of man. In other words, because of the fall, the value of all things could not emerge. Man, who could have emerged as the center of value of the invisible world, lost his qualifications, and man&#8217;s position as someone who should have appeared before the creation in God&#8217;s place and have been glorified as the center of harmony was destroyed. This being the case, what is the standard God has been seeking until today, 6,000 years after the fall of man? He has been searching for one representative who can represent His heart, represent His hyung sang, represent the nature of God, and represent all the creations of the universe of which God can be proud.</p>
<p>Moreover, until now, Jesus Christ has been working hard for the sake of the One will. What kind of man was this Jesus Christ, who came 4,000 years after the fall of Adam and Eve? He was the substitute for God&#8217;s internal heart and external hyung sang. This is the reason God tried to manifest, through Jesus Christ, the &#8220;standard of pride&#8221; which He has set as the ideal of the creation. This is the original mission Jesus was supposed to carry out. Jesus had a grave responsibility to establish himself as the representative of God&#8217;s heart and hyung sang in every aspect of his existence and life. This is the way in which Jesus should have emerged as the substantial body of which God can be proud. First, God should have been able to boast to all things, and then to Satan, and then to the countless saints. Moreover, God should have ushered in the day of the restoration of the joy and glory God had wanted to attain centering on Adam and Eve. This was the will of God, who had set up Jesus as the central being.</p>
<p>God had the Israelites build the nation of Israel and sent Jesus Christ, who was supposed to stand before Him. Had the Israelites become one, praised and received Jesus with a heart of gratitude based on the standard of God&#8217;s pride, the historical sorrow would not have been prolonged as it has been for 6,000 years.</p>
<h3><strong>Jesus, the king of faith, who stood high as the pride of God</strong></h3>
<p>There was a huge gap between what Jesus saw with his eyes as he emerged as the pride of God and of what the Israelites were proud. In other words, the Israelites, who had been upholding the will of God&#8217;s dispensation of restoration, were proud of different things than Jesus was in respect to their being the chosen people. Jesus was proud for the sake of the will of God as he championed the will of God&#8217;s dispensation of restoration. For this reason, the Israelites faced a situation where they were supposed to forsake what they took pride in as a people before the words and actions of Jesus, who took pride in God&#8217;s will.</p>
<p>Had they given up what they took pride in and bowed before Jesus Christ, who appeared with a new source of pride for the sake of God&#8217;s will, the difficult path of the cross would not have stood before Jesus Christ. The concept of the way of the cross would not have existed in the history of Christianity. Although salvation would have been based on one&#8217;s attendance to the words of Jesus, there would not have been such a thing as salvation due to one&#8217;s faith in the cross.</p>
<p>Today in reverence for the death of Jesus, we believe that the power of redemption lies in the cross, but this is not the whole picture. Christians today miss the point. The power of redemption lies in the words Jesus spoke while he was alive. What we have to understand is that while spiritual redemption is, of course, possible through one&#8217;s faith in the cross, if people had believed in and lived according to the words Jesus spoke while he was alive, physical and spiritual salvation would have taken place. What must Jesus first take pride in after coming to this earth? Adam and Eve could not substantiate the words of God because of the fall. They failed to believe in His words. Since man fell and the dispensational history was prolonged for 4,000 years because they did not believe in God&#8217;s words, Jesus as the one center established faith in front of Satan. In other words, Jesus emerged as the king of faith on this earth.</p>
<p>What manner of man was Jesus? What was the standard upon which Jesus could stand tall as the pride of God? Jesus came as the king of faith before humanity who, in the course of the 4,000 years of history was left without even one person who could be trusted to uphold the will of God. For this reason, God was able to boast about the faith of Jesus Christ.</p>
<p>Many people claim to believe in God, but with that general kind of faith, it is impossible to make the internal connection between the high and the low that is built upon the heart of God. What is more, although countless saints and sages have come and gone, based on what they believed and followed, one cannot understand the principles of love that lie deep within God. Furthermore, Jesus tried to take responsibility for the whole process of faith in history which countless saints had walked through, and to single-handedly put an end to the satanic history Jesus, who was the culmination of the 4,000 years of history, came as the center of the universe and the champion of faith.</p>
<p>For the sake of this one standard, God raised Jesus up as the king of faith. Jesus represented the will of God and in God&#8217;s place taught His words. The words he proclaimed were not the truth of the Old Testament as it stood. His faith was not built on the faith of the Old Testament era. His belief was not limited to the words and prophecies of the past saints and sages. In other words, he did not have the concept of the Messiah that the Israelites believed in, based on the words of the Old Testament.</p>
<p>To explain the nature of the faith Jesus had, he was the representative of the faith that cannot be found in the Old Testament Bible and which did not exist in history leading up to his time. He had a new type of faith, which had not come into existence until that time in any environment in the world. Consequently, the Old Testament history had to recede before Jesus.</p>
<p>What must we understand, we who believe in Jesus Christ, the king of faith in whom God takes pride? We have to understand that if we look at Jesus with some limitation, then we cannot come to grasp the 4,000 years of history before his coming and his thirty years of life; nor can we grasp the eternal value of his life, which will influence the future eternally. Moreover, we have to come to grips with the fact that even if hundreds of millions of people are ignorant of the will of God and stand against it, we should have the standard of faith to say &#8220;I will uphold that holy will alone. I will believe what no one else can believe in.&#8221; Only when this is done can Jesus stand as the Savior and the king of faith before humanity. Did Jesus, whom we believe in today give all the words of truth while he was alive? If he did not, we need the words that the returning Lord will give us. Although Jesus was the king of faith whom God had sought and who could stand at last, 4,000 years after the fall of Adam and Eve, as the source of God&#8217;s pride before Satan and the world of creation, because of the faithlessness of the Israelites, God had to hand him over to the enemy. Therefore, Jesus Christ is to return with the standard to boast before all the creation and to give new words. As the champion and king of faith, Jesus revealed new words that were not in the Old Testament. Those words have been handed down to us as the words of the New Testament.</p>
<p>Since this era is a new one and a glorious era will come in the near future, we need to have the kind of faith that can be perpetuated in that glorious era. The hope and faith of Jesus Christ were not on the level of the faith man had believed in for 4,000 years. His faith was something that, through his life, reached many generations after him. It reached even to eternity and is the faith that can bring to light the love and goodness that could not emerge then.</p>
<p>Jesus Christ was the king of faith whom history had never seen before and in whom God could take pride. You must also have the same kind of faith as Jesus.</p>
<h3><strong>The victorious king Jesus who triumphed over Satan</strong></h3>
<p>The reason God could take pride in Jesus was that although countless people had fought with Satan for thousands of years, it was Jesus who was finally able to prevail over him as the victorious king. Accordingly God was proud of Jesus.</p>
<p>For 4,000 years, countless ancestors before us have come to this earth and have fought against Satan. For the sake of God&#8217;s will to send the Messiah, countless saints fought with Satan. However, they could not subjugate him. Although they fought with Satan for 4,000 years, they could not conquer him and bring him to his knees, but when Jesus Christ came to this earth, he finally conquered Satan and made him submit. With what did Jesus bring Satan to his knees? He subjugated him with Heaven&#8217;s principle of love. You have to understand this. What we Christians have to understand today is that the only thing that works in subjugating Satan is the principle of love.</p>
<p>What kind of principle is the principle of love? Although many people have passed through the earth, Jesus Christ is the only son whom God deeply loved. Therefore, when we look at the thirty years of Jesus&#8217; life, there is not one minute of it that does not manifest his filial piety. His daily life before God was something that could not be taken away even for a moment, at night or in the day for it pleased God&#8217;s heart completely. His life was such an example of filial piety that when God looked down He would say &#8220;On the earth, there is no one else but you alone.&#8221;</p>
<p>Jesus&#8217; singular determination in his heart was such that even if everything in his life was to perish, he was going to live for the sake of God. He had no other desire than to fulfill to the fullest his mission as the Savior of all humankind, even if that meant that his physical body would be neglected. He had no other desire than that which cried out, &#8220;Father! With the destruction of my own being, I will become the son of filial devotion, the embodiment of love whom You have sought for 4,000 years and Your beloved son who can return love to You.&#8221;</p>
<p>For this reason, even if hundreds of millions of people insist that Jesus is not God&#8217;s son, God cannot agree with that. No one can block the power of the father-son relationship that has come into being as the center of heaven and earth and is linked to the love of God. Even in the lonely place on the hill of Golgotha where Jesus bore the cross. Jesus knew that God&#8217;s will dwelt in that place and he understood well the Father&#8217;s heart of love, which had been waiting for 4,000 years.</p>
<p>Thus, as long as the Father&#8217;s will remains unchanged, Jesus&#8217; pride as the son who can receive the love of the Father is eternal. Before all things in creation, God boasted of Jesus Christ as the incarnation of the Father&#8217;s unchanging love. God boasted before the satanic world.</p>
<p>In the 6,000-year history leading up to today there are many people who have displayed filial piety before their parents. There are many sons and daughters of filial devotion in the bosom of Satan. Nonetheless, in order for God to be able to take pride in Jesus and in order for us to receive God&#8217;s love as Jesus did, we need to have more value and accomplishment than all the sons and daughters of filial devotion in history within the satanic realm. Only then can God say &#8220;This is my beloved son,&#8221; and then one can become the son of filial devotion who is the only one in heaven and earth representing the Heavenly truth.</p>
<p>When Jesus looked at the multitude from this standard, he was at a loss. Because Jesus&#8217; heart was such, he felt that there was a huge gap between his own value and what they valued. Of his own accord, Jesus prayed for their sake before Heaven.</p>
<p>Satan can be destroyed with the power that comes from the parent-child relationship based on God&#8217;s love. The reason is that the degree to which many people within the satanic sphere follow Satan cannot even approach the standard of Jesus&#8217; love and servitude toward God. Wherever Jesus appeared with the love of God, it became a shield that is like an iron fortification. So, wherever followers gather centering on Jesus, they can subjugate Satan.</p>
<p>Jesus could become the pride of God because he combined all the victories and defeats of the ancestors during the 4,000 years and seized the one standard, which he used as his own foundation. What must we think about today? You have to think about how Jesus Christ was able to achieve more victorious accomplishments than all the victories of the saints in the preceding 4,000 years altogether, while humanity has been in conflict with Satan for 6,000 years. Moreover, we should be thinking about how our ancestors were victorious over Satan. We should also be in their shoes and think about it. What is God&#8217;s dearest wish for the saints on this earth now? It should not just be Jesus who subjugates Satan, but also all the saints of these last days who feel God&#8217;s love through Jesus&#8217; love.</p>
<p>Jesus Christ led a victorious life for thirty years. He avoided that which would not bring victory. Jesus avoided the words that could lead him to failure and could allow Satan to approach. Although he might appear to some as an ordinary young man in a village, once he took responsibility for the whole, his words, deeds and hope could place the whole on the victorious foundation.</p>
<p>You stand today on the victorious foundation that Jesus laid down with so much hard work. You are receiving such blessings from Jesus. Now the question is how you can stand on the victorious foundation that Jesus built on the earth and how you can rise higher. You should understand that Heaven has come down to the earth for your sake, and until you return to Heaven, you should shed tears for the victory.</p>
<p>We should always fill our hearts with God&#8217;s love. We should feel the love of Jesus and the Holy Spirit and experience the love of Heaven. Although Jesus brought victory on the individual level, because he died on the cross, be laid a victorious foundation only spiritually. We who should consummate the 2,000 years of history must stand on the spiritual foundation of Jesus and, substituting for Jesus&#8217; body, lay the victorious physical foundation. What is more, Satan will challenge it when God proclaims to this earth the new words that can complete spiritual salvation and complete the substantial salvation by stepping over the level of the New Testament. We have the responsibility to take charge of this fight and win it.</p>
<p>By what condition was Jesus Christ able to receive the love of God? Jesus could receive God&#8217;s love because he had become the prince who takes responsibility. From his early youth, Jesus worked as a carpenter in Joseph&#8217;s house, but he was still trying his best to complete his responsibility. Although he helped with carpentry and contributed to making a living for the family in the house of Joseph, in Jesus&#8217; heart, that was only a part of what his life was about. What is more, while he held great dreams in his heart, he simultaneously fulfilled his responsibility even in the small tasks. You should never forget that this is the kind of man Jesus was.</p>
<h3><strong>Jesus is the prince who bore the responsibility for the hope of the whole</strong></h3>
<p>The whole life of Jesus was spent fulfilling his responsibility and mission. On the earth, he completed the responsibility that will last for eternity. The thirty years of Jesus&#8217; life secured on the earth the eternal and unchanging accomplishment of having completed his responsibility. Therefore, as long as the words of faith of Jesus Christ remain, his life will never be forgotten.</p>
<p>Jesus took responsibility for the historical dimension, not to mention for his own generation. Moreover, he also single-handedly took responsibility for the will of God that God had been working to accomplish for thousands of years. Other than Jesus Christ, there was not even one person on this earth who was willing to take responsibility on behalf of God. You have to understand that he alone completed the responsibility.</p>
<p>While Jesus felt lonely about having to be responsible for the hope of the whole, he also felt a greater sense of responsibility. Jesus&#8217; daily life was a time of foundation-laying in preparation for the completion of the responsibility for the whole. Moreover, in the thirty-year preparation period, the three-year period of action, and the three-day period of completion, the only thing that occupied Jesus&#8217; mind, his only thought, was subjugating Satan and substantiating God&#8217;s will on that foundation. He led a life in which he felt this responsibility to his bones. There was not a moment when Jesus forgot this responsibility.</p>
<p>Moreover, when he was carrying the cross and walking toward the hill at Golgotha, even at the last moment when all the people mocked him and Satan ridiculed him, Jesus determination to complete the responsibility given to him remained unchanging. Because Jesus passed through the crisis of the crucifixion with this singular determination, he could resurrect. Also, because he still had the responsibility to organize the disciples who remained on the earth, he came back after he went to the heavenly kingdom and, relying on the power of God, performed the miracle of resurrection.</p>
<p>Even after his death, Jesus was concerned about the disciples who had scattered, and even during the three days in the tomb he was determined to protect them for eternity. Consequently he went to the shores of Galilee after his resurrection and searched for them.</p>
<p>We might wonder, from a humanistic perspective today how he could treat them like that when they had no sense of responsibility. Although they had betrayed him when they faced difficulty right after the resurrection, he went to Galilee and started to fulfill his responsibility. The character of Jesus, who raised them up to be unchanging disciples even when he was going over the hill of death, is an admirable character we should learn from today.</p>
<p>That is not all. We should understand that in addition to his disciples at that time, he was taking responsibility for the countless saints who came after him, and for us, 2,000 years later. The history of restoration is the history of the whole. Because God&#8217;s will is saving the whole, Jesus has taken responsibility for the whole of humanity.</p>
<p>What kind of responsibility is Jesus bearing? Jesus is not bearing the responsibility for worldly things or for leading a good life. He is taking responsibility for our lives. Ladies and gentlemen, although there are many difficult things in this world, there is no other task that is more difficult than this, because he is bearing the responsibility for life and death. The believers of today stand at a crossroads that can lead them either to life or to death. Jesus has the responsibility to pull those who stand on the precarious dividing line, which is like the blade of a knife, over to the life side. Similarly throughout the thirty years of his life when he was entering the road of death and at all times, Jesus had the same unchanging heart. Although human beings might not feel this sense of responsibility and mission, Jesus is at work even now to complete this responsibility, mission and the will of God.</p>
<h3><strong>We who must take on the responsibility for the whole</strong></h3>
<p>What should we do today to attend this Jesus whom we believe in? We should not push all of the responsibility onto Jesus. What kind of people should we become? Jesus took responsibility for the history of 4,000 years, for the people of that time, and for humanity 2,000 years after that, so we should also take on responsibility. We should not place our responsibility on the shoulders of Jesus. What is more, we should be thinking, Father! I finally understand the tribulations Jesus faced as he bore the responsibility for 2,000 years, and feel grief for Jesus who is bearing responsibility for our sake and for the sake of the world.</p>
<p>Who is responsible for such a situation? It is we, we who are unworthy. Therefore, we should reflect on this and bow our heads down before Jesus. As we call out &#8220;Lord!&#8221; we should feel a heart that is like the melting of our flesh and bones.</p>
<p>Finally, God was able to hold onto Jesus, who was trying to take responsibility for the dispensation of 4,000 years, and say &#8220;You alone are taking on the responsibility that I have to fulfill.&#8221; This is the reason that God could trust Jesus and entrust everything to him. God could address Jesus from the position of bearing all the burdens of responsibility. Just as Jesus stood tall before God, we have to learn to take on the responsibility for the whole. If the task proves to be difficult, then you should appear before God and Jesus with the mindset, Please give that difficult mission to me, and say to them, &#8220;Please reveal through me Your heart&#8217;s desire; please show it through me.&#8221;</p>
<p>These kinds of people are the ones who will remain in the end. If such a group of people does not come forward, how will Jesus, the only begotten son of God, realize the goal he has been striving after for the sake of humanity for 2,000 years? If Jesus, the only son of God, who has been putting his life at stake and has been walking the course of responsibility cannot find people who can take responsibility then the time has come when we have to pray &#8220;Please allow us to bear the responsibilities of history of the present and the future that Jesus pledged to carry while he was on the cross.&#8221;</p>
<p>There have been many times in our lives so far when we have tried to shift the burden of responsibility to God. However, from now on, people must emerge who pray &#8216;I will take on the responsibility and fight on behalf of Jesus, who has come to the earth as the king of responsibility representing the aggrieved heart of God over 4,000 years. Even if the enemy Satan and countless people do not welcome it, I will take on the responsibility in his place and fight on.&#8221; Jesus can rest in the garden of peace only when such people step forward.</p>
<p>In the last days today what we hear are the words, &#8220;Who can listen to my appeal for my life?&#8221; Nonetheless, who is the one who can listen to the appeal of life Jesus makes, he who inherited the life of God? God is looking for people who can.</p>
<p>Jesus has been praying for humanity from the right hand of God. The reason Jesus could not rest and had to pray until now is not because Jesus made some mistake. Moreover, it is not because Jesus cannot go before God. It is all because of us. Therefore, for the sake of Jesus, who has been working hard for 2,000 years, you should try your best to fulfill the responsibility of life, even if you have to lose your life. Because Jesus passed away on the cross, the responsibility of life remains on the earth. The time that this remaining responsibility of life must be completed is the time of the Second Coming. The time of the Second Coming begins when someone appears who can take on the responsibility of life. Because he is the one who is carrying the responsibility of life in history and in the future, you should join in the final battle and fight on his side.</p>
<h3><strong>The beginning of the time of the Second Advent</strong></h3>
<p>God wishes to love men by raising them up through the Jesus of faith, and through the Jesus of truth. He truly wants to love you all. When we are told today that we should follow the example of Jesus, at least in our hearts we should be able to say Yes, that is true. If you cannot become such people, then how can Jesus, who could not rest for even a second until now take a rest?</p>
<p>Therefore, you should take on these conditions that God has put forth as His pride. You should establish the conditions that stand as the pride of Jesus who has gone to the spirit world on the earth. By doing so, you will become the ones God can take pride in.</p>
<p>First, you have to be proud of the fact that you believe in things the world cannot believe in. Then you should be proud of the victory won in the fight with Satan. You should be proud of the responsibility that you bear in a world where people avoid responsibility.</p>
<p>On that account, the pride of God should reach all the way down to us through Jesus in the spirit world, and it should even extend down to the creation on the earth through us. Only when that takes place can God fulfill the ideal of creation in which He willed to raise men up as the central figures before the creation and to take pride in them. Finally man and all things can offer bows of gratitude to God, who takes pride in them. Such responsibility of the whole lies on our shoulders.</p>
<p>We who are here today are very unworthy. Our faith is also pathetic. From now on, when men have to fight with Satan, we should pray &#8220;Dear Father, please give strength to humanity so that they can fight and win over Satan. Please guide all of humanity so that they can bear the responsibility.&#8221; Moreover, you should face the enemy of the whole. Fighting alone and prevailing over him, you should be able to say &#8220;God, I offer this joy to you.&#8221; God&#8217;s suffering and grief will be resolved through people who can show before God that they are taking on all the responsibility of the world and who can proudly show the center that is taking on the responsibility before the many saints and the world of creation. It is through such people that God&#8217;s will can be realized. You have to understand this clearly. Let us pray.</p>
<p>Father! Wherever we look, we find that we are responsible for everything, and when we look at the evil of this world, we realize that the life of Jesus was soaked with unceasing tears. Today we do not feel anything even when we see evil things, and we do not have a heart of grief toward the will of the universe and are unable to feel responsible because we are unrighteous and inferior. We have been people who do not have the desperate and earnest heart to defeat the enemy who could not build achievements in the fight, and could not believe in the almighty God. We have failed to understand Jesus&#8217;s loyal heart toward God. Father, on this night I have gathered a small group before me and advised them. We know that Your desire to raise Jesus up as the pride before the world has been linked with us through the apostles and history. We know that You wish for this will to be realized through us. We know that we carry the central responsibility upon our shoulders that the many saints who rejoice in their new life can welcome.</p>
<p>Now please allow us to be offered as the sacrifice to resolve the grief and suffering of Heaven and earth, creation and Jesus. I pray from the bottom of my heart, Father, that You will lead us to be children of filial devotion who will do their utmost.</p>
<p>You have created the concept of the bride and bridegroom through the path of the cross, and we know that the problem is how much we can put the love of Jesus into practice, how much we have been fulfilling our responsibility centering on the love of Jesus, and how much we have realized the value of faith through the love of Christ.</p>
<p>Since the Father has counseled us in this hour, please guide us to understand clearly that the responsibility to liberate Heaven is entrusted to each of us, and that it is through us that the fight to eradicate the suffering and grief of Heaven must be consummated. Since we have come to realize these things, please allow us to have a heart of gratitude toward the Father and the mind-set that we must accomplish more than anyone. Please guide us so that we will be grateful even when we are bearing the cross, and even when we are fighting with millions of satans; please lead us not to be unmanly. Even when we are in a difficult situation in which we have to bear the cross, please lead us to become children who can say &#8220;Father! Please do not worry because I am here. I pray from the bottom of my heart that You will guide them to become children who can comfort the Father, who is in deep anguish because He sees His children suffering. Please let the truth become the life and path for them, and please allow them to find the standard on which they can center their lives. Please lead them so that they can go before the Father with unchanging faith and in the center of life. I earnestly desire and request that You will release the miraculous creative power of the word so that such things can be fulfilled. I offer all these words in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html" title="Permalink to Jesus Christ, The Pride of God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Become The Elite Troop Of God</a></div>
<div class="nav-next"><a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html" rel="next">Jesus Is Searching For Us In This Way <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,214 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Jesus Is Searching For Us In This Way &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-727 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-727" class="post-727 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Jesus Is Searching For Us In This Way</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-20T15:41:29+01:00"> <a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html" rel="bookmark">May 20, 2018</a> </time></span><time class="updated" datetime="2018-05-20T15:41:29+01:00">May 20, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><center><strong>REVEREND SUN MYUNG MOON<br />
SPEAKS ON</strong><br />
<strong>Jesus Is Searching For Us In This Way</strong><br />
<strong>May 20, 1956 (Sunday)<br />
Seoul, Korea</strong></center></p>
<p style="text-align: center;"><em>Matthew 18:1-14</em><br />
<em> At that time the disciples came to Jesus and asked, “Who, then, is the greatest in the kingdom of heaven?”</em></p>
<p style="text-align: center;"><em>2 He called a little child to him, and placed the child among them. 3 And he said: “Truly I tell you, unless you change and become like little children, you will never enter the kingdom of heaven. 4 Therefore, whoever takes the lowly position of this child is the greatest in the kingdom of heaven. 5 And whoever welcomes one such child in my name welcomes me.</em></p>
<p style="text-align: center;"><em>Causing to Stumble</em><br />
<em> 6 “If anyone causes one of these little ones—those who believe in me—to stumble, it would be better for them to have a large millstone hung around their neck and to be drowned in the depths of the sea. 7 Woe to the world because of the things that cause people to stumble! Such things must come, but woe to the person through whom they come! 8 If your hand or your foot causes you to stumble, cut it off and throw it away. It is better for you to enter life maimed or crippled than to have two hands or two feet and be thrown into eternal fire. 9 And if your eye causes you to stumble, gouge it out and throw it away. It is better for you to enter life with one eye than to have two eyes and be thrown into the fire of hell.</em></p>
<p style="text-align: center;"><em>The Parable of the Wandering Sheep</em><br />
<em> 10 “See that you do not despise one of these little ones. For I tell you that their angels in heaven always see the face of my Father in heaven. [11] [a]</em></p>
<p style="text-align: center;"><em>12 “What do you think? If a man owns a hundred sheep, and one of them wanders away, will he not leave the ninety-nine on the hills and go to look for the one that wandered off? 13 And if he finds it, truly I tell you, he is happier about that one sheep than about the ninety-nine that did not wander off. 14 In the same way your Father in heaven is not willing that any of these little ones should perish.</em></p>
<p>The title of the speech today is <em>&#8220;Jesus Is Searching for Us in This Way&#8221;</em> This is the topic upon which I will speak.</p>
<p>Jesus Christ is the person who came on the earth as the one for whom God had poured out His heart in preparation for 4,000 years. Jesus Christ came to save humanity representing the will of God and His languishing heart.</p>
<h3><strong>The lamb that fell away</strong></h3>
<p>Fallen man is like the lamb that fell away from the herd of sheep. After the fall, humanity does not stand among the 99 lambs, but with the lamb that fell away. The millions of Heavenly soldiers and angels in heaven cannot return joy and praise to God because they have lost Adam and Eve, who are like the lost lamb. God has been working hard until now to claim back fallen men, who have prevented the Heavenly soldiers and angels from returning joy and praise to Him. Jesus was sent to the earth as the one God has been seeking for 4,000 years. Jesus, as the good ancestor of humankind, stood in the position of True Parents and persevered in his toilsome work in order to redeem our lives.</p>
<p>Today we have a simple understanding of Jesus Christ as the only begotten son of God in the 4,000-year history of the dispensation and the central figure who won the victory over Satan. He bore the cross for the sake of saving humanity which had lapsed into sin and evil ways. What did God do to raise up Jesus as the center? He entrusted in Jesus all that He had been doing in His dispensation for the world and humanity. As a result, when Jesus Christ was lifted up as the new center of the providence, he stood in the position to be responsible for the salvation of the whole of humanity. When he was put in such a position, his mind and body must have been overwhelmed with unspeakable sorrow.</p>
<h3><strong>Jesus Christ who came looking for us</strong></h3>
<p>When Jesus seeks us, what kind of course does he take? To save humankind, during the 4,000-year history, God established the word, and through many prophets and sages, He prophesied to the multitudes that the Messiah would come.</p>
<p>Therefore, the followers of Judaism were prepared to receive the Messiah based on the words and testimonies of the prophets. This is the history recorded in the Old Testament. Jesus Christ, who came on that prepared foundation, was supposed to consummate the 4,000 years of Old Testament history as the history of goodness. Accordingly, the new words of truth that he spoke contained within them the sorrow that had accumulated during the 4,000-year course of the dispensation of restoration. At the same time, they were the truths that revealed the heavenly laws all must follow in their life of faith.</p>
<p>How would Jesus have felt looking down upon the unfaithful groups of the countless followers of Judaism? They were supposed to listen and believe in the words that he proclaimed. You must understand that Jesus was crying out to them with an agonized heart.</p>
<p>God has been looking for me, this one man, until today. To claim back all of humanity who are imprisoned in sinfulness, He has been working hard for a long time. Through the prophets, He gave the Israelites the law during the Old Testament era. To end the sorrowful history of 4,000 years, He sent Jesus Christ and proclaimed the new words of truth. Because the Jewish people did not believe in those words, they were not able to comfort the sorrowful heart of God. Instead, they exacerbated the grief in the heart of Heaven. This is what you must understand.</p>
<p>For this reason, Jesus went before the crowd who did not know the direction they must head in and who remained within the dominion of Satan and, pointing the way he revealed the path to survival. Nevertheless, the Israelite people did not listen. Consequently humanity lost the direction of life and the altar of 4,000 years of toil that God had built. If the Jewish people had become one on the foundation of God&#8217;s words, then they would have substantiated the words of God, and God would have been able to embrace them as children again.</p>
<h3><strong>The Jewish people did not believe in the words of Jesus</strong></h3>
<p>Because the Jewish people, who were originally supposed to become the examples, did not believe in the new words Jesus gave and could not unite, Jesus had to leave behind words of sorrow. For this reason, the Jewish people, who should have stood in the position of the hundred lambs, found themselves in a position similar to that of the lost lamb. We find ourselves in the same situation.</p>
<p>We have to understand the heart of Jesus toward the Jewish people, who were like the lost lamb. In order to elevate the lost Jewish people, Jesus cried out with a sad heart.</p>
<p>What we have to understand today is that God had been carrying on the dispensation with a heart full of pain for 4,000 years so that He could claim me; and after that, Jesus inherited the sorrowful heart of God. He has been calling to us, following us.</p>
<p>In his thirty years of life, what kind of course did Jesus walk? Jesus prepared for thirty years of private life, hoping for God&#8217;s dispensation to emerge. When he appeared to spread the new words after that period had passed, he was not speaking the words with joy. He propagated the message with the sorrowful heart of God.</p>
<p>Although Jesus spoke many words such as &#8220;Follow me,&#8221; or &#8220;Believe in me,&#8221; those who attentively listened to the voice that cried out from a lamenting heart were extremely small in number.</p>
<p>You must understand that Jesus spent thirty years of his life in such an environment with a sad and bitter heart. The desperate voice of Jesus, spoken aloud in his lifetime, is still pleading with you through the biblical passages. Even in this hour, Jesus Christ is making an earnest request to you from the spirit world.</p>
<p>Therefore, you must now learn the contents of Jesus&#8217; request and find the way that you must walk. You will be greatly mistaken if you do not know the way in which you must head and what position you are in, the position of the lost lamb, and if you hold to the belief that this world will continue as it is. You yourselves might not know this very well, but while walking the 2,000-year course of history since his birth, Jesus is calling out with a sad voice, that calling has become your hope.</p>
<h3><strong>God&#8217;s heart and the voice of Jesus</strong></h3>
<p>Would you ignore this voice, which is so earnestly calling to you? If there is anyone who cannot hear, he or she should at least feel the heart of bitterness. Is there anyone among you with ears to hear who does not long for that calling voice? We must shape up in order to listen to this voice. if you hear the voice calling out to you but cannot move because your body is not strong enough, you should direct your heart and soul toward that place. To claim back this one person who is like the lost lamb, God has been struggling not for one day, not for one year, not for one hundred years, but for 6,000 years. The 6,000 years He suffered to find the lost flock of lambs in heaven and on the earth is Heaven&#8217;s history of redemption. Because we men cannot bear the voice of God calling out to us, He revealed it through Jesus, who was the embodiment of God. The words proclaimed by he who unveiled the invisible heart of God are the words of the gospel.</p>
<p>Because men cannot understand the mind of God, who exists in invisible form, and cannot hear His voice, Jesus came as the incarnation of God. Moreover, the Jewish people should have listened to the words be preached, and by going before him, they should have understood the true intent of God, which had not been understood for 4,000 years. Feeling the heart of God, they should have repented. Despite this, the Jewish people did not repent, but instead distanced themselves from Jesus. Therefore, from now on, you must make preparations so that you can understand the sorrowful voice of Jesus. What should you do in order to do this? The only way is that just as you listen attentively to words spoken in the worldly context, you should have the determination to believe in Jesus who stands before the multitude representing the heart and will of God. Jesus came as the representative of the invisible God and walked the course of atonement on behalf of ignorant man, who has only caused grief for Heaven for 4,000 years. Likewise, you should be able to fathom the heart of God who put Jesus in such a rueful situation and made him renew his determination.</p>
<p>If the Jewish people had been able to broaden their perspective and discern the voice that cried out on behalf of the internal heart of God, they would not have had any problem understanding the doleful words of Jesus, who came as the substantial body. Yet in what state were the Jewish people? They were content only with the words written in the Old Testament scriptures. They thought that God&#8217;s final words were all already written in the Old Testament.</p>
<p>This is not the only sorrow of God. The Jewish people did not realize that if they did not serve Jesus when God lifted him up to reveal and testify to His innermost heart, the sadness of Heaven would become the sadness of the earth. You should understand that Jesus was supposed to liberate God&#8217;s sorrow and suffering of the 4,000 years, but because the Jewish people did not recognize him, God&#8217;s sorrow could not be liberated. Furthermore, His sorrow continued.</p>
<p>Jesus Christ, who came to the earth representing the will of God and the 4,000-year history had to go back without proclaiming the words of happiness. Consequently 2,000 years of history have passed since Jesus, but when we look back on the 6,000 years of history today we find that even now the sorrow of God and Jesus is still deeply rooted on the earth. We should come to understand the sadness of God and Jesus and be able to consider God&#8217;s words of happiness and the words of Jesus. The reason Jesus came seeking us is not only to give words of sadness. In the laborious course of claiming back we who are like the lost lamb, God should not always speak grievous words. Since He spoke sorrowful words for 6,000 years, the moment the lost flock of lambs is found, there must appear words of such happiness that one can completely forget the 6,000 years of sorrow. You might think that such words of happiness will come from Heaven, but that is a great misunderstanding. Now we have to become the flock of lambs who will rush toward the heart of Jesus, who has toiled for 2,000 years, and toward the Lord who is to come seeking us.</p>
<p>We should not hesitate or be unable to find our direction after hearing the crying voice of the wounded Jesus Christ of sorrow. When Jesus Christ comes suddenly and calls you with a doleful voice, you should not flinch. What should you do? Before the sad voice of Jesus can be heard by you, you need to cry out in a sad voice first. You must be the first to shake heaven and earth with the cry &#8220;My shepherd! Lord!&#8221;</p>
<p>Jesus who comes seeking you will then listen carefully to your cry; when he calls you again, he will not call in a sad but a happy voice. You should stand in such position.</p>
<h3><strong>We must testify to the sorrowful heart of Jesus</strong></h3>
<p>Today we must testify to the sorrowful heart of Jesus. We should not just lament about having lost the shepherd, but we should also cry for the sake of finding the shepherd.</p>
<p>Likewise, we can only satisfy Jesus when we become people who can take responsibility for the path of suffering Jesus left behind. You must understand that today Jesus is searching for us with a sorrowful voice. In order to find us, he is repeating the pain of his life. Jesus, who represented the 4,000-year dispensation for the sake of saving humanity could not live comfortably. He is coming looking for us today based on the foundation of his life of pain and suffering.</p>
<p>As you know, the thirty-year life of Jesus was a life of anguish. The thirty-year preparation period as the son of Joseph the carpenter was a life of pain and suffering, both internally and externally. He could not live freely in comfort like you. It is a great mistake to assume that he lived like the honored Savior of humanity. He was persecuted by his stepfather Joseph, Mary and even his younger brothers and sisters. He lived a life of agony in which he could not speak freely though he had so much to say. His tribulations were not suffered for his own sake. He knew that if he did not represent the heart of God, there was no one else who could claim back the lost family so he focused all of his heart and soul toward Heaven. Furthermore, when he saw people fighting among themselves in a pathetic environment for the sake of themselves and the surrounding environment, Jesus entered the course of a difficult and grievous life. Representing the living words of God of the 4,000 years, he put his life on the line and fought to build the ideal world.</p>
<p>Jesus did not receive proper treatment from the time of his birth until the time of his death. He led a lonely and difficult life just like the life in the wilderness. Such external tribulations are sufferings, but the internal anguish in his heart, hidden from others, is known only to God.</p>
<p>The Jewish people, who should have believed in and followed Jesus, did not recognize him and recognized someone whom they had little need to recognize. Living amid such people, Jesus longed for his life in the homeland.</p>
<p>His life, the things he ate and clothes he wore were not for his own sake and not for the sake of his own peaceful days. Jesus ate, clothed himself and did everything for others. He stepped beyond it all to live for the sake of God and humanity. The same can be said about each of his footsteps. However, there was not even one person who could understand the situation of the Messiah. There was no one who embraced the lonely heart of Jesus and said, &#8220;I understand your heart. I understand your feelings, so I will follow you wherever you go and become a friend who can comfort you.&#8221; Without a doubt, his disciples should have comforted him, but they could not comfort the innermost, heart of Jesus hidden from others.</p>
<p>For this reason, the thirty years of Jesus&#8217; life became dotted with suffering and pain. From the first day of his three-year public ministry when he preached the gospel, the words he spoke were not private words. They were not words spoken for his own benefit or for boasting about his skills. They were spoken to fulfill the will of God.</p>
<p>However, there was not even one person who tried to represent the people and become a friend to Jesus, who came to him with comforting words and good will. Jesus was mocked by the people in his own town and ridiculed by all the people.</p>
<p>Today you live in an environment in which you can listen to the words of God in comfort. You should never lose this opportunity to relate with God in a free environment.</p>
<h3><strong>Jesus of suffering</strong></h3>
<p>At that time, even when he was speaking the words of truth, Jesus had to do it secretly and when he was listening to the words of God, he also had to hide. Consequently they went into the wilderness. Even in the midst of that, Jesus tried to lure many people to the wilderness and teach them the words of God. You have to understand the heart of Jesus. He was determined to fulfill the will of God by propagating God&#8217;s words even if he had to use those means.</p>
<p>Likewise, during the course of his life, Jesus tried to spread the gospel to many people, but there was not even one person who welcomed it. No matter how desperately in earnest he was in his desire to disseminate the truth, there were many who did not understand. The more Jesus tried to fulfill the mission and responsibility given to him, the more people appeared who tried to obstruct him.</p>
<p>Miserable Jesus Christ, who was observing this and crying out to the multitudes in the wilderness all day voluntarily began walking the thorny path leading to Gethsemane in order to appeal to God once more. You should reflect again on the hard-won accomplishments of Jesus, who went before God alone because his disciples all dispersed. Comforting God&#8217;s wounded heart, he tried to generate enough strength to fight with Satan again. You must understand that Jesus offered all thirty years of his life to lead the most painful of all lives. But this is not all. It is a great mistake to think that the suffering of Jesus came to an end when the thirty years of tribulations were over. Today even after going to the spirit world, Jesus is still in great anguish.</p>
<p>Jesus is carrying on the dispensational providence centering on the one purpose of realizing the will of God, because the 2,000 years of history has been prolonged. He is leading a life of suffering even in this hour. His life of suffering was connected to the present.</p>
<p>How will this suffering then be resolved? It is not through all the things on the earth today. It is absolutely not through them. The only way for the long standing suffering to be resolved is through your pain and suffering, you who can be responsible for today.</p>
<p>Therefore, Jesus disregarded the historical distance between you and revealed to you the suffering he experienced during the long process of the dispensation. You should realize this, and you should hold onto the painful hands of Jesus and comfort him. The responsibility lies with you today to place the deep-rooted suffering and grievance of Jesus on your own shoulders and give comfort to him. What happens when you have failed to stand in such a position? You should feel the tribulations of Jesus in your own environment. You should be able to analyze the suffering life of Jesus from within your own life.</p>
<p>What kind of sin did Jesus commit that he had to live all of the thirty years of his life in such pain and suffering? If he did commit a sin, it was that he was chosen as the Savior to bring salvation to humanity. You must understand that Jesus was in pain and shouted in desperation for the sake of humanity. We should have a repentful heart before Jesus today. Even within your own life, you can find traces of the suffering of the thirty years of Jesus&#8217; life. You are to reap them, and you are to reap all of his suffering beginning from the time of his birth at the stable to his trials on the hill of Golgotha. You must even reap the traces of his suffering during the 2,000 years after the resurrection. You must understand this will of the whole.</p>
<p>The sorrow of Jesus did not end with just crying out in desperation. It did not come to an end with the tribulations and toils in his life. Many people today misunderstand and think that his sorrow came to an end through the difficult life he led and his death on the cross, but because the dispensation has been prolonged as a result, the sorrow of Jesus remains unresolved. Knowing this, you should put your life on the line and save Jesus from sorrow.</p>
<p>Since Jesus Christ has endured the pain and has walked this path full of grievance and suffering for 6,000 years until now in order to find us, and since he has put his life at stake and walked the road of the cross, you must hold onto Jesus.</p>
<p>Even when he was facing death on the cross, which put an end to the thirty years of his life, he earnestly appealed to God, &#8220;Oh Father&#8230;.&#8221; The appeal that the countless prophets had made with their blood in the 4,000 years should have been brought to fruition by the Jewish people. It was not, so how could they recompense their ancestors? There is no way they can compensate for it.</p>
<p>The person who requited the historical appeal of blood on behalf of the people and who paid indemnity was Jesus Christ. When the blood of Abel made the appeal through Jesus, there came about the liberation of the conditions laid by the countless prophets and sages who had shed their blood wherein they appealed to the earth, shattered and stained with blood, as well as to the Jewish people. The voices of lament and the cause that the countless sages and prophets had appealed for during the 4,000 years were answered through the death and resurrection of one man, Jesus. Because the grievances of the ancestors who had shed blood on the earth were addressed by the resurrection of Jesus, their will, for which they had reproached the earth and demanded liberation, had been realized. Only after that moment, men were finally able to bow as an offering before Heaven through Jesus who stood before us.</p>
<h3><strong>We must liberate Jesus</strong></h3>
<p>Jesus consummated the appeal of the blood of the sages and prophets who had been sacrificed because the Jewish people had not remained faithful to Heaven. At the same time, what did he leave behind for the future generations? Jesus left behind the blood of the death of crucifixion for ensuing generations. For this reason, when you stand before Jesus and when you reflect on your life, you will find that even in your own life there have been passes of blood that you had to cross. You must understand that while this is a compensation for the appeal that the sages and prophets made through their blood, it is also a recompense for the appeal of blood made by Jesus. So, when Jesus comes through the path of the cross and tells us to come, we should also go toward him through the path of cross. Now you have to deeply feel the zeal with which Jesus made the desperate appeal with his blood on the cross on the hill of Golgotha. His blood is now actively at work in your veins and arteries.</p>
<p>Jesus came seeking you by the way of the cross, but you have not understood his suffering until now and you did not even take the cross away and reach out to him. Jesus, who walked the path of death and came to look for us while bearing the cross, is even now still crying out and appealing unceasingly for our sake. Even while suffering pain and walking the path of death, he is still working strenuously for our sake.</p>
<p>Now we are facing Jesus with the cross placed in the middle, and someone must resolve the grief and suffering caused by the cross. It is we of today who must do it. Without resolving it, we cannot graft onto Jesus and call him our bridegroom. This is the reason when Mary Magdalene called out, &#8220;Oh Lord!&#8221; right after the resurrection, Jesus stopped her. For the same reason, although Mary wanted to begin life in Heaven from the day she met the Lord, life in Heaven was prohibited for 2,000 years. We should understand this grief from the background of the cross, and we who have faith must bring the solution.</p>
<p>What did Jesus, who crossed the pass of crucifixion to come seeking us, leave behind? He left the mission of the bride and bridegroom. Accordingly now the Lord will appear as the bridegroom in your prayers. You are the bride and the Lord is the bridegroom, and this is the appearance with which he will come before you. When you meet the Lord who comes as the bridegroom, you have to always think about the recompense of the blood shed on the cross.</p>
<p>What is left and what the Lord must give us is that he must find for us the path through which we can dismantle the cross and wish for the blessing to be given to humanity. He must show us the path through which we can go over the cross. We must cross the pass of the cross so that Jesus can hold onto us freely and we must bring liberation from grief by shaking off the cross. Unless we set the unchanging standard based on which we can dismantle the cross, the altar, heaven and earth, and the works of the Second Coming, will not be complete.</p>
<h3><strong>The light, water and oil that Jesus left behind for us</strong></h3>
<p>What did Jesus, who came seeking us, leave behind for us of this day? What is that which he has given us, having found us through his doleful life of suffering and death on the cross? Jesus left behind for us the light of life. He risked his life and came looking for us, and the gift that he brought was the light that lit up this dark world. Therefore, when we shed tears of gratitude while reflecting on the death of Jesus, we will come to understand his heart and his situation.</p>
<p>What is the next thing that Jesus left for us? He left behind water and oil. He left behind water and oil with which he can heal our wound as we undergo tremendous ordeals and many wounds are inflicted on us. Accordingly we must use the light Jesus provided for us to discover our wounds and wash them with the water and oil. Knowing our sins and realizing that we are naked we must weave a holy gown and wear it. Such a time has come. Similarly only after you have lit up your heart and mind to wash all the sins away healed the wounds, and worn the gown, can you realize, today the dream of Jesus who passed away 2,000 years ago. Now we must light up the lantern in our hearts, wash our bodies with the water, and apply the oil to our wounds. Finally after wearing the gown granted to us, we should bear the cross so that Jesus does not have to and bow before Jesus. This is the task man on the earth must fulfill. Do not wish for Jesus to bear the cross for you, but bear it yourself. It is not Jesus who should bear it; you must become the people who give out the light of life. Then being equipped with all the power, wear the gown that can represent the light of the eternal and unchanging value. After that go over the cross to become the beloved brides who will hold onto Jesus and bow before him, saying, &#8220;Lord, please rest in peace eternally.&#8221; God is hoping these kinds of brides will appear.</p>
<p>Now you have to unravel the burdens Jesus left behind. You must inherit the light of the heart from Jesus, and receive from Jesus the blessings of water and oil, and then wear the holy gown. This gown is not to remain only with you as individuals. It will not apply only to you, but there must emerge many people who can become the brides by receiving the light, as well as the blessing of water and oil through you.</p>
<h3><strong>Prayer</strong></h3>
<p>Father of love! Please let us realize the grieving heart and be in awe before that heart by understanding how thorny the 6,000 years of history have been. We did not know what the gravest of all sins was, but when we come to the realization, we find that it was a great sin to consider the light that the Lord has given us only as our own. Although we possess the water and the oil, it was a great sin to hold it only for ourselves. Although we were wearing the holy gown, it was a grave sin not to have caused many people to wear the gown, although we have the responsibility to make people become faithful. It was a great sin on the scale of representing the 6,000 years that we could not make others believe.</p>
<p>Please let your children who have gathered here understand that more than committing sin themselves, it is a greater sin to cause another to commit sin, and it is a greater sin to have failed to give them the light, water, oil and the gown that Jesus left behind through his suffering. Father, please let the children who had scattered receive the hyung-sang of Jesus Christ and listen to his calling through the words I have spoken. Although they should be responsible for the historical difficulties and tribulations, including even the suffering of the cross, because they are inadequate and ignorant of Heaven&#8217;s will and the Father&#8217;s wishes, please encourage them and reveal Your will to them first; let them hear Your voice directly first. Loving Father, I pray from the bottom of my heart that, since they are trying to lead a life of goodness, You will lead them to live their life as they hope.</p>
<p>Please prepare them as the bride of the Lord and guide them to become children who can prevail over everything and bring glory to Heaven, and please govern over the new historical event. I entrust everything to You, so please govern us as You will and appear in the hearts of these who have gathered here. I pray that You will raise them up as the children who can represent the eternal glory of victory. I pray all these things in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html" title="Permalink to Jesus Is Searching For Us In This Way" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html" rel="prev"><span class="meta-nav">&laquo;</span> Jesus Christ, The Pride of God</a></div>
<div class="nav-next"><a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html" rel="next">Jesus Christ Who Went and Came and Who Will Come and Go For The Sake of Heaven and Earth <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,228 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Become The Elite Troop Of God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-719 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-719" class="post-719 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Become The Elite Troop Of God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-20T15:26:09+01:00"> <a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html" rel="bookmark">May 20, 2018</a> </time></span><time class="updated" datetime="2018-05-20T15:28:48+01:00">May 20, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><center><strong>REVEREND SUN MYUNG MOON<br />
SPEAKS ON</strong><br />
<strong>Let Us Become The Elite Troop Of God</strong><br />
<strong>April 8, 1956 (Sunday)<br />
Headquarters Church, Seoul, Korea</strong><br />
II Timothy 2:1-13</center></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text 2Tim-2-1">You then, my son, be strong in the grace that is in Christ Jesus.</span> <span id="en-NIV-29830" class="text 2Tim-2-2"><sup class="versenum">2 </sup>And the things you have heard me say in the presence of many witnessesentrust to reliable people who will also be qualified to teach others.</span> <span id="en-NIV-29831" class="text 2Tim-2-3"><sup class="versenum">3 </sup>Join with me in suffering, like a good soldier of Christ Jesus.</span> <span id="en-NIV-29832" class="text 2Tim-2-4"><sup class="versenum">4 </sup>No one serving as a soldier gets entangled in civilian affairs, but rather tries to please his commanding officer.</span> <span id="en-NIV-29833" class="text 2Tim-2-5"><sup class="versenum">5 </sup>Similarly, anyone who competes as an athlete does not receive the victors crown except by competing according to the rules.</span> <span id="en-NIV-29834" class="text 2Tim-2-6"><sup class="versenum">6 </sup>The hardworking farmer should be the first to receive a share of the crops.</span> <span id="en-NIV-29835" class="text 2Tim-2-7"><sup class="versenum">7 </sup>Reflect on what I am saying, for the Lord will give you insight into all this.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29836" class="text 2Tim-2-8"><sup class="versenum">8 </sup>Remember Jesus Christ, raised from the dead, descended from David.This is my gospel,</span> <span id="en-NIV-29837" class="text 2Tim-2-9"><sup class="versenum">9 </sup>for which I am suffering even to the point of being chained like a criminal. But Gods word is not chained.</span> <span id="en-NIV-29838" class="text 2Tim-2-10"><sup class="versenum">10 </sup>Therefore I endure everything for the sake of the elect, that they too may obtain the salvation that is in Christ Jesus, with eternal glory.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29839" class="text 2Tim-2-11"><sup class="versenum">11 </sup>Here is a trustworthy saying:</span></em></p>
<div class="poetry top-05">
<p class="line" style="text-align: center;"><em><span class="text 2Tim-2-11">If we died with him,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-11">we will also live with him;</span></span></em><br />
<em><span id="en-NIV-29840" class="text 2Tim-2-12"><sup class="versenum">12 </sup>if we endure,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-12">we will also reign with him.</span></span></em><br />
<em><span class="text 2Tim-2-12">If we disown him,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-12">he will also disown us;</span></span></em><br />
<em><span id="en-NIV-29841" class="text 2Tim-2-13"><sup class="versenum">13 </sup>if we are faithless,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-13">he remains faithful,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-13">for he cannot disown himself.</span></span></em></p>
</div>
<h3 style="text-align: center;"><strong>Prayer</strong></h3>
<p>Father, let this be the hour when the life of the original nature that man possessed before the fall is thrust into us. Please allow us to become the altar of life where Your love overflows. Allow us now to feel this wall of death with our minds and bodies. Father, I pray from the depth of my heart that we can receive the grace of resurrection in this way and by building the glorious altar, go before all the dispersed altars with a new candle lit in our hands.</p>
<p>Is there anyone who was inflicted with wounds in his or her heart? Please show them compassion. Is there some trace in one&#8217;s body where Satan used to clutch? Please cleanse them. Father of love, I wish and hope earnestly that on account of that cleansing and/or compassion, they can restore their original hyung-sang from before the fall. <em>(Note: Hyung Sang &#8211; A Korean term that can be translated roughly as &#8220;external form or shape.&#8221; This term is explained in the first chapter of the Divine Principle, &#8220;The Principles of Creation.&#8221;)</em></p>
<p>Father, please appear before us with the words of power. Please reshape our whole being. Beloved Father, we desire from the bottom of our hearts that You will allow the miracle of recreation. You have called upon each of us in this difficult environment, so we will now cross over this path of ordeals and tribulations. The time has come when we must offer the song of victory on the actual battle ground. Father, please increase our strengths, multiply our power, and come before us with the power of resurrection.</p>
<p>Grant liberation to the souls who have been imprisoned in the darkness. Please resurrect them with the fire of hope. My Father, I pray with utmost sincerity that You may bestow Your fire of life, which can light up the garden of truth, the path of which is blocked. Light up this world where evil governs and the grounds of the bitterness of the Father have existed for over 6,000 years.</p>
<p>We understand that the new history begins with the Father as the center. We also know the historical fact that if humankind does not set the standard of history in Heaven, then it cannot be a comprehensive standard of history</p>
<p>Father! Since You have put us in this position, please allow us to build a new history and please groom us as the Heavenly soldiers of the new era. Bestow upon us the grace to construct a new garden and return the glory of bliss to the Father. Beloved Father, I offer this wish from the depth of my heart.</p>
<p>We have broken through the walls of conflict and have come seeking the same path that the prophets and sages once walked. We have embarked upon a path from which we can never return. We know that the time has come when we must fight with independence and audacity and head toward a single goal. Please guide us to pour out the last drop of our energy, to make a resolute decision and stand on the front line facing Satan. Let us become the soldiers of Heaven who can raise the flag before anyone else and march against Satan. Father, please take in the current altar of conflict as a triumphant altar. Until You can control it as Your altar of peace and glory Father, please protect our path and sanctify our dwelling place. Father, please lead us to erect the white flag of joyful victory before this Korean people and the 2.4 billion people comprising humanity Father, although we are small in number, these members have united our hearts and gathered here to he intoxicated in Your love. Hence, even for this hour, please allow us to be immersed in Your concealed love.</p>
<p>Divulge the work of Heaven&#8217;s love and truth, which has been hidden for 6,000 years, and unfold the miracle of resurrection. Please allow us to become liberated from our minds and bodies and become the Father&#8217;s true sons and daughters. Father, we desire from our deepest hearts that You will raise us as children who can reciprocate with You and serve You with the honor of victory This day is a glorious day Please manifest Your powers before these altars, those who have gathered here representing the thirty million Korean people. Please let Your works be manifested. If there are altars without life, then please manifest the miracle of life. Regardless of time, environment and place, Father, please let Your work unfold.</p>
<p>Give rise to the beacon of life that has been fast asleep. Please allow it to step forward holding a banner of new life on the grounds of conscientious children, children who follow the Father. Beloved Father, I pray earnestly that there will come forth many children who can safeguard hidden altars.</p>
<p>We have gathered here so, Father, please sanctify our souls. If there is any self-centered concept or sinful element, the dark root that impedes chastity then please appear before us as the work of the Holy Spirit that resembles the flame of the Father, and guide us forward. Father, this is our most sincere wish.</p>
<p>Please lead us to accomplish the mission assigned to us without any fault. Allow us to become sons and daughters who, offering all of their minds and bodies for the sake of the one will,2 are dignified before the many thousands of faithful believers and members of the spiritual world. Let us fulfill all of their missions. In this hour, from the beginning till the very end, please do not let even one person fall subject to the accusations of Satan. Let the grace of resurrection, the blissful taste of new life, and the grace of new life be granted to as many people as possible. In this way let this be the hour when we can return the glory of the resurrection of new life to the Father. Beloved Father, this is our prayer, from the depth of our hearts.</p>
<p>We entrust everything to You now so let the fundamental miracle of the living life be manifested from the beginning to the very end. Let only the will of happiness unfold. We prayed in the name of the Lord. Amen.</p>
<h3><strong>Prayer</strong></h3>
<p>Father, although unworthy and sinful, today a handful of members has prostrated themselves before the sacred presence of the Father again.</p>
<p>Until now You have raised prophets and given Your commands through them. You have given the mandate through the Holy Spirit and Jesus, but we know that until now You have been unable to command directly. Please let the mandate that You could not decree directly be promulgated here. This being done, let the will of the Father, which You have tried to accomplish through the Holy Spirit and Jesus Christ, be manifested here.</p>
<p>We understand that the Father is trying to realize the dispensation of joy Before Your will, we long to pour out all of our heart and soul, offering all of our loyalty and bodies. Though these may be inadequate, Father, please extend Your hands of compassion.</p>
<p>On our hands and feet are the scars left by Satan&#8217;s arrows, and in our bodies we carry the battle wounds. Father of compassion! Please extend Your divine grace to hold our hands and feet, full of the scars of Satan&#8217;s arrows, to grip our wounded bodies, to apply the oil of life on us and to wrap our bodies with the bandages of resurrection. We yearn for a word of counsel so, Father, please advise us. We desperately desire it.</p>
<p>Please liquidate our vulgar minds and all sinful natures. Guide us to cling only onto the original heart that cherishes nothing but the Father.</p>
<p>Father, You have gathered us now so please give Your commanding words. Please allow us to find out what the center of the dispensation is that the Father wishes for and what is the center of the universal principles that the Father seeks.</p>
<p>Descend upon us in this hour. We have prostrated ourselves humbly and meekly to respond to the words that the Father gives us. We are ignorant and wounded, but because we hope that we can be an offering to You, please receive us. Father, we pray from the depth of our hearts.</p>
<p>Father, please govern over everything in this hour. We who have come seeking the dispensation know that we must bear the fruit of life, so in this moment when the last days are nearing, Father, please bestow Your outstretched hands of life. We know that though the world and history might change, the Father&#8217;s life remains unchanging, so please allow us to dash toward eternal life and the standard of immutability If there are children who do not meet the standard, please order each of them personally and lay Your hands of power on them. Allow them to resemble Your holy image. Father, I pray from the depth of my heart.</p>
<p>We have gathered before the Holy Father, the Holy Son, and the Holy Spirit, so please remove everyone&#8217;s subjective concepts and allow the miracle of life. Please be the center of their minds and bodies, the center of the whole congregation gathered here and the triumphant shield, so that this moment can become an hour of joy and fulfillment.</p>
<p>Father, we pray from the bottom of our hearts that with the elements of life that we will obtain from this day, we can create the flesh and blood of life and forge the eternal shield of victory so that even if we are to clash with Satan head on, we will not be wounded. We entrust everything to You, so please rule over us. We pray in the name of the Lord.</p>
<p>The title of the sermon that I will give today is <em>&#8220;Let Us Become the Elite Troop of God.&#8221;</em> I will speak briefly on this topic.</p>
<h3><strong>We who are the center of the conflict and the embodiment of hope</strong></h3>
<p>Initially the term &#8220;elite troop&#8221; did not exist. It came into being because of the fall of man. Because of the fall, the term had to emerge. In other words, it was invented because, by virtue of the remaining conflict, there was the need for sons and daughters who could conduct the fight in the place of God.</p>
<p>God chose these sons and daughters because His will could not be accomplished unless He raised them and led them through the course of conflict until a certain point in time. By repeating the changing history during the 6,000 years of long history God personally intervened on earth and fought with Satan. However, what kind of beings are they who must take responsibility for this history of the conflict of God and can fight on the front line?</p>
<p>God is not to fight directly and neither is Jesus nor the Holy Spirit. As you know very well, the faithful believers whom Jesus Christ, the Holy Spirit and God stand behind are the ones who must directly take responsibility for the fight.</p>
<p>This fight must be concluded at any cost. Yet even after 2,000 years since the coming of Jesus, this fight has not yet been concluded. Now the grounds for this fight must be broadened and the grounds for victory must be built. Who are the ones who must take on this responsibility? It is none other than insignificant and unworthy us.</p>
<p>When we reflect on this, we can learn that the hope of God does not lie with Himself. What is more, the hope of Jesus also does not lie in himself. Likewise, the hope of the Holy Spirit does not lie within her. The hope that the prophets and sages sought also cannot be found in themselves. Their hope lies with none other than us, the insignificant ones who dwell on this earth today</p>
<p>If God calls upon you who are on earth, what kind of criterion is He using? He uses the whole 6,000-year dispensation as the criterion to call upon you.</p>
<p>Therefore, you must clearly understand that you have the responsibility to bring a victorious conclusion to the many thousands of years of the history of humanity Moreover, you must understand that God is calling us in this manner. Not only that, we must become the true elite troop of Heaven who can take responsibility for this era, this history and for eternal history</p>
<p>Directly pioneering the great fate of the dispensation is not the work of Jesus, the Holy Spirit and God. It is a task we must do.</p>
<h3><strong>To become the heavenly elite troop</strong></h3>
<p>We must be able to stand as a third person and make a critical evaluation of ourselves, we who bear such a great mission as this. You must reflect whether you can answer confidently even if the Father were to appear personally before you and ask you. When the Father asks, &#8216;Have you become the elite soldier of Heaven who can be responsible for the whole dispensation and fight fully armed with audacity dignity and conviction,&#8221; are you able to say &#8216;Yes! It is true,&#8221; without any hesitation? Heaven is searching for those who can answer proudly</p>
<p>What are the conditions that qualify you as a member of the elite corps? We cannot find the qualifying conditions within us. How can we become members of the elite corps of Heaven? To become the elite troops of Heaven, we must follow the example of Jesus Christ, in whom we believe, the one who appeared as the archetype of the elite corps of Heaven. The background of the advent of Jesus, his life and ideals, are all things that we can take pride in before Satan. What is more, they are the content and conditions that we must inherit if we are to become members of the Heavenly elite troop. You must heed this.</p>
<p>The same thing can be said about his words and about the path of crucifixion that he demonstrated at the time of his death, as well as the way of resurrection that he left behind for us. These are the conditions and laws that we absolutely need to end all the historical conflicts and to become the elite corps of Heaven. We must fulfill these conditions.</p>
<p>Nonetheless, what we must understand here is that Jesus spent thirty years preparing, toiling, and suffering to be fully equipped with all the conditions that are necessary to become an elite soldier of Heaven. It did not happen in one day or in one moment. He had to pass through thirty years of a long period of tremendous ordeals. What is the course that Jesus walked after coming to the earth? He demonstrated the condition and course of tribulations that one must walk to win victory over Satan as the elite soldier of Heaven.</p>
<p>Jesus cried, &#8220;All is done,&#8221; on the cross, but he did not say this because he fulfilled everything on the cross. He uttered those words because even before he hung on the cross, he fully satisfied all the conditions needed to qualify as the elite soldier of Heaven. By putting it into those words, he meant that he had fulfilled all the missions that he had to as the elite soldier of Heaven.</p>
<p>Because Jesus was an impeccable member of the elite corps of Heaven, Heaven could resurrect him after he passed away on the cross. After the resurrection of Jesus, Jesus worked in Heaven and the Holy Spirit worked on earth and carried on the fight against Satan for 2,000 years.</p>
<h3><strong>The lessons to be learned from the life of Jesus Christ</strong></h3>
<p>Now there remains the course of tribulations to which we who are called upon by Heaven must adhere. You must remember that it is none other than the path of Jesus, who walked it throughout the thirty years of his life. When you examine the thirty-year life course of Jesus, he lived thirty years of private life, three years of public life and brought an end to his ordeals during the three-day period in the tomb.</p>
<p>There is no question that we ourselves must follow the path of crucifixion and resurrection. Yet the important thing is that the humanity of the whole world must all walk the same path.</p>
<p>After his death on the cross, Jesus received the grace of resurrection, but this did not take place in the simple and easy manner you might envision. It did not happen in one day or in several hours. You must understand that it was achieved when the heart of God, who had traveled through the long 4,000-year history became one with the heart of Jesus. On that foundation, Jesus walked thirty years of a suffering path and won the victory We are living a life of faith and are reading the Bible, yet we must never interpret the Bible according to our own whims. It is common for believers to take the view that the way of the crucifixion took place solely on the cross, but this is not true. You must understand that the way was materialized through his life of tremendous suffering that others do not know about. For thirty odd years, he could not eat or dress adequately Moreover, you must also realize that Jesus is the only begotten son of God who fully equipped himself with the remaining conditions to be qualified as a member of the elite troop of God.</p>
<p>Now we must analyze the lessons that the life of Jesus provides and come up with a new interpretation of matters that range from having faith in Jesus to his course of ordeals. You must also pass through the course of trials. While Jesus was passing through the course of trials and ordeals, there must have been many fights. We must learn from the example of Jesus who fought, not for ten or twenty years, but for thirty years and braved even death. What you must understand now is that you yourselves must take charge of the remaining path of suffering and path of death, to guard the cross and uphold the way of the crucifixion.</p>
<p>After Jesus passed away the responsibility to guard the castle of crucifixion that Jesus had constructed on earth and to make the first step in the fierce fight lay with the apostles. You must understand that now the responsibility to protect the castle of crucifixion lies on the shoulders of the apostles of the last days. The time has come when the final determination of victory and defeat must be made in the last fierce battle. The crucial question is whether you have become the elite troop that can stay on the course, and whether you can perform the second miracle of resurrection to be reborn, as Jesus was resurrected.</p>
<p>Jesus has continued to engage himself in the fight, even after going to the spirit world. He is fighting against Satan on behalf of the countless good believers. The Holy Spirit is the one who, copying the example of Jesus, has unfolded the battle on earth. It is our responsibility to receive the help of the Holy Spirit and fight the actual battle. In other words, it is we who must become Heaven&#8217;s elite corps who can take over the burden of the conflict.</p>
<h3><strong>The time when the grief and resentment of the 6,000 years must be expunged</strong></h3>
<p>The final conflict has unfolded. You must understand that the fight you are partaking in today is not for your own sake. This fight has been linked to you through Heaven and the Holy Spirit. What is more, the purpose of that fight is to expel Satan.</p>
<p>Accordingly we must now cross the pass of conflict and reach the original homeland. We must become the elite soldiers who can bear the remaining cross of Jesus and sing a victory song. We must become the elite troops of triumph and happiness, who remove the resentment of the 6,000 years and realize the hope of the 6,000 years.</p>
<p>The twelve disciples emerged as the representative elite troop responsible for the castle of the cross. The twelve disciples crossed the boundaries of death to protect the walls of the castle of the crucifixion. Even as they were offering their minds and bodies and shedding their flesh and blood, they did not hesitate in guarding the castle wall.</p>
<p>The traces of blood that the prophets and sages shed as they were walking the path of the gospel still remain visible on the walls of the castle of the crucifixion. Moreover, this land is ground which is soaked through with the grief and blood of the ancestors. It is the land on which the appeal of blood is left behind. The ones who must resolve this bitter resentment are none other than us. Although the death of Jesus Christ was a grievous event, the deaths of the prophets and sages were also bitter tragedies. You must learn to grieve for the deaths of the prophets and sages along with the death of Jesus Christ.</p>
<p>Now we must understand that the time has come when we must feel strongly indignant. The time has come when we must eradicate the grief and bitterness of God. What is needed at such a time is a heavenly elite corps. That is what this era demands. You must become the true sons and daughters who can say &#8216;Father! Please expel the resentment of the 6,000 years through me.&#8221; If there are many such true children among the thirty million people, then the path of survival will open for them. What is more, if these people become priests to protect the walls of the castle of the crucifixion and become members of the Heavenly elite troop, they will not perish. We who have faith today must become the Heavenly elite troop.</p>
<p>Jesus, who came to earth and passed away on the cross, built the holy altar of victory in the spirit world and has expanded it. As you can see by observing the spirit world, the pitch darkness of the fall has reached all the way to the feet of the throne of God. Since the time of Jesus, the one foundation has finally been laid through the repetition of conflicts, tribulations and toil. The fight has continued until today to broaden this foundation further. Even on earth the fight with Satan has continued. Now Heaven is hoping for the appearance of the Heavenly elite troop who can bring this conflict to a conclusion.</p>
<p>We must shape up and try harder. Jesus not only fought during his thirty-year life on earth until he crossed the pass of crucifixion and death; he has also continued the battle for 2,000 years since then. Humankind is ignorant of this fight. You must appeal to yourselves. Before you appeal to the people, to the family the society the world and the earth, you must first appeal to yourselves. You must follow the example of Jesus Christ, who has been fighting for the sake of the will for 2,000 years. You must carry on the struggle for the sake of the will. By doing so, you must win the victory both in heaven and on earth, so that heaven and earth can respond. You can then represent the heart of God and manifest the original beauty of creation. This is the purpose for which God has been propelling the dispensation forward for 6,000 years and the reason He sent Jesus Christ.</p>
<h3><strong>The task that the heavenly elite troop must accomplish</strong></h3>
<p>Now we must become the elite troop of Heaven and protect the walls of the castle of crucifixion. You must likewise become the Heavenly elite soldiers, but you must first distinguish to which rank in the elite corps you belong.</p>
<p>Because the history on earth is the history that horizontally unfolds the work of Heaven in image, just as there are twelve ranks of elite troops centering on the twelve disciples, there are twelve denominations on earth that resemble the pattern of the twelve tribes of Israel and countless minor ranks. This hierarchy of ranks was formed during the 2,000-year history You must know which rank you belong to. You must understand which rank you belong to in the Heavenly army It is structured systematically much like the army of the secular world, in platoons, companies, battalions, regiments, divisions and so forth. Moreover, you must understand what mission you are being given the commands centered on.</p>
<p>Now after passing through the course of conflict, we must usher in the era when the whole world of creation can rejoice. The center of that is none other than Jesus Christ and the Holy Spirit whom we believe in.</p>
<p>What is the ultimate purpose of the Heavenly elite corps? It is to conclude the fight with Satan and receive accolades from God and Christ. It is to win victory in the fight and receive the rewards of Heaven on earth.</p>
<p>Now the fight is taking place in every sphere. It is unfolding in every place of the world. Moreover, the will of the dispensation is being unfolded in the whole of heaven and earth. You must become the Heavenly troops who win the victory in the fights on the individual level, on the family level, and on the societal, national and world levels, as well as bringing victory in the fight that is taking place in heaven and on earth.</p>
<p>Jesus is unable to bring an end to the fight that is taking place in heaven and on earth. Consequently you must become the elite soldiers who protect all posts on all fronts and end the battles on all fronts. All things in the universe will act in harmony only after we reap the victory as one body with Christ as the head, and offer a frill bow before Heaven.</p>
<p>You must now pass through the traces of blood left behind by the apostles. You must lead and take charge of the companies or battalions the apostles used to lead. Going one step further, you must take on the responsibility that Jesus and the Holy Spirit are bearing upon their shoulders.</p>
<h3><strong>The ultimate goal of the elite corps of heaven</strong></h3>
<p>God does not want any battle ground to remain on earth. Because the resentment was caused on earth, only when the victory is reaped and the grief is removed on earth can Jesus Christ&#8217;s battle be concluded and can he come again. What is he to do after coming again? He is to bring to an end the battle that has taken place for the last 6,000 years and receive the blessing from God. The banquet in which God raises both hands to celebrate, the banquet in which the triumphant elite soldiers all gather and receive the blessing is the banquet of the little lamb. He is going to host this banquet of the little lamb.</p>
<p>You must directly receive the commanding words of God, who is the commander-in-chief You must rise to the position where, in place of Jesus, you receive directives straight from God.</p>
<p>You must obtain the seal of the Father, just like in the verse in the fourteenth chapter of the Book of Revelations: &#8220;Then I looked, and there before me was the Lamb, standing on Mount Zion, and with him 144,000 who had his name and his Father&#8217;s name written on their foreheads.&#8221; (<a href="http://www.biblegateway.com/passage/?search=Rev+14:1">Rev 14:1</a>) You have been guided by the Holy Spirit and Jesus until now but this is not the whole story. Only after you receive the seal of the Father will you become an eternal member of the elite corps, effective not just on earth, but also after you go to heaven. You must never forget that you must proceed all the way to that point. While you become the elite corps of Jesus by winning all the fights, you must also become the original human beings in whom God can take delight, as well as true sons and daughters who have perfected the ideals of creation. Only when the victory song of Hosanna offered by this Heavenly elite troop shakes the whole earth will the grief and resentment of God be liquidated. Satan, also, will immediately be liquidated. You must understand this clearly The fight remains. Accordingly you must venture on the last offensive to cross over the pass of conflict to receive the seal of God and subjugate Satan before God. This is the only way that the confrontation with Satan will come to an end.</p>
<p>The conflict will not end, even after making Satan submit before the Holy Spirit and Jesus Christ. The conflict will come to a conclusion only when Satan is subjugated before God. The Father has been suffering as He walked through the 6,000 years of dispensational history with the purpose of raising this victorious elite corps. Understanding this kind of father, you must become the victorious elite troop of Heaven.</p>
<p><em>(Note: The word &#8220;will&#8221; in Father&#8217;s speeches usually refers to the divine will, and it also means the dispensation of God or the divine providence. To make the point more clear, The Way of Tradition in the original Korean is &#8220;The Way of the (Divine) Will,&#8221; which really means &#8220;The Way of the Dispensation of God.&#8221; Although this word will be translated frequently as &#8220;the will,&#8221; where deemed appropriate, it will also be rendered as the &#8220;dispensation or providence.&#8221;)</em></p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html" title="Permalink to Let Us Become The Elite Troop Of God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2016/01/03/happy-new-year.html" rel="prev"><span class="meta-nav">&laquo;</span> Happy New Year!</a></div>
<div class="nav-next"><a href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html" rel="next">Jesus Christ, The Pride of God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,220 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Jesus Christ Who Went and Came and Who Will Come and Go For The Sake of Heaven and Earth &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-729 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-729" class="post-729 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Jesus Christ Who Went and Came and Who Will Come and Go For The Sake of Heaven and Earth</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-21T05:16:43+01:00"> <a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html" rel="bookmark">May 21, 2018</a> </time></span><time class="updated" datetime="2018-05-21T05:20:55+01:00">May 21, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><center><strong>REVEREND SUN MYUNG MOON<br />
SPEAKS ON</strong><br />
<strong><strong>Jesus Christ Who Went and Came </strong><br />
<strong>and Who Will Come and Go </strong><br />
<strong>For The Sake of Heaven and Earth</strong></strong><br />
<strong>May 23, 1956 (Wednesday)<br />
Seoul, Korea</strong></center></p>
<p style="text-align: center;"><em>John 14:2-12 </em></p>
<p class="chapter-2" style="text-align: center;"><em><span id="en-NIV-26671" class="text John-14-2"><span class="woj">My Fathers house has many rooms; if that were not so, would I have told you that I am going there to prepare a place for you?</span></span> <span id="en-NIV-26672" class="text John-14-3"><span class="woj"><sup class="versenum">3 </sup>And if I go and prepare a place for you, I will come back and take you to be with me that you also may be where I am.</span></span> <span id="en-NIV-26673" class="text John-14-4"><span class="woj"><sup class="versenum">4 </sup>You know the way to the place where I am going.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-5"><sup class="versenum">5 </sup>Thomas said to him, “Lord, we dont know where you are going, so how can we know the way?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26675" class="text John-14-6"><sup class="versenum">6 </sup>Jesus answered, <span class="woj">“I am the way and the truth and the life. No one comes to the Father except through me.</span></span> <span id="en-NIV-26676" class="text John-14-7"><span class="woj"><sup class="versenum">7 </sup>If you really know me, you will know<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26676a" data-link="[&lt;a href=&quot;#fen-NIV-26676a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+14:2-12#fen-NIV-26676a">a</a>]</sup> my Father as well. From now on, you do know him and have seen him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26677" class="text John-14-8"><sup class="versenum">8 </sup>Philip said, “Lord, show us the Father and that will be enough for us.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26678" class="text John-14-9"><sup class="versenum">9 </sup>Jesus answered: <span class="woj">“Dont you know me, Philip, even after I have been among you such a long time? Anyone who has seen me has seen the Father. How can you say, Show us the Father?</span></span> <span id="en-NIV-26679" class="text John-14-10"><span class="woj"><sup class="versenum">10 </sup>Dont you believe that I am in the Father, and that the Father is in me? The words I say to you I do not speak on my own authority.Rather, it is the Father, living in me, who is doing his work.</span></span> <span id="en-NIV-26680" class="text John-14-11"><span class="woj"><sup class="versenum">11 </sup>Believe me when I say that I am in the Father and the Father is in me; or at least believe on the evidence of the works themselves.</span></span> <span id="en-NIV-26681" class="text John-14-12"><span class="woj"><sup class="versenum">12 </sup>Very truly I tell you, whoever believes in me will do the works I have been doing, and they will do even greater things than these, because I am going to the Father.</span></span></em></p>
<p><strong>Prayer 1</strong></p>
<p>These young children have come before the Father&#8217;s knees seeking a way to gain new life, so Father, please receive them. We know that You have told us before that we are more precious than the whole universe. Since many people have gathered before this altar out of a desperate desire for life, Father, please allow those who have gathered here to represent the glory of the Father and to fathom the concerns and worries of the Father for the altar of happiness. I pray from the bottom of my heart that this hour can be the time when they can deeply feel Your heart.</p>
<p>We know that You have no choice but to believe in us, who are so unworthy and we know that You have no choice but to rely on us to bring on the new history. Please forgive us, we who have failed to be trustworthy even when we knew that Heaven had no choice but to trust us and put us in positions of responsibility</p>
<p>We could not even bear the responsibility to become those whom You could rely on, so Father, I pray from the bottom of my heart that You will forgive us in this hour. I pray most earnestly that You can accept us now as offerings who believe in the Father who, depending on the Father, will be able to forsake even our lives and to offer them to You sincerely. Father, from among so many people, You have called upon us who are so inadequate, so please be in charge and embrace us with Your love of compassion.</p>
<p>Please lead us to offer all of our minds and bodies to the Father in this hour and to understand the Father&#8217;s heart of concern. I pray from the bottom of my heart, Father, that You will allow us to become the children who can take on and bring to fruition the one wish of Yours that You seek from us. When we see that Your heart breaking situation and grief of 6,000 years of human history are continuing even today we would like to beg Your forgiveness for the fact that we are the ones who are perpetuating the grief of our Father.</p>
<p>I pray from the bottom of my heart, beloved Father, that You will consider these people as the embodiment of the ideology and life of our Father and as the root of life in whom You can find joy. Please consider the children gathered here with sympathy. Father, I pray earnestly that You will lead them to pour out all of their hearts and to praise the love of the Father as exemplary children whom You have placed before the millions of saints, and to become the offering. Please govern over us, for we have entrusted everything to You. I pray in the name of the Lord. Amen.</p>
<h3><strong>Prayer 2</strong></h3>
<p>Father! In this hour bowing down before Your knees, hoping for the blessings of Your lofty and great love, are children who have been bearing their own cross and have been walking the thorny path headed toward Heaven even when they found themselves in lonely environments. Father, please come to them personally and embrace them with love, comfort their fatigued hearts, and revive their desiccated spirits.</p>
<p>If Father does not personally grab hold of us, where else can we go? We are pitiful children, so Father, please dwell with us personally and guide our paths personally and help us to become children who can dash toward the cause You desire. Please personally govern over the bodies and minds of the children who have gathered here now and since they have offered their hearts to you, Father, please bring on a new history and come to us with a compassionate heart.</p>
<p>Father! A steep and rugged path lies before us, so we pray sincerely that You will hold onto us personally and grant us the strength that can carry us through the road of death. Please embrace the ignorant ones who are just watching from the sidelines now and please instill in them the audacity to dash forward to realize the will of Heaven. Please help them to march forward as the chosen children and brave soldiers of Heaven.</p>
<p>The apostles who bear the responsibility to awaken all the children who are fast asleep and to lead them to God have gathered here, so please help them so that they can fully carry out the missions they have taken on. I pray that You will help them become children who stand on a level higher than any other saints of the past and to love even Satan.</p>
<p>Help them to become children who respond to Your call and walk the right path. Lead them not to fall into the accusation and ridicule of Satan. Please help them not to become ignorant ones who interpret the heavenly laws centering on themselves. Please help them become children who can reveal the glory of the Father and increase the Father&#8217;s blessings on the earth.</p>
<p>Grant special blessing upon all the children who have gathered here in this hour in Your name, and please ignite the fire of life everywhere the worship service is offered so that they can come to understand the new dispensation of the last days. I pray earnestly that You will gather children who can multiply the glory of the Father on this earth.</p>
<p>How many children are there who are calling out to You, Father, building a hidden altar and seeking desperately for the way of Heaven&#8217;s will at this hour? The mission of finding these people also lies on the shoulders of the children who have gathered here, so Father, please give them the ability to fulfill that mission, and please gather all the children personally. Please let the day come quickly when we can raise high Your great and glorious will. We have the mission to find and raise before You the 2.4 billion people of this earth who are fast asleep. So, Father, please bring the fire of life and grant the miracle of resurrection to every place we confidently proceed with the words that You have given us, so that we can unveil the happiness and glory of the Father in this land.</p>
<p>Please give us the unshakable faith to believe that the responsibility lies with us to liberate the desperate heart of Jesus, who has been working strenuously for the sake of humanity for thousands of years, and to remove the grief of Jesus who appeals to the Father on our behalf. Please lead us not to abandon the standard of Heaven before we fulfill all of our responsibility as men. Allow us to become children with whom only Heaven relates. Father; please dwell in this place now and help us become children who complete their responsibility and receive the blessings of Heaven.</p>
<p>Please help us not to forsake the missions we have taken up and raise us as capable children whom the Father can love, children who can reveal the glory of the Father until the last day, so that there will not remain any surviving grudge. Personally embrace those children who build a lonely altar in difficult circumstances and call out to You in appeal. Father, please work with them so that there will come forward many children of Heaven who can support the Heavenly will.</p>
<p>Father, please grant miraculous works personally in this hour. Please bless us so that we can return to our missions after receiving the words of life with which we can walk the eternal course.</p>
<p>Please be with us until the last moment of this hour so that when the children who have gathered here go back, they can bring with them the beautiful spirit and great blessing of Heaven, so that as they go back they can offer praises to the Father. I pray all these things in the name of the most beloved Lord. Amen.</p>
<h3><strong>Prayer 3</strong></h3>
<p>Father! Please allow us to understand Jesus, who had to leave the disciples he loved and go to the eternal world by passing through the cross. Let this hour be an opportunity when we can deeply feel the heart of Jesus Chnst. He gathered his beloved disciples, who had followed him through all the happy as well as the sad moments for three years, and with a heart of concern, made a desperate request.</p>
<p>I pray from the bottom of my heart that we can become beloved children who cultivate a sensitive and responsive mind by fathoming with our minds and by experiencing with our bodies, so that we can move in oneness with His will and offer ourselves as humble sacrifices. Please allow us to feel the heart of Jesus, who knew that many who had followed had fallen away and that only the twelve disciples remained; who sensed that even in such circumstances, Judas was shortly going to betray him. I pray from the bottom of my heart that we can deeply experience with our minds and bodies the heart of Jesus when he found that the three years of his public ministry trusting and working with his followers, had come to such a tragic and lonesome ending.</p>
<p>Father! Please allow us to understand the anxious heart of Jesus who faced the road of death and was having a direct one-to-one conversation with Heaven. I sincerely hope that we can grow to become objects of comfort by offering ourselves as living sacrifices, bowing before the Father. Please do not leave us alone but be with us personally so that this hour of gathering will not add to the grief we had when we came here. I sincerely wish that Father will take charge of all aspects of our lives. Please let the beloved children understand that Satan is found everywhere around them, and please lead them not to possess a soft and complacent heart that can cause them to yield to Satan. Beloved Father; let us have the right attitude toward You in our minds and bodies. Let this hour be the time when we can possess a spirit of carrying out the mission and building the victorious altar with all of our hearts and souls. Please remove humanistic mentality and knowledge from our environment. Wishing that the speaker and the audience can join their hearts into one and become a source of happiness and glory for the Father, I pray in the name of the loving Lord. Amen.</p>
<p>The topic of the sermon today is <em>&#8220;Jesus Who Went and Came and Who Will Go and Come for the Sake of Heaven and Earth.&#8221;</em> I will speak briefly on this topic.</p>
<h3><strong>The position of Adam and Eve in the universe</strong></h3>
<p>It is an undisputed fact that the reason God created all things in heaven and earth is that He wanted to become glorious. Consequently, He first created the invisible, angelic world. Then as the symbol of the invisible, substantial world, He created the visible substantial world. After that, He created Adam and Eve as the center and representatives of the spirit world and the substantial world.</p>
<p>Adam and Eve should have shared the same fate as heaven and earth, as long as the universe remained unchanged. In other words, Adam and Eve had the fate to move according to the way that heaven and earth moved. Accordingly, if Adam and Eve would change, then heaven and earth would also change. If the center of Adam and Eve were shattered, then the center of the universe would also be undermined. Adam and Eve were created with the binding condition that if the center of the universe were destroyed, as the result, the center of the Creator would also be damaged.</p>
<p>Because Adam and Eve fell, the center of the univense was out of line, and as a result, the center of the Creator was also put out of line. Consequently, God had to set up another center of heaven and earth, and by having the created world become harmonized centering on that, He had to make the center of the Creator and the center of the created things become one and the same, not two. When this can be done, earth will rejoice as heaven is happy and heaven will rejoice when earth is happy. What is more, both heaven and earth will be eternal, and when heaven is intoxicated in unlimited love, the earth will also be intoxicated by boundless love.</p>
<p>As long as the fate of the Creator is not off the line, the fate of the created world will remain unchanged. Ecerything was ruined because the center of this created world, Adam and Eve, fell and thus everything was not in harmony in their direction and center. The history of the dispensation purposes to restore all this. Six thousand years of the history of the dispensation of restoration have passed, and we have arrived at today. God&#8217;s dispensation of love surfaced through many saints and sages. While love was revealed symbolically through them, the substantial dispensation of love was demonstrated internally and externally through Jesus, who came as the culmination of the love of the whole. Therefore, his heart represented the center of the invisible world, and his body represented the center of the visible, substantial world.</p>
<p>Because the Jewish people who should have recognized the identity of Jesus did not know him, God had to send him down the path of the cross. You have to understand that as a consequence, the whole of heaven and earth has sunken into darkness.</p>
<h3><strong>The purpose of the words and life of Jesus</strong></h3>
<p>The only purpose for the coming of Jesus Chnst was to establish the eternal, unchanging center of heaven and earth by cultivating the heart of the Father who created the universe. Jesus came to this earth to establish that center.</p>
<p>Jesus did not speak in order to set up some center for himself. He was not trying to establish the center for some district of Jerusalem or a village in Israel. He was trying to establish one center that could connect to the center of the whole spirit world and the center of the Creator. His acts were not merely the acts of an individual. His wishes were not an individual&#8217;s wishes. The battles he engaged in were not fought on the individual level. The goal that he hoped for was to stand firm as the unchanging center that can embrace the whole universe and all things. Transcending all things and passing through the invisible world, he then purposed to reach all the way to the position in which he could represent the heart of God, the Creator. You must understand this.</p>
<p>You must understand the words, life and actions of Jesus who had such wishes. His actions were the embarkation points to build heaven and earth anew. The words he spoke had the power of recreation for the purpose of realizing that one will.</p>
<p>You must understand that in the thirty-year preparation period and the three-year course of practice, Jesus spoke words in order to re-establish the unchanging center of heaven and earth lost at the time of Adam and Eve. Because the Jewish people did not believe in those words, Jesus, who was supposed to become the center of the spiritual and physical worlds, succeeded only as the center of the spirit world and failed to become the substantial center of the physical world.</p>
<p>What did Jesus live for until the time he went over the pass of the cross? First, he toiled and suffered for thirty years after coming to the earth for the sake of the land but his purpose was not to reap the harvest of his accomplishment on the earth. The one center, supposed to be realized on the earth by joining the spiritual and physical worlds, should have been completed within one substantial being, Jesus. Because the spiritual and the physical were split, the body of Jesus, which was the center of the substantial being, was destroyed. You should know that as a consequence, because only the spirit of Jesus was consummated in perfection, the 2,000 years of history from the resurrection until today have been the time when the dispensation of restoration was carried out centering on the spirit world.</p>
<p>Jesus resurrected after he passed away on the cross. After his resurrection, he worked on the earth for forty days before he went back to the spirit world. Similarly the fact that Jesus passed away and then resurrected, and after that ascended again, symbolically demonstrates God&#8217;s work of creation.</p>
<p>There is a verse in Genesis, &#8220;And there was evening, and there was morning, the first day&#8221; (Gen. 1:5) Then there must be a night. The three-day period that Jesus spent in the tomb corresponds to the night time. The thirty years of his life was the day time. Jesus worked hard for thirty years to find and raise his disciples. After this toilsome course, the resurrection was like ushering in a new morning.</p>
<p>The resurrected Jesus tried hard to erect a lantern on this earth, but he could not do it. Although it might seem that he was resurrected to set up a lantern on the earth, in actuality because he resurrected centering on the spirit world, he could not remain on the earth but went back to the spirit world. What this signifies is that Jesus, who had ushered in the day time after passing through the night, greeted the evening again and left for the eternal world.</p>
<h3><strong>Jesus had to recognize people who said they did not know him</strong></h3>
<p>Then what is left? Night time is what is left. The eternal morning should have come when Jesus came, but because he passed away a time period equivalent to the evening remained again. The responsibility for the night time was left unfulfilled by humankind. Because Jesus was forsaken, we have to take responsibility for that.</p>
<p>Just as Jesus completed the responsibility for the night time and established the standard of victory by winning over Satan on the cross, today countless Christians who remain on the earth have the fate to cross the pass of conflict in this night time. When you cross the pass of this night time, you will be res urrected by following the example of Jesus, and together with him will usher in the glorious new morning: the time of the Second Coming. Jesus Christ came to this earth and lived thirty years of his life for the sake of this earth. Because Jesus came for the sake of this earth and the people upon it, even if people on the earth oppose him and say that they do not know him, he has to recognize them.</p>
<p>When Jesus passed through the Garden of Gethsemane and went toward the hill of Calvary even the disciples left him. When Jesus was hung on the cross, there was not one who said that he knew him. None of the disciples said that he knew Jesus. Although there was no one who claimed to know Jesus, because he came for the sake of the earth, he recognized the people on the earth who said that they did not know him. This was done when he resurrected and went to the shores of the Sea of Galilee looking for the disciples. Likewise, Jesus left a path on the earth through which men can come to understand. After forty days, he ascended.</p>
<p>Now because Jesus recognized us even when we did not know him, even if we live in a land that does not acknowledge him, we must recognize him. Consequently during the 2,000 years after Jesus came and left, men have been seeking him in their hearts. Just as Jesus came to the seashore looking for the disciples, to recompense for the grace of Jesus, the believers in the faith had to seek the path to Heaven that Jesus went for 2,000 years. This kind of lifestyle has continued until today. Now then, for what purpose did Jesus go to the kingdom in Heaven? Because Jesus, who came for the sake of the earth, had to fulfill the will of Heaven even after he went to the spirit world, he has been working until now for the sake of Heaven&#8217;s will.</p>
<p>If Jesus, who came for the sake of the earth, goes to the spirit world and does not establish the standard of having recognized men after he already set such a standard on the earth, people cannot dwell in the world where they are not recognized. So, for 2,000 years until today he has been praying before God in order to set the standard of acknowledgment in the place he was not recognized.</p>
<p>It is written that Jesus prays on the right side of God for the sake of men, yet what kind of prayer is he offering? He is offering a prayer of blood and sweat. If men on earth say that they know Jesus on the earth, then when Jesus goes to the spirit world, he will say that he knows them. Similarly unless Jesus changes the situation so that he can say before God that he knows them, the spirit world that men go to is not acknowledged by the Father. Therefore, ever since he went to the spirit world up to today Jesus has been praying before God that he knows us. You must understand this well.</p>
<p>When Jesus comes back after going through this, how will he come? When he comes, he will combine the work on the earth and the work in heaven and then come. He will come taking on the responsibility for the work on earth and the work in heaven. Therefore, today we must also walk the same course of suffering as Jesus until the day that Jesus, who resurrected from the death on the cross and ascended to Heaven, comes again. Moreover, in this time that corresponds to the morning of resurrection after 2,000 years of night, when Jesus comes back having established the one center that Heaven welcomes, then you should sense in your heart that Jesus is coming toward this earth.</p>
<p>Until now our mentality of faith has been such that we have been looking up to Heaven and admiring Jesus. This has been the motto and standard of our faith.</p>
<h3><strong>Today we must adore the Holy Spirit</strong></h3>
<p>Now there remains one thing we must adore. What would this be? We must adore the Holy Spirit, who is working for the sake of the earth. You have to understand this. Many people have been loving Jesus spiritually for 2,000 years until now but today they must also love the Holy Spirit. We must reflect that we the believers of faith and all of humanity must do that. Similarly the time has come when we must love the Holy Spirit and perfect the body of the bride.</p>
<p>Since the Holy Spirit is the bride of God, we must make ourselves up as brides and prepare ourselves to be brides, and love (the Holy Spirit). When this takes place, Jesus can go to the spirit world and rest. What is more, we are to create the one center of heaven and earth, and, centering on the earth, we must enter in pursuit.</p>
<p>We who have been longing for the spirit world in our hearts must now love the Holy Spirit, who is working directly with us. Thus, by loving Jesus, who is the spiritual symbol, and by loving the Holy Spirit, who is the physical symbol, our mind that longs for spiritual Jesus and our body that yearns for the physical Holy Spirit can become one. Because of that unity the center of heaven and the center of earth can finally become one within the mind and body of each of us. When done, Jesus can stand forward representing us, and the Holy Spirit can also stand forward representing us. We can appear representing the will of Jesus and the Holy Spirit and humanity. You must understand this.</p>
<p>With what kind of purpose does the Lord then come to the earth? You must create the center of Jesus and the Holy Spirit within yourself. You who have a living, physical body must follow the example of Jesus and the Holy Spirit, who symbolize the spirit world and the physical world, and become perfect as the substantial central being that combines the spiritual and the physical. This central mission is the mission of Jesus and the Holy Spirit. Jesus is returning to build this one center.</p>
<h3><strong>The mission of the followers in the period of the Second Coming</strong></h3>
<p>What should we do then in this day and age to support the one providence? We should not merely think about how Jesus went to the shores of Galilee to look for the disciples he loved. Jesus Christ will not always come looking for you. Each of you is to become a bride and serve Jesus. Because Jesus and the Holy Spirit are the center of heaven, you must become the center of the earth by defining a center within you around which your mind and body can become one. Thereby you establish the one standard based upon which you can be dealt with as one entity. At this time, you are not just to long for Jesus. Now the Holy Spirit must find a body and we are to look for Jesus on the earth and serve him in her place. You must find and build one such center.</p>
<p>Jesus, who desires this one center, has put the Holy Spirit forward and toiled for 2,000 years for your sake. Now you are to return your debt to Jesus. Although Heaven sent Jesus Christ to the earth as the center who represented the spiritual and the physical and set the standard of completion spiritually you must seek and serve Jesus Christ in order to bring to conclusion the remaining physical dimension that is not yet complete. If you can accomplish this fully then in your heart you can attend Jesus, who has been working so strenuously until today.</p>
<p>Humanity must now go before Jesus and take after the mind and body of Jesus, as well as the mind and body of the Holy Spirit. They must then appear before heaven and earth and all things with confidence and become someone who can be proud before God for having raised up his or her individual self.</p>
<p>You must be able to take pride in yourself before Jesus and the Holy Spirit. What is more, you must be able to be proud of yourself before the apostles. By doing so, you can go before the Father and declare with pride, &#8220;Father, You who have worked arduously until now for 6,000 years! I am going to subjugate Satan, the enemy for 6,000 years, with my own hands. So Father, please trust in me and do not worry about Satan any more.&#8221;</p>
<p>Moreover, you should have the attitude, &#8220;I have eradicated the grief caused by sin and evil, which has soaked all the gardens of created beings. So Father, please let this extricate all the lamentations bound tightly in heaven and earth.&#8221;</p>
<p>God could not rear and love His beloved children for 6,000 years. Although God wants to love us, He cannot sincerely elevate and love us. Although Jesus and the Holy Spirit can come to us and love us, God cannot love us until we believe in the words.</p>
<h3><strong>The responsibility of those who believe</strong></h3>
<p>For this reason, we today must represent Jesus. Erecting the one center, we must confidently pronounce, &#8220;Dear Father! I will be responsible for all the sins and grievances of men on earth. Father, You who have longed for a chance to love humankind for 6,000 years, please love me with the original love at the time of the creation.&#8221; You must go before the Father yourself and say courageously &#8220;Father! Please love me. Father! Please love me.&#8221; God&#8217;s will behind the creation of heaven and earth can be realized in you through Jesus Christ only when this is done.</p>
<p>Jesus came for the sake of the earth and labored for the sake of Heaven. You must represent the whole world of creation and the unlimited spirit world and stand confidently as their central figure before Jesus, who has toiled for the sake of heaven and appeared as the center of heaven and earth. Only after you do that can you take part in the world where Jesus will bring the bliss of heaven and earth. Then God, Jesus, the Holy Spirit and you can come together and live in the world of happiness. You must not forget this.</p>
<h3><strong>Prayer 4</strong></h3>
<p>Father of love! When we look at the 6,000 years of history broadly it was night time until now. We are at the threshold of the morning that is now appearing, admiring the sight of daybreak.</p>
<p>When we look at it from a broad perspective, we are now on the verge of leaving the night behind us and entering the morning hour. Today when we must greet the morning time, I have briefly spoken about how we must pass through the dark night to prepare for the blessing of resurrection; how we must focus our hearts on Jesus who dwells in Heaven, and be the substitute body for Jesus who is concerned about the earth. Then we must become one with the Holy Spirit who has come to establish the physical center. Having done these things, we must then attend Jesus in that center to establish the spiritual center. Only after that can we be elevated as the one center that embodies the original heart of the Father who created heaven and earth.</p>
<p>Are we living only for the sake of the earth? I know that such a life is only half of what it should be. Are we living only for the spirit? This, too, only constitutes a half.</p>
<p>Until now we have lived a life in which we followed Jesus in order to climb up. From now on, please allow us to come down together and love the Holy Spirit in order to realize the hope of Jesus for the perfection of the bride. Please lead us to love the Holy Spirit&#8217;s spirit and nature as a bride and let her grace and virtue become a part of our minds and bodies. In place of Jesus being unable to consummate the physical plane, please allow us to stand as perfected beings with the help of the Holy Spirit and elevate us as the one central figure who can represent the whole ideology of creation. Based on this please allow us to boast before all things as the original center of heaven and the center of the heart that is connected to heaven, earth and the center of the Creator. Please raise us up as the center of the garden of creation so that we can attain the position of a son who can say &#8220;I have the confidence to move the heart of love hidden for 6,000 years, so Father, please love me.&#8221;</p>
<p>The toilsome history has continued until today for the purpose of realizing this, so Father, I earnestly wish and desire that You will allow us to stand as the object of love who believes in the calling of the Father. I pray that You will put us in the position of children who can look down upon the creation from the same position as You and be Your pride before the creation. Let the words that these beloved children of Yours have participated in during this hour become a part of their minds and bodies so they can stand as the center of life. Let them represent the truth and the center of the created world and the Creator so that wherever they go, they can be flawless and not lose sight of the center. Father, I pray sincerely that even when the night falls upon them, let their hearts dwell in the day. No matter when or where the Lord, the Holy Spirit, or the Father appears before them, let them remain faultless and fully prepared.</p>
<p>I now conclude my speech, so please be with them forever in the course of their lives. I pray in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html" title="Permalink to Jesus Christ Who Went and Came and Who Will Come and Go For The Sake of Heaven and Earth" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html" rel="prev"><span class="meta-nav">&laquo;</span> Jesus Is Searching For Us In This Way</a></div>
<div class="nav-next"><a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html" rel="next">Like Jesus, Let Us Return the Glory of the Resurrection to God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,203 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Like Jesus, Let Us Return the Glory of the Resurrection to God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-731 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-731" class="post-731 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Like Jesus, Let Us Return the Glory of the Resurrection to God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-21T05:19:51+01:00"> <a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html" rel="bookmark">May 21, 2018</a> </time></span><time class="updated" datetime="2018-05-21T05:19:51+01:00">May 21, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p style="text-align: center;"><strong>REVEREND SUN MYUNG MOON<br />
SPEAKS ON</strong><br />
<strong>Like Jesus, Let Us Return the Glory<br />
of the Resurrection to God</strong></p>
<p style="text-align: center;"><strong>May 27, 1956 (Wednesday)<br />
Seoul, Korea</strong></p>
<p style="text-align: center;"><em>Matthew 22:34-40</em></p>
<p style="text-align: center;"><em><span class="text Matt-22-34"><sup class="versenum">34 </sup>Hearing that Jesus had silenced the Sadducees, the Pharisees got together.</span><span id="en-NIV-23908" class="text Matt-22-35"><sup class="versenum">35 </sup>One of them, an expert in the law, tested him with this question:</span> <span id="en-NIV-23909" class="text Matt-22-36"><sup class="versenum">36 </sup>“Teacher, which is the greatest commandment in the Law?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23910" class="text Matt-22-37"><sup class="versenum">37 </sup>Jesus replied: <span class="woj">Love the Lord your God with all your heart and with all your soul and with all your mind.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23910a" data-link="[&lt;a href=&quot;#fen-NIV-23910a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+22:34-40#fen-NIV-23910a">a</a>]</sup></span></span> <span id="en-NIV-23911" class="text Matt-22-38"><span class="woj"><sup class="versenum">38 </sup>This is the first and greatest commandment.</span></span> <span id="en-NIV-23912" class="text Matt-22-39"><span class="woj"><sup class="versenum">39 </sup>And the second is like it: Love your neighbor as yourself.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23912b" data-link="[&lt;a href=&quot;#fen-NIV-23912b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+22:34-40#fen-NIV-23912b">b</a>]</sup></span></span> <span id="en-NIV-23913" class="text Matt-22-40"><span class="woj"><sup class="versenum">40 </sup>All the Law and the Prophets hang on these two commandments.”</span></span></em></p>
<p><strong>Prayer 1</strong><br />
Beloved Father, how much did You want the Jewish people and the believers in Judaism who did not believe in Jesus to repent? Please let this hour be a time when we can feel deeply with our minds and bodies the course of Jesus, who was chased out, driven out and could not rest in peace. We cannot help but then deeply feel and take after the heart of Jesus. Isn&#8217;t it Your will that such a heart finds its place among us? Isn&#8217;t this also what we desire?</p>
<p>Please allow us in this hour to clearly understand that it is our responsibility to bear the burden of the course Jesus walked and of the words of the gospel that Jesus left behind. It is also our responsibility to fight with millions of satans and to return the glory of be victory to the Father. Just as Jesus had a desperate and earnest heart toward Heaven, allow us also to have the same heart toward Heaven.</p>
<p>Please allow us also to believe in Father&#8217;s words of truth and life and to step forward with audacity just like Jesus, who spoke with courage to the people who had gathered in their faith in God. Lead us to not boast about our present selves before Jesus and not to bring our hardships and situations of today before You. There are many here who fall prostrate before the Father, so please do not let them become shameful. Lead them to have the same attitude as Jesus and to represent the heart of the Father. If Your will is that someone appears before humankind without hesitation any time and any place on behalf of the will of Jesus Christ, then please, Father, remember these children who are prostrated here. Please visit each of them and give them direction.</p>
<p>Father, even when he was being opposed, Jesus spoke in defense of Heaven and was concerned only about the will of the Father. He fought to accomplish it. Yet has there been a time when we rebelled while we were living for the sake of the will of God and Jesus? We have often complained and grudged against the will of God.</p>
<p>Father, please forgive us. Now we will courageously proclaim the will of the Father before humanity so Father, please lift up those who have gathered here as the brave soldiers of Heaven and as the children of the Father. Please command us, advise us, seek us and put us in the position where You can be proud of us. Father, I earnestly hope and desire that You will love and guide us.</p>
<p>Please allow Your capable hands to be a part of this gathering from beginning to end, and allow us to have the heart of a meek child. Father, I pray that this can be the time when we can become the children who can be offered to the majestic Father as living glory of be sacrifices and be recreated into the original selves.</p>
<p>We do not need many words in this hour, so please allow the inspiring work of life to overwhelm the whole of our minds and bodies. We earnestly request that You can enlighten us with the words so that we can sing the Father&#8217;s happiness and testify to the Father&#8217;s glory. I pray in the name of the Lord. Amen.</p>
<p>The title of the speech that I want to reflect on with you is <em>&#8220;Like Jesus, Let Us Return the Glory of the Resurrection to God.&#8221;</em> I will speak briefly on this topic.</p>
<h3><strong>The ideal of creation and the purpose of the coming of Jesus</strong></h3>
<p>The Garden of Eden is the garden where God&#8217;s glory is revealed and all things live in happiness and offer a bow of delight to God. The purpose of God&#8217;s creation was to build that kind of garden. What is more, man should have unveiled on the earth the glory for which God hoped. It was the responsibility of our ancestors, Adam and Eve, to reveal the glory of God in substance, but because they fell, that will was not realized. The original garden in which God wanted to materialize the ideals of creation and live in joy could not be built due to the fall of man. Therefore, until now humanity has passed through the path of conflict, fighting with the forces of darkness and wishing for the glory of resurrection. This is the course, of the 6,000-year history.</p>
<p>As God passed through history until now, He has accomplished the glory of the resurrection of the whole and the unfinished work of the resurrection of the whole. The trillions of living things on the earth and the billions of heavenly soldiers and angels hope to usher in the day when they can sing the glory of God and offer bows of gratitude. God has sent countless saints to the earth to bring about such a day. After 4,000 years, Jesus, the only begotten son, was sent as the manifestation of the internal heart and external self of God and as the embodiment of glory. Since the person of God&#8217;s glory had come, people should have rejoiced and returned thanks. In other words, the chosen Israelite people and the Jewish sects raised up for the sake of the dispensation should have revealed the glory of Jesus in his place, but they failed to do that. You must know that as a result, Jesus had to leave behind the grief of sorrow and resentment. When we look at the words Jesus left behind, he did not speak them only for the sake of the people who did not believe in him. He was speaking to humanity. Jesus was determined to die for the sake of God. He knew that the path which lay ahead of him was a fate he could not avoid. Because Jesus knew that the fallen people could not fulfill the will of God at certain points of history even as they were pouring out their hearts and souls, he cried out boldly &#8220;You are to love God with all your heart, soul and strength.&#8221; You should not mistake these words to apply only to your own selves.</p>
<h3><strong>The words Jesus spoke</strong></h3>
<p>What is the meaning behind those words? Jesus felt to his bones this distressed heart of God, which saturated the 4,000 years of history with tears. Accordingly he felt that it was his responsibility to serve God. He felt that no matter when or which hour he had to represent the heart that could not be revealed in the 4,000 years of history he would be the champion who offered his life and fulfilled the dispensational will completely. This is the theme that he elucidated.</p>
<p>The glory of Heaven should have emerged as the glory of Jesus, and the glory of Jesus should have appeared as the glory of humanity. The glory of humanity should have reached down to every one of all things in the universe. However, you must understand that because Jesus and the people separated, the glory of resurrection and the glory of gratitude that Jesus brought about remain today as the hope of humanity</p>
<p>Jesus came as the glorious incarnation of God. Jesus was the victorious incarnation who offered all of his heart, soul and strength for the sake of God. History had never seen such a man before. You have to understand thats of within Jesus, the heart of God left a permanent impression. Furthermore, you have to understand that before Jesus did his utmost, it was God who gave all that He had. Before Jesus exerted all of his nature and character, God had done it first. Similarly it was Jesus who appeared as the incarnation of the gospel and the mediator.</p>
<p>Therefore, Jesus&#8217; words of truth were not felt standing on the sidelines. They penetrated through the ideology behind the creation of man; they were the glorious ideas that could enhance the value of the whole, and they were the words that could reveal the hidden heart of God. You must understand this.</p>
<p>You must not think that the words that God spoke were given because He loved only you. The reason that Jesus spoke those words was that he of wanted to materialize the will of God, who had toiled to raise him up. Just as God had done His utmost for Jesus, Jesus testified that men must exert their utmost for God, but these words could not be realized.</p>
<h3><strong>God has offered all of his heart, will and character in His pursuit</strong></h3>
<p>Accordingly now we must honor God with all of our heart, will and of character, and we must understand that it was God who first offered all of His heart, will and character to seek us.</p>
<p>What kind of heart did God possess toward men during the 4,000 years? He did not have the mind-set of living for His own sake. Although men deserved to die at once and suffer pain, God gave all of His heart to men and persevered through the 4,000 years of history. He walked the path of conflict in which He separated Satan from men. Similarly you should understand the nature of God who has persevered, fought, and loved for 4,000 years with an unchanging heart.</p>
<p>Jesus, who appeared before such a God, offered all that he had to build a nation of God centering on the Jewish people. Consequently the thirty years of his life was the time of sacrifice when he offered all of his heart. During the thirty-year course, he did not try to distinguish himself before the people, but in silence he tried to experience the heart of God, who had persevered for 4,000 years.</p>
<p>By doing so, Jesus unraveled the mysterious facts surrounding Satan in the 4,000-year course of history and he revealed it after attaining proofs of it in the spirit world. Furthermore, in the thirty years of his life, he bore the responsibility to reveal the secret of the universe hidden deep inside the 4,000-year history, build the substantial foundation for the internal perseverance of God, and build the external substantial foundation. Therefore, the more he found himself in difficult circumstances, Jesus felt the urge to be self-seeking, but he could not even think about doing it. You must understand that Jesus felt the heart of God, who had persevered to find one man, Jesus, during the 4,000 years of history. To emerge as the substantial being who could liberate God from that history, Jesus spent thirty years of his life preparing himself.</p>
<p>Until this hour, God had not made excuses for His situation to any one. He had not complained about it to humanity or to the enemy Satan. Because Jesus was trying to understand everything about the heart of God, even when he was lonely, he did not complain to anyone and persevered. You have toe follow the example of such a lifestyle.</p>
<p>Nonetheless, God persevered for the sake of Jesus, and Jesus did not persevere through it for himself but for the Father. In other words, Jesus felt that God had walked the path of torment to find him, so he persevered not for himself, but for the sake of God.</p>
<p>Similarly, because Jesus forsook himself for thirty years of his life and persisted for the sake of God, he exceeded Satan in perseverance. Satan had been struggling desperately to destroy the path that God had persisted on for 4,000 years. However, Jesus knew that God&#8217;s perseverance surpassed that of Satan, so he believed in the Father and persisted with patience just like Him. Thus, he could become the incarnation of patience and persistence. Similarly Jesus himself stood on the foundation of the heart of God who had persevered for 4,000 years, and using that as the launching pad for victory, he stood above it and fought with Satan. Yet even if he won with his patience, if he could not lay a substantial foundation of victory, the heart of God who had persevered for 4,000 years, would be destroyed.</p>
<h3><strong>Jesus defeated Satan with the heart of patience</strong></h3>
<p>During the thirty years of his life, because Jesus displayed patience centering on God&#8217;s will even when he was in an unbearable environment, because he could abide by the will of God and persist even when Satan could endure no longer, Jesus was lifted up as the symbol of patience and became the hero who could fight with Satan.</p>
<p>God walked through the 4,000 years of bloody history for the sake of finding one man, Jesus. What is more, even while men struggle vehemently to attain the things they greedily desire, God has walked the historical course of conflict for the sake of men. Similarly, God fought the satan in us for 4,000 years but He did not fight for His own sake. Nonetheless, Satan was fighting for his own glory. Moreover, until now, he is fighting with God centering on himself. Yet God never fought for himself. The purpose of God&#8217;s fight was for the sake of pitiful humanity and it was to find one man, Jesus, through the chosen people.</p>
<p>What kind of man did Jesus appear as? He appeared as the materialization and personification of the victory that God had won over Satan in his fight during the 4,000 years. Likewise, Jesus came to the earth as the champion of the conflict who stood in place of God. The three-year course of his ministry was the course in which he acted upon his responsibility to inherit the will of God, which had established the internal foundation of victory and to secure the external foundation of victory on the earth. in this three-year course, Satan fought with Jesus for his personal victory, but because he was defeated, he mobilized the people and waged another fight.</p>
<p>Jesus never fought centering on himself, no matter how much difficulty he faced in the battle. Jesus said that he observed the deeds of Father and acted accordingly. He walked the three-year course of public ministry as the incarnation of conflict representing God and as the substantial representative who unveiled the internal heart of God. Jesus never engaged in a fight to try to vindicate himself. Just as God could not speak in defense of Himself, Jesus did not try to vindicate himself when he was fighting with Satan before humankind. He served God with an unchanging heart of gratitude for God&#8217;s tribulations during the 4,000 years suffered for his sake.</p>
<p>Jesus, who realized that the will of God manifested itself as the course of conflict in the dispensation, carried on the fight in order to realize externally the will for the whole that God had set internally. In this fight, Satan was fighting for himself, but Jesus was fighting for the sake of Heaven. This is where the foundation of victory was laid.</p>
<p>What is the reason that Satan was defeated? It is because he fought for his own sake. However, the purpose of Jesus&#8217; fight was for Heaven. What is more, because Jesus fought with the resolution that since God remained Satan was unchanging, he would not be changed until the end, he could lay the foundation of victory. Moreover, just as God poured out all of His mind, will and character, Jesus showed the same example before humanity.</p>
<h3><strong>Jesus is the substantial representative of God</strong></h3>
<p>In this way Jesus represented the internal character of God and by persevering through all difficulties and sorrows he could inherit the heart of God, whom he loved. Therefore, no matter where he was or in what position he found himself, Jesus fought with Satan as the substantial representative of God&#8217;s will and love.</p>
<p>During his fight, Jesus learned that when Satan attacked centering on a selfish purpose, its influence reached not only to Jesus himself but also to God. Therefore, no matter what kind of difficulty he was facing, just as God had persevered for him and humanity and just as God had fought with Satan in the course of the dispensation, Jesus persevered through the thirty years of his life by himself and fought on. Similarly until the final moment when he took the last breath on the cross, Jesus&#8217; life was lived as the embodiment of God, putting into practice and revealing God&#8217;s love. However, his life course, the course in which he put God&#8217;s love into practice, was a course riddled with ordeals in which he had to constantly fight with Satan every step of the way.</p>
<p>Why did God give Jesus to Satan to be hung on the cross? This is not because God did not love Jesus. Do you know how much God loved Jesus? You have to understand that God&#8217;s highest love is received when one surpasses the point of death. Therefore, in order for you to receive the love of Jesus who comes in place of God, you have to have the mind-set to even cross the pass of death. At that moment, Satan will surely submit. For 4,000 years, God looked down on the world with sorrow and worry by Himself, but when Jesus stood on the earth, centering on him, a new battle with Satan unfolded. Jesus forgot everything about himself and fought on for the sake of God. Not only that, because he did not have any selfish desire even when he faced death, he could manifest the power of resurrection. Today we must also pass through the same course of victory as Jesus.</p>
<p>Jesus offered all that he had to possess the eternal life of God and exhibit the glory of God. Moreover, he offered himself as a sacrifice for the sake of wicked humankind. We have to understand the love of Jesus who raised his hands and prayed for the sake of humanity to the point that he even forgot the opposition of Satan.</p>
<p>Because Jesus unveiled a love that cannot be found in the satanic world, Satan had to submit to that love. Satan wanted to make a claim for himself, but through Jesus, he felt ashamed of himself. Therefore, as a result of the crucifixion, not only did God feel mournful, but also men began to feel doleful, and Satan also felt sorrowful. You have to understand this. It was not just God and men that mourned over the death of Jesus. Satan also mourned over the death of the love of Jesus. Therefore, the greater the remorse that Satan feels, the greater the fruit that the love of Jesus will bear.</p>
<p>Based on the victory of the cross that testified to his love, Jesus could forge an immutable link with God who had been carrying on the dispensation for 4,000 years and who became the embodiment of unchanging victory and love. Because Jesus became one with God representing heaven, earth and men, since God remains unchanging, he also will not change.</p>
<p>God had tried for 4,000 years to manifest the glory, but that will was not realized until he found one man, Jesus, through whom He tried to realize it. Therefore, Jesus tried to manifest the will on the earth through men. Although Jesus was supposed to emerge as the substantial proof of the 4,000-year dispensation of God, because of the crucifixion, that will was trampled upon by Satan. Nonetheless, as the eternal incarnation of God, Jesus demonstrated the glory of God, who had been carrying on the dispensation for 4,000 years. That is none other than the glory of the resurrection. You must understand this.</p>
<h3><strong>Jesus manifested the glory of the resurrection</strong></h3>
<p>Jesus&#8217; resurrection was the first representation of the glory of Heaven and the glory of victory won in the fight with Satan in the 4,000-year history. Because Jesus had demonstrated the standard of victory on the spiritual and substantial level, God raised the deceased Jesus to unfold another dispensation. Through the crucifixion, Jesus took on the responsibility for the 4,000-year history of the dispensation and the responsibility of the ancestors. Representing the glory of Heaven, he ascended to heaven. This is what the resurrection and ascension are about. Similarly, Jesus came with the purpose to evince in substance the internal glory of God on the earth. In other words, he came to demonstrate fully the glory of God. The complete glory must for the combine the internal and external glory. This is the mission that Jesus came to fulfill. In order for the glory of God to be fully displayed, the internal glory of God endowed in Jesus should have become the glory of the earth through the unity of the Jewish people with Jesus. Nevertheless, Jesus, who should have been in charge of the 4,000-year dispensational history of God, and who should have realized the glory of God on the earth, had to die on the cross due to the unfaithfulness of the Jewish people. As a result, the internal glory of God became spiritual glory only. Therefore, Jesus ascended after having to realized incomplete glory.</p>
<p>What is the ground upon which Jesus, who came as the representative of men, creation and the love of Heaven, must establish victory? It is none other than the earth.</p>
<h3><strong>The Holy Spirit took on the responsibility for the fight on the Earth</strong></h3>
<p>Who is then to be responsible for the course of conflict that remains on the earth? While Jesus inherits the internal fight of God in the spirit world, we must cooperate with the Holy Spirit on the earth and join our efforts to win the victory in the fight of love, the purpose of which is to bring the internal fight and dispensation to completion in substance.</p>
<p>This fight will not just be engaged in spiritually. It has to be fought to physically and spiritually. Moreover, you must understand that the fate lies with us to bring victory in the battle. In other words, it is our destiny to inherit the internal fight of God that Jesus took on in the spirit world and the fight on the earth that he carried on by sacrificing his thirty-year life for the sake of saving humanity. Therefore, you must now pray and cry out, &#8220;Father! Jesus! Holy Spirit, please give me strength,&#8221; and give all that you have for the realization of the historical hope of Heaven on earth.</p>
<p>Jesus came to the earth as the culmination of the 4,000 years of work and suffering, and as the first perfected person for which God had wished. However, there remains before Jesus the course that was not completed in the thirty years of his life. Moreover there remains deep remorse for not having completely manifested the glory of God even during the fight in the three-year course of public ministry. His heart of love that shed blood on the cross is left behind on earth.</p>
<p>Consequently when we put ourselves before the Father and make criticisms about ourselves, what should we do? Jesus fought with Satan to fulfill the will of God Even after Jesus passed away, he labored arduously with the Holy Spirit for 2,000 years. You must follow the example of Jesus. What is more, you must remember that when he went forward before God and engaged in the victorious battle, it was not a matter of one day but of the whole thirty years of his life. You must fathom the heart of the Father, who has carried on the dispensation for 6,000 years, and the heart of Jesus and the Holy Spirit, who were desperately trying to bring the will to pass.</p>
<p>If in your own course of perseverance, you cannot pour out all of your heart and persist, then because of you, the will of God who has mourned for 6,000 years, the will of Jesus for which he toiled his whole life, and the will of the Holy Spirit who has worked strenuously for 2,000 years since the death of Jesus, will all be greatly hindered. You must understand this clearly. Therefore, you must carry on the fight for the sake of this will.</p>
<h3><strong>Our mission</strong></h3>
<p>Jesus was severely opposed by enemies. When he was chased out of one village, he went to another. When he was persecuted there, he sought refuge in another place. Even in the midst of that, he never acted in defense of himself. He came with the life of the whole of Heaven, but he could not manifest it. In this way he was persisting in a silent battle; even on the hill of the crucifixion, he completely forgot himself and fought with Satan for the sake of testifying to God&#8217;s will and love.</p>
<p>Therefore, if you have a heart of love and strive to raise Jesus up, then it will not bring sadness to Jesus but will make him happy. You must consider this and act on behalf of the thirty years of the grievous life of Jesus and represent the heart of God, who has waited patiently until today. You must represent the heart of the prophets who built an altar and worked through the people to fulfill the will of God, and the heart of Jesus who loved humanity. By doing so, you must do the same work as Jesus, who did not elevate or love himself and who made Satan sorrowful by setting the standard of victory. You must bring all the conflicts of the 6,000 years to a conclusion.</p>
<p>You must win victory in all kinds of courses of conflict through perseverance. Moreover, you must be victorious in the fight to testify to the will of Heaven. You must act on behalf of Jesus Christ. You must possess the victorious heart of the will, glory and love behind God&#8217;s perseverance of 4,000 years. Just as Jesus completely forgot about himself and toiled only for the sake of realizing the will of Heaven, you must forget yourself and bear fruit in the glory of the whole that God desires. You must bear the fruit of victory with your mind and body.</p>
<p>Accordingly, you can sing a song of the glory of Jesus in your heart, and sing a song of the glory of the Holy Spirit in your body. In our hearts, we must represent the glory of the resurrection of Jesus and in our bodies, we must represent the glory of the resurrection through the Holy Spirit. This is the only way that the Holy Spirit can enter the glorious position of resurrection. Although Jesus already commands the glory of resurrection and ascension, the Holy Spirit does not yet possess the glory. Until today there has not appeared one substantial being who spiritually and physically represents the glory of God who has been guiding the dispensation for 6,000 years. Today there must emerge someone who can represent the glory of the victory won by the love of Jesus; someone who can stand in the position of glory established by the resurrection of the Holy Spirit. You must realize that unless you emerge as the substantial embodiment like Jesus, who fought with his mind and body to fulfill God&#8217;s dispensational will of the 4,000 years, the will of God cannot be gloriously manifested.</p>
<p>What are we to do from now on? You have to understand that the Holy Spirit, who possesses the utmost will, heart and character, has come to the earth. Therefore, unless a substantial representative of Jesus Christ, who acts on behalf of God&#8217;s will, and a substantial representative of the Holy Spirit appear on the earth, God&#8217;s will cannot be fulfilled. You must understand this. What is more, you must understand that you bear the responsibility even to liberate the Holy Spirit from this earth. If the will is not accomplished today in the last days, then the purpose of God&#8217;s 6,000-year dispensation cannot be reached. Accordingly you must reap the victory in all the battles fought for the sake of bringing to pass the will of God, Jesus and the Holy Spirit. You must go over that course of conflict and perseverance to bring to full light the glory of the Trinity.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html" title="Permalink to Like Jesus, Let Us Return the Glory of the Resurrection to God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html" rel="prev"><span class="meta-nav">&laquo;</span> Jesus Christ Who Went and Came and Who Will Come and Go For The Sake of Heaven and Earth</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html" rel="next">Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,237 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let us Become People Who Pay Back our Debts &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-737 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-737" class="post-737 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let us Become People Who Pay Back our Debts</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:17:57+01:00"> <a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:17:57+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let us Become People<br />
Who Pay Back our Debts</h3>
<h3 style="text-align: center;">Former Church Headquarters<br />
June 10, 1956</p>
<p>Matthew 18:21-35</h3>
<p style="text-align: center;"><em><span class="text Matt-18-21"><sup class="versenum">21 </sup>Then Peter came to Jesus and asked, “Lord, how many times shall I forgive my brother or sister who sins against me? Up to seven times?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23750" class="text Matt-18-22"><sup class="versenum">22 </sup>Jesus answered, <span class="woj">“I tell you, not seven times, but seventy-seven times.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23750a" data-link="[&lt;a href=&quot;#fen-NIV-23750a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+18:21-35#fen-NIV-23750a">a</a>]</sup></span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23751" class="text Matt-18-23"><span class="woj"><sup class="versenum">23 </sup>“Therefore, the kingdom of heaven is like a king who wanted to settle accountswith his servants.</span></span> <span id="en-NIV-23752" class="text Matt-18-24"><span class="woj"><sup class="versenum">24 </sup>As he began the settlement, a man who owed him ten thousand bags of gold<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23752b" data-link="[&lt;a href=&quot;#fen-NIV-23752b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+18:21-35#fen-NIV-23752b">b</a>]</sup> was brought to him.</span></span> <span id="en-NIV-23753" class="text Matt-18-25"><span class="woj"><sup class="versenum">25 </sup>Since he was not able to pay, the master ordered that he and his wife and his children and all that he had be sold to repay the debt.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23754" class="text Matt-18-26"><span class="woj"><sup class="versenum">26 </sup>“At this the servant fell on his knees before him. Be patient with me, he begged, and I will pay back everything.</span></span> <span id="en-NIV-23755" class="text Matt-18-27"><span class="woj"><sup class="versenum">27 </sup>The servants master took pity on him, canceled the debt and let him go.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23756" class="text Matt-18-28"><span class="woj"><sup class="versenum">28 </sup>“But when that servant went out, he found one of his fellow servants who owed him a hundred silver coins.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23756c" data-link="[&lt;a href=&quot;#fen-NIV-23756c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+18:21-35#fen-NIV-23756c">c</a>]</sup> He grabbed him and began to choke him. Pay back what you owe me! he demanded.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23757" class="text Matt-18-29"><span class="woj"><sup class="versenum">29 </sup>“His fellow servant fell to his knees and begged him, Be patient with me, and I will pay it back.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23758" class="text Matt-18-30"><span class="woj"><sup class="versenum">30 </sup>“But he refused. Instead, he went off and had the man thrown into prison until he could pay the debt.</span></span> <span id="en-NIV-23759" class="text Matt-18-31"><span class="woj"><sup class="versenum">31 </sup>When the other servants saw what had happened, they were outraged and went and told their master everything that had happened.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23760" class="text Matt-18-32"><span class="woj"><sup class="versenum">32 </sup>“Then the master called the servant in. You wicked servant, he said, I canceled all that debt of yours because you begged me to.</span></span> <span id="en-NIV-23761" class="text Matt-18-33"><span class="woj"><sup class="versenum">33 </sup>Shouldnt you have had mercy on your fellow servant just as I had on you?</span></span> <span id="en-NIV-23762" class="text Matt-18-34"><span class="woj"><sup class="versenum">34 </sup>In anger his master handed him over to the jailers to be tortured, until he should pay back all he owed.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23763" class="text Matt-18-35"><span class="woj"><sup class="versenum">35 </sup>“This is how my heavenly Father will treat each of you unless you forgive your brother or sister from your heart.”</span></span></em></p>
<h3 style="text-align: center;">
Prayer</h3>
<blockquote><p>God of creation! Your beauty is manifested in all the created beings, and everywhere Your hands have touched teems with mysterious and radiant beauty. Please allow us to fathom the distressed heart of the Father who, even today, is ceaselessly trying to find the beauty in us which is the purpose of the creation of men. Allow us to return beauty to You for Your love.</p>
<p>Please allow us to come forward with the original heart at the time of the creation. Please allow our body to emanate beauty in its sinless form right after its creation. Allow our mind and body to attain the original perfection which represents the heart and love of God, so that when You move, we move and when You stop, we stop.</p>
<p>We have come to realize that this is the model that You have been working on throughout the history of the dispensation of restoration. What we have to find is our mind and what we have to complete is our body, so please allow us to find and complete them. Raise us up as people who can offer bows in front of the original beauty of the Father. Please allow us to offer songs of gratitude and glory before the Father. Please allow us to understand to our bones that this is the purpose for which You have worked so hard.</p>
<p>Because we have inherited the fallen lineage, we have abandoned Heaven and have led lives centering on ourselves. Abandoning the Heavenly way, we became selfish people, so please allow us to turn back and be guided by the original heart connected to Heaven. Allow our original mind to inspire our body and find our original self that Heaven can claim.</p>
<p>That being done, please allow us to remove the grievances that all things hold against men and eradicate all the lamentations of heaven and earth. Please raise us up as children who can humbly bow before You and receive Your love.</p>
<p>Please be in charge of all the children who have gathered here. I know that they have acquired many wounds during their fight with the world during the week. Although their minds and hearts want to believe the will of Father completely, if there are any who have succumbed to Satan&#8217;s temptations, please forgive them.</p>
<p>Please heal the wounds they have received and embrace them with Your compassionate love. Father, I pray and wish sincerely that You may pour down the oil of love to make us complete.</p>
<p>Even though we might not have prepared the gifts that we should offer to You, please allow this hour to be an occasion when we can at least put before you our meek and humble hearts and repent, unveiling all the sins that have permeated through our minds and hearts. Allow this to be a time when we can lay bare our hearts before You. Please, Father, in this hour let them become absorbed naturally by the operating power of Your love. Let us feel unity and harmony with You in our minds and bodies.</p>
<p>Father, You who have worked so strenuously to bring up those who have gathered here, You have walked side by side with us on the thorny path. You have been a friend to us when we were lonely. You have been our shield when we were fighting. Yet we know that this was not because we were worthy, but because the great light of Your hidden love and comfort has been with us, so please take charge of our lives today.</p>
<p>Father, please manifest the will You desire as love in this hour, and allow us the blessing to represent the will You are advocating and to bow and sing praises to You. My father, our members everywhere have bowed down facing this one place. Building the altar of obeisance, they are praying before Heaven. Please appear before them with the same grace and love. Because of this, please allow them to remain in the last days and complete their missions in the places to which they are assigned, and guide everyone to adore the center of harmony.</p>
<p>Please lead us to reveal before the thirty million people a new will and give them a stimulating new impetus so that when others walk toward evil, we lead to the path of goodness. My Father, I sincerely wish that You reveal the loving hands and the miracles of the love of the Father.</p>
<p>Please do not forsake even one of the members that You have called. Embrace them in Your bosom of love so that they can feel the grace of the leading works of the whole. We entrust to You the remaining hour, so please govern over us. I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The topic I want to speak about is <em>&#8220;Let Us Become People Who Can Pay Back Our Debt.&#8221;</em> I will speak briefly on this topic.</p>
<h3>Men Owe the Debt of Sin and Toil</h3>
<p>Originally, when God created the universe, He did not lay down the principle of owing debt. The purpose of God&#8217;s creation is to build a relationship of oneness with men though they (God and men) have the form of two entities. They are to give and receive, and whatever belongs to one belongs to the other.</p>
<p>Because Adam and Eve, who were created for this purpose, did not fulfill it, from that time to this, countless created beings have come to owe infinite debt to Heaven. Jesus Christ was the one God sent to open the way for men to pay back the debt incurred by the fall. As we passed through the course of history based on Jesus, we have been paying back the debt. Moreover, through this kind of lifestyle, we have been seeking eternal life.</p>
<p>Although you might think that you have qualifications you can present before the universe, you must understand that while you do not realize it, you have the debt of sins that you have inherited in your lineage through the thousands of years of history. Moreover, besides that, we possess the debt of God&#8217;s suffering and toil accumulated during His dispensation for men. Besides that, we have the debt of toil collected through the restoration work of the countless prophets and sages or Heavenly soldiers and angels.</p>
<p>When we reflect on this, we realize that we have no way to pay back the debt we owe to the universe today and have no way to be dignified. Nonetheless, the one that came to represent us and restore our dignity before the universe is Jesus Christ.</p>
<h3>The Debt of Eternal Life, the Debt of Life,<br />
the Debt of Love, and the Debt of Karma</h3>
<p>Since the time of our birth, we should have possessed eternal love centering on God. When we were born through our parents, we should have already represented the love of God. Moreover, centering on us as a couple, we should have represented the love of parents. We should have also built a relationship of love with all things.</p>
<p>Because we could not become such people, men owe a debt of eternal life to God, and we owe the debt of life to our parents. We owe the debt of love to couples, and we owe the debt of karma to the creation.</p>
<p>After God created the universe and all things, the reason He elevated Adam and Eve to be the center of all things was to give eternal responsibility to men. Consequently, we bear the responsibility to give eternal love. In other words, because Adam and Eve did not follow the will of God and were dragged into the bosom of Satan, the debt for the life centering on the eternal love of God remains unpaid in each of us today.</p>
<p>Moreover, after we have been born through our parents, we owe a debt to them because they have loved and taken care of us in their lives. We also owe a debt for the love of God, which must be paid back by living the life of a couple. To all things, we owe a debt for the love that nature has given to us. When you reflect on this, you must understand that we today owe a debt to God for eternal love, to our parents for life, to our couples for the love centering on life, and to all things we owe the debt of the relationship of love which we have incurred in our daily life.</p>
<p>As the center of the creation, you must be able to display dignity. You must realize that men owe eternal debt to God, the debt of their lives to their parents, the debt of love to couples, and the debt of life to the creation. The creation demands that men pay back all of this debt.</p>
<h3>Jesus Came to Pay Back the Debt on Behalf of Humankind</h3>
<p>However, based solely on the ability of men, that debt cannot be paid back or canceled. Thus, Jesus was the central figure who would make it possible for such people to go before Heaven. In other words, he would allow them to represent the eternal parents and stand before Heaven, represent the eternal couples and stand before Heaven, and represent the eternal love of the creation and stand before Heaven.</p>
<p>Because Jesus Christ came, the eternal love of God was manifested. The accomplishments of love that God wanted from men were revealed. Jesus was the one who came as the embodiment of love representing the eternal parents. Moreover, Jesus also came as the fruit of love representing the eternal couples. It was also Jesus who built an eternal relationship of love with all things. Accordingly, in the one person of Jesus, the 4,000 years of long history is connected. Even the eternal future is connected to him.</p>
<p>Although Jesus came to pay back the debt that the fall of man had incurred to the eternal God, the eternal True Parents, and the creation of goodness that was not infiltrated by evil, he had to leave the earth before he could pay everything back. Therefore, we must pay back the remaining portion.</p>
<p>Centering on Jesus, we must build a relationship with the creation, the couples, the parents and with the eternal God. We must realize that unless we do that, the purpose of the coming of Jesus, who came for our sake, will again stagnate in the state of incompletion.</p>
<p>When we closely observe the course of history, the period until the coming of Jesus was the period of worshipping nature. It was the time when men believed in all things in place of God and stayed close to nature in place of God. Next, people focused on their children more than on anything else.</p>
<p>After passing through the time of worshipping all things and the period of worshipping the children, we entered the period of worshipping the bride and bridegroom. Now even that period of worshipping the bride and bridegroom is also passing by.</p>
<p>The period of worshipping the parents is the period that lies ahead of us. The time will certainly come when we can elevate the parents more completely. Therefore, our bodies must create a relationship with God. We ourselves must join in union with God and, while observing all the mysterious natural phenomena, we must live a life of direct intuition in which we stay within the bounds of the relationship of life with God.</p>
<p>The gleaming sunlight and the blowing wind, we must build a relationship with all these creations, which represent the pulse of the eternal life of God. Although we have not been able to feel anything until now, when we center ourselves on Jesus, we can feel new things and build a new relationship of heart with all things. Moreover, we can build a relationship centering on God&#8217;s principles of possession.</p>
<p>After that, you can rejoice with the creation and simultaneously be dragged into the realm of God&#8217;s love. You will lead a life in which you can attract that kind of love to you at will. When you enter the realm of such profound grace and stand before Heaven, you can whisper with any part of the creation.</p>
<p>There will not be any existing created being, such as the sound of the wind, that does not have a relationship with men. Therefore, we can conclude that all things of the creation, created for the sake of men, exist to manifest their true value through the relationship with and by being recognized before men.</p>
<h3>To Pay the Debt Owed to All Things</h3>
<p>Nonetheless, because we dwell in the fallen realm today, we do not know how to recognize the value of all things. Therefore, you must realize that when you feel new love coming from God, all things can also feel new life. You should lead a life in which you can brag and set the highest standard of love. Even if you are alone, you must be able to sing of the boundless love of God. If you become this kind of person, your heart will never feel confined.</p>
<p>When this happens, then all things can be in harmony because of us, so we can feel at peace no matter where we are. This cannot be blocked by any force. God set this one standard as the purpose of creation and chose men as His representatives who would fulfill the purpose. He sanctioned men to have dominion over all things, but humankind today cannot command dignity before all things. Rather, today we stand in a position of unspeakable grief before all things.</p>
<p>Therefore, just like the words written in the eighth chapter of the epistle to the Romans, what all things wish for is the appearance of the sons of God. The reason is that all things should have become connected to God through the mediator, men, who represent the love of God, but due to the corruption and the fall of men, the essence of their ideal has been demolished. Consequently, even today, 2,000 years after the coming of Jesus, the creation longs for the fulfillment of that one purpose through us.</p>
<p>When we think about this, we can understand that while we are not aware of it, we have incurred a debt to the creation. We owe a debt for the hope it holds in us.</p>
<p>We ourselves must obliterate the debt. While we must become qualified to attain oneness with the creation, we must also become the children of God whom all things can love and to whom all things can give. Furthermore, we must become the children of God and receive the love of God.</p>
<h3>One Who is Qualified to Pay the Debt of Love</h3>
<p>Jesus and the Holy Spirit are giving new birth to you. Having obtained the elements of Jesus and the Holy Spirit, and after passing through the position of the children, men are heading toward the position of bride and bridegroom as the goal. Today we are inspired and moved by the Holy Spirit by believing in Jesus. Relying on that power, we are moving forward.</p>
<p>What is it we must accomplish by ourselves? Even if the grace of the inspiration of Jesus is not given and the Holy Spirit does not make a deep impression, we ourselves must perfect ourselves as the bride as if we have received a deep inspiration and impression.</p>
<p>This is not being manifested in the Christianity of today. Today we also feel the love in the position of the bride only when the Holy Spirit is at work. Since we have grown up with the aid of the works of the Holy Spirit, even if we do not receive the grace from the Holy Spirit, we should learn to long for Jesus as the bridegroom. If you can only accomplish it with the continued aid of the Holy Spirit, then there is no way that you can pay back the debt for the love of husband and wife on the earth.</p>
<p>Therefore, even if we do not receive inspiration from the Holy Spirit, we must become the bride who can serve Jesus as the bridegroom. This is the only way that we can become the couple who is established in the original position before the universe and someone who is qualified to pay back the debt of love.</p>
<p>What would fallen men do after they are restored to the position of bride and bridegroom, after they pass through the positions of all things and the children through the dispensation of restoration? Because we could not be linked with the love of the True Parents, who took responsibility for our life and loved us, we must indemnify the debt for the love of the True Parents, who were elevated based on God&#8217;s will of creation. You must recompense spiritually and physically for the debt of universal love which the True Parents have displayed in their concern for our lives.</p>
<p>In other words, after we are restored as the bride and bridegroom, after passing through the positions of all things and children through Jesus Christ, we must find the True Parents. Nonetheless, the people of today&#8217;s world do not realize this. They must find the True Parents who have not fallen for the sake of the fallen parents, but they do not know when these True Parents will appear. The True Parents appear at the time of the Second Advent.</p>
<h3>The Time When We Must Pay Our Debt to the True Parents</h3>
<p>In the Christian churches, they talk about the Marriage of the Lamb, centering on the ideology of the bride and bridegroom. What kind of people are the bride and bridegroom, centering upon whom the Marriage of the Lamb is conducted? They are the people who have become connected with the True Parents through love.</p>
<p>Jesus Christ came to the earth on behalf of the universe and humanity. To pay indemnity for the debt that humanity bears, he has been at work until now. For this reason, you must pass through the position of all things, the positions of the children and the bride and bridegroom, and, centering on Jesus, usher in the day when you can serve the True Parents. Only after the mission to serve the True Parents is completed in this way can the love of the True Parents, representing the eternal God, emerge on the earth. At such time, the mission of Jesus comes to its conclusion.</p>
<p>Jesus wished that the purpose of the dispensation of restoration in the spirit world could be materialized in substance amid all things on the earth. Therefore, if the followers today who believe in the resurrected Jesus cannot pay back the debt of the bride and bridegroom and realize the purpose of the True Parents and usher in the day when they can offer the prayer of restoration on behalf of humanity, then there is no way that the debt of eternal love to God can be paid off.</p>
<p>Therefore, Jesus also stands in the position of someone who has owed a debt for 2,000 years. Because he could not complete the will of True Parents, he still has the responsibility to pay back that debt on behalf of all humanity. However, that responsibility does not end as a spiritual responsibility. When the position of Adam and Eve before the fall is restored, and, centering on the eternal life of God, we form the family that can represent the True Parents amid all things and sing and bow before the love of the eternal God, only then can the purpose of the 2,000-year course of the history of Jesus be concluded.</p>
<p>Longing for the fulfillment of this one purpose, Jesus has been praying earnestly before God for 2,000 years. By doing so, he tried to establish the highest standard with which to claim back the original world of God, who created the universe and all things.</p>
<p>If the fall had not taken place, the love of True Parents would have become the pivotal point around which the husband and wife, children and all things could build a relationship. However, because men fell, God is carrying on the dispensation in which He must pull it up backwards. After all things, children, and husband and wife become connected, the eternal world can come. The so called eternal world that the Christians refer to is this world in which all of the creation can respond to the words of the True Parents and appear before God centering on Jesus, who came as the True Parents, centering on the standard of the bride and bridegroom.</p>
<p>We who dwell in the period of the Second Advent must now be determined to take charge of and assume the burden of all of the work of Jesus done in the last 2,000 years. Only with such determination can you finally stand tall as the children who have paid back the debt of love owed to the True Parents. Moreover, you can become the central figure who can govern over the creation in God&#8217;s place. If that happens, the will that God intended after creating Adam and Eve and giving the blessing to them will be fulfilled completely on account of you.</p>
<p>What is more, when you pay back the debt that you owe to True Parents, the true couple and the true creation centering on the love of God and then go before God, your mind and body will naturally go close to God. You must feel the impulse to naturally offer a bow of gratitude to God. You act before you think and realize the purpose before you make a demand.</p>
<h3>To Pay Back the Debt to God</h3>
<p>What do we need to do to attain that purpose? The fortune of heaven and earth moves from heaven to parents, from parents to couples, and from couples to all things. Accordingly, you must become connected to all these stages before stepping forward. Only when you become that kind of person can you stand before God and call out, &#8220;Father!&#8221; The world of direct dominion stands in such a position. We must move forward until we can appear in such a position and relate with God.</p>
<p>To do this, we must inherit the conflict that Jesus has conducted in the spirit world and the fight that the Holy Spirit has carried out on the earth to pay back the debt that we owe until the present. This is the way that we can have a relationship with the creation from the position of substituting for the True Parents. We can fight and win over Satan on the earth.</p>
<p>When you can do this, you can liberate the grievous heart of God, who has shown a deep concern for fallen humanity while He was guiding the dispensation of restoration. At the same time, you can win the recognition of Satan: &#8220;This person deserves to receive the love of God.&#8221; You must understand that God&#8217;s love will be present through the appearance of such a created being.</p>
<p>Thus, we have this type of grave mission. You must pay back the debt through your life of faith, in all the surrounding environments that are reachable to you. You have to pay it back. Accordingly, you must reflect whether you are living a life in which you are paying back the debt.</p>
<p>When you live a life of faith today, you are joined in a relationship with the debt to eternal God, parents, couples and all things. Because you are aligned with the time when all of this debt must be indemnified, you have to think about what kind of heart you should possess.</p>
<p>Right after we fell, we were people who could not stand before God and could not relate with God. If God wanted to hold grudges against us, His grudges would be limitless. If He wanted to lament and despise humankind, there would be no end. As you can see, although we have a debt from the fall, we also bear the debt of resentment and enmity incurred during history.</p>
<h3>What Is the Reason We Must Endure and Forbear?</h3>
<p>What is the reason that we must endure today? If we cannot forbear, then we cannot pay back the debt we owe and cannot resolve the grievances inside the bosom of Heaven.</p>
<p>Because the fortune of heaven and earth moves along with the dispensation of God, the satanic world will be judged if you play when God plays and are on God&#8217;s side as you share the bitterness and grievance of God. This is the reason Heaven teaches us to restrain our anger and persevere in our life of faith.</p>
<p>Satan will invade if we become out of step with that and create a gap in the dispensation of God. Therefore, we who have the faith must unconditionally sacrifice and obey, following only the internal aspects of love.</p>
<p>We have led a shameful life as the ones who have shattered the universal laws of God and the ones who owe a debt to the creation. We have caused much concern and trouble for Heaven. Therefore, the husband and wife who are leading a life of faith must be able to act on behalf of the Lord. Furthermore, we must build the relationship to serve (the Lord) as the parents on behalf of God, Jesus and the earth.</p>
<p>You must forge this relationship horizontally and three-dimensionally, in which Heaven reciprocates with the True Parents, the true couple and the true creation. Having accomplished this, you can say to God, &#8220;I have finally won the victory. Father! I have offered my life to eradicate all the relationships with Satan in which men had worshipped Satan in place of God and fell into the temptations of Satan. What is more, I am a perfected child who has paid back all the debt to the universe and brought Satan to his knees.&#8221; You must understand that only when this is done, can we be dignified before heaven and the creation as ones who have paid back the debt to the universe.</p>
<h3>Prayer</h3>
<blockquote><p>Father! We have failed to realize even when we were living in the fallen world that we have become indebted to the creation and to each other as a couple. We did not realize when we were serving our parents that we are in debt, and that we owe an enormous debt even to the eternal God.</p>
<p>When we look at our situation in the fallen world, we have been debtors who deserve to die, and we have owed a debt to the creation and to Jesus Christ, who has founded the ideology of the bride and bridegroom. Although we should have paid back the debt on behalf of the eternal God, we were not even concerned about paying back the debt. Instead, we have despised the earth, the creation and Heaven. There is nothing in us that is forgivable.</p>
<p>To save humankind who is like this, Jesus fought on, not even being afraid to face death, and he passed away on the cross. As a result, the fight to pay back the debt owed to the universe remains incomplete, and the mission of judgment lies ahead of us.</p>
<p>Father, please help us cross the pass of judgment and wipe out all the debt that we owe. Please lead us to understand that we can go before You only after canceling all of our debts.</p>
<p>Please allow us to prevent the accusations of Satan by paying back our debt to the True Parents, to true couples, to true creation, and lead us to pay back the debt of life as You want us to. Father, we wish and desire this sincerely.</p>
<p>Please allow us to understand that Jesus is also working hard for this path. Jesus and the Holy Spirit offer unlimited prayer for the sake of humanity. Let us not forget that this is because we have not paid back the debt owed to the universe. What is more, this is because we are too unprepared and inadequate.</p>
<p>We realized in this hour, Father, that to stand in the position of glory where Jesus, the Holy Spirit and the Father can be happy, we must fulfill the responsibility of Jesus in his place. Allow the miracle of Heaven to be manifested on the earth and please let the fight with Satan in heaven be led to victory on the earth through us. In this way, please allow us to become the eternal children of Yours who can feel the love of the eternal Father as joy and glory.</p>
<p>Loving Father, I sincerely pray and hope that You will lead us to become Your beloved children who are worthy to stand before the Father, Jesus and the Holy Spirit, and before the countless saints and sages, humanity on the earth and the creation. Please raise us up as your children who can firmly govern over the creation.</p>
<p>Hoping that You will govern over and guide them to pay back the debt they owe, Father, we prayed all this in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html" title="Permalink to Let us Become People Who Pay Back our Debts" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html" rel="next">Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,236 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Bring Out the Value of Restoration &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-745 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-745" class="post-745 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Bring Out the Value of Restoration</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:26:51+01:00"> <a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:27:42+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let Us Bring Out the<br />
Value of Restoration</h3>
<h3 style="text-align: center;">July 3, 1956<br />
Headquarters Church, Seoul, Korea</h3>
<p style="text-align: center;">Acts 1:6-11</p>
<p style="text-align: center;"><em><span id="en-NIV-26930" class="text Acts-1-6"><sup class="versenum">6 </sup>Then they gathered around him and asked him, “Lord, are you at this time going to restore the kingdom to Israel?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26931" class="text Acts-1-7"><sup class="versenum">7 </sup>He said to them: <span class="woj">“It is not for you to know the times or dates the Father has set by his own authority.</span></span> <span id="en-NIV-26932" class="text Acts-1-8"><span class="woj"><sup class="versenum">8 </sup>But you will receive power when the Holy Spirit comes on you; and you will be my witnesses in Jerusalem, and in all Judea and Samaria, and to the ends of the earth.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26933" class="text Acts-1-9"><sup class="versenum">9 </sup>After he said this, he was taken up before their very eyes, and a cloud hid him from their sight.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26934" class="text Acts-1-10"><sup class="versenum">10 </sup>They were looking intently up into the sky as he was going, when suddenly two men dressed in white stood beside them.</span> <span id="en-NIV-26935" class="text Acts-1-11"><sup class="versenum">11 </sup>“Men of Galilee,” they said, “why do you stand here looking into the sky? This same Jesus, who has been taken from you into heaven, will come back in the same way you have seen him go into heaven.”</span></em></p>
<h3 style="text-align: left;">Prayer</h3>
<blockquote><p>Father of love! After three days of being protected in the bosom of Your love, many children have gathered here again this evening to humble their minds and bodies and offer a bow. Please let Your glory fall upon their heads. Please let the loving hands of the Father, who has been patient in His dispensation, be present with them and guide them so that they can provoke in humankind a compelling urge to follow them. Let Your hands inspire them to meekly lie prostrate and bow before the Father.</p>
<p>Father, we have received Your permission to live inside Your bosom for three days, but we know that our minds and bodies often stepped out of the permitted boundaries. Because we are full of faults, we have set the condition for accusations from Satan. With Your power of love, loving Father, please impede those conditions and remove them with Your powerful hands.</p>
<p>Father, I hope and desire that You will lead us to have desperate minds and bodies, and that in this moment, You will allow us to be intoxicated in the love that has been locked up in Heaven. Guide us to be offered as the sacrifice in which Heaven can delight.</p>
<p>Please make the minds and bodies of all the children who have gathered here become the sacrifice on the altar that the Father can be happy about, to become children You can accept. By doing so, please allow this to be an opportunity when we can digest all of Your words of advice and command.</p>
<p>Please govern over us so that there will not be even one person among us who is reluctant to receive the Father&#8217;s advice and grace of love. Make this a precious time when the whole congregation can represent the heart of the Father and become one based on one heart and one joy.</p>
<p>Father, these who have come before Your solemn presence must have some personal ordeals. Please penetrate into them with Your fiery eyes so that they can overcome them. By inspiring peaceful and grateful hearts in them, please lead them to understand the substantial presence of the Father. In this way, please allow the manifestation of impressive works that can expose their lacks as they are and bring them to repentance.</p>
<p>Father, please let that inspiration move our minds and bodies and move the whole. We earnestly hope that we can be offered to the Father as the sacrifice of gratitude and the sacrifice of glory in this hour.</p>
<p>Please grant the Father&#8217;s words to each of us. If there are sinful elements in us, then please rule over us so that we can bring them out before the Father and purge them in this hour. At least for this moment, please allow us to be embraced in Your bosom and resemble Your meek original nature.</p>
<p>Please lead us to resemble Your peaceful original nature and to sing the Father&#8217;s glory with inspired hearts and watery eyes. Father, we fervently desire that we can offer proper greetings before Your majestic presence.</p>
<p>Father, we know that on this day, many congregations are offering the bow as we are doing now on behalf of the people, so please allow compassionate love wherever they gather. Please allow the ignorant people to open the door to their hearts and fathom the one life that Heaven demands and the anxious heart of God, who is trying to raise them. Let many of these children appear everywhere in large numbers and spark the fire of love. Let such a fire of life be revealed in all the lands.</p>
<p>Father! Please endow these people with the power of salvation, so that the people of the Abel-type who represent the whole can set the conditions of victory and build the altar that can restore the whole, the altar that Heaven desires.</p>
<p>Moreover, Father please be with the small number of those who stand on lonely paths and are pouring out their hearts and exerting their bodies for Heaven. We know that as they offer the bow, they already realize the magnitude of the mission entrusted to them in the last days. Father, please do not let even one of them fall into temptation. The crowds that are gathering are chosen for the Father&#8217;s dispensation of love. Loving Father, please do not forsake any one of them. Protect them so that they will not fall into the temptations of Satan and cause grief to You.</p>
<p>Even today, there are many children who are building the altar of redemption for the sake of humanity, without being noticed by others. They are concerned about Heaven with an anxious heart. What is more, we know that in caves or mountains or in the wilderness, there are many concerned children who cry out on behalf of the heart of the Father. Father, please also manifest the promised will of the last days before them.</p>
<p>Please grant the promised grace so that in the near future this people can be given the honor to put their knees before Yours and build the altar of glory. Father, we earnestly hope that You will construct one altar representing these people so that they can sing joy and victory and march forward, holding up the torch of the eternal truth of heaven and earth.</p>
<p>Father, we know that for the sake of preparing for this task, we must maintain many hidden altars. Please let many people gather quickly. Please allow this people to serve you in the near future. We sincerely hope that You will lead them so that happiness will be multiplied and Your glory is brought out into the full light.</p>
<p>Please rule over this evening from the beginning to the end so that there will not be even one who will be dragged off as a sacrifice of Satan. Wishing these things, I prayed in the name of the Lord. Amen.</p></blockquote>
<h3 style="text-align: center;">Prayer</h3>
<blockquote><p>When we realize that the course to accomplish the one will is a lonely course of which humanity is ignorant, when we think about how the twenty years of Jacob&#8217;s life lies before us as our own path of faith, we can come to understand that every footstep of suffering is drenched throughout with tears and sighs.</p>
<p>Father, these who have gathered here are the ones who have come forth to walk the path of the dispensation, following the footsteps of the course of Jacob, who was heading toward the house of Laban in the Haran wilderness. Sympathize with them and be their friend. Please protect the path they are walking on.</p>
<p>We know that many Satans are blocking the way on the path we are on. We know that the forces of darkness are obstructing the way, beloved Father! So, please safeguard the center in their hearts to be as immutable as rock, as they try to walk the model course of Jacob. Please raise them so that they can pour out all of their heart and soul for the sake of the will of Heaven. Forgetting all situations of the physical body, let them dash forward at full speed.</p>
<p>Since we have before us the unfinished path that we must fight and persist on until the day we sing the final song of victory to the Father, please grant us the power and ability, Father. Bestow on us the blessing to inherit the lonely heart of Jacob and to watch the glorious scene of angels climbing up and down the ladder connected from the earth to Heaven.</p>
<p>Please allow us to understand that there is God, who is helping us until the last minute. Let us understand the heart of perseverance of the Father. Make us become the victorious soldiers of patience who can carry on the battle until the day that the Father&#8217;s eternal will is realized and brought to victory.</p>
<p>We have entrusted everything to You. Please understand our anxious heart to communicate with You and please receive everything as our expression of loyalty. We hope that all of our minds and bodies can be offered as one harmonized sacrifice. Father, we fervently hope that You will grant us the blessing to offer everything as a sacrifice.</p>
<p>Father! Please allow this to become the hour when we can express gratitude toward all the blessings that You have granted us. Repress all our personal assertions. Please lead us not to become the throng of Satan who possesses the conditions of Satan&#8217;s accusations. Please allow us to uphold the honor of victory and exert all of our minds and bodies to make the meek sacrifice the triumphant offering of Heaven.</p>
<p>We have given all of our minds and bodies to You. Please govern the whole with the honor of victory. Hoping sincerely that You will allow us to take part in the blessing of joy, we prayed in the name of the Lord. Amen.</p></blockquote>
<h3 style="text-align: center;">Prayer</h3>
<blockquote><p>Father! Allow each of us to understand that when one person&#8217;s mind has not squarely centered itself on Heaven, this has considerable impact on the whole audience. Please lead us to understand that if one of us falls prey to Satan because of our inadequacy, then the whole prepared altar cannot be offered to the Father.</p>
<p>If Heaven&#8217;s work is manifested and the separation is made, then those who have not found the center will walk the path of Cain. Those who have secured the center will stand before the path of Abel. Please let there be many Abel-type people in this gathering. Please do not let them lapse into the position of Cain.</p>
<p>Father! In this hour the separation must be made, so please let each member of the audience enlighten his or her own heart. By establishing a center in our minds, please allow us to stand on the right side of Heaven.</p>
<p>Lead us not to take up the attitude of the one who stands on the left and peeks at the right side. Help us to become meek people who can submit before You in silence, facing the direction in which God can be happy. Father, I sincerely wish that You will guide us to exert our utmost for the sake of achieving harmony with the center of Heaven.</p>
<p>Please let these beloved children of Yours receive and digest the words of life this evening. Please convey new words of fire in our minds and bodies so that we can realize where each of us stands. By doing so, please help us to find the mind in which God can take delight. Help us train bodies that are acceptable to You so that we can stand before the altar of the Father as a being of happiness.</p>
<p>This evening, I have gathered young children before me and am trying to speak the words as You allow me to. Father, please reveal the appropriate truth and let Your hope be realized in this hour.</p>
<p>Please expunge all the wicked hearts in us and on the grounds of the good heart, please allow us to receive the sacred spirit of honor that brings joy. Let the heart of the speaker and the hearts of listeners form one image by resembling the hyung-sang of the Father. Let them give and receive in this hour. In this way, please allow this to be a precious moment when Heaven can achieve harmony through us. Father, we earnestly hope and desire this.</p>
<p>Requesting from the bottom of our hearts that You will govern the whole with the fire of the Holy Spirit, I prayed in the name of the Lord, who is overflowing with love. Amen.</p></blockquote>
<p style="text-align: center;">This time, I will speak based on Acts 1:6. My speech is entitled <i>&#8220;Let Us Bring Out the Value of Restoration.&#8221;</i></p>
<h3 style="text-align: left;">Jesus Came With the Mission to Restore the World</h3>
<p style="text-align: left;">The purpose of God wanting to save humankind is, as you all know very well, that He is trying to restore them to the original state. The countless prophets and sages who have come to the realization of the will of God first have taken responsibility for the restoration. While passing through each era, they have been striving toward one purpose: to realize the will. In other words, the 4,000 years of history before the coming of Jesus was this kind of history. The course of conflict in the thirty years of his life was also trying to realize this purpose. The history of conflict that he carried on with the Holy Spirit by his side for 2,000 years was also an attempt to achieve this purpose.</p>
<p style="text-align: left;">The purpose for which Jesus came to the earth was to restore history. He came with the mission to restore his own self and the world. Therefore, the words of the gospel that he spoke on the earth were for the sake of restoring the history of Israel and to restore himself in his life of thirty years. Going one step further, it was for the sake of restoring the humanity of the world. Therefore, based on the words that Jesus left behind him, humankind has been passing through the course of history until today, taking responsibility for portions of the dispensation of restoration.</p>
<p style="text-align: left;">Not only that, today you must cultivate the mind-set of a loyal subject who, centering on the words of the New Testament that Jesus spoke 2,000 years ago, can indemnify the 6,000 years of the past and represent the eternal life of the future. At the same time, you should find the value of victory that can restore you and history. If you cannot do this, then the words of the gospel, the words of life to restore humanity, which represented the 4,000-year history and the thirty years of Jesus&#8217; life, cannot bear any kind of fruit.</p>
<p style="text-align: left;">You today must become children who remove the grief and suffering of Jesus, who represented the 4,000-year history. You must become children who complete Jesus&#8217; mission of restoration. For the thirty years of his life, Jesus tried to establish the new ideology of restoration before humanity and lay the victorious foundation of Heaven. You must also complete the mission that Jesus and the Holy Spirit have labored to accomplish.</p>
<p style="text-align: left;">By doing so, as the representative of history, you should return the triumphant glory of restoration to the Father. You should return to the Father honor that has a value that surpasses the value of Jesus&#8217; victorious life.</p>
<p style="text-align: left;">If one were to ask whether Jesus reveals everything to humankind in his dispensation to accomplish the history of God&#8217;s restoration, the answer is negative. We know through the Divine Principle that until now, Jesus could not unveil specific details of the dispensation of restoration in his works.</p>
<p style="text-align: left;">He hid himself, and with symbolic words of testimony has been leading the dispensation of restoration to accomplish the will of Heaven on the earth. He has been propelling the dispensation of restoration forward without fully divulging the glory of Heaven before humankind. Consequently, we must come to understand the internal heart of Jesus, who has been driving the dispensation of restoration forward without clearly revealing the specific details.</p>
<h3 style="text-align: left;">The Reasons Jesus Could Not Divulge<br />
the Inner Feelings of His Heart</h3>
<p style="text-align: left;">What must you understand to restore the glory of restoration today? You must come to understand the concealed value of restoration that Jesus could not expose, first through your daily life, and next through your minds. You must then understand the unknown inside story of the restoration of Jesus, who could not disclose the value of eternal life.</p>
<p style="text-align: left;">After that, when God is trying to fully establish the glory of restoration on behalf of Heaven, what must we understand? You must understand the content that Jesus had to hide deep inside his heart and could not divulge freely to humanity during the thirty years of his life. If you do not understand such matters, then you will not be able to manifest, from earth to heaven, the full value of the restoration that represents the universe.</p>
<p style="text-align: left;">If you closely scrutinize the words of the gospel that Jesus revealed, you will find that specific details of his daily life are not described. The way that Jesus suggested aspects of his undisclosed lifestyle is through the example of sacrificial service. In other words, although he was a glorious son who could rise high, he lowered his glorious self. By going below the feet of sinners and living a life of sacrifice and service, he revealed the concealed aspects of himself. Moreover, through his life of reticence, he revealed the hidden aspects of his life that he could not reveal to anyone. He could not divulge his inner thoughts even to the twelve disciples.</p>
<p style="text-align: left;">The reason that Jesus could not expose the secret is that he knew that although he himself understood the secret of Heaven, if he made it known when there was no one who could comprehend it, he would have been mocked by Satan. In other words, he had the burning desire to convey to humankind the things that the Father had shared with him, but because there was no one who fathomed his thoughts and came to listen to him, he could not proclaim the secret of Heaven to humankind. He could not reveal the hidden aspects of his heart before humankind.</p>
<p style="text-align: left;">As a result, he was pushed to walk to the cross and stand before the authorities and Pilate. He was convicted of the crime of &#8220;claiming himself to be the king of the Jews.&#8221; At that time, Jesus kept his silence and only after Pilate asked him, &#8220;Are you the king of the Jews?&#8221; did he finally reveal his identity.</p>
<p style="text-align: left;">The good and righteous people on the side of God should have considered it their life-long glory to serve and worship Jesus as their king. Instead, Jesus faced a trial before Pilate and was convicted as a criminal. When he faced the trial of Satan that could not be avoided, he broke his silence. Speaking on behalf of the agony of God, he spoke the truth as it was.</p>
<p style="text-align: left;">From this we can learn that even in the works of Heaven, when Satan exposes the truth and inquires about it to God&#8217;s side, God&#8217;s side has no choice but to reveal the hidden heart. Conversely, when the saints on the side of God point out the hidden secrets inside the heart of Satan, he also has no choice but to tell the truth.</p>
<p style="text-align: left;">Jesus kept within himself the knowledge of restoration that he could not reveal to anyone. In his daily life, he not only propelled forward the dispensation of Heaven through silent deeds of service, in the practical aspect of his life, he moved ahead of everyone to reveal the concealed truth about the restoration. Therefore, you should penetrate into the heart of Jesus that can reflect the ideology of restoration and ask, &#8220;Is your heart not like this?&#8221;</p>
<h3 style="text-align: left;">You Must Understand<br />
the Undisclosed Secret of the Dispensation<br />
Through the Cooperation of the Holy Spirit</h3>
<p style="text-align: left;">You must understand that unless such people emerge, no matter how much time in history passes by, the secret hidden deep inside the heart of Jesus cannot be revealed on the earth. Moreover, you must comprehend the secret of restoration that was unveiled through the life of Jesus and the knowledge of restoration inside his heart.</p>
<p style="text-align: left;">Only after you do that can you confidently stand before God and stand proudly before Satan. In other words, only after you do that can you become one who has completed the restoration of a victorious life.</p>
<p style="text-align: left;">Jesus indemnified the 4,000-year history through the thirty years of his life. He perfected the center of the restoration on behalf of everything in the universe. However, until today, there has not been even one person who could inherit the full value of Jesus, the value of the secret kept deep inside his heart and his undisclosed life. The person who appeared with his internal secret and the secret surrounding his life in his time and place is the Holy Spirit.</p>
<p style="text-align: left;">Although you believe in the words of Jesus&#8217; gospel, those words alone are not enough for restoration. What you need is the Holy Spirit cooperating in your life and living with you.</p>
<p style="text-align: left;">Therefore, just as Jesus walked the course of sacrifice and service, you must walk the same kind of course and go before the cross before the concealed secret of Jesus&#8217; life can be divulged by Jesus and the Holy Spirit. Moreover, the internal secret of his heart will also be manifested in the same way.</p>
<p style="text-align: left;">Consequently, we must know today that unless our mind and daily life become one on the basis of our unity with the Holy Spirit, achieved with her cooperation, and unless we can establish a relationship of oneness between Jesus and the Holy Spirit centered on ourselves, there can be no true life. Similarly, with the help of the Holy Spirit, today we are undergoing an important process of realizing the truth of restoration locked inside the secret of Jesus&#8217; life and heart. Accordingly, we who are in the middle of that process must become one with the Holy Spirit in the same way that Jesus and the Holy Spirit have become one and form a trinity centered on Jesus. This is the only way that we can securely lay down on the earth a plane or base on which the foundation of God&#8217;s victory can be established.</p>
<p style="text-align: left;">Moreover, when you seek the concealed knowledge of true life, even if you are receiving the help of Jesus and the Holy Spirit, that kind of life only comprises a part of the restoration process for a whole life. The reason is that the secret of the restoration of a whole life still remains as the secret of Heaven. Consequently, even if you have achieved something that has a value equivalent to life, with that alone, you will not be able to consummate it. There still are hidden aspects of life that God has not yet revealed through Jesus and the Holy Spirit.</p>
<h3 style="text-align: left;">The Things We Need</h3>
<p style="text-align: left;">We must fully manifest the value of the restoration of the whole and show to many people the value of the secret of the life of Jesus. At the same time, we must represent the value of the internal secret that Jesus kept. We must be able to obtain God&#8217;s recognition for the value of the universal life that combines Jesus and the Holy Spirit.</p>
<p style="text-align: left;">What kind of state are you in? Although you have the desire to love Jesus, you have not been successful in loving him properly. For this reason, you must learn about the continued service and devotional life of Jesus and the Holy Spirit in which they persisted for the sake of causing humankind to love God. You must also learn about how God could not love Jesus as much as Jesus has exerted himself on behalf of all things.</p>
<p style="text-align: left;">Now if you do not understand such contents of love and fulfill them, then there is no way you can resolve the deeply-rooted grief of Heaven and bring to pass the remaining history of God&#8217;s restoration on this earth. What then do we need as we go forward toward the purpose of the restoration of life and the dispensation of restoration of life in the growth stage? The growth stage came after the three-year course of public life, the course of crucifixion and the course of cooperation, in which Jesus and the Holy Spirit have been toiling for 2,000 years since the ascension. What we need to do is imitate the heart of goodness with which God has loved Jesus and the Holy Spirit and has embraced the whole universe in love for 6,000 years. We must then establish the center of love in which our heart can work in unity with the hearts of Jesus and the Holy Spirit. If you cannot accomplish these, then you cannot complete restoration in respect to our lifestyle, heart and life. You cannot make a relationship with the love of God, which has the power to fully manifest the value of the whole life and glory.</p>
<h3 style="text-align: left;">To Make a Relationship of Love with God</h3>
<p style="text-align: left;">What then do we need to do to make a relationship with the love of God? We must pass through the central course that Jesus walked in his life and pass through his heart, which has exerted itself for the sake of humanity for 2,000 years. In other words, we must go through the internal heart of Jesus, who has felt distressed about the situation of humanity during the historical course. We must go through the internal heart of the Holy Spirit, who has been at work since the ascension of Jesus until now. We should sympathize with and deeply feel the anxious heart of God, who has led the dispensation for the 6,000 years since the creation and is now exerting Himself to build the ideal world that is to come. If you cannot do this, then you will not be able to fulfill the full value of the restoration centering on the love of God, which represents the eternal glory of life. You must not forget this.</p>
<p style="text-align: left;">Therefore, just as Jesus has walked the path, you must walk the same path that the Holy Spirit has walked. Moreover, you must follow the course and example of the apostles, in which they forgot about everything, including even the awareness of their own existence, and lived only for the sake of God, Jesus and the Holy Spirit.</p>
<p style="text-align: left;">When you walk that kind of course, you can finally be able to dominate your mind and your lifestyle, and life will overflow within you. You will be able to be linked up with the love of God. Moreover, the love of Jesus will be manifested through you, and the love of the Holy Spirit will dwell within different aspects of Your life. You must clearly understand this.</p>
<h3 style="text-align: center;">Prayer</h3>
<blockquote><p>Beloved Father! Where tears flow over tears, let there be a passageway of the emotion of Heaven that cannot be severed. We know that where the heavenly emotion passes through, the connection with life will be made, so that the karma of love hidden in Heaven will be revealed. We know that this must become linked through the earth.</p>
<p>Father, we know that the garden in which everything is restored is the garden of love, the garden of victory and the garden of glory that You desire. For the sake of realizing this kind of garden, we know that we must claim back the life, love and glory which You can be happy about through our own life of service. At the same time, we must cultivate ourselves.</p>
<p>We must understand the heart of Jesus and the Holy Spirit, who cannot fully reveal the will of Heaven before humankind, though they keep it close to their hearts. They cannot proclaim it to humankind though they have the burning desire to convey it. They hope that humankind can liberate them from this distressed, anxious heart and situation. We must also know the heart and situation of the Father, who must reserve the words that should be spoken through Jesus. Not only that, we were not aware of the fact that before us lies the unfulfilled history in which we must comprehend this and achieve the liberation. On that foundation, we must disclose before Heaven, &#8220;Is this not the very will of the Father hidden inside the secret?&#8221;</p>
<p>Thus, when we think about the fact that with us remains the responsibility to bring to pass even the tasks that Jesus left unfulfilled on the earth with the help of the Trinity, we know that we must divulge the wish of the internal heart, which is concealed within God. It is not known to Jesus, the Holy Spirit nor all the countless living things, nor to all who have sacrificed themselves for the sake of the will of the dispensation up to now. After having completed this, if we can point out, Is this not the fervent yearning of the Father that the Father could not speak about? then we can receive the ultimate love that the Father has safeguarded deep inside His heart. By virtue of this, we can manifest before humanity the center of the love that flows down from the Father. This is what we must accomplish.</p>
<p>Father, we are now receiving Your love, so please allow us to be responsible for and accomplish this feat. My Father, I earnestly offer my wish and desire. Only after this task is fulfilled can the wish inside the heart of Jesus be realized, as well as the wish of Father who has been exerting Himself to lead the dispensation for 6,000 years.</p>
<p>Accordingly, Father, please accomplish through us the standard for the ideal of the restoration that You have kept in Your heart since the creation. Please allow us to build the thousand-year kingdom with that standard as the foundation. Allow us to reach the realm of Your ideals, so that humankind on the earth can totally inherit the internal heart of the Father extending beyond trillions and billions of years, for eternity, without limit.</p>
<p>Please guide us to remove all the conditions that might provoke Satan&#8217;s accusation, and as the representative of heaven and earth, accomplish total restoration. Allow us to become children who can claim back the glory of the full value of the Father and offer it to You. Loving Father, I fervently make this wish.</p>
<p>Until now, we have been struggling in a lowly and trivial state. When we interact with a person, we have struggled to raise ourselves higher and in a meeting, we have sought to make ourselves known. Yet Jesus knew that God could not assert His dignity before all things, so out of concern for God&#8217;s dignity, he dared not to step into the limelight, but bowed his head in humility. What is more, we know that he has concentrated all his thought for the sake of pioneering an exemplary path before the enemies. Please allow us also to walk that path with joy.</p>
<p>Jesus was more concerned about comforting God than about his own comfort because he knew that humankind could not resolve the grievances rooted deep inside the heart of God. In the same way, we must now become filial sons and daughters who can comprehend that heart of Jesus and console him. Beloved Father, please lead us. We earnestly yearn for it.</p>
<p>Please divulge to us through Jesus and the Holy Spirit the anguished heart that the Father has kept hidden for 6,000 years. By doing so, we sincerely hope that You can guide us to comfort that heart of the Father and become the champions of restoration who can represent the glory of victory.</p>
<p>Please let us comprehend that if we cannot become the victorious heroes in regards to the lifestyle, heart, power of life and the course of life unknown to humankind, this grand feat cannot be accomplished. Similarly, it cannot be accomplished if we cannot become the king of reticence. Allow us to understand that unless the fight with Satan comes to an end, this feat will not be completed.</p>
<p>Now please lead us so that we can start from one and pass through the whole course of conflict, then stand before God and receive Your words of blessing to inherit Your heart. Please allow us to forge the relationship of victory and act on behalf of the Father&#8217;s will.</p>
<p>I fervently pray that You will protect us. Let the Trinity help us until we gain the right to inherit the glorious work of the Father. Offering everything to the Father and taking in all the bad things and winning over Satan, we will obtain the qualifications to be the victorious heroes.</p>
<p>I prayed all these things in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html" title="Permalink to Let Us Bring Out the Value of Restoration" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html" rel="prev"><span class="meta-nav">&laquo;</span> The Responsibility of Those Who Have Become the Root</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html" rel="next">The Pledge That Must Be Fulfilled <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,249 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-739 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-739" class="post-739 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:19:55+01:00"> <a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:19:55+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let Us Claim Back<br />
the World of God&#8217;s Dominion<br />
and Offer It to Him</h3>
<h3 style="text-align: center;">Matthew 22:15-22</h3>
<p style="text-align: center;"><em><span class="text Matt-22-15"><sup class="versenum">15 </sup>Then the Pharisees went out and laid plans to trap him in his words.</span> <span id="en-NIV-23889" class="text Matt-22-16"><sup class="versenum">16 </sup>They sent their disciples to him along with the Herodians. “Teacher,” they said, “we know that you are a man of integrity and that you teach the way of God in accordance with the truth. You arent swayed by others, because you pay no attention to who they are.</span> <span id="en-NIV-23890" class="text Matt-22-17"><sup class="versenum">17 </sup>Tell us then, what is your opinion? Is it right to pay the imperial tax<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23890a" data-link="[&lt;a href=&quot;#fen-NIV-23890a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+22:15-22#fen-NIV-23890a">a</a>]</sup> to Caesar or not?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23891" class="text Matt-22-18"><sup class="versenum">18 </sup>But Jesus, knowing their evil intent, said, <span class="woj">“You hypocrites, why are you trying to trap me?</span></span> <span id="en-NIV-23892" class="text Matt-22-19"><span class="woj"><sup class="versenum">19 </sup>Show me the coin used for paying the tax.”</span> They brought him a denarius,</span> <span id="en-NIV-23893" class="text Matt-22-20"><sup class="versenum">20 </sup>and he asked them, <span class="woj">“Whose image is this? And whose inscription?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23894" class="text Matt-22-21"><sup class="versenum">21 </sup>“Caesars,” they replied.</span></em></p>
<p style="text-align: center;"><em><span class="text Matt-22-21">Then he said to them, <span class="woj">“So give back to Caesar what is Caesars, and to God what is Gods.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23895" class="text Matt-22-22"><sup class="versenum">22 </sup>When they heard this, they were amazed. So they left him and went away.</span></em></p>
<h3 style="text-align: center;">
<p>Headquarters Church, Seoul, Korea<br />
June 27, 1956</h3>
<h3>Prayer</h3>
<blockquote><p>Beloved Father, we pitiful ones have come, longing to be embraced in Your bosom. Please govern our minds and bodies. Please govern over our whole being. Allow us to realize the minds and bodies about which You can be happy. Please allow this hour to be immersed in the glory and righteousness of the Father.</p>
<p>Beloved Father! Please have sympathy for those who have gathered here longing for You. If the Father is not present in them, then they are the most pathetic and lonely people. Father, please have dominion over them all. Beloved Father, I honestly hope and desire that You will be at work to make them become the heroes who can fulfill their wishes.</p>
<p>We have gathered our scattered hearts in this hour and are bowing down before You to offer gifts to Your sacred image. Father, I wish that You eradicate, from the beginning to the end of this hour, all the elements in us that are not acceptable to You and move our hearts.</p>
<p>We know that in this day, Father, there are many who have gathered here to seek blessing, so please work a miracle with the grace of the Trinity wherever they gather. Beloved Father, we pray that the time will come in the near future when the same grace can be given to every one of them who praises Your glory and to every place they gather to take charge of the responsibility given to them in the last days.</p>
<p>Isolated members have gathered on this day to build an altar undisclosed to others and they are bowing down, so please appear as the master of life for the whole, and appear as the spirit of resurrection for the whole. Please do not let their work of life and resurrection cease on the earth, and allow this place to be filled only with the honor to return joy to God by bringing harmony to the countless saints in heaven and to all of creation.</p>
<p>From the beginning to the end, please do not allow Satan to invade. Sincerely wishing that the victorious Father of glory will protect us, I prayed in the name of the loving Lord. Amen.</p></blockquote>
<h3>Prayer</h3>
<blockquote><p>Beloved Father! We brothers and sisters who do not possess anything have come before the Father&#8217;s knees. Please do not let them feel self- centered emotions. Please let them not possess any valuable thing centering on themselves without first living for the sake of Heaven and the Father. Let everything be offered as a sacrifice for the sake of the dispensation of God.</p>
<p>We are pitiful ones whose minds and bodies are under the dark shadows, so Father, please have sympathy. We are stretching our weak and powerless hands toward the sky, so Father, please extend Your hands of compassion. We who used to be dragged toward Satan are now stretching our arms toward Heaven and crying out, so Father, please embrace us. Even if we stand on this perilous earth that Satan governs over, beloved Father, please raise us to become the shield of Heaven who possess the eternal heart of God, the valiant soldiers and children who can become the pride of Heaven.</p>
<p>Father, Your beloved children have gathered here now. Although the natures of those who gathered here may differ greatly, they earnestly wish to take after You, so please receive them with a single heart. Giving them commandments, please allow them to obey Your directions and to testify to the heart of Heaven.</p>
<p>Those children whom the Father has called upon have gathered here in this hour, so please lead them to fight against the enemy, Satan, who is spread out all over the world, and to become capable enough to block off all approaching crises with the shield of victory. Please let us stand in the position of ones who give rather than ones who take, and please allow us to bring out our full value and become sources of Your glory.</p>
<p>Father, these beloved children of Yours who are tired from difficulties and surrounded by disaster, if You do not grab hold of them tight they will become the most pitiful ones. There are trials, crises and grief accompanying every step they take and in every environment they dwell in, so please guard them and protect them.</p>
<p>We could fight until now because You have toiled and been concerned about us. They are experiencing Your tribulations and shedding Your tears, so Father, please protect them eternally. Please defend them until the day when they can return the glory of Hosanna to the Father, representing all things that come with the joy of happiness, and offer bows of gratitude in the garden of the ultimate victory.</p>
<p>I am trying to convey the message that You have permitted this hour in Your place, so please remove all of their wrong thoughts and concepts, and please let the inspiring works of recreation and harmony pour forth. Please allow this hour to be a time when our minds and bodies cannot but be moved and intoxicated in Your love, that we may offer bows, submit and repent. In this hour, please allow them to receive the heart of Heaven without any hindrance. Wishing this earnestly, I prayed in the name of the beloved Lord. Amen.</p></blockquote>
<p>The topic I want to speak about, centering on the Bible verse I have recited, is <i>&#8220;Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him.&#8221;</i> I will speak briefly on this topic.</p>
<h3>The Task of Finding the Governing Lord, God</h3>
<p>All the things God created in six days have been in a state of sorrow and difficulty until now, for they have not been able to serve the governing Lord, God. This remains before us as the fate we must resolve in the course of restoration. Accordingly, if we want to be elevated as the sacrifice that can pledge before Heaven and bring the victory, then we must bring the restoration of the dominion that God desires to a conclusion. Without doing that, we can never stand on firm footing as the victorious sacrifice. The reason that such a course lies before human beings is that after the fall, a world unfolded that nobody wants, a world Satan that dominates.</p>
<p>God, who had created all things to obtain joy through Adam and Eve, lost everything He had created because of their fall. He lost Adam and Eve and the creation. What is more, to everyone&#8217;s surprise, Satan has taken over the position of God, the Creator, and has been dominating all things. This is the grief of God and the grief of the conscientious people and saints who have longed to take after the heart of God during restoration history until now.</p>
<p>If you bring created beings in front of you and ask what their wishes are, what answer would they give? Every one of them will answer, &#8220;Finding the governing Lord, God.&#8221; Although God understands well that this is what all things seek, He cannot directly govern over them even if He wants to. You must understand that this is the lamentation of God.</p>
<p>What is the wish of men, who are part of the creation that God lost? It is to be governed directly by God, who used to govern according to the wishes and longings of every created being.</p>
<p>Today the mission lies before us to fulfill this; we are given the royal summons to carry it out. Therefore, we must restore God&#8217;s dominion and at the same time restore the dominion of being the master of all things. Moreover, we must return the glory of gratitude for the grace that God reigns over. Today this kind of responsibility lies not with the creation, not with the soldiers and angels in heaven, but in us, we who amount to nothing.</p>
<p>Accordingly, if we fail in our responsibilities once, then we will lose dominion over the whole of Heaven. If we lose the original Heaven, then we will lose the whole hope of all things. Therefore, if we cannot fulfill the responsibility in our life that decides the historical fate, then we cannot stand before God, and we cannot emerge as the master of all things.</p>
<p>You are the center of the whole world of creation. You were endowed with creativity and were created to be the center of the internal world. The course you must walk is not to remain constrained within you.</p>
<p>If you live a life for the sake of the universe but only think about yourself, then God&#8217;s ability to dominate and create will be undermined. You must understand that then the hope the creation has in you, that you may govern over it, will also be shattered.</p>
<p>Consequently, you must bring out the full value, which represents the position of Heaven&#8217;s dominion over all of the creation. By doing so, you should be able to utter with your own mouth, &#8220;God, I have fulfilled all the purposes that You intended for me when you raised me up as the one You have sought, the original lord of dominion who represents the whole. God, please give me the command.&#8221; This is the person God has longed for during the 6,000 years of the dispensation. Accordingly, the mission we share in common is to fight through the tribulations of God&#8217;s 6,000 years and restore humankind by defeating the enemy, Satan.</p>
<p>As the representative of the whole, we must find the authority to govern. What specific things should we look for today?</p>
<p>Due to the fall, humankind lost God, who governs over the whole. We have lost God who governs over and is the root of the whole. Accordingly, today we must find the God who has created all things. In this way, you must obtain possession over all the things God has dominion over.</p>
<h3>The Result of Losing God</h3>
<p>What are our grief, sadness and lamentation? What is the sincere hope and wish that has been hidden deep within the course of dispensational history for 6,000 years? It is finding God, whom humankind, the universe, heaven and earth have lost. God is the hope we must seek and He is the root of the glory that represents the value of the whole. Therefore, to restore the dominion of God over the whole, you must be able to possess God. You must become people who can greet God.</p>
<p>What kind of being is God? You must understand that He is the God who created all things and who has been working hard to have dominion over the whole creation. Accordingly, if you come to possess God now, because that God is your God, if He is eternal, you also will become eternal. If He gains dominion over the whole world of creation, you will be able to stand in the position of the incarnation of God who can govern over all things. If you cannot raise yourself up, then you cannot say you possess God.</p>
<p>The reason there is so much sorrow and death on the earth is because we have lost God. What is more, by our losing God, Satan came to fill the role of the master. According to the principles of creation, humankind originally should have served God as the only master, but because of the fall, they have come to serve Satan as the master in place of God.</p>
<p>Before you lies the fateful responsibility to repossess the love of God. Yet who is blocking the path? Who opposes the will that the created world of all things serves God as the one center? It is Satan, who is inducing sin and evil in you today. Hence, if you cannot pull out the root of sin and evil implanted deep in your mind today, and if, representing humanity, you cannot build the world of God after defeating Satan, the betrayer of Heaven who has been fighting for 6,000 years, then you cannot exercise the dominion of God on the earth.</p>
<p>You are seeking freedom in your minds, but the question is what kind of freedom you are pursuing. If you cannot find God, you will become the servant of Satan. Accordingly, if you cannot possess God but instead possess Satan, you will become a traitor who violates the universal principles. You must understand this.</p>
<h3>To Possess God</h3>
<p>For what reason has God taught us the universal laws? It is to teach us the way to find and understand God. What is more, He carried on the 6,000-year course of history to teach us that way.</p>
<p>Today you realize that God exists because of your faith. All the members know that the nature of God is manifested as the essential nature of the creation. You must build a relationship with God for eternity that no one can sever.</p>
<p>When this happens, whether you are dashing east, west, south or north, no matter what kind of course you find yourself on, as long as God remains unchanging, your right to possess God will not be affected. If you cannot stand in such a position, then the expectations and hope that God has toward you will remain incomplete and unfulfilled. If that happens, then Satan has the condition to invade because of you, and God&#8217;s sorrow will not be removed. You have to understand this.</p>
<p>What do we have to do in this position? First, we must cast off the accusations of Satan. We must be recognized just as Jesus was acknowledged: &#8220;Indeed, you are the son of God who is qualified to possess God and build a relationship of oneness with God.&#8221; You must realize that if you cannot restore this kind of day, you cannot step forward as the master of the creation before God, who governs all things.</p>
<p>Due to the fall, humankind lost God and lost the original nature. Moreover, when we analyze ourselves, we can see that when we lost God, we also lost our original mind. You must rely on your mind. If you cannot control your mind as you will, then you cannot possess God, and God cannot build a relationship with you.</p>
<p>When your mind establishes the eternal standard of reciprocity with God, you can possess God, and God can dominate your mind as He wills. Therefore, just as God and Jesus became one in mind, you must become one with the mind of God to be in the state of having attained oneness with God. If you cannot stand in such a state, then your mind will not cannot rid itself of the conditions of Satan&#8217;s accusations.</p>
<p>Originally, humankind should have lived according to the purpose that the mind desires, within the limits of the will that God demands. By doing so, humankind should have represented the whole ideology of God and entered the position of being the second God. However, due to the fall, humankind lost the original mind that can achieve this. Consequently, the condition is such that human beings today must suffer grief in order to find this original mind.</p>
<p>Therefore, we must purify our minds through Jesus Christ. Although our minds are trapped in sorrow, we must give rise to a new mind when we face the universe and rectify the original heart that can find its way through the darkness. By doing so, you must link with the heart of God and connect with the minds of humankind who are stranded in the realm of death, and create the mind that can revive them. If you are unable to do this, then you must realize that you do not possess the heart that can eternally possess God, and at the very least, must repent.</p>
<p>When we offer ourselves fully to God, we do not do our utmost just for a certain time period. As long as God remains unchanging, you are to secure the unchanging heart toward God during your life. In other words, you must lay the foundation of heart that Satan cannot invade with any kind of condition. This must be built the immutable system in the future. It must become the fundamental principle for walking the path of the universe.</p>
<p>Now, you must understand that if you do not possess the heart that God can take pride in, you cannot be in the position to win the sympathy of God.</p>
<h3>Jesus, Who Possessed God</h3>
<p>When humankind restores its dominion over the whole by finding their original hearts, then they will be granted the authority to command any being in the creation through the activities of their minds. Thus far, no one has perfected the mind&#8217;s ability to dominate like this.</p>
<p>Moreover, we still stagnate in the sorrowful state where human beings cannot assert their authority to act systematically according to the will of God. Satan has much cause to rejoice due to this. As long as humankind remains stagnant, this condition puts God into a state of anguish. You must clearly understand this.</p>
<p>What was the wish that God wanted to realize through Jesus, whom He sent after 4,000 years of preparation? Because in the course of 4,000 years, there was not even one person who gained possession of the God who was lost, Jesus wished that humankind could possess God through him.</p>
<p>Consequently, Jesus arose as the perfected possessor of God. What is more, Jesus was the person who was sent to represent the mind of humankind in the human world and the external aspect of God&#8217;s heart.</p>
<p>Two thousand years have passed since the coming of Jesus. What is the condition of glory that every people, tribe and individual must come to possess? It is none other than possessing God. It is the hope of Jesus and God that such a person will come forward.</p>
<p>Jesus came to the earth and possessed God. Furthermore, as his mind established the base of reciprocity with human beings, his body represented the body of God.</p>
<p>Jesus emerged after setting the standard to own the mind of God and the creation. He came bodily with the principled right of possession.</p>
<p>Therefore, the day he appeared was the day of God representing the whole universe.</p>
<p>Suppose the saints of today, believing in Jesus and understanding God, obtain God&#8217;s comprehensive right of unchanging possession. What would they do? You must join the standard of value centering on that right of possession with your mind and your physical body and present it before the whole of heaven and earth. This is what Jesus left behind on the earth. You must understand that the ideology of the Second Advent of today longs for that day to come.</p>
<p>What is the mission the Lord of the Second Advent must do after he comes to the earth? What is the ultimate purpose Christians must fulfill in the last days? No matter how much Christians have come to possess God with their minds, or no matter how much you have come to possess God with your minds, there still remains one condition (of accusation) and that is the fact that you have failed to own your body. For this reason, you must complete your right to possess your body now and emerge as the embodiment of God&#8217;s love and the incarnation who can testify to the original nature of God. When will such people emerge? You must understand that Jesus came to raise such people.</p>
<h3>The Restoration of the Body and<br />
the Comprehensive Right of Ownership</h3>
<p>After Jesus passed away, the Holy Spirit was sent to the earth in order to complete that task. Therefore, you must now become one with the subjectivity of mind that Jesus has and the comprehensive subjectivity of God. Then, having become one with the rights of possession of yourself and God, you must appear and bring out the value of the Holy Spirit with your body. Jesus could not thoroughly manifest the value of the body because his spirit was separated from his body. You must display the aspect of Jesus&#8217; mind and the value of the Holy Spirit, who has become one with God.</p>
<p>Therefore, the purpose of the 4,000-year history was to transfer the right to possess the mind of humankind in the conventional realm to the natural right of possession. This task is not that difficult. Nonetheless, the difficulty in the course of the dispensation lies in that it must be materialized in the body. The value of that concept must be manifested in a relative value, which is the body.</p>
<p>In his life of thirty years, Jesus came to possess God and that mind for the sake of this task, but he has not been able even now to escape from the realm of Satan&#8217;s accusation in the 2,000 years since. He has not been able to be ensconced in an impenetrable position that is not subject to the trials of Satan. Jesus has been accused by Satan in the spirit world, and the Holy Spirit has been accused by Satan in the physical world.</p>
<p>There still remains the unfulfilled course of going over the three stages in the physical realm, which is the principle of creation. Because of this, Satan retains even today the condition to fight with Jesus, and he can even present conditions to fight with God and the Holy Spirit. This is what you must understand. Moreover, you must know that although you have possessed God in your minds on the foundation of Jesus&#8217; thirty-year life course, because you could not possess God in your body, until now God could not govern over our bodies.</p>
<p>Humankind today is in the position to have to strike their own bodies. What is the purpose behind that? The reason that one strikes the body is to eliminate Satan. Furthermore, by striking the body, the Holy Spirit can conquer it. Thus, the reason that we strike our body is to set the condition for the Holy Spirit to occupy our body. To strike our own bodies is to strike Satan. By striking Satan, the Holy Spirit can occupy what had been previously conquered by Satan. Because of this, one can possess God, possess the original conscience, and possess the body. When this takes place, we can claim the merit of having finally brought to completion the eternal and unchanging right of possession, which represents all the creation in heaven and on earth.</p>
<p>Accordingly, if that state is not established, you cannot say that you have struck your body. Only after you find it can you erect the subjective standard of the whole and receive glory in the place of God. Moreover, because there is this will in the background, Jesus and the Holy Spirit have been laboring even after Jesus&#8217; death, until now. Therefore, for anyone who has the spiritual and physical, even for someone who is in the satanic realm, the 2,000 years of the mournful dispensational history of God was the time when the providence was being carried on with the hope that the Holy Spirit would one day take over.</p>
<p>Now we must look back at our past with this perspective. As long as you still have the (unclaimed) right to possess God, there will always be sorrow for God, who is the Lord of Dominion. Accordingly, when you think about the fact that the sadness incurred in God and the world of creation is because of you, you must repent for your sins today. The reason you repent for the sins you committed is so that you can establish heartistic merit. We must make a worthwhile repentance in which we can say that we have come to possess God, who is the Lord of Dominion over the whole.</p>
<h3>The Reason You Must Repent<br />
for the Sins You Have Committed</h3>
<p>Until now, faithful believers have led a life in which they struck their bodies, but this must not continue forever. The purpose of striking the body is to help the Holy Spirit occupy the body and make it possible for it to receive the love of God. Christians today completely forget that they have the responsibility to do this. They have forgotten it for 2,000 years. Where the godly love of the physical body is neglected, the love of the spiritual cannot be complete.</p>
<p>The reason is that when the mind becomes one with God and the body becomes one with the mind, then the body will move naturally. It is a universal principle that progress will occur through the complete giving and receiving action between the mind and body centering on God. It is the law of the creation that wherever there are unity and good giving and receiving action on a reciprocal base, the creation of one demonstrative, substantial body will take place. Only then is it complete.</p>
<p>The reason that God created all things is that He Himself wanted to be happy. When one does one&#8217;s utmost to forge unity between one&#8217;s mind and the mind of God, you can become one with God. Furthermore, the foundation will be laid to become one with humankind on the earth, so the dispensation of heaven on earth will unfold in a new way. Accordingly, when mind and body become one within you and you build a relationship with the Holy Spirit, we can restore God&#8217;s victorious subjectivity over the whole. This is what you must understand.</p>
<p>What we find is that in walking toward the will of God, there is more than just one way. There are front, back, left, right and all four directions. Nonetheless, human beings today are left with the direction heading toward Satan. Consequently, when you try to find the body and mind, and when your mind and body try to improve their horizontal and vertical aspects, Satan is encountered in all four directions. Furthermore, in all six directions, front, back, left, right, up, and down, Satan has set up an encampment of darkness. Therefore, you are to penetrate through the tents and raise yourself up. You are to unveil your true merit before all things, proclaiming, &#8220;God is my eternal possession. My mind is the possession of God. My body is also the possession of God, and that very person is I.&#8221; The substantial embodiment whom the Trinity is seeking in heaven and on earth must quickly step forward.</p>
<p>Where in the world of creation can one find such a valuable being, with whom the Holy Spirit can go and dwell, as well as Jesus and God? You have to understand that such a person is the substantial embodiment of the ideals of the restoration that God has desperately longed for and sought after for 6,000 years.</p>
<h3>The Substantial Embodiment God Has been<br />
Desperately Seeking for 6,000 Years</h3>
<p>Consequently, when such a meritorious being appears on the earth, God will not allow any condition against him. God and even Satan will hold onto him and shed tears of comfort. Accordingly, today we must understand what kind of environment in which we are living. You must not disregard yourselves, you who bear this kind of responsibility for the whole. You must supervise that great responsibility.</p>
<p>Now, if you can possess God freely, then you can say that you have come to possess your mind, which you can elevate as the eternal center. What is more, if you bring the body to perfection as a substantial entity that can create eternal life and possess it, then no matter where you go, east, west, south or north, no matter where you dwell, the victory song of Hosanna will be sung there. What will unfold is that all things in the creation will submit naturally to you, saying, &#8220;You are indeed the son of God who dwells in the glory.&#8221; You must understand this.</p>
<p>Moreover, today, such an event should not occur in just one dimension but must unfold everywhere. However, because there is not one being who has fully resolved all the basic problems of possession and appeared before the creation in the full honor of merit, becoming such a person remains as the hope you are to fulfill.</p>
<p>You and I, as well as God, are all sad about such a state of humankind. Today we must be in the position of possessing such value. Representing all things and the whole, we must obtain the glory of Heaven and offer the victorious song to God. When this is done, the heavenly soldiers and angels in heaven, as well as the countless saints, will greet the day of happiness and joy. What is more, we will return glory to God. Unless this task is completed, humankind will walk this path for many trillions of years.</p>
<p>We have not fully brought this to a conclusion. Who was the main cause of this situation? This is, of course, partly because we ourselves are unworthy, but more important, it is because there are satans who are making accusations to Heaven.</p>
<p>If there was someone who was the master and the governing lord of the whole and the whole creation could be dominated because of that one man, then even if he could not complete the restoration of the whole, it is all right. Using the power of the whole, we can focus our efforts and carry on a new task. Similarly, although God has tried to lead the whole of history toward one direction, because of Satan&#8217;s existence, that task could not be fulfilled.</p>
<p>Therefore, to bring Satan to an unconditional surrender and to allow the countless imperfect spirits in heaven to proceed toward perfection, God promised to send one person. That one person is none other than Jesus.</p>
<p>When you think about how you stand in the position to pursue the glory of God, what is it I have brought? Originally, the ideal that God held for men was obtaining the right of possession of heaven, mind and body. Therefore, if you have failed to reach the realm of such ideals, then you must have the eyes to discern the right of possession of evil and the right of possession of goodness. Going one step further, you must possess all of the five senses. Nevertheless, if in your life one day you could not prevent the accusations of Satan, then you will not recognize the Lord of the Second Advent even when he comes.</p>
<h3>Faith that Can Distinguish and Discern</h3>
<p>When you hear the words &#8220;The Lord of the Second Advent,&#8221; you blink your eyes and express joy. What is so good about it? The Jewish people, in other words the priests, could not recognize Jesus. The Roman soldiers did not see him, and his opponents could not see him even if they tried. Only the person whose nature is connected to the mind and the body, the person who has established the standard of value that represents the whole, can see Jesus. There is a dimension in our seeing and hearing ability that depends on our nature.</p>
<p>Consequently, now you must go before humanity with the value of goodness and righteousness. The body resists this. This is the basic nature of Satan.</p>
<p>Where is the person who possesses God without appearing in public or having anyone know about him? Where is the person who possesses the original heart without anyone being aware of it? Where is such a person? The eternal God will accompany those who seek such a person.</p>
<p>Therefore, if we cannot enter such a position today, then we must at least be able to distinguish the evil sphere of dominion and the good sphere of dominion. You must not only be able to distinguish this with your mind and body, you must also be able to discern without even thinking about it. If you cannot awaken to the value of Heaven, then you have no vertical relationship with Jesus, even in the slightest degree. Hence, you must be able to distinguish and recognize everything about Satan. Unless you are someone who can discern all the subjective elements of evil that is left in heaven and earth, you cannot completely set the condition of victory before God.</p>
<p>If you can set such a condition, you will not suffer any pain while you are living on the earth. This is because one who possesses God has his mind held tight by Jesus and his body held firmly by the Holy Spirit.</p>
<p>Nonetheless, now these two have come together, so the spirit world is coming toward the physical world, while the physical world is coming toward the spiritual world to work in full cooperation. Furthermore, the Father, the Son and the Holy Spirit are all working together. Consequently, in such times, you must not only be able to go before Jesus and the Holy Spirit to offer a bow; you must also be able to go before God.</p>
<p>Furthermore, you should walk the fundamental course of distinction in your life of faith based on experience. As the unchanging victor representing eternity before all things, you should set the standard of which you can be proud. If you cannot set the standard yourself, then a condition for sorrow will remain on the earth. What is more, as long as conditions for sorrow remain, even when you go to heaven, you will have a difficult time finding the internal heart of God. Therefore, you must reveal yourself as the being of life born through Jesus of the heart and the Holy Spirit of the body, and emerge as the substantial embodiment of glory. When this takes place, you will finally become the embodiment of faith.</p>
<p>Thus, if you can restore your glorious self and take on the work without the help of the Trinity, just as laws run this universe, a joyful mind will dominate the whole of you. That kind of life is not momentary, but eternal. So you should be able to proudly step forward before the creation as the lord of dominion, pronouncing, &#8220;God is my possession. The Lord is mine, the Holy Spirit is mine, and I, also, am mine.&#8221; You should be able to say to Heaven, &#8220;Oh, Father! Thank You.&#8221;</p>
<p>There are no contradictions in the law of Heavenly fortune. Because humankind has been elevated as the representative of the subjectivity and ideology of the Creator, since they have minds and bodies, they cannot exist without the relationship between the two. Therefore, you must never forget that only when you build a world of dominion on the earth that can connect all things in heaven and earth, can the Lord&#8217;s glory be unveiled.</p>
<h3>Prayer</h3>
<blockquote><p>Beloved Father, when we realized that the fateful path that lies ahead of us is this difficult, like steep mountains with thick forests, we find that the scope of our belief is so narrow. Because we have been following the path of the will too narrowly, too passively and too inadequately, we have to make a frank report to You.</p>
<p>Father, from this hour, please allow us to be governed by God, who is guiding the whole dispensation of the universe. Please grant sympathy so that we can look up to Your image. Jesus, please hold us firmly. Holy Spirit, please lift us up. My Father, I sincerely wish and desire that You will raise us up so that we can be capable enough to adequately represent the creation on the earth and grow as the original substantial being who can naturally distinguish good from evil. Please let all your children who have gathered here this evening forget all the concepts about themselves, Father. Please remove Satan&#8217;s right of possession from our bodies. In this way, please guide us to be restored as the unchanging individuals whose minds possess only God, call out only to God, and are proud only of God.</p>
<p>We know that Satan will submit naturally when we return glory to the Father, when all things and the countless saints in heaven join in harmony and cry out in one voice, and when the singing of Hallelujah in gratitude echoes in heaven and earth. Lead us to make this come true.</p>
<p>Please let the whole subjectivity of the Father bear fruit in us, and please allow us, who have been called upon to represent the whole, to sing the victorious song of Hosanna before the Father. Amid the harmony of all things, please allow us to become the children of victory who represent Heaven and the center of testimony. Father, as we wished for and desired these things, we prayed everything in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html" title="Permalink to Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html" rel="prev"><span class="meta-nav">&laquo;</span> Let us Become People Who Pay Back our Debts</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html" rel="next">The Responsibility of Those Who Have Become the Root <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,208 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-735 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-735" class="post-735 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:09:32+01:00"> <a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:09:49+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let Us Fulfill the Will of God&#8217;s Love<br />
That Seeks to Bring Unification</h3>
<h3 style="text-align: center;">June 6, 1956 (Wednesday)<br />
Seoul, Korea</h3>
<h3>The scripture reading for this sermon was not recorded</h3>
<p>The topic of today&#8217;s sermon is <em>&#8220;Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification.&#8221;</em> I will speak briefly on this topic. The content of this speech is something you know very well. You even have it memorized. You consider it to be the most important words of truth in your life of faith and the center of the good life you are seeking.</p>
<h3>The hope of God in working through the prophets</h3>
<p>Because the will of God was not fulfilled due to the fall of Adam, the dispensation of restoration has continued through the course of history until today. God&#8217;s original will behind creation was that God and men would live in harmony centering on one purpose and with one love. With heaven and earth rejoicing in the love of God, love would be established as the actual center of life around which everyone could live as one. However, due to the fall of Adam and Eve, the love of God remained only as the love of God. In other words, the love of God, which should have been connected to men, could not make the bond alone. It had to abandon men and all of creation.</p>
<p>Consequently God has spent the last 6,000 years hoping for the day when, centering on the love He wanted to implant, He can bring together all of the creation and live in joy with them. However, until the present, all created beings remain unable to unite centering on the love of God, and the ideology and hope of God&#8217;s love remain unfulfilled. Thus, God has been propelling the dispensation forward to accomplish His will at any cost. Likewise, although God has worked for a long time since the fall of man to fulfill His hope and to find the heart to trust and love men, until now, He has been unable to accomplish and find it.</p>
<p>When we look back at the history of God&#8217;s dispensation, we find that by raising Abraham, God was trying to establish the immutable standard of hope, ideals and love toward men. Only when the will of God is fulfilled as such, only when such a center of love is established, can the relationship between God and men be built. Based on that relationship, God can feel the joy of a new ideal. This is the reason He chose Abraham and lifted him up. Nevertheless, because Abraham could not establish the center of love, from then until the time of Jesus, God was laying the foundation to fulfill the will of Heaven&#8217;s love.</p>
<p>Hence, the 4,000-year history until Jesus was the period in which God had to find one person who realized the hope, faith and love of God. If such a person were not found, then God&#8217;s hope, faith and love would have become divided and unification would not be possible in any period of history. God first laid the foundation of hope. After that foundation, He laid the foundation of faith. On that foundation, He tried to lay the foundation of love. Eventually He was trying to usher in the day when He could present before heaven and earth the incarnation of all these, the demonstrative embodiment of the hope of the whole, the faith of the whole and the love of the whole. However, if He could not bring about such a day then the ideal of unification centering on the love of God could not be accomplished on the earth.</p>
<p>To bring about such a day, God worked hard to lay the foundation, dividing the 4,000 years of history since Abraham through Moses and John the Baptist into these three stages of hope, faith and love. Jesus Christ was the very person who came as the substantial incarnation on that foundation of hope. Because Jesus Christ appeared as the incarnation God had longed for, he was the ultimate culmination of the dispensation of God, which God had led with hope for 4,000 years.</p>
<p>Jesus came as the culmination on the earth and he disseminated the New Testament gospel brought about by the divine will. In other words, he promulgated the gospel of faith. Since then, 2,000 years of history have passed centering on that gospel of faith.</p>
<p>The person who is to come on the foundation of the accomplishments of the gospel of faith, representing heaven and earth and emerging as the incarnation of the love of the whole, is none other than the Lord of the Second Advent. What is God trying to do at the time of the Second Advent? You must understand that the purpose of the 6,000-year history of God&#8217;s dispensation was to sow the seed of life on the grounds of faith built until now that they may bear fruit centering on the Lord of the Second Advent.</p>
<h3>The central element of the Completed Testament Age</h3>
<p>Today we look up to God as the center of our hope and faith. Moreover, we look to Him as the center of love. God, who exists as the center of hope, faith and love, led men through the Old Testament period. That represented hope, and the New Testament period represented faith. From now on, we must pass through the Completed Testament period, which represents love.</p>
<p>What can remain as the eternal, unchanging, central element of the Completed Testament, which is the time of the Second Coming? It is the love of God. While it is the central element of the whole, it is also the element of the ideal of the whole.</p>
<p>For this reason, men have passed through the dispensational course of hope and faith for the sake of this love until now. However, you must understand that if you do not walk the dispensational course of love, then the foundation of unification that God must build on the earth centering on love will be shattered.</p>
<p>Jesus Christ, who came as the center of faith on the foundation of hope, spoke his words in an attempt to implant faith on the earth. If the people of his time had received Jesus Christ as the culmination of hope, the center and embodiment of unlimited faith and as the one who could testify to the eternal love of God and bring unity, they then could have possessed and experienced the limitless hope and faith and the original limitless love of God.</p>
<p>However, because their disbelief caused the death of Jesus, in our life of faith today we can perfect the incarnation of hope, of faith and of love only spiritually. What is the standard of victory of God&#8217;s love? Every being in the universe moves centering on the love of God, but because Jesus, who came as the incarnation of God&#8217;s love passed away, the whole dispensation collapsed.</p>
<p>Jesus hoped that he could come as the hope of God&#8217;s 4,000 years of labor, the center of all things, and become one with God. The human ancestors&#8217; hope to become one with God was shattered because of the fall of Adam and Eve. So, centering on Jesus they were to unite with the ideal of God and arise as the embodiment of faith, but it was fulfilled only on the spiritual level.</p>
<p>Accordingly we today must now inherit the unaccomplished work of Jesus and accomplish it. Just as Jesus became the spiritual and physical embodiment of hope, we must become the same and represent him. Just as Jesus was the embodiment of faith, we must do the same and represent him. What is more, just as he was the embodiment of love, we must become that kind of person. Having done so, we should stand before God and represent the hope, faith and love of Jesus. Furthermore, as the embodiment of the Holy Spirit&#8217;s hope, faith and love, we must fulfill her mission on her behalf.</p>
<p>This is the mission that we on the earth today after the ascension of Jesus, must accomplish for the sake of the Father. Accordingly, when we complete that mission, we can bring about the conclusion of the hope of Jesus and of the Holy Spirit. Furthermore, we can bring about the conclusion of the faith and love of Jesus and the Holy Spirit. Only after you bring everything to this conclusion can the Lord of the Second Advent come to this earth.</p>
<h3>Men should have become the embodiment of the faith, hope and the love of God</h3>
<p>God&#8217;s hope was not His own; it was for the sake of men. God&#8217;s faith also did not belong to Him, but was for the sake of men. Moreover, God&#8217;s love was not for His sake but for the sake of men. Therefore, men must act on behalf of that hope, faith and love of God. When that is done, God can take such men before all things and brag about them as the ones who represent the hope, faith and love of the whole.</p>
<p>To put it another way, He can brag that they are the center of hope for which all things wish. Moreover, He can brag that they are the heroes in whom all creations, any being in heaven or earth, can believe. Not only that, He can brag that they are the center of admiration whom all beings can love.</p>
<p>Just as Jesus Christ appeared as the mediating incarnation representing the love of God, we today must receive the hope, faith and love of Jesus and present ourselves before even the most evil people as living proof of the one hope, faith and love. Unless we become such people, no matter where we go, we cannot set the condition to indemnify the standard of the hope, faith and love of Jesus Christ. Therefore, today we must make recompense to Jesus Christ who came to the satanic world as the embodiment of the hope, faith and love of God.</p>
<p>You are to return the debt to Jesus, not for partial hope, partial faith and partial love, but you must pay back the totality. Men have tried until now to set the one standard on the earth to recompense, but they could not return the whole. Nonetheless, you must understand that Jesus tried to reveal the process through the three main disciples. Who is the person who emerged as the fruit of faith? It was Peter. Who emerged as the culmination of hope? It was James. Who emerged as the fruit of love? It was John.</p>
<p>As these three people took responsibility for one section of the gospel of Jesus and joined as one, we today can obtain the fruit of hope, faith and love. What is more, the history of the dispensation moved along hoping for that to take place. Therefore, the final path is for the three people to become united and to form one perfected body. This is the last teaching Jesus left on the earth.</p>
<p>Therefore, in order for you to emerge as the last perfected person, you must become the representative of Jesus. If you do not stand as one being of substance whose root is in the three disciples of Jesus, you cannot go before Jesus the bridegroom, who raised up the three disciples before he ascended. As you think about this, you must fulfill the hope and faith with which Jesus raised Peter. You must bear the fruit of hope invested in James. You must reap the fruit of the love endowed in John.</p>
<p>If you can do that &#8212; in other words if you can become brides who can stand before Jesus in the last days &#8212; then you will feel within yourseif the joy of the fulfillment of the will that God has yearned for in the 6,000 years, and you will offer gratitude to the Father. Furthermore, you must unveil the happy news that the hope of the faith that God has longed for in history has been realized through Jesus and on behalf of all things. Thus, you must become ones who feel joy while the Father feels joyful, and return gratitude toward Him. You must understand that such a task remains with you as the historical responsibility.</p>
<h3>What the dispensation demands</h3>
<p>The time has come when you must bear the fruit of hope, the fruit of faith and the fruit of love by calling out, &#8220;Oh Father!&#8221; What is that which is asked of you? You must understand the heartbreaking sorrow of God as He held onto hope for 6,000 years. Moreover, you must come to feel the toil of God in His attempt to establish faith for 6,000 years and understand that He has repeated the course of sacrifice for 6,000 years in order to perfect love.</p>
<p>For Jesus, the dispensation of faith is the practical course that represented the fruit of God&#8217;s hope of the 4,000 years. The work of the Holy Spirit was the practical course that represented the faith. Moreover, the work of unification was the next practical course that represented love. Likewise, Jesus built the path of the dispensation with hope. Then with the Holy Spin1t, he sowed seeds and multiplied them and tried to unite all that were multiplied.</p>
<p>Accordingly you must actualize the love of God, the love of Jesus and the love of the Holy Spirit. What is more, you must realize that the time when the hope of Jesus is transformed into the hope of God is the time of the Second Advent. The time when the faith of Jesus is transforming into the faith of God is the time of the Second Advent. The time when the love of Jesus is being disseminated as the love of God is the time of the Second Advent.</p>
<p>If the fruits of Jesus&#8217; hope, Jesus&#8217; faith and Jesus&#8217; love are not materialized in you, then you must find another center of the hope, the faith and the love of God. This is the task bequeathed to you.</p>
<p>To find them, what must you do? You must realize the hope of Jesus, inherit the hope of the Holy Spirit, and inherit the faith and love of Jesus and the Holy Spirit. Having done so, you could say, &#8220;Father, I now understand the toils of the Holy Spirit. I understand the hope of the Holy Spirit. I understand the work of the Holy Spirit carried on with faith. I realize the hope of Jesus. I realize the faith of Jesus. I understand the love of Jesus.&#8221; You must understand that on the earth today there must emerge someone who will go before the Father and say these words.</p>
<p>What kind of being is that person? The hope of that person is the hope of Jesus, his faith is the faith of Jesus, and his love is the love of Jesus. When that one person brings them into union with the hope, faith and love of God, God can finally conclude the purpose left behind as the unfulfilled wish of Jesus and fulfill the will. Accordingly, that person must surpass the prayers that Jesus has been offering until now for our sake on the right hand of God, and step forward before Heaven as the perfected being both spiritually and physically. What is more, when such a person appears and experiences the joy of Heaven through Jesus, God and men can finally become one. You must understand that we must proceed forward until this point is reached.</p>
<p>Consequently we must feel deeply the heart of Jesus whom God labored for 4,000 years to give rise to, and the heart of the Lord of the Second Advent, for whom Jesus toiled 2,000 years to find. Moreover, since Jesus Christ could not materialize the hope of going beyond spiritual perfection and physically complete the substantial manifestations of hope, faith and love, it is our responsibility to bring them to completion.</p>
<h3>The Lord of the Second Advent is the representative of faith, hope and love</h3>
<p>We must find the Lord of the Second Advent, who is to come centering on the love of Jesus and build the relationship with God through which we can communicate with Him. What should we do to accomplish this today? We must emerge as the demonstrative, substantial manifestations of hope, faith and love. If the Lord of Second Advent comes on such a foundation laid by you, the hope that God held toward Jesus will be realized through you. Therefore, the Lord of the Second Advent will come forward as the hope of the whole, the faith of the whole, and the love of the whole.</p>
<p>Nonetheless, when the Lord of the Second Advent emerges as the love, hope and faith, you are not to rejoice by yourself. You are to thank him because he is the cause of happiness and hope. You must thank him for the fact that you can grow as the substantial embodiment of faith. When you do that, the whole of heaven and earth will respond to you and relate to you as the embodiment of love. In such a way you must feel the movement of all of heaven and earth.</p>
<p>In such feelings, you are a pioneer to fulfill the hope that God held in Jesus through the practical course that can substantiate hope. Moreover, you must pioneer the works of the Holy Spirit, which represent faith. Furthermore, you are to put into practice the life of service that represents love, and through unification become people whom humanity can serve in glory</p>
<p>For this reason, to realize the final love of God, you must possess the practical hope, the faith and the love of the Holy Spirit. At such a moment, you can live eternally attending the Lord and attending God.</p>
<p>What is more, we today must overflow with joy before the creation and humankind on the earth. You are to build an era when the whole world can feel equal joy and live eternally</p>
<p>Wherever you go, you must become the practical grounds where the hope of God is realized, where the faith is put into practice, and where love is incarnated. The will of God must be fulfilled on the earth, and the hope that He wanted to realize through Jesus must he realized through us and be linked to the creation on the earth. Moreover, when the joy of God is connected to the creation through men, the unification that God hopes for is completed.</p>
<p>Consequently to be elevated as the source of the hope of God, you must first ask yourself whether you have felt joy as the fulfillment of the hope representing the whole creation in heaven and on earth. Moreover, you must ask yourself whether you have become someone who can rejoice on behalf of the faith that sustained countless people&#8217;s belief in God up to now. Going one step further, you must ask yourself whether or not you can feel the love coming from and offered to God.</p>
<p>However, the one person who comes as the fulfillment of everything is the Lord of the Second Advent. In other words, the Lord of the Second Advent is someone who comes as the representative of everyone&#8217;s hope, faith and love. When he appears, you can possess his hope, the faith of the Holy Spirit and love only if you have already made preparations to serve him. Moreover, at such times you must go forward to fulfill the will of God and put it into action. Accordingly you must appear as the incarnation of the hope and the embodiment of faith and love who has transcended the emotions of the people who live in the fallen realm of the world today. If such persons exist on the earth, the Lord of the Second Advent will come for them.</p>
<p>For what purpose does he seek after those people? He comes to physically conclude the mission that Jesus Christ left behind unfinished. He comes to fulfill the will centering on the spiritual and the physical, which God has hoped for during the 6,000 years.</p>
<p>Accordingly, when a person who can be an example in respect to that will appears on the earth, no matter what kind of unknown person he is, you must serve him as the being of hope, faith and love. The one world where the ideal of unification has been realized centering on love also possesses hope and faith. Therefore, you carry the momentous responsibility of ushering in the day when heaven and earth can respond to your life centered on love.</p>
<h3>The practical foundation of the Lord of the Second Advent</h3>
<p>Even if the Lord of the Second Advent comes on the earth, there must first be the practical foundation laid by men. Even if he is the representative of the eternal love of God, he must have the foundation of men like you. Such an important responsibility lies upon your shoulders. Accordingly you must understand that you represent the 2.4 billion people of humanity and countless ancestors who have gone to the spirit world. Furthermore, you are the hope of all things in heaven and on earth. All of heaven and earth wish that you would become the substantial body of faith and the demonstration of love.</p>
<p>Thus, from now on, you must feel this in your heart. No matter what you do &#8212; whether you are eating, starving, living or dying &#8212; you must testify to and protect the center of the whole in your daily life. By doing so, you must return joy to God through all things in nature. You bear such a momentous responsibility today.</p>
<p>When you reflect on your past life of faith, have you become the living proof of having fulfilled the hope? The problem is whether you have become the living proof of having fulfilled the faith and love.</p>
<p>When you become such people, you will feel that the hope, faith and love of Jesus are really the hope, faith and love of God. Accordingly you must now feel the hope, faith and love of God given to us through Jesus.</p>
<p>If there is someone who feels this, such a person is directly living in the grace of God. Moreover, such a person will naturally manifest the hope, faith and love of God even when he is not trying to. If you become such people, then wherever you go, you can share with others the hope of God, the faith of God and the love of God.</p>
<p>You must keep in mind that in place of God you can serve the Lord of the Second Advent, who can only come upon such a foundation.</p>
<h3>Prayer</h3>
<p>Beloved Father, we thought that the reason the will of the world hidden deep in the universe had not been fulfilled lay in You, but we now realize that the responsibility lies also with us in the fall of man. We realize that as long as God&#8217;s eternal hope remains, eternal hope also remains in us. As long as the eternal will of the faith of God remains, the eternal will of the faith also remains in us. As long as the eternal practice of the love of God is not completed, the responsibility lies in us to form the manifestation of eternal love.</p>
<p>To inherit the history of indemnity today we must inherit the hope of the 4,000 years and manifest it as the hope of the 6,000 years. We must inherit the faith of the 4,000 years and manifest it as the faith of the 6,000 years. We must inherit the love of the 4,000 years and manifest it as the love of the 6,000 years. Since the responsibility remains with us to stand before God and secure the hope of the 6,000 years as eternal hope, the faith as eternal faith, and the love as eternal love, please forgive our inadequacy and insufficiency. Please forgive us our lack of loyalty and filial piety. Please forgive us for having elevated ourselves.</p>
<p>The time has come now when the hope of humanity is to be realized. The faith is to be fulfllled. The love of humanity as one essence is to be manifested. Yet where is the fulfillment of that one essence? Although we are unworthy, please awaken us to realize that we must prepare ourselves anew as the brides.</p>
<p>At such a moment, the toil and suffering of Jesus, who brought perfection on the internal level, can bear fruit through us. They can appear in the ideals of the Second Advent, and can unfold the external history.</p>
<p>We believe that the ones who must play the central roles in heaven and earth today are the devout believers who stand before the word of the Second Advent in the last days. Although You, Father, want to entrust in us Your eternal hope, we are concerned whether or not we can be entrusted with that hope. Although You want to entrust in us the love of God, we worry if we can be entrusted with the love.</p>
<p>Taking responsibility for everything on behalf of the Lord, we will go before the Father as unchanging people who belong to the Father&#8217;s love and as the eternal tribe of hope. We will become the tribe of eternal faith and eternal love. Please lead us to understand that such a responsibility has been assigned to us.</p>
<p>The purpose of Jesus, who is the victorious center of the chosen Israel, must be realized through us. In other words, we must realize the essence of hope, faith and love, which represents the whole. Now, after the work of the Second Advent, we must stand up as the fulfillment of the hope of Jesus, as the heirs of the faith, and as the heirs of the love who must take on the mission that Jesus had carried out on the earth. Please let us understand this clearly.</p>
<p>We who stand at the pass of the fall now are in the process of restoration, so we must be able to say &#8220;Father, we will take on the burden of realizing the Father&#8217;s hope, faith and love,&#8221; and we should be able to return the hope, faith and love to the Father. Furthermore, we must stand before humanity as the center of love. We know that only when we become the victors who can receive the Father&#8217;s love by doing these things can we obtain the quaIifications to represent the ultiimate glory in the last days. So, please guide these children who have gathered here to become people to whom Father can proclaim, &#8220;You are my hope; ones that I can believe in and love.&#8221;</p>
<p>Therefore, the Father&#8217;s joy must be turned into the joy of this earth, and the love of the Father must become the love of this earth. The hope and the faith of the Father must be turned into the hope and faith of this earth. Please allow us to bring horizontal joy to the Father while we uphold the ideals of the Second Advent, and please allow the Father&#8217;s will to be realized through us and allow its glory to be exhibited before the whole created world.</p>
<p>We must be able to sing the glory of Moses through our life and daily living. Please allow all of us to become one through the love of Moses. We know that all of the 2.4 billion people of humanity and the countless saints in the spirit world have one thing to be proud of, and that is the fulfillment of God&#8217;s will. So we earnestly request that we can take the fulfilled hope, faith and love as the eternal pride and make them the center of heaven and earth. We offer these words of prayer in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html" title="Permalink to Let Us Fulfill the Will of God&#8217;s Love That Seeks to Bring Unification" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html" rel="prev"><span class="meta-nav">&laquo;</span> Like Jesus, Let Us Return the Glory of the Resurrection to God</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html" rel="next">Let us Become People Who Pay Back our Debts <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,212 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The Pledge That Must Be Fulfilled &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-748 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-748" class="post-748 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">The Pledge That Must Be Fulfilled</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:30:01+01:00"> <a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:30:01+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h1 style="text-align: center;">The Pledge That Must Be Fulfilled</h1>
<h3 style="text-align: center;">July 8, 1956<br />
Headquarters Church, Seoul, Korea</h3>
<p style="text-align: center;">Luke 22:14-34<br />
<em><span id="en-NIV-25879" class="text Luke-22-14"><sup class="versenum">14 </sup>When the hour came, Jesus and his apostles reclined at the table.</span> <span id="en-NIV-25880" class="text Luke-22-15"><sup class="versenum">15 </sup>And he said to them, <span class="woj">“I have eagerly desired to eat this Passover with you before I suffer.</span></span><span id="en-NIV-25881" class="text Luke-22-16"><span class="woj"><sup class="versenum">16 </sup>For I tell you, I will not eat it again until it finds fulfillment in the kingdom of God.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25882" class="text Luke-22-17"><sup class="versenum">17 </sup>After taking the cup, he gave thanks and said, <span class="woj">“Take this and divide it among you.</span></span> <span id="en-NIV-25883" class="text Luke-22-18"><span class="woj"><sup class="versenum">18 </sup>For I tell you I will not drink again from the fruit of the vine until the kingdom of God comes.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25884" class="text Luke-22-19"><sup class="versenum">19 </sup>And he took bread, gave thanks and broke it, and gave it to them, saying, <span class="woj">“This is my body given for you; do this in remembrance of me.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25885" class="text Luke-22-20"><sup class="versenum">20 </sup>In the same way, after the supper he took the cup, saying, <span class="woj">“This cup is the new covenant in my blood, which is poured out for you.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25885a" data-link="[&lt;a href=&quot;#fen-NIV-25885a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+22:14-34#fen-NIV-25885a">a</a>]</sup></span></span> <span id="en-NIV-25886" class="text Luke-22-21"><span class="woj"><sup class="versenum">21 </sup>But the hand of him who is going to betray me is with mine on the table.</span></span> <span id="en-NIV-25887" class="text Luke-22-22"><span class="woj"><sup class="versenum">22 </sup>The Son of Man will go as it has been decreed. But woe to that man who betrays him!”</span></span> <span id="en-NIV-25888" class="text Luke-22-23"><sup class="versenum">23 </sup>They began to question among themselves which of them it might be who would do this.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25889" class="text Luke-22-24"><sup class="versenum">24 </sup>A dispute also arose among them as to which of them was considered to be greatest.</span> <span id="en-NIV-25890" class="text Luke-22-25"><sup class="versenum">25 </sup>Jesus said to them, <span class="woj">“The kings of the Gentiles lord it over them; and those who exercise authority over them call themselves Benefactors.</span></span> <span id="en-NIV-25891" class="text Luke-22-26"><span class="woj"><sup class="versenum">26 </sup>But you are not to be like that. Instead, the greatest among you should be like the youngest, and the one who rules like the one who serves.</span></span> <span id="en-NIV-25892" class="text Luke-22-27"><span class="woj"><sup class="versenum">27 </sup>For who is greater, the one who is at the table or the one who serves? Is it not the one who is at the table? But I am among you as one who serves.</span></span> <span id="en-NIV-25893" class="text Luke-22-28"><span class="woj"><sup class="versenum">28 </sup>You are those who have stood by me in my trials.</span></span> <span id="en-NIV-25894" class="text Luke-22-29"><span class="woj"><sup class="versenum">29 </sup>And I confer on you a kingdom, just as my Father conferred one on me,</span></span> <span id="en-NIV-25895" class="text Luke-22-30"><span class="woj"><sup class="versenum">30 </sup>so that you may eat and drink at my table in my kingdom and sit on thrones, judging the twelve tribes of Israel.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25896" class="text Luke-22-31"><span class="woj"><sup class="versenum">31 </sup>“Simon, Simon, Satan has asked to sift all of you as wheat.</span></span> <span id="en-NIV-25897" class="text Luke-22-32"><span class="woj"><sup class="versenum">32 </sup>But I have prayed for you, Simon, that your faith may not fail. And when you have turned back, strengthen your brothers.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25898" class="text Luke-22-33"><sup class="versenum">33 </sup>But he replied, “Lord, I am ready to go with you to prison and to death.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25899" class="text Luke-22-34"><sup class="versenum">34 </sup>Jesus answered, <span class="woj">“I tell you, Peter, before the rooster crows today, you will deny three times that you know me.”</span></span></em></p>
<h3 style="text-align: center;">Prayer 1</h3>
<blockquote><p>Father of love! Please grant the love of compassion. This group, who did not have a place to lean on, has come to You to lean only on You, Father, forgetting everything else. Please allow all of our hearts to picture the sung-sang of the Father, and please allow our bodies to adore the hyung-sang of the Father. As a result, please let us become one with the love of the Father, which was immersed in Heaven, and allow the glory of Heaven that You seek to be manifested.</p>
<p>Father, please take care of these people who have gathered here. Cling onto their minds and bodies, and convert the concepts they have into concepts that are suitable for the dispensation and which You can control. In the last days, please allow the holistic concept that the Father demands from all humanity to be implanted deeply in their hearts.</p>
<p>Father, please take charge of the children who have gathered in this hour, and if there are any elements that are at fault, Father, please eradicate them with the power of the Holy Spirit and of the Trinity and by penetrating into them with Your eyes full of fire. Please guide them to offer all that they have before the dignified Father. Let them become liberated from sin and evil, and let them receive the blessing of freedom so that they can go before humanity and all things to boast about the Father alone. Also, loving Father, I pray sincerely that You would allow them to serve the True Father, and raise them to become children who can return joy to that Father.</p>
<p>Please reign over those who have gathered here, and on the countless altars that represent the people. On the altar of the whole that represents the humanity of the world, Father, please bestow the same works of miracles, and allow the altars to manifest the central will of the dispensation in the last days. Beloved Father, I earnestly wish and hope that this will be done.</p>
<p>We have put down our minds and bodies on the altar of the Father, so please separate the positions of Cain and Abel. Please lead them not to become the Cain-type sacrifice, but let them become the purified Abel-type sacrifice. Just as You are pleading with humanity until the day the dispensation comes to a conclusion, beloved Father, we sincerely wish and desire that You will make this altar the representative altar that can make the appeal to Heaven until the day that all of Your will concerning the world is fulfilled.</p>
<p>Father, who commands all the grace and blessings of today, please appear before us as You will. Please grant the blessing that You are going to allow, and lead us to avoid that which we must avoid. In this way, Father, please guide us to become children who are capable of taking on the eternal will that You entrust in us. I prayed all the words in the name of the Lord. Amen.</p></blockquote>
<h3 style="text-align: center;">Prayer 2</h3>
<blockquote><p>Father! Please reveal Your commands and will to those who want to uphold them, and please guide us to uphold the will of the dispensation and materialize Your wishes on Your behalf. Father, I sincerely pray this. The words that are going to be given today did not appear today. Rather, it took a long period of history for them to be revealed. Moreover, because hidden in these words are the sad and unforgettable stories of Jesus and his beloved disciples, we know that our ancestors who also thought about this walked toward the path of death without hesitation. We know very well that to endorse the new pledge left behind, the apostles of Jesus and all the believers in the 2,000 years since then did not hesitate in their fight to realize the promised will and earnest wish on the earth.</p>
<p>Father, please consider us with pity. Please allow us now to open our minds and act for the apostles who attended Jesus 2,000 years ago. Please let our footsteps pass through the ordeals that the apostles of the past have experienced, so that in the last days, we can fulfill the purpose of the dispensation of the whole.</p>
<p>Father, I sincerely wish and desire that You govern over everything that follows, and realizing the will of the whole that You are going to pursue, receive the glory of ushering in the day of rejoicing. I prayed all these words in the name of the Lord. Amen.</p></blockquote>
<p style="text-align: center;">The topic of the sermon I want to give you is <i>&#8220;The Pledge That Must Be Fulfilled.&#8221;</i> I will speak briefly on this topic.</p>
<h3 style="text-align: left;">The Meaning Behind Jesus&#8217; Giving the Bread and Wine</h3>
<p style="text-align: left;">You must know very well that God, who has been carrying on the work of salvation through the dispensation of resurrection for 4,000 years, has established a new promise. The dispensation of resurrecting Jesus alone could not combine the will of Heaven and the will of earth and bring completion, so He has used the new promise to combine the will of Heaven and the will of earth and has tried to claim back the original garden that He promised.</p>
<p style="text-align: left;">When you look at this, it is written that the cup that Jesus passed and the bread that Jesus gave are the new promise. After Jesus left, we have received the flesh and blood of Jesus. You must know that this represents the life of the whole and the truth of the whole, which must be realized soon.</p>
<p style="text-align: left;">What do the blood and flesh of Jesus symbolize? They do not symbolize the flesh and blood of one individual, Jesus. From a broad perspective, they symbolize heaven and earth. In a narrow sense, they represent the center and the individual. Moreover, the flesh symbolizes the truth and the blood symbolizes the Holy Spirit.</p>
<p style="text-align: left;">Jesus has given us all this unconditionally. Jesus, who has been so giving, did not limit himself to his own problems. All the problems of any being connected to him, the center, were his problems.</p>
<p style="text-align: left;">What blocks the relationship between God and men? Heaven&#8217;s will should be manifested on the earth, and all situations on the earth must be concluded as to the will of Heaven, moving with the same purpose. This process has been thwarted. Accordingly, Jesus, the hero of love, symbolizes the one will that is going to emerge for the glory of the victorious Heaven, and he has been working hard until now.</p>
<p style="text-align: left;">The fact that God has found one man, Jesus, after 4,000 years of suffering, symbolizes that He can possess the whole of heaven and also all of the earth. Consequently, those who believe in Jesus can possess all of heaven, as well as all of the earth. However, we are entrusted with the will of the dispensation, which requires us not to permanently possess what we have as our own, but to return it back to God.</p>
<p style="text-align: left;">Because Jesus left after establishing the new promise, ever since there remains the unfulfilled condition that the spirit world and the physical world must communicate with each other centering on the apostles who follow Jesus. If Jesus had not passed away, then heaven and earth could have communicated with each other centering on Jesus, but because he passed away, Jesus came to represent the conditions of heaven, and the Holy Spirit came to represent the conditions of earth.</p>
<h3 style="text-align: left;">The Person Who Represents<br />
the Will of Jesus and the Holy Spirit</h3>
<p style="text-align: left;">Who then is the person who can stand as the mediator and act on behalf of the will of Jesus and of the Holy Spirit? You must never forget that it is the apostles and we who have believed in the new words of promise on the earth.</p>
<p style="text-align: left;">Where is the unfulfilled wish of Jesus? The wish of Jesus is not found in heaven. Where is the unfulfilled wish of men? It is not found on the earth. The wish of Jesus must be linked to the will of the earth while the wish of humankind must be linked to the will of heaven. Accordingly, centering on Heaven, as the holy body that replaces the blood and flesh that Jesus gave, you must become the sacrifice representing heaven and earth.</p>
<p style="text-align: left;">If this is not accomplished, Jesus and the Holy Spirit can never become one. The Holy Spirit will continue to work on the earth by herself, while Jesus cannot but continue to work in heaven by himself.</p>
<p style="text-align: left;">What is the meaning of the words that Jesus said to his disciples, &#8220;You must drink my blood and eat my flesh?&#8221; You must never forget that implied in those words is the earnest heart of Jesus that pleads, Even if I were to go, you must come to own everything that falls within the sphere of the dispensation and materialize my unfulfilled wishes.</p>
<p style="text-align: left;">The blood that the disciples received from Jesus symbolized the spiritual aspect. The flesh, which symbolizes the physical aspect, signifies the Holy Spirit. Therefore, Jesus and the Holy Spirit wanted to form a holy body through the flesh and blood and hoped to be established as the central figure who can head toward the one purpose. What is more, the blood of Jesus symbolizes heaven while his flesh symbolizes the earth. Accordingly, you must know that the great hope and aspirations of Jesus are manifested in that.</p>
<p style="text-align: left;">Now, after having become a sacred body through the Holy Spirit, your mind has to become connected to the holy body of Jesus. This symbolizes the course of the history of restoration. When God created Adam and Eve, He first created the body and then created the spirit. After creating the physical body, He blew life into the nostrils and created Adam and Eve. Similarly, just as the two principles are combined to create one man, in the course of restoration, since the Holy Spirit centered on Jesus had established the new promise, from then until now, the works of Jesus and the Holy Spirit, which combine heaven and earth, are being carried on in conjunction. When you think about this, you have to realize how important is the responsibility we bear.</p>
<p style="text-align: left;">You must understand that insignificant apostles like us determine the fate of heaven and earth. You represent the apostles! You have been born with the holy body of Jesus and must manifest the power of the life of Jesus that can act on behalf of God. Inspirational works of the Holy Spirit must emerge which can act on behalf of Heaven. When you move as one before the will of Jesus, which seeks to restore the whole world of creation, Heaven will move according to the direction you move.</p>
<p style="text-align: left;">If you do not fully establish the condition based upon which Heaven can act through men, Jesus and the Holy Spirit will protest against you. The universal mission that Jesus left behind will also protest against you. When you think about this, you have to realize that through us who amount to nothing, Jesus is trying to fulfill the great universal will in which he can move heaven and earth at his will.</p>
<p style="text-align: left;">Jesus does not have the authority to make decisions without the aid of men. The Holy Spirit also does not have the authority to decide. Only we have the authority to decide.</p>
<h3 style="text-align: left;">Recompense for the Flesh and Blood<br />
Received from Jesus</h3>
<p style="text-align: left;">Until now, the history of the New Testament was based on the concept, &#8220;Lord, please do it for us.&#8221; It was a history with a limitation, which made a demand for the fulfillment of a wish. The history of the New Testament could not free itself from this limitation and remained stagnant. We must transcend the words of the New Testament. We must transcend that history and receive the grace and blessing of Heaven. We must obtain the whole merit of Jesus, who tried to possess everything in heaven and on earth. Furthermore, transcending the limitation of the New Testament, we must be able to say, &#8220;Father! Please grant us a new promise.&#8221;</p>
<p style="text-align: left;">You must manifest in your life the appeal that Jesus was making with his blood as his flesh was being torn on the cross. The responsibility of humankind, which must be completed before we can go to heaven, is made a part of the promise by Jesus. However, it must go beyond just fulfilling the promise itself. You must carry the grace of the whole, the wish of the whole, and the life of the whole within yourself. Exceeding the limit with the ideals of your life, you must set the standard on the earth to give freely and bring it to perfection. If you cannot achieve this, there is no way to resolve the suffering and grief of Jesus. We dwell in the middle of the process of realizing the wish right now. We are heading toward the goal and achieving the wish. If you move within this process, you can bring the promise of faith that you have made to a conclusion. You must understand that one who steps over that kind of limitation recompenses for the flesh and blood of the Lord that he received in that ultimate moment.</p>
<p style="text-align: left;">In this sense, what are we going to do? We must be able to dare to represent Jesus, the Holy Spirit and God in front, back, left, right, up and down. If you cannot establish on the earth the day when the final results are brought by men, which is the will of heaven and of earth, then the will of God and Jesus cannot be accomplished. What is more, when we think about that will, we must realize that insignificant as we are, our value is enormous.</p>
<p style="text-align: left;">What is the one thing Jesus demanded as he was giving out his flesh and blood to the disciples? He said, &#8220;Take this and divide it among you.&#8221; You must never forget this. Since we have received the flesh and blood of Jesus, as long as we take responsibility for the problems in Heaven on behalf of Jesus, then the will of God will be fulfilled. This is the wish of Heaven.</p>
<p style="text-align: left;">Today we have the responsibility of the last days, which calls upon us to build relationships among ourselves and to seek the altar of victory as a condition of having received the flesh and blood of Jesus. You must feel deeply that we bear such a responsibility.</p>
<h3 style="text-align: left;">The Will of the Lord Who<br />
Requested Us to &#8220;Love One Another&#8221;</h3>
<p style="text-align: left;">The principle that comes down from above does not change. Who is going to find the immutable relationship that will link the principles of high and low, as well as left and right? You must find it. Though history and the era might change, Jesus and the Holy Spirit have remained as the unchanging center and have persisted in the same direction. Just as Jesus and the Holy Spirit gave and received, we also must form those kinds of relationships among ourselves. You must understand that if we cannot build such relationships, then the altar upon which God can operate on the earth cannot be constructed.</p>
<p style="text-align: left;">Do you understand the heart of Jesus, who distributed his own flesh and blood? It was an unspeakably bitter and sorrowful heart. In the world today, those who know the will and are trying to live for its sake must try to manifest the will, even if that means that they have to be in a bitter and miserable situation and go through crushing ordeals that are comparable to the melting of bones. Accordingly, you must be able to fathom how it must be for Jesus to look down upon those who have not felt this and do not understand the will.</p>
<p style="text-align: left;">If you do not understand this kind of historical circumstance, then you cannot even hold a horizontal holy banquet among yourselves. Therefore, what we need today is the way of life that can allow us to share with each other the heart of love that we feel when we communicate with God and Jesus. In other words, we need a way of life that manifests the love of the holy body. Linking people with people and connecting denominations with other denominations, we have to understand the request of Jesus, who asked us to share the heart of love with each other for the sake of transcending denominations and entering one sphere centering on the love of Heaven, without paying attention to the external forms. You must understand that those among you who do not have a friend to whom he can give himself and in return receive all of his friend is a truly miserable person. What is more, because the Holy Spirit does not change before Jesus, even if humankind changes, Jesus has been carrying on a relationship of giving and receiving with her. Accordingly, you must stand on the foundation to give and receive with her and fight on behalf of the history of the spiritual world.</p>
<p style="text-align: left;">Now the time has come when we must bring to a conclusion the one final wish that Jesus left behind for us. If you want to link this wish to the left and right, then what should you do? You must first become one who can serve on the earth. You must fight on the earth and become a martyr. You must be able to serve the righteous people on the earth.</p>
<p style="text-align: left;">Today you must take to heart the words that Jesus spoke. He said, &#8220;Those who serve everyone will be served by others,&#8221; and &#8220;Those who try to elevate themselves will decrease.&#8221; This is the center of our life today, which we feel on the horizontal plane. Therefore, we must learn to serve any and every person and learn to become friends to everyone and learn to protect them.</p>
<h3 style="text-align: left;">To Fulfill a New Promise</h3>
<p style="text-align: left;">Since new words of the New Testament have been promised, we must feel the internal heart from which Jesus gave commands. While we fathom that heart, we can comprehend the ideals as well as the practical aspects. By doing so, we are to fulfill the will of Jesus and the Holy Spirit in their place. If that will is not realized through us, then in the last days, the works of Jesus and the Holy Spirit will be terminated. Should the works of Jesus and the Holy Spirit be terminated, on the day of termination you should stand alone and understand the wishes of Jesus and the Holy Spirit and become a person who can walk the practical course that Jesus had walked, championing the new ideals on behalf of Jesus and the Holy Spirit.</p>
<p style="text-align: left;">We have received Jesus&#8217; new flesh and blood of promise. What is the mission left for us? It is fulfilling the new promise. To do this, we must be able to easily win over Satan without the help of the Trinity in the last days. What then is the center of the victory we can bring over Satan? It is doing things that Satan is incapable of doing. We must do deeds of which Satan is incapable.</p>
<p style="text-align: left;">The essential nature of Satan is arrogance. The essential nature of Satan is jealousy. The essential nature of Satan is living only for his own sake. Therefore, the lessons that Jesus and the Holy Spirit emphatically stress are, &#8220;Be meek and humble; sacrifice; be the sacrifice.&#8221; These are the things Satan cannot do. If Satan were to become meek, he has to first repent for all his sins before God and turn around. If there were no jealousy in Satan&#8217;s heart, then this world today would turn quickly toward Heaven.</p>
<p style="text-align: left;">Therefore, you must first nurture those elements that are diametrically opposed to Satan. Moreover, you are not to stagnate in that realm of limitation, but you must exceed that limit and enter a new sphere of promise. When you establish an immutable center by doing that, you can fulfill the new promise made as one who has received the flesh and blood of Jesus. If you cannot be in the position to discuss the things that God could not discuss with Jesus and Jesus could not discuss with the Holy Spirit, in other words, if you cannot stand as the central figure who represents all the standards of heaven and earth, then you must know that while the promised will of Jesus cannot be materialized, at the same time the promised will that God desires also cannot be fulfilled.</p>
<p style="text-align: left;">Today, even if we do not possess anything of the world, we must fully possess the mind and body of Jesus. We must be recognized for our value as the center that represents heaven and earth. Yet our recognized value must not stagnate in any one sphere of limitation. We must become invaluable beings whom the creation and heaven cannot but welcome.</p>
<p style="text-align: left;">The flesh and blood of Jesus do not affect only the earth. It is not the case that it can only be applied on the earth. Just as the course of faith is applicable in heaven, they are applied also in heaven. Therefore, if we totally receive the flesh and blood of Jesus, our wishes will be completed in heaven and on earth. What is more, the completed wishes will replace the wishes of Jesus and the wishes of the Holy Spirit on earth.</p>
<p style="text-align: left;">In this way, the two must become one and take charge of the work that Jesus and the Holy Spirit has been doing. We must go forward until we reach the state when we can let Jesus and the Holy Spirit rest and make another promise with God. You must not forget that only by doing so, the new dispensation of God, the whole history of the dispensation of Heaven, will finally reside on a victorious foundation and move forward.</p>
<h3 style="text-align: center;">Prayer 3</h3>
<blockquote><p>Father! We know that on the earth, the battle for truth is taking place, while in heaven, competition for love is going on. We know that the one purpose of the fight for truth on the earth symbolizes the body of Jesus and tries to bring that to a conclusion. We also know that the reason we make our wishes toward Heaven and long for love is to consummate the will of the flesh of Jesus.</p>
<p>We have realized that the crossing point of love and truth is the victorious foundation in which Jesus can dwell, where the Holy Spirit can dwell, and where God can operate. The victorious foundation of the Father is not to be settled centering on Jesus or the Holy Spirit. Let it be solidified through us who are on the earth.</p>
<p>Father! Please allow Your beloved children who have gathered here to stand now before the Father, Jesus and the Holy Spirit and call out, &#8220;Oh! Father! Lord! Holy Spirit!&#8221; and let Heaven be shaken by that voice. Please let the earth move. Father, I earnestly hope and wish that You would grant that which our hearts desire. Let our voice calling out, &#8220;Father,&#8221; penetrate through Heaven and wrap around and move all things on the earth.</p>
<p>Please allow the purpose behind Jesus&#8217; giving of his flesh and blood to us be accomplished through us, and allow us to earn the dignity of children who can serve the Father and live eternally in the garden of victory that represents the character of Jesus. Father, we earnestly wish and hope for these things.</p>
<p>Now, please allow the blood of Jesus to soak through our minds, and let our minds become entangled with the flesh of Jesus. Please allow our wishes and will to represent the hope and will of Heaven. Because we could not free ourselves from the sin of having killed Jesus, which we inherited through the lineage, we could not totally eradicate today the elements of Satan&#8217;s essential nature. Father, please indemnify all the elements of sin and evil, and fill us only with the grace of life.</p>
<p>Father, we hope from the bottom of our hearts that You will govern over everything and manifest through us the value of the blood of Jesus, which represents life, and that You will manifest Jesus&#8217; victorious garden of glory that represents the body. Offering gratitude for Your grace in having taken care of everything, I prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html" title="Permalink to The Pledge That Must Be Fulfilled" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Bring Out the Value of Restoration</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html" rel="next">Why did Jesus Become the Little Lamb Who Bore All the Sins of This World? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,254 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The Responsibility of Those Who Have Become the Root &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-741 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-741" class="post-741 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">The Responsibility of Those Who Have Become the Root</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-22T05:23:14+01:00"> <a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html" rel="bookmark">May 22, 2018</a> </time></span><time class="updated" datetime="2018-05-22T05:24:48+01:00">May 22, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;" align="CENTER">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">The Responsibility of Those<br />
Who Have Become the Root</h3>
<h5 style="text-align: center;">Genesis 18:22-19:12</h5>
<p style="text-align: center;"><em><span id="en-NIV-447" class="text Gen-18-22"><sup class="versenum">22 </sup>The men turned away and went toward Sodom, but Abraham remained standing before the <span class="small-caps">Lord</span>.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-447a" data-link="[&lt;a href=&quot;#fen-NIV-447a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Genesis+18:22-19:12#fen-NIV-447a">a</a>]</sup></span> <span id="en-NIV-448" class="text Gen-18-23"><sup class="versenum">23 </sup>Then Abraham approached him and said: “Will you sweep away the righteous with the wicked?</span> <span id="en-NIV-449" class="text Gen-18-24"><sup class="versenum">24 </sup>What if there are fifty righteous people in the city? Will you really sweep it away and not spare<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-449b" data-link="[&lt;a href=&quot;#fen-NIV-449b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Genesis+18:22-19:12#fen-NIV-449b">b</a>]</sup> the place for the sake of the fifty righteous people in it?</span> <span id="en-NIV-450" class="text Gen-18-25"><sup class="versenum">25 </sup>Far be it from you to do such a thing—to kill the righteous with the wicked, treating the righteous and the wicked alike. Far be it from you! Will not the Judge of all the earth do right?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-451" class="text Gen-18-26"><sup class="versenum">26 </sup>The <span class="small-caps">Lord</span> said, “If I find fifty righteous people in the city of Sodom, I will spare the whole place for their sake.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-452" class="text Gen-18-27"><sup class="versenum">27 </sup>Then Abraham spoke up again: “Now that I have been so bold as to speak to the Lord, though I am nothing but dust and ashes,</span> <span id="en-NIV-453" class="text Gen-18-28"><sup class="versenum">28 </sup>what if the number of the righteous is five less than fifty? Will you destroy the whole city for lack of five people?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-18-28">“If I find forty-five there,” he said, “I will not destroy it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-454" class="text Gen-18-29"><sup class="versenum">29 </sup>Once again he spoke to him, “What if only forty are found there?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-18-29">He said, “For the sake of forty, I will not do it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-455" class="text Gen-18-30"><sup class="versenum">30 </sup>Then he said, “May the Lord not be angry, but let me speak. What if only thirty can be found there?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-18-30">He answered, “I will not do it if I find thirty there.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-456" class="text Gen-18-31"><sup class="versenum">31 </sup>Abraham said, “Now that I have been so bold as to speak to the Lord, what if only twenty can be found there?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-18-31">He said, “For the sake of twenty, I will not destroy it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-457" class="text Gen-18-32"><sup class="versenum">32 </sup>Then he said, “May the Lord not be angry, but let me speak just once more.What if only ten can be found there?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-18-32">He answered, “For the sake of ten, I will not destroy it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-458" class="text Gen-18-33"><sup class="versenum">33 </sup>When the <span class="small-caps">Lord</span> had finished speaking with Abraham, he left, and Abraham returned home.</span></em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text Gen-19-1"><span class="chapternum">19 </span>The two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When he saw them, he got up to meet them and bowed down with his face to the ground.</span> <span id="en-NIV-460" class="text Gen-19-2"><sup class="versenum">2 </sup>“My lords,” he said, “please turn aside to your servants house. You can wash your feet and spend the night and then go on your way early in the morning.”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-19-2">“No,” they answered, “we will spend the night in the square.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-461" class="text Gen-19-3"><sup class="versenum">3 </sup>But he insisted so strongly that they did go with him and entered his house. He prepared a meal for them, baking bread without yeast, and they ate.</span> <span id="en-NIV-462" class="text Gen-19-4"><sup class="versenum">4 </sup>Before they had gone to bed, all the men from every part of the city of Sodom—both young and old—surrounded the house.</span> <span id="en-NIV-463" class="text Gen-19-5"><sup class="versenum">5 </sup>They called to Lot, “Where are the men who came to you tonight? Bring them out to us so that we can have sex with them.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-464" class="text Gen-19-6"><sup class="versenum">6 </sup>Lot went outside to meet them and shut the door behind him</span> <span id="en-NIV-465" class="text Gen-19-7"><sup class="versenum">7 </sup>and said, “No, my friends. Dont do this wicked thing.</span> <span id="en-NIV-466" class="text Gen-19-8"><sup class="versenum">8 </sup>Look, I have two daughters who have never slept with a man. Let me bring them out to you, and you can do what you like with them. But dont do anything to these men, for they have come under the protection of my roof.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-467" class="text Gen-19-9"><sup class="versenum">9 </sup>“Get out of our way,” they replied. “This fellow came here as a foreigner, and now he wants to play the judge! Well treat you worse than them.” They kept bringing pressure on Lot and moved forward to break down the door.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-468" class="text Gen-19-10"><sup class="versenum">10 </sup>But the men inside reached out and pulled Lot back into the house and shut the door.</span> <span id="en-NIV-469" class="text Gen-19-11"><sup class="versenum">11 </sup>Then they struck the men who were at the door of the house, young and old, with blindness so that they could not find the door.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-470" class="text Gen-19-12"><sup class="versenum">12 </sup>The two men said to Lot, “Do you have anyone else here—sons-in-law, sons or daughters, or anyone else in the city who belongs to you? Get them out of here,</span></em></p>
<p style="text-align: center;">Isaiah 6:11-13<br />
<em><span id="en-NIV-17781" class="text Isa-6-11"><sup class="versenum">11 </sup>Then I said, “For how long, Lord?”</span></em></p>
<p style="text-align: center;"><em><span class="text Isa-6-11">And he answered:</span></em></p>
<div class="poetry top-05">
<p class="line" style="text-align: center;"><em><span class="text Isa-6-11">“Until the cities lie ruined</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-11">and without inhabitant,</span></span></em><br />
<em><span class="text Isa-6-11">until the houses are left deserted</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-11">and the fields ruined and ravaged,</span></span></em><br />
<em><span id="en-NIV-17782" class="text Isa-6-12"><sup class="versenum">12 </sup>until the <span class="small-caps">Lord</span> has sent everyone far away</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-12">and the land is utterly forsaken.</span></span></em><br />
<em><span id="en-NIV-17783" class="text Isa-6-13"><sup class="versenum">13 </sup>And though a tenth remains in the land,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-13">it will again be laid waste.</span></span></em><br />
<em><span class="text Isa-6-13">But as the terebinth and oak</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-13">leave stumps when they are cut down,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Isa-6-13">so the holy seed will be the stump in the land.”</span></span></em></p>
</div>
<p style="text-align: center;"> July 1, 1956<br />
Former Church Headquarters</p>
<h3>Prayer 1</h3>
<blockquote><p>Beloved Father! You know the hearts of the children who have gathered here, so please allow every cell of their bodies to move toward the Father of compassion. Please let the whole of their minds and bodies become captured by Your hands of love. Please let them emerge as the essence of harmony of the whole. Purify them in this hour to become the soldiers of Heaven who can put their life on the line and dash forward for the sake of testifying to Your words!</p>
<p>Father, please consider with sympathy the many children who have gathered here. We know that we must walk the fateful course of restoration, which requires us to ascend each level by relying on the words of life that You have permitted, Father of love, so please extend the hands of love, and holding onto our unworthy hands, please guide us. We lay down before You, joining our minds and bodies, Father, so please grab us and lead us. Raising us up, please convert our minds into the mind of God. I sincerely hope and desire this.</p>
<p>Father, please bless the many people who are participating here, and please allow God&#8217;s miracle of life, inspiration and resurrection to take place. We have divulged all the concepts of this world that we hold and have come before You with the meek and humble heart of a child. Father, with Your hands of grace, please give rise to the miracle of recreation. Please reveal the fire of the Holy Spirit. Beloved Father, we wish that You would unveil the love that was hidden, and let these ones open the door of the blocked off realm of death in the last days, and that You will allow the Father&#8217;s glory of victory to be revealed.</p>
<p>We know that we do not need many words now. Even if the children who have gathered here do not receive many words, please lead them to digest fully the grace You have granted them. God, our Father, in this hour we have made the pledge and determination toward You in order to fulfill the promised will that You have allowed, so please fill all the empty vessels. Please raise us up as the children who can be intoxicated in Your abundant love and return glory to the Father. In this hour, please allow the grace that will guide us to become the children You can love. We wish this sincerely.</p>
<p>Please tie together the heart of the speaker and the heart of the listener, and let our minds move in step with the movement of Heaven. Let our bodies move in synchronization with the movement of Heaven, so that we can model after and take after the nature and image of the Father. We earnestly wish and desire that this be done.</p>
<p>Wishing that the remaining hour will also be full of Your compassionate guidance and words, we prayed in the name of the loving Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>In this day that You have allowed us, we have lain prostrate for the sake of bowing before the Father, so please penetrate into the heart of each individual who has gathered here and please nurture in them impeccable minds. Loving Father, we earnestly wish and desire that You allow the bows we offer in this hour to become the bows of comfort that can soothe Your anguished heart. Let this hour be the time when You can command us and entrust Your will to us.</p>
<p>Father! It was You who gathered these children here. It was also You who have moved them inside the realm of life by advising them, so please grant the fire of the Holy Spirit that You have promised and help each of our minds and bodies come together in harmony to bring happiness to everyone. Loving Father, we hope fervently that the whole of the holy nature that You demand will come out into the light in this hour.</p>
<p>Father, please pour down upon the children who have gathered here the love of compassion, and move everyone&#8217;s heart to lean toward the glory of Heaven through the work of the Holy Spirit. By doing so, we earnestly hope that You will accept this hour as the time of bowing when we can represent all of humanity and all of the creation in heaven and on earth. Opening the door of the holy of the holies and going near the Father, we pray we may offer the living sacrifice of victory.</p>
<p>Please raise these people to stand near You on the foundation of our bows. Going one step further, we fervently hope that You will bestow an opportunity when the whole of humanity can escape from the realm of sin and evil and cross over into the realm of goodness that You, Father, govern.</p>
<p>We know that even now, dotted all across this land, there are those who are praying ardently and building altars before Heaven, representing the people. No matter where people are bowing toward Heaven, we pray that You will bless each place with the same grace and will prophesy the whole dispensation You are going to reveal in the last days. We pray that You will fulfill the will You wanted to realize through this people, and that by accomplishing their mission to testify, the people can lay the foundation to bring joy to God.</p>
<p>In this hour, we have put down before You the heart that will enable everyone&#8217;s mind and body to bow before the Father and obey. Please, without any hesitation, give to them directives as to all that You promise and plan to fulfill.</p>
<p>Wishing that the works of the Trinity will abundantly fall upon our heads, I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The topic of the talk I want to give now is <em>&#8220;The Responsibility of Those Who Have Become the Root.&#8221;</em> If you look at Isaiah 6:11, it is written, &#8220;Then I said, &#8216;For how long, O Lord?&#8217; He answered: &#8216;Until the cities lie ruined and without inhabitant, until the houses are left deserted and the fields ruined and ravaged, until the Lord has sent everyone far away and the land is utterly forsaken. And though a tenth remains in the land, it will again be laid waste. As the terebinth and oak leave stumps when they are cut down, so the holy seed will be the stump in the land.'&#8221; Here God reiterates that if any root remains, He is going to use that root to blossom new buds and begin a new dispensation.</p>
<p>The ancestors of humankind, Adam and Eve, should have fulfilled the hope and ideal of all humanity with the one immutable root of heaven and earth. However, you know very well that because they fell, that fundamental root was dug up, pulled out and transplanted in the satanic world.</p>
<h3>The Center of God&#8217;s Dispensation</h3>
<p>For this reason, the central point of the dispensation God has been guiding until today is to find the fundamental root that could become the root of man&#8217;s happiness in the Garden of Eden. It is the root of the ideals, the root of life or the root of love. In other words, God&#8217;s dispensation was to find again that fundamental root God had tried to implant through Adam and Eve. Although the countless prophets and sages who have upheld the will of the dispensation in the course of history did not understand the situation of Heaven, the suffering that they have gone through for the sake of the will has laid the groundwork on which to receive the lost root, the goal of the dispensation, as the unchanging, substantial being.</p>
<p>During the 4,000 years since the beginning of dispensational history, the Jesus you believe in is the one who was raised to claim back the root lost in the Garden of Eden. In other words, the mission of Jesus Christ was to re-establish on the fallen earth the one vineyard that God can manage freely after He acquires the root that can be used as the base and then perpetuate it forever. This is the very purpose for which God sent Jesus to this earth.</p>
<p>You must understand that the 4,000-year period since the embarking of the dispensation of Heaven to the time of the coming of Jesus was a path of suffering on which countless saints and sages shed tears and blood centering on the will of Heaven. In other words, you must never forget that, although there have been different dispensational wills representing the tribe, people, nation, world or history, by the time the dispensational will centering on that tribe and history passed through the chosen region or environment, there were the ordeals of countless prophets and sages before it who became the root. Jesus was sent as the substantial person who could cultivate the root on the individual, societal and world levels.</p>
<p>We who believe in Jesus today must know that all the ordeals of Jesus during his thirty years of life and in his work of the 2,000 years since his death was borne on behalf of the world. What is more, you must understand the tribulations of the prophets and sages who, as the hidden root, faced difficult crises in history and have been fighting with the enemy in the background until the time when they are established as the perfected root.</p>
<h3>Abraham Lived a Life Full of Unseen Ordeals</h3>
<p>Abraham was the one in the historical background who made it possible for Jesus to be established as the perfected being. Abraham possessed a concealed character of virtue. He did not betray Heaven even when he was in an environment where no one recognized him. In other words, even when he was in a situation where he was captured by the enemy country inside the satanic realm and faced the temptation to betray the will of Heaven, he did not. Abraham, who was like the hidden root, did not evade any situation but overcame all of them, even when the era was laden with vices, history was haunted by confusion and the environment was chaotic. In fact, he felt heartbroken about the declining cities of Sodom and Gomorrah and appealed to Heaven on their behalf.</p>
<p>Even if someone who is evil and wicked has something special, it is human nature to want to boast about it. But for a long time Abraham kept the grand dispensational will promised to him in his heart. He upheld that dispensation for the sake of fulfilling the will of God. As the chosen root, no matter who touched him or tried to uproot him, he persisted in his way for the purpose of laying down the solid and unshakable foundation. Even when he was subjected to all kinds of persecution and ridicule, he lived a life of unseen ordeals in which he persevered and overcame.</p>
<p>Similarly, Abraham not only set an unchanging condition before Heaven, but also, his sacrificial life for the sake of all of humanity became the seed that was sown. At the same time, his distressed heart was determined that if he could establish one fixed standard that could turn even evil people toward God, he would then cling onto it and never change.</p>
<p>Sodom and Gomorrah deserved to be punished by God, but it had nothing to do with the place where Abraham was. Although it did not directly concern Abraham whether or not the cities of Sodom and Gomorrah understood the will of God or whether the people were doomed, because he had a sense of mission toward the dispensation of Heaven and he felt that he must take the responsibility, he was concerned and anxious about the two cities night and day. What is written in the biblical verses reveals such internal feelings of Abraham.</p>
<p>Today when we are witnessing the concluding period of the 6,000-year history, you are able to sleep in peace, wear good clothes and eat good food, not because of some merit on your part. You will be doomed if that is what you think. The reasons that the world can at least sustain us like this is because in the background, there were unknown people who have become the hidden root and were building the altar of appeal on which they have been shedding tears and blood. You have the mission to propagate this fact to all people.</p>
<p>If there were people inside Sodom and Gomorrah who knew that Abraham&#8217;s fervent prayer was reaching Heaven and that he was having a direct conversation with God, moreover, if there were some righteous people who could recognize Abraham among that crowd, then Abraham would have appealed earnestly to Heaven to put forth some condition that could save Sodom and Gomorrah from the fate of judgment. If there were even just a few righteous people, no matter how wicked Sodom and Gomorrah were, Abraham would have used the fact that there were righteous people as a condition, and would have appealed to God, &#8220;Father, who determines and judges with justice, is not judging both the good and the evil people equally with fire contrary to Your will?&#8221; Nonetheless, you must understand that when he realized that it was only he who was praying for Sodom and Gomorrah, Abraham&#8217;s heart was deeply hurt.</p>
<p>Do you know the main reason Abraham became the historical figure? You must never forget that more than caring for his own happiness and comfort, Abraham risked his life for the sake of his tribe, without others even knowing about it.</p>
<h3>The Reason Abraham Could Become the Ancestor of Faith</h3>
<p>The reason Jesus could emerge as the fruit of faith was also because such persons as Abraham came before him in the dispensation of Heaven and played the role of the root concealed under the ground. In other words, even if all the others were to be undermined, because there was someone like Abraham, who demonstrated eternally unchanging faith toward Heaven and played the role of the root, on that foundation Jesus Christ could be born.</p>
<p>Abraham&#8217;s course of ordeals which others did not know about was even greater than that in which Abram (&#8220;exalted father&#8221;) from the individual level was elevated to Abraham (&#8220;father of many nations&#8221;) who was chosen to be the ancestor of faith. We should reflect back on our own past and, making a one-to-one comparison between ourselves and Abraham, we should deeply repent. What is more, we must experience the situation in which Abraham found himself.</p>
<p>Just as Abraham built the altar of the concealed root in regard to Sodom and Gomorrah, you must also possess the zealous heart of Abraham, who prayed and appealed fervently for the region he lived in and its people. You must never forget that you should inherit the foundation of faith that Abraham established on the basis of his hardships, which was a condition much like the concealed root.</p>
<p>The family of Abraham, the ancestor of faith, was promised a blessing. Through Isaac, Jacob and Moses, this was raised to the level of the people, and eventually expanded to the worldwide level. If there had been no loyalty and faith in Abraham that had penetrated deeply into Heaven, then there could not have emerged a relationship on the earth that could create a bond with Heaven.</p>
<p>Today everyone wants to show off the good things they possess. They want to bring it out and brag about it. Nonetheless, while someone who wants to divulge it and let others know about it might fulfill a responsibility analogous to a branch, he can never take on the responsibility of a root.</p>
<p>Do you know what the secret was behind Abraham&#8217;s rise to the position of the ancestor of faith? Because his heart of longing toward Heaven and love for the earth was so extraordinary, he could build a wide and solid ground for the relationship with the Father in Heaven and could become the ancestor of faith.</p>
<h3>Moses, the Leader of the People</h3>
<p>The same is true of Moses. Until the time he was elevated as the leader of the people, there were the forty years of unknown tribulations in the palace, where he was living as a concealed root. While he was staying in the opulent and splendid palace, he did not eat sumptuous meals or wear luxurious clothes, and he did not live a cheerful life. While he was living in the palace, during every hour of his eating, dressing and sleeping, he was always thinking about the Israelites. Among the Jewish people, only Moses maintained an unchanging heart of loyalty toward Heaven, despite they knowing about it.</p>
<p>Even while he was inside the bosom of the enemy, as the nucleus of immutability, he determined repeatedly that no matter what kind of environment oppressed him and even if there was something blocking his heart from extending to Heaven, he would not change. Because there was this forty-year period when he exerted himself internally to the utmost with an unchanging heart toward Heaven, in the days that followed it was possible for him to have an explosive power of love toward the people.</p>
<p>Moses might appear to you to be a person with a bad temper, but in truth this is not the case. The fury that Moses felt when he saw the Egyptian and the Israelite fighting and when he then killed the Egyptian was not caused by a sudden impulse of the moment. When he saw that sight, the heart of internal sorrow with which he had appealed to Heaven on behalf of the people for forty years finally exploded. In other words, when he saw that injustice being done to the chosen people of Israel, he felt an irrepressible indignation and beat the Egyptian to death. His love toward the Jewish people and his righteous indignation toward the Egyptian was the internal cause behind the action of Moses. What is more, there was providential significance in the actions of Moses.</p>
<p>The reason that Moses could not surmount his indignation and beat the Egyptian to death was because he was concerned about and felt responsible for the fate of the Israelites. Compared to the sin that the Egyptians committed in their oppression of the Jewish people, Moses&#8217; action was minuscule, so God chose Moses as the leader of the people, the one who was concerned about the people more than anyone else. However, the Jewish people misunderstood Moses and divulged the fact that he had killed the Egyptian. As a result, when Moses found out it could not be hidden, he had no choice but to escape to the Midian wilderness.</p>
<p>Moses, who lived in the Midian wilderness, felt shameful about the luxurious life he had led in the palace. He forgot the glorious days of the past when he had lived in a free environment and the daughter of the Pharaoh gave him all that he wanted. Although he became a nameless shepherd who wore clothes made out of lamb&#8217;s wool and drove the flock of sheep from one place to another, as he was watching the flock, he longed for the land of Canaan that had been promised to his distant ancestor, Abraham.</p>
<p>Moses appealed to Heaven with a penetrating heart. He prayed that although he was doing no more than driving sheep, one day he was going to guide the people to enter the land of Canaan just like he drove the flock of sheep. Just as Abraham had prayed for the sake of the people in Sodom and Gomorrah without them being aware of it, Moses gave all that he had, whether he was eating, starving, sleeping or awake, in prayer for the sake of the people.</p>
<p>When Moses saw the suffering of the Israelite people under the oppression and cruelty of the Egyptians, he felt such great anguish it was as if his bones were melting, and he appealed to Heaven, &#8220;Jehovah! Please, on my behalf, treat the people with sympathy.&#8221; So God chose Moses, who had a remarkable heart of appeal, as the leader of the multitude of 600,000 people, to lead them out of Egypt. He let Moses, a shepherd in the Midian wilderness, insignificant in the eyes of others, inherit the concealed root that came down from the ancestors and made him the representative of the people. What is more, He guided the Israelites to become one with Moses and enter the land of Canaan.</p>
<h3>The Jewish People Did Not Know<br />
the Hidden Foundation of Moses&#8217; Devotion</h3>
<p>When Moses entered Egypt after receiving the promise from Heaven, he was ecstatic. However, he was not satisfied by the joy. He could pioneer the path of survival for the people because of the fulfillment of the will that he had appealed for before Heaven, in which he pledged that he would offer his life to guide the people to the land of Canaan. He was not just satisfied at that. He gained a sense of mission and responsibility that he would diligently carry out the second part of his responsibility.</p>
<p>From then on, Moses did not act centering on himself. From trivial things to grand events, there was not one thing that he carried out without making a connection with God first.</p>
<p>In this way, Moses entered the palace of the Pharaoh, and by performing more than ten miracles and plagues, he could lead the Israelites into the danger laden wilderness. The Jewish people should have become one with Moses there. In other words, although the wilderness was fraught with danger, as the Jewish people escaped to the environment of freedom and headed toward the land of Canaan, the mind of the people should have become one with the mind of Moses. They should not have had differences in opinion and thought with Moses, who had rescued them from the palace of the Pharaoh. Nonetheless, because they did not unite with Moses, they walked a path that was not in line with the way of Heaven, and they met their doom. What was the reason they were doomed?</p>
<p>They did not know the foundation of the hidden devotion behind the appeal that Moses made while becoming their leader. What is more, although Moses suffered all kinds of hardships from the day he rescued them from Egypt and cared for them, they did not recognize his suffering and ordeals. Consequently, they were divided from Moses in the wilderness, and eventually, they fell in the middle of the wilderness. The history of the Israelites&#8217; unfaithfulness toward Moses is being repeated by the believers of the last days today.</p>
<h3>The Believers of the Last Days Must be Awakened</h3>
<p>Although Jesus came to this earth and toiled for the sake of humanity for thirty years, and he came down to meet humankind for 2,000 years after his death and worked through his love and grace, humankind is not sincerely worshipping Jesus in their lives. What is more, to the believers of the last days, there might occur a fearsome event similar to the one in which the Israelites could not completely uphold the will of God by not believing in Moses, who tried to lead the people into the land of Canaan. When he came face to face with the fact that the Jewish people were not one with him, Moses regretted before Heaven his own lack of ability before he scolded the people for their unfaithfulness. In other words, when he went up to Mount Sinai and offered a forty-day fasting prayer, he cried out, &#8220;Father, why is this people not able to enter the land that You have promised, even when it is laying before their eyes? Who does the blame fall upon? The responsibility lies in me. It is because I could not fulfill my responsibility. Thus, please accept me as the sacrifice and prevent the people from walking toward the path of destruction.&#8221; You must understand that Moses had this unheralded period of devotion.</p>
<p>If the Israelites had known that Moses was fasting with a heart of anguish, not for his own sake but for theirs, they would not have made the golden calf and worshipped it to show off their unfaithfulness during the forty-day fasting period of Moses. Moreover, when Moses, who represented the blessing of the people, was being offered to Heaven as a secret sacrifice, if they had sympathized with him, and if, reflecting on his past hardships, they had shed tears with Moses and appealed to Heaven, then they would not have left God.</p>
<p>Just as Moses walked a lonely path by himself representing the people, Jesus walked a similar course. In other words, Jesus Christ, who was made the center of the world through the historical sacrifice of Abraham, as well as through Moses&#8217; course of sacrifice representing the people, followed the example of Abraham who had removed the condition of accusation of Satan on behalf of his family and that of Moses who did the same on behalf of the people. Jesus had to eliminate all the conditions of accusation by himself on behalf of the humanity of the world, and he had to lay the victorious foundation of indemnity.</p>
<h3>Jesus Is the Center of the Victory and the Savior of Humankind</h3>
<p>You have to understand that such responsibility lies on the shoulders of Jesus. For this reason, until the immutable foundation is built throughout the worldwide foundation, Jesus himself must not be limited to just himself. Therefore, Jesus displayed more loyalty than any other central figure of faith who remained loyal to Heaven during the 4,000-year course of history. He sacrificed himself for the sake of the whole.</p>
<p>Similarly, through the thirty years of his life, Jesus formulated the shape of the center representing the whole within the sphere of his mission, which no one else in history could achieve. You must understand that if he could not become such a central figure, then he could not have become the spearhead responsible for the worldwide dispensation.</p>
<p>Faithful believers today believe that Jesus bore the cross of his generation, but you should not limit your understanding of Jesus to that. Before Jesus&#8217; death on the cross, there was the altar of hardships that Abraham built, and there was Moses&#8217; course of ordeals. What is more, feeling the anguish of the people and humanity who are caught up in affliction and misery, Jesus pleaded with Heaven, &#8220;Please let us bear the burden of pain and please grant them the eternal ideal That they demand.&#8221; To take responsibility for their anguish, he could not spend even one day in peace.</p>
<p>Because Jesus cared even for the people who were in the bosom of the enemy, and because he led a life focused more on the will of the whole that he was responsible for rather than on his own happiness, he was made the central figure and the Savior of humankind, and won the victory in the fight with the satanic world. What then must we faithful believers of the last days realize? We must repent for the fact that, until now, we have failed to shed tears in concern and prayer for the sake of evil people. The more people are going to be judged in the last days, the more we must pray for their sake. Moreover, we must never forget that behind us there is Jesus, who is concerned about us and praying for us. If we forsake Jesus and lapse into faithlessness, then there will be no way we can escape judgment in the last days.</p>
<h3>The Believers in the Last Days Must Fulfill Their Mission as the Root</h3>
<p>If the people of Sodom and Gomorrah of the past had heeded the warning given through Abraham and Lot about the judgment of God and had repented for their past evil doings, they might have been able to avoid judgment. Since historical events can teach us about the events of the future, we who are in the last days today must also reflect upon our past life and repent. Therefore, just as Moses climbed up Mount Sinai and prayed for the unfaithful Jewish people, we must clearly understand that, even in this hour, Jesus is praying for our sake on the spiritual Mount Sinai.</p>
<p>The heart of Jesus, who has prayed for the sake of humanity from his Heavenly throne for the last 2,000 years, surpassed the distressed and desperate heart of Moses, who had clung onto the Jewish people and prayed. Thus, you who are on the earth must know this and live according to the will of Jesus. In the past, Abraham prayed to God to spare Sodom and Gomorrah from judgment if there were ten righteous people, but because there were not even ten, they faced the judgment of God.</p>
<p>Therefore, just as Jesus has prayed for the sake of humankind from Heaven since the day that he passed away on the cross until today, and just as Moses prayed on Mount Sinai, you must experience the same sorrowful heart. Grabbing hold of this era, you must be concerned and pray in place of Jesus. What is more, you must never forget to seek, in your prayers day and night, the person who can take over the worldwide mission of Jesus and represent the prophets and sages of history. If in the last days there is not even one person who can remain on the earth as the root, then just as the Israelites fell down in the wilderness, the land we live in will not be able to escape fearsome judgment when it enters the concluding days on the world level.</p>
<p>What then must we do today? Because you are like the hidden root, we must possess the spirit of Jesus and answer the wishes of the ancestors who have longed for one central root as they passed through the course of history. Moreover, you must be able to be in step with the heart of Jesus who has toiled for 2,000 years until today, longing for the day of the Second Advent. This is the problem. Thus, you must now make a comparison between the historical central figures and yourself, and do an analysis. In other words, putting yourself in positions comparable to Abraham, Moses and Jesus, you must analyze whether your heart is the same as their heart, whether your wishes are the same as theirs, and whether or not their suffering and grief are the same as yours.</p>
<p>Now you must learn how to start with empty hands and go before Heaven to build high the altar of appeal. You have to understand the heart of Abraham, who pleaded before Heaven for the sake of Sodom and Gomorrah. The reason Abraham prayed for Sodom and Gomorrah was not for the sake of his own children or his nephew, Lot. Because he forgot everything else and built the hidden altar of devotion, Lot, who was related by blood to Abraham, could escape the judgment.</p>
<p>Those who claim to believe pray, &#8220;Please let my will be fulfilled.&#8221; We should not offer this kind of prayer. Instead, we should pray, &#8220;Rather than my own will, please fulfill the will of God.&#8221; When the will of Heaven is fulfilled, the will that we long for will also be realized. Therefore, we should not pray, &#8220;Please let my will be fulfilled.&#8221; We must pray with the most devout heart, &#8220;Father, since You have put me in this position and called upon me, please let Your will be fulfilled through me.&#8221; What you have to understand now is that the remaining task you have received is not a task just for your own generation, but it is a task that comes down all the way from Abraham and through Jesus.</p>
<p>You who are living in this era must represent all the tribal sects since the time of Moses, and, representing the tribal sect that Jesus needed, you must fulfill the will that God demands. In this way, even if this earth is evil and this land is dark, even if this earth is to perish, you must still become the concealed root that God has implanted.</p>
<h3>What Heaven Demands of Us in this Era</h3>
<p>Today Heaven requires us to fulfill the mission of religion on the foundation of individual faith. That mission is completing the responsibility similar to the one of Abraham. Next, the question is whether or not you have mourned and strived to save the thirty million people of Korea from the misery they are suffering, applying all of your heart and will to the utmost, just as Moses tried so hard with a distressed heart for the sake of the Jewish people. What is more, Jesus will ask whether you have strived to live for the sake of the humanity on behalf of Jesus, just as since the time of the creation until now, God has worked so hard to save humankind.</p>
<p>When you are then asked whether you have led the same life as Abraham, Moses and Jesus, you must be able to answer, &#8220;Yes, don&#8217;t you already know that about us? The concealed root is found not just in us, but also inside God.&#8221; When you become such persons, the fidelity of faith that Abraham demonstrated will bear fruit through you, and the will that Moses longed for will be fulfilled through you. All the elements of sorrow that Jesus held within him will be resolved through you.</p>
<p>If that kind of person can be found on the earth, then the hearts of Abraham, Moses and Jesus will be liberated from the sorrow that they suffered in their lifetime. Therefore, if there is such a person, you must serve him with all of your heart and soul. If there is no such person, then you yourself must become that person, and if there is such a person, then you must lift him up in place of Abraham, Moses and Jesus, and attend him. In doing so, you should say, &#8220;Please pray more for the sake of the people, please go out and do more.&#8221; Going one step further, even if you cannot become the sacrifice that can be offered to Heaven, you must at least become the person who is building the altar.</p>
<p>Therefore, today you must call God, &#8220;Father.&#8221; If you cannot directly feel God, who could not play the role of the master in the course of history from the creation of the universe until now, you will not be liberated in this generation. Accordingly, you must build the altar of prayer on behalf of all that, just as Abraham, Moses and Jesus prayed.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html" title="Permalink to The Responsibility of Those Who Have Become the Root" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Claim Back the World of God&#8217;s Dominion and Offer It to Him</a></div>
<div class="nav-next"><a href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html" rel="next">Let Us Bring Out the Value of Restoration <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,262 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Behold the Little Lamb of God Who Is Bearing the Sins of the World &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-758 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-758" class="post-758 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Behold the Little Lamb of God Who Is Bearing the Sins of the World</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T10:21:24+01:00"> <a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T10:21:46+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Behold the Little Lamb of God<br />
Who Is Bearing the Sins of the World</h3>
<h3 style="text-align: center;">November 25, 1956<br />
Headquarters Church, Seoul, Korea</h3>
<p style="text-align: center;"><em>Matthew 5:43-48</em><br />
<em><span class="text Matt-5-43"><span class="woj"><sup class="versenum">43 </sup>“You have heard that it was said, Love your neighbor<span class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23278a" data-link="[&lt;a href=&quot;#fen-NIV-23278a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+5:43-48#fen-NIV-23278a">a</a>]</span> and hate your enemy.</span></span><span id="en-NIV-23279" class="text Matt-5-44"><span class="woj"><sup class="versenum">44 </sup>But I tell you, love your enemies and pray for those who persecute you,</span></span> <span id="en-NIV-23280" class="text Matt-5-45"><span class="woj"><sup class="versenum">45 </sup>that you may be children of your Father in heaven. He causes his sun to rise on the evil and the good, and sends rain on the righteous and the unrighteous.</span></span> <span id="en-NIV-23281" class="text Matt-5-46"><span class="woj"><sup class="versenum">46 </sup>If you love those who love you, what reward will you get? Are not even the tax collectors doing that?</span></span> <span id="en-NIV-23282" class="text Matt-5-47"><span class="woj"><sup class="versenum">47 </sup>And if you greet only your own people, what are you doing more than others? Do not even pagans do that?</span></span> <span id="en-NIV-23283" class="text Matt-5-48"><span class="woj"><sup class="versenum">48 </sup>Be perfect, therefore, as your heavenly Father is perfect.</span></span></em></p>
<p style="text-align: center;"><em>John 1:19-34</em></p>
<p style="text-align: center;"><em><span class="text John-1-19"><sup class="versenum">19 </sup>Now this was Johns testimony when the Jewish leaders<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26064a" data-link="[&lt;a href=&quot;#fen-NIV-26064a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+1:19-34#fen-NIV-26064a">a</a>]</sup> in Jerusalem sent priests and Levites to ask him who he was.</span> <span id="en-NIV-26065" class="text John-1-20"><sup class="versenum">20 </sup>He did not fail to confess, but confessed freely, “I am not the Messiah.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26066" class="text John-1-21"><sup class="versenum">21 </sup>They asked him, “Then who are you? Are you Elijah?”</span></em></p>
<p style="text-align: center;"><em><span class="text John-1-21">He said, “I am not.”</span></em></p>
<p style="text-align: center;"><em><span class="text John-1-21">“Are you the Prophet?”</span></em></p>
<p style="text-align: center;"><em><span class="text John-1-21">He answered, “No.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26067" class="text John-1-22"><sup class="versenum">22 </sup>Finally they said, “Who are you? Give us an answer to take back to those who sent us. What do you say about yourself?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26068" class="text John-1-23"><sup class="versenum">23 </sup>John replied in the words of Isaiah the prophet, “I am the voice of one calling in the wilderness, Make straight the way for the Lord.’”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26068b" data-link="[&lt;a href=&quot;#fen-NIV-26068b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+1:19-34#fen-NIV-26068b">b</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26069" class="text John-1-24"><sup class="versenum">24 </sup>Now the Pharisees who had been sent</span> <span id="en-NIV-26070" class="text John-1-25"><sup class="versenum">25 </sup>questioned him, “Why then do you baptize if you are not the Messiah, nor Elijah, nor the Prophet?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26071" class="text John-1-26"><sup class="versenum">26 </sup>“I baptize with<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26071c" data-link="[&lt;a href=&quot;#fen-NIV-26071c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=John+1:19-34#fen-NIV-26071c">c</a>]</sup> water,” John replied, “but among you stands one you do not know.</span> <span id="en-NIV-26072" class="text John-1-27"><sup class="versenum">27 </sup>He is the one who comes after me, the straps of whose sandals I am not worthy to untie.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26073" class="text John-1-28"><sup class="versenum">28 </sup>This all happened at Bethany on the other side of the Jordan, where John was baptizing.</span></em></p>
<p style="text-align: center;"><em><span class="text John-1-29"><sup class="versenum">29 </sup>The next day John saw Jesus coming toward him and said, “Look, the Lamb of God, who takes away the sin of the world!</span> <span id="en-NIV-26075" class="text John-1-30"><sup class="versenum">30 </sup>This is the one I meant when I said, A man who comes after me has surpassed me because he was before me.</span> <span id="en-NIV-26076" class="text John-1-31"><sup class="versenum">31 </sup>I myself did not know him, but the reason I came baptizing with water was that he might be revealed to Israel.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26077" class="text John-1-32"><sup class="versenum">32 </sup>Then John gave this testimony: “I saw the Spirit come down from heaven as a dove and remain on him.</span> <span id="en-NIV-26078" class="text John-1-33"><sup class="versenum">33 </sup>And I myself did not know him, but the one who sent me to baptize with water told me, The man on whom you see the Spirit come down and remain is the one who will baptize with the Holy Spirit.</span> <span id="en-NIV-26079" class="text John-1-34"><sup class="versenum">34 </sup>I have seen and I testify that this is Gods Chosen One.”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26079d" data-link="[&lt;a href=&quot;#fen-NIV-26079d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=John+1:19-34#fen-NIV-26079d">d</a>]</sup></span></em></p>
<p>Prayer 1</p>
<blockquote><p>Father who promised the resurrection of life, Father who has granted the grace of love, and Father who gave eternal life! Father who is not far from us, but dwells within our minds and bodies and in our surroundings! Our hearts long for the Father&#8217;s love and yearn to be intoxicated by Your love. We want to sing Your glory.</p>
<p>Father who has come seeking us this hour, please reveal the honor of Your joy. By doing so, we ask that You let us also partake in joy and harmony with our original hearts and original natures. Fix our minds and bodies to create the atmosphere of glory where even the creation can be part of the harmony.</p>
<p>Father of promise! Please operate in this hour. Father of power! Please appear in this hour. Although we are insignificant, we know that when we march forward in obedience to Your commands, there will spring forth within us the power to pioneer the course of eternal life. Father of love! Please do not hesitate in this hour to give commands through our minds and our bodies.</p>
<p>Let us restore the original hyung-sang You created. By doing so, beloved Father, we hope from the depth of our hearts that You will protect us and raise us as proud sons and daughters whose beauty can bring You joy and whom You are proud to present before all created things without any hesitation.</p>
<p>This is a holy day. This is the day that we must take responsibility for the lives of all people and guide to the Father the many minds and bodies shackled by the hands of the enemies who dwell in the realm of death.</p>
<p>Jesus and the Holy Spirit are the ones who have taken responsibility for this task and have been at work to fulfill it. The ones who have been assisting in this feat were the countless faithful believers in the spirit world. Please lead us to understand that we have the mission to arm ourselves and help accomplish this one will.</p>
<p>Father! If we are too weak to take charge of this unfulfilled mission, then please allow us to cherish in our hearts the will of blessing promised in the infinitely distant past. Please raise us before the Heavenly principles. Please lead us not to become pitiful sons and daughters who provoke sorrow. Please allow us to touch Your heart and bosom and become Your sons and daughters who will accomplish the entirety of Your will before You give the command, beginning the action before You make the request.</p>
<p>Father! Please bless these people. Please bless the religious group that represents the people. Moreover, please bless Your sons and daughters who have gathered here.</p>
<p>Please prophesy about this event to many lives everywhere. Grant a new blessing of life. Please let all of humankind awaken to Your will and elevate the foundation of their lives so that peace can emerge. Father! We make this earnest request.</p>
<p>Please allow these sons and daughters who have now prostrated themselves before You to become the children who can receive the love and blessing of the Father with a new heart. Allow their bodies to embody the beauty of glory and the beauty of love.</p>
<p>Is there any son or daughter who, being unworthy before You, possesses the bitter root of sin and induces sorrow? Father, please take charge of this hour and appear before us. In that way, please personally produce the miracle of re-creation. Father, I earnestly wish and hope for this.</p>
<p>Please manifest abundant blessings of the Father on the children who have gathered in this hour. My Father, I pray from the bottom of my heart that You will grant the same grace upon the children who are scattered in all regions and are building lonely altars, the sons and daughters who are testifying to Your truth. Hoping sincerely that You will descend upon each of them, I prayed all these things in the name of the Lord.</p>
<p>Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Father, You have exerted Yourself to cling onto us and to assemble us. We have gathered here centering on one holy altar. Please allow our minds and bodies, we who are prostrating ourselves before You, to become one and to act on behalf of Your commands. Our bodies, which are prostrated, must become the holy altar.</p>
<p>When we come to realize that we are the hope You have sought for a long time with a lamenting heart, we deeply feel that the Father is truly miserable. We also can come to fathom the situation of the Father, who has suffered all kinds of insults as He guided the history of the dispensation until now.</p>
<p>We reflect now that it is the Father who has received all kinds of humiliation, and it is the Father who has persevered through them all, longing for sons and daughters of hope even when You were suffering all kinds of ordeals. We come then to realize how unworthy we are. Nonetheless, we have come before the will with enraptured hearts. We came forth with the determination to possess loyal fidelity, so that we can alleviate the grief and bitterness of the Father.</p>
<p>Consequently, we are in a position to walk through the course of conflict today and tomorrow. We believe that the Father is aware of the fact that we are trying to tread the course only for the sake of the Father&#8217;s glory. Please come seeking us now. Please lead us to move centering only on Heaven.</p>
<p>We have gone on until now by believing in the Father on this earth where there can be no faith, and by relying on the commands of the Father on this earth, where there is no place to set our feet. Father, we cannot dispel our concern for the dispensation of today and tomorrow. Please allow the gratitude of today to become eternal gratitude. Let the voice calling out for You become a voice calling out for the Father for eternity. Loving Father, we pray from the depth of our hearts that You will personally protect and guard us until we can sing the song of glory together with all things.</p>
<p>Father, the time and place are not far away. Your children, who are being urged on by Heaven, as well as Your heart, which is driving on because the time and place are imminent, are both distressed. Yet Your sons and daughters of the new age, who must pioneer the new task because they were raised in the world of darkness and faithlessness, are also pitiful.</p>
<p>Father! Please cast away Your worries. We realize how great the concern of Heaven is, and we hope to cling onto these concerns on its behalf and exert our utmost for the sake of the remaining will of the dispensation. Therefore, Father, please look at us and be comforted by us. Please let us comfort Your heart, suffering from the bitter sorrow of the people and the church.</p>
<p>Father, please hastily assemble in one place Your sons and daughters who are scattered everywhere. Allow them to build the altar of victory, glory and righteousness, so that they can go toward the single strand of the light of life in which You can be delighted. Beloved Father, we earnestly pray that You will allow the one will to be fulfilled through the people of this world.</p>
<p>Among the children who have gathered here, is there anyone who has become subjected to the accusations of Satan or who possesses a heart of spite? Father, please let there be no such child. If there is such a child, then in this hour, with the miracle of power, please inject into their heart the grace of gratitude and resurrection that can induce them to repent. Father! We pray for this from the bottom of our hearts. We entrust the remaining time to you, so please remove sadness and govern us with honor. We wish from the heart that only the grace of joy that You can personally assert and boast of will descend upon our heads and fill our minds and bodies. We have entrusted everything to You. Please take charge of it all. We prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 3</h3>
<blockquote><p>Father, we have come to understand that according to the commands that You have given, there remains the pass that all men must cross. We of today stand in the position to carry on the fight to eliminate our imperfections before the perfection of the Father. It is our fate to rise above the basic standard of the unchanging truth.</p>
<p>Now, when we think about the fact that the time has come when we must step forward before the whole universe, and that it is our historical fate to resemble the perfect sung-sang of the Father and dominate over all created beings, we come to realize that we today must take the place of the Father&#8217;s lamentation. We must testify to the eternal love of the Father and must be able to carry on the mission of restoration by disseminating the words of the Father to the dark world.</p>
<p>Nonetheless, the life of faith that we have led up to now is not worthy enough to be presented before the Father. Please allow us to feel remorse and at the same time to repent and come to our senses.</p>
<p>We must bring out all our concepts, assertions and ideologies before the solemn will of the Father and completely deny our own selves. We must restore our original nature, we who are eternal substantial beings, and take after the character of the Father, who is perfect. We must restore ourselves to the point in which we can be overwhelmed with the glory of the Father. This is the course of conflict that lies before us. Please lead us not to be ones who retreat from this course of conflict today.</p>
<p>Please allow us to become the honor and source of joy of the Father through our life each day and for the rest of our lives. Guide us to become worthy and beautiful sons and daughters whom You can accept. Father, we hope for this from our hearts.</p>
<p>This is the time when the period of restoration is reflected. This is the period that we must rise above the historical standard of judgment as in the time of Jesus. This is the time when the new will is being brought forth before Judaism, when the works of testimony on the shores of the Jordan River are taking place, when the works of John the Baptist, who gave the baptism, are unfolding worldwide.</p>
<p>Now each of us must prepare the resting grounds of Heaven and build the garden of goodness. Jesus should have returned glory to the Father with the testimony of John the Baptist, without any invasion by sin and Satan. We must build the garden of repose in which we can grab hold of each other&#8217;s hands and join our hearts to sing a song.</p>
<p>You have called us today for this kind of responsibility. You have chosen us for this kind of task. Please lead us not to become the sons and daughters who will leave the wound of grief and sadness before the chosen will.</p>
<p>We who understand that the resentment of many thousands of years has saturated history by virtue of the failure of John the Baptist, have received Heaven&#8217;s calling and were chosen by Heaven. Please allow us to stand before the throne of the Father and lay the foundation of the dispensation which can bring completion to the entire dispensational will of the whole universe. By granting this, please allow us to accomplish the remaining mission on a secure foundation.</p>
<p>If we have not become qualified enough to offer bows before the dignified sung-sang of the Father with liberated minds and bodies, then please lead us to understand that the bitter grief of restoration is still embedded in us. When we offer all of our minds and bodies to the Father and raise our two hands to call you Father, then Father, please hold us tight with Your hands and guide us to earn the justification to be considered the honorable sons and daughters of the Father.</p>
<p>In this way, please allow us to become sons and daughters who can sing the glory of joy in the garden of bliss, sing the glory of Hosanna&#8217;s victory to the whole universe and return glory to the coming Lord. We make this most earnest wish.</p>
<p>Allow us to think about Jesus Christ, who came to bring liberation from the historical grief, in this day that You have granted us. When we come to the realization that the path that Jesus walked does not pertain only to him, but is the model course that we must walk in the last days, we cannot help but feel that our heart becomes weighed down with burdens and our mind succumbs to our body. Lead us to become the loyal subjects of the Father who can fulfill this will, even if it requires our toilsome struggle. Father! We pray from the depth of our hearts that we may become sincere loyal subjects of the Father.</p>
<p>We entrust everything to You, so please allow the heart of the speaker and the hearts of the listeners to become one. I fear that even in this hour, Satan might work through the minds of those who are skeptical. Please remove such doubts from them first.</p>
<p>If there is anyone whose mind does not operate according to the commanding words of the Lord or who is being dragged into the darkness because they cannot be intoxicated by the grace of the sacred spirit, then please grant them compassion and the grace that can induce them to repent. In this way, may the love of the Father sink into our minds and immerse us in the eternal ideal of life forever. Humbly requesting that Father&#8217;s miracle of life, miracle of love and miracle of power may be manifested in this hour with the words, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>I will speak on the topic <i>&#8220;Behold the Little Lamb of God Who Is Bearing the Sins of the World.&#8221;</i></p>
<h3>The Purpose of God&#8217;s Dispensation<br />
and the Mission of Humankind</h3>
<p>The 4,000-year history from the fall to the coming of Jesus was not a history of goodness but a history of sin. Although countless prophets came to the earth and fought with sin while upholding the will of the dispensation, they were unable to eradicate all the sins. Similarly, the fight with sin repeatedly ended in failure, and the dispensation was prolonged for 4,000 years.</p>
<p>The purpose of God&#8217;s dispensation is to completely purge all these sins. Accordingly, until the day that all sins are liquidated, the history of conflict will not be concluded and the history of the dispensation will not finish. What is more, God has no choice but to send his beloved children as workers for the dispensation.</p>
<p>Therefore, in order to fulfill the will, God established Noah&#8217;s family in place of Adam&#8217;s family. Yet because Noah&#8217;s family repeated the failure, He had to raise Abraham, Isaac, Jacob and Moses, who acted on behalf of the people. After that, from King Saul to King David to King Solomon, as well as to the four great prophets and the twelve minor prophets, the will reached John the Baptist.</p>
<p>Before us lies the mission that humankind must fulfill for Heaven now. What is that mission? Since the root of sin was implanted by virtue of the fall of man, it must be man who subjugates Satan and the root of sin, and returns goodness and glory to God. God has led the dispensation for 4,000 years for the sake of finding such people.</p>
<h3>The Cause of the Tribulations of Jesus,<br />
the Faithlessness of John the Baptist</h3>
<p>What then was the mission that John the Baptist was supposed to accomplish on the earth? It was to testify to and attend Jesus Christ.</p>
<p>Because Jesus was elevated to the position of perfected Adam who did not fall, from his birth, he could return glory to Heaven. What is more, he was someone who could bring joy to God. God sent Jesus Christ to proudly display him before humanity and Satan.</p>
<p>From his birth, Jesus was not supposed to walk the path of suffering. He was supposed to represent humanity, return joy to God and become the honorable mediator, the mediator of love and the mediator of goodness. However, humankind could not receive Jesus.</p>
<p>Consequently, as you know very well through the Divine Principle, although the life of Jesus should not have had any connection or relation to sin, but should have been teeming only with goodness and joy, Satan invaded Jesus&#8217; life, because John the Baptist did not complete his responsibility.</p>
<p>What then is the mission that lies ahead of us, we who live in the last days? We must fulfill the mission of John the Baptist. In other words, before Jesus, who came as the representative of history, we must become the sons and daughters of glory who reap victory and people of goodness with whom Jesus can rejoice. You must bear in mind that this is our mission.</p>
<p>The sorrow of God was caused when Satan tried to pull Jesus Christ down and put him through tests. What is more, the reason that Jesus had to fight with Satan for 2,000 years after he passed away was because of the disbelief of the Jewish people at the time. Furthermore, as you all know, it was because John the Baptist made a grave mistake.</p>
<h3>Human Beings Are the Ones<br />
Who Must Subjugate Satan and Eradicate Sin</h3>
<p>At this time, when we have arrived at the threshold of an era like the end of a century, you must stand opposed to sin and fight. You must understand that you are in the same position as John the Baptist, who had to fight with Satan. Satan had opposed and fought with God for 4,000 years. You must fight with Satan. In place of the 6,000 years and the mission of John the Baptist, you must fight with Satan and bring him to submission. In this way, you must remove all traces of Satan in yourself. Such a responsibility lies on your shoulders. If you cannot fulfill this responsibility, then the Lord of the Second Advent who is to come will not be able to receive you.</p>
<p>Originally, according to the ideals of creation, God&#8217;s garden did not have any trace of Satan. Consequently, to realize God&#8217;s ideals of creation on the earth, we must vanquish Satan and rise to the level of perfected Adam who did not fall. Therefore, if you do not represent God&#8217;s glory and do not become the source of pride that He can display before Satan, there is no way to cleanse the resentful grief of Jesus, who was put through tests before Satan.</p>
<p>Due to the fall of man, Satan trampled on humankind and is dominating all over the land. To reverse this, we must rely upon the principles of indemnity. Because humankind was trodden on by Satan, even if Jesus does not help and the Holy Spirit and God do not help, humankind must subjugate Satan with their own hands. They must be able to overcome all the conditions of sin that Satan presents to them. This is the only way that they can become victorious sons and daughters.</p>
<p>If you do not become the sons and daughters who can reap victory even while fighting alone with the universal Satan, you will not have any relationship with Jesus. This is the fateful path that we simply have no way of escaping. This is the fateful path that we must walk even after our death, if we fail to do so when we are alive.</p>
<p>Jesus Christ, because he failed to accomplish the will that he was meant to bring to pass while he was alive, even today, after 2,000 years have passed, hopes to find someone who can act on his behalf so that he can fulfill the will even after his death. When you consider this, you will see that the 6,000 years of history is not a history of glory. It was not a glorious history for God. Moreover, you must realize that as long as Jesus and the Holy Spirit are fighting against Satan, as long as the sons and daughters who follow Jesus and the Holy Spirit are being tested by Satan, the original ideology of God&#8217;s creation cannot be said to have been materialized on this earth.</p>
<p>Therefore, the resentment that permeates heaven and earth became set as the grief of God. The new history, which sought to eliminate the resentment of heaven and earth, was manifested through the cross of God, the cross of Jesus, the cross of the Holy Spirit and the cross of the faithful ones today.</p>
<p>Until now, we have survived by virtue of the protection and commands of the Holy Spirit, Jesus and God. We must from now on become the &#8220;I&#8221; who can comfort the Holy Spirit, &#8220;I&#8221; who can console Jesus and &#8220;I&#8221; who can comfort God.</p>
<p>The will of the Holy Spirit, the will of Jesus and the will of God are not personal desires. This will penetrates through the individual and the world; it links even heaven and earth. Who will live on behalf of this will and become the universal sons and daughters who can console the universal heart of God? You must understand that Heaven has been guiding the dispensation to find such sons and daughters.</p>
<p>Similarly, to dismantle the wall of the sin rooted in history, we must carry on the fight in the present and in the future. Heading toward the pass of sin that we must cross even at the risk of our lives, and while pouring out all our energy and life, you must make a new determination and march forward.</p>
<p>Jesus remained unchanged, testifying to Heaven and giving a new kind of baptism even when the law-abiding believers of Judaism and the Jewish people opposed him. We also must do the same. Now we must step up to the final stage and transcend denominations. Moreover, while transcending denominations, we must also surpass all ideologies. Even if we are alone, we must fight against Satan. If you can win in the battle with all satans, then the glory of Heaven and the joy of Heaven will descend and reside in you.</p>
<h3>We Must Fulfill the Mission<br />
of John the Baptist in His Place</h3>
<p>Even in this hour, the wall of sin blocks your way. Yet what is the nature of this wall of sin? It is a wall of the sin of 4,000 years of slaying the prophets and sages that God loved. It is a wall of the sin of having hung Jesus on the cross. Therefore, if you cannot eradicate this sin in your own generation, then you will have nothing to do with the Kingdom of Heaven. If you cannot dismantle this wall of sin, you cannot enter Heaven. You must be clear on this point.</p>
<p>If you are to represent the will of God and to stand in the position of John the Baptist, you must learn how to observe the universal sin. By doing so, you must bear on your own shoulders the grief and resentment of God, Jesus Christ and the Holy Spirit. You must comfort Jesus Christ, the Holy Spirit and God, who have been suffering because of sin. If those who can usher in the day of the Sabbath do not appear among you, then even if the Savior was to come to this land, it would be to no avail.</p>
<p>In these last days, we must fight with sin for John the Baptist. We are to represent the 6,000-year history and substitute for the mission of John the Baptist. What is more, besides this, we must personally experience the course of conflict that Jesus walked.</p>
<p>After Jesus Christ passed away, what remained behind him was the path of the cross. Although he tried to establish an eternal standard of victory on the basis of baptism and the cross, he could do so only in the spiritual dimension. Today the mission lies before us to mobilize both the spiritual and the physical and to fulfill the universal, heavenly mission of John the Baptist. You must personally experience the bitter and indignant heart of Jesus, who came to earth and was not honored by humankind, and resolve it on his behalf. Because humankind has this mission, Jesus and the Holy Spirit have been working with them for 2,000 years. Yet the faithful believers of today are not aware of this fact. They have believed that Jesus and the Holy Spirit are simply their servants and messengers.</p>
<p>Who then is Satan? He is the archangel. The fall allowed the archangel to snatch from human beings the right to dominate over the creation and act in that capacity. Therefore, during restoration, we have to pass through a course in which we are dominated by Satan.</p>
<p>To walk this kind of path, what must we do? Using the life of John the Baptist, who testified to Jesus, as the example, and using the life of Jesus as the example, we must walk the same path as they.</p>
<h3>The Path Jesus Walked<br />
in Order to Destroy the Wall of Sin</h3>
<p>What kind of path did Jesus walk to destroy this wall of sin? We in the last days must pass through the path that Jesus once walked.</p>
<p>When Jesus was fighting with Satan, he did not stand in the offensive position to uproot the universal sin. Jesus did not stand in the offensive position toward sin to purge it. For the sake of purging sin and bringing it to submission, he stood in the position of taking it on his shoulders. You must understand that this was the spirit of Jesus Christ.</p>
<p>Sin is an evil and wicked thing. We have a mind linked directly to the original nature of creation, and sin is the thing that acts diametrically counter to that. Jesus took on this sin for the sake of purging it. He bore the sins of the individuals, families, societies, nations, the world, humanity and even the spirits above. You must understand that Jesus even took on the sins of the countless spirits who had lived in the 4,000 years since the creation.</p>
<p>He went so far as to bear even the sins of the spirits who were sent to hell. The reason is that Jesus came as the perfected Adam. Because everything, including Heaven, was overwhelmed with resentment due to the fall of Adam, Jesus had to drag out all that was produced by the fall and bury it.</p>
<p>Thus, Jesus&#8217; life of pioneering a new course took the opposite course from life in the satanic world. Knowing that there is no hope in the elements and essences of the satanic world, he opposed it and taught the way of meekness and humility. Accordingly, the truth of Christianity transcended this world. The Christian truth is meant to rebel against the world.</p>
<p>Jesus led a difficult and toilsome life. Obliged by the dispensation, he was not supposed to take on the sin that came to him from the front. He was supposed to turn back and take charge of sins from behind. Jesus Christ was a pitiful person who took charge of all universal sins and suffered the agony of the cross until the moment of victory. Even today, though he lives in that other world, he cannot rest in peace. He hopes that someone on earth will take responsibility for all the sins.</p>
<h3>Jesus Suffered All Kinds of Ridicule and Tribulation</h3>
<p>When we reflect on the life of Jesus Christ, who came to take charge of the sin of human beings, we can see that during the thirty years until his death, he personally experienced all the ordeals and difficulties that humankind goes through. He put himself in the shoes of a miserable person so that he could bear the sins of those who are miserable. He put himself through hunger so that he could take on the sins of those who are hungry. He sought a lonely place so that he could bear the responsibility of those who are lonely.</p>
<p>After having attained the ability to manage individual sins in this manner, Jesus sought to take charge of the sins of families. For the purpose of taking on the sins of families, he went before a family, but that family opposed Jesus. The parents he loved opposed him, even his younger brothers and sisters countered him. Furthermore, Jesus was rejected by the Jewish sects. This was because he also had to be responsible for the sins of the religious sects. What is more, Pilate and King Herod rejected him. They drove Jesus toward the cross because they thought that the will of Jesus was not in line with their own wishes. Despite all this, until his last breath, Jesus did not hold it against these enemies. Instead, he wished blessings upon them. You must cherish this image of Jesus in your mind.</p>
<p>Jesus was born in a stable. He started in the lowest and most humble position, but rose to the highest position of being the son of God. Jesus came for the sake of humankind and for the sake of the people who believed in God.</p>
<p>Yet, who are the people that befriended Jesus? When he was praying at the Garden of Gethsemane, the three disciples he loved were dozing off. Although they should have become one in heart with him when he was heading toward the hill of the cross, the three disciples took a position that had no resemblance to that. Realizing that he had the mission to bear all the universal sins, Jesus was grateful, no matter who was whipping him. Even if people mocked him and sneered at him, he took it all with gratitude.</p>
<p>You must understand that to realize the purpose of purging sin, Jesus did not strike it and eliminate it by shattering it. He tried to shoulder all the universal sins that were in any way connected to Satan. Nonetheless, because sin has not yet been fully purged, Jesus has been at work to eradicate it.</p>
<h3>Even If You Face Persecution and Rejection,<br />
You Must Maintain Unchanging Faith</h3>
<p>Since you are the ones who are attending Jesus as the Savior, before him you should contemplate, &#8220;To what extent have I taken charge of sin? How much sin did I try to bear on my shoulders?&#8221; What is more, you should place yourself in the same environment as the one in which Jesus lived.</p>
<p>If you have the fate at the end of the century to bear the sins of the individual and family, then you will someday face persecution on the individual level and the family level. Just as Jesus suffered the opposition of individuals, his family and the sects, Christians who live in the last days today will receive the same kind of opposition. Furthermore, there will emerge one religion that will be opposed by the society, the nation and the world.</p>
<p>Jesus&#8217; fight to purge the sins of humankind has not come to a full conclusion. In his place, there will emerge on earth one believer who will be denounced by individuals, families, society, nations, the world and the spirits in heaven during his efforts to bear all the sins of the universe. History is working toward this one crucial moment. You must understand this.</p>
<p>People who believed in the Old Testament became the enemies of Jesus. Similarly, it is easy for those who have been believing in Jesus today to become the enemies of the new dispensation of God. Jesus cried out on the cross, &#8220;My God, my God, why have you forsaken me?&#8221; (Matthew 27:46) This was because God said He did not know Jesus at the moment of the final settlement.</p>
<p>Similarly, when you try to offer yourself for the task of bearing responsibility for the whole sinful history, God will deny any knowledge of you. If that happens, you have to have the same immutable faith as that of Jesus on the cross. You should have the mind-set that you are already a dead person. It is the mission of Christians to advocate this somewhat revolutionary faith.</p>
<p>Is there anyone who opposes you? You must be grateful to them. What is more, is there any family that opposes you? You must be grateful to that family. Is there any religious group that opposes you? You must be grateful to them. Even if the nation and the world put up opposition, you must be grateful to them. Moreover, even if the spirit world, the physical world and Heaven deny any knowledge of you, you should have an unchanging heart. You must have the faith that does not shake.</p>
<p>There must appear believers whose faith will remain unaffected even if Satan, who caused Adam and Eve to fall, opposes you, and Jesus, the Holy Spirit and God claim not to know you. This is the last remaining mission. Yet the 2.4 billion people of humanity and the Christians who believe in Jesus do not clearly understand this. Moreover, even if you become this kind of faithful believer, that is not the end. You have to form a family, a society, a nation and a world that all have this same kind of faith. If you do not cultivate this kind of faith, then you will have no vertical relationship with the will of God. The path through which Jesus will come to you as the bridegroom will be blocked off.</p>
<h3>Overcome Persecution With Love and Be Triumphant</h3>
<p>The love of Jesus represents the love of God. The love of God cannot be undermined by any creature in the whole universe. You must receive this love of God. To do that, you must bear upon your shoulders all the sins of this world and become the triumphant sons and daughters who will not be knocked over even if Satan were to test you, but will digest it instead. Otherwise, you will have nothing to do with the love of God, which is the center of all the powers of this universe and operates as the center of all substantial existence.</p>
<p>Consequently, just as Jesus shed tears of concern for the sake of men on earth even after suffering injustice and mistreatment at their hands, there must emerge in the last days many believers who can do the same. If there are many such believers, there will not be any divisions between denominations. What is more, even if no one is martyred, because the power of conscience, truth and the universal principles wield great influence, the whole universe will have no choice but to follow those believers.</p>
<p>We can erect the signpost of victory, build the victorious family, altar and world, and connect the victory to Heaven only when we stand in such a position. You must never forget that this is your responsibility.</p>
<p>What is more, the conflict that is taking place centering on your individual self, and all the events that revolve around you is not limited to your one self. Thus, you must be cautious. If you make a mistake, it will have ramifications for the whole. You must never obstruct the will of God. You must walk the path of sacrifice for the sake of the whole.</p>
<p>Moreover, if there is a good person, then you must attend him well. If there are evil people, you must be worried and anxious for their sake. Having become such a person, you must march forward bearing even the ordeal of crucifixion for the sake of creating that kind of family, society and world. You must embody the heart of Jesus Christ and persevere and be victorious in fulfilling the will of God.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html" title="Permalink to Behold the Little Lamb of God Who Is Bearing the Sins of the World" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html" rel="prev"><span class="meta-nav">&laquo;</span> Jesus Is the Hero of the Universal Revolution</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html" rel="next">The Providence of God and the Nature of the Adventure That Transcends Reality <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,248 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Jesus Is the Hero of the Universal Revolution &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-756 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-756" class="post-756 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Jesus Is the Hero of the Universal Revolution</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T05:31:48+01:00"> <a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T05:31:48+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Jesus Is the Hero<br />
of the Universal Revolution</h3>
<h3 style="text-align: center;">November 11, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>John 14:1-21 </em></h3>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-14-1"><span class="chapternum">14 </span><span class="woj">“Do not let your hearts be troubled. You believe in God<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26670a" data-link="[&lt;a href=&quot;#fen-NIV-26670a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+14:1-21#fen-NIV-26670a">a</a>]</sup>; believe also in me.</span></span><span id="en-NIV-26671" class="text John-14-2"><span class="woj"><sup class="versenum">2 </sup>My Fathers house has many rooms; if that were not so, would I have told you that I am going there to prepare a place for you?</span></span> <span id="en-NIV-26672" class="text John-14-3"><span class="woj"><sup class="versenum">3 </sup>And if I go and prepare a place for you, I will come back and take you to be with me that you also may be where I am.</span></span> <span id="en-NIV-26673" class="text John-14-4"><span class="woj"><sup class="versenum">4 </sup>You know the way to the place where I am going.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-5"><sup class="versenum">5 </sup>Thomas said to him, “Lord, we dont know where you are going, so how can we know the way?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26675" class="text John-14-6"><sup class="versenum">6 </sup>Jesus answered, <span class="woj">“I am the way and the truth and the life. No one comes to the Father except through me.</span></span> <span id="en-NIV-26676" class="text John-14-7"><span class="woj"><sup class="versenum">7 </sup>If you really know me, you will know<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26676b" data-link="[&lt;a href=&quot;#fen-NIV-26676b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+14:1-21#fen-NIV-26676b">b</a>]</sup> my Father as well. From now on, you do know him and have seen him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26677" class="text John-14-8"><sup class="versenum">8 </sup>Philip said, “Lord, show us the Father and that will be enough for us.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26678" class="text John-14-9"><sup class="versenum">9 </sup>Jesus answered: <span class="woj">“Dont you know me, Philip, even after I have been among you such a long time? Anyone who has seen me has seen the Father. How can you say, Show us the Father?</span></span> <span id="en-NIV-26679" class="text John-14-10"><span class="woj"><sup class="versenum">10 </sup>Dont you believe that I am in the Father, and that the Father is in me? The words I say to you I do not speak on my own authority.Rather, it is the Father, living in me, who is doing his work.</span></span> <span id="en-NIV-26680" class="text John-14-11"><span class="woj"><sup class="versenum">11 </sup>Believe me when I say that I am in the Father and the Father is in me; or at least believe on the evidence of the works themselves.</span></span> <span id="en-NIV-26681" class="text John-14-12"><span class="woj"><sup class="versenum">12 </sup>Very truly I tell you, whoever believes in me will do the works I have been doing, and they will do even greater things than these, because I am going to the Father.</span></span> <span id="en-NIV-26682" class="text John-14-13"><span class="woj"><sup class="versenum">13 </sup>And I will do whatever you ask in my name, so that the Father may be glorified in the Son.</span></span> <span id="en-NIV-26683" class="text John-14-14"><span class="woj"><sup class="versenum">14 </sup>You may ask me for anything in my name, and I will do it.</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-15"><span class="woj"><sup class="versenum">15 </sup>“If you love me, keep my commands.</span></span> <span id="en-NIV-26685" class="text John-14-16"><span class="woj"><sup class="versenum">16 </sup>And I will ask the Father, and he will give you another advocate to help you and be with you forever—</span></span> <span id="en-NIV-26686" class="text John-14-17"><span class="woj"><sup class="versenum">17 </sup>the Spirit of truth. The world cannot accept him, because it neither sees him nor knows him. But you know him, for he lives with you and will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26686c" data-link="[&lt;a href=&quot;#fen-NIV-26686c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=John+14:1-21#fen-NIV-26686c">c</a>]</sup> in you.</span></span> <span id="en-NIV-26687" class="text John-14-18"><span class="woj"><sup class="versenum">18 </sup>I will not leave you as orphans; I will come to you.</span></span> <span id="en-NIV-26688" class="text John-14-19"><span class="woj"><sup class="versenum">19 </sup>Before long, the world will not see me anymore, but you will see me. Because I live, you also will live.</span></span> <span id="en-NIV-26689" class="text John-14-20"><span class="woj"><sup class="versenum">20 </sup>On that day you will realize that I am in my Father, and you are in me, and I am in you.</span></span> <span id="en-NIV-26690" class="text John-14-21"><span class="woj"><sup class="versenum">21 </sup>Whoever has my commands and keeps them is the one who loves me. The one who loves me will be loved by my Father, and I too will love them and show myself to them.”</span></span></em></p>
<h3 style="text-align: left;">
Prayer 1</h3>
<blockquote><p>Beloved Father! It was God&#8217;s purpose of creation to look down upon the garden of life. The garden of truth that sings the glory of the Father was the ideal garden. The original garden was the place where, centering on the eternal and unchanging love, the whole becomes harmonized before Your holy presence. While manifesting the internal sung-sang and the external hyung-sang of the Father, everyone was to live in intoxication.</p>
<p>Beloved Father, please allow us to feel in this moment the garden of hope for which we long. Allow us to experience the original garden. While yearning for it in our minds, allow us to put our bodies into action and bow before You. While we elevate the will of the Father with our minds, please allow our bodies to be offered as the sacrifice. Please hand over to us all the ordeals You have undergone to find us. As for You, we hope that all You will receive is glory.</p>
<p>Father, please do not forsake even one life among the sons and daughters of Yours who have gathered here in loneliness. Please allow their minds to be caught on fire in the eternal life of the Father. Please allow our minds and bodies to become one with the life of the Father. Allow this to be the time when the whole congregation can become one in heart and offer themselves as the sacrifice. By doing so, please allow us to become impeccable sacrifices. Father, this is our sincere wish.</p>
<p>Father, please protect us. Take charge of the work of purification. Please do not let Satan invade in this hour. Please allow us only to be captivated by the will of the Father. Centering on the will that You have commanded, allow us to act in response. Please allow us to obey with our minds and bodies.</p>
<p>Loving Father, I earnestly pray that we can honestly reveal before You all our deficiencies and undesirable elements and repent. At the same time, let us receive the Father&#8217;s love in this moment.</p>
<p>Father, this day is a holy day in which You have promised to bestow blessing upon us. Bless the countless altars that have gathered on behalf of the people. Since there are many who are fighting on a lonely altar representing the will of God, please grant them the same grace.</p>
<p>Please prophesy to us, reveal to us and let the reality that You testified to be manifested through us. This people are in the bondage of darkness, so please bring forth Your direct miracle, which has the power to awaken them. Through the churches and Your children, please let it appear. Beloved Father, this is what we earnestly hope for.</p>
<p>The promised last days have come near us and the time of permitted grace has come. Yet since we are still imperfect, inadequate and deficient, please lead us. Please lead us not to become ones who cannot uphold the will of the Father which we must advocate.</p>
<p>Please allow us to mourn about our own deficiencies and bow before the Father. By doing so, please let many loyal children who uphold Your true will emerge amid the denominations that represent the people.</p>
<p>In this way, please allow the divided denominations to be tied together as one, and lead them to act on behalf of the whole grace of the Father. Please manifest the concealed will of Heaven. Allow the dawning of the day of blessing in the near future, when, before the 2.4 billion persons of humanity, the Father can rejoice and take pride in that will. Father, we earnestly hope and wish for this.</p>
<p>Father, please look with sympathy upon the children who have gathered here. They are the ones You have called together, and they are the ones whom You have driven out to the lonely path and gathered together. Govern them in the front, back, left, right, above and below. Now, please let nothing else but the Father&#8217;s desired will remain in your minds and bodies, and let there be no traces of Satan and no roots of sinfulness there. Through a repeated process of purification and centering on the impeccable goodness, allow our minds and bodies in this hour to lie prostrate as humble and meek people before the original nature of the Father.</p>
<p>Father, we believe that Your children, who are carrying on the fight with Your words, are lying prostrate before You everywhere. Please protect them and grant to them the same grace as this hour.</p>
<p>Father, You have put us in the front, advised us and cooperated with us for the sake of the people. Please allow us to demonstrate proudly that we are indeed the children of the living Father, we are indeed the children who are standing in the center of life.</p>
<p>Father, please testify to the realities grasped in Your hands. I earnestly hope that by awakening this people, you will allow them to be saved from the yoke of Satan. By doing so, raise us to the point where we can sufficiently live up to the expectations of the Father&#8217;s will to grant grace on the level of the people. Allow us to lead them to the Father.</p>
<p>Please allow our minds and bodies to be moved by the joyful will of the Father and the Holy Spirit from the beginning to the end of this hour. Please accept this whole gathering as the glorious offering. This is our sincere wish.</p>
<p>Govern us from the beginning to the end. I prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Father! To find the one center of Zion, many ancestors have been fighting and shedding blood until now for the sake of paying indemnity for the debt they owe the Father and the concern they have caused the Father. Father! Please allow the glory of Zion to come upon our minds and bodies in this hour. Please let our minds be overwhelmed by the joy of Zion, in which You can dwell for eternity.</p>
<p>If we can be the children of glory whose minds and bodies You can govern, then there is nothing else we want more. There is no greater wish. Nonetheless, if we cannot be grasped inside the loving hands of the eternal Father, then on the earth there are none who are more lonely, pitiful and miserable than we.</p>
<p>Father! With life and love, please protect and nurture Your sons and daughters, who have suffered in a difficult environment. These wounded minds and bodies have come forth before You in the shape they are in, Father. Please consider them with compassion. Even for this moment, please allow us to heal our wounds, inflicted during the fight. Even for this hour, please allow us to taste the love hidden deep inside Your mind. These things being accomplished, please allow us to resemble the heart of Heaven. Allow the whole to sing and rejoice, centering on the glory of Heaven. Let this be the hour when the whole congregation can bow their heads for the sake of Heaven&#8217;s will. My Father, this is our sincere wish and desire.</p>
<p>Father! It was You, Father, who drove us, the lonely ones, here and there. It was You who caused us to be in a miserable position and to make an appeal toward Heaven without the awareness of others. Please allow these people to be comforted in this hour. Behind the course of tribulation that Your sons and daughters who are prostrated before You have walked, there can be found footsteps soaked in blood. The tears of bitter mourning are helping them. Father, please look upon them with sympathy.</p>
<p>Please allow us to be touched by the hope we will gain from today, the grievance that we will understand from today, and the Father&#8217;s love we will feel from today, so that we can cross the pass of the future fight with hope. Please allow us to step over the wall of hatred of the many enemies we will encounter in our course of life. This having been accomplished, please allow only the mind of peace to be the center of our minds. Let the urgent heart yearning for the victory be the only center of our life, so that we will be sufficiently prepared to uphold the flag of the fight and step forward on behalf of the people.</p>
<p>Please allow us to be adequately prepared to go forward, holding up the words of victory that Heaven has granted as the shield. Lead us not to become ones who set their hearts on the causes of the long- standing sorrow both in the present and in the future. Loving Father, from the depth of our hearts, we desire that You will ignite the fire of Your eternal love and allow us to become sons and daughters who are more than qualified to eradicate the enemy Satan, who is making the accusation.</p>
<p>Father, who guides this lonely pulpit, those children who are following in Your footsteps are also in a lonely and miserable situation. Please be the whole of their life, the whole of their goodness, and the whole of their hope again today. Please comfort them, lead them and love them.</p>
<p>We know that being the last days, this age does not need the words of men, the words spoken through men, nor the will centered on men. We know the only thing needed is the Father&#8217;s words of love, which move inside the pulses of eternal life. Even if Your children who have gathered here stand in precarious positions where they cannot experience love, please work Your miracles on them. Inspect them with Your fiery eyes. Please manifest the nucleus of glee hidden deep inside our hearts. We who are in bondage to all kinds of fears, please allow us to step forward before the Father and repent.</p>
<p>If there is anyone who is held in the Father&#8217;s hands and is returning gratitude to the Father for Your grace, then please allow them to safeguard such a heart without changing. Father, I earnestly wish and hope that You will allow us to become worthy children who are more than qualified to win the seal of acknowledgment for being sons and daughters of love before the sacred Father.</p>
<p>Please bless the countless altars gathered for the sake of the people. I know that the protesting voices of the saints, who are in agony because they do not know the will, are penetrating through Heaven. Please resolve their grievances and suffering. Take charge of their hearts so that You can lead them to uphold and realize the will that You desire in the last days.</p>
<p>Moreover, among this people there are many unknown brothers who are pioneering the lonely path and fighting with the darkness for the sake of the will, without others being aware of their actions. Let the day that the darkness recedes before them dawn upon them in the near future.</p>
<p>The movement of life, the movement of grace and the manifestation of glory are all one. Father, please testify through them. Father, we wish from the bottom of our hearts that using the scattered altars as the barriers, You can drive them centering on the Father&#8217;s will and build the altar of happiness that will bring the people together as one.</p>
<p>Even today, lonely sons and daughters are spread all over the countryside fighting with Your words. Please be with them. With the spirit that they must prevail over the ultimate enemies of the 6,000- year history, they have built the altar of victory. Based on Your directives, they have been fighting for the day when the Father can rejoice with Your sons and daughters. Father, please be present with them, so that wherever they are, Your personal works of miracles can take place. Father, we fervently desire that You would allow the influence to reach the whole through that kind of environment.</p>
<p>Now, in this hour, please bestow only the Father&#8217;s grace of bliss. Hoping that You will accept us, we prayed all these words in the name of the beloved Lord.</p>
<p>Amen.</p></blockquote>
<p>Today, in this hour, I am going to speak on the topic <i>&#8220;Jesus Is the Hero of the Universal Revolution.&#8221;</i></p>
<h3>God Desired that Man Perfect Himself<br />
as a New Substantial Being</h3>
<p>When you observe the process of a new thing being created, you can say that it is a revolutionary process. When you look at all the things created in the six days, from the trifling insects to man, God created gradually newer and better beings. At the very end, He created man. You probably all know that by creating man, God could fully realize the higher form of God&#8217;s internal sung-sang and external sung-sang. The Father&#8217;s desire for a new, yet unchanging, substantial being that He could be proud of for eternity is the ideal of the Creator.</p>
<p>Similarly, God created humankind as the eternal, new substantial being in whom He could take delight. God made them in such a way that when He compared them to any other created being He could say, &#8220;They are beautiful and indeed very good.&#8221; You know that the ones who were created like this were Adam and Eve.</p>
<p>Adam and Eve should have felt joy by feeling the original goodness and the internal glory of God through their actual daily life. Nonetheless, due to the fall, Adam and Eve could not realize that will. Fallen men are those who remained stagnant in the position where they, as the representative of all beings created by God, were unable to manifest the new glory.</p>
<p>More important than the fall of man is the fact that, because the will of God is an unchanging will, unless it is accomplished at whatever cost, God cannot be dignified as the Creator and cannot command His authority. Therefore, as you know from the Divine Principle, the history of restoration and the history of salvation are attempts to restore this situation.</p>
<p>When God faces all things of the universe with this perspective, the following questions arise: when is the day of the appearance of one precious being who cannot be found in Heaven, on earth and among all things? When is the day a new substantial being of a higher realm, who can manifest anew the whole sung-sang concealed deep inside God, will appear and fulfill the will of God? To usher in such an inspiring and shocking day, God has set His one purpose. Until today, He has been carrying on a ceaseless course of tribulation in the dispensation of restoration.</p>
<p>When would the day come when, among all the created beings, God can find a new universal being who can bring Him the joy that did not exist until then and cannot be exchanged even with all of the creation? God is over-anxiously longing for that one day and that one being.</p>
<p>God has already completed the design for the world of the ideals of creation in which He can rejoice, enjoy Himself and harmonize with humankind and all things. He has even mapped out the aspects of the ideal lifestyle. When He can rejoice with the one hero with whom heaven and earth, created as the internal and external symbols respectively, can also share their joy, then heaven and earth can feel happiness together. You probably know well that Heaven has been exerting itself for the sake of erecting this one standard.</p>
<p>What then is the will that the Father demands of us? If there is one will that cannot be abandoned, even if everything in heaven and earth must be shattered, it is the perfected human being. Until human beings become perfected, they are to follow the principled laws of the creation and become the substantial embodiments of truth. Because of the fall, they became embodiments of the unprincipled. Therefore, although human beings have the external shape of a human, their internal characters and external forms could not manifest themselves as the incarnations of the eternal substantial being of God.</p>
<p>Because of this, although fallen men have the shape of human beings, they have lost the ideal form of the creation. God has been injecting again the ideal form of creation into human beings. You all know very well the work of Heaven, which is toiling to find the one new substantial being.</p>
<h3>Jesus Came to Realize<br />
God&#8217;s Ideals of Creation</h3>
<p>The person who came as the original being, the one center and being of hope, is Jesus Christ. God suffered for 4,000 years until He sent Jesus Christ. Although after the creation, He sent Jesus as the one new being who could bring harmony and be presented before all things, humankind did not serve Jesus as the signpost of God&#8217;s hope, but unfolded the opposite course of the fall.</p>
<p>God, who strained to find the lost standard of goodness, gathered the people who were under the accusation of Satan while He was going through the 4,000-year history. He laid the foundation on the level of the people. This foundation on the level of the people should have served Jesus, who was raised as the one master representing all things in heaven and earth. Yet Jesus and the people went their separate ways. Here, our mission and God&#8217;s were determined.</p>
<p>The Jewish people could not see that Jesus was sent as the representative of the whole, whose purpose was to restore the universe into a new world centering on God. Because they could not serve him as the master of the whole as they should have, Jesus and the people had to fade away to separate ways. You must understand this greatly increased the grief of God.</p>
<p>The words that Jesus spoke to the Jewish people then and all the things he manifested were not based on his own will. It was the will of Heaven. Jesus was acting on behalf of the will of God&#8217;s dispensation. However, there arose a bitter conflict between Jesus and the people within the realm of the fall, who should have received the will of God through Jesus.</p>
<p>The Jewish people of the time did not realize that when the words of God appear before a people in this fallen world, they can revolutionize the people. If they appear before an individual, they can revolutionize the individual. If they appear amid the world, then they can revolutionize the world. Furthermore, they did not realize that the words can newly revolutionize heaven and earth.</p>
<p>The Jewish people thought for 4,000 years that the laws given through Moses and the covenant bestowed on Jacob could enable them to realize their ideals and that they could replace the whole. God, however, began from the lowest level and had been gradually elevating them. The Jewish people did not realize that after passing through the Old Testament history of the formation stage, history was taking the Principled course of the creation of the universe, whereby it passed through the New Testament era of the growth stage and proceeded forward until the completion stage. Consequently, the people of the time could not accept the words of life of Jesus. The people then could not recognize that they were new words higher than those of the Old Testament and that they could forge a link with higher, new values.</p>
<p>What Jesus wanted was to accomplish all of God&#8217;s ideals of creation. Accordingly, on behalf of heaven and earth, he has been continually walking through the revolutionary course to complete the universal mission. Therefore, you who are living in the last days must understand that when Jesus appeared on earth and marched on the path of the universal will, he went through the course of elevating fallen humankind back to their original position. In that course, there were numerous vicissitudes of conflicts and courses of revolution.</p>
<h3>The Hope of Jesus and<br />
the Unfaithfulness of the Jewish People</h3>
<p>What then is the extent of the hope of this revolutionary Jesus? His hope is not the type of hope that one would possess on this mass of earth that we live on. It is hope that can transcend the world and connect with the limitless kingdom of God. While this is the hope of Jesus, it is also the hope of God, who is one with him. Therefore, humankind must understand that God placed all hopes in Jesus and tried to manifest His will through him.</p>
<p>What then were the words that Jesus spoke before the Jewish people? What was the form of Jesus, who was the demonstrative proof of God&#8217;s whole will? He emerged as the hero of the new truth who had not existed in history until then. Although countless people called out for truth, they were merely on the individual level. Although they might have claimed that their truths could represent the people and all nations, in actuality, they could not become such embodiments of truth. It was Jesus who appeared with the truth that can shed light on heaven and earth. Accordingly, the words that Jesus spoke were the most valuable, new and revolutionary words in that era and that world. Had the Jewish people, who had longed for the will of God, known these revolutionary words of truth, they would have forsaken their personal lives and pursued the truth.</p>
<p>Since the Jewish people, who should have stood in this position, shattered this one day they should have accomplished, we must step over this. We have the mission to resolve that which is deep-rooted. The sacrifice has to be made because the truth of Jesus is not upheld.</p>
<p>God raised one people. Among the one people, He tried to find the one center. Through that one center, He tried to manifest His internal heart as the universal words of truth. Nonetheless, the Jewish people did not understand this. Jesus was supposed to manifest the eternal words of truth during the thirty years of his life. Due to their unfaithfulness, he was abandoned. Therefore, until the moment they find the embodiment of truth, humanity must seek the universal new truth that Jesus tried to disseminate on the earth on behalf of the will and heart of God.</p>
<p>The faithful believers of today must fulfill the wishes of Jesus. The words that Jesus testified to should have been brought to light at his time on the level of the people and the world. However, because they could not be shown as the words on the level of the world, Christianity became a religion of tribulations. If the words that Jesus spoke were demonstrated then as the central words that could have saved the land, then the powers of God could have been exhibited. If there were individuals and people who had followed Jesus, and if the world had followed Jesus, then Jesus, who was responsible for the will of God, would have fulfilled that will on the earth. Yet there were no such individuals, people nor such a world before Jesus.</p>
<p>What is more, centering on the words of Jesus, the beloved disciples who had to represent him, the beloved family, the beloved sect and the beloved nation should have become one with him to experience the heart of God and uphold the will of God. Because they were relating with Jesus with the truth they held on the level of the sect, they took different paths than the words of Jesus. What then is that which Jesus is demanding of you, the believers in the last days? Hoping that we, the shameful ones, would become universal individuals, he proclaimed the universal truth.</p>
<p>Although Jesus came to earth as one individual, he was not an average individual. He represented all the created beings of the universe. He represented the whole truth contained in the creation principles of the created world.</p>
<h3>What Jesus Demands of Us</h3>
<p>Although he came as such precious being, he could not become the valuable hero, the master of the universe. Therefore, you yourself must accomplish this purpose of universal value. If we believe in Jesus, we can come in contact with truth on the individual level through the spirit of Jesus. If unlimited grace and blessing are bestowed upon you as you undergo the spiritual works of Jesus, you must not think that this is just individual grace. In time, it must become grace on the level of the environment and the sect; then it must finally reach the level of the world. Only then can he return.</p>
<p>When grace is granted us, you should not be caught up in your own individual thoughts and think that it is only your own. If you received the blessing and the truth through Jesus in the individual position, then while you digest them as your own, you must also be responsible for disseminating this truth to the world. If you march forward with the world side by side, then while it becomes your grace, it also becomes the grace for heaven and earth. Nonetheless, if your concept of faith seeks only to save you, if you stagnate in the concept of individual salvation, then you will meet your end there.</p>
<p>If the blessing that is overflowing in your hearts remains merely as yours, then you will repeat the mistake of the Jewish people who nailed Jesus on the cross. If the truth you obtained remains in the religion that seeks only to save your life, then the hope of Jesus can never be accomplished.</p>
<p>The words of Jesus are spoken based on the center of hope. They reach the dispensation of Heaven by passing through the individuals, family, society and the world. Through the individual grace granted to you, they will produce the miracle of resurrection and rebirth. The salvation on the level of the individual, the people, the nation and the world must be realized through you.</p>
<p>You must clearly understand that before you the salvation of the individual level, the level of a people, the level of the world and the universe remain unfulfilled. When you express gratitude to Father, you must be able to do so not just on the level of the individual, but also on the level of the family, the society, the nation and the world. What is more, when you repent, you should begin with individual repentance and move up to repentance on the level of the family, the nation and the world. You should repent on behalf of heaven and earth.</p>
<p>Now is the time when you must transcend the concept of individual salvation, the concept of the salvation on the level of the family, the society, the nation and the world. Only then can you begin the indemnification of the world. If the Jewish people had the concept of salvation on the level of the people and on the level of the world, then Jesus would have saved humanity through the Jewish people.</p>
<h3>The Words of Jesus Are<br />
the Words of Universal Revolution</h3>
<p>Jesus&#8217; words of the gospel, which bore fruit through the course of history, are words of truth. They can transcend history and the lives of the ancestors and grant salvation to you. You must understand that these words of Jesus are indeed the words of universal revolution.</p>
<p>Jesus came to earth and put up opposition to all the laws that people had believed in until that time. He proclaimed, &#8220;Through me, all laws must be perfected.&#8221; Because the Jewish people did not understand these words of Jesus, which contained universal perspective on faith and universal value, they killed him. These words at that time were universal words. Pertaining to love, he also spoke universally revolutionary words.</p>
<p>Jesus said, &#8220;Those who do not love me more than anything else are not acceptable. Moreover, if you do not love me more than anything else, then you cannot become my disciple.&#8221; When we see this, we can understand that until God creates the one perfected universal body that He sought after as the ideal of creation, the path toward the truth involves a universal course.</p>
<p>Universal love is extremely important for forming the relationships between people and the relationship between God and human beings. Because humans could not form a relationship with God based on universal love, they formed a relationship with the archangel. Accordingly, human beings lost the power to penetrate through the door of love and rise up centering on the ideal relationship of love with God. If they are to penetrate through this door of love again, they need power.</p>
<p>The reason Jesus said, &#8220;You must love me more than anyone else,&#8221; is not because he wanted to receive love for himself. If human beings believed in those words and loved Jesus, he could grasp them with a force stronger than the force that is holding them in the realm of Satan and elevate them to the position where they could give and receive the original love with God. For this purpose, he said, &#8220;Love me more than anyone else.&#8221; These words are revolutionary words of prophecy.</p>
<p>However, the love in today&#8217;s world is self-centered love or love centered on the nation. Until now, at best it was loving one&#8217;s own nation or one&#8217;s own family. There was no love that transcended the national sphere.</p>
<p>What God and Jesus hope for is not one people or one nation. It is constructing, centering on God, the ideal world that can bring unity to heaven and earth. Therefore, the love that Jesus presented was love on the level of the world. It was not self-centered love on the level of the people and nation, but love that transcends the world and links heaven and earth.</p>
<h3>The Revolution of Truth and<br />
the Revolution of Love</h3>
<p>What then is the true path that Jesus paved through the words of the gospel? How much love have you been giving today? Jesus Christ did not stand before an individual. He also did not stand before a family or a nation. To do this, Jesus, who was the master of universal love and the bridegroom, received persecution on the level of the family and the nation.</p>
<p>The countless created beings of heaven and earth, all the created beings that could not feel the love of God until now, finally formed a relationship of love by virtue of Jesus. It was the responsibility of Jesus to form these kinds of relationships.</p>
<p>What kind of love is the love that Jesus pioneered and established? It is love that is counter to the love of this world. Although the love of human beings is at best for the sake of the nation, the love of Jesus was universal. In other words, it was love that transcended individuals, people and nations. It penetrated deeply into Heaven.</p>
<p>What kind of love is the love of God? It possesses both sides. It does not just love itself, it even loves the enemy. Therefore, while we love God, we must also love our enemies.</p>
<p>The love of Jesus was such that it even embraced Satan. Because he knew that the love of God embraces even Satan, Jesus set that as the standard and said, &#8220;Love even your enemies.&#8221; (Matthew 5:44) Therefore, we must establish this standard of universal love on earth. We must have the mind-set that if we cannot complete this task before our death, then we will establish the standard through our descendants.</p>
<p>Moreover, now you must lead a life of gratitude. You must have the attitude that you are alive by virtue of the grace and love of Jesus and Heaven, and lead a life of offering gratitude to Heaven. Your salvation merits gratitude. The grace that allows you to carry on the universal mission of Jesus and perfect the love of Jesus also merits gratitude.</p>
<p>You must understand the universal love of Jesus who, representing his family and clan and holding onto the people, forgave and loved his enemies even while he was dying on the cross. You must fathom the heart of Jesus, who overcame sorrow and looked down upon the enemies with a loving heart.</p>
<p>While he took his last breath on the cross, Jesus said, &#8220;All is fulfilled.&#8221; (John 19:30) Until he could say that, he cast out of his mind all his sorrow and bitter grief and suffered in an attempt to accomplish the will of Heaven. Because the mission of claiming back the universal life through his one self was on the verge of total failure, Jesus forgot even his own agony and affliction and overcame all kinds of ordeals. Therefore, the life of Jesus was not a life lived to save only himself; it was lived for the sake of building the nation and people of God.</p>
<h3>The Faithful Followers of<br />
the Last Days Must Awaken</h3>
<p>Today you are carrying on a movement to claim back the life of Jesus Christ. In the democratic world, they are carrying on a movement to resurrect the name of Jesus Christ. On earth, the gospels of Jesus remain, and the new universal truth, love and life not previously found here remain. Such universal truth, love and life can become yours.</p>
<p>As the one who came to save humanity and strained his every nerve toward that end, Jesus was the most pitiful person ever. The words of Jesus were spoken for the world. They were the words of truth that should have been sown on earth, the words of Heaven that should have been upheld on earth, and the universal words of life that should have been implanted on earth. They were not upheld on earth, and Jesus who came was rejected. Because the people then did not believe in the words of Jesus, Jesus was deserted.</p>
<p>God exerted Himself for 6,000 years. Yet if the master of life and truth, who can alleviate the burden of God, can come to this land, then all the conscientious people on earth will love him. If there are people who are seeking the way on earth, if there are people who seek the path of life, they will walk on his side. Although this is the standard that Heaven hopes for, human beings today lead a life based on the standard of individual love and the concept of individuality. Because the believers of Judaism in the past lived with the same mentality, they hung Jesus on the cross. We must come to grips with the fact that such phenomena have continued since the time of Jesus.</p>
<p>Now what we need are new words, new life, and new love that can represent heaven and earth. However, what we need are not just conceptual words, but words that can be substantialized in practice.</p>
<p>Therefore, in these last days of today, you must awaken. Possessing the new truth, life and love, you must save the people and the world. You must eradicate the bitter grief and spite of the 6,000 years.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html" title="Permalink to Jesus Is the Hero of the Universal Revolution" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Claim Back the Eternal Ideal of God</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html" rel="next">Behold the Little Lamb of God Who Is Bearing the Sins of the World <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,307 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Become the One Who Attends the Lord Who Has Come for the Sake of all Humankind &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-766 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-766" class="post-766 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Become the One Who Attends the Lord Who Has Come for the Sake of all Humankind</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T10:38:34+01:00"> <a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T10:38:34+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let Us Become the One Who Attends the Lord<br />
Who Has Come for the Sake of all Humankind</h3>
<h3 style="text-align: center;">December 23, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>Matthew 8:18-34 </em></h3>
<p style="text-align: center;"><em><span class="text Matt-8-18"><sup class="versenum">18 </sup>When Jesus saw the crowd around him, he gave orders to cross to the other side of the lake.</span> <span id="en-NIV-23365" class="text Matt-8-19"><sup class="versenum">19 </sup>Then a teacher of the law came to him and said, “Teacher, I will follow you wherever you go.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23366" class="text Matt-8-20"><sup class="versenum">20 </sup>Jesus replied, <span class="woj">“Foxes have dens and birds have nests, but the Son of Man has no place to lay his head.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23367" class="text Matt-8-21"><sup class="versenum">21 </sup>Another disciple said to him, “Lord, first let me go and bury my father.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23368" class="text Matt-8-22"><sup class="versenum">22 </sup>But Jesus told him, <span class="woj">“Follow me, and let the dead bury their own dead.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-8-23"><sup class="versenum">23 </sup>Then he got into the boat and his disciples followed him.</span> <span id="en-NIV-23370" class="text Matt-8-24"><sup class="versenum">24 </sup>Suddenly a furious storm came up on the lake, so that the waves swept over the boat. But Jesus was sleeping.</span> <span id="en-NIV-23371" class="text Matt-8-25"><sup class="versenum">25 </sup>The disciples went and woke him, saying, “Lord, save us! Were going to drown!”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23372" class="text Matt-8-26"><sup class="versenum">26 </sup>He replied, <span class="woj">“You of little faith, why are you so afraid?”</span> Then he got up and rebuked the winds and the waves, and it was completely calm.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23373" class="text Matt-8-27"><sup class="versenum">27 </sup>The men were amazed and asked, “What kind of man is this? Even the winds and the waves obey him!”</span></em></p>
<p style="text-align: center;"><em><span class="text Matt-8-28"><sup class="versenum">28 </sup>When he arrived at the other side in the region of the Gadarenes,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23374a" data-link="[&lt;a href=&quot;#fen-NIV-23374a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+8:18-34#fen-NIV-23374a">a</a>]</sup> two demon-possessed men coming from the tombs met him. They were so violent that no one could pass that way.</span> <span id="en-NIV-23375" class="text Matt-8-29"><sup class="versenum">29 </sup>“What do you want with us, Son of God?” they shouted. “Have you come here to torture us before the appointed time?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23376" class="text Matt-8-30"><sup class="versenum">30 </sup>Some distance from them a large herd of pigs was feeding.</span> <span id="en-NIV-23377" class="text Matt-8-31"><sup class="versenum">31 </sup>The demons begged Jesus, “If you drive us out, send us into the herd of pigs.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23378" class="text Matt-8-32"><sup class="versenum">32 </sup>He said to them, <span class="woj">“Go!”</span> So they came out and went into the pigs, and the whole herd rushed down the steep bank into the lake and died in the water.</span> <span id="en-NIV-23379" class="text Matt-8-33"><sup class="versenum">33 </sup>Those tending the pigs ran off, went into the town and reported all this, including what had happened to the demon-possessed men.</span> <span id="en-NIV-23380" class="text Matt-8-34"><sup class="versenum">34 </sup>Then the whole town went out to meet Jesus. And when they saw him, they pleaded with him to leave their region.</span></em></p>
<h3>
Prayer 1</h3>
<blockquote><p>Father, as we think about Your granting us the grace that You have, we the worthless come before You and call you, &#8220;Father!&#8221; We are truly grateful. We cannot but thank You for sending Your beloved Jesus to us, we who should be leading a life bearing Your inveterate enmity, uttering the moaning sound of death every day of our lives. Thank You for unrolling to us the grace of redemption. Please allow us to become the children who know how to recompense for the grace by first offering our minds and bodies before the grace of the triune God, who has made constant laborious efforts throughout the several thousand years of history for this, and before the toils of the Father who has shined the light of hope on the earth, which is in darkness.</p>
<p>Father, we thank You for granting us the grace that we can experience in our heart Your wonderful grace this morning, that our bodies, which have been buried in darkness, may be submerged in the stream of life hidden in Heaven, and that we who have been buried in death may be linked to the arteries of the Father&#8217;s cosmic love. Father, please let us feel deeply in our hearts in this hour that there is no way for us to recompense for the grace of the Father, even if we offer all of our minds and bodies. Please let us become those who get overwhelmed with shame even if they offer all of their minds and bodies. Please allow us to feel insufficient of our own accord, even if we offer all of our minds and bodies.</p>
<p>Father, since we came before You with all of our strength, with all of our devotion, and with all of our minds and bodies, please look at us with compassion. Please forgive us. In spite of having offered ourselves as living sacrifices before the Father, we have not done so until this time, this day. Guide us to be equipped quickly with an offering that the Father can appreciate with joy and of which the Father can be eternally proud.</p>
<p>Father, Your sons and daughters gathered here are a small group of people. Please allow them to realize that You are demanding for this nation to be the sacrifice of victory. Lots of sacrifice is required in order for this nation to keep from being swept away by the wave of death.</p>
<p>We are prostrated with gratitude before the grace that You raise us and guide us with, we who are worthless, in this hour. Please accept us as a sacrifice who can take over all fields of the Father&#8217;s concern, and who can dissolve the basis of the Father&#8217;s concern, and who can liquidate the battle ground between good and evil and return the glory of victory before Heaven.</p>
<p>Father, please accept this audience first as a living sacrifice with joy. Next, please guide us to be able to build the altar of victory that the Father is seeking. Further, please let us demonstrate Father&#8217;s will of compassion in the face of this nation and all humankind. Beloved Father, we sincerely wish and pray this.</p>
<p>Father, please allow us to be able to understand Your situation, in which You have raised those who are worthless and given them directions regarding the holy mission of the cosmic level. Please allow us to be able to experience Father&#8217;s heart with deep-rooted concern. Please allow us to be able to feel Father&#8217;s bones-and-muscle- aching lamentation. Even if we get exhausted in the fight, please allow us to experience the Father&#8217;s sorrowful position and heart and be comforted of our own accord.</p>
<p>Father, please let us gather our strength to fight of our own accord and step out again whenever we face the anxious hyung-sang of the Father, who is calling us. Please allow us to become sons and daughters who move without stopping for the sake of Heaven. This we sincerely wish and pray.</p>
<p>Father, this time when the year is about to change, if there was something about us that did not fulfill the mission that You put us in charge of for the past year, Father, please have forbearance. Since the mission that Heaven put in our charge is one that corresponds to the idea of history of the heavenly level, beyond the idea of history of the worldwide level, if there is something about us that was leading life centering on our own selves for the past year, please forbear with us. Please forbear that we have thought of the mission You put in our charge too lightly.</p>
<p>Father, please allow us to have all the inadequacies that we have shown before the Father for the past year liquidated, and allow us to have new minds, a new resolution, and a new vow. Please allow this hour to be one in which we can repent for ourselves being inadequate before the will of the Father. Father, we sincerely wish and pray this.</p>
<p>Father, since the road we are taking is the course of the fate of the cosmic level in which we cannot but walk hurriedly, the course of battle throughout our lives, please allow us not to get exhausted along the way. Please allow us not to be discouraged along the way. Do not let a matter of great regret to be developed by us by looking back while walking on. Father, we sincerely wish and pray this.</p>
<p>We have stepped on the course of the fate of the cosmic level that we cannot but take. We have stepped on the course that we have to walk on even after our death, if we do not walk on it while living. Please allow us to feel insufficient even if we offer all of our minds and bodies. Please allow us to feel insufficient even if we offer all of our true hearts.</p>
<p>Since we are of inadequate bodies, Father, please allow that only our hearts that are wishing for Your compassion govern the whole of our lives. Father, we sincerely wish and pray this.</p>
<p>Since we know that lonely families are spread in all directions with the words that the Father has promised and allowed and are taking pains to pray before the Father, holding onto lonely altars of offering, please protect them wherever they are. Please become their friend, sympathizing with their sorrowful hearts. Let that comfort their minds. We sincerely wish and pray in this hour that You grant us the grace that we may bow with unified minds and bodies before the one grace, and before one will, centering on one glory.</p>
<p>Father, we know that members of numerous denominations are praying with sorrowful hearts before the Father in this hour. Reveal the signal-fire of compassionate love over Your pitiful sons and daughters who do not know about the time and the period. Please display the signal-fire of words of compassion. We sincerely desire and pray that You establish quickly for us the altar of glory, that all of us may unite into one after being embraced quickly in the bosom of the love of the Father, who is to embrace and return the glory of happiness. We pray that we can subjugate Satan after building the altar of victory. Wishing that the grace of compassion be with Your sons and daughters who are praying for the sake of Heaven, spreading out in all directions in this hour, we pray all these words in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Please allow the land of goodness to be established. We know that since the original garden that Father created was a garden equipped with goodness, love, beauty, and the shield of eternal righteousness, it was a world of which Satan could not take advantage.</p>
<p>Father, since the standard of hope that my own self wishes are the glory of the truth of love, the goodness of love, and the beauty of love all hidden within the Father, Father, please open the gate of the heart to Your sons and daughters who are gathered here. We wish that You will grant us the grace of the eternal love that the Father has been hiding within Him.</p>
<p>There are words of the Father&#8217;s tears that the Father has already promised to give. There is the mission that the Father has given, and there is the will that the Father wishes to manifest through worthless us. Please demonstrate to us without hesitation the holy grace of Heaven and the Father&#8217;s absolute power and omnipotence, and the holy Father&#8217;s glory. Please reveal Yourself as the fire of the Holy Spirit. Reveal the grace of glory. Please start the history of the revival of re-creation. Father, we sincerely wish and desire this.</p>
<p>Is there still any element of evil that cannot be accepted before the Father? Please govern with the hands of compassion all elements that are unacceptable and fix them. Please allow it to be an hour of happiness for these elements to be kneaded into the original goodness itself. Father, we sincerely wish and desire this.</p>
<p>Father, please raise those who are pitiful and insufficient. Call up and raise the things that have the element of falling again. Then please guide them not to become those who do not know the heart of the Father, who is crying out to have His eternal wish realized and who is hurting so badly like this.</p>
<p>Please allow us to feel with our minds and bodies in this hour Father&#8217;s heart, which has been doleful and deeply sorrowful for 6,000 years. Let us become sons and daughters who are heartbroken to console the Father in his sorrow. Father, we sincerely wish and pray that You allow us to become earnest sons and daughters who can say toward Heaven, though we are powerless, since I offer You all of this, Father, please give us courage and strength that we can fight with.</p>
<p>Among the thirty million people, we have stepped forward into this course that others oppose, and have come climbing over the hill of difficulty, being beaten numerous times. Father, You cannot but give us more strength and courage. You cannot but grant the shield of the victory of Heaven. Since we cannot but carry on the last fight, the last decisive battle, wearing the heart of righteousness and the armor of righteousness, Father, please allow all of Your sons and daughters gathered here to have a united heart and one hyung-sang.</p>
<p>Please allow us to become those who can return the glory of victory after subjugating Satan in the last decisive battle. Please allow us to justify ourselves as Your sons and daughters of whom You can be eternally proud.</p>
<p>Since Heaven has to uphold its dignity for having called upon us, please protect us and allow us to become the living sacrifice that is loyal to You and that You can be proud of before all created beings. Father, we sincerely wish and pray this.</p>
<p>Father, though the course on which we have fought until this day was a rough one, please allow us not to become those who get disappointed upon understanding that the course we will take after this is the course of struggle. Our nationality is neither this nation nor any other nation on this earth. What we can lean on is Heaven, and what we wish for is nothing but the Father&#8217;s will to be fulfilled. Since there remains the course of the fight and the hill of difficulty until we get registered in the Book of Life in the end, please allow us not to become those who will be concerned in their heart even if the course of trouble and persecution stands in our way.</p>
<p>We who have been called upon by God, please allow us to become the incarnation of the Father&#8217;s love and the incarnation of fire. Please allow us to become the foundation of victory that can establish the garden of goodness by liquidating evil and having minds and bodies in which goodness can dwell. Father, we wish and pray this sincerely.</p>
<p>Father, please govern the hearts of the many sons and daughters who are present here. Please allow them to know their own selves. Please allow them to become the children who can preserve the Father&#8217;s honor, who are working laboriously, and are concerned and sorrowful.</p>
<p>Allow us not to play the hypocrite and not to put on an outside appearance. Please guide them to be truthful. Please allow us to dissect ourselves and divulge all of our subjectivity, concepts, and assertions in the presence of the Father and get it liquidated. Allow this hour to be one in which we offer on the Father&#8217;s altar the fragrance of eternal life and only the elements that the Father can possess.</p>
<p>Father, please penetrate into us with eyes of burning flame. Please allow each of us to repent before the Father for all that is to be repented about of our own accord, and to feel that we are standing before the court of the last judgment. Please grant us the grace to be embraced in the bosom of the glory of the Father. Grant us the dispensation of compassion, and please hold onto the mind and body of each of us. Father, we pray sincerely. Wishing sincerely that You will allow only the will of the Father to flow over the audience gathered here and make them take action, we pray in the name of the Lord.</p></blockquote>
<h3>Prayer 3</h3>
<blockquote><p>Please let our heart grab onto the heart of Jesus, who toiled laboriously 2,000 years ago, and to honor the mission of Heaven. Please let our minds and bodies be equal to Jesus&#8217; tribulations when we face his anxious hyung-sang, he who presented himself as the representative of heaven and earth.</p>
<p>Allow us to receive and be equal to all the contents delivered through Your words. When we think about the Scripture that says, &#8220;Foxes have holes and birds of the air have nests, but the Son of Man has no place to lay his head,&#8221; we know that though the minds and bodies of Your sons and daughters gathered here are the holy temples, there still remains a dispensation of grievance resulting from their failing to attend God&#8217;s only begotten son, Jesus Christ, the crown prince, who was born for the sake of Heaven.</p>
<p>Although our ancestors have been building the rampart of grievance for several thousand years, this rampart is not getting any lower as days go by. Rather, Satan is building this rampart up higher, resorting to lots of deceptions.</p>
<p>We must know that all humankind in the world today has the responsibility to break down this rampart of enmity that our ancestors created, and that we, too, have the responsibility. We thought that it was only Jesus&#8217; grievance that he had walked the sorrowful path alone.</p>
<p>However, as we realize that the grievance has been left to us as our own, we discover that it is we who have to go forward toward Heaven with tears flowing.</p>
<p>Now as we look at the rampart of all the sins committed by our ancestors, holding our sorrowful heart in our arms, we come to realize that we ourselves are too feeble. Therefore, Father, please allow us to inherit the power of the Father with which we can force this sin out.</p>
<p>Father, what we have is nothing. Father, when you look at these Korean people, are they not the most pitiful people amongst all of humankind in the world? And even among this pitiful people, we who are worthless and seasoned with loneliness, are in a more miserable position.</p>
<p>However, Father, we know that the worldwide level blessing is submerged in Heaven. We know that the love of the Father is submerged deep in the heart of the Father.</p>
<p>Father, even if we are in a lonely position, please let us clear the barrier of tears to establish the garden of harmonization. Since we know that the Father is concerned about us in His heart, please allow us to become those who march forward ceaselessly, without hesitation.</p>
<p>Now, since we step forward honoring Your command, please allow us to become the good sons and daughters of Heaven who can run toward the way of accomplishing the hope, while living or after death. Father, we sincerely wish and desire this. Please allow that there be not even a single living soul among the sons and daughters in this audience gathered here who gets told with the same sadness-provoking word, &#8220;No, do not follow me,&#8221; as when a teacher of the law came to Jesus and said, &#8220;Teacher, if you wish, I will follow you.&#8221;</p>
<p>When I come to stand before Jesus of my own accord, I come to realize that I cannot but become a sacrificial being. I wish to become good enough that the Jesus of love, Jesus of goodness, Jesus of compassion, Jesus of patience, Jesus who is fully equipped with the wholeness of the nine different fruits of the Holy Spirit, who appears with an anxious look, can take a single fruit among the nine possible fruits of the Holy Spirit from my own self.</p>
<p>Please allow us not to become those who do not understand the internal grief of Jesus Christ, who could not but say, &#8220;Do not come the way you were coming, and do not wish what you wished,&#8221; because there was nothing to be taken when he wanted to take. Father, we sincerely wish and desire this. Please allow the whole group of people gathered here at this time to become the sons and daughters who comply with Jesus when he said, &#8220;Forget everything and follow me,&#8221; and who can be called upon thus.</p>
<p>This hour, we cannot but become Your sons and daughters, who without hesitation, prepare themselves and move forward when Father comes to command for the sake of the garden of hope that You wish to be established, the will that the Father will be happy about when it is fulfilled. Therefore, since we have the responsibility to take the historical lamentations of 6,000 years into our charge and to fight against Satan, please allow us to become heroes of victory who can fight with an indomitable and good heart, being equipped with a new resolution, a new determination, and a new pledge. Father, we pray this sincerely.</p>
<p>Now we wish that through Your words, before the grace You granted, You take charge of this hour in which we can be happy, in which the grace of love can stay, and in which the glory manifests itself as heavenly pride. We, too, wish to take charge. Wishing this sincerely, we pray in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech that I want to reflect on together with you is <i>&#8220;Let Us Become the One Who Attends the Lord Who Has Come for the Sake of All Humankind.&#8221;</i> I will speak briefly on this topic.</p>
<h3>God&#8217;s Ideal of Creation and<br />
the Result of the Human Fall</h3>
<p>God, humankind and all things had to be united into one eternally, centering on one ideal of creation. However, because humankind, who is in the middle of Heaven and all things, made a mistake, all came to get divided into their several ways. All things went their own ways, Heaven went its own way, and humankind went their own ways. Therefore, to restore the world of the original nature of creation, God could not help but carry out the dispensation of restoration, starting from all things, and going next to humankind and then finally to Heaven. You should not be those who do not know about the Father&#8217;s situation.</p>
<p>Today&#8217;s people, we who were born with the fallen blood lineage, who are residing temporarily as a fallen tribe, must become those who feel first with their hearts and bodies that God&#8217;s heart has been touched by sorrow. Though we have fallen without exception, as long as the relationship that God has created with us remains, and as long as the Father exists who is working laboriously to fulfill the providential will, we must not think as if we were standing in a meaningless situation. Even if your own selves are wicked, even if you are situated in a wicked position, you must become of your own accord one of those who recognize the tear-stained trails of the toilsome efforts of the Father, who has carried out the dispensation through the course of history, within you.</p>
<p>In short, the providence of restoration is to seek us again and restore us. Besides that, we must know that the ideal of the original nature of creation and the internal aspirations that remain within God are there within us in the final days. Now then, we must know that the grief of God who stays as an invisible God has touched on the heart of our own selves, and the traces of the toilsome effort of God who carries on the work of the dispensation of restoration invisibly, has remained within us as the grounds of our aspirations.</p>
<p>We who are on this earth must feel our heart being broken as badly as God&#8217;s and must make toilsome effort, as God did, leaving trails of tribulation. We must become those who will bend their bodies and minds and have feelings of grief that can replace the broken-hearted feeling of the heart of goodness of God&#8217;s original nature, which is what God has been cherishing as a hope.</p>
<p>Also, we must know that God is there, wishing even this day that the figure will emerge who has the heart of tribulations that can substitute for God&#8217;s laborious effort, and who can manifest the tribulations of the invisible God with a visible, substantial body. Moreover, we must know that the Father has been searching for a religion of hope that can discern between right and wrong in all historical religions and realize your hope. All of you gathered here today cannot but step forth to a position where you can experience in your heart that the Father has been longing for the emergence of a true saint on this earth whose mind will be suffused with tears, whose body can be stimulated asleep or awake, standing or acting, during a certain moment in the course of life or in an instant of the hour.</p>
<h3>The Purpose of the Advent of Jesus<br />
and the Disbelief of the Jewish People</h3>
<p>Now then, the ideal of creation that the invisible Father wanted to enjoy has remained as bitterness in His heart due to the fall of humankind. The happiness and glory after creating humankind and all things, and God&#8217;s wish that all would be proud of God&#8217;s love and share His joys and sorrows, intoxicated with the ideal of goodness were all lost. The figure who came with the mission to unravel this was Jesus. The figure who came as a substantial being to unravel the core of God&#8217;s internal lamentation representing the 4,000-year history of God&#8217;s toilsome effort, and representing humankind and all created things was this very Jesus Christ. Then where was the existence who should have attended Jesus, who had waited for Jesus, and could have enjoyed happiness with Jesus eternally!</p>
<p>The Jewish people then should have known that Jesus Christ was the figure who represented God&#8217;s internal heart and the heart of the deep- rooted bitterness. He came as the substantial, visible figure of God, who would unravel God&#8217;s bitterness.</p>
<p>However, there was no one among the Israelites who knew about the internal providential will of God, who wished to be comforted through Jesus Christ and praised Jesus saying, &#8220;This person is the figure who can unravel the resentment of God&#8217;s heart, God who has lamented for 4,000 years. He is the eternal existential being that the Father has been searching for,&#8221; one who could sympathize with the heart of hope of God and attend Jesus.</p>
<p>The bitterness of the invisible God must be dissolved through visible humankind. The figure who could represent God&#8217;s lamentation and the lamentation of all humankind was Jesus.</p>
<p>However, Jesus never had a happy day in his whole life. This was because the tears of lamentation of God who had cried for 4,000 years had touched his heart. Also, not even one came forward before Jesus feeling Jesus&#8217; lamentation deeply. All humankind should have become united into one with Jesus and dissolved God&#8217;s bitterness. Reflecting on the course of Jesus&#8217; life, there was no one like this. Therefore, we should deeply impress upon our minds that the traces of this lack have been passed down to us today.</p>
<p>It had never occurred to the expectant Israelites, even in their dreams, that the Messiah, God&#8217;s only begotten son and Heaven&#8217;s crown prince, would emerge in such a sorrowful and haggard shape as this. Therefore, Jesus searched for someone who could attend him. While seeking, he carried it out not for his own sake, but as the representative of God&#8217;s internal heart. Jesus searched for someone who could share the bitterness of God from the time of his birth, who could represent God&#8217;s toilsome effort starting from the time of his birth, and could represent God&#8217;s hope starting from the time of his birth. He could not find someone like this even up to the time he climbed over the hill of the cross after passing through a thirty or so year life course.</p>
<p>Since all of humankind has attended Jesus who died on the cross, how come nobody attended the living Jesus who came with God&#8217;s eternal life and could transplant that love into humankind? The responsibility is with humankind. Although Jesus came as the embodiment of God&#8217;s hope, to resolve the grief of God and to get rid of the course of God&#8217;s toilsome effort and to build a garden of hope, our ancestors did not fulfill their responsibility to hold the grief of Jesus in their arms, and to carry his tribulations themselves, to lead a life of understanding and entertaining his aspirations. That was the sin of our ancestors.</p>
<p>Then what is it that Jesus wants from us today? Since what God had wished was to dissolve all of His bitterness through the single body of Jesus, and it has been prolonged due to our ancestor&#8217;s failure to fulfill the responsibility, the grief of God has remained as has that of Jesus. The toilsome effort of God has remained, as has that of Jesus. The aspiration of God has remained, as has that of Jesus. Besides that, all of it has been extended even to the Holy Spirit.</p>
<h3>What Jesus Wants From Us Today</h3>
<p>Today we have the responsibility to resolve the grief of God, Jesus, and the Holy Spirit that has extended throughout the history of 2,000 years. You must understand this.</p>
<p>The one who can dissolve the bitterness of the 6,000 years of lamentation hidden in the heart of God, who can represent the toilsome effort during 6,000 years, must emerge. The one who will manifest God&#8217;s 6,000 year aspiration on this earth has to emerge from among us. The one has to be sought among us.</p>
<p>Now, when you step forth and stand before the wonderful grace of the Father or the grace of Jesus Christ, you should not consider the day you are doing it to be a beginning. When you come to stand before the Father, you are not standing in your private capacity. You must realize that when you lead a life of faith, you are not doing it by staking your course of life; you are doing it while staking a 6,000- year history.</p>
<p>Even when you stand in a position where you repent for your own sin before the Father, you must realize that this is not only repenting about yourself but also repenting for 6,000 years. When you have a grateful heart before the grace and love of the Lord, you must not think you are being grateful in a private capacity, within a certain realm of time. We must become those who can feel gratitude representing the whole providential dispensation that the Father has been carrying on, the horizontal dispensation and the vertical dispensation and a standard of fulfilled hope. Similarly, Jesus has been wishing for the emergence of a figure on earth who will resolve God&#8217;s grief, who will take on God&#8217;s toilsome effort for God, who can fulfill God&#8217;s hope.</p>
<p>Jesus, who came to resolve the will of Father as a substantial being, died with the fate to return because he did not complete his work. Therefore, Jesus will come again searching for you who are worthless, with the heart of sorrow that represents the history of 6,000 years. He will come searching for you not only with the grief of 4,000 years but also with the grief of 2,000 years added to that. Also, he comes not only with sorrow but also with the bitterness of the toilsome effort of 2,000 years.</p>
<h3>Our Responsibility Toward the Returning Jesus</h3>
<p>What is the responsibility of humankind when Jesus, who will come seeking with the aspirations of 6,000 years, appears before us? It is for us to take charge of the heart of Jesus, the sorrow of Jesus, and the burden of the toilsome effort of Jesus, as a substantial being in place of Jesus.</p>
<p>Because the Israelites distrusted and opposed Jesus, he went to die on the cross. There was no one among the Israelites who would know and trust and attend Jesus as the one who had come to resolve the grief of the 4,000 years of the toilsome effort of the Father. Therefore, to complete this task, Jesus has to return.</p>
<p>We of the final days, who have to liquidate the history of 6,000 years, must have the heart that can say, standing alone before the triune God, &#8220;Please entrust me with God&#8217;s sorrow as my own sorrow. Please entrust me with God&#8217;s toilsome effort as my own toilsome effort. Please entrust me with God&#8217;s aspirations as my own aspirations.&#8221; And even though you are individual beings, you cannot but become those who prepare for the day of Jesus&#8217; coming with a heart that says you can represent heaven and earth. You cannot but become Christians of such a world as this.</p>
<p>You who must prepare for Jesus&#8217; Second Coming must again reflect upon the life of Jesus Christ, who came and went. You must become those who feel the circumstances of the time of Jesus&#8217; birth, of the time of Jesus&#8217; life, and of the time of Jesus&#8217; death as those of their own.</p>
<p>You must own the same sense of responsibility as that of Jesus, who felt that it was his responsibility to redeem all humankind, holding the sorrowful heart of God. You must own a heart that feels as if you are lying personally in the stable of Jesus who was laying alone after being born in the land of wickedness.</p>
<p>What do you mean by saying that Jesus was born in a stable, although Jesus is the crown prince of Heaven? Naturally, if Jesus was filled with sorrow, the extent of God&#8217;s internal sorrow watching Jesus was beyond description.</p>
<p>Upon looking at these facts, you must feel your sorrow penetrating into your bones. Besides that, you who are faced with the final days must feel the responsibility that you have taken the mission that Jesus assumed. You alone are in charge.</p>
<p>We should be able to look upon it as ours: the circumstance of Jesus who was in an unspeakably miserable situation, receiving cold treatment though he had come for the sake of all humankind. If there had been a suitable person who could offer comfort to Jesus for his sorrow on this earth, Jesus would have wanted to reveal all of his hope to the person while holding onto him.</p>
<p>However, the Israelites, who had been chosen by God through the time and tide of 4,000 years, and the Jewish sects and denominations prepared for the sake of Jesus Christ, did not know who Jesus was. They had nothing to do with Jesus, who was lying in a stable in Bethlehem. This made God go through sorrow again. There was no one who took sides with Jesus.</p>
<p>Now we must become those who will gather the bitterness of God and of Jesus and can dissolve it. Only then can we get rid of the condition of Satan&#8217;s encroachment on our bodies. Since you know that the Lord of the Second Coming will appear on this earth representing the history of 6,000 years, you should please not stand such a position as the Israelites did. Their faith was not centered on Jesus, not centered on the Messiah, and not centered on God. It was centered on themselves. The Messiah was surely to come and they knew about it. However, no one made preparations to attend the Messiah.</p>
<p>When the Magi from the East called out that they had come to worship Jesus, who was lying in the stable in Bethlehem, the whole of Jerusalem was disturbed. Fortune-tellers from foreign lands had come to visit Jesus. However, a disturbance like this was not something pleasant.</p>
<h3>Preparation for the Sake of the Lord<br />
Who is Returning</h3>
<p>All of you who have faith in God today should not stay in a similar situation as the Jewish church was in, which committed a mistake. Now you should be able to make preparations for the sake of the coming Messiah, and you should not only resolve the sorrow of Jesus by yourselves, you should also be able to return glory to him. Such a responsibility as this has been left to you. These days, when you reach a sacred position where you can consult with the Father, you will be given many commands such as, &#8220;Do this&#8221; or &#8220;Do that.&#8221;</p>
<p>When the Lord came on the earth, he would eat, he would wear clothes, he would be staying somewhere, and he would be active. However, the Jewish people, who had been waiting for the Messiah to come, did not know about this and so did not wait for him and did not make preparations to attend him. There was no one who was waiting for him with even a single pair of clothes ready for him to wear.</p>
<p>If there had been someone who had made preparations with a sincere heart, when the Magi from the East came to Jerusalem and when all of the Jewish people were disturbed with the hearing of it, they would have followed the Magi and gone searching for Bethlehem. However, only the Magi from the East were on the road.</p>
<p>Our ancestors, who were following God, who were said to be doing the will of God, have left traces of sorrow in the sins they committed. You of today should not be standing in the same situation. You should be able to make preparations to be able to attend the coming Lord with your minds and bodies, within and without.</p>
<p>We of today, who are facing the final days, what is it that the Christians of the whole world must do? If the Jewish people, who were wishing the Messiah would come, had prepared a place to stay when the Messiah was born, Jesus would not have been laid down in a stable. In the same manner, we must become the Christians who can prepare a place for him to stay when the Messiah is born.</p>
<h3>Gifts For the Coming Lord</h3>
<p>You must not consider it a matter of happiness that Jesus was born in a stable, being wrapped in swaddling clothes. Jesus was the figure that all humankind together should have honored in the most glorious position, more than anybody on this earth, more than anybody in history. He is the figure who should have been liked and praised by all humankind as the son of God. Besides, he was Jesus, whom all humankind should have been proud of in the presence of Satan.</p>
<p>Then what would the sorrow of God have been like as He watched the scene where the Jewish people were not attending Jesus? You must understand such sorrow as this.</p>
<p>Therefore, now, in place of the heart of God and having understood the sorrowful heart of Jesus of 2,000 years ago, you must become those who will prepare gifts internally, without anybody knowing. The gifts of Heaven cannot be shown in the presence of Satan. That is why the most precious gifts never reveal themselves, as you notice in the Bible. Why? It should not be that someone knows about this first. Only the one who must know should know about this first. If Satan knew about this first, he would retain a lingering desire for it. That is why it should not be revealed.</p>
<p>While you make the preparations for the sake of the Lord who comes for the sake of the world, you will have to prepare a precious gift that is not found on this earth, which you cannot exchange with anything else on this earth. In order for the Lord not to feel any difficulty either in his heart or in his body when he is present and active, you must find and prepare the foundation of attendance with your bodies. Why is this so? Because the most precious thing, more than anything else in this world, is your body.</p>
<p>Because he is such a precious figure and a substantial being who can substitute for the whole universe, when the son of the Father, the only begotten son whom Father loves comes, you must establish a foundation of peace where he can rest forever. Then by having your minds and bodies united into one, when Jesus comes again, you must become the hands and feet of Jesus. You must substitute for the life course of Jesus, and you must attend Jesus so that he feels tranquility and comfort. You must become one who can fight the fight that Jesus carried on 2,000 years ago in place of Jesus.</p>
<p>Jesus has been fighting for 2,000 years, so you must now be determined to take full charge of that fight with Satan and prepare even the shield to be used in that fight. Furthermore, while you identify with the situation at the birth of Jesus, you must at the same time feel the heart of Jesus while he was living on the earth.</p>
<h3>The Tears and Prayer of Jesus</h3>
<p>Now if you truly try to seek the Father, and if you seek Jesus&#8217; bosom of love, then you will shed tears. God could not divulge His sorrow even while suffering for 4,000 years. Jesus lived with the substantial shedding of tears. Although only three or four such instances are recorded in the Bible, in actuality, there were numerous times when, unbeknownst to others, Jesus shed tears.</p>
<p>When God was looking down upon the Jewish people whom He had loved through the thousands of years of dispensational history, there was not one moment that He did not shed tears. Jesus shed tears every time he prayed before God. Every time he encountered a difficult and lonely situation, he felt grief, with God on his side as the only one who understood him. Nonetheless, he could not reveal his sorrow to his disciples. You must understand this situation of Jesus.</p>
<p>It was not just one or two times that Jesus climbed the Mount of Olives and prayed through a sleepless night. He did not just pray in the Garden of Gethsemane once. While he was traveling the path of hardships, Heaven was the only one in whom he could confide his mournful situation. Yet he did not pray to place his sorrow on the shoulders of Heaven. On the contrary, he prayed that he could single- handedly bear all the sorrows. He appealed, &#8220;Father! I am going to bear the grief that You feel as You look down upon me. Father! Please be comforted through me! I am going to resolve Your sorrow. Please do not be so sad.&#8221; What is more, he prayed, &#8220;Father, I will be responsible for the efforts of 4,000 years, so please do not worry. I am here. Please do not worry, because Your hope remains.&#8221;</p>
<p>Jesus kept sorrow inside as he grew up. This means that Jesus underwent grief ever since his childhood because people did not attend him.</p>
<p>Jesus grew up as a step-son in Joseph&#8217;s family. Although all the people in his town talked about him, he lived a life of reticence. Although he understood in his heart the great and amazing will of Heaven that could not be revealed, he grew up as a normal child. You must not think that his life of thirty years as a carpenter was comfortable. What a pitiful life it was! Jesus should have stood in the most lofty position among the Jewish people and have manifested the joy and glory of the Father. Instead, he lived with a hatchet and plane in his hands to help support the livelihood of Joseph&#8217;s family.</p>
<p>If there are sons and daughters who want to uphold the will of God today, true sons and daughters who want to remove grief and bitterness from God&#8217;s heart, then they must consider the life of Jesus their model course. If you want to fathom the life that Jesus lived, you must be moved deeply by the heart of Jesus, the amazing grace. Feeling that heart, you must enter the same difficult position. Then you will feel that the sorrow of Jesus has transcended time and life, and that there was not even one peaceful moment in the life of Jesus.</p>
<p>Nonetheless, Jesus, who came for the sake of the earth, felt great anguish about channeling the sorrow that he suffered on earth toward Heaven. Today, those people who believe in Jesus commonly try to direct their own crosses and sorrows to Heaven. We do not believe in Jesus to do that. The person who can say, &#8220;The sorrow of Heaven was caused by me, so I will bear it on my own shoulders. God, please do not worry,&#8221; is the person who has become connected to the dimensions of Jesus&#8217; conviction and life.</p>
<h3>Are You My Friend?</h3>
<p>Now since there remain the footprints of Jesus&#8217; grief, which show that he lived the thirty years of his life in tears, you have the responsibility to resolve this. Jesus lived the thirty years of his life in sorrow and finally passed away while bearing the cross. Yet you must understand that even when he was crying out at the last moment, &#8220;Eloi, Eloi, lama sabachthani? (Father, why have You forsaken me?)&#8221; his heart was overwhelmed by the desperate desire to fulfill the will.</p>
<p>If you look at the world today with the mind-set, &#8220;I am a friend of Jesus,&#8221; then you will not be able to look at this world without shedding tears. Jesus shed tears with every step he took and with every movement he made. There was not a moment he did not shed tears. If there is someone among the faithful believers of today who sheds tears with a repentant heart before Heaven, just as Jesus did, then that person will become a friend of Jesus.</p>
<p>If in each church and each family there is someone who can understand the heart of Jesus and shed tears on behalf of God, then in those places, unlimited life and love will surely be present even without making a request to God. You must understand that God demands this of Christians, that they connect with the situation, emotions, and the contents of Jesus&#8217; life.</p>
<p>Today if the Lord of the Second Advent comes to this earth, he will ask, &#8220;Have you indeed become a friend of mine, I who spent thirty years in hardships?&#8221; What is more, he will ask, &#8220;To what extent have you shared the anguished heart of God? How many days have you lived feeling the sorrow of the world?&#8221;</p>
<p>You must understand that because humankind could not serve Jesus who came to the earth, humankind made the condition to give Jesus over to Satan to be crucified. You must overcome this condition.</p>
<p>Why are we alive today? It is because before this body dies, before soil enters these eyes, we must become the people who fulfill loyalty to the full extent and cling onto the life of Jesus in tears. We must become true people who can erect those things in the life of Jesus trampled upon. Therefore, while you are alive, you must fully accomplish this responsibility.</p>
<p>Therefore, today you are not simply yourselves. You must not think that you are merely the person of the years that you have lived so far. You must realize that each of you is a person who bears the universal mission to consummate in your lifetime the dispensation of the restoration of God that combines the 4,000 years from Adam and Eve to Jesus and the 2,000 years since Jesus until now.</p>
<p>Thus, just as Jesus stood boldly before the enemies, you must also remain bold, even when you are suffering the tribulation of crucifixion. Even when you are shedding tears, you are not to mourn for your own sake. When you cry, you are not to cry for your own sake. If you are to cry, you must cry for the sake of Jesus. Then how happy Jesus would be, he who lives for your sake and thinks about you. What is more, God will understand your situation. Even when you shed tears, you must shed tears with this kind of heart. There is no need for someone who cries for the sake of himself. Only those who cry for the sake of Jesus and the love of God and repent can become the sons and daughters of God.</p>
<p>When you confront the hardships of the crucifixion, if you truly feel the love of the Father and feel that you dwell within the realm of the Father&#8217;s love, then you won&#8217;t be able to pray. I have felt that before. Even when I bore on my shoulders a massive burden that seemed to weigh a thousand tons, I did not pray, &#8220;Father, please lighten my load.&#8221; You must never offer such a prayer.</p>
<p>God, who loves you, understands your situation very well. If you pray, &#8220;Father, I am bearing this kind of heavy burden,&#8221; to the Father who is already deep in sorrow, then you will add another load of grief to His anguished heart.</p>
<p>You are to understand even these subtle points and relate with God and Jesus. If there are even just a few people among this thirty million people who have this kind of attitude, then they can prevent this nation&#8217;s grief. You must never shed tears because of your own lamentations.</p>
<h3>Jesus Went Through a Great Deal<br />
to Console the Father</h3>
<p>Although Jesus came to the earth with a universal mission, he suffered hardships throughout his life. Nonetheless, he did not pray to alleviate that anguish. Instead, he went through a great deal of trouble to console the wounded and anxious heart of the Father. Meanwhile, Jesus took great pains to forgive the ignorance of the people. Because he stepped forward to substitute for the ordeals of God, whether he lived or died, he lived with the singular determination to glorify the will of God. Jesus did not care whether God recognized him, or whether people on earth recognized him. Whatever place and time, he lived for the sake of the will.</p>
<p>Although Jesus came to completely accomplish the will, he did not complain or despair just because he had to die on the cross. Even when he entered the position of death, he did not speak in his own defense. As you all know, Jesus did not try to vindicate himself even while he was passing through the court of Pilate, even on the hill of Golgotha to be crucified on the cross. He was the champion of no self- vindication. He could feel that even the opposition that he received from the people was his own responsibility. We who believe in Jesus Christ must pass through the course of Jesus who was born and Jesus who lived, and then become his friend.</p>
<p>Jesus did not become a friend of life but a friend of death. Although countless people walked the path of death in the course of history, Jesus is the only one who became the friend of death on behalf of the deaths of all people. He died on behalf of all people.</p>
<p>Consequently, Christianity is religion of death and sacrifice, and the Christian truth is the truth that prevails over death. Jesus&#8217; activities were to destroy him. Even then, you must understand, it was the course of Jesus to love without any grudges.</p>
<p>Because Jesus was a friend of death, even when death pressed itself upon him, he was not concerned about it. You have to understand that he lived a life with room to die for the sake of his enemy.</p>
<p>In the end, even God said to Jesus who hung on the cross, &#8220;I do not know him.&#8221; At that moment, Jesus cried out, &#8220;Father, why have You forsaken me?&#8221; but he did not cry out because he feared that the hope would be shattered and all of his life would be in vain. He cried out because he was concerned that, due to his death, he would have to leave without being able to complete the will of the Father. He was not concerned about whether God sent him to Heaven or hell, because he fulfilled his personal responsibility. Jesus, who had to become a friend of death, tried to be content with his own situation of death and tried to accomplish his mission through his death.</p>
<p>Although Jesus came with universal love, there was none who understood this. Although he came with such an amazing grace, once he stepped forward to become a friend of death, he did not harbor any lingering attachments. Though Heaven did not treat him as a being of hope when he had come for the sake of realizing the hope of Heaven, Jesus did not rebel or hold grudges.</p>
<p>When we go in pursuit of God, we will encounter the ultimate pass. Even if you were to pour out all of your heart and soul, in the end there will come a time when Heaven will deny any knowledge of you. The reason that Heaven does not recognize you is that the worldwide mission lies before us. Similarly, because Jesus also had to take charge of a worldwide mission, he had to undergo such an experience. A similar thing will also happen to you. There will come a time when even if you are to remain extremely loyal and offer all of your life to cling onto the Father, Heaven will not recognize you.</p>
<p>But you must be able to say that, dead or alive, the will of the Father is the only thing that matters to you. What is more, if you were to have any hope, you must only have the one hope of fulfilling the will of the Father. You should be the owner of the heart that says, &#8220;Not eating well and not wearing good clothes are joyful things.&#8221;</p>
<h3>The Ultimate Pass on the Road that Seeks God</h3>
<p>You today must never believe in Jesus to enter Heaven. Those who believe in Jesus to die will go to Heaven. If you believe in Jesus to die a noble death rather than to lead a good life, then your faith will become extremely precious. The twelve disciples who believed in Jesus to gain a good life, where did they go when Jesus died?</p>
<p>You are not to believe for the sake of leading a good life for yourself. You must believe to offer your life as a good sacrifice; in other words, to die a noble death.</p>
<p>To do that, we must follow the example of Jesus&#8217; life. We have the responsibility to champion the life of Jesus on behalf of history. We have the responsibility to possess his life. Only when we possess the life of Jesus can we come to possess the love of Jesus. Only when you attend Jesus can you receive the love of Jesus. What is more, you must cultivate a faithful character that can resemble the 2,000-year suffering course of Jesus.</p>
<p>Not only that, since the dispensation of God was prolonged for 6,000 years, you can attend the one who is to come to take charge of, and on behalf of, the 6,000 years of the dispensation. When the Father or the Lord appears before you, you must welcome the Lord and attend him. This should not be limited to just one or two hours but should last for eternity.</p>
<p>Then what must you do to attain the qualifications to become the bride who can serve the Lord? More than anything else, you must be able to be responsible for God&#8217;s 6,000 years of sorrow and comfort Him.</p>
<p>Then you must go before the Lord of suffering and be able to say, &#8220;I will do this and that. I will serve you like this and that. I have prepared like this and that.&#8221; You must have made universal preparation and say, &#8220;Lord, please come. Lord, please appear.&#8221; Such a faithful believer will never perish.</p>
<p>Such a great mission lies before us. Yet many people do not understand this. What is more, they do not understand that the internal heart and internal hope of Jesus revolves around each of us. What will happen to such people? Those who are ignorant will perish. There will come a time when they pound their own chests in regret.</p>
<h3>To Attend the Lord Who Is to Come</h3>
<p>The responsibility of a son is to serve with the heart and mind, to attend with the body, and to attend by mobilizing the society, the world, and heaven and earth. Yet today you cannot even serve God in your hearts. You must understand that you have not even begun attending Jesus yet.</p>
<p>You should remember that by attending with your heart, body, society, nation, world, and heaven and earth, glory will fill not only your own individual self, but also your family, your society, nation, world, and the whole created world. You probably never even imagined that such a cosmic mission rests upon you.</p>
<p>You who bear this kind of mission and have gathered here out of the ordinary should not be small-minded. You also must not be base or foolish. Even when you go before many enemies, you must remain bold and audacious. You have the responsibility to serve Jesus, who is to come with the universal glory and love. You are the ones who must step up to the universal position with your heart and substantial body.</p>
<p>But there is no need for the Christians who prayed for their own sake and for the sake of their families and were content with that. There is also no need for the Christians who are content to be concerned only about their own churches. Even if every one of the thirty million people is all Christian, even if the whole of humanity are Christians who can represent the people and believe in Jesus, there must be a representative Christian who can stand on behalf of the 2.4 billion people of humanity.</p>
<p>If we are the qualified ones who can dominate over all the angels in the spirit world. We must be able to say before them that we have accomplished these kinds of valuable deeds. It is Jesus who came to do this very thing.</p>
<p>Jesus who came to fulfill such a great mission, Jesus, whom we should attend with such utmost earnestness, how have we, who rest our hopes in Jesus, lived our lives? We are so shameful. Even if we were to shed tears for 6,000 years because we feel such great shame, it will not be enough. Even if we were to pound our chest and lament for 6,000 years, it still would not be enough. We who are in this position must never be ungrateful.</p>
<p>Even if you were to die right now, even if you were to be stepped on and trampled upon, your heart of fidelity and loyalty must never change. You should be able to stand dignified before all things in the universe as the sons and daughters of Heaven.</p>
<h3>Sons and Daughters of Fidelity and Loyalty</h3>
<p>You stand on a difficult road. You stand on the fateful road which you cannot choose not to travel on. You who stand on this fateful road must walk on it while maintaining your conviction and internal loyalty for the rest of your life.</p>
<p>You must shed tears. You must repent and mourn, &#8220;I was meant to serve the world-level Lord, the universal Lord, the Lord who can climb over the 6,000-year history and embrace the eternal ideal world. But until now, I was content just to serve the Lord of the family or the Lord of the people and the nation. That was all I could do.&#8221;</p>
<p>Do you of today feel that you have the responsibility and mission for this era? Have you ever thought that you would be the one to fulfill the ideal that the whole of humanity has been hoping for since the beginning of time to the day that the ideals of creation are completed? Have you ever felt that sense of mission?</p>
<p>In addition, you must have the latitude of mind to pray, &#8220;I am confident that I am more than capable of accomplishing this kind of mission.&#8221; When you pray from this kind of position, then you do not have to pray a lot. If there is someone who stands in such a position, it only takes one word, &#8220;Father!&#8221; for all to be expressed. There is no need for explanation. There is no need for theories.</p>
<p>We have entered the position in which, moved by direct impulse, we must step forward without hesitation and attend before we are given the command to do so. We have come forward with this kind of treasure. You who have embarked right now, are you subject to some condition of accusation? In your path, have you come to a stop and now stand stagnant in a certain stage? During your life, what level have you reached? You must begin from the individual level and passing through the family, society, national, and world levels, you must reach heaven and earth. You must understand that such a cosmic mission rests on you. This is the only way that you can meet the Lord.</p>
<p>Jesus Christ must find a true person who can attend him and, being unshackled from the sighs of the 6,000 years, cling to him and shed tears of gratitude, saying, &#8220;Father, the one whom You have longed to find is here. Father! Please be happy.&#8221; Heaven will give the glorious answer, &#8220;Yes, it is true.&#8221; The day when this takes place must dawn upon humankind.</p>
<p>You must never forget that you have to fight on until the day when you can receive the glory of such triumph, the love of the Father and eternal life; when you can become the bride who represents all things, all forms, and the whole universe, the sons and daughters who can live eternally with the Father, sharing all His ordeals and happiness.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html" title="Permalink to Let Us Become the One Who Attends the Lord Who Has Come for the Sake of all Humankind" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html" rel="prev"><span class="meta-nav">&laquo;</span> Those Who Will Possess the Kingdom of Heaven of Hope</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html" rel="next">The People Chosen for the Restoration of the Kingdom of Heaven <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,230 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Claim Back the Eternal Ideal of God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-754 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-754" class="post-754 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Claim Back the Eternal Ideal of God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T05:24:32+01:00"> <a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T05:24:32+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Let Us Claim Back<br />
the Eternal Ideal of God</h3>
<h3 style="text-align: center;">October 7, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>I Corinthians 13:1-13 </em></h3>
<p class="chapter-2" style="text-align: center;"><em><span id="en-NIV-28667" class="text 1Cor-13-1">13If I speak in the tongues<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28667a" data-link="[&lt;a href=&quot;#fen-NIV-28667a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=I+Corinthians+13:1-13#fen-NIV-28667a">a</a>]</sup> of men or of angels, but do not have love, I am only a resounding gong or a clanging cymbal.</span> <span id="en-NIV-28668" class="text 1Cor-13-2"><sup class="versenum">2 </sup>If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but do not have love, I am nothing.</span> <span id="en-NIV-28669" class="text 1Cor-13-3"><sup class="versenum">3 </sup>If I give all I possess to the poorand give over my body to hardship that I may boast,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28669b" data-link="[&lt;a href=&quot;#fen-NIV-28669b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=I+Corinthians+13:1-13#fen-NIV-28669b">b</a>]</sup> but do not have love, I gain nothing.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28670" class="text 1Cor-13-4"><sup class="versenum">4 </sup>Love is patient, love is kind. It does not envy, it does not boast, it is not proud.</span> <span id="en-NIV-28671" class="text 1Cor-13-5"><sup class="versenum">5 </sup>It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.</span> <span id="en-NIV-28672" class="text 1Cor-13-6"><sup class="versenum">6 </sup>Love does not delight in evil but rejoices with the truth.</span> <span id="en-NIV-28673" class="text 1Cor-13-7"><sup class="versenum">7 </sup>It always protects, always trusts, always hopes, always perseveres.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28674" class="text 1Cor-13-8"><sup class="versenum">8 </sup>Love never fails. But where there are prophecies, they will cease; where there are tongues, they will be stilled; where there is knowledge, it will pass away.</span> <span id="en-NIV-28675" class="text 1Cor-13-9"><sup class="versenum">9 </sup>For we know in part and we prophesy in part,</span> <span id="en-NIV-28676" class="text 1Cor-13-10"><sup class="versenum">10 </sup>but when completeness comes, what is in part disappears.</span> <span id="en-NIV-28677" class="text 1Cor-13-11"><sup class="versenum">11 </sup>When I was a child, I talked like a child, I thought like a child, I reasoned like a child. When I became a man, I put the ways of childhood behind me.</span> <span id="en-NIV-28678" class="text 1Cor-13-12"><sup class="versenum">12 </sup>For now we see only a reflection as in a mirror; then we shall see face to face. Now I know in part; then I shall know fully, even as I am fully known.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28679" class="text 1Cor-13-13"><sup class="versenum">13 </sup>And now these three remain: faith, hope and love. But the greatest of these is love.</span></em></p>
<h3>
Prayer</h3>
<blockquote><p>Father of love, we have come to understand that Your lamentation is having no one who can bring the history of conflict, which remains as the source of grief and suffering for Heaven, to a conclusion. Humankind should dig out the root of the fall that they have implanted. Yet although the long history has passed by, they have not been able to pull out that fundamental root of sin. Father, please allow them to dig it out.</p>
<p>I earnestly wish that You allow everyone in the audience gathered here today to be moved by Your heart and to become united with it. Allow us to inherit Your anxious heart, and become newly possessed of the wish that You hold onto. Please lead us to become the brave soldiers who can take on the responsibility for the remaining history of grief and fight with the countless enemy satans, stepping forward representing heaven and earth.</p>
<p>Until we can create the garden of bliss on the battleground and share with each other the eternal love of the Father there, please allow each of us to bear the responsibility for the will of the Father and march forward. Loving Father, I fervently desire that You allow each of us to become the courageous sons and daughters of the Father who can represent the whole will of the Father and fight with Satan.</p>
<p>Please allow us to understand in this hour which direction of Heaven our mind is facing and which direction of the universe our body is facing. Please allow us to become the children of joy who can resolve the grievances and sufferings of the Father.</p>
<p>Our minds and bodies could not be embraced inside Your bosom until now. Father, please advise us, and command Your powers to correct the position of our minds. Fix the direction of our mind correctly, so that we can walk toward the path of hope that You desire.</p>
<p>Please allow us to experience with our mind and body the Father&#8217;s grace of happiness. Please give rise to the miracle of re-creation centering on ourselves. By doing so, on the foundation of fighting the clinging root of sin and prevailing over it, let us experience the love of the Father and return glory to the Father. Loving Father, we sincerely offer our wish.</p>
<p>Father, do not let the children who have gathered in this hour fall into the temptations of countless satans. Please allow them to be offered as the sacrifice of glory on the Father&#8217;s altar.</p>
<p>Lead us, who prostrate ourselves before the Father as we face the majestic and holy presence, to realize our own lacks and to make a confession. I deeply wish that we, as the meek sacrifice, become children who yield before the grace of atonement of the Father and appear in the form that the Father has been seeking.</p>
<p>Please do not let these who have come shed tears of lamentation. Do not let them walk the steps for which Satan will mock them. Be present with them so that their minds and bodies can be captivated by the Father. Allow this hour to be an opportunity when they can be intoxicated by the grace of eternal life, the grace of resurrection, the grace of love and be offered as the ideal sacrifice that can bring happiness. Father, we make this our sincere wish.</p>
<p>Father, this holy night is the day of promise when the blessing can be given to the whole of humanity. Let the grace of joy fall upon every holy congregation that has gathered on behalf of the 2.4 billion people of humanity. We have greeted the last days. Please pour down the fire of the Holy Spirit as one pours down water, so that Your chosen children can be united as one to prevail over this world of darkness. May they eradicate all evil on behalf of the heart of the grief of 6,000 years.</p>
<p>First, please bless the 3,000 altars that represent the thirty million people. Father, I earnestly wish that You will allow Your children, who are offering all of their energy, heart and fidelity on behalf of the 3,000 altars, to become Your eternal offering.</p>
<p>Please do not let them become indebted to the Father on the remaining battleground. Please allow them to digest the grace of eternal victory. Until we can construct the ideal garden that can manifest the heart behind the Father&#8217;s blessing on the earth, please allow us to possess the mind-set of invincible soldiers and establish the Father&#8217;s will.</p>
<p>On this evening, there are many children who failed to participate in this occasion, so wherever they might be, please be with them in the same way. Please guide them to proclaim Your will everywhere, that which You want to accomplish in the last days. Let them build the altar of joy on which heaven and earth can come together in harmony.</p>
<p>Deeply wishing that You will allow us to become children who pour out all of their heart and energy to accomplish Your will with a single mind, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon to be given now is <i>&#8220;Let Us Claim Back the Eternal Ideal of God.&#8221;</i> I will speak briefly on this topic.</p>
<h3>God&#8217;s Ideal of Creation</h3>
<p>When God personally began the work of the creation of this dark world, He set the one goal of establishing the ideal hyung-sang found within His own heart as an eternal substantial body. You know very well that He began the work of creation so that after having established this one substantial body, He could set not two but one ideal of reciprocity and live within eternal joy and fulfillment.</p>
<p>Among all the creations that He created with strenuous effort, God chose man as the center of all the ideals. Yet because that one man stood opposing the original wish of God, although a long history has passed since that time until now, humankind has lost any kind of relationship with the ideals for which God hoped.</p>
<p>The course of history in which God tried to claim man back for the sake of realizing the one ideal is the course of the dispensation, the course of salvation and the course of pioneering. The one ideal God wished from His internal heart affects the whole of the created universe. Yet, due to one man&#8217;s mistake, that ideal cannot be found anywhere in the created universe.</p>
<p>Therefore, the one central will, through which God is trying to claim back the will of the dispensation through the history of pioneering and salvation, is raising a man and having him materialize the ideal that God has envisioned in His internal heart. By doing so, God cannot only rejoice; He also hopes to establish that ideal of happiness as the eternal ideal of man and have man return it to Him as the condition of glory.</p>
<p>Therefore, we must understand that God in Heaven is calling each of you. God in Heaven has been exerting Himself until now, hoping that each of you will become the center who realizes your ideals. However, the ideal that God hopes for cannot be realized as long as we remain in the realm of imperfection and cannot distinguish between the will of God, the will of man and the will of Satan.</p>
<p>Wherever we look, left, right, up or down, we must accomplish the ideal of God. You know through the Principle that those on the left and the right, those who are on the earth as well as the saints in heaven, all unconsciously long for that one ideal.</p>
<p>Numerous sages and wise men have pioneered this path, which they do not clearly understand, with the thought, &#8220;When is the day that God&#8217;s new ideals of light will emerge in this dark world? When would that hour be? What moment will it be?&#8221;</p>
<p>Consequently, after becoming connected to the heart of God&#8217;s ideal of light, you must possess the element of the eternal and unchanging ideal, based on which you can say, &#8220;This is the very hope that You have dreamed of in Your heart. This is the very ideal that You have been seeking.&#8221; Having done so, through your minds, bodies and environment, you must lay the grounds on which to realize the one happiness. If you cannot establish such grounds of happiness, the ideal of God cannot be found and erected in the world of creation.</p>
<h3>The Realization of God&#8217;s Ideal<br />
and Human Responsibility</h3>
<p>Where is the most important question found? It is not found inside the creation nor in the spirit world, nor is it found with the angels in the spirit world. It lies in you who are the center of the whole, the one standard, the one nucleus and the master of creation. Accordingly, you must understand that you are the center and standard that determines the fate of the ideal of God.</p>
<p>The joy felt on the day of the appearance of the one focal point and center of heaven and earth, which has been repressed by death, is the hope of those of us who are passing through the course of history today. It is also the will of the dispensation of God, who has been fighting with countless evil spirits.</p>
<p>For this reason, if you are to possess the heart yearning for the ideal of God now, then you must first cultivate yourself to be in perfect harmony and unison with the internal heart of God. Having achieved this, just as nature behaves according to law, we must act with our minds centered on the Heavenly heart. What is more, you must understand that unless we establish the center of the heart that can connect this to the universal culminating point of Heaven, the eternal ideal of God cannot come into eternal relationship with the world of creation.</p>
<p>When we fathom our mind and body now, is there a wall that blocks us from Heaven? Is there a wall between our minds and bodies? Is there a wall that blocks our bodies from all things? Since such walls exist, the eternal ideal of God cannot have any relationship with you.</p>
<p>Now we must open the door to our hearts. After purging all evil and sin, we must set the one standard of harmony. After that, we must receive the natural grace that will make us strongly feel the heavenly character and act according to it. We must then face God and begin to work toward the realization of His ideal.</p>
<p>Nonetheless, because fallen humankind is at a place far away from that one standard, there has to be some toilsome work that will bring humankind up to that standard. That is none other than the history of the dispensation of restoration. We must keep in our minds that God has been leading the history of the dispensation that sought to accomplish the will by sending prophets and sages until now.</p>
<p>Now you must just march forward. To do that, you must first earn the value of the body created as the symbol of the creation and the value of the mind created as the center of the body and represented the heavenly nature. In this way, the internal character of God, who exists as the center of all created beings, this internal heart that emanates from the central heart of the whole, must pass through our minds and bodies. Then, passing through the sphere of our daily life, it will finally be manifested as one movement that includes all things and images. We must accomplish all this through our own selves.</p>
<h3>The Relationship Between God and Man<br />
and the Goal of Satan&#8217;s Activities</h3>
<p>God has been working to restore humankind, who fell from the realm of God&#8217;s dominion, back to the original state. Yet what was that history like? With the principle of creation, God created all things as symbolic, substantial objects and created humankind as substantial objects in image. Therefore, as long as one substantial being remains as the ideal standard of our minds, we will come to possess the one unbreakable bond.</p>
<p>The one who is obstructing that bond and cutting off the path of communication is none other than your enemy, Satan. It is Satan you must fight. You must win the eternal relationship of victory and bring him to natural subjugation. Nonetheless, since the ideal garden of God is not materialized today or tomorrow, and as long as the wish of God is not manifested in the whole universe through our minds and bodies, then Satan cannot be eliminated.</p>
<p>God has ideals of our minds, our bodies, and all things. Yet Satan stands opposed to it and is fighting against it. Therefore, there must come the day of hope when we can take responsibility for this and subjugate Satan on the worldwide level.</p>
<p>Because the condition caused by Satan remains, God&#8217;s ideal cannot have any relationship with us. Consequently, for the sake of fulfilling His ideals, God has found one hero who can stand up against Satan and overcome him. That person is Jesus Christ.</p>
<p>Nonetheless, today the doors that connect the creation to our bodies, our bodies to our minds, and our minds to Heaven are all shut tight. It is Jesus and the Holy Spirit who come to open the doors of the mind, body and the desired objects so that there can be smooth communication.</p>
<p>What was the immutable purpose for which Jesus came to the earth? It was to realize the ideals of God at any cost and by any means. First, it was restoring the mind of man, the body of man and then the world of creation. Although Jesus came with this ideology and ideals of the whole, because the chosen Israelites did not believe him, he was only able to establish the ideals of the heart that represented the nature of the heart of God before he passed away. Consequently, we today must understand the life and history of Jesus until he can fulfill the ideals of the heart, in other words, the spiritual ideals.</p>
<p>Jesus has shown to us the path of heartistic victory, which leads us to the fulfillment of the ideal that God desires. In other words, he has shown us the path to winning victory over Satan. Therefore, when we rely on Jesus and go in pursuit of the ideals, we are not seeking some ideals constrained within the sphere of time; we are seeking the eternal ideals of God. It is the mission designed to fulfill all of the character of Jesus, the hope of Jesus, the beliefs and ideologies of Jesus, the life of Jesus and the love of Jesus. It is not a temporary mission, but a mission that represents eternity. You must understand that Jesus was the one who was fighting to complete this kind of mission.</p>
<p>What do we need to possess as we are trying to go seeking after and materializing the ideals of God? We must possess the element of God&#8217;s eternity. The reason is that even if time and era change, God&#8217;s eternal self does not change.</p>
<p>Accordingly, you must understand that the ideals that God possesses are eternal ideals. Therefore, the ultimate ideal that we as humankind must seek after is the eternal ideal that God seeks. You must fight today, tomorrow and for the rest of your life until the day that you can make that eternal ideal part of your flesh and blood.</p>
<h3>The Faith, Hope, Love and Life<br />
that Jesus Established</h3>
<p>When Jesus came to the earth and sought the eternal ideals of God, he fought to implant eternal faith on behalf of the faithless people of Israel. There were many people in the course of history who believed in God, but the limit of the hope and faith they held was confined within themselves. Jesus alone did not establish his faith and wish for his own sake. Since that stood as the eternal ideal of God, he offered his life to cultivate the faith that can match up to the elements of the ideal, in other words, eternal faith.</p>
<p>What was the one center that Jesus longed for during the thirty years of his life? In the 4,000-year course of history leading up to that time, countless prophets and sages had erected the standard, but their faith could not step beyond the limit of the people and the world. Thus, the center of Jesus&#8217; life revolved around his attempt to go beyond that standard and accomplish the eternal ideals of God and establish eternal faith.</p>
<p>Therefore, the faith of Jesus did not seek his own salvation. His purpose was not his own salvation, and it was also not just to save the earth. Understanding the heart of God, who has been working through the dispensation from the beginning of history through the historical course until the culminating point, Jesus was trying to restore everything.</p>
<p>What is more, to erect the eternal ideal of God, Jesus fought with Satan to establish the eternal standard that history had never witnessed before, the one standard that will not change for eternity. You must understand that because this is the kind of man Jesus was, he was able to set the condition of eternal faith before God, who had been seeking the eternal ideal.</p>
<p>Therefore, we must learn from the example of Jesus&#8217; faith. Next, we must understand that Jesus spent thirty years of his life trying to erect the standard of hope of the eternal God, the eternal, immutable and firm foundation of faith. He did this by going beyond the boundaries of himself, the society, the nation, the world and the universe. When we believe in Jesus, we must take after him, the one who has established an eternal standard of faith that had never been witnessed before.</p>
<p>Moreover, we must next inherit the hope of Jesus. The hope of Jesus was not just limited to his own self. It was the hope that inclusively absorbed all the hopes for which the countless ancestors in history have longed for a long time. What is more, he possessed the hope that represented the eternal hope of God, which was deep-seated in heaven and earth.</p>
<p>That is not all. By erecting faith toward Heaven, Jesus engendered hope and the relationship of life and love. Accordingly, he walked through the course of conflict for thirty years of his life to establish his hope as the eternal hope and to establish his life as the eternal life.</p>
<p>The greatest value that Jesus felt about his life was when, representing the whole of the created world, he received the elements of eternal life from God, who exists for eternity as the center of life. Because he was the possessor of this kind of eternal life, no power of Satan could have an affect on him. Moreover, the love that Jesus demonstrated was not the type of selfish and limited love that humankind possesses today. It was an unchanging love that enabled him to die for the sake of realizing the eternal ideal of God. Therefore, the heart of God, who loved Jesus from Heaven, could represent the whole of humanity. You must understand that finally in heaven and on earth, Jesus came to possess the heart of unchanging love that can represent the eternal ideal of the heart of God and represent the whole universe and all of humanity.</p>
<h3>The Correct Attitude of Faith Toward Jesus</h3>
<p>We have inherited today the will of the dispensation that Jesus established in this way with the faith, wish, life and love. We must comprehend the will of salvation that he has erected through such a course of suffering. Moreover, we must follow the example of the course that Jesus established by using the cross as his shield and extinguishing himself to set the standard of atonement.</p>
<p>Furthermore, we who remain inside the realm of limitation must long for the unlimited faith of God, the unlimited hope of God, the unlimited life of God, the unlimited love of God, and reflect on the life of Jesus, who spent thirty years in bitter anguish. You must understand that Jesus, who was the master of the whole universe, the savior of humanity and the master of the earth, fought with his life on the line for the sake of setting the condition to realize the eternal ideal of God regarding hope, faith, life and love.</p>
<p>What is more, you must look at the creation with the same heart as Jesus, and feel the same feelings as Jesus. Moreover, you must understand that he fought while longing for that kind of aspiration, hope and ideal. You must not think that he was some historical personage whose life did not have great significance. You must feel Jesus as someone who dwells within your mind and accompanies you. You must reawaken to the life element that can fulfill the eternal ideal of God. Your faith must thus become comparable to the faith of Jesus. Your hopes must become comparable to the great hope of Jesus. Your life and love must also be comparable to those of Jesus.</p>
<p>You must follow the example of the center of Jesus, which represented the whole ideal element of God. You must inherit the faith, hope, life and love of Jesus, as well as his central heart that fought to establish them all, and you must accomplish them. If there is no one who can accomplish this for him, then the will of Jesus on the earth, which he could not fulfill due to his death on the cross, will never be accomplished. Because the course that Jesus could not complete still remains, the will of the dispensation is reserved for us.</p>
<p>Therefore, we must try to feel the sung-sang of Jesus through our body and through all things. In this way, the sung-sang of Jesus must become one with our sung-sang and join with the ideal of the eternal God who represents the whole universe. Now you must understand what the fate of Jesus on the cross prophesied. That pass of the cross fulfilled eternal faith. It is the cross that enabled Jesus to experience the eternal hope of God. It is the cross that advised us to also possess the eternal life and love of God. You must also understand that by virtue of the cross, the way of salvation that came as the result of the history of atonement is the condition that can transfer to us the eternal faith, the eternal hope, the eternal life and the eternal love of Jesus.</p>
<p>Nonetheless, because the faith of Jesus, who came representing all humankind in the universe, could not be manifested to the whole, Jesus made an appeal of bitterness on the cross. In other words, because the hope that Jesus wished to fulfill on behalf of humanity could not be realized on the world level, the cross was an appeal of bitter resentment. If at that time, the faith, hope, life and love that Jesus wished for had appeared, there would not have been the resentful appeal of the cross.</p>
<h3>What Must Be Accomplished Through the Crucifixion</h3>
<p>Accordingly, what do we need to accomplish through the crucifixion? We must obtain possession over the eternal faith and the eternal hope that Jesus had, the eternal life that Jesus lived, and the eternal love for which Jesus yearned. Today it is not enough for us to offer the eternal faith, hope, life and love established before the cross as those that belong to Jesus.</p>
<p>We must bear his cross and possess his eternal faith as our own faith, his eternal hope as our own hope, and his eternal life and love as our own life and hope. Furthermore, we must also possess the elements of God&#8217;s ideals, which Jesus handed over as he was bearing the cross for the sake of humanity. Next, just as he had the main disciples to whom he could hand over the eternal faith, eternal hope, eternal life and eternal love, we must also raise this kind of person. If you set the condition of having failed to fulfill the faith, hope, life and love that you have received from Jesus, then they will emerge in the last days as the conditions of judgment toward you.</p>
<p>In the last days, God will come to you and ask whether or not you have recompensed for the debt of eternal faith that Jesus left behind. He will ask whether you have paid back the debt of hope, the debt of life and the debt of love. When you face such a situation, you should be able to say the same thing Jesus said on the cross, &#8220;Everything has been accomplished.&#8221; We today must be able to say that we have fully accomplished the endeavor of the eternal God that He had set before Jesus. However, you must understand that unless the one man appears on the earth, the culminating will of God&#8217;s dispensation cannot be achieved.</p>
<p>Jesus established the central element that God had willed during the 4,000-year course of history. To expand the condition of spiritual and internal salvation to the world level, Jesus and the Holy Spirit have been at work until today. Accordingly, unless we can manifest the elements of the internal ideal of the eternal God as eternal faith, hope, life and love on the external level, then the 2,000-year will of the dispensation of Jesus will be totally undermined. You must understand this.</p>
<p>Now you have entered the course of faith in which you are trying to follow the example of Jesus and even feel the heart of God. Yet you must first reflect to what extent you believe. Do you carry on your faith inside the realm of your own assertions, which have been erected with your own concepts? When compared with the faith of Jesus, who represented the whole universe, if there is a difference, you will be judged exactly to that same extent in the last days.</p>
<p>What is the hope you hold today? The hope you hold inside you as a concept is a selfish one. You must testify to the hope of Jesus as if it were your own. By doing so, you must step beyond yourself and come to possess the hope of Jesus, who represented the eternal ideal of God. Yet if there is a gap between the hope of Jesus and your own hope, you must understand that the gap will be the condition of judgment in the last days.</p>
<p>The same is true for life. If we believed in Jesus and attained life, then that life is not for our own sake. That life is meant to restore this people and harmonize the countless saints. It is life that must represent the heart of Jesus, who embodied the eternity of God in the face of the cross and attacks from Satan. Even when he faced death on the cross, Jesus did not hesitate to face the attack of the enemies.</p>
<p>Jesus is not the person you thought you knew. He was someone who tried to fathom the heart of God, who had fought with the enemy Satan for 4,000 years for the sake of humankind. Jesus was someone who tried to feel eternal love. When you come to respect this unlimited heart of Jesus, you will feel that this has become the core of your faith.</p>
<p>Therefore, the degree to which Jesus felt the love of Heaven was strong enough to replace the eternal ideal of God, which could help him overcome any kind of difficulty and tribulations on the earth. You must understand that because Jesus was in such a situation, he forgot about the fact that he was walking the path of death due to the mistakes of his enemies, and he prayed for the sake of humanity.</p>
<h3>The Love Behind the Crucifixion</h3>
<p>By believing in Jesus today, you have received unlimited love and the unlimited life of God. Yet you should reflect in which realm that life is dwelling.</p>
<p>Jesus understood the eternal and ideal love of God who, after the creation of the whole universe, was in great agony while trying to embrace it. Therefore, while he was on the earth, Jesus loved God more than he loved himself, his family or his people and the world.</p>
<p>Possessing the love of God, who was the center of all love, and on behalf of the countless prophets and sages who came and passed away during the course of history, no matter how much difficulty he was undergoing, Jesus forgot all about it to fulfill the will of the dispensation that they could not complete. While feeling the heart that reached out to love God, he left something behind, and that is none other than the love behind the crucifixion. You must deeply contemplate this.</p>
<p>If there is a judgment in the last days, then when the love that flows down from God and is manifested through Jesus reaches down to you, you must have already prepared the foundation in your heart to receive the love and keep it for eternity. If you lack such a foundation, then you cannot confidently go before God at the time of judgment in the last days.</p>
<p>Consequently, now you must understand that before us lies the great and lofty hope and ideal of Jesus. That great and lofty ideal was manifested on the earth through Jesus Christ. Therefore, we today are trying to believe in Jesus and follow his example.</p>
<p>Even after going to the spirit world, Jesus is still fighting with Satan on behalf of the internal world. To accomplish the eternal ideals of God, with the Holy Spirit and the numerous heavenly soldiers and angels in Heaven, he has been fighting with Satan for us.</p>
<p>We must not possess as our own the faith given to us, the hope bestowed on us, the life demanded of us and the love desired of us. You must keep in mind that if we possess them only as our own, then the eternal ideal of God will have no relationship with us.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html" title="Permalink to Let Us Claim Back the Eternal Ideal of God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Take Part in the Glory That God Recognizes</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html" rel="next">Jesus Is the Hero of the Universal Revolution <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,232 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Take Part in the Glory That God Recognizes &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-752 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-752" class="post-752 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Let Us Take Part in the Glory That God Recognizes</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T05:22:39+01:00"> <a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T05:22:39+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h1 style="text-align: center;">Let Us Take Part in<br />
the Glory That God Recognizes</h1>
<h3 style="text-align: center;">July 19, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>Matthew 11:25-30 </em></h3>
<p style="text-align: center;"><em><span class="text Matt-11-25"><sup class="versenum">25 </sup>At that time Jesus said, <span class="woj">“I praise you, Father, Lord of heaven and earth, because you have hidden these things from the wise and learned, and revealed them to little children.</span></span> <span id="en-NIV-23486" class="text Matt-11-26"><span class="woj"><sup class="versenum">26 </sup>Yes, Father, for this is what you were pleased to do.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23487" class="text Matt-11-27"><span class="woj"><sup class="versenum">27 </sup>“All things have been committed to me by my Father. No one knows the Son except the Father, and no one knows the Father except the Son and those to whom the Son chooses to reveal him.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23488" class="text Matt-11-28"><span class="woj"><sup class="versenum">28 </sup>“Come to me, all you who are weary and burdened, and I will give you rest.</span></span><span id="en-NIV-23489" class="text Matt-11-29"><span class="woj"><sup class="versenum">29 </sup>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.</span></span> <span id="en-NIV-23490" class="text Matt-11-30"><span class="woj"><sup class="versenum">30 </sup>For my yoke is easy and my burden is light.”</span></span></em></p>
<h3>
<p>Prayer 1</h3>
<blockquote><p>Loving Father! Please personally rule over Your children who have gathered here. Please let us not be foolish ones who do not know that the life we have is in actuality not the life that we should have. Since they have received a great blessing that You have granted for the sake of the people, please do not let them become ones who leave it behind.</p>
<p>Loving Father! A handful of people who were walking the lonely path today have come to this place and have bowed down before You. Please allow them to become one with Your love. Let Your hands of love, which seek humankind, become intermingled with us in that place which represents the 6,000 years. In this way, please link minds to minds and bodies to bodies, so that we can all become united as one.</p>
<p>The grace that You have bestowed on us is not just our own. It belongs to the whole, so please allow this grace to pass through these people and reach out to the 2.4 billion persons of humanity everywhere. Father! Please be the center of our lives, the center of our love and the center of our hope. Loving Father, I sincerely hope and desire that Your hands of grace may be placed upon our heads from this moment forever afterwards.</p>
<p>Father! We know that many people are bowing before You today, so wherever they gather, please let Your hands of love be with them. Please allow those who have gathered to lie prostrate before the deep heart of the Father on behalf of the whole.</p>
<p>Please convey Your hidden love to them. Appear before them so that they will be adequately prepared to represent the whole dispensation of the last days and emerge before humanity. My Father, I earnestly hope and wish that You will allow the Father&#8217;s blessing of power in this hour.</p>
<p>We offer our hearts before the Father&#8217;s altar as they are, so please eliminate all the elements that are inappropriate. Allow us to sing the glory of the Father and be filled only with the heart of gratitude. My Father, I hope for it most earnestly.</p>
<p>By doing so, please do not let there be even one unworthy person among the beloved children of Yours who have gathered here. If there are some children who have traces of sins of selfishness, then Father, please manifest the fire-like work of the Holy Spirit so that they can feel shame and repent on their own in this hour. By doing so, please allow us to be remolded as ones who can be offered as meek and humble sacrifices before the Father on behalf of the people.</p>
<p>Father, there are members who could not participate in this place, so wherever they may be, please be with them with the same grace. Give blessings upon those lonely churches who cry out on behalf of the people and the dispensation. Father! Through their solemn hands, allow the fire of the beacon to appear before this people. Beloved Father, please let Your holy will be revealed to the world as the will of happiness through the people who yearn for You.</p>
<p>We entrust all of this hour to You. Please let the Trinity govern us. Wishing earnestly, we prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Please quickly carry on the judgment of this earth. Please be the only one to protect and rule over the beloved brothers and sisters who have gathered here today, Father. Even for just this hour, please let this be a time when we do not have anything centered on us.</p>
<p>Please lead us to understand in this hour that our life is not ours, our knowledge is not ours, and all of our concepts are not ours. We are nothing more than that which is entrusted to You. Allow us to move when Heaven moves and halt when Heaven halts.</p>
<p>Father, there are brothers and sisters here who carry scars from wounds and have sunken into a frantic state, so our Father who understands their situation and condition, please allow their minds and bodies to go up in the flames of eternal life that descend from Heaven. Please allow this hour to be an occasion when we can return the bliss of rebirth to the Father.</p>
<p>Please let us understand that no matter how great a concept of the world might be, it cannot compare with the Heavenly way. Let us understand that the ignorance of the world has permeated throughout the earth, so that we can realize the shadows that sin is casting over the whole world.</p>
<p>In this hour, please lead us to understand our own lack. Being inspired by the movement of the Heavenly way, allow us to be in awe as we face the whole. Loving Father, we fervently want and hope for this.</p>
<p>Father, we have gathered around and sat down, so please give us a command. We have gathered, so Father, please divulge Your words of advice and desire. Please manifest Your power of resurrection, and let there be an explosion of the power and ability to push through the walls of darkness that have been blocking us. We make an earnest wish.</p>
<p>We wish in our minds, but because our physical body is weak, please bring out the power to shatter this physical body of weakness. Operate it with Your powerful hands so that we can become the clay that can be reshaped into the true essence by Your hands which give the grace of creation. Loving Father, I fervently hope and wish that we can become meek and humble ones who can be forged into a glorious image.</p>
<p>You have called us before You, we who are insignificant. Please allow us to fulfill the hope that You cherish. Please allow the emergence of a living altar for the sake of finding the path of survival for this miserable people, who are dying away. Anoint us to stand before You and have a direct one-to-one conversation. Allow us to take on the mission that Heaven demands.</p>
<p>Please allow us to fight and divide all evil. Separating good and evil, allow us to stand in the position of goodness. Please allow us to become ones who firmly believe that good will prevail and evil will be eradicated; allow us to be ones who, entering the right path, live captivated in Your glory. Father, we earnestly hope and desire for these things to take place.</p>
<p>Father! Please look upon the thirty million people with sympathy. Please allow the tears of the children of God, who lament for the sake of the people, to soak through heaven and earth. Exhibit Heaven&#8217;s work of inspiration that can cause this people to repent. Please allow the miracle of resurrection, which motivates repentance, to be revealed through the whole people. In this way, please allow us to become the people who can receive in our hearts the new will that You desire.</p>
<p>Please call upon each of Your beloved children who have gathered here and purify them. Father, first interfere with the affairs of their mind and body, and then with their life, with Your eternal ideal. Even just for this hour, please allow us to offer everything for the sake of Your desired purpose and offer a bow as the sacrifice that You can accept.</p>
<p>Please rule over everything. We prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 3</h3>
<blockquote><p>Father of love, we are trying to convey the heart of Heaven to the pitiful people, but the people who live on this earth do not understand the heart. They understand erroneously that the internal heart of Heaven does not have any relationship of order with this earth. Please forgive the ignorance of pitiful humankind in this moment.</p>
<p>Father! Please let the handful of people who have gathered here understand that Heaven is demanding for them to take on grand missions. Lead them to generate the desire to take charge of the responsibility. Please raise them for the will and through deeds to reveal these things.</p>
<p>How many children are there who desire to become sacrifices for the sake of the dispensation? Loving Father! How many are there who can understand the heart of the Father without being told a word? How many are there who fathom the will and move before they are called upon?</p>
<p>Father! Although what they hope to gain from Heaven is great, we know that what Heaven expects of us is also great. Father! Even from this hour, since a small number of members want to present ourselves on the altar of God for the sake of upholding Your will, please accept us, though we are insignificant. Please do not see our flaws as flaws, but accept them with love.</p>
<p>We know that we can escape the accusation of Satan only when we can come to be truly loved by You. Father, please forgive the whole, and please allow the grace of the Father, which will share Heaven&#8217;s concealed manna of life.</p>
<p>As we look upon those who have gathered here, we realize that the power must be increased. Father, please amplify Your overflowing power, and allow them to forget their lacks and their sinful mentality. Please personally work a miracle so that this moment can be the time when only life appears before them.</p>
<p>Father! Please lead those who have gathered here to lie prostrate before You with the mind-set of a receiver, much like an empty cup. Please fill these empty glasses with the water of life and revive their original minds. Please allow us to raise our bodies and hands toward Heaven and offer everything we have before the Father. Loving Father, I sincerely hope and wish for this.</p>
<p>At this moment, I am standing in front of them, so please let them realize that the words I speak are Jesus&#8217; words of profound significance, which are absolutely necessary for their lives and for the course of history. I know that those who bear heavy burdens will build victorious accomplishments on the foundation of words with the power of resurrection.</p>
<p>Please allow us also to entrust everything to Jesus and to be created again on the foundation where the condition of resurrection was set by the crucifixion. Loving Father, this I earnestly wish and desire.</p>
<p>Govern over everything in this hour. I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of today&#8217;s speech is <i>&#8220;Let Us Take Part in the Glory that God Recognizes.&#8221;</i> I will speak upon this topic.</p>
<h3>The Meaning of Understanding Me</h3>
<p>Because John the Baptist, who should have testified to the will of Heaven, did not complete his mission, Jesus stood on the threshold of an arduous fight with Satan. The Jewish people, who should have understood the situation of Jesus, did not understand him. Jesus, who was being pressed by Satan to walk the path of tribulation and who was standing alone despite the fact that every being in heaven and earth should have recognized him, tried to communicate the will of Heaven to the people, who did not understand it.</p>
<p>Jesus realized he had the mission to reveal what he knew internally to the ignorant people. He set himself before humankind and, relying on the comforting thought that at least God understood him, he stepped forward to proclaim the new resolution, the new hope and determination to the people. Today&#8217;s speech is important since it deals with this content.</p>
<p>Man&#8217;s happiness is generated by having someone who understands him. If he has a friend, a comrade or a teacher who knows about his past and understands even his future, he is a happy person. Moreover, the place of rest for a person is built centering on the bosoms of these people. The person feels happiness and fulfillment in the environment that they are in.</p>
<p>Jesus was aware of the fact that God in Heaven understood him in relation to history, in relation to the thirty years of his life, and in relation to the eternal will of the dispensation. Just as God recognized him, Jesus was supposed to understand humankind through history, through their lives and through the future. Jesus was aware of this mission. The more he felt that it was indeed he who had to make them understand God, the more he felt he had to testify to the people about God in any shape or form.</p>
<h3>Jesus Had to Show that God Recognized Him</h3>
<p>Jesus had to prove that in the will of God, he was the person who represented the unbreakable relationship with the 4,000 years of the course of the dispensation. Jesus felt responsible for guiding the Jewish people to God in the same way that God recognized Jesus in relation to the dispensation of 4,000 years. He tried to reveal his understanding of God in his life course.</p>
<p>Moreover, when he learned that during the dispensation that would follow his thirty years of life, the whole of humanity was to become one with his ideals of the future, Jesus felt that until he reached the ideal world in which humankind would understand him, he had the compelling responsibility to reveal the will to them.</p>
<p>When we consider the events that have taken place in the past and present, and are to take place in the future in the eternal heavenly world and on the earth, we realize that Jesus&#8217; mission was not limited. When we consider how there still remains the unfulfilled history of the dispensation, in which every existing being must reach Jesus through an unlimited stretch of time, we see that the mission of Jesus was not limited to just revealing this dispensation to Heaven, to the countless saints and to the historical ancestors.</p>
<p>Jesus, who stood before the will representing the whole, had to recognize the people on behalf of God in the same way God recognized him. He had to teach the people that, just as Jesus acted for God, they had to represent Jesus. What is more, unless he builds a relationship with people in which they come to recognize him as Jesus recognized God, Jesus cannot feel the joy of knowledge in his life. You must understand that though Jesus could obtain joy from God in Heaven, he could not be happy because the people did not understand him on the earth.</p>
<p>The words that Jesus spoke did not just ask the people to understand Heaven. The gospel that he spread was not only for the sake of Heaven. All of his words, toilsome deeds and arduous fights were done for the sake of the people of history and the people of the future who were to guide history forward. However, the people who came in contact with Jesus in his time did not know that. If the people on the earth had understood Jesus as Jesus understood God, then the life of Jesus would not have been intertwined with such great sorrow.</p>
<h3>The Extent to Which God and Jesus Understood Each Other</h3>
<p>To what extent did God understand Jesus? How did God understand Jesus? God understood Jesus from the beginning of the history of creation, through the history of humanity, through the relationships in history, extending to include all of the society of his time, even to the future ideals of Jesus.</p>
<p>Jesus, who appeared before the ignorant people, raised himself up and exerted himself after receiving the directives from Heaven. Moreover, he continued in the battle, deeply bound up in the sorrowful heart of God, who has suffered an infinite amount of ordeals in the course of history. Furthermore, he comforted the ancestors who had exerted themselves in the course of history. He tried to remove all the bitter resentments that had soaked through the course of history. God anointed Jesus to be this kind of man.</p>
<p>Jesus&#8217; heart reached out for the sake of Heaven. He had a desperate desire to convey that heart to humankind. As long as Jesus had such a fervent, unfulfilled desire, God who was watching him closely, also felt the same anxiety. We must understand that because humankind did not fulfill their responsibility, God is living in anguish and sadness.</p>
<p>To what extent then did God understand Jesus? God understood him as someone who could manifest the glory of children through the ideology of the bride and bridegroom, centering on Adam&#8217;s family.</p>
<p>Next, how much did Jesus understand God? While he knew that God recognized him as the representative of history, he also knew that God wanted him to manifest on the earth the doctrine of the bride and bridegroom and the glory of goodness, from his family life centering on Mary to his actual life course. Consequently, his words had the power to alleviate the grief and suffering of history.</p>
<p>Jesus understood that God knew the obedience of Mary. He also knew that God understood the personal situation of Mary. He also knew that God hoped for the faith in the bride and bridegroom to start paving its way from the lowest position. Moreover, he also knew that God expects goodness among the countless created beings. The will of love that Jesus possessed could have consummated a relationship with humankind only if they had inherited the knowledge of God from Jesus.</p>
<p>This is the reason that Jesus could have discussions with God but not with humankind. You must understand that since there was no one on the earth who could reveal the knowledge and grievous feeling of Jesus and the dispensation of restoration on the earth, the sorrow of Jesus was greater than the sorrow of losing the whole universe.</p>
<h3>Love Is to Reach Perfection Through Three Eras</h3>
<p>If love cannot be perfected in one generation, then it takes three generations. At first, through the love of Heaven, it passes through the love of parents and then the love of the couple. We are walking the course of restoration because of the fall and the mistakes that are being repeated by humankind.</p>
<p>Therefore, in one&#8217;s life, the time until one becomes an adult is the time to receive the love of parents. After that period has passed, the period of love centering on oneself is the time of the bride and bridegroom. Next, the time of love that involves children comes.</p>
<p>God has been guiding history for 6,000 years. What period of love then was the time until the coming of Jesus? It was the time when, as parents, God personally gave love through Jesus. After that, the period of bride and bridegroom is the time when we ourselves build a family life.</p>
<p>What kind of era then will come next? It is the era when the ideology of the bride and bridegroom bears fruit on the earth. By doing so, Jesus has to carry on the expectations on the family level, centering on the will of God on the earth. To do this, the life of the spiritual bride and bridegroom should unfold on the earth first. By unfolding the spiritual family life of Heaven on the earth, the form of a family representing history has to be constructed.</p>
<p>Today, after passing through the 2,000 years since Jesus, heaven and earth must be combined. The internal and external forms must be brought together to form one substantial body and forge a relationship. You must become new parents and children centering on yourselves. In the period of parents, you must be able to produce new children. Through the new children, the new ideology of the bride and bridegroom must be established on the earth. Such an ideal remains unfulfilled in the course of history.</p>
<h3>The Purpose Behind the Coming of Jesus</h3>
<p>What is the purpose behind the coming of Jesus? He came to bring to a conclusion the internal form of the family, the external ideology of the bride and bridegroom, and the life of children. After completing the reciprocal standard, not only on the external foundation but also by connecting the external and the internal, the fortune of Heavenly laws would enable anyone to pass through the historical course of restoration on the family level, through which they can start from the internal and establish the one standard. Through whoever it might be, you must establish the form of family life, not only as a realistic and historical phenomenon, but also as a conclusive fact, until God and Jesus raise you up. If you do not possess the demonstrative content of the course of the bride and bridegroom, which Jesus has been working on for 2,000 years centering on the New Testament, you cannot confidently claim the standard of the bride and bridegroom. Leaving on the earth the substantial child of goodness in whom you can dwell eternally, if you can become a child, not of shame, but one who has escaped the history of sin and whom Satan cannot accuse, you will be able to discover the hidden secrets of Heaven. By establishing yourselves, you can receive the love of God, carry on discussions with Heaven and have a relationship of giving and receiving with Heaven.</p>
<p>What is the purpose of Jesus in whom you believe and whom God recognizes? What is the extent to which you understand Jesus? You should not think that the bride and bridegroom are manifested only in Jesus and the Holy Spirit. If you cannot leave behind the foundation of victory and eternal life that can bring eternal salvation through the substantial love of the family and the internal family, then the ideals and hope of Heaven will have no relationship with you.</p>
<p>Furthermore, that can become the possession of God, Jesus and the Holy Spirit, but it cannot become yours.</p>
<p>Therefore, when you come to understand, you should not stop at just understanding him. If there is someone who can enter into a harmonious relationship centering on Jesus, then as the son of God who recognizes Jesus, he will be on equal footing with Jesus. He can proudly appear on the earth representing history, the present world and the future. If such a being emerges on the earth, then he is the one who understands history and the dispensation of Jesus and can represent the world for which Jesus hopes.</p>
<p>To become such a person, you must be grateful to God no matter what kind of condition is imposed on you. In any kind of environment, you must not lose hope. Jesus realized that he needed to arouse the love and hope of God, which is stronger than anything else that he loved.</p>
<p>Therefore, even when the environment and history changed and heaven and earth were thrown into confusion, until the last moment all Jesus thought about was humankind. He tried to forge an unbreakable relationship with humankind to represent the eternal life and the heart of the center. Therefore, he could say, &#8220;Cross, come to me. Death, also, come to me.&#8221;</p>
<p>If you do not experience this kind of feeling through your life, then even if you claim you know Jesus, it is the same as not knowing him. Therefore, you must now represent the general form of the history of the dispensation, the history of the whole and eternal history. You must forge the relationship that can penetrate through the active and passive hearts of the eternal God. By doing so, you should relieve the grief that permeates throughout history, and appear before humanity. If you cannot appear as such a person, then you cannot call yourself the child that Jesus seeks and God recognizes. However, if there is such a person, even when he is eating a meal, every time he puts down the spoon, he will thank God. In every breath he takes, he will feel the love of God.</p>
<h3>The Child Whom Heaven Recognizes</h3>
<p>Just as the fortune of heaven and earth turns silently, our minds wish to turn without limits. Why is this not being done? It is because we are not aware of the fact that the forces and love of the universe and the principles of Heaven are connected.</p>
<p>Therefore, now we must come to understand Jesus in our life in the same way that Jesus understood God. Moreover, just as Jesus understood the grief of God and returned glory to Heaven, we must have the determination to follow Jesus to return glory to Jesus. If we do not know Jesus, when Jesus follows God and understands His heart of love, how would Jesus realize his fate-filled wishes? You must think about this today.</p>
<p>Today you might say that you are living for Jesus in certain moments. You must exist for the sake of many nations and peoples. Until the final days of history, you must eternally feel that trend and the heart of Heaven. As the master of creation, you must sing the glory of Heaven and return glory to Heaven.</p>
<p>If this is the wish of Jesus, then you yourself must return glory to Heaven for him. By doing so, you can materialize this dream-like event in the reality that is not a dream. God&#8217;s wish is bringing that will to conclusion. The wish and demand that have been kept inside the hearts of God and Jesus are being manifested through you. If there is someone who can truly believe in Jesus, by connecting with the heart of Jesus and seeking the internal heart of God and becoming the representative of God and Jesus, God will recognize him as He has recognized Jesus. At the same time, Jesus and the Holy Spirit will also recognize him. What is more, the Heavenly soldiers and angels who are connected to Jesus and the Holy Spirit will also recognize him. However, people do not realize that such grace of glory is the true grace.</p>
<h3>To Return the Glory of Victory</h3>
<p>Jesus was recognized only by God, but we will be understood by God, Jesus and the Holy Spirit, as well as the countless saints in heaven. Therefore, if you can understand on earth the God of Heaven, then through Jesus and the Holy Spirit, you will win the recognition of the spirit world. Accordingly, you should stand within the sphere of recognition and come to grasp the heart of God, who has been guiding the dispensation for 2,000 years through Jesus.</p>
<p>God&#8217;s philosophy of the dispensation must be demonstrated through you. When we consider that, we can see that we are truly blessed. We are more blessed than Jesus as he headed toward the cross.</p>
<p>Jesus died a lonely death for the sake of God. However, we should be able to die for God, and even for Jesus and the Holy Spirit. By doing so, we must become people whom the millions of faithful believers can welcome and support in our path. You must be able to say, &#8220;I have been awakened to it, so Father, please guide us so that today we can comfort the countless faithful believers.&#8221; When you do that, you can represent the whole of God&#8217;s dispensation and bring out the glory of victory.</p>
<h3>Prayer</h3>
<blockquote><p>Father! We who claim to believe in You are continuing to give out a foul smell and are not aware of ourselves. Father! Please connect us to the heart of Heaven and allow us to understand ourselves. By connecting us to the will of the dispensation for the earth, please allow us to understand ourselves.</p>
<p>Please allow us to comprehend the glorious one will which links heaven and earth. Father, please love these children who have gathered here so that they can fathom the heart of the Father that You want to express. Please grant them the heart that will enable them to serve Heaven centering on the Father. Lead these children to understand Heaven and to yearn for the glory of Heaven by comprehending the life course of the eternal Father.</p>
<p>Please grant Your blessing upon all the children who have gathered here so that they can receive the power of love flowing down from the Father and move whenever You move and halt whenever You halt. Please allow us to alleviate the worries of the Father and represent the whole of the historical dispensation.</p>
<p>By doing so, allow us to build the eternal nation of the Father who can move and shake the universe. Allow us to understand God, Jesus, the Holy Spirit and the countless saints in heaven and on earth.</p>
<p>Allow us to present, as a condition of victory, the glory of knowing the Father, to dismantle the sovereignty of Satan, and to construct the domain of victory. We sincerely wish and desire this. I prayed all these things in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html" title="Permalink to Let Us Take Part in the Glory That God Recognizes" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html" rel="prev"><span class="meta-nav">&laquo;</span> Why did Jesus Become the Little Lamb Who Bore All the Sins of This World?</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html" rel="next">Let Us Claim Back the Eternal Ideal of God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,283 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The People Chosen for the Restoration of the Kingdom of Heaven &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-768 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-768" class="post-768 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">The People Chosen for the Restoration of the Kingdom of Heaven</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T10:45:41+01:00"> <a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T10:45:41+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">The People Chosen<br />
for the Restoration<br />
of the Kingdom of Heaven</h3>
<h3 style="text-align: center;">December 30, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>John 15:1-22 </em></h3>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-15-1"><span class="woj">“I am the true vine, and my Father is the gardener.</span></span> <span id="en-NIV-26702" class="text John-15-2"><span class="woj"><sup class="versenum">2 </sup>He cuts off every branch in me that bears no fruit, while every branch that does bear fruit he prunes<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26702a" data-link="[&lt;a href=&quot;#fen-NIV-26702a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+15:1-22#fen-NIV-26702a">a</a>]</sup> so that it will be even more fruitful.</span></span> <span id="en-NIV-26703" class="text John-15-3"><span class="woj"><sup class="versenum">3 </sup>You are already clean because of the word I have spoken to you.</span></span> <span id="en-NIV-26704" class="text John-15-4"><span class="woj"><sup class="versenum">4 </sup>Remain in me, as I also remain in you. No branch can bear fruit by itself; it must remain in the vine. Neither can you bear fruit unless you remain in me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26705" class="text John-15-5"><span class="woj"><sup class="versenum">5 </sup>“I am the vine; you are the branches. If you remain in me and I in you, you will bear much fruit; apart from me you can do nothing.</span></span> <span id="en-NIV-26706" class="text John-15-6"><span class="woj"><sup class="versenum">6 </sup>If you do not remain in me, you are like a branch that is thrown away and withers; such branches are picked up, thrown into the fire and burned.</span></span> <span id="en-NIV-26707" class="text John-15-7"><span class="woj"><sup class="versenum">7 </sup>If you remain in me and my words remain in you, ask whatever you wish, and it will be done for you.</span></span> <span id="en-NIV-26708" class="text John-15-8"><span class="woj"><sup class="versenum">8 </sup>This is to my Fathers glory, that you bear much fruit, showing yourselves to be my disciples.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26709" class="text John-15-9"><span class="woj"><sup class="versenum">9 </sup>“As the Father has loved me, so have I loved you. Now remain in my love.</span></span> <span id="en-NIV-26710" class="text John-15-10"><span class="woj"><sup class="versenum">10 </sup>If you keep my commands, you will remain in my love, just as I have kept my Fathers commands and remain in his love.</span></span> <span id="en-NIV-26711" class="text John-15-11"><span class="woj"><sup class="versenum">11 </sup>I have told you this so that my joy may be in you and that your joy may be complete.</span></span> <span id="en-NIV-26712" class="text John-15-12"><span class="woj"><sup class="versenum">12 </sup>My command is this: Love each other as I have loved you.</span></span> <span id="en-NIV-26713" class="text John-15-13"><span class="woj"><sup class="versenum">13 </sup>Greater love has no one than this: to lay down ones life for ones friends.</span></span> <span id="en-NIV-26714" class="text John-15-14"><span class="woj"><sup class="versenum">14 </sup>You are my friends if you do what I command.</span></span> <span id="en-NIV-26715" class="text John-15-15"><span class="woj"><sup class="versenum">15 </sup>I no longer call you servants, because a servant does not know his masters business. Instead, I have called you friends, for everything that I learned from my Father I have made known to you.</span></span> <span id="en-NIV-26716" class="text John-15-16"><span class="woj"><sup class="versenum">16 </sup>You did not choose me, but I chose you and appointed you so that you might go and bear fruit—fruit that will last—and so that whatever you ask in my name the Father will give you.</span></span> <span id="en-NIV-26717" class="text John-15-17"><span class="woj"><sup class="versenum">17 </sup>This is my command: Love each other.</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-15-18"><span class="woj"><sup class="versenum">18 </sup>“If the world hates you, keep in mind that it hated me first.</span></span> <span id="en-NIV-26719" class="text John-15-19"><span class="woj"><sup class="versenum">19 </sup>If you belonged to the world, it would love you as its own. As it is, you do not belong to the world, but I have chosen you out of the world. That is why the world hates you.</span></span> <span id="en-NIV-26720" class="text John-15-20"><span class="woj"><sup class="versenum">20 </sup>Remember what I told you: A servant is not greater than his master.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26720b" data-link="[&lt;a href=&quot;#fen-NIV-26720b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+15:1-22#fen-NIV-26720b">b</a>]</sup> If they persecuted me, they will persecute you also. If they obeyed my teaching, they will obey yours also.</span></span><span id="en-NIV-26721" class="text John-15-21"><span class="woj"><sup class="versenum">21 </sup>They will treat you this way because of my name, for they do not know the one who sent me.</span></span> <span id="en-NIV-26722" class="text John-15-22"><span class="woj"><sup class="versenum">22 </sup>If I had not come and spoken to them, they would not be guilty of sin; but now they have no excuse for their sin.</span></span></em></p>
<h3 style="text-align: left;">
Prayer 1</h3>
<blockquote><p>Now we have come to the last Sunday of this year. Father, were there times when we fathomed Your heart and were concerned for You? When did we fight for the Father&#8217;s affairs? When have we genuinely loved the Father?</p>
<p>Father, please forgive us for not having fully coped with the commandments that You have given us with Your concerned heart in this one year and the responsibility that You have entrusted in us for the sake of the people. Throughout the year, there were many commands that the Father gave to us, Your unworthy representatives. Please forgive us for not having been able to complete that responsibility. Please allow us to accomplish the great will that the Father demands.</p>
<p>Forgive the fact that the people on earth who associate with the will have been unable to rise to the level of materializing the hope that Heaven desires. They have been unable to obey the commandments because they are ignorant of the time. Although we might have passed through the path of conflict, when we see that we could not bring victorious accomplishments before the Father, we must feel ashamed.</p>
<p>Please bestow again all the responsibilities that You once entrusted in the sons and daughters gathered here. Please allow them to dash forward for the sake of the Father&#8217;s will. Allow us to distinguish our internal self and our external self and reflect in ourselves, &#8220;When will we be able to receive the love of the Father?&#8221;</p>
<p>Father, the mission that You have entrusted in us is not meant to be used just for our own selves, but to seek the people and the world. Furthermore, we are to remove the bitter grief of Heaven. Therefore, we who must take up that mission and follow the Father&#8217;s orders feel completely awe-stricken before You.</p>
<p>Father, please raise us up again before You, we who are weak and inadequate. Allow Your compassionate and grace-filled hand to go beyond this place and overflow toward the satanic world. Father, we sincerely hope and desire this.</p>
<p>Father, please look upon these people with compassion. Please consider with sympathy the countless churches that have gathered on behalf of this people. Please allow them to be aware of the presence of the Father&#8217;s great will and dispensation.</p>
<p>Based on this, please allow each church and nation to uphold the will of the Father. Please bring about the fulfillment of Your wishes by working through these people to induce the 2.4 billion people of humanity of this world to advocate the will of the Father. Please let the day come in the near future when the whole 2.4 billion people of humanity can sing that glory. Father, we pray this from the depth of our hearts.</p>
<p>On this day, these people have reported all their lacks. They desire once more the compassionate love of the Father and have come before Your holy presence. Please protect them with compassionate love, embrace them with Your glorious grace, and enhance them with new courage and new power. Father, we hope for this from the bottom of our hearts.</p>
<p>Now we beg that You will allow this hour to be a moment when, attending Father, heaven and earth can harmonize and the Father&#8217;s love of goodness can dwell in this place. Let this time be a moment when we can offer the Father the glory that arises from our union with Him and receive love from the Father.</p>
<p>Spread widely across the countryside, there are lonesome sons and daughters who are kneeling down and are building altars before the Father. Since the whole mission of the last days has been entrusted to them, please allow them to center themselves on the will of the Father and manifest only the will of Father wherever they may be. We pray with the utmost sincerity.</p>
<p>Earnestly hoping that on this day You will let only the glory of joy descend upon the congregation, I prayed in the name of the loving Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Father! We are grateful toward Your grace, which found and raised us up and allowed us to carry on the fight until this hour. Today we still have the mission to offer all of our minds and bodies to fight for the one glorious day of the Father. Please let us not become exhausted.</p>
<p>Father, we have often felt that You have personally walked side by side with us as we traveled the difficult path that we had to take to obey Your commands; that You personally stood at our side even on the path of death. We must offer gratitude before that love of Yours, which guided us inadequate ones and persevered through many things.</p>
<p>Father! Although a long time has passed since the day that You promised and permitted, we feel humiliated before the granted will. If Your sons and daughters who have gathered here today cannot return glory to the will, Father, please allow them to at least return tears.</p>
<p>Father! In these last days, we pray that You will allow the fulfillment of the wishes of the ancestors, who made appeals on behalf of the people according to Your commands to persevere. Please quickly manifest Your will before the humanity of the world and give Your commandments.</p>
<p>Father, among Your sons and daughters who have gathered here on behalf of the people, are there those who cannot realize this great will of Yours? Please let them feel and experience the heart of the Father, which reaches deep down into the flesh and bones.</p>
<p>We understand that the path we must walk is long and danger-ridden. No matter what kind of obstacle block our path in whatever time and place, please empower us to penetrate through them. Please lead us not to become ones who feel grief for ourselves. Father, we pray from the depth of our hearts.</p>
<p>Father! Let the sons and daughters who have gathered here today eradicate all the things they are attached to and extricate all that has become entangled for 6,000 years. While we root out our own inadequacies, at the same time, please allow us to eradicate in this one place all the inadequacies of these people. By doing so, please allow us to liquidate all the shameful things of the 6,000-year history of humanity. Father, we earnestly ask that on this foundation and in this hour You will let this be the year when we can set the condition of victory before Satan and step over it.</p>
<p>Father, please guide us to become like children who do not know anything. Please allow us to do nothing else but obey when we are led and do nothing but submit when we are guided. Please do not let any subjective opinions or concepts remain in any of us. Resembling the heart of the Father and taking after the pure heart of children, let us become people of goodness and keep to this path, regardless of whether we are dead or alive. Allow us to charge forward on the path even if flesh and blood are shed.</p>
<p>Lonely members spread across the countryside are clinging on to the way of the Father&#8217;s will and are fighting to safeguard it at the cost of their lives. Please guide them not to become debilitated. Father, we beg that You will grant them courage and righteous impulses in this hour, so that they can greet the day of joy and glory with a new determination and readiness.</p>
<p>Please forgive our deficiencies in this hour. We possess nothing and we have nothing of which to be proud. All we have is our earnest desire to be embraced inside the Father&#8217;s bosom of love like children. Father, we ask sincerely that You manifest Your holy presence and penetrate deeply into the depth of our hearts. Please personally bestow the blessing according to our given measure.</p>
<p>Please let there not be anyone among the sons and daughters gathered here who gets dragged away by Satan. We wish earnestly that this may be the moment when we can receive the seal of purification, hold the flag of joy and victory, and return the glory of Hosanna before the Father for eternity. We offer all these words in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 3</h3>
<blockquote><p>Father! We have learned through the words of truth that heaven and earth are created as one body. When we consider that heaven is the subject and we are the isthmus, we cannot live even one day or one moment without receiving the sap of the Father&#8217;s love and life. Please forgive us for not having been able to live so as to receive the sap of love that emanates from the eternal God when we should have lived as the branches and leaves of Heaven.</p>
<p>Father! In this time of the last days that forebodes the day of judgment, please allow us to be engrafted to the love of the Father centering on Jesus Christ, who is the perfect root. Although we know that God longs to reap from us the fruit of love that is born through the eternal love of Father and of Jesus and the Holy Spirit, we fear that we might become an obstruction to the Father&#8217;s harvest because of our immaturity, imperfection, and frailty, which prevents us from bringing that to pass.</p>
<p>We entrust ourselves to You. Father! Please raise us and care for us. By guiding us through the hardships and turmoil, please allow us to mature as ripened fruits. Through the loving hands of the Father, please allow us to become the realization that can build the eternal kingdom of Heaven, the harvester who can reap the harvest.</p>
<p>Father! We know that this moment today is not the first time You have predicted this event. You had already prophesied it long ago in the Old Testament era and at the time of Jesus 2,000 years ago. If we really understand this, then we must cultivate ourselves and become the harvest that can be reaped by Heaven and bring peace to Heaven. Yet when we evaluate ourselves, I am sure that there are those among us who do not feel that they have become mature yet. If this is the case, then Father, I ask earnestly and pray that You will allow them to repent before You on their own volition. Lamenting their own frailty, let them repent even for the grief of Jesus Christ.</p>
<p>Father, we have gathered here today. Please govern our minds totally, and be the center of operations to reign over us. In this way, please do not tolerate any evil concept or assertion that is unacceptable before the will of the Father.</p>
<p>Father, please let these who have gathered here become completely purified children by undergoing repeated processes of purification and bringing an end to the works of Satan. Please allow this to be a time when only You can operate and intervene.</p>
<p>Please allow us to understand that You are pressing us to fulfill the day of Christ, and that this is the time when You wish to manifest the love of Christ through us. Moreover, please lead us to understand that by raising us up, You long for us to take hold of the troubles of Christ and step forward in this twentieth century. Father, please lead us not to center our footsteps on ourselves as we dash forward toward the heavenly nature. Please lead us not to remain in the state of offering self-centered prayers.</p>
<p>Please allow us to chase out all the elements that invite the invasion of evil as we move forward. Father, we pray from the depth of our hearts that You will hold onto us, so that we can travel through any kind of danger-ridden road of conflict for the sake of realizing the will that You desire and that we can persevere even on a road of utter despair.</p>
<p>We know that we cannot receive the glory of earth because we are not men of the earth. Just as it was prophesied through Jesus Christ, we know that when there were citizens and sons of Heaven who possessed the true love and integrity of the Father, they were not welcome on earth in any era during the 2,000 years of history. Father! Please guide us to be able to cope with the persecution we may receive from this people when we try to fulfill the works of Jesus for him. Please empower us to overcome the contempt, the tribulations, and the sorrow that we might suffer at the hands of humanity on earth as we try to lead our lives for the sake of Heaven.</p>
<p>Jesus is longing for the day of harvest and is calling for us today, after the 6,000 years. Please withdraw the traces of historical grief and the blood and tears of the crucifixion through us. Guide us to serve as the shields of victory. Please allow us to understand that Jesus, the substantial manifestation of hope, is longing for us to become qualified to dominate Satan. By virtue of this, Father, we ask sincerely that You will allow us to become the sons and daughters who are determined to fight every day with the joyful will of the Father in our hearts and to subjugate the enemy Satan, even if we have to continue and complete it through our descendants because we could not accomplish this mission during our life-long dedication to the Father&#8217;s works.</p>
<p>We who are facing the new year must make a renewed resolution deep in our hearts to walk this path of conflict that endangers our lives. No matter what kind of enemies oppose us, Father, please guide us never to submit to them, and safeguard our fidelity. On account of this, Father, we hope with the utmost earnestness that You will allow us to become Your sons and daughters who can reveal before all things that we are the sons and daughters who represent You.</p>
<p>Please let the words You grant us today become manifested and link our hearts. Requesting earnestly that You will move the spirits and mold us anew with Your hands of power in this hour, we offered all these words in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon that I want to reflect on with you is <i>&#8220;The People Chosen for the Restoration of the Kingdom of Heaven.&#8221;</i> I will speak briefly upon this topic.</p>
<h3>The Last Days of the<br />
History of the Dispensation<br />
When We Must Re-examine<br />
Our Own Position</h3>
<p>Ladies and gentlemen, today we greet the last Sunday of this year. You understand clearly through the principles of restoration that if we do not fulfill our responsibility today, then it must be done tomorrow.</p>
<p>Since the creation, history has traveled through the 6,000 years by passing through one day, one year, and then through a long period of time, while times and seasons were changing. Yet you also know very well that now the dispensation of restoration, through which the great judgment will take place on earth all over the world and God will become complete, has to be realized through the 2.4 billion people of humanity on the earth today.</p>
<p>We have now come face-to-face with the last days of the 6,000-year history of the dispensation. We have been participating in helping the history of the universal restoration and have stepped forward to achieve the will. The time has come when we must unequivocally understand our own situation.</p>
<p>Accordingly, you yourselves must now step over the 6,000-year history to reach the level of Adam and Eve, who were the ultimate ideals of the restoration and the center of creation. Going one step further, your family and society and the whole humanity of the world must reach the standard. Before that standard is met, the dispensation of God will not be consummated on earth.</p>
<p>We, the descendants of today, must take responsibility for the gigantic and fearful dispensation of restoration, which is full of ordeals, and for the failures committed by our ancestors as well as the things that they left behind unaccomplished. You must feel deeply in this moment that such a universal mission rests upon you.</p>
<p>Due to the fall of Adam and Eve, the ideals of the kingdom of Heaven have been fundamentally destroyed and the ideals of the kingdom of Heaven that should have been realized through humankind have fallen down from Heaven. What is more, until now the kingdom of Heaven has not been realized; the citizens who can build the kingdom of Heaven have not been found. The families that can cultivate the citizens are not established. The couples and brothers and sisters who can form such families are not found either.</p>
<h3>The Restoration of the<br />
Kingdom of Heaven and the<br />
Good Life of Human Beings</h3>
<p>Therefore, the restoration of the kingdom of Heaven is the central purpose of what God demands. Moreover, the movement to restore the kingdom of Heaven must be done in a process of reversal. Starting from citizens of Heaven, the children of Heaven, the brothers and sisters of Heaven, the couples of Heaven, and the families of Heaven must be restored to construct the kingdom of Heaven. Such a mission rests on our shoulders.</p>
<p>The land that we are living in today, this world in which we live, is not the land of the kingdom of Heaven and is not the world of the kingdom of Heaven. It is not a world centered on God, but a world centered on Satan, a world that stands opposed to the kingdom of Heaven. Nonetheless, in the concluding period of history, without fail there will emerge the watershed when the evil world is restored to the kingdom of Heaven of goodness. The 2.4 billion people of humanity today have crossed the pass of the restoration of the individual, family, society, nation, and world in accordance with the dispensation of God.</p>
<p>The central purpose of Jesus Christ coming to this earth and disseminating the gospels was the restoration of the kingdom of Heaven. This standard called the kingdom of Heaven is supposed to not only restore you as an individual, but going beyond that, also restore the family, society, nation, and world. Therefore, from the day that you began to believe in Jesus, you have been traveling the road of conflict for the sake of restoration.</p>
<p>The lives that people lead now in this world are not for the sake of the world. Although they claim that they live for the sake of the nation, they do not. Although they claim that they are living for the sake of the family, they are not living for the sake of the family. Moreover, although they say that they are living for the sake of themselves, they are not really living for themselves.</p>
<p>All human beings that live in this world of evil today should live for the sake of the world, but they have not been able to do so. People who should be living for the sake of their nation, their people, their tribe, family, and themselves have lost that fundamental position.</p>
<p>When people today live centering on themselves, they are not able to live centering on their minds. When we examine how low we have fallen, you will find that we have fallen so low that although we should live centering on our minds, we have not been able to do so. We have been living for the sake of our physical bodies. We have become people who live only for the sake of our self-centered desires.</p>
<p>Similarly, for the sake of restoring fallen men, God has been carrying on the work of rectifying the body to subjugate it before the mind, rectifying the individual to make him submit to the family, rectifying the family to subjugate it before the people, rectifying the people to make them submit before the nation, and rectifying the nation to make it yield to the world.</p>
<p>Therefore, in any society, individualistic people have been standing in the position opposing the revolutionary course of faith in Jesus. What is more, people who have centered upon themselves have also stood in the opposing position. Because God works in line with the progress of history, in other words, in the orderly progression through the individual era, the family era, the people era, and the national era, in that course of progress, there have been difficult moments of crisis when people could no longer follow.</p>
<h3>The Center that We Must Pursue<br />
and the Order of Restoration</h3>
<p>In this era of the last days, when the 6,000 years are being consummated, the ideology of Jesus Christ has been established on earth as the ideology of the restoration of the whole world. In other words, today the ideology centered on Christianity is becoming manifested as the central ideology of the entire world. However, the ideology of the enemy has counter-attacked, and these two divisions are engaged in a fight.</p>
<p>Then what is the standard that we who stand in this kind of position must pursue? If we look at it through the hope of Jesus Christ, who established the ideology of the restoration of the kingdom of Heaven, this world is not the only ideal garden that we must pursue. The ideal standard of restoration that God seeks is not only this earth. It is the garden of ideology that has become one based on the union of heaven and earth. Therefore, God has been carrying on the dispensation until now for the sake of finding the one glorious day when we can join in harmony and sing centering on Heaven.</p>
<p>What must we, who live in this era, understand? We ourselves must restore through indemnity everything in the history of sin.</p>
<p>When you believe in Jesus, there will unfold a fight on the individual level. The fight between the mind and body will unfold. Those who become stragglers in this fight cannot become the citizens of the kingdom of Heaven. When evil acts centered on the body try to subjugate the mind, if you cannot overcome it and be victorious, then you cannot become the citizens of the kingdom of Heaven. We today have the mission to restore from the world to the nation, from the nation to the people, from the people to the family, from the family to the couple, and from the couple to brothers and sisters. Because of such a fundamental standard for the ideology of the kingdom of Heaven, we must first restore ourselves.</p>
<p>Since it is said, &#8220;the kingdom of Heaven is in you,&#8221; although the universal kingdom of Heaven must also be built, the individual kingdom of Heaven must first be completed. What this means is that you have to become someone who can stand before the universe after establishing the reciprocal base for mind and body.</p>
<p>Therefore, now you must become someone who can be assimilated into and be harmonized with any aspect of the entire ideal of Heaven. If Jesus is compared to a grape tree, you can maintain the shape of a branch of that grape tree, no matter which aspect we belong to. Your moving from the branch to and through the stem is what restoration is all about.</p>
<h3>The Stages of Restoration into the<br />
Citizens of the Kingdom of Heaven</h3>
<p>The first stage that you must find is the stage of becoming the citizens of the kingdom of Heaven. Before you lies the fate to enter this stage of citizenship in the kingdom of Heaven. You who are in this situation must have a new historical concept. You are not to live for your own sake; you must have the mentality to live for the sake of the citizens of the kingdom of Heaven, the compatriots of the heavenly nation. You must not have a partial concept but a universal one. Moreover, if you belong to a society, then you have to have the mentality of that society. If you belong to a nation, then you must have the mentality of the nation. If you live in a nation, then you must learn how to love the citizens of that nation.</p>
<p>We today must be able to assert our will with our minds and bodies before God, who has been guiding history for the sake of the construction of the kingdom of Heaven. We must be able to love the citizens of the kingdom of Heaven. We must have the mind-set that we exist for the sake of building the kingdom of Heaven, for the restoration of the world, which is the will of the Father. We, as the believers in Jesus, should not blindly support Jesus, but be able to believe in Jesus by becoming one with the fortune of heaven and earth internally and externally. God has been establishing the ideology of the restoration of the kingdom of Heaven centering on the universal dispensation. We must become the sons and daughters and citizens who can stand there. Furthermore, we must learn to love the compatriots of the kingdom of Heaven.</p>
<p>If there are those who have faith among the people around you or beside you, then you must be able to consider them as your brothers and sisters and your compatriots. Moreover, you must persuade everyone to do the same. When we look at these kinds of things, it is clear that your responsibility is unspeakably immense.</p>
<p>Then what is the demand that God is making of us in these last days today? It is none other than mobilizing the faithful believers and building the garden of the kingdom of Heaven. Therefore, individuals must become united and peoples must become united to become compatriots of the kingdom of Heaven. You must understand this.</p>
<p>When we look at the 6,000-year history vertically, in the Old Testament era, God gathered the citizens of Heaven. In the New Testament era, God gathered children of Heaven. Similarly, history flowed in a reverse manner.</p>
<p>In the world today, there are people who are trying to build the kingdom of Heaven centering on the ideology of the compatriots of the kingdom of Heaven. Moreover, there are also people who rely on the ideology of brothers, sisters, and couples of the kingdom of Heaven to build the kingdom of Heaven.</p>
<h3>The Legal Standard and the<br />
Standard of Life in the<br />
Kingdom of Heaven</h3>
<p>Now you must learn to obey the laws of the kingdom of Heaven in your daily life. To establish the kingdom of Heaven, you must learn to abide by the laws of the kingdom of Heaven. Moreover, while you learn to obey the laws of Heaven, at the same time, you must learn to lead the life of the kingdom of Heaven. Furthermore, while you learn to live the life of the kingdom of Heaven, you must also become one through the love of the kingdom of Heaven.</p>
<p>God has been working to restore the kingdom of Heaven until now, so centering on what should we abide by the laws of the kingdom of Heaven? We must obey the laws of the kingdom of Heaven centering on the Biblical words that Jesus gave to us. Since words are the very laws of the kingdom of Heaven, we should live centering on the words. This is where your path is. You are to live especially according to the laws of the kingdom of Heaven centering on the Divine Principle words that testify to the internal truth of the Biblical words.</p>
<p>Then what kind of life should you live? You must live a life that represents the thirty-year life of Jesus. Your life in the last days today must be a life that testifies to Jesus Christ. Because of this, you should be able to divulge your life to all people. You must live the same type of life that Jesus demonstrated to us. You must follow the example of the life of Jesus, who abided by the laws centering on the words of God. By leading a harmonious life, you should live for the sake of Heaven.</p>
<p>Therefore, centering on the words, you must now lead a life that represents the life of Jesus, which is based on the laws of Heaven. Your hope and ideal must be the love of God. For this reason, you must set the condition of harmony for the sake of making a link with the love of God. This is what God demands of all the Christians of the world today.</p>
<p>The resin of one tree branch flows to other branches. It circulates through all the leaves and branches. Similarly, you must learn to create harmony between yourselves and give. Such people can possess the eternal love of God.</p>
<h3>Throw Away Self-Centered Concepts</h3>
<p>Accordingly, we Christians should abandon our self-centered mentality and develop a new mind-set that we represent the world and the universe. Therefore, when we look at our members, we should understand that they are not simply who they appear to be today. You must feel that they represent the 6,000-year history, the eternal dispensation, and horizontally, the 2.4 billion people of humanity. In each person, we can find the universal promised will of God&#8217;s love. Consequently, you must become the co-operator of that person. Because such a mission rests on you, you must learn to view the dispensational will of God with a correct perspective and represent that will.</p>
<p>The same thing is true in your personal or family life. Your children, your parents, and your spouse do not exist for your sake. Your children are not for your sake and your brothers and sisters are not for your sake. The same thing is true for your parents. They exist for the sake of something greater than the nation and the world, for the sake of the universe.</p>
<p>We should be aware of this, and on that level, relate with our brothers and sister and with our parents. If you recognize this fact and feel this in your life, then you cannot judge anyone with words.</p>
<p>We must never forget that the universal will of God can be found in each of us. You must be aware of the fact that you do not exist for yourself but for the sake of the world, for the sake of heaven and earth. You represent the mission of restoration. You must become unified in your daily life.</p>
<p>You who have been traveling the path that others do not walk must abandon a self-centered life. You should cast away self-centered concepts. Even in our Unification Church, we must throw away a perspective toward life centered only on the Unification Church. The reason is that we are all cells and particles of the universe.</p>
<p>We who live in the last days must feel the historical workings, the providential workings of the heavenly principles, the workings of the comprehensive love of God. Moreover, only when you become the victor in the universal fight with Satan by conquering your bodies, can you become the people needed for the garden of the kingdom of Heaven. In this kind of moment, you will develop a relationship with Heaven. You must understand that God, Jesus, and the Holy Spirit have joined their hearts and are fighting with Satan in order to realize this hope.</p>
<p>When you try to fight with Satan today, you must distinguish whether or not the thoughts, concepts and ideology that you have are for your own sake. If all of your thoughts are for your own sake, then you will have no way to escape Satan&#8217;s realm.</p>
<p>What is more, we Christians, who are moving forward toward the world, must step beyond the mentality of history constrained in this world. You must be able to transcend that to comprehend and judge the world with a universal perspective of history.</p>
<h3>Blessed Are Those Who Bring Peace and Harmony</h3>
<p>Then what would happen now to the world whose purpose is restoration? What would happen to the society, family and to us, whose purpose is restoration? What is the will of God, whose purpose is restoration? You must understand these and go beyond them. To do that, you must be able to live relying on the words, having the sacrificial heart of Jesus Christ, and able to live in harmony. Jesus said, &#8220;Blessed are the ones who bring peace and harmony. They will be called the sons of God.&#8221; (Matthew 5:9)</p>
<p>Those who can bring harmony wherever they go can go close to God. You have the responsibility to bring harmony to all individuals, to all people, to the world, and to heaven and earth.</p>
<p>If you fail to feel this somewhat substantial responsibility in the living environment that you are in, you must at least feel it in your hearts. You must have the mind-set that you will become the sacrifice who can bring harmony to individuals, to families, to societies, to nations, and to the whole world. On that foundation, you must have the attitude to confront Satan and go before the Father.</p>
<p>If you build this kind of relationship and lead your life, then when you see someone who is doing good things, you will naturally have the desire to bow your head down and elevate that person. Moreover, if you see someone who is doing evil things, the thought will arise in you, &#8220;It is my task to guide that person. I will be responsible for that person.&#8221; If there is someone who feels this to the bottom of his heart in his life, then he does not have to pray for his own sake. He does not have to pray for his own family. If each of you makes the determination and pledge that you will build the kingdom of Heaven that God wishes on earth and if you live for that cause, then God will be with you.</p>
<p>Therefore, if there are people who can join hands and build the altar of harmony, then they can bring forth a new revolution that will stride forcefully toward the world. The same thing will be true for the churches. If there are people who are determined to die, with the mind-set that they will join hands and become the sacrifice of harmony following the example of Christ, then although the steps they take might seem unsatisfactory and fragile, it is not so. Their steps are robust steps directed toward the construction of the kingdom of Heaven on earth.</p>
<p>Jesus Christ came to earth with the amazing mission of heaven and earth on his shoulders. In the 4,000-year course of history in which there was no loyal subject or filial son who lived for the sake of Heaven, it was Jesus Christ who came to fulfill the mission of the loyal subject and the filial son that Heaven sought.</p>
<p>The thirty-year life of Jesus was completely for the sake of Heaven. It was a world level and universal life. What is more, his life was a life of sacrifice for the sake of Heaven. You must follow the example of Jesus Christ who, unlike anyone in history, came as the filial son for the sake of Heaven.</p>
<p>Father&#8217;s will is building the kingdom of Heaven. The kingdom of Heaven is the world in which the humanity of the whole world joins hands to be in harmony and in intimate friendship and to intermingle in love and raise their hands to return glory and gratitude to Heaven. When we think about that, then clearly the life of faith that we have led so far is very immature. We must get rid of this kind of immature life of faith.</p>
<h3>God Pursues the Ideal of Unification</h3>
<p>The time of any kind of denominationalism has passed behind us. The time of any kind of ideology of people has passed behind us. Now the time has come when we must find the ideology of restoration and the concept of faith on the world level.</p>
<p>Koreans today are pitiful people. What these pitiful people must understand is that the history of God tears down the individual to build the family, tears down the family to build the society, tears down the society to build the nation, and tears down the nation to build the world. This is the judgment of Heaven.</p>
<p>Humanity has passed through judgment like this, but what is the problem remaining in the last moment? It is to destroy the course of Cain, which is one of the two courses of Cain and Abel that have been in confrontation and in conflict. Therefore, you must become a different person centering on the words of Jesus. You must establish the words of Jesus as the laws and become different people. You must become the loyal subjects and filial sons of Heaven who can represent the life of Jesus.</p>
<p>Having done that, you are to go before God, who is pursuing the ideal of unification, and be able to say, &#8220;God, please liberate through me the bitter grief of not having been able to unite the world and embrace it in love.&#8221; Christians today do not understand that there remains before us such a great, historical, universal, and cosmic mission. Then to what extent have you been able to manifest the love of Jesus Christ? To what extent have you realized faith and life based on Jesus Christ? You must understand the line of that limitation.</p>
<p>The grace coming from Jesus is universal grace. Therefore, we today must live with the concept of the kingdom of Heaven in us. Your every movement and all of your feelings must be centered on the mind-set, &#8220;I am the representative of the kingdom of Heaven.&#8221; You must live with this kind of mentality. When you are cursed before all people and feel a surge of anger within, you must suppress it based on the concern that your anger might bring curses upon the 2.4 billion people of humanity. This is the heart that Heaven has been feeling until now. If you, even after knowing this fact, become overwhelmed by fury and disobey the will of the Father, then how can this be tolerated? All of you are to join in alliance and help each other.</p>
<p>Which people are in difficulty? You must feel that person&#8217;s difficulty as if it is a wound inflicted on you. You must then co-operate. This must not be done just by the Korean people. The whole of humanity must help.</p>
<p>You must walk the path of restoring the kingdom of Heaven. You must become the sons and daughters who receive the love of the universe. Next, you must learn to attend God, who is the center of the universe. The God whom you cry out for and Jesus Christ whom you seek and believe in do not exist only for your own sake. The people who believe in Jesus today do not understand that. They think that Jesus and God are only for their own sake.</p>
<p>This is not God&#8217;s wish. This is not the will of God. God&#8217;s place is at the center of the whole of heaven and earth. You must learn to attend God like this today. However, this is only possible for those who live the life of the kingdom of Heaven.</p>
<h3>The Correct Attitude of Faith toward God</h3>
<p>Then what is the reason that God has been working in history for 6,000 years? It was for the purpose of embracing the whole of history in His bosom. God has been wishing that not just earth but even the spirit world will become one with the whole through His love. He has been longing for that one day. If you want to receive grace from this God, then you must pray, &#8220;Father! Please call on me.&#8221;</p>
<p>God&#8217;s love must never end with you. What you must understand today is that the grace that God gives is not only for your own sake. At the same time it saves your life, it is also for the sake of saving the whole of humanity.</p>
<p>Nonetheless, because the people of today live centering on themselves, though many people want to find God, there is almost no one who receives this grace. You must free yourself from this. You must penetrate through it and dismantle it to serve God as the cosmic God. Before this universal God, you must feel the responsibility that penetrates deeply into your minds and bodies. The garden of hope that you believe in and desire is not just your garden of hope. The archangel fell because he tried to seek and believe in God centering on himself.</p>
<p>The God that the people of today believe in is both our God and the God of humanity. He is both our God and the God of the world. He is both the God of the world and the God of heaven and earth. At the same time, he is our universal parent.</p>
<p>However, if you examine the faith of the people who believe in Jesus today, they are saying, &#8220;Please be my God,&#8221; and those who are a bit better than that do no more than say, &#8220;Please be my family&#8217;s God.&#8221; Rising a bit higher from this are those who say, &#8220;Please be the God of our denomination.&#8221; We should never have these kinds of concepts.</p>
<p>There are many denominations in the world today that are crying out for God. However, we do not need the God who is sought within a denomination. Only when people gather who transcend the denominations and call out to Him as their father centering on the whole of heaven and earth, can humankind attend God on earth.</p>
<p>Therefore, we today must let the concepts we have be linked to the whole through our families. You who have embarked upon a new road must abandon your life up to now and make a new and historical departure toward the concepts of universal life.</p>
<p>At such times, the attitude that you should have is the heart that can attend the substantial presence of the universal God. By doing so, you can receive the love of God and build the relationship of giving and receiving with God. At such a moment, you can finally consummate the ideology of the universal bride.</p>
<p>After consummating the ideology of the universal bride, you can go seeking the restored world. But you can appear as the bride before the substantial manifestation of the universal God only after restoring the people and brothers and sisters, and the children and couples. Only when you reach that position can you stand before the substantial manifestation of the universal God centering on the love of God that springs out there and become one with that love. The couple who comes together in this way is the couple who can dominate this earth and live in the kingdom of Heaven. Moreover, only after you have children as this kind of a couple can you build the family of the kingdom of Heaven. When you form a people with these brothers and sisters and children, you can finally bring the dispensation of restoration to a conclusion and live the life of the kingdom of Heaven on earth.</p>
<p>Likewise, the great movement of restoring the kingdom of Heaven is exhibited through you of today. Therefore, you must increase your efforts toward the realization of that will and never become servile before Satan. Just as Jesus Christ did all that was possible as the loyal subject and filial son of God, we must also complete our duties as the loyal subjects and filial sons.</p>
<h3>To Complete the Restoration<br />
of the Kingdom of Heaven<br />
and Return Glory</h3>
<p>You must understand this: only after you cause the humanity of the world and all the spirits in the spirit world to fulfill all their obligations as loyal subjects and filial children, can you become the sons, children, brothers and sisters, family, or people who can return to the Father the victorious glory of having completed the restoration of the kingdom of Heaven.</p>
<h3>Prayer</h3>
<p>Beloved Father, today we must dash forward. Although our strength is not enough, we face an amazing historical conclusion in which we must jump over tens of stages at once. Although we are in the position to magnificently pass through the course of judgment, we are in a deep sleep today.</p>
<p>Father, we have become bewitched by the secular world. We are accompanying evil. Father, we desire from the depth of our hearts that You will lead us to eradicate all evil elements and raise us as victors who can return victorious glory to the Father, who is the center of the cosmos.</p>
<p>All the hidden stories of history have become entangled in us. Father, we pray that You will allow us to cut them all off and find the center of liberation so that we can stand in the position of a friend to Jesus Christ and make a full bow before the Father.</p>
<p>Please lead us, the ones chosen for the restoration of the kingdom of Heaven, not to trample upon the ideology of the kingdom of Heaven by centering on ourselves. Father, we hope with the utmost sincerity that, until we can be pulled by the ideology of the kingdom of Heaven and can accomplish it, You will allow us to go forward, to sacrifice, and to fight on. Until we attend You as the universal Father, we pray that You will allow us to persevere and win the victory in the battle.</p>
<p>Father, please govern our minds forever. Now please allow us to become sons and daughters who can offer a full bow of gratitude before the Father, who is the center of the whole based on the new standard of universal life. We earnestly request that You will allow us to become sons and daughters who can be immersed in Your love. Father, we prayed all these words in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html" title="Permalink to The People Chosen for the Restoration of the Kingdom of Heaven" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Become the One Who Attends the Lord Who Has Come for the Sake of all Humankind</a></div>
<div class="nav-next"><a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html" rel="next">JESUS&#8217; VIEW OF LIFE FOR THE SAKE OF THE RESTORATION <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,272 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The Providence of God and the Nature of the Adventure That Transcends Reality &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-762 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-762" class="post-762 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">The Providence of God and the Nature of the Adventure That Transcends Reality</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T10:24:51+01:00"> <a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T10:24:51+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">The Providence of God<br />
and the Nature of the Adventure<br />
That Transcends Reality</h3>
<h3 style="text-align: center;">December 2, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>Luke 22:24-46</em></h3>
<p style="text-align: center;"><em><span id="en-NIV-25889" class="text Luke-22-24"><sup class="versenum">24 </sup>A dispute also arose among them as to which of them was considered to be greatest.</span> <span id="en-NIV-25890" class="text Luke-22-25"><sup class="versenum">25 </sup>Jesus said to them, <span class="woj">“The kings of the Gentiles lord it over them; and those who exercise authority over them call themselves Benefactors.</span></span> <span id="en-NIV-25891" class="text Luke-22-26"><span class="woj"><sup class="versenum">26 </sup>But you are not to be like that. Instead, the greatest among you should be like the youngest, and the one who rules like the one who serves.</span></span> <span id="en-NIV-25892" class="text Luke-22-27"><span class="woj"><sup class="versenum">27 </sup>For who is greater, the one who is at the table or the one who serves? Is it not the one who is at the table? But I am among you as one who serves.</span></span> <span id="en-NIV-25893" class="text Luke-22-28"><span class="woj"><sup class="versenum">28 </sup>You are those who have stood by me in my trials.</span></span> <span id="en-NIV-25894" class="text Luke-22-29"><span class="woj"><sup class="versenum">29 </sup>And I confer on you a kingdom, just as my Father conferred one on me,</span></span> <span id="en-NIV-25895" class="text Luke-22-30"><span class="woj"><sup class="versenum">30 </sup>so that you may eat and drink at my table in my kingdom and sit on thrones, judging the twelve tribes of Israel.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25896" class="text Luke-22-31"><span class="woj"><sup class="versenum">31 </sup>“Simon, Simon, Satan has asked to sift all of you as wheat.</span></span> <span id="en-NIV-25897" class="text Luke-22-32"><span class="woj"><sup class="versenum">32 </sup>But I have prayed for you, Simon, that your faith may not fail. And when you have turned back, strengthen your brothers.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25898" class="text Luke-22-33"><sup class="versenum">33 </sup>But he replied, “Lord, I am ready to go with you to prison and to death.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25899" class="text Luke-22-34"><sup class="versenum">34 </sup>Jesus answered, <span class="woj">“I tell you, Peter, before the rooster crows today, you will deny three times that you know me.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25900" class="text Luke-22-35"><sup class="versenum">35 </sup>Then Jesus asked them, <span class="woj">“When I sent you without purse, bag or sandals, did you lack anything?”</span></span></em></p>
<p style="text-align: center;"><em><span class="text Luke-22-35">“Nothing,” they answered.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25901" class="text Luke-22-36"><sup class="versenum">36 </sup>He said to them, <span class="woj">“But now if you have a purse, take it, and also a bag; and if you dont have a sword, sell your cloak and buy one.</span></span> <span id="en-NIV-25902" class="text Luke-22-37"><span class="woj"><sup class="versenum">37 </sup>It is written: And he was numbered with the transgressors<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25902a" data-link="[&lt;a href=&quot;#fen-NIV-25902a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+22:24-46#fen-NIV-25902a">a</a>]</sup>; and I tell you that this must be fulfilled in me. Yes, what is written about me is reaching its fulfillment.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25903" class="text Luke-22-38"><sup class="versenum">38 </sup>The disciples said, “See, Lord, here are two swords.”</span></em></p>
<p style="text-align: center;"><em><span class="text Luke-22-38"><span class="woj">“Thats enough!”</span> he replied.</span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-25904" class="text Luke-22-39">Jesus Prays on the Mount of Olives</span></em></h3>
<p style="text-align: center;"><em><span class="text Luke-22-39"><sup class="versenum">39 </sup>Jesus went out as usual to the Mount of Olives, and his disciples followed him.</span><span id="en-NIV-25905" class="text Luke-22-40"><sup class="versenum">40 </sup>On reaching the place, he said to them, <span class="woj">“Pray that you will not fall into temptation.”</span></span> <span id="en-NIV-25906" class="text Luke-22-41"><sup class="versenum">41 </sup>He withdrew about a stones throw beyond them, knelt down and prayed,</span> <span id="en-NIV-25907" class="text Luke-22-42"><span class="woj"><sup class="versenum">42 </sup>“Father, if you are willing, take this cup from me; yet not my will, but yours be done.”</span></span> <span id="en-NIV-25908" class="text Luke-22-43"><sup class="versenum">43 </sup>An angel from heaven appeared to him and strengthened him.</span><span id="en-NIV-25909" class="text Luke-22-44"><sup class="versenum">44 </sup>And being in anguish, he prayed more earnestly, and his sweat was like drops of blood falling to the ground.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25909b" data-link="[&lt;a href=&quot;#fen-NIV-25909b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Luke+22:24-46#fen-NIV-25909b">b</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25910" class="text Luke-22-45"><sup class="versenum">45 </sup>When he rose from prayer and went back to the disciples, he found them asleep, exhausted from sorrow.</span> <span id="en-NIV-25911" class="text Luke-22-46"><span class="woj"><sup class="versenum">46 </sup>“Why are you sleeping?”</span> he asked them. <span class="woj">“Get up and pray so that you will not fall into temptation.”</span></span></em></p>
<h3>
Prayer 1</h3>
<blockquote><p>Father, You have been guiding a history of strenuous labor until today for the sake of the whole of humanity. You have been guiding the mission to dismantle the walls of grief and resentment that are deeply rooted in Heaven. Through the words of truth, we now understand that we are the ones who must bring down this wall of resentment erected in Heaven. We have come to realize that when that resentment is dissolved on earth, the link with Heaven will be created.</p>
<p>Please allow us to heed the fact that the Father is calling upon us, the people of this age. Since You have chosen us as Your representatives and have raised us as Your sons and daughters before the whole of humanity, please allow us to reveal only the glory of the Father through our bodies. Let our every deed manifest only the goodness and righteousness of the Father.</p>
<p>By doing so, please let us create harmony centering on love everywhere we have a gathering. Beloved Father, please allow the songs of victories offered to You fill the whole universe.</p>
<p>Heaven does not forget us even in this hour and is reaching out for us, commanding us to do the much-desired will that it seeks from us. Yet when we contemplate whether we respond readily to that calling and whether we have become the sacrifice of harmony before the Father, we are left to beg Your forgiveness for not having realized these ideals and for still stagnating in an inadequate, imperfect and unprepared state.</p>
<p>Please allow us now to open the gates to our hearts, and through new repentance, become the sanctified sacrifice so that the bitter resentment that permeates Heaven can be rooted out with our hands. Furthermore, Father, we hope from the depth of our hearts that You will allow us to become sons and daughters of Yours who can usher in the day of happiness.</p>
<p>The ultimate wall of tribulations of the last days blocks our path. Before us lies the course of conflict that we must travel through with our lives. Father, please do not let us become immature and base ones who become bitter toward Heaven and fall down in the middle of this course of conflict.</p>
<p>We are already firmly determined to offer our minds and bodies as sacrifices, so please accept them, though they are lacking. Beloved Father, it is our utmost wish that You will guide us to become Your sons and daughters, who, as the offered sacrifices, can entrust everything to the Father and await the Father&#8217;s commandments.</p>
<p>Father, this is a sacred hour. Father, this day is a sacred day. Father, please let this whole year become a sacred year. Please bless these children of Yours, who have gathered here representing the people in every place they gather. Please raise the flames of the sacred spirit that is hidden deep in Heaven. Deliver the works of the sacred spirit that You have promised for the last days. Please pour it down as one would pour down water. Father, please let there be many sons and daughters who can bring down the wall of resentment. Father, based on this, please allow every place they gather to become both a hidden and a manifest altar from which they can bring victory in the universal battle. Please allow us to respond to the direct commandment of Heaven to become victorious in the universal fight and bring the beacon of victory to the Father.</p>
<p>Father, Your children have gathered here in this hour, so please reign over each of their minds and bodies. If there are those who still cannot transcend their own self-centered thoughts, then please allow them to discard them. Please guide them to become living sacrifices before the Father. Let this be an hour when they are humbly and meekly offered as the sacrifice. My Father, I humbly and earnestly ask that You allow them to have a share in the grace of joy and the grace of harmony.</p>
<p>There are many sons and daughters who are wounded and exhausted. Father, please counsel them with compassion, so that the inspirations of this hour can govern their lives. Please do not let them lose the standard in their life course. Let there arise from within them the powerful and shocking stimulation of life. Please allow them to feel and experience the Father&#8217;s love and be immersed in it. Father, we pray from the depth our hearts that on account of this, You will allow all of us to offer gratitude and harmonize the many millions of faithful people on earth, so that we can persuade them to offer gratitude before Your holy throne and to build the altar of victory.</p>
<p>Father, we wish that through us, the unworthy, You will fulfill the will that You desire and seek to manifest. We have entrusted everything to You, so please reign over us. We prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Father, we have stepped forward with the utmost zeal representing Heaven, but we are too inadequate. Since we who have nothing wish to remain before You, please allow us to go forth and cry out aloud without any hesitation. Father, please look down with compassion upon our minds and bodies, which have been wounded in various ways during our attempt to take after the heart of God that no one knows about; wounded while we were following the path of the will that others falsify.</p>
<p>There were times when we shed tears in solitude and held grudges against Heaven. Although You have promised us the day of hope which is near, and although You have granted the ultimate fruit of the will to those who have been following with persistence, we worry that we cannot cope with it. We are overwhelmed with a great sense of awe before You.</p>
<p>Father, please govern Your sons and daughters who have gathered here. Please grant the Father&#8217;s will of happiness to manifest itself within our minds and bodies. Please remove wrong thoughts, ideologies, and concepts with Your presence and reign. Father, based on this foundation, please allow us in this hour to bring about the works of inspiration that can completely eradicate the bitter resentment rooted deeply within Heaven.</p>
<p>Please grant the heart of repentance to spring forth from within us. Strike our bodies with might so that the evil elements can be liquidated and only the elements of goodness can be revealed before the Father who lives in eternal presence. Please bless us so that we can respond to the Father&#8217;s goodness with our original nature and character, and creating harmony based on the Father&#8217;s love, enable the Father to look upon our beauty with delight. At the same time, may the faithful believers of Heaven be caused also to unite in consonance and return the song of glory to the Father. Father, we make this wish from the depth of our hearts.</p>
<p>Even in this hour, the dark surge of sin is trying to invade each of our minds and bodies. Please grant us the strength and the capability. Please guide us to the realization that as the number of the sons and daughter who gather increases, the Cain and Abel relationship becomes more manifest. Lead us not to stand in the Cain-type position.</p>
<p>Please allow us to become Abel-type sacrifices and voluntarily fulfill all of our responsibility as substantial sacrifices. Please allow us to act for Abel to bring the Cain-type people to submit to the Father. Father, we earnestly hope and desire that Your works of might and ability will be unfolded before the whole in the hour.</p>
<p>Father! In this hour, please let us heed in our hearts that the mission You have entrusted us with now is not for our own salvation and liberation. Please let us understand that the fate of this people rests on us today. Please allow all of the 2.4 billion people of the world to set the condition of appeal to Heaven and earth through us.</p>
<p>Father, please hold us until the day when we who stand in this magnificent and serious path of life and death cling onto Heaven with our right hands and strike Satan with our left hands, until we can reap victory and raise our hands to return the glory of Hosanna to the Father. Please govern the whole of the sons and daughters who have gathered in this hour. Please let there be no one among these participating sons and daughters who hold the root of sin in their hearts and resist repentance. Appear with the power to eliminate and explode all the bitter roots of sins they harbor in their hearts.</p>
<p>Please let that which belongs to Satan and that which belongs to God be separated in this hour, so that we can be offered before the Father as the sanctified sacrifices of joy. Father, we make this appeal from the bottom of our hearts.</p>
<p>Your lonely sons and daughters, Your sons and daughters who have dispersed throughout the countryside with the words of the new gospel, I know that they must be kneeling alone and facing difficulties in their attempt to walk the path of sacrifice. Father, please be with them.</p>
<p>Your lonely sons and daughters who are coping with the will before the time is ripe, please do not let them become exhausted in their fight with Satan. Father, who has been providing protection until now, we wish for Your grace of protection to continue even after this hour, so that wherever we may be, please permit us to represent Your will and to resolve the resentment rooted deep within You. Please guide us so that even at the cost of offering our lives as a sacrifice, we can inherit the bitter heart of the Father and offer gratitude toward Heaven. Please, beloved Father, raise us as the embodiment of beauty in whom You can take delight and who can return the glory of Hosanna, so that we can quickly and fully accomplish the will of Heaven.</p>
<p>There are many altars who have gathered before the Father&#8217;s presence on behalf of the people today. Be with them to lead them away from building the altar of evil out of their ignorance of the will. Let the works of the inspiration of Heavenly Father dawn upon this hour on the religious groups who have gathered representing the people so that every one of them can join their hearts and combine their altars to offer themselves as the one altar of victory to the Father.</p>
<p>Please take charge and reign over everything in this hour. Please operate only the will of happiness in this hour. Manifest only the will of happiness. Wishing for these things with the most sincere heart, I prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 3</h3>
<blockquote><p>Father, these words of truth are the truth of re-creation. We know that You are grieving over the absence of the embodiment of truth on earth, about which You have proclaimed in the Garden of Eden, &#8220;It is good, it is good.&#8221; We know that as long as there the condition remains unfulfilled to reclaim the words of goodness that were lost, we cannot find the embodiment of goodness.</p>
<p>Father, please divulge the words of goodness to this congregation. Father, I pray from the depth of my heart that You will renew Your commandments with the reclaimed words of goodness. Through their minds and bodies, I pray for the Father&#8217;s special dispensation of re- creation, which can produce the embodiments of goodness amid the congregation.</p>
<p>I have stepped forward with the truth, so please let both the speaker and the listener become one in their hearts. Father, we know that when one secures the reciprocal base and becomes the source of pride, then the whole can be molded through that person. Please come seeking the sons and daughters of Yours here whom You have raised. By establishing the center of words and producing the works of conditions, allow them to overcome the power of Satan. Moreover, Father, we humbly and fervently desire that if our minds and bodies are enslaved inside the realm of Satan, then please allow us to divide ourselves with the truth to be able to receive the Father&#8217;s seal of purification.</p>
<p>At such a time there is no need for many words. Until now we have heard and come to know many words of truth, but Father, we know that we need the power to give life to our minds. Please do Your works with power and ability.</p>
<p>Father, we sincerely hope that You will remove all evil concepts and manifest the words of truth that have the power to resurrect, and that You will give rise to the works of re-creation and resurrection. Please lead us to become those who fathom the heart of the Father, who wishes to see the perfection of one beauty in this hour. More than by any other means, through the heart of profound inner experience: the feelings, concepts, and repentance based on such inner experiences of the heart, we wish that in this hour we can be offered as one sacrifice. We prayed all things in the name of the Lord. Amen.</p></blockquote>
<p>In the words I have recited today, there are words that Jesus spoke as he faced the ultimate cross and made the adventurous determination. Therefore, the title of the sermon that I want to reflect upon with you is <i>&#8220;The Providence of God and the Nature of the Adventure that Transcends Reality.&#8221;</i> I will speak briefly on this topic.</p>
<p>We who follow the faith today are traveling through the course of ceaseless conflicts, with the day of universal judgment lying ahead of us. This path is not a smooth course. Therefore, if you cannot erect the adventurous center and secure the victorious center with which you can cast away the judgment of the universe&#8217;s bitter grief, then you will become losers in the historical course and losers in the life course.</p>
<h3>The Ultimate Universal Judgment and Our Own Understanding</h3>
<p>Therefore, you must keep in mind that the history of God&#8217;s dispensation forecasts the providence that begins and concludes adventurously. The environment and the various conditions that enable us to freely lead a life of faith were not results of your efforts. The reason that we can call out to God and lead our life of faith in this kind of freedom is because our ancestors have crossed over countless hazardous passes. You must understand this. You must also realize that if you cannot feel this deep down in your bones either in your life or in your course of faith, then you cannot cross the ultimate pass of universal judgment.</p>
<p>Before doing that, you must first understand the reason Heaven has called upon us. We must be able to explain by ourselves our identity, we who are passing over the hill of grief and resentment of the 6,000- year history.</p>
<p>What is more, we must reflect on such questions as: Have we erected the center of freedom that will enable us to cross over the pass of universal bitterness blocked off due to the resentment of history and Satan? Have we come to possess the victorious center from which we can confidently step above the standard of the judgment of resentment that lies ahead of us in the future? Which state has your life of faith reached today? Until the day that the whole dispensation of Heaven is completed through the historical course by passing through the practical course and the course of the future, we must form the bond with Heaven and contemplate the various problems of the past, the present, and the future.</p>
<p>Now if we assume that Heaven wills to raise us up to rest the whole mission of the last days on us and manifest the glory of victory through us, then that will must be the representation of the will of the dispensation of the 6,000 years. What is more, the criterion by which Heaven is trying to seek and raise us up is crossing the pass of the ultimate judgment. In other words, it is the new standard of the new heaven and earth. Accordingly, if you cannot set the standard of the new heaven and earth and the victorious environment of freedom in which you can live for eternity without any constraints, then you cannot emerge as victors before the dispensation of God.</p>
<p>When we reflect on the past, Heaven elevated us today not just to save us. He raised us up as the culmination that can resolve the historical grief and bitterness. You must heed this and get rid of the resentment that has accumulated from the time of Adam. Moreover, you should resolve the adventurous resentment of Noah and unravel his adventurous life.</p>
<p>The adventurous lives of those who came after him, from Abraham to Isaac, Jacob, Moses, and the prophets and sages of history, you must take charge of the works left unfulfilled by them and, using them as the one basis, establish the center that will empower you to confidently step above the standard of judgment in the future. Otherwise, you must remember that you will become a straggler in the historical battle with Satan.</p>
<h3>Noah Traveled the Path of Adventure</h3>
<p>Let us now reflect back on our ancestors of the past. When we look at the life of Noah first, we will find that it was not a smooth and even life. How do you think Noah must have felt when he received the commandment, &#8220;I will judge the world with water 120 years from now, so build an ark on the top of Mount Ararat&#8221;? It was not a feat that took twelve days, nor twelve years. It took 120 years. The commandment to build an ark on top of Mount Ararat was completely out of step with the reality of that time.</p>
<p>When you look at the actual situation of Noah, who carried out that kind of commandment, he might be considered a truly insane person, one who was fully out of touch with his time. Noah, who received such enormous directives from God, made a firm determination within himself. He persevered not for one day, but for a period of 120 years, wishing for that one day to come. You must understand that Noah was truly the adventurous champion, unprecedented in the 1,600 years of prior history. He was raised before Heaven representing that history.</p>
<p>Noah, who maintained absolute faith in the commandment as the will of the covenant, did not pay much attention to all those conditions. Once he decided, he did not care whether God intervened or whether the people of the world cursed at him. Since he had already embarked on the path for the sake of the will, putting his life on the line and having forsaken it, none of these matters posed any problem. Thus, he silently traveled through the course of ordeals that continued for such a long period of 120 years.</p>
<p>Noah must have faced criticisms in his family. Society must have greatly reproached him. Yet nobody could stop the footsteps of Noah, who began his journey to single-mindedly pioneer the heavenly path that humankind does not understand and has not traveled before, the path that no one in the course of sixteen hundred years had walked before. You must keep in mind that Noah was an adventurous person who could cast aside all opposition, even if the environment of society of that time obstructed him and all the people of the world pushed him back.</p>
<p>Noah made headway with dogged determination, regardless of what kinds of tests and tribulations he faced. After 120 years passed, he could erect the one restored family that Adam&#8217;s family had lost. You must understand such a historical background.</p>
<p>The same thing was true for Abraham. When Abraham received the commandments from God to leave Ur of the Chaldeans, this was no easy matter for him. When God ordered him to abandon the mountains and rivers of the homeland dear to his heart as well as all of his relatives and neighbors, he was greatly distressed. From the humanistic perspective, it was an impossible deed.</p>
<p>Abraham, who received the commandment of God, transcended the environment in which he had lived up to that time. Transcending the family, he abandoned the life that he had led happily until then and went on his way. Such an action as Abraham&#8217;s would never have taken place under the usual circumstances in that time. Even if there were those who centered their thoughts on the will and were concerned about the will, no one could have stood beside Abraham and proclaimed, &#8220;Yes. The path you are taking is true, so please guide me.&#8221;</p>
<p>Abraham started his journey with an unwavering heart that disregarded whether the world understood him. He had the mind-set to leave Ur of the Chaldeans for eternity. When he thus took his steps according to the way that God led, he climbed over all the steep mountains and crossed the pass of death with great persistence.</p>
<h3>The Faith of Abraham Transcended Reality</h3>
<p>God seized the first son of the idol seller, Terah, and put him in that position. Abraham, who had that calling, made the firm determination, &#8220;In the path that I am walking now, my center will never change, even if my beloved parents hold me back, even if my beloved friends dissuade me, and even if my beloved brothers and sisters pull me back.&#8221; That was not all. Abraham even obeyed the order of God to offer as a burnt sacrifice his precious son, Isaac, who was born when Abraham was one hundred years old. That command constituted the one adventurous condition that was unprecedented in history. That event was the condition that represented heaven and earth and decided the fate of events in heaven, events on earth, and of many millions of matters. Although Abraham was ignorant of this, he made a sincere attempt to place his son on the altar and sacrifice him after he had received the order to offer Isaac.</p>
<p>Think about the heart of Abraham, who was trying to strike his beloved son with the knife. His mentality truly transcended the reality. In his time, who could have recognized that kind of faith? The adventurous deed of Abraham indicated that he belonged to Heaven and that his family belonged to Heaven. It showed that he as well as his family and all of their belongings would follow the commandment of God. He realized this fact while he was making a burnt offering of his only son.</p>
<p>He tried to offer Isaac with the attitude, &#8220;Although I have given birth to this son, because he is Your possession, I will offer him to You,&#8221; and he tried to break away from the environment of practical reality. You must understand the center of the faith of these historical ancestors.</p>
<p>This holds true also for Jacob and Moses. When God raised them up, He did not allow them to travel a smooth and easy path. Jacob was engaged in the battle to seize the elder sonship from the time of his birth. Moses also faced conditions of conflict from the time of his birth.</p>
<h3>Moses Walked an Adventurous and Revolutionary Path</h3>
<p>God called upon Moses and raised him at the time the Jewish people were suffering 400 years of tribulation in the land of the enemy, Egypt. Moses was protected by his mother for three months under the fearsome tyranny of the Pharaoh. After that, he was taken in by the daughter of the Pharaoh and he lived in the palace for forty years.</p>
<p>You might have thought that Moses&#8217; life in the palace of Pharaoh was splendid and magnificent. However, Moses, who upheld the providence, was not an Egyptian citizen, though he was living in the palace of the Pharaoh. As each day passed by, the thought that he was a member of the chosen people of God and the thought that he represented Israel penetrated deeply into his heart. When Moses left the palace after adhering closely to the principles of Israel alone for forty years, he beat an Egyptian to death because he saw an Israelite suffer mistreatment at the hands of the Egyptian. Irrepressible indignation burst out from within him.</p>
<p>After that, he fled the palace. Cherishing the blessed providence of Israel in his heart, he began the life of a shepherd in the Midian wilderness. His life was in no way peaceful or comfortable. There was no one from any era who could understand why Moses would abandon such a splendid palace as the Pharaoh&#8217;s and live as a shepherd. Nonetheless, Moses did not despair. He began building a hidden altar that others did not know about for the sake of Heaven and Israel. On this foundation, God chose him in the year that he turned eighty and groomed him as the hero who could remove the resentment of the people.</p>
<p>After that, all the footsteps Moses took were adventurous. Because he kept the transcendent center of the dispensation of God close to his heart, his whole life transcended reality. What he saw, as well as the battles that he engaged in, all transcended reality. When Moses went to the palace of the Pharaoh under the direction of God, God should have blessed and protected Moses, who was carrying out His commands. Instead, He blocked the path of Moses and tried to kill him. Why did God try to impede and kill Moses, who was carrying out His orders? This simply should not take place in actual reality. This is something that human beings cannot comprehend.</p>
<p>According to practical common sense, there is no way that this pass could be crossed. Nevertheless, since Moses was already determined, with a heart yearning to fulfill the one will even at the risk of his death, he passed through the condition of a test set up by God and Satan. In this way, Moses, who became convinced of the transcendent existence of God and performed more than ten miracles in the palace of the Pharaoh, was an unprecedented adventurous revolutionary on the universal scale. You must understand this. Similarly, Moses did not succumb to anyone&#8217;s opposition. With transcendent faith toward the will, he led the 600 thousand Israelite people out of Egypt. When you look at this, you should realize that the whole life of Moses was a path of transcendent adventure.</p>
<h3>Jesus Prepared Himself for an Adventurous History</h3>
<p>Moses came as the representative of the restoration of a people. After Moses, Jesus came as the one with the mission to restore the world. Jesus knew that during the 4,000 years of history, countless prophets and sages had lived a lifestyle that transcended their practical reality for the sake of accomplishing the will of God. What is more, he felt to his bone marrow that he himself was indeed the one who was responsible for completing the will that the prophets and sages could not fulfill when they had participated in the dispensation of God.</p>
<p>After reflecting on history, Jesus realized that even up to his time, the countless prophets and sages had resentment and grief and that the dispensation of restoration had not been consummated. Therefore, he made a firm determination to bring this to pass.</p>
<p>He was truly determined to walk through the course of transcendent adventures for the sake of pioneering the course of 4,000 years. You must understand that Jesus was someone who had the determination to walk the course that summed up all the hazardous courses of the saints and sages.</p>
<p>Because Jesus was born with the mission to bring the hazardous history on the universal level to an end, from the moment of his birth, he walked a path of adventure. Indeed, his whole life was one of transcendent adventure. What is more, in the end, even the path of death that hung Jesus on the cross was a path of adventure that transcended reality.</p>
<p>Then what was the foundation of the life of Jesus? It was a life that was to bring to full consummation the 4,000-year history and bring to an end the danger-ridden course where God&#8217;s resentment was deeply rooted. It was a transcendent, victorious life not found before in this world. It was a life that sought to lay a new, victorious foundation.</p>
<h3>The Heart of Obedience of Mary and Joseph</h3>
<p>What you must understand now is that Jesus was born through the body of Mary. What fate would have befallen the providence of God if there had been no one like the holy mother Mary for Jesus, who had to come to live an adventurous life? If there had been no one like the holy mother Mary, in other words, had there been no woman of Heaven, Jesus could not have even been born. If there were no foundation of adventure-undertaking sacrifice like Mary&#8217;s, then the birth of Jesus could not have taken place. Jesus had to pass through a hazardous course to be born with a new life.</p>
<p>When the angel appeared before the virgin Mary and told her, &#8220;You will be pregnant, and you will bear a son,&#8221; Mary answered him, &#8220;I do not know any man, so how could this be?&#8221; The angel answered again, &#8220;God, who is omnipotent, has chosen you.&#8221; At that time, Mary replied, &#8220;Lord, I am a humble servant, so do as You will.&#8221; These words embodied the universal adventure.</p>
<p>Though Mary knew that according to the laws of her time, an unmarried woman with a baby would be stoned to death immediately upon discovery, she transcended the environment of practical reality and said, &#8220;Lord, do as You will. I am only a humble servant, so do as You will. I am Yours even if you kill me or even if I meet my doom. Please do as You will.&#8221; Heaven gave birth to Jesus because there was a substantial, living sacrifice, Mary, on earth.</p>
<p>This is not all. Even in the life of faith that you are leading, there are many hazardous paths of which you are not aware. Joseph, who received a revelation about the pregnancy of his fiancée, Mary through a dream, tried to sever his relationship with her because of many humanistic difficulties. The news that his fiancée was pregnant caused him much humanistic pain and anxiety. Joseph tried to save Mary, taking responsibility for all the things that had happened. That was not an easy thing. It transcended reality.</p>
<p>Therefore, you today have the mission to walk the path that Jacob and Joseph walked, and to walk even the paths that Jesus and Mary walked. Accordingly, you must be aware of the fact that before you lies the transcendent scene, the hazardous pass that must be crossed by transcending practical reality.</p>
<h3>Jesus Walked the Path of Transcendent Adventure<br />
from the Moment of His Birth</h3>
<p>People could not recognize Jesus, who contained within his heart the sorrow of the 4,000-year history, and who was determined to offer himself up as the sacrifice even at the risk of his life. People did not realize that he was the Messiah, the savior of all humankind. When we look at that, we can realize that the life of Jesus transcended reality beginning from his birth, that he lived a life of new, ideal adventure. You must understand that today this remains as the incomplete will that is being sought after in the time of the Lord of the Second Advent.</p>
<p>Looking at the life of Jesus, he was concerned about the providence from the time he was growing up in the family of Joseph and Mary. His younger brothers (and sisters) reproached and accused him. Joseph did not have the same heart toward Jesus in Jesus&#8217; thirty years of life as he did initially. Joseph loved his own children more than he loved Jesus. You must understand that this is the reason Jesus could not have a family environment that was socially acceptable at the time.</p>
<p>The life of Jesus, in which he lived as a stepson and eventually died on the cross, transcended reality in all of its aspects. As he encountered all kinds of troubles in his family environment, he quietly overcame them all. His last work, when he appeared with the providence and finally proved that he was the Messiah of all human beings, was also counter to reality.</p>
<p>Because Jesus surpassed the realm of laws, which had been established as the creed of Judaism through a long history, and superseded it with a new gospel of Heaven, wherever he went and wherever he resided, he was not welcomed. Driven out by his family, John the Baptist, and Judaism, he did not have any place upon which to rest. Nonetheless, though he had no place to rely on, he did not look for a source of comfort.</p>
<p>Jesus, who understood the will of God, proclaimed the gospel of the New Testament. Initially, when John the Baptist testified to Jesus, there came into being an environment in which all the Jewish priests and officials could have recognized him. Yet as Jesus walked the three-year course of his public ministry, Jesus&#8217; position gradually declined until eventually only fishermen and women of little importance followed him.</p>
<p>For Jesus, who had to manifest the ideals of God, the promise had to be eternal and the will had to be eternal, but in reality, he could not find them no matter how hard he tried. You must understand how incomparably miserable the heart of Jesus was at the time he gathered a crowd of five thousand on an empty hill and offered prayers of grace for them, and also when he was praying desperately in front of the tomb of Nazareth.</p>
<p>During the 4,000-year history, countless prophets and sages led adventurous lives with bold determination and swallowed internal agony for the sake of God&#8217;s will. Yet none even came close to the sorrow of Jesus. Jesus had to penetrate through the bitter and grievous heart of the 4,000 year history and rise up to console God&#8217;s heart of internal anguish.</p>
<p>The people who were following Jesus were not the kind that the Jewish people would welcome. They were not ones that the believers of Judaism recognized. Jesus had to walk a path that no one welcomed in the social and religious realms. Wherever he went, he could not find a free environment to stay in.</p>
<h3>The Bitter Heart of Jesus</h3>
<p>When Moses was leading the multitude of 600 thousand, he was blocked in front by the Red Sea. Behind him, the chariots of the Pharaoh were rushing toward them. On behalf of the 600 thousand people who were afraid of dying, Moses confronted the situation head on with the unwavering belief that he could prevail in that trial of death. You must understand that by persisting on that path, he could have sacrificed the multitude of 600 thousand.</p>
<p>The same thing is true when Jesus could feed the crowd of 5,000 with a handful of fish and bread. Looking down upon the countless crowd spread across the hill at sunset, Jesus&#8217; heart was, in practical terms, a heart that could not be found in anyone else on earth. Truly, it was a heart of great adventurous spirit that should be restored back to Heaven. Because Jesus cried out with this kind of heart, he could cause miraculous works of re-creation.</p>
<p>We must fathom Jesus who had an adventurous birth, Jesus who walked hazardous paths in his life, and Jesus who set the standard of an adventurous spirit even when he was at last nailed on the cross. When we look at that, Jesus did not lead an insignificant and bland life. It was not a polite and fashionable lifestyle.</p>
<p>You who have faith must re-examine yourself and match your life to the life course of Jesus. If you have the desire to become the bride of Jesus Christ, then you must understand his life from the moment of his birth through his thirty years of adventurous life to the hill of Golgotha. You must understand his life of humiliation and adversity to the fateful path of the cross, the hazardous path of death.</p>
<p>Indeed the life of Jesus began as an adventure and ended as an adventure. Every hour, we must feel deep within us the agonizing heart of Jesus who came as the bridegroom but had to walk the lonely path of death: Jesus who passed away for our sake; Jesus who died to save us.</p>
<p>If there were a gift that you could give to Jesus in these last days today, what would it be? It would be possessing the anxious heart of Jesus Christ who passed through the adventurous course at the risk of his life and becoming the most remarkable sacrifice that cannot be found any other place in the whole world and universe: the unique offering of universal adventure.</p>
<p>Accordingly, you must now understand the bitter heart of God, who has traveled through the historical course up to now and who has risen from the most lowly position. You must lead your life with the determination to die for the sake of the will. Think about it. If Jesus Christ, who died for the sake of earth condemns the earth, then there is no one who has the right to condemn it more severely.</p>
<p>However, Jesus did not come for his own sake. First, he came for the sake of history, for the sake of the Jewish faith and the Israelite people. He came for the sake of the disciples who were to follow him. On a larger scale, he came for the sake of the people, the nation, the world, and the universe. This is how he lived his life. Even his death was not for his own sake.</p>
<p>Yet who remained faithful to the path that Jesus walked? In the pass of death, he was betrayed by his beloved disciples. He was left alone to take responsibility for everything. Think about it! If he were going to become bitter and hold a grudge against the earth, then even if he were to weep ceaselessly, pounding the earth, he would not have been able to fully resolve the resentment of the thirty years. There was no way that he could be compensated for the ordeals that he suffered. On the contrary, Jesus was concerned that humanity would suffer under the yoke of Satan. With a heart of compassion, even in the moment of death on the cross, he prayed for the sake of the Jewish people who betrayed him, the disciples, and humanity who betrayed him. Because he was a man of sorrow, he could become their friend even when the ancestors of this earth appealed on the basis of the 4,000 year history and all of humankind. He could pray for the sake of the people who opposed him and the enemies who struck him. Such a thing had never even been heard of in the 4,000 years of human history. Moreover, you must understand that this was the work of universal adventure done to dismantle the wall of sin rooted deeply in heaven and earth.</p>
<p>If Jesus is the king of all kings, then for you to become the queen of this king, you must believe in his promise. Without fearing death, you must entrust everything to the will and lead your life.</p>
<p>Jesus walked this kind of path. The life of Jesus was this kind of life. The hope of Jesus was living for the sake of the will and dying for the sake of the will in that manner.</p>
<h3>We Must Walk the Adventurous Path<br />
Following the Examples of<br />
Our Ancestors and Jesus</h3>
<p>Then what is the task that lies before us? What is that which we must be aware of? We must understand Jesus, who solicited for blessing to fall upon humanity even at the moment of death, and who took away with him all the internal sorrows that penetrated deeply into his bitter heart.</p>
<p>Among the people who believe in Jesus, there are many who pray to the Father that He will grant blessings to them. Before beseeching for blessings, you must first understand the grief that is immersed deep inside His heart. Not only that, you must even understand the life of Jesus and the course of crucifixion. You must understand today that there was deep sorrow behind the hazardous course, which humankind is not aware of and only Jesus and God understand. You must fathom Jesus&#8217; heart of internal sorrow that he could not speak about.</p>
<p>By doing so, you could say, &#8220;Lord! I will resolve all Your resentments and those of history. Please prod us on. Please guide us to fulfill the will that You hoped to realize through all the people of history. Let us not fall down but rise up as venturesome sacrifices who can supersede the universal history and eradicate the bitter grief that countless prophets and sages have left behind them.&#8221;</p>
<p>The hope that we have now is in accomplishing the will that Jesus Christ left behind on the earth as the remaining task. It is our fate to bring new fulfillment to the will of Jesus Christ. History flowed down through the hazardous course of the individual, family, society, nation, and the world. Therefore, when an individual among Christians attempts to accomplish the will, hazardous elements are added to that individual&#8217;s path. It is the same for the family, society, nation, and the world. You must understand that such an adventurous gateway lies before you. Accordingly, you must be able to offer yourself as a sacrifice of adventurous spirit on behalf of your venture and life, which stand in front of the forked road of life and death and the place of universal judgment. You must offer it on behalf of the life of the people and the humanity of the world.</p>
<p>What is more, you must be able to copy the life courses of the prophets and sages and Jesus Christ and apply them in whatever environment or time you might live in. Moreover, no matter who at what moment in time sets forth any condition, you must have the determination and audacity to step forward and appeal to the whole universe and proceed forward as the representative of the will of Heaven.</p>
<h3>We Must be Offered as the Venturesome Sacrifice</h3>
<p>Today, when the day of the Second Advent is near, you must carry on the one venturesome, universal task that remains as the last remnant of the 6,000 year history. If that task is universal, then you must also become a universal being. You must understand that only when you step forward with adventurous internal determination will you be able to fulfill that task.</p>
<p>If the will of God is fulfilled apart from the life of faith that we live, then how would it be? Until now, the history of God has gone forward through the venturesome course that transcended practical reality.</p>
<p>Only when you pass through such a universal and venturesome gateway can you lift high the flag of ultimate victory and go before the Father to sing the victory song. Then you can represent the position of the universal bride. Moreover, you will not be subject to any condition when this takes place and only then. Even if there are persecutions and humiliations in some environment, you can still become the prince of Heaven who sets the standard of transcendent adventure. You must understand that only the ones who have the determination to become this kind of prince can bear the ultimate responsibility for the will of God&#8217;s dispensation and become the bride of Christ who can manifest glory.</p>
<h3>Prayer</h3>
<blockquote><p>At this moment, when the last days of history are shedding light in various places of heaven and earth, even if we are experiencing grief, that one ray of light is shining upon our minds and bodies. Father, please be present with those who have the mark of life, the power of life. Please manifest Your mighty works so that the faithful Christians of today can walk that universal adventurous path that remains before them.</p>
<p>Father! The life of faith that we have led until now was centered on ourselves. When did we decide to live a venturesome life for the sake of Jesus and Heaven? When did we pray before the Father, &#8220;I will become an adventurous sacrifice&#8221;? If there are no such people among the sons and daughters who have gathered here today, Father, please lead them to repent. Please do not allow them to become abominable people who do not fear the awe-inspiring dispensation of Heaven. Father, we entreat from the depth of our hearts that You will allow us to pray earnestly before You to represent the universe and to walk a venturesome path.</p>
<p>Father, Your sons and daughters who have gathered here have been starving for the life that transcends reality. Their life has not been normal. If one were to use the word &#8220;fanatical,&#8221; there cannot be a more fanatical life than theirs. However, when we evaluate it based on the past, the present, and the future, then that cannot be considered an untoward lifestyle.</p>
<p>Please lead us not to become cowardly ones who betray the Father on this path of universal agony and adventure. Father, please extend Your hands of power. Please allow us to understand that the path Jesus walked is the model course we must travel. Passing through the works of resurrection and rebirth, let us cultivate a new center of life. Father, we wish with utmost earnestness that You will let us secure a foundation for the new life and walk the course that heaven and earth can recognize, after gathering new strengths.</p>
<p>Please let the words spoken today become the words of truth that give life to the sons and daughters who have gathered here and penetrate deeply into their flesh and bone. Guide us to offer ourselves as the eternal sacrifices of victory. Through them, please set the conditions of appeal to resolve the resentment of Heaven. Soliciting with deep earnestness, I prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html" title="Permalink to The Providence of God and the Nature of the Adventure That Transcends Reality" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html" rel="prev"><span class="meta-nav">&laquo;</span> Behold the Little Lamb of God Who Is Bearing the Sins of the World</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html" rel="next">Those Who Will Possess the Kingdom of Heaven of Hope <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,285 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Those Who Will Possess the Kingdom of Heaven of Hope &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-764 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-764" class="post-764 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Those Who Will Possess the Kingdom of Heaven of Hope</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T10:35:53+01:00"> <a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T10:35:53+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Those Who Will Possess the<br />
Kingdom of Heaven of Hope</h3>
<h3 style="text-align: center;">December 16, 1956<br />
Headquarters Church, Seoul, Korea</p>
<p><em>Matthew 11:1-15 </em></h3>
<p class="chapter-2" style="text-align: center;"><em><span class="text Matt-11-1">After Jesus had finished instructing his twelve disciples, he went on from there to teach and preach in the towns of Galilee.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23461a" data-link="[&lt;a href=&quot;#fen-NIV-23461a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+11:1-15#fen-NIV-23461a">a</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23462" class="text Matt-11-2"><sup class="versenum">2 </sup>When John, who was in prison, heard about the deeds of the Messiah, he sent his disciples</span> <span id="en-NIV-23463" class="text Matt-11-3"><sup class="versenum">3 </sup>to ask him, “Are you the one who is to come, or should we expect someone else?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23464" class="text Matt-11-4"><sup class="versenum">4 </sup>Jesus replied, <span class="woj">“Go back and report to John what you hear and see:</span></span> <span id="en-NIV-23465" class="text Matt-11-5"><span class="woj"><sup class="versenum">5 </sup>The blind receive sight, the lame walk, those who have leprosy<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23465b" data-link="[&lt;a href=&quot;#fen-NIV-23465b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+11:1-15#fen-NIV-23465b">b</a>]</sup> are cleansed, the deaf hear, the dead are raised, and the good news is proclaimed to the poor.</span></span> <span id="en-NIV-23466" class="text Matt-11-6"><span class="woj"><sup class="versenum">6 </sup>Blessed is anyone who does not stumble on account of me.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23467" class="text Matt-11-7"><sup class="versenum">7 </sup>As Johns disciples were leaving, Jesus began to speak to the crowd about John: <span class="woj">“What did you go out into the wilderness to see? A reed swayed by the wind?</span></span> <span id="en-NIV-23468" class="text Matt-11-8"><span class="woj"><sup class="versenum">8 </sup>If not, what did you go out to see? A man dressed in fine clothes? No, those who wear fine clothes are in kings palaces.</span></span> <span id="en-NIV-23469" class="text Matt-11-9"><span class="woj"><sup class="versenum">9 </sup>Then what did you go out to see? A prophet? Yes, I tell you, and more than a prophet.</span></span> <span id="en-NIV-23470" class="text Matt-11-10"><span class="woj"><sup class="versenum">10 </sup>This is the one about whom it is written:</span></span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Matt-11-10"><span class="woj">I will send my messenger ahead of you,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-11-10"><span class="woj">who will prepare your way before you.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23470c" data-link="[&lt;a href=&quot;#fen-NIV-23470c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+11:1-15#fen-NIV-23470c">c</a>]</sup></span></span></span></em></p>
</div>
<p class="first-line-none top-05" style="text-align: center;"><em><span id="en-NIV-23471" class="text Matt-11-11"><span class="woj"><sup class="versenum">11 </sup>Truly I tell you, among those born of women there has not risen anyone greater than John the Baptist; yet whoever is least in the kingdom of heaven is greater than he.</span></span> <span id="en-NIV-23472" class="text Matt-11-12"><span class="woj"><sup class="versenum">12 </sup>From the days of John the Baptist until now, the kingdom of heaven has been subjected to violence,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23472d" data-link="[&lt;a href=&quot;#fen-NIV-23472d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Matthew+11:1-15#fen-NIV-23472d">d</a>]</sup> and violent people have been raiding it.</span></span> <span id="en-NIV-23473" class="text Matt-11-13"><span class="woj"><sup class="versenum">13 </sup>For all the Prophets and the Law prophesied until John.</span></span> <span id="en-NIV-23474" class="text Matt-11-14"><span class="woj"><sup class="versenum">14 </sup>And if you are willing to accept it, he is the Elijah who was to come.</span></span> <span id="en-NIV-23475" class="text Matt-11-15"><span class="woj"><sup class="versenum">15 </sup>Whoever has ears, let them hear.</span></span></em></p>
<h3 style="text-align: left;">
Prayer 1</h3>
<blockquote><p>Father of love! Father, who has embraced insignificant us and shown concern for us in every way in the past week, please let us not live each day according to our own will. When we think about Your grace, which leads us away from speaking words according to our own inclinations, Father, we are truly grateful.</p>
<p>Today these young faces have come before the Father. We know that first, our minds and bodies must become sacrifices like the gold, frankincense, and myrrh that the three wise men offered. Please allow us first to offer our minds and bodies. Please lead us not be become abominations before the holy shrine. Beloved Father, this is our most sincere desire.</p>
<p>We know that the Father who has exerted Himself to gather these people has passed through a doleful course of 6,000 years. We understand that since each of us has been called upon first to come before humanity with a great mission, each of our actions and struggles must manifest joy on behalf of the whole faith of Heaven.</p>
<p>As we understand more about the good purpose for which we have been chosen, and as we think more about the fact that You have selected us, the unworthy ones, we cannot but become contrite about our lacks before You. We have set aside all of our own mentalities, concepts, and subjective opinions and lie prostrate before the Father. Father, please hold us tight.</p>
<p>The wave of death has surpassed time and is in motion. We know that the reason the Father laboriously sought us and granted us grace is not because we merit it. We also know that the sorrow of the Father will continue until the day that Christ returns to earth.</p>
<p>Father, please take charge of the whole. Please completely reign over our bodies and minds. Do not let this meeting be a gathering in which just human beings come together. Father of love, we pray from the depth of our hearts that You will inspire us to comfort the heart of the Father who is clinging onto the 6,000-year history. We pray that the holy Trinity will dominate our minds and bodies so that we can unite with the countless men and women of faith and, as one sacrifice, offer a full bow of joy.</p>
<p>Father, please have sympathy for these thirty million people. We know that You have toiled for a long course of history to love these people. We know that when You were selecting us to manifest the will, You went through a lot of trouble that no one knows about.</p>
<p>We know that there are children of Yours who, having built the altars and having cultivated a deep relationship with the Father, are making an appeal on behalf of the people. We offer our gratitude to them. Please let a new chapter of the dispensation open before them and please give rise to great impetus. Beloved Father, we pray from the bottom of our hearts that You will groom us as the revolutionaries who can single-handedly take on the responsibility toward Heaven on behalf of the Korean people.</p>
<p>We know that the grief and bitterness of the people have penetrated deeply into Heaven. We know that the resentment of humanity on earth has also soaked through Heaven. Since we know that Heaven is lamenting because there is no one who can become the sacrifice to supersede this sadness in Heaven, please mobilize the children who have gathered here to solicit the Father for the sake of eradicating the resentment rooted deeply in this earth and in this whole universe. Father, we earnestly hope that You will allow us to become the sons and daughters who can step forward to face Satan and fight on Your behalf.</p>
<p>Please allow our minds and bodies to move in harmony and join in union centering on the one will and to sing praise to the grace of the Father. Please allow this to be an hour when we offer our full bows of gratitude for the grace of liberation.</p>
<p>There are sons and daughters who are lifting high the beacon of new words and carrying on the fight in the countryside. Father, please be with them wherever they stay. There is nothing else that they can rely on except this earth. There is nothing that they can lean on but the grace bestowed by Heaven. Father, since they have entered the course of universal fate that will force them to fight with countless enemies in the face of their mockery, please prod them.</p>
<p>Father, we wish with utmost sincerity that today You will again bestow the same grace of Heaven to overflow the minds and bodies of those who have gathered here. There are also those children who stand in lonely places to pray with concern on behalf of the will. Please guard their souls.</p>
<p>We earnestly request that You will grant the grace that You have planned to command and permit. Please dwell in this place during this hour. I prayed in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Father, You have lived through ages and centuries and have suffered to guide the dispensation until the last days. Please allow us, who wish the dispensational will of the Father to quickly be accomplished on earth, to take responsibility for those toils of the Father on earth.</p>
<p>Father, we pray from the heart that You will lead us to become the proud sons and daughters who can inherit the heavenly mission centering on the Father&#8217;s shrine and fight with Satan on earth for Jesus. We have read with reverence the words that You have given us today. We know that although John the Baptist, who came with a historic mission, fulfilled his mission of testifying to Jesus, he could not fulfill his mission of attending Jesus according to Heaven&#8217;s expectations.</p>
<p>Please let this congregation that has gathered before You, sons and daughters of Yours who lie prostrate, reflect on themselves in repentance. Allow them to cleanse themselves before the Father. Please lead them to stand before the multitudes and exert themselves to fulfill the mission of God in the end of the century on His behalf. Please let them be loyal subjects who are obedient toward the heavenly mission that Heaven is demanding in this era and to respond faithfully to Heaven&#8217;s call.</p>
<p>The time for the dispensation is limited, yet humankind, ignorant of this fact, makes unlimited wishes. There are many pitiful people who do not understand that life and death are being decided in this moment today. Father, please let the children who have gathered here pay heed to the circumstances created by the testimony of John the Baptist.</p>
<p>Let us now open our hearts and build the internal altar of Heaven. Please raise us as the sons and daughters who can offer ourselves with no hesitation as the sacrifice triumphant over Satan. We understand that Heaven is looking for confident and intrepid soldiers and shuns those who kneel before the enemies in servility and cowardliness. Allow Your children who have gathered here to become the brave soldiers of Heaven who can even throw away their own lives for the sake of the will. We know that the time has come when these daring soldiers are needed.</p>
<p>Just as John the Baptist, who lived for heavenly principles, and his followers were engulfed in the fire of the internal heart of Heaven and confronted the whole corrupt Jewish faith to reveal a new truth, please manifest the light of compassion and love before these people through us. Please do not withdraw Your extended hands of the dispensation.</p>
<p>Father, please bless the countless altars that are being built for the sake of this people. Please let every place be full of sons and daughters who cling onto the established denomination and build a concealed altar to become a sacrifice that prevents corruption.</p>
<p>Father, You have selectively called upon these lonely ones from among many people. As we follow the path because we have no other choice but to do so, we realize on our own that it is indeed a difficult path. Father, we know that we have to pioneer the one path of conflict with the fighting spirit of a pioneer and march forward as a fighter for Heaven. Please embrace these young sons and daughters who have kneeled before Your holy presence.</p>
<p>Since the path they are taking is the path of the Father&#8217;s will, guide them to brave the fields of thorns and the rugged mountains and the high and steep peaks. Even if their bodies are torn and wounds are inflicted on them, please embolden them to pioneer everything, centering only on the will. Let the grace of Your counsel be the only thing that blossoms in their hearts.</p>
<p>This is not the time that we need many words of truth. It is the time when we must move hearts to reach the emotion of Heaven. It is the time when our minds must be inspired to forge unity and harmony with the whole membership centering on the will of the Father. Father, I pray from the depth of my heart that these children of Yours who lie prostrate before You will prepare themselves inside and out to rise as the original human beings who can represent Your heart.</p>
<p>Father, please consider with compassion these pitiful ones who are following this lonely path. Please forgive all faults of the people, and forgive the fact that they have failed to fulfill the mission that You have entrusted in them. Please encourage the sons and daughters of the Father who, unlike others, have gathered here. Since You have placed them on the front line, please do not let them become exhausted in the fight.</p>
<p>Father! Please grant unchanging faith until they can fight for the will at the risk of their life and usher in that day of victory. Like a bomb thrown into the enemy camp, let these children secure the one immutable center. Disregarding the environment, let them move forward to explode before the enemies for the sake of the victory of the Father&#8217;s will. Father, we pray with the most sincere heart.</p>
<p>We have come forth with the words of truth. Father, please be with us, and lead us to move centering on one heart. Please enable us to offer all that we have, purifying ourselves as we become concerned with the will of Heaven and reflect on the will of the Father. If humanistic elements, mentality, and concepts that the Father cannot forgive are controlling our lives, Father, please strike with Your might and bring on miraculous works with Your power of re-creation. Soliciting earnestly that this may be a joyful hour when we can frankly reveal ourselves before the Father and lie prostrate as humble sacrifices, we entrust everything to You. Please govern according to Your will. We offered these words in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon that I want to join with you in reflecting upon is <i>&#8220;Those Who Will Possess the Kingdom of Heaven of Hope.&#8221;</i> I will speak on this topic.</p>
<p>When we look at God&#8217;s ideal of creation, although God also hoped for the kingdom of Heaven in the invisible world, He created all things really hoping for the concrete kingdom of Heaven in the substantial world where He could dwell. You already understand this very clearly. In other words, He created the world of creation so that as He created the kingdom of Heaven in heaven and the kingdom of Heaven on earth centering on Adam and Eve, He could enjoy the glory of both the spiritual and substantial kingdoms of Heaven.</p>
<h3>The Results of the Ideals of the<br />
Creation of God and the Fall of Humankind</h3>
<p>You also know very well that due to the mistakes of humankind, in other words, due to the fall, the kingdom of Heaven in heaven and the kingdom of Heaven on earth that God yearned for disappeared without a trace. He created the kingdom of Heaven in heaven and the kingdom of Heaven on earth not for Himself but for the sake of humankind.</p>
<p>The purpose of God&#8217;s creating the universe was to create the two kingdoms of Heaven, so that with the building of the kingdom of Heaven on earth centering on Adam and Eve, human beings who lived in the earthly Heaven can enter the eternal world of the heavenly kingdom in heaven and live there. Nonetheless, with the fall of Adam and Eve, the spiritual kingdom of Heaven and the substantial kingdom of Heaven on earth disappeared out of sight. The world in heaven and the world on earth have become worlds of sorrow in which Satan can freely bring accusations to God.</p>
<p>After the fall, earth and heaven, has become the sphere of Satan&#8217;s activities, covering all the way up to the feet of God&#8217;s royal throne. Consequently, Satan has been accusing the human beings of the spiritual and the physical worlds. The men of faith today do not understand clearly that Satan has been in action with such great power. You must feel to the marrow of your bones that when the world of creation could not fulfill its original destiny of singing and rejoicing about the glorious ideals of God centering on Adam and Eve but was completely transferred over to Satan because of man&#8217;s mistake, this caused great anguish in the Father.</p>
<p>God has been conducting the dispensation of restoration in which He has tried to forge a relationship with humans through the angels so that He can restore this earth, which was defiled. God has been carrying on the dispensation of restoration to relate again with humankind who stand in the position of having betrayed the sacred God because of the fall. Humankind has fallen so far as to be below all things. To seize back His reign over human beings whom Satan has controlled and accused, He has laid down the bridge and has carried on the work. This came to pass through the Old Testament and the New Testament and is being continued even today.</p>
<h3>The Dispensation of the Old Testament Era</h3>
<p>The Old Testament era was the time when God had to perform the works personally and associate with humans with His glory. Yet because that dispensation could not be completed, possessing sadness in His heart, He had to pioneer the path through which He can relate with humankind with the assistance of the angels. Such is the history of the dispensation of the Old Testament era.</p>
<p>In the Old Testament era, God conveyed His will through Noah and Abraham, who were chosen as the central figures in the position of a servant. Father chose the family of Abraham and the people of Israel to elevate humankind in this land of darkness to the position where He could associate with them. Through the Israelite people, humankind gradually pioneered the path through which they could approach God.</p>
<p>In this way, Heaven set the one standard by which He could work through the angels. Then, by setting the condition of having completed the will of God in respect to Adam and Eve, He has been exerting Himself for 4,000 years until the coming of Jesus to build the victorious foundation on which human beings can associate with Him directly. You have to understand this.</p>
<p>Jesus was the person chosen to raise humankind from the position of a servant to that in which the son can deal with them. The New Testament is the gospel given for the same purpose. Because of this, since the time of Jesus, humankind was in the position to relate with God through Jesus. Humankind should have received the love of God directly, yet they could not do so. Therefore, throughout the 6,000- year history until today, what we wished for was to receive the love of the son and then go further to receive the love of God.</p>
<p>By receiving the love of the son and realizing the ideals of creation, you are to become the substantial sons and daughters of God who can share both the joy and sorrow of God, who has been seeking to rejoice centering on love. This is not to be done just spiritually, but these bodies must also be able to receive the love of God directly. You must understand that such a mission fell on our shoulders because of the fall of man.</p>
<h3>The Mission of Jesus and<br />
the Role of the Holy Spirit</h3>
<p>Jesus had to come to this earth and guide humankind to the position where they can receive the love of God. What is more, Jesus was to elevate them to the same position of a son as himself, both spiritually and physically, and receive the love of God. Jesus came to earth with this kind of mission, but because the people did not believe in him, he could not complete the mission of elevating humankind to the position where they can receive the love of God both spiritually and physically. He pioneered only until the point where God can call us sons and daughters spiritually.</p>
<p>Then what is the ultimate purpose of the dispensation of the restoration of God? It is establishing one standard by which the people who exist on earth as the substantial beings of both the spiritual and the physical can live while receiving the love of God. The one who has been at work to fulfill this purpose during the 2,000 years since Jesus is the Holy Spirit. The Holy Spirit has been at work since the death of Jesus until now, but she is not to personally establish the dispensational foundation upon which the will of God&#8217;s ideals of creation can be perfected. Rather, she plays the role of a bridge by means of which we can go before Heaven. You must understand this clearly.</p>
<p>Then what kind of people are the ones who can live the life-style of the kingdom of Heaven on earth? What kind of spirits are the ones who can live in the eternal spirit world, in the kingdom of Heaven in heaven? You must understand that the kingdom of Heaven on earth is the dwelling place only for the people who have become the victors of harmony centering on the ideals of love while they were receiving the love of Jesus, the Holy Spirit, and the Father and living with the Father on earth. The eternal kingdom of Heaven in heaven is the place where only this kind of person can go.</p>
<h3>The Qualifications to Become the Citizens<br />
of the Kingdom of Heaven</h3>
<p>When we examine the standard of God&#8217;s creation, such a place is the kingdom of Heaven of hope. If we recognize this, then we who are alive today must reflect in which realm we desire the kingdom of Heaven of hope, which is the purpose of God&#8217;s creation.</p>
<p>In Revelation 14:1 it is written, &#8221; . . . the Lamb standing on Mount Zion, and with him 144,000 who had his name and his Father&#8217;s name written on their foreheads.&#8221; The Christians of today&#8217;s world wish for the standard of heavenly grace represented as the bride and the bridegroom. They think that this is all there is to it. However, just as in the verse, &#8220;and with him 144,000 who had his name and his Father&#8217;s name written on their foreheads,&#8221; the problem is the name of the Father.</p>
<p>After you believe in the bridegroom Jesus and become qualified as the bride, you are not to remain only in the love of Jesus. Using that as a stepping stone, you are then to go one step further to receive directly the love of the Father, who could not love humankind personally for 6,000 years.</p>
<p>This is the whole purpose of the dispensation of God, and the purpose for which Jesus was sent and has been exerting himself for 2,000 years. Yet the men and women of faith today are ignorant of this fact.</p>
<p>When can we step beyond the position of bride and bridegroom and, as the triumphant and eternal substantial being, can create harmony on earth and in Heaven, the eternal kingdom of Heaven, centering on the love of the Father? You are to make a relationship with this kind of love. This is the purpose of Jesus Christ and the purpose for which God is conducting the dispensation.</p>
<p>Until now, you have maintained your faith wishing for the love of the bride and the bridegroom. Now you must hold the hands of Jesus and go before the Father to say, &#8220;Father, please relate with us as the ones who have fulfilled the will of the 6,000 years that You wished for. Father! Please love us directly.&#8221; You must understand that God&#8217;s dispensation cannot end until He can find this kind of person not in the spirit world, but in this substantial world. Because Jesus came to this earth and set the standard to secure the right for the love of spiritual sons and daughters, as long as the people on earth build a relationship with Jesus Christ and inherit that right of love in one harmony, there is no room for the accusations of Satan, who has been using the sins of humankind on earth as conditions to make accusations from the spirit world.</p>
<h3>The Toilsome Effort to Bring Complete Salvation</h3>
<p>Satan took away Adam and Eve, whom God had created. Since Satan took with him not only the spirit but both the spirit and body together, Heaven has raised us believers in the faith today to take back Adam and Eve in spirit and body, away from Satan, and then to open a new way for God to be able to love them personally. You must keep this in mind.</p>
<p>Jesus Christ came to this earth after setting up such a wonderful, cosmic creative center as a standard. Then where did Jesus Christ put the standard of the last fight? Since the believers of the faith following Jesus had received spiritual love only from God, Jesus put the standard as their being able to receive both loves, spiritual and physical. Since the hope is to receive both physical and spiritual love, Jesus, who dispensed spiritual salvation only, cannot enjoy complete glory in Heaven. Even in Heaven, he has to pray for humankind on earth.</p>
<p>Similarly, since the hope of Jesus Christ has not yet been realized on the earth, numerous spiritual beings in Paradise, along with the twelve apostles, are being mobilized with this hope as a standard, centering on Jesus. You must know this.</p>
<p>Today, the laborious accomplishments of the angels who were helpful in providential history have been left to us in the final days. Besides that, the laborious accomplishments of numerous disciples have been left to us. We today cannot but take the responsibility for all the accomplishments and conditions made because of their laborious work throughout history. We ought to be able to resolve the resentment of thousands upon thousands of saints, who labored and helped represent the will of God&#8217;s providence of the past and that of Jesus, including all spiritual beings in the spiritual world.</p>
<p>We who are facing the final days must receive Jesus Christ&#8217;s approval when we step forward as the representatives of the past history before God. We must also win the approval of the Holy Spirit. After you pass through the stage of approval by Jesus and the Holy Spirit, the triune God will decide whether you can move forward toward God. You must know that the history up to this stage is the providential dispensation of the New Testament.</p>
<h3>The Approval Stage,<br />
the Determination Stage<br />
and the Judgment Stage</h3>
<p>What is the approval stage? We can say that it is like the engagement step before marriage. What is the determination stage? We can say that it is the qualifying stage for us to become the bride before the holy Blessing. Then what is the last remaining stage? It is the judgment stage. It is the stage when God has the day on which He can declare to humankind, &#8220;This is an existence who can receive God&#8217;s love as an eternally unchanging, substantial being. This is my beloved, with whom I can share My joys and sorrows, and who I have wished and desired as the ideal of the creation.&#8221; God promulgates this to all the created beings by personally holding up His hands. This is the so-called judgment stage.</p>
<p>Though God has been carrying out the dispensation for 6,000 years until now, He has not yet had the day that He can judge on a cosmic level. The thing that God hands down on this day, having set such a day as a standard, is God&#8217;s judgment.</p>
<p>You have to pass this gate of judgment, and you must receive the blessing that God granted to Adam, giving him the authority to rule over all created beings. Then you have to step forward as worthy people of Heaven and declare individually, &#8220;Father, please love me. Please look at my accomplishments representing the historical condition. Since I understand about the will that Jesus aspired to accomplish and the will that the Holy Spirit and God desired to be accomplished, Father, please bless me.&#8221; Such a character has to appear on the earth in the final days.</p>
<p>Only after God raises a person and judges the person to be worthy will all created beings also understand that they must serve us as God&#8217;s true sons and daughters. Only after we make the relationship of true sons and daughters with God will Satan succumb.</p>
<p>To you who are facing such a moment in providential history, upon self-analysis, it is a question of what position you will be standing in. Firstly, you must be standing in a position to receive Jesus&#8217; approval, and then in a position where you can receive the approval of the Holy Spirit. If you reflect this against the providential history, the approval stage is the Old Testament Age, the decision stage is the New Testament Age, and the judgment stage is the age of the Second Coming.</p>
<p>Until today, history has been coming down vertically by passing through numerous different courses. However, now the time will come when history will start opening horizontally. We who are facing the dispensation of the judgment stage ahead, after having passed through the stages of approval and determination during the history of 6,000 years, must go forward passing through the history that has flown vertically and the end-of-the century horizontal history.</p>
<p>What does this mean? The history of God has been that of fighting against Satan. Although God has been fighting on against Satan so badly for 6,000 years, the fight has not been settled yet. Although numerous saints and sages came and labored, they could not fulfill the will on earth as God wished. You must welcome the moment when you can say that you have fulfilled the will of the numerous saints and sages who left without fulfilling on earth. Today in these last days, countless peculiar phenomena that you cannot comprehend will appear. There will appear a man saying, &#8220;I am Elijah.&#8221; Such a time will come. There will also appear a man saying, &#8220;I am Elijah, I am Moses, I am Paul,&#8221; or a man saying that he is Samuel. Why do phenomena such as these occur? It is because of the principle of restoration through indemnity. In other words, it is because we must restore fully through indemnity the will that those saints left behind.</p>
<p>Because they could not set up the victorious standard, despite their fight against Satan centering on God&#8217;s providential will in the course of restoration through indemnity, their mission has been passed on down to posterity. Accordingly, there will appear the people who take charge of their mission. Without knowing the facts, they will say that they are such providential figures as Paul and Elijah.</p>
<p>What we in these final days must understand is that as a substantial being, having our spirit and the body united into one, we must solely take on and pass through the whole of the approval stage dispensation and the determination stage dispensation of the 6,000 years, and the judgment stage dispensation. Only when you can accomplish this can you escape from the condition of Satan&#8217;s reproaches and sneers knotted into the course of history. Only then can you step forward before God.</p>
<h3>How to Get Through All Stages of Restoration</h3>
<p>Now, members of the congregation, believers of faith in the final days, must broaden their minds. Humankind on earth today must seek the ideal of the kingdom of Heaven, the infinite world of Heaven, created as our ideal. The will must not be sought through Jesus Christ in the spirit world, but through humankind on the earth. You must know this.</p>
<p>Jesus and the Holy Spirit reside in Paradise. Since they do not have physical bodies, they cannot fulfill the will of Heaven on the earth. Accordingly, God&#8217;s sons and daughters with substantial bodies cannot but establish the eternal will of Heaven on earth. They must also escape from all the conditions of Satan&#8217;s reproaches and sneers, which have been thrown at them throughout the course of history for 6,000 years.</p>
<p>While Abraham was making the three offerings: a heifer, a goat and a ram, and a dove and a pigeon, he cut all of them in two except the birds. Therefore, God could not receive the uncut ones. You should not repeat a similar mistake. You must pass through the gate of sanctification at the last. You must be able to sanctify your individual sins, in short, the sins that you have committed and the sins that you inherited, the sins of your lineage, and all the historical sins. You must step up and stand above them. Unless you do that, you cannot become the children who will fulfill the will of God and who will rule over all created beings.</p>
<p>You know very well about the history of restoration through indemnity. Today you are not existential beings existing for your own sake. Even though it is said that God deals with you individually and loves you, that love is not for the sake of yourself alone. It is a love God is granting for the achievement of the ancestors who labored during the providential restoration for 6,000 years. You must know this.</p>
<p>Today in the final days, upon receiving God&#8217;s personal voice saying that He loves you, or upon receiving a command, if you take it as an act of God&#8217;s love meant for your own sake, that would be a great mistake. You must know that it took 6,000 years for you to receive this. Therefore, the love is a historical one; it is in place because of the achievements in the history of 6,000 years. You ought to know this.</p>
<h3>The Value of Humankind in the Cosmic Sense</h3>
<p>Therefore, that existence must resemble God&#8217;s character and equip itself with the nature of love that can last throughout the course of the dispensation of the providential will. Based on this standard, God has been developing the providential history of struggle.</p>
<p>Jesus Christ came as the embodiment of love after the lapse of 4,000 years of providential, restorational history. He knew that God had set him up as a substantial being who could unite numerous religions and numerous tribes into one and fulfill his mission. Therefore, even when Jesus was preaching the gospel to the Jewish people, he was not spreading his own assertions. When Jesus preached the gospel, he did it as the substantial being representing numerous saints and sages who had labored for the past 4,000 years.</p>
<p>Jesus preached the gospel not as a mere act of the moment. He labored when preaching the gospel so that not only all the people at that time could receive God&#8217;s love, but further, that the people of the eternal future could also receive God&#8217;s love. Accordingly, now that humankind has been passing God&#8217;s providential will down eternally, the whole that is being passed down was started by one person, Jesus Christ. You ought to know this.</p>
<p>Each movement of yours is one that represents heaven and earth. For you to become God&#8217;s true son is the hope of Jesus and the Holy Spirit, and the hope of thousands upon thousands of saints in Heaven. They have been wishing for true sons and daughters to emerge on earth and establish a standard of victory. Also, they have been wishing for God&#8217;s true sons and daughters and true substantial beings to emerge who have established such a standard. By perceiving these facts, we must not think that any one of us is a trivial existence. From this standpoint, Jesus once said, &#8220;What good is it if you lose your life even after you&#8217;ve acquired the whole of earth?&#8221; You should know this.</p>
<p>Christians are said to lead a life of religious faith. You who are gathered here are said to have a religious faith! How much have you felt of the value in the cosmic view? I mean, how much have you realized that you yourselves are God&#8217;s unchanging sons? Jesus exclaimed with confidence, &#8220;I am God&#8217;s son,&#8221; and this is a motto that today&#8217;s Christians should model themselves after. Today, at the final moment of history, Jesus is seeking a person who can step up and say, I am God&#8217;s unchanging son, in the presence of God, or in the presence of Satan, or in the presence of any person. Jesus demands such an existence.</p>
<h3>&#8220;I Am God&#8217;s Son&#8221;</h3>
<p>During your religious life, you have tried to build a standard of life for several decades up to this point. However, God has been searching for a person who can take on the mission on the cosmic level and carry on the fight in the course of history, who can confidently say that he is God&#8217;s son. God is wishing for sons and daughters to emerge who can confidently make a vow and step forward in a dignified manner in the presence of God. God has been seeking a person who won&#8217;t be servile towards Satan&#8217;s blatant reproaches and sneers and who can stop an angel in Heaven and not try to push him away when he comes and who can easily stop Jesus and the Holy Spirit and not push them away when they come.</p>
<p>Jesus Christ died upon the cross as a sacrifice for the history of 4,000 years. He had an unchanging heart with which he could say, &#8216;&#8221;I am God&#8217;s son,&#8221; until the moment of his death, his body torn and stained with his own blood. Even when God denied him at the time of his death, Jesus&#8217; heart did not change, for he knew so well the meaning of the 4,000-year history of restoration. There had not been a son or daughter of God, fully, among all of God&#8217;s created beings until then.</p>
<p>What was that single standard Jesus had set, by which he could get up and move forward after he ran into grief and fell down again? It was his understanding that he was the son whom God could love. With this understanding, Jesus could overcome any difficulty and proudly win his battles. You also must know this.</p>
<p>What happened to Jesus Christ, who came to this earth with this hope and aspiration and had to fulfill them in the world of humankind? What was the meaning of this untimely crucifixion? No matter how much you bewail this, beating the ground and calling down curses, Jesus&#8217; sorrow will not be dissolved.</p>
<h3>The Reason God Abandoned Jesus<br />
and Jesus Did Not Change</h3>
<p>Throughout the long history of fallen humankind, because humankind has devastated God&#8217;s heart and has forgotten God&#8217;s will and has betrayed God, based on the principle of restoration through indemnity, Jesus was put in a situation where he was abandoned by God for humankind.</p>
<p>The reason that Jesus died on the cross saying, &#8216;&#8221;Oh, Father, why have You forsaken me?&#8221; was to indemnify the sin of humankind, who had betrayed and acted against God for 4,000 years from the time of our ancestors, Adam and Eve. Because humankind had abandoned God, based on the principle of indemnity, God had to abandon Jesus.</p>
<p>However, Jesus did not betray God. Even when thrown into Satan&#8217;s world, God&#8217;s son is still God&#8217;s son. Even when going into hell, God&#8217;s son is still God&#8217;s son. Jesus Christ labored throughout his life of thirty years having such a center in his heart and then died.</p>
<p>Every one of us today who believes in this Jesus must lead a life of faith so as to become the bride before Jesus, the bridegroom. You should be able to stand as God&#8217;s son in place of the 6,000-year history. You must know that Heaven is seeking a person who can reproach and sneer at Satan mercilessly before God.</p>
<p>The many saints who lived in the course of history until now are wondering why Jesus or even the Holy Spirit have to be subjected to Satan&#8217;s accusations. That is because the mission that was to be completed by a person with a perfected body and soul has not been completed yet.</p>
<p>Then when will this war that Jesus and the Holy Spirit have carried on for 2,000 years end? When will Satan&#8217;s reproaches and sneers against God end? In order for this to end, there has to emerge a person who has the same center in his heart as Jesus, who declared confidently that he was God&#8217;s son and successfully won over sin and Satan with a substantiated body for the 4,000-year history on earth. Only then can he repulse the Satan who has reproached and sneered at God for 6,000 years. Then the fight Jesus and the Holy Spirit and Satan have engaged in will be concluded. Christians ought to know this. This is the truth.</p>
<p>Jesus Christ in Paradise today still has the fate to save sinful humankind. Even while you take a break between prayers, Jesus has to pray on. The Holy Spirit, too, cannot take a break. God cannot take a rest. Similarly, they have marched on in the course of history without any break at all.</p>
<p>Now with a sense that we are God&#8217;s sons, we must become offerings who can pray, &#8220;The face of God, the face of Jesus, and the face of the Holy Spirit will be saved by me.&#8221; You have to save God&#8217;s face. You have to save Jesus&#8217; face. You have to save the face of the Holy Spirit.</p>
<p>God, who is in a sorrowful position where He cannot love humankind although destined by heavenly law to love them, was internally tied up by a condition like this. Only if there emerges such an existence of whom God can declare willingly, &#8220;He is my son, who is qualified for Me to be proud of in front of heaven and earth,&#8221; then Satan will not be able to reproach and sneer at Him.</p>
<p>As Jesus had the sense that made him say,&#8221; I am God&#8217;s son,&#8221; there must emerge saints who will take over the laborious work of Jesus and the Holy Spirit in these final days of the 6,000 year history and who can say, even upon facing the whole universe, &#8220;The will that God and Jesus Christ wish to be fulfilled is this: I am God&#8217;s son taking responsibility for history.&#8221; If the number of the saints who are trying to achieve this are many and if there are more saints like these in Korea than in any other country in the world, then Korea will become the central nation of the world.</p>
<p>Now we must know that God is seeking an existence who will take over the mission of God&#8217;s son and daughter and establish a day of victory before God and boast about it before Satan. God is seeking one like this.</p>
<h3>The One Whom God Is Seeking</h3>
<p>Though 6,000 years have passed in history, God has not been able to establish an existence whose body and spirit are united into one and declare before Satan, &#8216;&#8221;Since I am establishing My true son whom you cannot oppose, My true daughter whom you cannot oppose, you must submit.&#8221; Heaven is seeking such a person. To accomplish this, the Lord of the Second Advent is coming. People say that I am crazy because I speak like this. Yet I am the righteous one. They are not thinking what they should be thinking. This is the truth. You must know this. Today, after 6,000 years of history, we must become the person who will receive the authority from God to fulfill the 6,000-year historical mission and with that authority, help the Lord when he casts judgments.</p>
<p>Jesus knew himself that he was God&#8217;s son. Then what did he do? He fought for the sake of God&#8217;s will. &#8220;I am God&#8217;s son.&#8221; Jesus had the sense that he was God&#8217;s son that nobody knew about, that nobody declared. He could step forward confidently with the sense that he was God&#8217;s son and that he had taken over God&#8217;s work. There were many saints and sages in the course of history until today. However, there was no one who could say, &#8216;&#8221;I will take over all of God&#8217;s work,&#8221; except one. Only Jesus. That is why Jesus became the savior.</p>
<p>We of these final days must be able to step forward before God, who has been carrying on the dispensation of the 6,000-year history, saying, &#8216;&#8221;Since I am Father&#8217;s son, Father&#8217;s daughter, please let me take over the Father&#8217;s work for the Father.&#8221; Look at Jesus. He did not care whether he would fail or die when he was carrying on the Father&#8217;s work. You must not worry whether you fail or die. There is no condition. No condition! Look at Jesus. To subjugate Satan, he moved on, not caring about what happened to his body. This is the spirit of loyalty one should have as God&#8217;s son, and as a loyal subject who can take over God&#8217;s work. In that spirit, he sacrificed his life without hesitation to subjugate Satan.</p>
<p>In these final days, since we have inherited the work left by Jesus Christ who had God&#8217;s work in his charge, to subjugate Satan, we must be able to not be concerned whether we live or die. If a crowd of sanctified people emerges who know how to subjugate Satan and are willing to practice it, the world can be God&#8217;s world.</p>
<p>Only after you inherit God&#8217;s work as God&#8217;s son and successfully carry it out can you receive God&#8217;s love. You cannot win God&#8217;s love by fighting. You ought to know this.</p>
<p>God created all things to build a garden of peace and love. God created humankind to have a relationship amid joy. God did not create all things wishing that heaven and earth would become the battle ground where humankind and Satan fight. It deviates from the principle of heavenly law. Therefore, to raise humankind through loving, God lets the Holy Spirit carry it out in practice for God. Similarly, humankind can come closer to God through Jesus and the Holy Spirit.</p>
<p>If you only climb up towards Heaven praying, &#8216;&#8221;Oh, Holy Spirit! Oh, Jesus! Oh, God!&#8221; then you will not be granted grace. As the final days come near, since it is the time of God&#8217;s grace descending, Jesus will make his Second Coming.</p>
<p>Today the truth-seeking world is clearing the straight upward path. However, you must not expect only to climb up. You must be able to pass over the climbing stage depending on time and place, and come down again seeking grace and become persons who can fulfill the will of God.</p>
<h3>The Hill We Must Climb Over</h3>
<p>Now, since we seek the grace of Heaven and try to take over God&#8217;s work and be in the place of God centering on Jesus, God&#8217;s son, we must know why Satan has been fighting on against Jesus and the Holy Spirit. You have to know the ways to subjugate Satan.</p>
<p>Do you know what is the hill that we must climb over now? It is to subjugate Satan, who has been fighting on against God, Jesus, and the Holy Spirit. To do that, you have to know what the shield was that Satan used in the fight and what condition Satan set up to infiltrate. If we know about these, we can subjugate Satan naturally. Only after that can God say to you, &#8216;&#8221;My eternal son.&#8221;</p>
<p>Then what kind of existence is Satan? How does he look? I think there are many people who resemble Satan.</p>
<p>Before us there is the cosmic, fateful course that we must go through even after our death, if we do not succeed while living. Even if it takes hundreds of thousands of million of years, since my spirit does not die, there is a course that the spirit must go through for me. If we do not pass forward through this course alive in the eternal course of life, we must do it even after death. Even the past saints and sages went through this course for the sake of eternal life without being concerned about their personal problems.</p>
<p>When Jesus stood in the wilderness to fight against Satan, since one day&#8217;s fasting did not carry far enough, he had to fast for two days, for ten days, for twenty days, and for forty days. Your fate is like a fired bullet, like a fired bomb, a fate of no return. Jesus knew about this when he stood out; he could not return even if he wanted to. Everyone who joined the Unification Church, too, has stepped onto the course of no return. You have to keep this in mind.</p>
<p>Jesus was miserable when the wall of death stood before him. When the whole nation turned against him, when all of the people turned against him, when the disciples who were following him turned against him, he could not be miserable anymore. You must know that while others could turn around from being on the course of death, Jesus was in a situation where he could not turn around.</p>
<p>Today you are leading a life believing in Jesus and honoring the will of Heaven. If you lead the church, the nation, with such determination as this and plead for the sake of the world, you cannot but become God&#8217;s son or daughter. You must represent the will of God and carry on God&#8217;s work.</p>
<p>Though Jesus has gone to the spirit world, he is not resting. Even in the spirit world, when faced with suffering on the cross and with even more serious difficulties, he is fighting against Satan to save us and to save this earth. At this time, when such heavenly trials and fights are being carried on, you should have the spirit of saying, &#8220;You, Satan! If you want to come, come; if not, don&#8217;t. I will move on unchanged,&#8221; and not be afraid of the trials. Those kinds of people are God&#8217;s people, God&#8217;s sons and daughters.</p>
<p>Now we have to establish a family, centering on Father, as God&#8217;s sons and daughters, and establish a people, a nation and a world that Father can love. Further, we must establish Heaven on earth that is acceptable before God. This is God&#8217;s eternal will. By knowing all these historical facts, you can strengthen the defenses against Satan&#8217;s reproaches and sneering and, further, can subjugate Satan.</p>
<p>From the viewpoint of the ideology of creation, where is the person who has finally become a substantial being of mind and body, God&#8217;s loving son or daughter who can proudly govern the existence that was to be governed by humankind! Before we become like this, no one can go to Heaven. That is why no one has gone to Heaven until now. Paradise is a midway station in the spirit world.</p>
<p>To plow our way through this cosmic wall of fate, we should be able to beat off completely the attacks of Satan. Unless we become one like this, God&#8217;s toils will not be appreciated. Therefore, God has been searching until today for someone who can defeat Satan completely, and for a son and daughter who can understand the laborious efforts and the heart of God. If humankind continues being ignorant of God&#8217;s labor forever, Heaven on earth will not be established. Even in the spirit world, Heaven will not be established.</p>
<h3>The One Who Owns Heaven</h3>
<p>Therefore, now you must step forward, holding up the flag in front as a pioneer who is clearing up the straight course of victory against Satan in the battle ground on earth. You need such resolution and determination as this. If you have wished to go forward in the presence of God, you can say, &#8216;&#8221;Hundreds of thousands of Satans! Come to me. Even if the 2.4 billion people go against my way, even if heaven and earth go against me, I will still go.&#8221; With resolution like this, you should make a vow and step forward before God.</p>
<p>Even if persecution comes from my family, from the nation, from all of humankind, even if the 2.4 billion people start kicking and struggling to get rid of the Unification Church, you have to move on with a determination that you cannot be destroyed. You should not hesitate whether to step forward or not. You must keep in mind that we are in a situation where we cannot but move because the stepping out action has already started.</p>
<p>Now, everyone who stepped forward to fight against Satan! You have to model yourself after Jesus Christ, who could be raised as the second Adam of victory in substitution for the 4,000-year history after winning against Satan. He kept his vow and resolution in his heart and had the sense of responsibility that he would take on God&#8217;s work and fight on. Because Jesus fought with such a resolution and vow and with such a sense of responsibility, he could subjugate Satan.</p>
<p>Now we who are equipped with bodies and spirits, who are substantial beings, must subjugate Satan. Only when such living existences as these emerge on earth can the heart of God, who has worked laboriously for 6,000 years, and the heart of Jesus who has also labored, be comforted.</p>
<p>The Heaven that God can govern will become ours and the earth that God can govern will be ours. This is God&#8217;s purpose of creation. You have to know that only such persons as these who, in order to accomplish God&#8217;s purpose of creation, take the responsibility and fight and win can own the Kingdom of Heaven.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html" title="Permalink to Those Who Will Possess the Kingdom of Heaven of Hope" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html" rel="prev"><span class="meta-nav">&laquo;</span> The Providence of God and the Nature of the Adventure That Transcends Reality</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html" rel="next">Let Us Become the One Who Attends the Lord Who Has Come for the Sake of all Humankind <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,199 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Why did Jesus Become the Little Lamb Who Bore All the Sins of This World? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-750 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-750" class="post-750 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon">
<h1 class="entry-title">Why did Jesus Become the Little Lamb Who Bore All the Sins of This World?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-05-23T05:21:07+01:00"> <a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html" rel="bookmark">May 23, 2018</a> </time></span><time class="updated" datetime="2018-05-23T05:21:07+01:00">May 23, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon.html" rel="tag">Speeches of Rev Sun Myung Moon 1956</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 style="text-align: center;">REVEREND SUN MYUNG MOON<br />
SPEAKS ON</h2>
<h3 style="text-align: center;">Why did Jesus Become the Little Lamb<br />
Who Bore All the Sins of This World?</h3>
<h3 style="text-align: center;">July 11, 1956<br />
Headquarters Church, Seoul, Korea</h3>
<p style="text-align: center;"><em>John 1:24-34</em></p>
<p style="text-align: center;"><em><span id="en-NIV-26069" class="text John-1-24"><sup class="versenum">24 </sup>Now the Pharisees who had been sent</span> <span id="en-NIV-26070" class="text John-1-25"><sup class="versenum">25 </sup>questioned him, “Why then do you baptize if you are not the Messiah, nor Elijah, nor the Prophet?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26071" class="text John-1-26"><sup class="versenum">26 </sup>“I baptize with<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26071a" data-link="[&lt;a href=&quot;#fen-NIV-26071a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+1:24-34#fen-NIV-26071a">a</a>]</sup> water,” John replied, “but among you stands one you do not know.</span> <span id="en-NIV-26072" class="text John-1-27"><sup class="versenum">27 </sup>He is the one who comes after me, the straps of whose sandals I am not worthy to untie.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26073" class="text John-1-28"><sup class="versenum">28 </sup>This all happened at Bethany on the other side of the Jordan, where John was baptizing.</span></em></p>
<p style="text-align: center;"><em><span class="text John-1-29"><sup class="versenum">29 </sup>The next day John saw Jesus coming toward him and said, “Look, the Lamb of God, who takes away the sin of the world!</span> <span id="en-NIV-26075" class="text John-1-30"><sup class="versenum">30 </sup>This is the one I meant when I said, A man who comes after me has surpassed me because he was before me.</span> <span id="en-NIV-26076" class="text John-1-31"><sup class="versenum">31 </sup>I myself did not know him, but the reason I came baptizing with water was that he might be revealed to Israel.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26077" class="text John-1-32"><sup class="versenum">32 </sup>Then John gave this testimony: “I saw the Spirit come down from heaven as a dove and remain on him.</span> <span id="en-NIV-26078" class="text John-1-33"><sup class="versenum">33 </sup>And I myself did not know him, but the one who sent me to baptize with water told me, The man on whom you see the Spirit come down and remain is the one who will baptize with the Holy Spirit.</span> <span id="en-NIV-26079" class="text John-1-34"><sup class="versenum">34 </sup>I have seen and I testify that this is Gods Chosen One.”</span></em></p>
<p style="text-align: left;">Prayer 1</p>
<blockquote><p>My loving Father! Your children, who were scattered in all regions and directions, have come together before Your knees and have bowed down, longing for Your love. Please, dominate our minds now, and please let the yearning for Your holy sung-sang be the only thing that remains in our minds. Please allow our bodies to cultivate the beauty of Your hyung-sang and be intoxicated in silence by the grace of inspiration. Father, I sincerely wish and desire this.</p>
<p>This earth has sunken into darkness. We know that the mission to rescue the earth from the darkness is upon the shoulders of such insignificant persons as we.</p>
<p>Father of love! Father of compassion! By ourselves alone we do not have the power to distinguish good from evil and to increase goodness. Therefore, loving Father, please allow the power of the goodness and love that You have hidden in Heaven to be manifested. Allow us to exercise goodness even in humble situations, and allow us to obtain the glory, to bow before You, Father, and to bring the glory of resurrection out into the light with all our minds and souls.</p>
<p>Father, please purify the minds of the many children who have bowed down before You now. Father, You must touch each of their hearts with Your hands of sanctification, to lift the veil and to purify each of their minds and bodies. You must eradicate all the undesirable elements within them, so please be their personal guide and master of distinction between good and evil, as well as the master of their hearts. My Father, I pray sincerely that You will guide us to eliminate evil by distinguishing between good and evil, and that we may be offered before Your holy presence through the one center.</p>
<p>Father! Since we have gathered here, please allow this time to be an opportunity when we can awaken to the inadequacies of our own selves before the manifest presence of the Father&#8217;s hyung-sang. In this hour, please allow us to discover the reality of ourselves, we who have collaborated with the power of sinfulness in the past and who have entered the realm of death. Let us divulge ourselves before Father and before the glorious altar of goodness. Please eradicate all of our undesirable habits of the past and our concepts which have prevented us from having faith in You.</p>
<p>Loving Father, I sincerely wish and desire that we may use this opportunity to receive new stimulation in goodness and, realizing the new value of Father&#8217;s sung-sang, be shaken in our minds and bodies. I pray sincerely that You will unfold the works of repentance and inspiration in this moment. Please remove all the inappropriate and wrong elements of sin and evil in this moment, Father. Father, please intervene personally and be fully at work among the crowd, in which only the elements of glory that You can govern have gathered. Please govern them.</p>
<p>Father, as far as I know, lonely groups of people scattered all across the land are bowing before Heaven for the sake of humankind this evening. Father, You who are the friend of lonely people, please allow them to maintain unchanging loyalty and fidelity toward Heaven no matter what kind of environment or situation they find themselves in. Even if the mocking of Satan has created a great block, please make them into the brave soldiers of Heaven who can step over this, and guide them to accomplish Your wish and the mission entrusted to them in the last days. Father, I sincerely hope that the immutable power of Heaven will be with them so that they can continue to fight.</p>
<p>On this evening, please descend with the works of the Trinity upon those countless altars that have gathered on behalf of humanity. Beloved Father, we sincerely hope that with the Trinity, You will prophecy about the mission of the whole that You are going to accomplish in the last days, and that You will unveil to the 2.4 billion people of humanity Your original will, which You must find. establish and manifest on the earth.</p>
<p>From the beginning to the end, please let them, as the entrusted sacrifice, form the altar which You can be delighted in, so that only the miracles, the power and the glory which can stand as evidence to the holy body of joy may be manifested. I pray in the name of the Lord. Amen.</p></blockquote>
<h3>Prayer 2</h3>
<blockquote><p>Loving Father! Command us, and create the environment in which we can represent the position of the Jewish people who stood before John the Baptist when he saw Jesus appearing before him as the representative of the heavenly way, and who stood on the shores of the Jordan River and cried out to Heaven. Though our hearts may be far away in historical time, please allow us again to have the blessing that would enable us to hear the voice of John the Baptist who, centering on Heaven, cried out with a pained heart, &#8220;Look, there is the lamb of God who bears the sin of this world.&#8221; These are indeed awe-inspiring, fearsome and dignified words.</p>
<p>Although many people, saints and sages have come to and gone from this earth, there was not even one who could confidently step forward and proclaim that he had taken up the burden of all the sins of humanity. The words of John the Baptist, which testified to Jesus, set the new, historical standard for re-creation.</p>
<p>Please allow us the joyful blessing that can let us fathom the heart of John the Baptist, who found the one who could take care of all the detestable sins of humanity. Let us entrust all our sins into the hands of Jesus and let us bow toward Heaven.</p>
<p>Please transform our environment today into the environment of the Jewish people who received the grace of liberation. Please let their heart be manifested in our environment. Let us realize that there is no one happier than the one who has found the master to whom he can transfer all of his sins.</p>
<p>Please allow us to feel the happiness of having entrusted our life and all that we have and of having offered gratitude in an environment of freedom. Allow us to feel the joy of someone who possesses Heaven. Please let us realize once more that Jesus has come to the earth and has taken over the burden of our sins.</p>
<p>Please take charge of all the sins of those who have gathered here, and allow only goodness to remain and fill the place. Please let us entrust all the sinful elements to Jesus Christ. Loving Father, we sincerely wish that You will allow us to be overwhelmed with a powerful urge which would galvanize us to return glory to the Father and to comfort the sorrowful heart of Jesus.</p>
<p>Look down upon the children who have gathered here with compassion. Please do not let the heart of the speaker and the heart of the listener be divided into two. Please grant the power of resurrection that can give us new life, and the words of re-creation that will enable us to sacrifice ourselves. Give us the grace that would empower our mind and body to cut the chain of sin and, relying on the words of re-creation, restore our original image. Loving Father, we earnestly hope that this may be done.</p>
<p>We have entrusted everything unto You, so please grant us what You intend. I pray in the name of the loving Lord. Amen.</p></blockquote>
<p>The topic of the speech today is <i>&#8220;Why Did Jesus Become the Little Lamb Who Bore All the Sins of This World?&#8221;</i> I will speak briefly on this topic.</p>
<h3>The Background of the Advent of Jesus</h3>
<p>God created humankind as the central beings who can substantially feel His internal ideals. In doing so, God hoped to establish the concealed beauty, love and glory of Heaven as the eternal course through the life of Adam and Eve. He tried to build a world of uninterrupted happiness.</p>
<p>Due to the fall of man, this original will of God was undermined in a fundamental way and, against the wishes of God, humankind established Satan in the position of God and dwelt within the realm of Satan&#8217;s dominion. Humankind, who should have served God by returning glory and happiness to Him, worshipped Satan instead and continued with this shameful history. You already know this fact very well.</p>
<p>Moreover, God has been leading the dispensation until now because He has to realize glory centering on human beings; He has to make His will to give love material by centering on human beings, and He has to give advice centering on human beings. On the contrary, Satan has been carrying on the battle to destroy the glory of God, the love of God, and the life of Heaven, has shackled humankind in his own domain and has been fighting to keep them in bondage.</p>
<p>Unless the original human being whom God is looking for, a hero who can attack Satan appears, there is no way to return glory to God, nor love, nor life. To find this one central figure, God has been toiling for 4,000 years, leading the dispensation forward. Jesus was the person whom God finally raised as the center of faith, the representative of humankind, whose mission was to testify to the glory, love and life of God.</p>
<h3>The Responsibility of Jesus</h3>
<p>What was the mission Jesus was supposed to fulfill when he came to the earth? It was to restore the glory, love and life of God. However, sin prevented this from being accomplished. Sin prevented humanity from returning glory to God, prevented them from feeling the love of God, and hindered them from feeling the life of God, so that they could not settle on His love and life as the center of eternal life.</p>
<p>What was the reason behind this? Because of the fall, hereditary and individual sin permeated the whole creation, centering on humankind. Therefore, the mission Jesus was supposed to accomplish on earth first was to carry on the battle of pulling out the root of the sin that pervaded the creation. He had to do this before he could restore the glory, the love and the life of God. To dig out the root of sin, Jesus bore the sins of humanity on his own shoulders.</p>
<p>Why did Jesus have to carry sin on behalf of others? Human beings were committing sins. Furthermore, human beings did not know the truth. Jesus Christ came to the earth to save humanity, bringing with him the glory, love and eternal life of God, yet there was one condition that obstructed his way. This was none other than sin, which is intertwined like one gigantic steel net, woven throughout this person and that person, this organization and that organization, this society and that society, this nation and that nation. Without voluntarily eradicating this sin, this earth will never see the glory of God, the love of God and the life of God.</p>
<p>God has been working through men to exterminate sin. When human beings eradicate sin, the glory, the life and the love of God can be bestowed upon them. God caused them to wipe out sin to make them realize the master of whom they had not been aware. As a result, we can serve that master as the representative of the glory of Heaven, the love of Heaven and the life of Heaven. If we can do this, then there is no power that can sever the relationship between Jesus, who has been anointed by Heaven as the center, and us.</p>
<p>Yet due to the fall, until the consummation of this world, the burden of sin exists in the relationship between us, Jesus and the Holy Spirit. This burden of sin is found in the family, society, nation, world and in all of heaven and earth, so the fact that someone has arrived who can take care of all the sins in heaven and earth is the happiest news and gospel of salvation and triumph.</p>
<p>Have we entrusted our sin to Jesus? Moreover, have our families entrusted their sins to Jesus Christ? Have our society and our nation entrusted their sins to Jesus Christ? Has our world entrusted its sins to Jesus Christ? The question is, how many believers remain on the earth who have not yet escaped from the realm of sin?</p>
<h3>What You Must Do in Your Daily Life of Faith</h3>
<p>What you have to do in your daily life of faith is take all of your sins and entrust them to Jesus. Have you transferred all of your sins to Jesus? You must ask yourself this. There must emerge on earth someone who can say, &#8220;Father! I cannot purge the sins that remain within me by myself. I entrust them all to you.&#8221; Otherwise, the ideals of Jesus can never be realized. If even now the burden of sin still lingers in me and if there still remain the elements of grief caused by sin in my family, my society, nation, world and in heaven and earth, then Jesus&#8217; ordeal of the cross will be prolonged. You must understand that even in this hour, your deeds are prolonging Jesus&#8217; ordeal of the cross.</p>
<p>Today we must offer the prayer of repentance, &#8220;Please take charge of all my sins.&#8221; You must say, &#8220;Lord, please take my sins away.&#8221; Unless we combine our minds and bodies, combine with the mind and body of Jesus, and walk a course of revolution with our own hands, as well as with the hands of Jesus, and penetrate through to the bottom of sin, we cannot say to the Holy Spirit and to Jesus that we have eradicated our sins.</p>
<p>What is the meaning of the will Jesus proclaimed: that he is going to come to the earth to take care of all sins? Due to our fall, we have lost God, the Master of life, we have lost True Parents, and we have lost Jesus, who came as the one center who can protect and love us. Now, after Jesus takes charge of all sins in the world and in heaven and earth, Satan will be engaged in the ultimate battle with Jesus. If you do not entrust all of your sins to Jesus and God, then Jesus cannot intervene in your affairs as your master, even if he wants to. You must understand this.</p>
<p>From a humanistic perspective, Jesus can be viewed as the most unfortunate person. We must understand the heart of Jesus. His heart was such that he wanted to bear all the burdens of sin in this universe. Humanistically speaking, Jesus was a miserable person. When Jesus came to this earth, there had never been anyone as unfortunate as he. Although he came to the earth to find and to give blessing, there was not even one person who, knowing his wishes, served him with the attitude, &#8220;Jesus is my eternal, ideal and unchanging master.&#8221; Although he came for the sake of the people, for the nation, the world and for heaven and earth, Jesus the anointed one was an unspeakably unfortunate person. There was no one who welcomed him and believed in him based on the words he spoke and the actions he carried out. Similarly, from a humanistic point of view, the environment Jesus found himself in was extremely precarious.</p>
<p>As a human being, Jesus must have felt the same emotions you do. Jesus bore the burden of the sins of humanity both of the past and of the future, because people had no way to purge their sins themselves. Yet he forgot his own ordeals and comforted the lonely individuals who were resentful about their sins. We must comfort the internal tribulations, the anguish and the sorrow of Jesus, the one who came to take charge of the sins of humanity.</p>
<p>Of course, we should mourn about sin. Yet when you mourn, you should never allow it to penetrate into Heaven directly. The Holy Spirit is the one who came to comfort us in our grief. Thus, we must receive the cooperation of Jesus and the Holy Spirit in order to free ourselves from sin. Otherwise, the worries of Jesus, who is in charge of our sins, will not be removed from earth as well Heaven.</p>
<p>The Holy Spirit is in charge of obtaining pardon from Heaven for our sinfulness. This is because humankind does not have a direct relationship with either God or Jesus, who are in Heaven. Therefore, we must receive the cooperation of the Holy Spirit who is working on the earth. The way to redemption has been opened because of the crucifixion of Jesus, but the one who actually toils to take charge of our sins is the Holy Spirit. You must understand that the Holy Spirit stands in the position of a mediator for our sake, representing us miserable sinners.</p>
<p>What kinds of ordeals is the Holy Spirit going through? The exertion of Jesus, who passed away on the cross while responsible for our sins, and the ordeals of the Holy Spirit, crying with us when we cry and being hung on the cross when we are hung on the cross, are very much with us today. Even today, he is undergoing the crisis of crucifixion for your sake. You must understand this clearly. When the toils of Jesus and the exertion of the Holy Spirit are combined as one with us in the middle, and we reach the standard that God requires, then all the sins that we have committed on the earth will be redeemed.</p>
<h3>Our Responsibility Toward the Work of the Holy Spirit</h3>
<p>We have wrongly thought until now that we were the only ones exerting ourselves to prepare for the coming of Jesus, but we must understand that in the background there is the Holy Spirit, who has toiled more strenuously than we. Since the ordeals of the Holy Spirit are greater than those of humankind, Jesus wants to work through the Holy Spirit to represent the glory of Jesus and rally humankind together. Without ushering in this kind of occasion, there is no way that Jesus can come to the earth again and stand firmly as the master of humanity.</p>
<p>Consequently, when we face evil and go forward, we must be aware of the fact that because of the sins we committed, the Holy Spirit exerted herself on the earth for us, and Jesus had to die on the cross. Moreover, wherever we go in heaven and earth, we must realize that we are sinners who have no way to be unshackled from the grievances of Heaven. We must now be awakened to this sin and offer all of our minds and bodies. Accordingly, first we must rely on the work of the Holy Spirit and assist Jesus in his work to take the burden of toil off his shoulders. The ordeals of the Holy Spirit, Jesus and God must be brought to an end through us before there can be a consummation of the will of Heaven, which has labored to take charge of our sins. What is more, we can finally find the one Master only now. This is what you must understand.</p>
<p>Jesus came to the earth as the son of man and passed away. He came to the earth as a man. As you can see in the spirit world, because Jesus has a substantial body with whom we can have a direct conversation, when our spiritual senses are open, we can comfort and express gratitude to Jesus. You cannot do this with the Holy Spirit. The reason is that the Holy Spirit does not have a body. Jesus came to the earth in a substantial body, as the master of Heaven and as the center of the world of creation. Nonetheless, because the Holy Spirit could not possess a substantial body until now, there is no way to directly comfort her for her ordeals. During the 2,000 years of toilsome history, the ideology of the bride and bridegroom was established to extinguish this source of grief, but Christians today do not understand this. When will there be the appearance of the substantial Holy Spirit on the earth who can become the bride of Jesus?</p>
<p>The crime we have committed is not just that of having caused Jesus Christ to cross the pass of death; it also involves our having caused the Holy Spirit to walk a similar course of suffering. If we can liberate them from that suffering and grief, we can return happiness and glory to Jesus, but the Holy Spirit must await fulfillment.</p>
<p>When we entrust our sins to them, the Holy Spirit takes charge of them first. After that, Jesus Christ takes them over, and then they are purged by God, but we do not know this process so well. If there come forth believers who understand this task and mission, then the Holy Spirit&#8217;s work of inspiration will be manifest before the whole of humanity.</p>
<p>What then are we to do now that Jesus Christ has left after having come to the earth? We are to find the master in the position similar to the bridegroom, Jesus, and the mistress who is in the position similar to the bride, the Holy Spirit. By so doing, we receive the grace of atonement. What is more, we can cling to the Holy Spirit and Jesus and say, &#8220;Holy Spirit and the Holy One and God! Please bless us.&#8221; If you cannot do this, then the sufferings of Jesus and the Holy Spirit in the last 2,000 years cannot bear fruit on the earth.</p>
<p>Why did Jesus come to take responsibility for the sins of the world? This was for our sake, so that we can possess freedom. Finding the master is so that we, humankind, can restore our original self and transfer from the position of being dominated by Satan to the position where we can dominate him. Consequently, after you finish walking your course, you are to be free children, exterminating Satan and becoming free of sin.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html" title="Permalink to Why did Jesus Become the Little Lamb Who Bore All the Sins of This World?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html" rel="prev"><span class="meta-nav">&laquo;</span> The Pledge That Must Be Fulfilled</a></div>
<div class="nav-next"><a href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html" rel="next">Let Us Take Part in the Glory That God Recognizes <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,221 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JESUS&#8217; VIEW OF LIFE FOR THE SAKE OF THE RESTORATION &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-781 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-781" class="post-781 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">JESUS&#8217; VIEW OF LIFE FOR THE SAKE OF THE RESTORATION</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-02T05:38:18+01:00"> <a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html" rel="bookmark">June 2, 2018</a> </time></span><time class="updated" datetime="2018-06-02T05:39:09+01:00">June 2, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON<br />
January 6, 1957 (Sunday)<br />
Chung Pa Dong Church<br />
Seoul, Korea</h2>
<p><em>Matthew 6:16-34</em><em> </em></p>
<p style="text-align: center;"><span class="text Matt-6-16"><span class="woj"><sup class="versenum">16 </sup>“When you fast, do not look somber as the hypocrites do, for they disfigure their faces to show others they are fasting. Truly I tell you, they have received their reward in full.</span></span> <span id="en-NIV-23300" class="text Matt-6-17"><span class="woj"><sup class="versenum">17 </sup>But when you fast, put oil on your head and wash your face,</span></span> <span id="en-NIV-23301" class="text Matt-6-18"><span class="woj"><sup class="versenum">18 </sup>so that it will not be obvious to others that you are fasting, but only to your Father, who is unseen; and your Father, who sees what is done in secret, will reward you.</span></span></p>
<p style="text-align: center;"><span class="text Matt-6-19"><span class="woj"><sup class="versenum">19 </sup>“Do not store up for yourselves treasures on earth, where moths and vermin destroy, and where thieves break in and steal.</span></span> <span id="en-NIV-23303" class="text Matt-6-20"><span class="woj"><sup class="versenum">20 </sup>But store up for yourselves treasures in heaven, where moths and vermin do not destroy, and where thieves do not break in and steal.</span></span> <span id="en-NIV-23304" class="text Matt-6-21"><span class="woj"><sup class="versenum">21 </sup>For where your treasure is, there your heart will be also.</span></span></p>
<p style="text-align: center;"><span id="en-NIV-23305" class="text Matt-6-22"><span class="woj"><sup class="versenum">22 </sup>“The eye is the lamp of the body. If your eyes are healthy,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23305a" data-link="[&lt;a href=&quot;#fen-NIV-23305a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23305a">a</a>]</sup> your whole body will be full of light.</span></span> <span id="en-NIV-23306" class="text Matt-6-23"><span class="woj"><sup class="versenum">23 </sup>But if your eyes are unhealthy,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23306b" data-link="[&lt;a href=&quot;#fen-NIV-23306b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23306b">b</a>]</sup> your whole body will be full of darkness. If then the light within you is darkness, how great is that darkness!</span></span></p>
<p style="text-align: center;"><span id="en-NIV-23307" class="text Matt-6-24"><span class="woj"><sup class="versenum">24 </sup>“No one can serve two masters. Either you will hate the one and love the other, or you will be devoted to the one and despise the other. You cannot serve both God and money.</span></span></p>
<p style="text-align: center;"><span class="text Matt-6-25"><span class="woj"><sup class="versenum">25 </sup>“Therefore I tell you, do not worry about your life, what you will eat or drink; or about your body, what you will wear. Is not life more than food, and the body more than clothes?</span></span> <span id="en-NIV-23309" class="text Matt-6-26"><span class="woj"><sup class="versenum">26 </sup>Look at the birds of the air; they do not sow or reap or store away in barns, and yet your heavenly Father feeds them. Are you not much more valuable than they?</span></span> <span id="en-NIV-23310" class="text Matt-6-27"><span class="woj"><sup class="versenum">27 </sup>Can any one of you by worrying add a single hour to your life<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23310c" data-link="[&lt;a href=&quot;#fen-NIV-23310c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23310c">c</a>]</sup>?</span></span></p>
<p style="text-align: center;"><span id="en-NIV-23311" class="text Matt-6-28"><span class="woj"><sup class="versenum">28 </sup>“And why do you worry about clothes? See how the flowers of the field grow. They do not labor or spin.</span></span> <span id="en-NIV-23312" class="text Matt-6-29"><span class="woj"><sup class="versenum">29 </sup>Yet I tell you that not even Solomon in all his splendor was dressed like one of these.</span></span> <span id="en-NIV-23313" class="text Matt-6-30"><span class="woj"><sup class="versenum">30 </sup>If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the fire, will he not much more clothe you—you of little faith?</span></span> <span id="en-NIV-23314" class="text Matt-6-31"><span class="woj"><sup class="versenum">31 </sup>So do not worry, saying, What shall we eat? or What shall we drink? or What shall we wear?</span></span> <span id="en-NIV-23315" class="text Matt-6-32"><span class="woj"><sup class="versenum">32 </sup>For the pagans run after all these things, and your heavenly Father knows that you need them.</span></span> <span id="en-NIV-23316" class="text Matt-6-33"><span class="woj"><sup class="versenum">33 </sup>But seek first his kingdom and his righteousness, and all these things will be given to you as well.</span></span> <span id="en-NIV-23317" class="text Matt-6-34"><span class="woj"><sup class="versenum">34 </sup>Therefore do not worry about tomorrow, for tomorrow will worry about itself. Each day has enough trouble of its own.</span></span></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father, we thank You for having protected us in the past year. Now, as we greet the first week of the new year, this hour is the time for us to offer a full bow before You with joyous hearts.</p>
<p>From this hour on, we want to change our direction from being inadequate and insufficient in the past. We want to sanctify our minds and bodies as the Father wishes and fully bow, humbly and meekly, before You. Beloved Father, please receive us.</p>
<p>If there are any inappropriate principles and subjective opinions in our minds toward You, please eradicate them. If there are any blemishes in our bodies caused by Satan&#8217;s encroachment, please burn them with the fire of Your sacred spirit, and forgive us With the grace of compassion. Please sanctify us to transform ourselves into the original characters You created and to become sons and daughters who can receive the Father&#8217;s love of joy. Father, I pray this with a most sincere heart.</p>
<p>Father, please let the grace of holiness be connected to us from this day on. Let the power that can subjugate Satan be manifested through us. Please guide us to move our minds and bodies to harmonize with all creation in heaven and earth and to be able to please the Father in heaven. I pray sincerely that You will lead this gathering of ours to be the true gathering for which You wish.</p>
<p>Now the time has come for us to pour out all of our souls and to realize the love concealed within the Father. The time has come for the Father&#8217;s dispensational work of 6,000 years to be manifested. Father, please allow Your sons and daughters gathered here to stand in a sanctified position of their own accord. Please allow them to be the children who can fathom the heart of Moses who, with sanctified authority from the Father, separated the Red Sea with the staff the Father gave. Father, I pray with utmost sincerity.</p>
<p>Father, please bestow Your blessing upon the thirty million people of this nation in this year, and let the glory and love of the Father hover over the numerous denominations gathering for the sake of this people. Allow the work of the dispensation promised to Your unknown sons and daughters to be unfolded so that the 3,000-ri peninsula of Korea can quickly become a garden of victory. Father, I offer this wish from the depth of my heart: that You will guide these people, who have been asleep, to return glory to the Father and to be able to do the work of the restorational dispensation in heaven and earth.</p>
<p>Father, we desperately desire that You will allow us to have sincere hearts like those of the underground faithful believers of the past and to move the many denominations to awaken the thirty million people. I also pray that You will allow us to mobilize these people to awaken the 2.4 billion persons of humanity and to establish the garden of original nature as quickly as possible. Father, please sanctify our minds and bodies in this hour with new promises and new rules, and receive us. Please bestow the grace of the happiness of the Father upon us. Please allow promises and responses to be formulated here. I pray that the Father&#8217;s hands of protection will be with us for a long time from this time on, so that we can offer ourselves as the sacrifices of victory before the Father.</p>
<p>Father, I sincerely wish and pray that You allow us to become the loyal and pious sons and daughters who can offer their minds and bodies and everything else exclusively to please the Father. There are throngs of people who are scattered throughout the country even today, who hold onto Your words of truth and pray ardently, taking charge of altars in solitude. Please purify them of the elements of Satan. By establishing the Father&#8217;s demonstrative power in the face of the forces of darkness, allow them to become the proud children who will manifest the glory of the majestic Father. Beloved Father, I pray and wish this sincerely. Please allow Your sons and daughters to be able to receive the Father&#8217;s power of authority everywhere they gather, and protect them from being invaded by Satan.</p>
<p>Father! Please let the Holy Trinity be mobile in this hour, and allow the miracle of glorious resurrection to unfold. Soliciting You to allow the Father&#8217;s sacred spirit to overflow in our minds and bodies from the beginning of the hour to the end, I pray in the name of the Lord. Amen.</p></blockquote>
<p>I will speak to you briefly on the topic <em>&#8220;Jesus&#8217; View of Life for the Sake of the Restoration.&#8221;</em></p>
<h3 align="center">THE VALUE OF THE LIFE OF A HUMAN BEING</h3>
<p>Fallen humankind has not yet found the value of eternal life to which the world, the earth and heaven, can attest. Therefore, fallen humankind is left with the mission of restoration to find the value of individual life, the value of world-level life, and beyond that, the value of heavenly life.</p>
<p>Where then will God&#8217;s purpose of establishing the will of the dispensation and the sought-after value of life be completed? It is not going to be finalized with only you or the world. Heaven and earth have to be united. The value of life that God, the world and the individual can all be happy about at the same time has to be found. Only then will the dispensation of the providential salvation of Heaven be completed at last. The worldwide human activities centering on Satan will be completed, too, and so will the individual-centered concept of morality. You must know that fallen humankind must take the responsibility to make their way through such a life course.</p>
<p>You may easily look upon yourselves as individuals, but you must know that the whole ideal of creation resides within you. Therefore, you must first manifest the value of worldwide life. You must know that only after that will the value of your individual life be established.</p>
<p>You may also know very well that a life of faith is to seek the value of such a life. Therefore, you must put eternal life in place of the innate life that you are hoping for through self-analysis. By uniting the whole ideology of history into one, you must complete the worldwide life. Furthermore, you must set up a foundation of life with which you can make a connection with either eternal life or a worldwide life in the aspect of your individual life. Otherwise, your life at the present time will not be elevated to eternal life via a worldwide life. Adam and Eve were to establish such a cosmic life. Since the human ancestors lost this life by falling, God has been striving to restore this for the 6,000 years of human history. We call this history of God the history of providential restoration.</p>
<p>After passing through the course of toil of 4,000 years to set up the value of such a heavenly life, God sent a man who could represent the value of the total life. That man was Jesus Christ.</p>
<p>Although Jesus Christ was one body, that body represented the eternal and infinite worldwide life and the eternal individual life. Because Jesus came with such a historical background, he had to reveal the eternal hope in reality and testify to the value of the life that can exist forever in heaven and on earth.</p>
<p>What kind of standard did Jesus Christ, who came with such a mission, live centering on? Jesus did not exist to lead his own life. He existed to lead a life for the world. Going further and rising above that, he struggled day after day to lead an eternal life. This was the standard of Jesus&#8217; life.</p>
<p>In other words, Jesus&#8217; gaze, Jesus&#8217; feelings and the life he lived were not just for himself. They represented the world, and the individual. They represented God, and the world.</p>
<p>The words of gospel that Jesus spread were not for Jesus himself but were for the world. Beyond that, they were the words of eternal life representing God. If Christians cannot perceive this, they cannot comprehend the true meaning of the gospel of Jesus Christ, and they cannot fulfill the purpose of Jesus Christ&#8217;s coming. You must understand this.</p>
<h3 align="center">THE STANDARD OF LOVE THAT JESUS ESTABLISHED</h3>
<p>What did Jesus do to realize the value of such a cosmic life? He elevated love. In other words, he propagated new words of the gospel to complete the value of cosmic life in heaven and earth. The central point of that gospel was love.</p>
<p>What would be the most important thing for an individual to be able to connect his own private life to the standard of eternal value? As Jesus said, he must have such love that he can sacrifice his life for the sake of others. In fact, Jesus established the standard of value of life by loving others more than himself.</p>
<p>Similarly, Jesus, who appeared representing the value of heavenly life, taught humankind to possess such love that they can sacrifice their lives for the sake of others&#8217; salvation. You must understand clearly that the man who appeared with such a loving heart, who loved his colleagues more than himself, who loved the world more than he loved his colleagues, and who loved God and the thousands upon thousands of saints more than he loved the world was Jesus Christ.</p>
<p>Jesus did not live with an individualistic ideology to find the value of his own individual life or with individualistic love. Even when he loved a friend, his love transcended the relationship of loving friendship. Jesus had the perspective that he loved the friend representing the world. He also loved that friend with the heart that represented God.</p>
<p>Likewise, Jesus did not practice love on a one-to-one basis. When Jesus loved a certain individual, it was with God&#8217;s love, with cosmic love, and then with individual love. You must be able to experience this. Only when you do so can you rightly comprehend the value of Jesus&#8217; life.</p>
<p>Up to what level did Jesus raise the standard of his own life? He envisioned himself existing for the sake of the world. Even when he loved a friend of his, forsaking himself, he kept the perspective that he loved him for the sake of the world. This was Jesus&#8217; standard.</p>
<p>Jesus could establish the standard of love of worldwide salvation on the cross because he had the heart of love and sacrifice with which he could die for the sake of an individual and for the whole simultaneously. You must know that Jesus was the hero of love, life and character. That was not all. Jesus then prayed toward Heaven, &#8220;My Father, if it is possible, may this cup be taken from me. Yet not as I will, but as You will.&#8221; (Matthew 26:39) Because Jesus wished to live only according to the will of the Father, he could demonstrate God&#8217;s love to humankind beyond the valley of death. Similarly, we must know that the entire course of Jesus&#8217; life was filled with such remarkable love.</p>
<p>Next, what did Jesus Christ, who came with the mission to restore the cosmic life, raise to find the value of life? That, too, was love. This love was not meant for individual human beings but for the world, God and the eternal world &#8212; the spiritual beings who are in the spirit world.</p>
<p>In order for us, in our daily lives, to realize the value of the life of Jesus, who represented God&#8217;s love, we who must take responsibility for the restoration of the whole life must not deal with whichever matter we face with transient emotions. We must deal with all things with the resolution and determination that we will model ourselves after Jesus&#8217; character, who represented the whole on the cosmic level. Only after we pass through such a day-to-day life can we complete the worldwide life and make a connection with eternal life.</p>
<p>In other words, if your day-to-day lives have a transient value that affects only you, you cannot make a connection with eternity. That is the reason you must lead a life in which you can make a connection with God&#8217;s eternal love. Only when you do that will the eternal God be with you. Because Jesus lived making daily connections with God throughout his life, though Jesus is dead, the will of God, who wished it to be completed by Jesus, has been continuously carried on toward its completion.</p>
<h3 align="center">THE CENTER OF LIFE FOR THE<br />
TRUE BELIEVERS OF FAITH</h3>
<p>What then can we do to make such connections? What is the perspective that has to be set up at our center while we lead a life of faith in Jesus? We have to have a perspective like Jesus, who envisioned that he was born not only for an individual but also for the world and for Heaven. Only in living the life of sacrificing for others, in other words, only when you live the life of serving and loving others can you make eternal connections with God. You must know this clearly.</p>
<p>Today we have faith in Jesus and are grateful for his love, but that sense of gratitude should not stop at the level of our own selves. We have to raise it to the dimensions of all humankind. if there is one who is like this, he will bear the worldwide mission. Furthermore, he will be responsible for God&#8217;s mission, too.</p>
<p>If we live focused like this in our lives, we will not be disappointed. Upon facing any kind of hardship or difficulties, we will overcome it and stand tall.</p>
<p>Accordingly, in the scriptural reading we just read that Jesus said, &#8220;Do not be worried about anything.&#8221; In other words, he said not to worry about what to eat and what to wear. This does not mean to deny everything. Rather, it means that to establish the value of the whole representing God&#8217;s will, before you deal with your own individual lives, you must first be concerned about solving worldwide matters. Furthermore, you must be concerned about heavenly matters. To the person who lives with such a resolution, his own individual suffering does not mean much.</p>
<p>How then should we who are to fulfill God&#8217;s will lead our lives now? Our day-to-day lives should not become ones that deal only with the internal and external matters of our own selves. Beyond matters of our own concern, we must connect ourselves with matters of the whole and take the responsibility to realize eternal value. Only then can you fulfill the will of Heaven&#8217;s gospel. When you take the path of missionary work with such a sense of duty, God will be with you. Similarly, when you lead your lives with loving and caring hearts, you will surely witness the miracle of recreation. You must know this for certain.</p>
<p>Until now, we have lived a self-centered life of religious faith. We have persevered and loved for our own sake. From here on in, we should not do thus. Now when we demand love from Heaven, we must do it for the sake of the whole of humankind, and for the sake of the many spiritual beings in the spirit world.</p>
<p>The history of humankind seeking the eternal life is the course of the providential dispensation. The remaining history, in which humankind will be seeking the worldwide life, is the course of the history of humankind. To seek the daily life is the course of life. When this is compared and contrasted with the sense of the values of humankind, seeking the worldwide life is human duty and seeking the individual life is moral principle. You must know that all these matters of concern, from the world to the individual, are connected to each of us.</p>
<p>If you want to keep the value of life that the Father can guarantee eternally, you have to study Jesus Christ&#8217;s view of life centering on love. What was Jesus Christ&#8217;s view of life? His view of life was to have the heart of serving and caring, the heart of the cosmic master centering on love, and to rule over day-to-day life. That was the central theme of the view of life that Jesus Christ established to restore the cosmic life. Therefore, even when you come upon trivial problems in your daily lives, you must deal with them with the thought that you have the responsibility of carrying out the mission to restore the worldwide life. You must also understand that Jesus Christ was a man who practiced love for the sake of restoration.</p>
<h3 align="center">WE WHO MUST INHERIT THE MISSION OF JESUS<br />
AND FULFILL GOD&#8217;S WILL</h3>
<p>To practice love, you must, of your own accord, live a life of serving and caring for others. When you do that, you can make a connection to the love of the whole. Then you can establish the value of life of which the eternal God can approve. Because Jesus came with the mission to restore the cosmic life, he had to go through the course of individual service, individual sacrifice and individual tribulations. As he was bearing such responsibility, he wanted to be responsible, not just for his generation, but for the life of the whole of humankind until the mission of total restoration is completed.</p>
<p>In other words, Jesus has carried out the mission of the restoration of the cosmic life for the past 2,000 years. However, since he could not fulfill the mission alone, he sent the Holy Spirit to work. He is even mobilizing the many spiritual beings in the spirit world to carry out the mission.</p>
<p>Because Jesus came and went without fulfilling the mission to restore the value of cosmic life, that mission is yet to be completed. Therefore, Jesus is still working laboriously to complete the mission on earth until this day.</p>
<p>However, this mission cannot be completed only by Jesus. By whom, then, can this mission be completed? God wishes us to complete the mission. In other words, because Jesus could not fulfill the mission to restore the cosmic life, we have to carry it out. If you feel responsible for the mission to be completed in your generation, you need to have a strong determination throughout your lives to fulfill the mission by any means.</p>
<p>Now, you of today must experience in your daily lives that Jesus is making laborious efforts in the course of the providential dispensation to establish the value of cosmic life. Otherwise, the will of Jesus Christ, who has worked laboriously as a man of mission to restore the cosmic life, cannot be completed through us.</p>
<p>You must know that first you have to offer yourselves as a conditional object of pledge before Heaven. Jesus set a condition of pledge for the world, for heaven and earth and for the whole people. That was the crucifixion. Through the crucifixion, Jesus could cross over in one stage the standard set by many saints and sages through their struggles throughout their lives. Therefore, you must have a clear concept that you will become sacrificial offerings of pledge submitted before Heaven, before the world or before an individual to realize the value of cosmic life.</p>
<p>Wherever you go, wherever you are, whatever you do, you must always make an effort to set yourselves up as conditional objects of pledge in any circumstances, every hour and every day. Such a life is the life of faith. Now you are left with the mission to find the value of cosmic life in front of the Father. You must set yourselves up as conditional objects of pledge and lead lives by which you can make a connection with the life of Jesus. Furthermore, you must have the resolution that you will build yourselves into worldwide conditional objects. Further, you must determine that you will become the sacrifice of pledge replacing the numerous prophets who have made laborious efforts until now and for Jesus Christ. Only when each one of you makes such a condition of pledge can you multiply from one to two, become four, and reach to the world.</p>
<p>You must know that when such circumstances come into being, the earthly toils to find the true value of life will be concluded. In other words, unless the foundation that can conclude the earthly efforts to find life is formed in each of you and expands to the church, to the society, to the nation, and even to the world, the dispensational will for which God raised Jesus Christ, restoring the cosmic life, will not be concluded. You must understand this very clearly. When you think of yourselves, you who have worked during the dispensation of the will so far, and also of Christians today, no individual or family has appeared who represented the value of cosmic life and comprised a standard in which they connected to society, the nation and the world. The whole of humankind, each and every one in the world, was to enter that realm. However, they did not. Unless such a standard gets established on the earth, Jesus Christ&#8217;s mission to restore the cosmic life will not be concluded.</p>
<h3 align="center">THE PURPOSE OF LIFE THAT BELIEVERS OF FAITH<br />
MUST HAVE IN THE LAST DAYS</h3>
<p>You should know that although Jesus Christ was a true individual being, he has not expanded to the level of the family, the society, the nation and the world in stages. Thus, the sorrow of Jesus Christ has escalated into that of the cosmos, of God and of Heaven.</p>
<p>Therefore, humankind has wished for the day to come when they could moderate such sorrow and accomplish the eternal victory of Heaven. You must testify throughout your lives to the value of the whole dispensation of heaven and earth, and have the determination to manifest the love of heaven and earth.</p>
<p>However, there are differences between your view of the value of life you wish and God&#8217;s view of the value of the cosmic life He wishes for in order to complete the whole dispensation. Therefore, you must equip your minds with the attitude that you can lead a worldwide and cosmic life even in your individual lives, throughout your life course, setting the heavenly principle of hope as the standard. If you maintain such an attitude in your mind, then even when you do not completely realize the will, you can continually make internal connections with the whole.</p>
<p>That is why Jesus said, &#8220;Heaven exists in your mind.&#8221; What is the meaning of this? Jesus, who came as a man of cosmic love and perfect truth, with the value of cosmic life, said this to mean that the kingdom of Heaven will appear only when each person fulfills the whole value God blessed him with and maintains it as his foundation.</p>
<p>When individuals belonging to the realm of Heaven gather in unity to launch the worldwide life campaign and let the many good spiritual beings in the spiritual world make connections with the whole, the will of cosmic life on earth that Jesus tried to restore will be concluded for the first time. You must know this.</p>
<p>Jesus came with the mission to restore the cosmic life. When the people of that time received Jesus without understanding his mission or position, Jesus scorned them and told them that they must not be more concerned about what to eat, drink and wear than about God&#8217;s nation and righteousness. He told them not to adopt these concerns as the standard of their lives. If there is a person who lives with the determination to lead his daily life on behalf of God and Jesus Christ and to fight for the world, he will not be alone. God will be with such a person and Jesus and the Holy Spirit will also be with him until the end of the world. On the other hand, the people then led their lives concerned only about their own well-being, without understanding such relations. That is why Jesus scorned them.</p>
<p>What then is the purpose of your faith in Jesus in the last days? It is not for the sake of receiving some external worldly blessing. It is not for the sake of your individual well-being or good life either. Our good life is for the sake of Jesus and God. When that purpose changes its direction, things may appear fine, but as days go by, things will go awry. On the contrary, if humankind lives for the sake of Jesus, God and the world, Jesus said that God will bear the responsibility for everything.</p>
<p>By the way, while you have the responsibility to fulfill the will of God, the question is how much and how far you can sacrifice yourselves toward its fulfillment. If you sacrifice for your own sake, you will become an individual hero. if you sacrifice for the benefit of the world, you will become a worldly hero. If you sacrifice for heaven and earth to establish the victorious standard of life, you will become a hero who will govern heaven and earth. That is why Jesus has been striving behind the scenes until now to make humankind resemble his character, to find and establish the value of life.</p>
<p>It is so indescribably important for each of you to raise yourself and launch a restoration campaign for such a life. When viewed from the aspect of human history, in the sense of the realities of the world or in the perspective of the eternal hope of the future, this is vitally important. You have a great responsibility.</p>
<p>Your standard of life, including eating and all aspects of living, must be for the sake of restoring the whole life in the place of Jesus Christ. Moreover, you must become the one who proceeds forward with a sense of responsibility to realize the value of the whole life God is looking for, centering on the love that Jesus set up. Only when you become such persons will God&#8217;s will of restoring the cosmic life be completed through you. You must understand that the place where such people gather to live is heaven. The more such people there are, the more God will be with them and the more God will be delighted.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>We have come to understand in our hearts the history of the efforts of the Father, who has set up the laws of heavenly principle and carried on the dispensation to have the life of restoration connected to the level of Heaven. Father, please guide us to comprehend fully that You have exerted Yourself for 6,000 years to establish the value of the worldwide life.</p>
<p>We came to know that it is a divine rule that God cannot intervene with the religion that has nothing to do with Christ, from an individual to the whole. Beloved Father, I pray from the bottom of my heart that You allow us to live the life that Jesus Christ wishes and to understand the value of Jesus Christ&#8217;s love.</p>
<p>We came to know that we, too, must have the same determination in life as Jesus Christ. Please be with us so that we can repulse the attacks of Satan and obtain victory on the battleground where we can find the value of our individual lives.</p>
<p>We came to understand that Satan will accuse us as we move along in Jesus&#8217; footsteps on the course of restoration for the value of life. Therefore, please lead us not to become those who are ridiculed and sneered at while walking the course stretching from our individual life to the worldwide and cosmic life. Beloved Father, I sincerely hope and want that You will allow us to be determined to proudly repel Satan&#8217;s accusation in our daily lives and in the aspect of history, and that we can establish the whole life and fulfill the responsibility.</p>
<p>Now we know that we must resemble the character of Jesus, who ruled over all things on earth to establish the worldwide life that possesses the value of eternal life. Father of love, please let us resemble that character of Christ. We are faced with a situation where all of us, no matter who we are, must walk the course of struggle in reality. Father, please lead us not to be accused by Satan in the aspect of our social life, in the aspect of our character that we are trying to establish in the presence of the Father, or in the aspect of our love, which we must render to humankind. Please be with us so that we can realize the love of Jesus, who ardently wished the love of the eternal Father to be fulfilled.</p>
<p>Father, I sincerely hope and wish that You will govern us to possess the value of life that Jesus established and to realize that value on this earth. Please allow us to understand in this hour that only when we bear the responsibility for this work can we make connections from the position of individuals, via the world, to heaven and earth. Beloved Father, I pray from the bottom of my heart that You will guide us to become sons and daughters who can voluntarily determine themselves to brush aside all the external conditions and to find the standard and value of the whole life. By taking all the conditions as an offering of pledge, let us fight on.</p>
<p>Requesting sincerely that You rule over everything according to Your will and take charge of all this, I prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html" title="Permalink to JESUS&#8217; VIEW OF LIFE FOR THE SAKE OF THE RESTORATION" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html" rel="prev"><span class="meta-nav">&laquo;</span> The People Chosen for the Restoration of the Kingdom of Heaven</a></div>
<div class="nav-next"><a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html" rel="next">JESUS WHO LOOKS BACK ON WALKING THE PATH OF HIS FATE <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,254 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JESUS WHO IS TO ESTABLISH HEAVEN&#8217;S LOVE &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-788 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-788" class="post-788 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">JESUS WHO IS TO ESTABLISH HEAVEN&#8217;S LOVE</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-02T06:02:09+01:00"> <a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html" rel="bookmark">June 2, 2018</a> </time></span><time class="updated" datetime="2018-06-02T06:09:51+01:00">June 2, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">February 24, 1957 (Sunday)<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Luke 10:21-37</em></p>
<p style="text-align: center;"><em><span id="en-NIV-25385" class="text Luke-10-21"><sup class="versenum">21 </sup>At that time Jesus, full of joy through the Holy Spirit, said, <span class="woj">“I praise you, Father, Lord of heaven and earth, because you have hidden these things from the wise and learned, and revealed them to little children.Yes, Father, for this is what you were pleased to do.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25386" class="text Luke-10-22"><span class="woj"><sup class="versenum">22 </sup>“All things have been committed to me by my Father. No one knows who the Son is except the Father, and no one knows who the Father is except the Son and those to whom the Son chooses to reveal him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25387" class="text Luke-10-23"><sup class="versenum">23 </sup>Then he turned to his disciples and said privately, <span class="woj">“Blessed are the eyes that see what you see.</span></span> <span id="en-NIV-25388" class="text Luke-10-24"><span class="woj"><sup class="versenum">24 </sup>For I tell you that many prophets and kings wanted to see what you see but did not see it, and to hear what you hear but did not hear it.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text Luke-10-25"><sup class="versenum">25 </sup>On one occasion an expert in the law stood up to test Jesus. “Teacher,” he asked, “what must I do to inherit eternal life?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25390" class="text Luke-10-26"><span class="woj"><sup class="versenum">26 </sup>“What is written in the Law?”</span> he replied. <span class="woj">“How do you read it?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25391" class="text Luke-10-27"><sup class="versenum">27 </sup>He answered, “Love the Lord your God with all your heart and with all your soul and with all your strength and with all your mind<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25391a" data-link="[&lt;a href=&quot;#fen-NIV-25391a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+10:21-37#fen-NIV-25391a">a</a>]</sup>; and, Love your neighbor as yourself.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25391b" data-link="[&lt;a href=&quot;#fen-NIV-25391b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Luke+10:21-37#fen-NIV-25391b">b</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25392" class="text Luke-10-28"><span class="woj"><sup class="versenum">28 </sup>“You have answered correctly,”</span> Jesus replied. <span class="woj">“Do this and you will live.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25393" class="text Luke-10-29"><sup class="versenum">29 </sup>But he wanted to justify himself, so he asked Jesus, “And who is my neighbor?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25394" class="text Luke-10-30"><sup class="versenum">30 </sup>In reply Jesus said: <span class="woj">“A man was going down from Jerusalem to Jericho, when he was attacked by robbers. They stripped him of his clothes, beat him and went away, leaving him half dead.</span></span> <span id="en-NIV-25395" class="text Luke-10-31"><span class="woj"><sup class="versenum">31 </sup>A priest happened to be going down the same road, and when he saw the man, he passed by on the other side.</span></span> <span id="en-NIV-25396" class="text Luke-10-32"><span class="woj"><sup class="versenum">32 </sup>So too, a Levite, when he came to the place and saw him, passed by on the other side.</span></span> <span id="en-NIV-25397" class="text Luke-10-33"><span class="woj"><sup class="versenum">33 </sup>But a Samaritan, as he traveled, came where the man was; and when he saw him, he took pity on him.</span></span> <span id="en-NIV-25398" class="text Luke-10-34"><span class="woj"><sup class="versenum">34 </sup>He went to him and bandaged his wounds, pouring on oil and wine. Then he put the man on his own donkey, brought him to an inn and took care of him.</span></span> <span id="en-NIV-25399" class="text Luke-10-35"><span class="woj"><sup class="versenum">35 </sup>The next day he took out two denarii<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25399c" data-link="[&lt;a href=&quot;#fen-NIV-25399c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Luke+10:21-37#fen-NIV-25399c">c</a>]</sup> and gave them to the innkeeper. Look after him, he said, and when I return, I will reimburse you for any extra expense you may have.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25400" class="text Luke-10-36"><span class="woj"><sup class="versenum">36 </sup>“Which of these three do you think was a neighbor to the man who fell into the hands of robbers?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25401" class="text Luke-10-37"><sup class="versenum">37 </sup>The expert in the law replied, “The one who had mercy on him.”</span></em></p>
<p style="text-align: center;"><em><span class="text Luke-10-37">Jesus told him, <span class="woj">“Go and do likewise.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Since we are prostrated before the Father&#8217;s knees with wounded minds and bodies &#8212; injuries sustained while we were sweeping aside all obstacles that other people put up to block the way &#8212; You have no choice but to grant us much grace in this hour. Father, as we look back to see how appropriately we have lived for the past week for the sake of the will, the hope and the ideal, all of which the Father cherishes, we wonder: what is there in our minds that we can offer to the Father? What is there in our bodies that we can boast of to the Father? With what part of our lives did we please the Father? Father, please forgive us. Since we lay prostrate before the Father&#8217;s knees without anything, please give orders to our minds. Please embrace our minds and bodies.</p>
<p>Please allow us not to become traitors who infringe upon the will of heavenly principle before the mission with which You entrusted us in the last days. Although we always think about fulfilling our responsibility, we did not succeed in fulfilling it in our daily lives. Please forgive us.</p>
<p>Although our thoughts and actions cannot but be secular, if the Father takes pity on us and accepts us, then we know we can cross the top of Golgotha and go into the garden of victory. Father, please soothe our minds which are in darkness.</p>
<p>Are there people who have something that weighs on their minds? Father, I pray that You console these people. Are there children who are entangled in a situation where they cannot reveal their own minds and bodies and their own lives? Please allow them to reveal everything to the Father in this hour. Even if there may be some victorious moments in our lives, please let this hour be one where we scold ourselves, revealing them secretly to the Father. Please allow our bodies to become capable of obeying the directives of our minds of their own accord.</p>
<p>Please allow all these people gathered here to resemble one mind and to model themselves after one hyung sang. I pray from the bottom of my heart that You will allow us to become sons and daughters with ardent shimjung, who can prostrate themselves before You and pray, &#8220;Since we offer these minds and bodies to You as the living sacrificial beings, please take us,&#8221; after having You with us for even one hour. Let us steep our minds and bodies in heavenly love and glory.</p>
<p>Father, this day is a holy day, the day when all humankind on this earth sings the praises of Your name. This is also the day on which You promised You would grant us blessing. Father, please bestow blessing upon all humankind and allow great blessing to all of the churches that represent the thirty million people.</p>
<p>Since the final conclusive battle that will distinguish between light and darkness is within sight, please extend Your hands of compassion over the myriads of people who wander about looking for the light. Please guide them in person by reaching out the hands of Your authority to all of their footsteps and in front of their gaze. Father, please, You must personally guide them.</p>
<p>Please let the glorious day come quickly when people of all sorts and conditions who are wandering about in the darkness, their hearts pierced by lamentation and resentment, can prostrate themselves before the Father. Please allow us to see the glory of the providence of the will established by Your command accomplished as soon as possible through the gathering children. Father, I pray this from the bottom of my heart.</p>
<p>Since we prostrated ourselves in this hour before the dignified Father&#8217;s knees, before the hands of power and before the words of creation, please allow all of our fallen nature to be reformed into good nature that can respond to the elements of heavenly life. I sincerely desire that You allow this hour to be one where we can extirpate our various wrong thoughts, subjective opinions and all concepts, and reveal ourselves without pretense and truthfully inform the Father.</p>
<p>I am aware that there are lonely sons and daughters scattered all over who are engaging in a fight holding onto the will. Father! Please be with them there. Please prove to them that You are truly with them. Please manifest the wonderful truth of Heaven everywhere You stay. Please manifest as the spring water of truth everywhere You stay.</p>
<p>I sincerely wish that in this hour You will grant the grace that the lives trapped in the shadow of the death of darkness may receive jubilant liberation and can receive true life before the Father. Since we entrust this hour to the Father, please take charge of it according to Your will. Please unfold the providence, and reap the victory as You wish. Wishing that You not allow a single life from among Your children to be handed over to the bosom of Satan, we entrust everything to You. Please govern all. I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The topic of the speech on which I would like to share my thoughts is <em>&#8220;Jesus Who Is to Establish Heaven&#8217;s Love.&#8221;</em> I will briefly speak on this topic.</p>
<h3 align="center">GOD&#8217;S LOVE THAT IS TO BE RESTORED</h3>
<p>You know very well that, because one eternal center could not be established on this fallen earth, the love that God wishes to find has not been established. God&#8217;s purpose of creation was to accomplish the world of love where God could give and receive the sublime culmination of love in reciprocity with His creation. However, because humankind fell by not comprehending this will of God, such a world could not be accomplished. Therefore, you must understand that the love of God has remained as the standard of hope before all things in the universe and humankind.</p>
<p>Accordingly, the providential responsibility to find and establish God&#8217;s love as a condition of the eternal ideal lies upon us, humankind today. Although many human beings have lived on this earth until now, the standard that can satisfy God&#8217;s internal love and that can materialize the collective ideal of human beings is yet to be completely established. This love includes all created things.</p>
<p>Therefore, you must know that God has labored until now to establish that standard. From now on, until the day when the heavenly love connection left as a hope for humankind gets formed and all things created sing in praise of that love as the eternal ideal, God must make effort.</p>
<p>Today, after 6,000 years of such a toilsome history for God, if someone received the grace to be able to feel God&#8217;s love, that grace is not only meant for that individual being. That is the grace that is to be built by love. All humankind as well as the billions of faithful believers in heaven, the Father, Son and the Holy Spirit can rejoice in it. Only then will all humankind rejoice together in unison, and the billion faithful believers in the heavenly world can be in harmony. Similarly, when God&#8217;s grace manifests itself as the love in which heaven and earth rejoice &#8212; in other words, after the love that is to be established is found &#8212; God will, for the first time, forget all His bitterness and sorrow and rejoice. You must feel this keenly.</p>
<p>Therefore, as long as their lives are sustained, living or dying, fallen human beings must usher in one central figure who is the condition of victorious destiny and the embodiment of immutable love. Only when such a central figure is received will the day arrive when God can rejoice. Unless human beings realize this, the sorrow of human beings will last. As long as the sorrowfulness of human beings lasts, the grief in Heaven will continue. As long as lamentation remains in Heaven, God&#8217;s sorrow will be prolonged.</p>
<p>The one center that is set up as the embodiment of love, eternally immutable in heaven and earth, is the root of hope that we human beings and all things are to meet together. The figure, the root of that hope, who was sent as the central being to establish the standard of eternally immutable love, was Jesus Christ.</p>
<p>By the way, there were many prophets who struggled to introduce Heaven&#8217;s love during the 4,000-year history until Jesus appeared on this earth. There also were many sages who toiled to make a connection to the standard of love that God tried to find, passing through a course of faith filled with indescribable exertion, tribulation and suffering. All of their efforts were made hoping for the one figure to come who is the center of all created beings who cherish God&#8217;s love and desire to live within God&#8217;s will. Therefore, God chose to establish a tribe, a people and a nation centered on such people. With these people, He made preparations to receive Jesus.</p>
<p>With the coming of Jesus, who represents the Israelite nation, the happiness in Heaven was extended to the surface of the earth. The hope of the land pervaded Heaven, so that heaven and earth became able to undo the bitterness and resentment of 4,000 years and to rejoice in happiness for the first time.</p>
<h3 align="center">JESUS&#8217; MISSION AND HOPE CENTERING ON LOVE</h3>
<p>Jesus first had to experience God&#8217;s love in his life. He then had to appear before all humankind as the embodiment of God&#8217;s love. Jesus displayed for the first time, after 4,000 years, God&#8217;s eternal love before all of humanity. He was sent as love incarnate to undo the bitterness of 4,000 years. He constantly wished to meet one man who could link God&#8217;s love to human beings. Jesus tried to find a gathering and a nation of such people.</p>
<p>However, because of the Jewish people&#8217;s distrust of Jesus, you must understand that the will of God, which He labored for 4,000 years to fulfill, and the love of God, which He tried to manifest through Jesus&#8217; life, did not emerge. Jesus came to walk the hateful path of crucifixion.</p>
<p>If the Israelite people had accepted Jesus as the Messiah representing God, as God&#8217;s love incarnate, the substantial being of hope for which their ancestors had fought bleeding for 4,000 years, they would have held onto Jesus and said, &#8220;You are our hope, love incarnate of the eternal God, the figure who will undo the bitter resentment of heaven and connect that pleasure to us. You are the ancestor who will bond God&#8217;s love to us.&#8221; But there was no such response then.</p>
<p>All that Jesus saw, heard and thought was to establish the victorious standard of love that could break down the walls between human beings and God, but there was no subjective being before him with such a mission. That is why Jesus said, &#8220;No one knows me except the Father who sent me.&#8221; These words are fraught with Jesus&#8217; anguish and bitter lamentation.</p>
<p>Human beings then were not aware that Jesus came to undo Heaven&#8217;s bitter lamentation that Jesus came to attest to God&#8217;s love, and that Jesus was a man of love who came to make love flow from the world of all things to Heaven. They did not understand the will of Jesus.</p>
<p>Therefore, you must now become the faithful believers who understand the situation where not only Jesus, but also God, felt sad because the Jewish people did not recognize Jesus and distrusted him. You must understand and believe it. Otherwise, you will have nothing to do with God&#8217;s heavenly love.</p>
<p>Now when Jesus comes again in the last days, you must know what he will require. The Lord who comes again will be looking for a true man who can comprehend him, bearing the responsibility for the Jewish people&#8217;s distrust of Jesus when he came 2,000 years ago as the center of God&#8217;s love and the unified substantial being of the love that was to manifest itself. He will be looking for those who understand what Jesus wished for and who will fulfill his will together.</p>
<p>Due to the Jewish people&#8217;s distrust, Jesus, who came with God&#8217;s love, was put in a lamentable situation where he could not fulfill his responsibility. Such lamentable sorrow is not confined to Jesus only. It was the sorrow of many prophets in history who upheld the decision to have faith in God. At the same time, it was the lamentation of God the Father, who is unfolding the providence to realize the will of the creation ideal.</p>
<p>Jesus, who came to realize the happiness of spiritual beings in spirit world and the ancestors and the happiness of God, came to die on the cross because of distrust. This caused more sorrow for God. You must understand that this is the mistake that the Jewish people committed. The bitterness resulting from it still lingers upon this earth.</p>
<p>What is more, we must be aware of the lonely situation in which Jesus prayed alone at Gethsemane, &#8220;My Father, if it is possible, may this cup be taken from me. Yet not as I will, but as You will&#8221; (Matt. 26:39). This situation is not confined to Jesus. Furthermore, the situation in which Jesus was crucified, embracing sorrowful shimjung, also is not restricted to Jesus alone. His situation is our situation and one in which humankind has to participate today.</p>
<p>The reason Jesus prayed and felt sorrowful was not because he was to fail and die; nor was it because of his fate of having to cross the hill of lamentation. He worried about his responsibility to successfully reach the destiny of history, embracing the heartbreaking shimjung of heavenly love. Looking at the human beings who were to usher in God&#8217;s love upon the earth, he considered about how he himself, who was sent representing God&#8217;s love, could have them become the substantiated bodies of God&#8217;s love. He was also concerned about the fact that humankind has the fate to cross the hill of grief. You must understand that Jesus was not a man who felt sorrowful only for his own sake and experienced heartbreak only on his own behalf.</p>
<h3 align="center">THE RESPONSIBILITY OF FAITHFUL BELIEVERS<br />
FACING THE LAST DAYS</h3>
<p>What kind of men then must we become? Just as Jesus successfully fulfilled his mission to realize Heaven&#8217;s love alone before Judaism, which had assumed responsibility for the 4,000-year providential history, you of today must give witness to God&#8217;s love, stepping out in front of Christianity, which is taking responsibility for the 6,000-year providential history. You must also become the true fellow worker of Jesus who comes to build a world in which you will be happy and in harmony. If you do not carry out such a mission, the Lord will never be able to come. What is more, you must be aware that God will never be able to send the Messiah, centered on God&#8217;s love, on this earth.</p>
<p>We inherited the blood of our ancestors, who betrayed the will of heavenly principle while walking down the 6,000-year course. If we again repeat our ancestors&#8217; guilt-besmudged course, how do you think the Lord will come again to such a place?</p>
<p>Although Jesus of the First Advent, too, came as the center of cosmic love and as the central being who could make us inhale the love of Heaven, humankind at that time did not become his fellow workers. You must know that is why he came to be crucified.</p>
<p>Even if all hopes and faith vanish from the path which humankind walks looking for the ideal of life, the path it has to take for the love that will last forever is the path of historical fate. Therefore, although Jesus, who had come to guide humanity onto this path, died on the cross, the Holy Spirit took over that mission and has carried on the work of the mission on earth.</p>
<p>How far have we come with guidance from the Holy Spirit? We have come to the same situation where Mary could see Jesus, who rose from the dead. To then seek God&#8217;s love, which can embrace the cosmos, what do we have to do now? Each of us has to become the bride of substantiated love whom Jesus tried to find in his time, who will fulfill the will of Jesus and the Holy Spirit. That is why we wander around to restore the bride&#8217;s name today.</p>
<p>In any case, each of you &#8212; who must walk as the bride of the Lord, perform the duty of the bride of the Lord, and establish the standard as the bride of the Lord &#8212; must not content yourself with merely believing in Jesus. You cannot establish the bride&#8217;s standard with faith in name only.</p>
<p>Jesus is a historical figure. He is also the master of our life now and in the future. Therefore, unless you come to possess love with which you can make a connection with Jesus in such a position, even if you may proceed to the bride&#8217;s seat where you can attend Jesus in a certain moment, you cannot stand as the eternal substantiated bodies who can make life ties with Jesus and inherit the pulsation of God&#8217;s love in unison.</p>
<p>For the faithful members, to seek Jesus&#8217; love is not to conduct the pursuit of love in the actual world that is under the control of time and space. It is to sing the value of God&#8217;s eternal love in the world of heavenly love, which transcends history and time, and to establish the value of the eternal God&#8217;s love to take delight in it. This is life-restoring.</p>
<p>When that happens, Jesus&#8217; sorrowful steps on the path of the cross on Golgotha and his cry, &#8220;My God, my God, why have You forsaken me?&#8221; will stop for the first time. If there had been such true, faithful believers 2,000 years ago, Jesus could have stood up as the being of hope on this earth.</p>
<p>There was none among our ancestors who realized Jesus&#8217; hope, throughout history until today. The whole purpose of God&#8217;s having carried on the dispensation for 2,000 years since Jesus until now, is to find and elevate a true human being, who can console the Father in His sorrowful shimjung, who can comfort Jesus&#8217; grief on Calvary, who can provide the Holy Spirit with comfort and console heaven and earth. The person who comprehends the will of God in such a situation should step forward before God, Jesus and the Holy Spirit and can press them to fulfill the task by asking, &#8220;Isn&#8217;t this what You are looking for?&#8221; Until such true, faithful believers emerge, the bitterness that has pierced the very marrow of God and the bitterness of Jesus and the Holy Spirit will not be dissolved.</p>
<h3 align="center">JESUS EXERTED ALL OF HIS HEART,<br />
HIS MIND, HIS DISPOSITION AND HIS POWER</h3>
<p>As we recognize today that we live without establishing love relations with God, what do we have to do? What effort do we have to make? We have to follow the path that Jesus walked. We also have to put into practice the words Jesus said, &#8220;Love the Lord your God with all your heart and with all your soul and with all your mind. This is the first and greatest commandment. The second is like it: Love your neighbor as yourself. All the Law and the Prophets hang on these two commandments&#8221; (Matt. 22:37-40).</p>
<p>You must understand that these words contain the ideal of love that is the vital logic of the universe, the ideal ideology of the universe, and the center of life of the universe. Therefore, you must be able to make a love connection with God, loving God by offering all things as said in these words.</p>
<p>Jesus said, &#8220;Love the Lord your God with all your heart and with all your soul and with all mind.&#8221; The cosmic representative who loved God with all of his disposition and with all of his heart and with all of his mind was none other than Jesus. To receive recognition as the man who came forth with the will like this, Jesus frankly revealed the situation he was in to his beloved disciples. Jesus was the man who employed his utmost for the benefit of Heaven. He was the man who exerted all of his heart, his power and his mind. The Jewish people then were ignorant of God. You must emulate Jesus&#8217; virtues, such as the loyalty with which he, holding onto the great mission of the heavenly way, standing all alone in a swirl of things, showed great sincerity in his service toward Heaven. He demonstrated the heart that exerted all, the mind that represented the will, and the nature that made effort to make the ideal of love material.</p>
<p>In what line does such a nature act? It acts in line with heavenly principle. In what line does the heart act? The heart acts in line with human relations that carry historical significance, and the mind expresses itself in living.</p>
<p>Jesus led his life appropriately, according to the rules of heavenly principle and human relations. By having gone through such a life course, he could make ties for the first time as the first human being with the love that is in accord with heavenly principle. He completed the historical course of humanity. What is more, Jesus labored to bring God&#8217;s love down to the realm of human life. In other words, he exerted all his disposition, all of his mind, and all of his power to bring the love that concurs with heavenly principle to the level of human relations.</p>
<p>Who did Jesus represent symbolically? He represented the character of humanity. In other words, he was the man in the same position as God, who is the center of heavenly character. Accordingly, human conscience must move centering on the original base of Jesus&#8217; character. What is expressed centering on that conscience is human action. This is the whole heavenly providence shown collectively to us.</p>
<p>The character is expressed through the conscience. Because the original base of the character is the root of conscience, if the original base of the character is revealed on the surface of the conscience, then it is not too good. In any case, the character operates without interruption. For example, although it may at first sight seem that the Earth stays still, in reality, it revolves around the Sun. The Moon revolves around the Earth. Similarly, the original base of the heavenly character and the conscience has the same relationship.</p>
<p>You must understand that all the words Jesus spoke are words that represent the invisible God. They were words that represented the comprehensive providence of heavenly principle that displays character according to the rules of heavenly principle and the rules of human relations, or heavenly character and the life- living character. Although many prophets have walked the course of laborious effort to establish the heavenly way throughout 4,000 years of history, Jesus was the man who displayed God&#8217;s nature, more than anyone.</p>
<h3 align="center">JESUS&#8217; CHARACTER, AND HIS LIFE AS<br />
THE SACRIFICIAL OFFERING</h3>
<p>You must be aware that Jesus was the first undefiled fruit, the fruit that displayed God&#8217;s character. No one had ever demonstrated that throughout human history.</p>
<p>Many people before Jesus&#8217; coming had led their lives centered on the conscience to establish ethics and morality on this earth. They became able to offer an undefiled sacrifice before God for the first time in 4,000 years by meeting Jesus, who established the standard of supreme conscience for which Heaven wishes. The will revealed in Jesus&#8217; gospel was to coincide with and fulfill the will for which God wished.</p>
<p>When you look at his blood lineage, Jesus inherited a blood lineage that could not be seen in any of the people in history. It could not be seen anywhere. Therefore, we Christians who intend to walk the path of righteousness toward Heaven must consider such a fact carefully and bear the collective responsibility.</p>
<p>You must understand that every moment of his life, Jesus showed intrinsic attributes centering on God&#8217;s love. Even when confronted with a trivial matter, he dealt with it, assuming the form of an immutable crystal that can represent a great matter.</p>
<p>As you reflect upon Jesus&#8217; life of thirty or so years, what do you think he did until he died, offering all of his life? You must understand that Jesus was the man who left after having come as an unprecedented, undefiled sacrifice offered to God. He represented history in the aspect of the character that human beings must build and also in the aspects of his heart, mind and activities.</p>
<p>We who believe in Jesus, who move according to the will of Jesus, who have decided to emulate Jesus&#8217; heart and seek Jesus&#8217; nature &#8212; how many days have we functioned for the sake of the will? How much have we exerted ourselves for the Father with all our heart, our mind and our character? You must reflect upon yourselves over these points.</p>
<p>You will want to live according to the original heart&#8217;s direction that springs up from the bottom of your hearts and to make the character of Heaven&#8217;s heart our own character. If so, you must represent the will of the heavenly principle by establishing this will which is revealed through your character and heart. Incidentally, until now, nobody has borne such a mission and that is why God has grieved.</p>
<p>Now if you keep a mind in yourself, that mind has to be for the heart and character. Your heart should move toward the will of the heavenly way. If you have a character, then based on that character, you should be able to represent the whole sung sang of God and can form the character that can carry out cosmic love in practice. You have to follow the example of Jesus, who led a life of sincerity without rest, centered on God for thirty or so years &#8212; the substantiated body of undefiled sacrifice representing history and the cosmos.</p>
<p>What kind of man was Jesus, who lived his life this way? He was the standard of cosmic love.</p>
<p>The reason Jesus tried to move forward toward the way of the heavenly principle by establishing the rules of the original nature in human relations, the reason he exerted all of his heart, his mind, his nature and his power, was to own God&#8217;s love. The reason Jesus could carry out the fight against Satan, by establishing the wholesome standards of goodness and righteousness, representing all humankind even in heaven, was because his mind and body accomplished perfection as the substantiated body of goodness through his earthly life. He exerted his nature, his mind and his power.</p>
<p>Therefore, you, too, must exert all of your heart, your mind, your nature and your power to unite with Jesus. Only then, for the first time, can we stand in the position of an object to Jesus. Then, through linking Jesus&#8217; power to us, we can feel God&#8217;s love. Therefore, we must become a sacrifice that is to be offered to the Father through the exertion of our nature, our heart, our mind and our power.</p>
<h3 align="center">CHRISTIAN BELIEVERS WHO SHOULD BE OFFERED<br />
AS THE UNDEFILED SACRIFICE</h3>
<p>As Jesus was offered as an undefiled living sacrifice that God could take with delight, you, too, must offer yourselves as an undefiled sacrifice to Jesus. What is more, you must fulfill the duties of human relations and heavenly ways in your daily lives during your lifetime and feel the pain of Heaven representing Christ, who came to this earth to accomplish the will. You must become the bride who, by experiencing the shimjung of heavenly love that Jesus had, will understand about Jesus&#8217; situation where he was rejected by the prepared denominations and had to go see pitiful and poor people. If you become such people, you can undo God&#8217;s bitter resentment and, simultaneously, dissolve the grievous lamentation of Jesus Christ, who came to save human beings.</p>
<p>Jesus of love came to see the people on this earth, who were immoral and traitorous, and had to discuss his ideal with them. Therefore, we who have ancestors who betrayed Heaven must go back up the course on which they betrayed Heaven and be able to say, &#8220;Father&#8217;s will is this, isn&#8217;t it? Please take this offering of myself&#8221; You must know that God is looking for a man who can be offered as the sacrifice of undefiled matter, who can step forth representing history like this. The like of this no one has ever touched or seen.</p>
<p>Even if you exert your nature, your present nature is one that used to be accepted in Satan&#8217;s world. Even if you exert your heart, it used to exchange whispers with Satan. The same applies to your mind. Therefore, you who are faced with the last days will surely have to transform your satanic nature and heart. You must change your viewpoint on life and your concept of the cosmos. That is because with the viewpoint of faith you have had so far, you cannot win over Satan. You cannot pass through the stage trapped under Satan&#8217;s accusations.</p>
<p>First and last, Jesus died on the cross as the sacrifice of undefiled matter. This is how he introduced his nature, heart and mind to human beings on this earth. Jesus was the man whom God could consider worthy, whom God could call righteous, and whom God could be happy with and love as the representative of all people in history and for all things.</p>
<p>You may sometimes feel Jesus&#8217; nature, which cannot be subjected under Satan&#8217;s accusations and cannot be possessed by Satan. If you have experienced the feeling of such a nature, then you can fathom Jesus&#8217; heavenly character. If you also fathomed such a heart, you will understand Jesus&#8217; internal situation. If there is a man who can see through Jesus&#8217; character and his internal situation, then God can grant him the power of authority.</p>
<p>People do not know there is the great historical focal point of the cosmos to be found and a cosmic barrier station to be passed through. Therefore, since there remains the desire of Jesus that he is offered as an undefiled one, the problem now is how we Christians will attain that desire.</p>
<p>In order for you to find this desire today, you must awaken to being deficient in the past and be contrite about it before God. When you repent, you must shed tears again and again, and you have to have the heart that can replace Jesus&#8217; tears, which were shed during his lifetime of thirty years or so. You must follow the example of Jesus, who single-mindedly exerted all his power, sleeping or waking, eating or starving, to establish the one will. You must feel the sad shimjung of Jesus, who had to walk the path of death.</p>
<p>You should be aware of the fact that Jesus led a life in which he shed tears of repentance for the sake of the human beings who did not have faith on this earth. Further, he is still shedding tears, even in the spirit world. You will still feel insufficient even when you can feel Jesus&#8217; internal shimjung, when you can comprehend the internal ideology of the heavenly nature, and when your tears, shed after learning about the internal background of Jesus&#8217; life, saturate heaven and earth. When you have inherited the heartbreaking shimjung for which tears come to gather in your eyes, and your bones and muscles melt into each other, you can manifest all of Jesus&#8217; love and character welling up from the bottom of his nature, his heart and his mind. From that point on, you can unite into one centered on heavenly ties with Jesus. If you are people who feel such shimjung you will feel grateful before Jesus, who saved you from the pit of death. You will still feel insufficient, even when you fill your minds and bodies and heaven and earth with that feeling of gratitude.</p>
<p>How sad was Jesus? You may not know this very well. Jesus came to undo the sorrowful feeling that God felt while He was losing Adam and Eve, the feeling of heaven and earth collapsing. He was also to carry out the will, representing God, to restore human beings. When he realized he could not fulfill the will for which he had been sent, Jesus felt the same feeling of sadness that God felt when losing Adam and Eve.</p>
<p>Human beings today, who must liquidate the historical heartbreaking lamentation, have forgotten how to feel sad even after they lost God. They have become people who do not know how to feel sorry even after they lost Jesus, the bridegroom. What is more, they have become ones who do not even know that they have the responsibility to console God in His sorrow. If you, too, stay in such a situation, God will not be manifested, no matter how much you may call out to the Father, standing before God&#8217;s providence.</p>
<p>You must understand that what Jesus said were not idle words. If there is a man who exerts his heart, his mind and his nature like Jesus did, truthfully saying, &#8220;My Father,&#8221; toward God, then Heaven will be moved.</p>
<h3 align="center">THE QUALIFICATION TO RECEIVE GOD&#8217;S LOVE</h3>
<p>Therefore, you must become the true sons and daughters who can console God by going beyond history, experiencing the shimjung of Jesus and the Holy Spirit and, at the same time, the sorrowful shimjung of God, who had a deep sense of regret 6,000 years ago. You must understand that only when you become people like this will you be able to materialize the love Jesus cherished on this earth.</p>
<p>Today you face Heaven with too individualistic a value concept and a distorted view of life. If you become beings who truthfully exert all your heart, all your mind, all your nature and all your power, the Father will come to see you, though you do not call out to Him. The Lord will come and hug you without you calling out to the Lord.</p>
<p>If you feel the Father&#8217;s love in such a position, the whole of your mind and body can reach a place where it gets intoxicated with that love and finds delight. Besides, only after you understand such love of the Father and His shimjung will you, too, become the beings who resemble God in the same way a magnet attracts iron. You then can accomplish the ideology of the Kingdom of Heaven that Jesus, who appeared before all humankind on this earth as the substantiated body of love through the ties centered on love, wished to accomplish.</p>
<p>If there had been a mere three people like that, the history of the complete restoration of humanity could have started at the time of Jesus. If there had been a mere three people holding onto the words of Jesus to love him more than anyone, who could represent the laborious God of 4,000 years who raised Jesus, and could represent Jesus and the Holy Spirit, Satan would have caved in automatically. If three such people had gotten together, believed in Jesus and followed him, ready to risk their lives for the sake of God&#8217;s will, this would have happened.</p>
<p>That is why Jesus called three disciples to raise and took them about in times of both difficulty and happiness. However, the ignorant disciples did not understand that Jesus had the will to establish in the human world such a heavenly principle representing the history of the triune God.</p>
<p>Therefore, you must have wisdom. You should acquire wisdom and knowledge about God&#8217;s providence and become clearly aware of the content of the heavenly secrets. You should not stand in a similar situation to the disciples, who did not understand Jesus&#8217; deep thought even while following him.</p>
<p>We must become the people who can save Heaven&#8217;s honor by giving our lives before the church and the will that called upon and chose us. When that happens, the Kingdom of Heaven can appear on the earth for the first time. The enemy, Satan, can automatically be subjugated on the earth. Wishing that the sons and daughters who can share pleasure and pain alike with God and can monopolize God&#8217;s love would appear and become able to receive bows even from Satan, the triune God has unfolded the dispensation and the many prophets and sages have walked the course of labor.</p>
<p>Therefore, there has to emerge one substantiated body of character who will let the billion faithful believers in heaven and earth and the heavenly soldiers and angels subjugate Satan, having the Heaven-revering nature at the center. Singing in praise of Heaven&#8217;s glory, he can mobilize all of them on the earth for the work of providential restoration.</p>
<p>You must keep in mind that we must materialize the desire and love of Jesus, who exerted all of his nature, all of his mind, all of his heart and all of his power. Only then can we live in the realm of God&#8217;s eternal love in which we cannot but be happy</p>
<h3 align="center">PRAYER</h3>
<blockquote><p>please allow us to realize in this hour that we are the pitiable beings who think otherwise, even while we are living in a detestable situation. Father, has there been any one moment when we offered our heart, mind and power to the Father as an undefiled sacrifice? Since there has not been such a moment, please allow us who represent humanity, the people, the nation, the world and the cosmos to be sons and daughters who repent over this of our own accord and feel strongly about our being insufficient before the Father.</p>
<p>Now, since we are awakened, we must offer all of our existence as the undefiled sacrifice, all of our energy, all of our minds and bodies, and all of our nature. Though we knew the Father could not take anything but undefiled matter, we have offered before Heaven what has remained over from our use; we have lived in a random way. Please forgive us, we who are insufficient.</p>
<p>By following Jesus&#8217; example, who labored to accomplish the will of Heaven, we will now offer all things as an undefiled offering in view of shimjung. Beloved Father, we sincerely desire Your blessing.</p>
<p>Father! Please allow us to be the ones who experience the shimjung of Jesus, who longed for Heaven, caring nothing about life and death, by emulating Jesus&#8217; mind from this day on. Please allow us, by becoming those who imitate Heaven&#8217;s nature and mind centered on new love, to become Israel centered on love. Let us be able to worship Heaven by leading a heavenly life centered on love.</p>
<p>Father, I pray from the bottom of my heart that You will awaken us to not become those who do not know that we must become the faithful believers who have to build the ideal world in which Heaven, Jesus and the Holy Spirit can take pleasure. We must become the faithful believers who build the ideal world in which the billion faithful believers and all things created on the earth can take delight, who can proudly stand before the Father by subjugating Satan.</p>
<p>Now we ardently desire You to guide us to shed tears of repentance in the context of the world, to exert our heart in the context of the cosmos, to exert our mind in the context of the cosmos and to exert our character in the context of more than Heaven. Sincerely hoping that You will allow us to attain the glory of being able to attain the perfected individual through leading a life of sacrifice as undefiled offerings for the whole, representing the tribe, the people, the nation and humanity, please guide us to make our minds and bodies presentable and to move on toward the Father. We prayed all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html" title="Permalink to JESUS WHO IS TO ESTABLISH HEAVEN&#8217;S LOVE" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BE THE ONES JESUS WANTS</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html" rel="next">LET US BE THE HARVEST OF GOODNESS HEAVEN DESIRES <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,219 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JESUS WHO LOOKS BACK ON WALKING THE PATH OF HIS FATE &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-784 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-784" class="post-784 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">JESUS WHO LOOKS BACK ON WALKING THE PATH OF HIS FATE</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-02T05:40:56+01:00"> <a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html" rel="bookmark">June 2, 2018</a> </time></span><time class="updated" datetime="2018-06-02T05:40:56+01:00">June 2, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON<br />
February 10, 1957 (Sunday)<br />
Chung Pa Dong Church<br />
Seoul, Korea</p>
<p><em>Luke 22:54-62<br />
</em></h2>
<p style="text-align: center;"><em><span class="text Luke-22-54"><sup class="versenum">54 </sup>Then seizing him, they led him away and took him into the house of the high priest. Peter followed at a distance.</span> <span id="en-NIV-25920" class="text Luke-22-55"><sup class="versenum">55 </sup>And when some there had kindled a fire in the middle of the courtyard and had sat down together, Peter sat down with them.</span> <span id="en-NIV-25921" class="text Luke-22-56"><sup class="versenum">56 </sup>A servant girl saw him seated there in the firelight. She looked closely at him and said, “This man was with him.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25922" class="text Luke-22-57"><sup class="versenum">57 </sup>But he denied it. “Woman, I dont know him,” he said.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25923" class="text Luke-22-58"><sup class="versenum">58 </sup>A little later someone else saw him and said, “You also are one of them.”</span></em></p>
<p style="text-align: center;"><em><span class="text Luke-22-58">“Man, I am not!” Peter replied.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25924" class="text Luke-22-59"><sup class="versenum">59 </sup>About an hour later another asserted, “Certainly this fellow was with him, for he is a Galilean.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25925" class="text Luke-22-60"><sup class="versenum">60 </sup>Peter replied, “Man, I dont know what youre talking about!” Just as he was speaking, the rooster crowed.</span> <span id="en-NIV-25926" class="text Luke-22-61"><sup class="versenum">61 </sup>The Lord turned and looked straight at Peter. Then Peter remembered the word the Lord had spoken to him: <span class="woj">“Before the rooster crows today, you will disown me three times.”</span></span> <span id="en-NIV-25927" class="text Luke-22-62"><sup class="versenum">62 </sup>And he went outside and wept bitterly.</p>
<p></span></em></p>
<p style="text-align: center;">Prayer</p>
<blockquote><p>Father, Your sons and daughters who have struggled and striven for the past week centering on the will, who have fought not to be deceived by the cunning tricks of Satan, are prostrating themselves in the presence of the Father in this hour. Please manifest Yourself, and govern the mind and the body of each of us.</p>
<p>Is there anyone who has resentment that has pierced to the very heart in this hour? Is there anyone who has the mark of Satan in his or her body? My Father who is full of love, please show them the miracle of recreation. Extend the hands of compassion. Please bestow Your grace on us. Sanctify us in this hour so that we can become ones who can bow to the Father with sufficient and adequate minds and bodies before the will that You desire. I pray with a most sincere heart.</p>
<p>Beloved Father, we hung down our heads and prostrated ourselves before the will of the Father, who called upon us the unworthy to inform us beforehand about the work of the dispensation on the order of the cosmos. Please command our minds in person. Urge our bodies. Guide us to be able to run toward the garden of goodness that You want, the will of goodness You desire, and the garden of triumph for which You hope. Beloved Father, I ardently wish and pray that You will raise us to be able to make strenuous efforts toward the fulfillment of the will. Allow us to step forward with conscious strength and self-awakening determination.</p>
<p>The sinful elements, which are unacceptable in the presence of the Father, remain within us. Therefore, Father, please liquidate our wickedness with Your dignified power of authority and, by touching us with the hands of authoritative power, produce the heart of repentance. I pray this sincerely.</p>
<p>This day is a holy day, the day on which You promised You would bless us. Therefore, please bless the numerous altars that are gathering for the sake of the people and guide us to raise the triumphant beacon fire. Father, I sincerely desire that You bless the many sons and daughters who are bowing respectfully in this hour, and that You lower to us the faculty of the sacred spirit.</p>
<p>Father, we have gathered here to frankly reveal all about ourselves before You. Please guide us to do self-analysis again to find out whether we are appropriate beings in front of the Father. Beloved Father, I pray from the depth of my heart that if there still remains anything insufficient which is not appropriate to the Father, You will allow us to repent about it and candidly reveal all of it, so that we can receive the Father&#8217;s advice and counsel. In this time, when there remains part of the course of struggle to be completed, please allow us to unite our minds into one and to become the soldiers of Heaven who can dash forward towards the garden of life.</p>
<p>We know that Your lonesome sons and daughters scattered throughout the countryside are building the altars of blood, sweat and tears to testify to the words of the gospel. Wherever they gather together, I pray with a most sincere heart that You will manifest Your powers in person to openly acknowledge that they are Your triumphant sons and daughters. I pray You will guide them to be able to build the altar of victory that the Father can personally control and unfold the work of power.</p>
<p>Please allow Your sons and daughters present in this place not to have any self-centered concepts, doctrines or subjective opinions. Please allow us to become sons and daughters who can put down everything they own with the mental attitude of a child. Listening to the words of command, let them become contrite about their deficiencies and able to speak about them before the Father. Please allow this hour to be one when we can be grasped by the hands of the Father&#8217;s recreation.</p>
<p>We entrust everything to You, Father, so please do not let this hour be the hour when Satan invades. Wishing sincerely and desperately that You will guide this hour to be one in which only the glory of the Father is manifested, I pray all these words in the name of the Lord. Amen.</p></blockquote>
<p>In this hour today, I will speak briefly on the topic <em>&#8220;Jesus Who Looks Back on Walking the Path of His Fate.&#8221;</em></p>
<h3 align="center">THE ADVENT OF JESUS AND THE<br />
DISTRUST BY THE CHOSEN PEOPLE</h3>
<p>Due to their fall, Adam and Eve lost the garden of eternal ideals that God had granted. In other words, Adam and Eve lost the garden of goodness where they could share the pleasures and pains of life with God. For that reason, they came to leave the bosom of God and started the sorrowful life of longing for God. Accordingly, humankind has walked along the course of a 6,000- year history of sufferings until now, looking back toward God with sorrowful hearts. Just as our ancestors walked the course of life looking back toward Heaven, today all humanity is also walking forward through the course of life, looking back toward Heaven, wishing to restore their original position. Jesus, too, who came to save humankind, was looking for the people on the earth who could look back toward Heaven.</p>
<p>God sent Jesus Christ out of love, hoping that the people of the world would listen to the new gospel of Jesus Christ, who was turning things upside down and altering their life course. He was hoping they could cling to Jesus Christ. However, humankind then and the numerous people since then have not been able to rightfully welcome and attend him, as their master who can make them look back toward Heaven. Because of that, history has been flowing forth without fulfillment of the purpose of life in which they can proceed looking back toward Heaven. Similarly, you of today also are faced with the destiny to go forth looking back toward Heaven at all times. Because humankind cannot go back toward Heaven by its own ability, God provided the way by sending Jesus Christ, through whom humankind can go back. If humankind had looked in the direction that Jesus looked and walked as Jesus walked, humankind could have accomplished the hope of returning to the bosom of God. You must know for certain that this was the central meaning of why God sent Jesus Christ.</p>
<p>The Israelite people and the whole world should have gone back to the bosom of God after achieving the purpose of life that they must go forth looking back toward Heaven, holding on to Jesus. However, because of humankind&#8217;s distrust, Jesus and humankind have become separated from each other, each going different ways. Therefore, you must bear in mind that Jesus was put in a situation where he had to stop walking on his course and look back toward the earth.</p>
<p>While humankind has been passing through the course of the 6,000- year history until today, there has been no one among them with enough faith to turn back toward Heaven and exert himself or herself both physically and mentally. What is more, there has not been a single soul of faith who has wholly devoted his or her life, love and action. In other words, there was no one who became the undefiled sacrificial being who could halt Jesus Christ from stepping further on the course of suffering toward Heaven for humankind. You must know that this was the source of the bitterness that pierced God&#8217;s heart. Humankind must go forward, sweeping aside the influence of the world, appealing for mercy from Heaven. Yet they distrusted Jesus, having held fast to the earthly ground and centering on the hope of the land. Therefore, the dispensation of the will that God had unfolded on the earth for 4,000 years suffered a setback. God sent Jesus Christ to fulfill the will that humankind on the earth, at that time, hoped to be realized. Because they did not elevate Jesus Christ, God ended in a situation where He has had to look back again to the earth, passing through the long history of the 2,000 years since Jesus&#8217; death. In like manner, Jesus and the Holy Spirit came to stand in a position where they, too, have to look to the earth again.</p>
<p>What then was Jesus&#8217; desire that he cherished throughout the thirty years or so of life? His desire was to devote himself solely for others&#8217; benefit. Although he felt sorrow and lamented in his heart, Jesus did not express those feelings. Instead, he led a life of serving and caring for others. If humankind at that time had known Jesus to be the master who could restore and fulfill their whole desire and had turned around toward Jesus, Jesus would not have gone to the cross to die. The Israelite people were to go forth toward God in unified action with Jesus during his course of life to awaken ignorant humankind. Yet because they betrayed Jesus, Jesus had to stop stepping forth on the path he was meant to take.</p>
<p>You must fix this in your memory: Jesus could not fulfill the mission assigned to him by God. Therefore, he had to stand in a position where he looked up again toward Heaven for the sake of humankind and to take the steps seeking the bosom of God as the representative of humankind. If humankind had devoted itself for the sake of God and Jesus and walked the direction Jesus was taking, in his place, and had taken care of him for his sake, Jesus could have reciprocated with humankind in place of God, who loves humankind. The relationship between humankind and Jesus would have been the same as Jesus&#8217; reciprocal relationship with God. Further, Jesus could have ushered in the day of glory by having established the altar of rejoicing on this earth. However, because humankind at that time did not advance toward Heaven, Jesus and humankind have become separated.</p>
<p>Since God bears the responsibility founded on the principle of creation, He wanted to see the day of triumph when humankind reversed their direction and moved forth toward the bosom of God through Jesus. You must understand that, since Jesus who came on the earth was rejected by the Israelite people and crucified on the cross, the will of God&#8217;s dispensation to be carried out through Jesus resulted in failure.</p>
<h3 align="center">THE SHIMJUNG OF JESUS<br />
WHO LOOKED BACK AT PETER</h3>
<p>By the way, while Jesus was going the path of the crucifixion, the lonesome path to the summit of Golgotha, he looked back at someone. He looked back at Peter, who was the representative of the beloved twelve apostles. That was because Jesus feared that Peter, who should be the first one following him, might change his mind. You must become the ones who experience again the sense of being gazed at by Jesus, who looked back at Peter with a loving heart despite having bitter grief in his heart over the fullness of his concern about God&#8217;s will.</p>
<p>Yet three times Peter denied he knew Jesus. Therefore, he ended up standing in a situation where he was completely separate from the will of Heaven and had nothing to do with Jesus. Although Jesus knew all of this, he wanted to find just one person on this earth who could defend him to the last as he walked the path to death and could deeply sympathize with him, so he came to look back at Peter, who was the best, most beloved disciple. You of today must understand that Jesus&#8217; intention to find one true person was buried deep in the gaze that he sent in the direction of the beloved disciple, Peter.</p>
<p>There cannot be any more grievous scene to Jesus, who came with the responsibility of carrying out the whole dispensation of God, than standing in such a situation as this. Not even one person could understand the feelings of longing and lamentation of Jesus, who wanted to find one person who could inherit the mission of him who was heading for the pass of Golgotha, the path of death, owing to the distrust of humankind. Accordingly, Jesus&#8217; heartrending feelings were beyond description. Only God understood Jesus&#8217; sorrowful heart and worried about the lamentable situation of Jesus.</p>
<p>When Jesus reflected on the course of toilsome effort he had walked representing Heaven alone in bitter sorrow for his lifetime, the resentment with which he wanted to scorn humanity and to call down curses on the earth pierced him to the very marrow. However, Jesus restrained himself and stopped to look back at Peter, who was following behind. You must know that unless you can understand such inner feelings of Jesus&#8217; heart, you cannot proudly stand in front of all humankind after inheriting the work of the dispensation of God centering on Jesus.</p>
<p>What then would be the heart of Peter, who was watching Jesus concluding his life by walking the course of tribulation alone? He might have been in awful misery, pining in desolation, not being able to forget the love relationship of the original nature he had with Jesus in the past. Of course, the heart of Peter who was watching the grieving and innocent Jesus being insulted and rebuked and dragged in bonds must have been aching very much. However, because Peter did not realize Jesus was the Messiah who came with the representative mission to restore the whole of humankind, he ended in a situation where he could not step forward on behalf of the other disciples but instead thought only of himself. When servant girls came out before Peter to ask whether he was one of the fellows who were with Jesus, he replied, &#8220;I do not know him&#8221; three times. You must know this clearly &#8212; that aspect of Peter was the representative attitude of humankind on the earth. When we look back upon the circumstances of Jesus and Peter again, the fact that Jesus turned to look back at Peter, who denied him three times, did not take place only between Peter and Jesus, but is shown to have happened throughout the course of the whole of history. When all the humanity of the world steps forward before Satan as true Christians on behalf of the will of Christ on the course of Heaven, they will definitely meet ungrounded accusations three times. This can be seen as the symbolic expression of the positions of Adam, Jesus and the Lord of the Second Coming during the 6,000-year history. This will again take place in the final days in the forms of World War I, World War II and World War III. Such happenings will appear not only during the whole of history like this, but also within your individual course of faith today. You must understand this.</p>
<h3 align="center">PETER&#8217;S SELF-AWAKENING</h3>
<p>Today then, what is going to happen right before you meet the Lord? Just as there was the hour of betrayal in which Peter said, &#8220;I do not know him,&#8221; toward Heaven, we must be aware that such a time can possibly come even to us today, faced with the final days. We are faced with the historical, dispensational and religious fate to follow after the triumphant Jesus and to find and establish ourselves in the external position of Peter. We who must climb over such a hill of fate as this must understand we are responsible for whatever situation exists.</p>
<p>As Jesus walked on the pass to Golgotha before he resurrected from the cross, all Christians of the world must walk on the path to Golgotha with the Lord in the final days at the time of Second Coming, to take part in the glory of resurrection. We must bear in mind that such a time will surely appear.</p>
<p>Today then, from what position must we lead our life of faith? just as there was a moment in which Peter could not externally say, &#8220;I know him&#8221; while being heartbroken internally as his beloved and innocent teacher was being dragged on by the Roman soldiers, there will be a time when we of today will be put in a situation where, because of certain worldly conditions, we have to say against our will, &#8220;I do not know Jesus.&#8221; We then must be able to say, I know Jesus. What is more, we must lead a life of faith, constantly paying attention to such vulnerable points.</p>
<p>Jesus, who walked to the pass of Golgotha on the earth has walked forth until today to the pass of the world-level Golgotha even in the spirit world. Similarly, Jesus who personally walked the path to the crucifixion and the course of tribulation on earth and in the spirit world, leaving behind the beloved faithful believers, will develop a great conclusive war against Satan in the future.</p>
<p>In what kind of situation should we stand when such a time of fierce battle comes upon the earth? We should not be standing in a situation similar to Peter&#8217;s when he said he did not know Jesus. We must become those triumphant sons and daughters who can defend the course of blood, sweat and tears that Jesus walked to the end, standing in a similar situation as Jesus, having divulged all of our reasons, circumstances, sinfulness and inadequacy reflecting on ourselves again. Unless we can stand in such a position, we can not take part in the glorious position to receive the returning Lord.</p>
<p>Although Peter denied Jesus three times, saying he did not know the teacher who stood in the difficult situation, Jesus truly turned his body around to look at Peter. Consequently, when Peter saw Jesus turning around to look at him, forgetting all about his own difficulties and sorrow and his own reasons and circumstances, a complete revolution took place in his mind. Despite his three dreadful denials of knowing Jesus, upon seeing that Jesus truly cared about him and worried about his future, in spite of his own sorrow Peter experienced an explosion of emotion within. The moment he remembered and sensed the old relationship of having shared the joys and sorrows of the Lord, Peter became aware of his own identity on the spot.</p>
<p>Peter saw the fact that Jesus, having determined to risk his own life to accomplish the one will of Heaven, was making a great effort to proudly cultivate the path of salvation for humankind without being affected too severely by the resentment that he felt as a human being. Peter saw that even as Jesus walked the path toward heaven to death, Jesus was even concerned about the well-being of him, Peter. Peter felt insufficient and inadequate internally. In other words, when Peter contrasted the position of Jesus, who represents God, and his own position, which was to represent Jesus as the disciple who had pledged to render devoted service for the sake of Jesus only, he realize that there existed a world of difference between his devotion to Jesus and Jesus&#8217; reverence for God.</p>
<p>What is more, although he had thought he believed in Jesus, the minute he found out his faith was based on self-centeredness rather than on Heaven-centeredness, as was the case with the Lord, Peter received such a great shock as to be deeply ashamed of himself at the gaze of Jesus. In short, he lamented about being distrustful.</p>
<h3 align="center">PETER&#8217;S CONTRITION AND THE VALUE<br />
OF HIS NEW DETERMINATION</h3>
<p>We must know that the minute Peter saw Jesus who endured the course of a cosmic level mission without being doubtful at all &#8212; a figure of eternal immutability in the course of faith toward Heaven &#8212; Peter&#8217;s mind underwent a complete change. He felt an impulse to live for the sake of the Lord for the rest of his life. Once he came to realize he was being distrustful, Peter thought about the relationship between Jesus and himself and contrasted their life courses. As a result, he felt his own inadequacy more strongly.</p>
<p>Jesus offered himself as a sacrificial being before Heaven for the sake of the One will, without pursuing his own happiness but for the benefit of humankind on the earth. He did not show any resentment in spite of being dragged away bearing the cross on his shoulder. Watching this, the three disciples came to realize that their lives had been too self-centered. Thereupon, before Jesus Christ who was not self-centered, the disciples reflected on themselves of their own accord and could make a definite promise and pledge to take over the will Jesus had hoped for and to realize the will on this earth.</p>
<p>What did Peter feel next? He felt his own distrustfulness and simultaneously the mistrustfulness of Jesus&#8217; entourage. While watching those wicked ones around him tie Jesus up and enjoy themselves whipping Jesus Christ, who was innocent, and about whom anybody and everybody would say he was guiltless, Peter could see through the heart that was sorrowful and lonesome when he met the gaze of the persecuted Jesus. Before the warm glow being sent off in his direction by Jesus, who was showing the way to protect and obey Heaven&#8217;s rule even in such an undeserved situation, Peter felt the haughtiness of the surroundings. Then Peter, Jesus&#8217; disciple, made a righteous resolution to fight against the haughty power of the surroundings until the time when the Lord would return to destroy the wicked crowd who could not be on the side of Jesus Christ.</p>
<p>There was a cosmic difference between the good, immutable attitude of Jesus who was heading toward Heaven and the haughtiness of his surroundings . Through Jesus&#8217; gaze, who turned briefly to look, Peter could liquidate his fatuous life history and determine to establish the standard of goodness by purging the environment and devoting himself toward God all the more. Through Jesus&#8217; dying in silence for the sake of Heaven, earth, humankind and the will, Peter came to respect the Lord naturally and shed penitential tears, weeping bitterly in the face of such a death.</p>
<p>This fact made Jesus Christ, who turned to look for the last time, realize that there was a disciple who understood him, and that it was the moment in which the link that was disconnected between Heaven and humankind was being restored. Feeling insufficient and inadequate toward Jesus, who died before the will of God on behalf of heaven and earth, Peter alone shed the tears of contrition representing all humankind and the many disciples. After seeing that Jesus was being put to tribulations before being crucified, only Peter wailed, shedding tears. Because of this, you must know that a standard by which Jesus could uphold the dispensation centering on the disciples and a new standard by which Jesus and humankind could connect was created.</p>
<p>Just as Christians have hoped and longed for the time of resurrection and the Second Coming, holding onto the will of God alone since the time of Jesus&#8217; crucifixion, you have to go through a similar situation. What is more, you must go through the process of restoration through indemnity from a position similar to that in which Peter found himself. Since this is the last fate left in the course of your faith, you have to be able to model yourself after the principles of Jesus by earnestly looking back on the relationship between Jesus and yourselves in a serious manner. You must bend down and be contrite before Jesus&#8217; countenance.</p>
<p>The problem is whether we have cared about the Lord while living, the way the Lord has been concerned about us, throughout the course of our life of faith up to now. Although you may say you have lived your whole life being concerned about Jesus, how can that bear comparison with the life of Jesus, who was looking at Peter while thrusting his way through the place of death?</p>
<p>Now, in accordance with the principle of restoration through indemnity, in the same manner that Jesus looked back at the crowd on the path to death, we, too, must become those who can turn to look at Jesus on the path to death. In such a situation, we have to suffer and worry in place of Jesus while looking back, to stand in a position where we represent Jesus. At the same time, we must attend and worship Jesus in a glorious environment. The question is whether you ever had such an occasion. If you never had such an occasion, on the last day, on the day we receive the glory of resurrection, as Mary Magdalene grabbed hold of the resurrected Jesus Christ, you will not be able to grab hold of the Lord of resurrection and say, &#8220;Oh, my Lord!,&#8221; and &#8220;Oh, my bridegroom!&#8221; Although Peter and the three disciples were restored for the first time by looking back at Jesus on the cross, there has not been any faithful believer who has gone to the kingdom of Heaven holding onto Jesus in person.</p>
<h3 align="center">THE RESPONSIBILITY OF THE FAITHFUL BELIEVER,<br />
WHO IS TO LOOK BACK AT JESUS</h3>
<p>Now to become true, faithful believers whom Jesus can live with and whom Jesus can motivate according to his instructions to become true disciples who are loved by Jesus, you of the last days must be able to be concerned truly about Jesus&#8217; well-being and to fight against Satan for Jesus, just as Jesus looked back at Peter even while walking the path to death. Otherwise, you must understand, you will not be able to bow respectfully to God, holding onto the glorious Lord.</p>
<p>Although we are leading a life of religious faith, we have not led a life of being concerned about the well-being of Jesus throughout all of our day-to-day life. Therefore, although Jesus came looking for us hundreds of thousands of times, because of our distrusting lifestyle, he might have only looked at us with sad eyes, turning around reluctantly. Although Jesus came looking for us and had many occasions to do so, we cared only for ourselves, not being sensitive to his situation and his state of mind. We have led an easy religious life hoping that things would work out as we wished.</p>
<p>When Peter contrasted the history of his life and the history of Jesus&#8217; life before the gaze of Jesus, he felt remorse about his distrust and became conscious of the fact that he had lived too self-centeredly. Similarly, when you, too, contrast your own life history with that of the thirty or so years of Jesus, and when you compare your life course with the dispensational life course of Jesus, who has upheld the dispensation for 2,000 years until now for the sake of God, you cannot but feel that you have lived self-centeredly, just as Peter felt. Unless you shake yourselves free from the path of such distrust, you must know that you can in no way greet the returning Jesus.</p>
<p>From what position then do you have to move forth? Acting in line with Jesus&#8217; unceasing gaze, you must be able to feel and experience the state of Jesus&#8217; mind and to move forward as far as the seat of the grace of resurrection, after crossing over the hill of crucifixion &#8212; not the top of Golgotha, which is on the verge of seeing the suffering on the cross. To do that, you, like Peter, must be contrite about having a self-centered concept of religious faith. In the same way Jesus lived, having his center on the will of God, not on himself, you too must live for God&#8217;s will, not having a concept that your faith is only for your salvation and for the benefit of your well-being.</p>
<p>You of today have a concept of faith based on self-centeredness, just as Peter did. Peter&#8217;s faith was based on his own well-being. Peter betrayed Jesus three times while he was not aware of it. You must keep in mind that such occasions when you reject Heaven will occur at some time, some moment and some period while you are not aware of it.</p>
<p>In other words, you must lead the life of faith in which you have faith, not in yourselves but in Jesus, in which you seek not for yourselves but for Jesus, and in which you make your goal not for the sake of yourselves, but for Jesus. You have to be aware of the fact that when Peter tried to lead a life of soul-searching faith, he had to go through indescribable hardships and deprivations. As a result, his relationship with Jesus was finished, so you must steer clear of such a situation. You must change the style of your religious life of faith from one seeking your own benefit to one seeking the good of Jesus and God.</p>
<p>Next, just in the same way Peter restored the atmosphere from that of distrust to that of trust and was grieved at the fact that he had been distrustful, you too must move forward with righteous indignation and animosity against the distrust that is against God&#8217;s desire. You then must walk on the course of goodness that God desires. What is more, the goodness must not be self-centered, but God-centered, and the goodness must be linked with ourselves. Only when you find this goodness can you, too, for the first time, feel sorry for the sake of humanity and for the good of heaven and earth in Peter&#8217;s position, just as Peter felt grievous upon seeing the atmosphere where the will of God was not being fulfilled.</p>
<p>Now today, you have the responsibility to achieve the final victory in front of the Father, Jesus and the Holy Spirit. What is more, you must become the ones who can follow Jesus, who is walking on the path to Golgotha, not betraying him.</p>
<p>You should not become the ones who are concerned about their well-being. Instead, you should be able to exhort, &#8220;Oh, my teacher,&#8221; following Jesus, who forgot about his own suffering. In other words, you must not become the ones at whom Jesus gazes out of concern. Rather, you should become those who can comfort Jesus with the heart of caring and being concerned about putting yourselves in Jesus&#8217; position.</p>
<p>Who was doing this work? Only Jesus has repeated the work of shedding blood, sweat and tears for the sake of humankind until today, hoping the day when this work was completed would come.</p>
<p>Now you must not become the target of Jesus&#8217; concern while living your lives. You should not become the ones who offend the faith, against the will of Jesus, who has placed all of his hopes in us and the dispensation of God. Just as Peter sighed for grief looking back on himself after he had distrusted Jesus, you too must lament about your own distrustfulness and move forward, ready to risk your lives, with the heart that has tacit understanding about the circumstances of sorrowful Jesus, who was sacrificing himself for the will of God. Accordingly, only when you move forward with the determination that you, too, will go Jesus&#8217; course and cross over Golgotha, can you greet the resurrected Jesus as the bridegroom and return happiness and glory before Heaven.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>The mission to pass through the grievous high road with the heart of painful memory at the cosmic level Golgotha, blocking the course of the wrongful history of humankind and building the victorious grounds of Heaven, is left to the 2.4 billion people in humanity. Loving Father, please allow us to become the ones who can understand that the solicitude You showed after You sent off Jesus did not arise just from the Golgotha of the past only, but also struck home before our very eyes today.</p>
<p>I pray from the bottom of my heart that although we must also become the ones who can cry out of anxiety about our insufficiency at the present time, please guide us to become sons and daughters who can cry, being concerned first about the result of Jesus&#8217; hope. Please allow us to become the ones who cry worrying about our own imperfect selves, and who simultaneously shed tears and repent of our sins for Satan&#8217;s making a fool of Jesus, howling at him and throwing obstacles in his path as the world changed into a wicked place that did not see the will of God fulfilled.</p>
<p>Jesus offered himself as the sacrifice until the moment of his death to complete the course of restoration through indemnity, always feeling God&#8217;s gaze upon him. Like Jesus, no matter which day and what time he comes to see us, Father, please do not let us forget his gazing upon us and his pacing toward us. Please allow us to be awakened to the fact that we have refused countless times until now to have Jesus&#8217; gaze upon us and step toward us.</p>
<p>Father, please guide us to repent for not being able to comfort the sorrowful shimjung of Jesus, who kept coming back looking for us without change, though we betrayed him two or three times and were unable to shed tears before Heaven on so many occasions. Father, since we know that the time of world-level judgment is near and that the garden of the cosmic-level Golgotha is coming around the corner, please guide us, Your lonely sons and daughters, not to walk the self-centered course of religious faith.</p>
<p>Our life is not our own, the life we are leading is not our own, and the hope that we cherish is not our own. So, beloved Father, I earnestly hope and desire that You guide us not to lead our lives for the sake of ourselves and not to take all of our ability, our demands and our desires for the benefit of ourselves.</p>
<p>Peter shed tears as a comrade, believing in God, upon seeing Jesus bearing the cross, having understood at last about the constancy of Jesus&#8217; faith and lamenting in his heart about misunderstanding before. Even if we step onto the path of death for Jesus, loving Father, I pray sincerely that You, before Golgotha&#8217;s judgment day comes, can guide us to become the sons and daughters who can shed tears of repentance before Jesus, who can cry before the Father, and who can speak out their mistakes, undertaking to repent on the cosmic level.</p>
<p>Father, since we will follow in Jesus&#8217; footsteps, please entrust us with the mission to save the miserable people of this earth. Allow us to walk the remaining part of the pass to Golgotha. Beloved Father, I pray from the bottom of my heart that You will guide us to destroy satans all over the world, to establish the glorious foundation of victory, and to serve and worship the resurrected Jesus during our lifetime.</p>
<p>Please allow us to fulfill the will of the Father in the last days. I pray that You will let us shake ourselves out of being distrustful and leave the world of mistrust to the world of eternal trust. I pray that You will guide us to become the sons and daughters who can repose eternally with the Father who can subjugate and give commands to Satan, standing on the side of Heaven with the love of the Father. I prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html" title="Permalink to JESUS WHO LOOKS BACK ON WALKING THE PATH OF HIS FATE" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html" rel="prev"><span class="meta-nav">&laquo;</span> JESUS&#8217; VIEW OF LIFE FOR THE SAKE OF THE RESTORATION</a></div>
<div class="nav-next"><a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html" rel="next">LET US BE THE ONES JESUS WANTS <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,252 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BE THE ONES JESUS WANTS &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-786 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-786" class="post-786 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BE THE ONES JESUS WANTS</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-02T05:55:56+01:00"> <a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html" rel="bookmark">June 2, 2018</a> </time></span><time class="updated" datetime="2018-06-02T05:55:56+01:00">June 2, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">February 17, 1957 (Sunday)<br />
Chung Pa Dong Church<br />
Seoul, Korea</p>
<p><em>John 11:1-20</em></h3>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-11-1">Now a man named Lazarus was sick. He was from Bethany, the village of Mary and her sister Martha.</span> <span id="en-NIV-26526" class="text John-11-2"><sup class="versenum">2 </sup>(This Mary, whose brother Lazarus now lay sick, was the same one who poured perfume on the Lord and wiped his feet with her hair.)</span> <span id="en-NIV-26527" class="text John-11-3"><sup class="versenum">3 </sup>So the sisters sent word to Jesus, “Lord, the one you love is sick.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26528" class="text John-11-4"><sup class="versenum">4 </sup>When he heard this, Jesus said, <span class="woj">“This sickness will not end in death. No, it is for Gods glory so that Gods Son may be glorified through it.”</span></span><span id="en-NIV-26529" class="text John-11-5"><sup class="versenum">5 </sup>Now Jesus loved Martha and her sister and Lazarus.</span> <span id="en-NIV-26530" class="text John-11-6"><sup class="versenum">6 </sup>So when he heard that Lazarus was sick, he stayed where he was two more days,</span><span id="en-NIV-26531" class="text John-11-7"><sup class="versenum">7 </sup>and then he said to his disciples, <span class="woj">“Let us go back to Judea.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26532" class="text John-11-8"><sup class="versenum">8 </sup>“But Rabbi,” they said, “a short while ago the Jews there tried to stone you, and yet you are going back?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26533" class="text John-11-9"><sup class="versenum">9 </sup>Jesus answered, <span class="woj">“Are there not twelve hours of daylight? Anyone who walks in the daytime will not stumble, for they see by this worlds light.</span></span><span id="en-NIV-26534" class="text John-11-10"><span class="woj"><sup class="versenum">10 </sup>It is when a person walks at night that they stumble, for they have no light.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26535" class="text John-11-11"><sup class="versenum">11 </sup>After he had said this, he went on to tell them, <span class="woj">“Our friend Lazarus has fallen asleep; but I am going there to wake him up.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26536" class="text John-11-12"><sup class="versenum">12 </sup>His disciples replied, “Lord, if he sleeps, he will get better.”</span> <span id="en-NIV-26537" class="text John-11-13"><sup class="versenum">13 </sup>Jesus had been speaking of his death, but his disciples thought he meant natural sleep.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26538" class="text John-11-14"><sup class="versenum">14 </sup>So then he told them plainly, <span class="woj">“Lazarus is dead,</span></span> <span id="en-NIV-26539" class="text John-11-15"><span class="woj"><sup class="versenum">15 </sup>and for your sake I am glad I was not there, so that you may believe. But let us go to him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26540" class="text John-11-16"><sup class="versenum">16 </sup>Then Thomas (also known as Didymus<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26540a" data-link="[&lt;a href=&quot;#fen-NIV-26540a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+11:1-20#fen-NIV-26540a">a</a>]</sup>) said to the rest of the disciples, “Let us also go, that we may die with him.”</span></em></p>
<p style="text-align: center;"><em><span class="text John-11-17"><sup class="versenum">17 </sup>On his arrival, Jesus found that Lazarus had already been in the tomb for four days.</span> <span id="en-NIV-26542" class="text John-11-18"><sup class="versenum">18 </sup>Now Bethany was less than two miles<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26542b" data-link="[&lt;a href=&quot;#fen-NIV-26542b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+11:1-20#fen-NIV-26542b">b</a>]</sup> from Jerusalem,</span><span id="en-NIV-26543" class="text John-11-19"><sup class="versenum">19 </sup>and many Jews had come to Martha and Mary to comfort them in the loss of their brother.</span> <span id="en-NIV-26544" class="text John-11-20"><sup class="versenum">20 </sup>When Martha heard that Jesus was coming, she went out to meet him, but Mary stayed at home.<br />
</span></em></p>
<p style="text-align: center;">Prayer</p>
<blockquote><p>Father who lost the garden of love and the garden of goodness! Please allow the sons and daughters gathered here today to feel and understand the Father&#8217;s situation, that You could not fulfill the one &#8220;will&#8221; You had established during the long interval of history. You could not find the true human beings of the original nature for which You hoped. Please manifest Your powers in this hour so that we can stand as beings who have nothing amiss on our parts, to be embraced in the bosom of the Father who loves.</p>
<p>Since we are placed in such a position of need that we have to ask the Father for everything from beginning to end, please lead us with Your hands of compassion. Since the sinful power and the nature we inherited from our ancestors have closed the doors of our minds, please manifest the grace of power to open the doors of our minds, which are in the darkness. Guide us to be able to run for goodness. This I pray from the bottom of my heart.</p>
<p>Since so many troubles and difficulties are placed before Your sons and daughters who want to move forward toward the will of Heaven, Father, please grant us strength and grab hold of us with Your hands of power. Please assign to them the task of fighting the whole battle that You have fought, and guide them to be victorious. Accordingly, Father, I sincerely desire that You will allow us to be the sons and daughters who can accord high praise for the will of God before thousands upon thousands of satans.</p>
<p>In this hour, since we came forth before Your knees, please allow us to examine and find out by ourselves what we have to offer before the Father. I ardently desire that if there is no gift we can offer which the Father can receive with joy, then please let us be contrite about it. Allow this hour to be the hour in which we can receive the grace of the Father&#8217;s compassion.</p>
<p>We came to realize that the mission Heaven has entrusted in us is not for the sake of our individual selves only, but for the benefit of the people and humankind and for the elimination of the bitterness and resentment of the thousands upon thousands of faithful believers. Since we who are unworthy have the mission to fulfill the will of such a heavenly way, please make the minds and bodies of Your sons and daughters, who lie prostrate here as the sacrifice, fulfill the one cosmic will for which You wish. Beloved Father, I sincerely desire that You will raise us to be absolutely good enough to fulfill the will.</p>
<p>Since there are children who still have elements that cannot be tolerated before the will of the Father, before the grace of the Father, and before the bosom of the loving Father, please address us with the power of authority and the words of recreation. Beloved Father, I ardently desire You to guide this hour to be one in which we can shed tears of repentance for the fact that we were not able to understand the Father&#8217;s mind.</p>
<p>We thank You for entrusting us, the unworthy, with the mission of Heaven to represent the thirty million people and carry on the fight. Father, since Your sons and daughters, who have gathered thinking about the will, have the cosmic-level responsibility to lift the banner of battle and move forward toward Heaven, Father, please grant this people Your power.</p>
<p>Please unfold the work of inspiration and the actual work of miracles during the lives of these people so they have no choice but to march forward toward the will of the Father. Father, please guide them to run for the course of eternal immutability. Beloved Father, I then sincerely desire You to guide them to win in the fight against the billions of satans and to be able to more than prove, before all the crowds of people, that they are the sons and daughters with whom the Father is. Since I know that this day is a holy day, the day You set up for granting Your blessing as You have promised, I offer this wish from the depth of my heart: that You will grant Your sons and daughters, gathered here today, the grace to be embraced in the bosom of God with deep and lofty love and to be able to lead a life of original nature.</p>
<p>Father, please unfold the will of the dispensation that You promised wherever the lonely family members, being scattered in all directions, are making efforts to propagate the words of truth You granted. Beloved Father, I pray that You will allow the actual work of miracles to attest that they are the living Father&#8217;s sons and daughters. I pray that they may wake up every man and woman in the realm of darkness.</p>
<p>Now we lie prostrate before the Father. If there were any inappropriate and insufficient concepts, subjective opinions and movements before the Father, please allow us to own the heart that can bow humbly and meekly in order to divulge all of our own accord and be cleansed with the kindness of the dignified Father. Father, please govern this hour in order for Satan not to seize a moment. I pray that You will guide us to bow with gratitude before the grace of the Father, who guided us to conquer all trials and become triumphant. Entreating that only the will and the love be with us in this one hour, I prayed all these words in the name of the Lord. Amen.</p></blockquote>
<p>The topic of today&#8217;s sermon is &#8220;Let Us Be the Ones Jesus Wants.&#8221; I would like to share such thoughts with you briefly.</p>
<h3 align="center">THE PURPOSE OF JESUS&#8217; DESCENT</h3>
<p>You know very well that Jesus, who appeared on this earth embracing the will of Heaven which had been concealed within the bosom of God, was the figure who came to look for the true sons and daughters who could stand on the top of the mountain of triumph, stepping over the sinful history created by our ancestors. What kind of mind then did Jesus have when he appeared before humanity on this earth? He appeared with the same mind with which humankind respectfully behaved toward God. You must know that all the things that Jesus saw, listened, felt and thought were not functions of the senses that Satan could take pleasure in, in the realm of the fall, but were functions of the original nature. Jesus came to propagate the words of the new gospel by setting up the standard of life with the will of the whole that God demanded of all humankind.</p>
<p>The eyes that saw, the ears that listened, the mouth that spoke, the nose that smelled, and the body and limbs that felt everything were different in Jesus from those of humankind on the earth, whose purpose was to accomplish their own desire. By rising above the sinful world and by practicing, of his own accord, the words that are issuing forth from God&#8217;s heart (words that are proper before the will of God and that God can take pleasure in), Jesus established a condition of triumph and an example that all humankind can follow.</p>
<p>What kind of person did Jesus, who embraced such a mind, want to find? In other words, what kind of person did he look for? Unless there is a person who understands what standard of man Jesus wants and restores that standard, the will that Jesus and God wish for will not be fulfilled on this earth. You must surely understand this.</p>
<p>The will that God demands to be fulfilled through Jesus, as the condition of worldwide victory, was that all humankind become united into one with Jesus, following the example of Jesus himself. in other words, God and Jesus wanted all humankind to follow the example of Jesus and to become those who could share joy with Jesus. Similarly, since Jesus appeared on this earth with the mission to restore all humankind, the feelings and senses that Jesus expressed in words and felt with his body were fundamentally different from those that we speak and feel with our bodies these days.</p>
<p>Today, when we worship Jesus as the Lord, what do we have to do? First, we must be able to fathom the heart of Jesus, who bore the responsibility to fulfill the will of Heaven and the collective responsibility to complete the history of salvation for the universe. We must then proceed to the level of the standard on which Jesus felt, experienced and thought, and stand in the position of a companion who can reciprocate with Jesus directly. Unless you reach that level, Jesus will end up being miserable.</p>
<p>Although God exerted Himself to the utmost to create Adam and Eve and tried to experience happiness through them, because of their fall, bitterness pierced the very heart of God instead. It was Jesus who came to mitigate this bitterness. What then was Jesus trying to do in such a position when he came on this earth? He tried to find and establish one true person who could shake himself free from the depraved condition, just as a man of original nature who is not fallen can appear before God as a worthy person unaccused by the enemy, Satan,</p>
<h3 align="center">THOSE WHO DID NOT ATTEND THE LORD</h3>
<p>Although Judaism was supposed to provide one true person in whom Jesus could take delight, it did not. Jesus stood in a situation just as when God became sorrowful because of Adam and Eve&#8217;s unexpected fall, in spite of God&#8217;s wish to rejoice through them after their creation. Jesus felt indescribably sad when he came to be crucified owing to the distrust of the Jewish people who had been prepared for the sake of God&#8217;s will.</p>
<p>Jesus&#8217; coming was to alleviate God&#8217;s sorrow caused by the first human ancestors. Therefore, you must become the faithful believers who will mitigate the resentment of Jesus, who was put into such a sorrowful position due to the distrustfulness of the Jews of his day. Unless you can become such persons, you will not be able to become the ones that Jesus requires and for whom God looks. You must heed this.</p>
<p>Today, although we gathered ourselves to be the ones whom Jesus and God require, there are so many conditions scattered around in our surroundings that stand in our way to becoming such persons. That is because Satan always obstructs our passage. Similarly, Satan always tries to find something to accuse us about in our lives.</p>
<p>Adam and Eve fell a long time ago because they could not distinguish whether what they heard was good or bad. When Eve heard what the archangel was saying, she could not distinguish if what he said was true or false, yet she acted. That was the beginning of the fall.</p>
<p>Today then, what do we who must restore this have to do? We must become capable of discerning right from wrong for ourselves when we hear what is said, with righteous and truthful ears. Unless you become capable of discerning what you hear, you must know that you, too, may yield to Satan&#8217;s temptation while you are not aware of it and end up violating heavenly principle. Today on this earth, you may hear many things. Among them, there may be words said about Heaven speaking for God, words said centered upon human pleasure, and words said centering on Satan. However, unless you can discern the realm from which these words that buzz in your ears come, sometime, somewhere, you may listen to the words of Satan and may, because of it, lose your life to him. Therefore, you must always be awake and able to distinguish good from bad.</p>
<p>Jesus, who propagated words of truth to save all of humankind, cried out to the Jewish people at that time, &#8220;Those who have ears, listen!&#8221; Jesus said these words because he was certain that those who had righteous ears would listen to him and consider the words they heard as words of life. However, there was not even one person who believed the cries of Jesus to be the words of Heaven. Therefore, the grief and resentment that Jesus&#8217; heart felt were beyond description.</p>
<p>We who have gathered today to mitigate Jesus&#8217; sorrow must, therefore, be able to listen to and understand the words Jesus spoke as the words that substitute for the life of Jesus and Heaven. What is more, we must reflect on ourselves to see if we are such beings. Only when you become those who lend your ears to listen to the words of Heaven can you stand with dignity before the will of Jesus.</p>
<p>Jesus spoke the words as a substitute for the heart of God, who labored for 4,000 years. The words substituted for the position of God, who has to restore the whole circumstances in which Adam and Eve fell in the Garden of Eden. They were the words of inspiration and restoration to recover the fallen world. Jesus spoke such words before the people, but there was no one who listened.</p>
<p>We must understand that because we have ancestors who did not believe in Jesus and who inherited the blood lineage of fallen Adam and Eve, who could not discern God&#8217;s word from Satans word, there are many satans blocking our way in the course of restoration. Therefore, we must be able to discern true from false when we hear even one word. Unless you can distinguish what is right and what is wrong, you can become neither God&#8217;s sons and daughters nor Jesus&#8217; bride.</p>
<h3 align="center">THE QUALIFICATION TO BECOME JESUS&#8217; BRIDE</h3>
<p>Facing the final days today then, to become the bride who cannot be separated from Jesus for eternity, what must you do? First, you must become those who can listen to the voice of Jesus, who poured out his longing and grieving heart upon seeing the people who would not hear reason in spite of having ears and who could not comfort him. When you become such persons, you can fulfill the will for which God wishes, that Jesus desires, and that thousand upon thousands of faithful believers want, relying on your own efforts. You must know clearly that the words you hear as individuals are accompanied by historical and cosmic-level responsibility, which you must bear.</p>
<p>Next, you must become those who can see things correctly. People at that time, even in their dreams, did not expect the Messiah from Heaven, who was sent representing a 4,000-year history, to appear as such a haggard figure. Thus, they could not recognize him as the Messiah. Who could have known that Jesus-who was born the son of Joseph and who had worked for thirty years or so as an unkempt, unmarried carpenter-was the one hero God wanted to show to all humankind for the first time? Nobody knew that. No one at all.</p>
<p>However, today you must be able to see correctly that Jesus bears the cross of historic toil. In other words, you must be able to see correctly that his individual body itself appeared as the sacrifice of laborious effort that could indemnify the collective course on which God had labored for 4,000 years.</p>
<p>If the people then had understood the fact that God sent many prophets and built up the chosen Israelite people during a 4,000- year history to find and raise one person, Jesus, and had they been able to recognize Jesus, why would he have had to bear the cross? Because the eyes of the Jewish people who should have been able to recognize Jesus were bleary, he ended up being deserted at Golgotha.</p>
<p>At any rate, Jesus tried to find the person who could understand his situation: namely, that he who understood the will of God and was called upon to show himself before all humankind to manifest the internal sung sang of God could not place himself in a seat of happiness. Jesus was not able to find and raise such a person and eventually had to die on the cross. Therefore, you of today, who are walking the course the will demands to complete the history of 6,000 years, must find and raise a person who can walk along the course that the will demands with you. If you cannot find and set up such a person, you cannot indemnify the mistakes of our ancestors, who did not recognize Jesus when he appeared. You must heed this.</p>
<p>Therefore, today you must fortify your minds before the Father and understand in what manner the late Jesus is dealing with us and calling us. In other words, we must understand the fact that Jesus, having cried out in solitude, is impatiently and longingly waving us on by sending the Holy Spirit. Jesus is demonstrating, by his actions, his sorrowful heart for our sake. Therefore, you yourselves must indemnify the situation of the Jewish people who could not recognize Jesus 2,000 years ago. You must become the persons who can bow to him, saying, &#8220;You are truly the man who appeared as a triumphant being for God&#8217;s will after 4,000 years.&#8221;</p>
<p>Not only that, you must become the persons who can understand that Jesus and the Holy Spirit have labored in the spiritual world to find you and set you up throughout the long 2,000-year history since Jesus&#8217; departure from this world. Unless you become such a person, you cannot extinguish the 4,000-year resentment that festered at the time of Jesus, nor can you mitigate the bitterness of God that has rankled for the 2,000-year history since. Therefore, you who have a historical debt like this should not heedlessly criticize the words that the prophets of the past spoke and the way they behaved.</p>
<p>Therefore, today an existential being has to emerge who can bow humbly and meekly before the sung sang of Jesus, who is waving to us and speaking to us like this, and in the presence of the hyung sang of Jesus. This being must be ardently devoted to carrying out the historical mission and, further, must become a friend of Jesus. Only when such an existential being emerges on this earth can you model yourself after him and be able to move forward to the position of the bride who can comfort the shimjung of Jesus, who labored for 2,000 years after passing through his life course of thirty or so years.</p>
<h3 align="center">WE WHO MUST TREAD IN JESUS&#8217; FOOTSTEPS</h3>
<p>Do you know how many times Jesus came looking for you when you were possessed by sinfulness and pining in midst of the darkness of death? You may not know. Because the fate to restore through indemnity on the earth remains, Jesus comes looking for you to have you go through the course in its original condition in which he was crucified. In other words, since there was the history of toil in which God unfolded the dispensation by sending prophets and sages for 4,000 years until Jesus could establish the will of salvation through the cross, God is trying to restore this again through you, through indemnity.</p>
<p>Although each of you may be a mere individual, Jesus comes looking for you to help you equip yourselves with historical value and to let you possess the mind that can be united with him in perfect harmony. Because you have to extricate yourselves from the sinful blood lineage of 6,000 years, Jesus has been looking to mitigate the bitterness through you, which festered because many prophets and sages came to this earth and were not able to accomplish the will. In other words, no matter when or where you may be, Jesus treats you with a similar shimjung as that with which God dealt with the unfallen Adam. God tried to fulfill the will through many prophets such as Noah, Abraham, Isaac, Jacob, Moses, the Four Great Prophets, et cetera. However, they did not succeed in accomplishing God&#8217;s will. Although Jesus came to accomplish the collective dispensational will of such historic significance, because of the Jewish people&#8217;s distrust, he could not fulfill the will either, and he died on the cross.</p>
<p>Now you must inherit and fulfill the responsibility to accomplish the will. To do that, you must resemble Jesus, the central figure of the universe. In other words, you must indemnify all of this as the central figure of the universe &#8212; like Jesus. You must emulate his demonstrated life manners and put them into practice as seen. Until now, Christians have led their life of faith only looking up to Jesus, who died on the cross, but they should not. You must know that Jesus indemnified the course of the 4,000-year history in his lifetime. You must live your life of faith looking at the whole life of Jesus.</p>
<p>Even today, there are people who have taken the missions of Abraham, Moses, John the Baptist, or those in the past who came and left in their charge. They are carrying out not only their individual mission but also the missions of many people who appeared in the course of history. When you truly become such people, you can become a new person.</p>
<p>How many Christians today are truly listening to the words of Jesus? Jesus came looking for humanity with the sorrowful shimjung of God, who has walked the path of laborious effort without a single day of comfort for the past 6,000 years. However, there were very few faithful followers who received Jesus to comfort him with such a shimjung and who stood with this dignified sung sang before Jesus. If you who have stepped out onto the path of becoming true faithful believers today have not reached that standard yet, you, too, must reflect upon yourselves. What is more, you must take one step further and offer yourselves as the living sacrifices before Heaven.</p>
<p>Today humankind has become too blind to see that Jesus is waving at them with a longing and sorrowful mind. Therefore, now you must possess the ears that can hear and the eyes that can see. You must be able to listen to and, simultaneously, see the words of truth.</p>
<p>Next, you must possess the mouth that can speak the truth for Jesus. In other words, representing the internal shimjung of Jesus, who wished to propagate the words of truth, you must become the ones who can correctly introduce the 6,000-year history about which you have seen and heard to pitiful earthly humanity and teach the life and situation of Jesus. Jesus and God are looking for such people.</p>
<p>Today, when you speak, you must utter words that are moving to Jesus&#8217; mind. Although we have inherited the blood lineage of snakes that have two tongues, we should not keep two tongues in one mouth. You must become the people who, upon listening to the words of God&#8217;s side and seeing the sung sang of God, can display the facts to all humankind truthfully, not as a man of two tongues but as a man of one tongue. Likewise, God is looking for a righteous person who can take the place of His tongue, the one person who can be substituted for the tongue of Jesus.</p>
<h3 align="center">THE TRUE FAITHFUL BELIEVER WHO MUST<br />
PROPAGATE THE WORDS OF TRUTH</h3>
<p>We of humankind have the original nature that has God at its center. The human mind, which has the original quality created by God, always resembled the mind of Heaven&#8217;s nature, so that humanity wishes to have it as their standard of truth. Humankind always wishes to possess the truthful character.</p>
<p>By restoring such an original mind, we must look at the mind and the body of Jesus, listen to his words and then uphold these as the center of our minds and bodies. Further, through this, by becoming an existence who represents Jesus, we must become the people who propagate the words Jesus was spreading throughout the world of death. You must know that Heaven has come looking for those people who have the mouth and tongue to propagate the words of Jesus like this.</p>
<p>Today humankind says first one thing and then the opposite. Since humankind utters contradicting words with one mind, dispensational history is trying to eliminate this and to restore them into people who speak with one tongue. If you lead your day- to-day life throughout your lifetime without change and with self-confidence that you represent God in speaking His words and you represent Jesus, speaking with his shimjung and his life, then there will not be any accusations from Satan. What is more, you will also competently overcome the temptations of Satan.</p>
<p>Today, therefore, we who are facing the final days must become the truthful members of faith who can attest to the words of truth. In other words, you must be substantially able to attest to the words through which you can be in union with God for the 6,000-year history, which God has taught us through many prophets and sages. Furthermore, this is not individualistic but comprehensive; Jesus and the Holy Spirit have propagated this by laboring for the past 2,000 years. You must spread the words of God, which can start the history of recreation.</p>
<p>If there is such a true person, God and Jesus will be with him or her. Billions of faithful believers will welcome the words, and the people who adore Heaven will also automatically follow the words with the help of the spiritual world. What is more, if there is someone who upholds the words as eternal and as the greatest words in life and propagates them at the risk of his or her life with an immutable shimjung, then as long as God does not disappear and as long as Jesus, the Holy Spirit and the billions of faithful believers do not disappear, that person will definitely achieve the history of recreation on this earth under their divine protection. Therefore, we must now realize that the words Jesus spoke are not only applicable to 2,000 years ago.</p>
<p>Why then does Jesus feel bitter? The nearer the final days get, and the sooner the judgment day comes, the more Jesus wishes humanity to duplicate his attitude. He came to restore the humanity of the world and to go through the course of sacrifice to move to God&#8217;s side. However, humanity does not understand Jesus&#8217; mind and by living as it pleases, it is taken to the place of darkness and is being led off to the judgment seat. Upon seeing this, Jesus feels indescribably sad.</p>
<p>Therefore, by experiencing the internal shimjung of Jesus, who is watching over you with a more sorrowful viewpoint than when he came to finalize the providential salvation 2,000 years ago, you must become the true person who propagates his words about the historical collective dispensation to all humankind in his place. He did not have a chance to explain about all this. You must understand that Jesus ardently wishes for the emergence of a true person who will propagate the words of truth in his place.</p>
<p>Feeling really sad about not having had a chance to speak about being the embodiment of the words of heavenly principle, Jesus is coming to look for true Christians who will propagate the words of truth to humanity for God and the Holy Spirit. Humankind does not know about the frightening outcome of judgment. Because God, too, wishes for all humankind to copy Jesus&#8217; example and through him to be embraced in the bosom of His love, He has labored throughout the long history.</p>
<h3 align="center">THE VALUE OF A HUMAN BEING AND THE<br />
STANDARD OF HIS OR HER PERFECTION</h3>
<p>Although you may think yourselves insignificant, God has labored for 6,000 years to look for you, the ones. What is more, Jesus has labored for the past 2,000 years, and the many prophets and sages have made efforts throughout the long period of history. Therefore, by considering yourselves worthy, you must become the sacrifice to build up a condition of triumph for God in the final decisive battle against Satan. Accordingly, you must become triumphant figures who can say, &#8220;I have lived honestly, fulfilling the responsibility, representing the cosmic nature for God,&#8221; and can receive any word of advice or command without complaint. You have to reflect on yourselves to see if you really have become such people.</p>
<p>Seen from our normal social lives, God&#8217;s chosen son may look similar to a person in the realm of Satan. However, God is looking for a person of character who represents the will to save humanity by going through misery. He is looking for the true sons and daughters who have the conviction to completely materialize the standard of the internal and external characteristics of Jesus Christ, who came to this earth representing God&#8217;s nature. If you truly possess such a shimjung within you, you will feel that you cannot enjoy yourselves in any moment of joy and pleasure without reservation.</p>
<p>The sorrowful shimjung of God is connected to the resentment of the whole world, beyond that of the society via the family, and even beyond that to the billion faithful believers in heaven. Therefore, you must not keep the sorrowful shimjung of God for the sake of yourselves. You also must not live only for the benefit of yourselves or your families. You must build up your character, rising above time and space, to the standard in which all beings in heaven can be in unison in shimjung. You must become a worthy person who represents comprehensive perfection. If such a person emerges on this earth, Heaven will not be disappointed. Such a person can never go to hell.</p>
<p>When you look at yourselves, you who must bear such responsibility and fight against the evil of the surroundings in your day-to-day lives will see that while your mind accepts God&#8217;s will, your body rejects it. Similarly, the mind and body of humankind are not united into one. Because of that, humanity cannot become the perfected sons and daughters of God.</p>
<p>What then is the standard of perfection for which God wishes? It is that humankind receive the words of God through their minds, then their bodies accept the words and become united into one with the mind. After that, the words are to be propagated throughout the surroundings.</p>
<p>If God&#8217;s will is fulfilled like this centered on &#8220;I,&#8221; my mind can move, picturing eternity through the center of the mind that God empowers. Until you accomplish such a standard on this earth, you cannot become the eternal true sons and daughters of God.</p>
<p>What then is the proof of being God&#8217;s son or daughter? Your actions alone cannot be sufficient proof. Since anyone can take action, you cannot draw a conclusion based on actions alone. The element of internal value has to determine whether he or she is God&#8217;s son or daughter. It is the internal value in the mind of the person who acts that has to be substantially connected to reality in order for the person to be called God&#8217;s son or daughter.</p>
<p>Only when you accomplish a free relationship of give and take between your minds and bodies from what your minds infer from the command of God &#8212; the relationship in which the body moves according to the mind&#8217;s wish, and the mind moves together with the body as the body dictates &#8212; can you call yourselves God&#8217;s sons and daughters. You can then start the work of providential recreation on this earth.</p>
<p>Today then, what must you think of before you pray, crying out, &#8220;Oh, Father!&#8221; before God? The answer is to talk to yourselves about whether the core of your minds can represent the hyung sang of Jesus Christ. Because Satan plucked out the life from the fallen human ancestors, there is no such character in you that can represent the hyung sang of Jesus Christ. Therefore, until today, many human beings have struggled to establish the way of heavenly principle, crossing repeatedly the eternally immutable mind and the innermost valley of the human conscience. If you can unify your minds with that of Jesus by having faith in him, you will easily subjugate the body through the commands of that mind.</p>
<h3 align="center">THE ONE WHO IS TO INHERIT GOD&#8217;S WILL</h3>
<p>Today humankind is making frantic efforts. Although the thing that stirs the mind stimulates the body, the body does not go with that stimulation. That is because the power of stimulating the body is weak. Accordingly, today you must cultivate the faculty of mind that can stimulate the body more strongly. To do that, you must become the ones who rightly inherit Jesus&#8217; shimjung and will.</p>
<p>That is the reason Christians today pray to Jesus. They do not long for Jesus&#8217; tribulations; they yearn for Jesus&#8217; glory. That, however, is wrong. You must understand that Jesus had to go through the course of tribulation that none knew of before he welcomed the grace of resurrection and glory. Therefore, only when you, too, become triumphant in the course of suffering of which none knows and step forward to the seat of glory, can you shake off the yoke of historic sinfulness and become the ones who are worthy to reciprocate with the resurrected Jesus. Furthermore, each of you can become the hero who can start the miraculous work of collective resurrection on this earth.</p>
<p>You must not talk nonsense when you pray before the Father. You must become people who can pray from the bottom of your hearts. When your words and the actions, expressed through your bodies, make a connection with the center of your mind, those words and actions will not be shameful but honorable before God or Satan or any person. God is looking for such a being.</p>
<p>Therefore, if eternal, original nature exists in your minds, you must cultivate that truthful character. No matter what you are faced with, wherever you are situated, if you accept the fundamental truth of such eternal immutability and speak centering on that, the words that are spoken will start the miraculous work of re-creation in place of God.</p>
<p>Where then is the enemy against which you must fight? When you accept the words Jesus said to be true and convey those words for Jesus, walking on the course he has shown, what will stand in your way? Satan, who comes in through the world, and the arrow of Satan that infiltrates through the physical body. Just as the archangel, who was in the closest position in the Garden of Eden, caused Eve to fall, today Satan appears as the closest entity and leads you into temptation. He will appear beautiful to look at and with something good to hear. The words he speaks will sound like truth. Therefore, you must possess your own acoustic sense, visual sense and the standard of an immutable mind. If you are not one with such a standard, you will not be able to stop the invasion of Satan, which will come in an unexpected moment.</p>
<p>If you have such an immutable core in your mind and the body moves as the mind dictates so that you lead your life always to please God, you will not need to offer an earnest prayer asking for redemption. Because you are fallen human beings, to free yourselves from the fate of restoration, you need to offer prayers of repentance.</p>
<p>Today, therefore, if you have the core of the mind that is the most important to you, it can be compared to the power of the sun that shines brilliantly. You must get inspiration and feelings through your minds and bodies and equip yourselves with cosmic knowledge, an intellectual yardstick that can discern all things in the universe. You must then become the ones who can inherit the words of Jesus Christ, which expressed the heavenly nature and manifested the collective will, and convey them to all humankind. Unless you become such people, God will not be able to reciprocate with you, trusting you with a sense of relief.</p>
<p>Because God deals only with people of good behavior and manifests Himself only through words of truth, He cannot have give and take action with humankind, who has two different minds within. It is thus because God does not manifest Himself in a false form, but instead possesses only one will and one nature. You must know this clearly.</p>
<h3 align="center">GOD RECIPROCATES WITH THE PERSON OF VIRTUE</h3>
<p>You must know that it is the human being which is more menacing than Satan. While God and Satan each manifest good and evil respectively, human beings carry out two different activities simultaneously. When they have faith in God, they express themselves as good, but when they center on Satan, they express themselves as evil. What position then should you take today? You should not take the position of Satan in real life. You should not lead a life that can be subjected to the false accusations of Satan, neither three-dimensionally nor horizontally. Through continuous prayer and a life of devotion, you must acquire very sharp wisdom that can distinguish between good and bad. However, you must not pursue only wisdom. If you only seek wisdom, you will become cunning people and easily make mistakes.</p>
<p>How then has Christianity, which used to say all would be well as long as you believed, become so divided? How much do you have to believe? How deep are the words of Jesus whom you looked to, harboring a desire, and whose words you have believed? Where is the standard of truth established for God&#8217;s will? The words spoken until today will not do. You must equip yourselves with God&#8217;s character, which is the very core of truth, and become figures of immutability who are united with God. Regardless of any age and any changing circumstances, you must become living bodies who are immutable.</p>
<p>If you become united with God, then when God stays as an immutable figure, you, too, will be immutable. When God exists as the one and only being, you, too, will be solitary beings. If God does not leave His ideal garden eternally, then you, too, will not leave that ideal garden. As of now, you are not in that situation.</p>
<p>You may realize that, at present, you are more cunning than Satan, regardless of whether you get up in the morning, whether you sleep in the evening, and whether you carry out action in the daytime. Therefore, you must regard yourselves as more frightful than God or Satan. The main causal influence of the destruction of the Lord of Heaven is not Satan, but human beings. Human beings also have the capacity to make the Lord of Heaven successful.</p>
<p>You must take heed that you will make the Lord of Heaven fail or succeed. Further, you are standing at the crossroad where you can become the mark of Heaven or the mark of Satan. What do you, who are standing at this crossroad, have to do to belong to the side of Heaven? First, you should be able to hear the words of Heaven. Further, you should be able to see the features of Heaven and speak the words of Heaven. You must become such people and play the role of the example that discerns good from evil. To be able to do that, you must first fight to find your own individual selves. At the same time, you must fight to restore the surroundings, the world and the Lord of Heaven. Only after you pass through such a process will Jesus be able to come looking for you.</p>
<p>In what form then will Jesus come? Jesus will come as the ideal standard of resurrection. Once he arrives here on this earth, he will promulgate the supreme words of God. He will manifest all glory.</p>
<p>When such a cosmic Lord of resurrection comes, even if you are put in a situation where you are forsaken or killed, you must become the ones who unchangingly attend and follow the Lord. Otherwise, you remain doing nothing but just looking and listening to Jesus. You cannot become the bride who can establish relations with Jesus as the bridegroom and live eternally, exchanging love in the palace of Heaven.</p>
<p>When Mary Magdalene went to look for Jesus right after his resurrection, Jesus said, &#8220;Do not hold on to me, for I have not yet returned to the Father&#8221; (John 20:17). Nevertheless, Jesus appeared before Mary Magdalene because she had the heart that could console him. Similarly, only when you comprehend the ideal and will of heavenly principle transcending yourselves will Jesus manifest himself to that comprehending heart. If you listen to the words of God and can convey them on His behalf, the Lord will come toward you even if you do not ask Him. You must understand that the Lord is motioning with His arms spread out for you to come. God also is doing that.</p>
<h3 align="center">GOD WISHES FOR TRUE SONS AND DAUGHTERS TO EMERGE</h3>
<p>If we cannot carry out such a cosmic responsibility today, we will not be able to wake up the people and the world who are fast asleep. Now is the time when the four-dimensional world that transcends time and space is being established. In such a time, you must think seriously about the internal shimjung of Heaven that wishes for a man of character to emerge who is three- dimensional and cultivated by the heavenly principle &#8212; a man of character who resembles the Lord of Heaven. Heaven is longing to be able to hear, to see and to speak in the span of his life. If you are like that, then even if you say, &#8220;Oh God, please do not come. Please, Jesus, do not come,&#8221; God and Jesus must follow you. What is more, if such a person is sent to hell, he will transform hell into heaven. Only when many such people emerge will peace come on this earth.</p>
<p>Today, instead of praying for the sake of your ascension, you should know how to pray to be able to have God descend to see you. If a man of character can bring God down to see him, a true Christian who can become Jesus&#8217; bride appears on this earth, God will personally act to see him. In other words, you must clearly understand that if the true son and daughter of peace, the true son and daughter of love whom God has expected for 6,000 years, emerge on this earth, not only will God be happy but also all things in the universe will share the joy.</p>
<p>Although it is Christianity today that bears the responsibility of such a cosmic mission on its shoulders, it does not deeply comprehend that responsibility. Instead, it is merely crying out to God. That should not be the case. You are to cry out, &#8220;Oh, Father!&#8221; after you walk through the path of crucifixion, the course of adversity and become triumphant. Heaven will seek after such people. What is more, if you establish such a standard of shimjung every day and live accordingly, even before you want to see certain things they will be seen, and even before you decide to speak, words will come out on their own. You must step forward to reach such a stage.</p>
<p>Here you will come across enemies who will stop you. Just as the Israelite people blocked Jesus&#8217; way with their conventional conditions, and as other historical conditions affected Jesus&#8217; life course, such incidents will occur to you of today. Therefore, you must not resemble the Israelite people as they appeared in the unfolding of history. You must break through conventions with daring, descending historically, and proceed.</p>
<p>Members of the congregation who are marching on, seeking the ideal garden toward the fruition of resurrection! You can have the heavenly will strike home by linking the passing phase in the process of history to your minds and bodies. You must be able to attend Christ and represent Christ&#8217;s character. Only when you become like that will you receive what God wishes to speak, what God wishes to show, what God wishes you to hear, and assimilate all these.</p>
<p>You must follow in the footsteps of Jesus today. As a figure of immutability, even when he reached the actualities that changed into manifold states of things, he broke down the conventional conditions that existed in the course of history and loved God. You must become the ones who, upon faced with difficult circumstances while walking the path of the heavenly will, will not complain. Upon being subjected to the trials of Satan that evoke a sense of fear and terror, you must be able to gain a victory over these and attend the Lord.</p>
<p>What is more, while you attend the Lord, the attendance should be carried out at the seat of maximum freedom, the highest glory and the utmost joy. You must free yourselves from all of the accusational conditions that have cropped up in history and be able to call to the Father. When you become such people, Heaven will call on you even before you ask. Therefore. you must establish such a standard in your life course.</p>
<p>God will come looking for one person above all who possesses the value of character cultivated through experience centering on His cosmic love, and who is in possession of a character that represents Jesus and history. Jesus desires such people to gather and seek the nation, world, and heaven and earth. You must be aware that this is God&#8217;s will.</p>
<p>Even if you get yourselves trapped beneath Satan&#8217;s accusations or even when a tide of multitudinous adversities comes to overwhelm you, you must inherit, as an immutable figure, the secrets of the whole immersed within God and Jesus and translate them into practice. You should not only be able to escape from the conditions of Satan&#8217;s false accusation, but also be able to become triumphant central figures who can fight to subjugate Satan and then offer comfort to God and Jesus.</p>
<p>When the day that he was to die on the cross was near, after having lived thirty years or so, Jesus gathered his beloved disciples and said, &#8220;I have much more to say to you, more than you can now bear&#8221; (John 16:12). This tells you that the disciples did not comprehend what Jesus meant. Therefore, each of you must become the bride, not the disciple who does not understand what Jesus means. You must become the one who comprehends the meaning of Jesus&#8217; sayings. Establishing the standard of character with which she can step further to reach the wife&#8217;s position, she holds herself accountable for the mission Jesus left unfulfilled and becomes the person who can let Jesus take repose. Not only that, you must subjugate Satan and take him in front of God and say, &#8220;Please take, all by Yourself, the eternal glory of victory.&#8221; Only then will the resentment of God, who has carried on the providence of restoration for 6,000 years, be undone. Jesus then will find the true bride he has sought. Further, by finding the true wife for which Jesus Christ has longed, we can build the garden of peace on this earth.</p>
<p>Now you who have stepped onto the path of the will must heed that you yourselves are more fearsome than Satan. In whatever process there is, no matter what kind of difficult course there is, no matter how complex matters are, you must become people who can fight unchangingly until the day when you receive the seal of the heavenly principle. You must hold onto the will that you have resolved in your mind and become victorious, able to humbly lie prostrate before Jesus.</p>
<p>When you become people like that, you will finally satisfy not only Jesus&#8217; wish, but also all humankind will raise you to the seat of glory in the presence of the Father as a standard of love. You must heed this.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html" title="Permalink to LET US BE THE ONES JESUS WANTS" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html" rel="prev"><span class="meta-nav">&laquo;</span> JESUS WHO LOOKS BACK ON WALKING THE PATH OF HIS FATE</a></div>
<div class="nav-next"><a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html" rel="next">JESUS WHO IS TO ESTABLISH HEAVEN&#8217;S LOVE <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,175 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FOR WHOM ARE WE LIVING? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/for-whom-are-we-living.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-808 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-808" class="post-808 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">FOR WHOM ARE WE LIVING?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:37:45+01:00"> <a href="/blog/2018/06/04/for-whom-are-we-living.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:38:54+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/for-whom-are-we-living.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
April 7, 1957</h3>
<p style="text-align: center;"><em>John 14:1-20</em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-14-1"><span class="woj">“Do not let your hearts be troubled. You believe in God<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26670a" data-link="[&lt;a href=&quot;#fen-NIV-26670a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+14:1-20#fen-NIV-26670a">a</a>]</sup>; believe also in me.</span></span><span id="en-NIV-26671" class="text John-14-2"><span class="woj"><sup class="versenum">2 </sup>My Fathers house has many rooms; if that were not so, would I have told you that I am going there to prepare a place for you?</span></span> <span id="en-NIV-26672" class="text John-14-3"><span class="woj"><sup class="versenum">3 </sup>And if I go and prepare a place for you, I will come back and take you to be with me that you also may be where I am.</span></span> <span id="en-NIV-26673" class="text John-14-4"><span class="woj"><sup class="versenum">4 </sup>You know the way to the place where I am going.”</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-26674" class="text John-14-5">Jesus the Way to the Father</span></em></h3>
<p style="text-align: center;"><em><span class="text John-14-5"><sup class="versenum">5 </sup>Thomas said to him, “Lord, we dont know where you are going, so how can we know the way?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26675" class="text John-14-6"><sup class="versenum">6 </sup>Jesus answered, <span class="woj">“I am the way and the truth and the life. No one comes to the Father except through me.</span></span> <span id="en-NIV-26676" class="text John-14-7"><span class="woj"><sup class="versenum">7 </sup>If you really know me, you will know<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26676b" data-link="[&lt;a href=&quot;#fen-NIV-26676b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+14:1-20#fen-NIV-26676b">b</a>]</sup> my Father as well. From now on, you do know him and have seen him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26677" class="text John-14-8"><sup class="versenum">8 </sup>Philip said, “Lord, show us the Father and that will be enough for us.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26678" class="text John-14-9"><sup class="versenum">9 </sup>Jesus answered: <span class="woj">“Dont you know me, Philip, even after I have been among you such a long time? Anyone who has seen me has seen the Father. How can you say, Show us the Father?</span></span> <span id="en-NIV-26679" class="text John-14-10"><span class="woj"><sup class="versenum">10 </sup>Dont you believe that I am in the Father, and that the Father is in me? The words I say to you I do not speak on my own authority.Rather, it is the Father, living in me, who is doing his work.</span></span> <span id="en-NIV-26680" class="text John-14-11"><span class="woj"><sup class="versenum">11 </sup>Believe me when I say that I am in the Father and the Father is in me; or at least believe on the evidence of the works themselves.</span></span> <span id="en-NIV-26681" class="text John-14-12"><span class="woj"><sup class="versenum">12 </sup>Very truly I tell you, whoever believes in me will do the works I have been doing, and they will do even greater things than these, because I am going to the Father.</span></span> <span id="en-NIV-26682" class="text John-14-13"><span class="woj"><sup class="versenum">13 </sup>And I will do whatever you ask in my name, so that the Father may be glorified in the Son.</span></span> <span id="en-NIV-26683" class="text John-14-14"><span class="woj"><sup class="versenum">14 </sup>You may ask me for anything in my name, and I will do it.</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-26684" class="text John-14-15">Jesus Promises the Holy Spirit</span></em></h3>
<p style="text-align: center;"><em><span class="text John-14-15"><span class="woj"><sup class="versenum">15 </sup>“If you love me, keep my commands.</span></span> <span id="en-NIV-26685" class="text John-14-16"><span class="woj"><sup class="versenum">16 </sup>And I will ask the Father, and he will give you another advocate to help you and be with you forever—</span></span> <span id="en-NIV-26686" class="text John-14-17"><span class="woj"><sup class="versenum">17 </sup>the Spirit of truth. The world cannot accept him, because it neither sees him nor knows him. But you know him, for he lives with you and will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26686c" data-link="[&lt;a href=&quot;#fen-NIV-26686c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=John+14:1-20#fen-NIV-26686c">c</a>]</sup> in you.</span></span> <span id="en-NIV-26687" class="text John-14-18"><span class="woj"><sup class="versenum">18 </sup>I will not leave you as orphans; I will come to you.</span></span> <span id="en-NIV-26688" class="text John-14-19"><span class="woj"><sup class="versenum">19 </sup>Before long, the world will not see me anymore, but you will see me. Because I live, you also will live.</span></span> <span id="en-NIV-26689" class="text John-14-20"><span class="woj"><sup class="versenum">20 </sup>On that day you will realize that I am in my Father, and you are in me, and I am in you.</span></span></em></p>
<p>Human beings cannot live without creating relationships with other people. An individual exists because his mind and body are in a relationship and are in the position to live for the sake of the other. This altruism must develop further to care for the family, people, society and the nation. Furthermore, even the universe is to lead a life of altruism. In religious terms, this kind of altruistic life is a life lived for the sake of God.</p>
<p>Centering on yourself, you must find the standard that will enable you to care for others in horizontal relationships. Then, creating three- dimensional relationships, you must find the standard that will enable you to live for the sake of the one center. After that, you must lead a life that can connect with the one center on the levels of the family, nation, world, and universe. Without this kind of central standard of altruism, we human beings cannot obtain satisfaction and happiness.</p>
<p>You must find that central standard of altruism which can be responsible for history, which possesses the value of the whole, and which pursues the universe. You must do this in order to build a relationship of life. By connecting with the root of power centering on love, you must absorb infinitely and be absorbed infinitely. Furthermore, you must be able to receive validation of this from the entire environment that surrounds you.</p>
<p>Throughout the length of history, human beings have been searching for an eternal and unchanging someone upon whom they can depend. They want to entrust themselves to him, and experience the love of God for eternity through him. They want to praise that love. Similarly, human beings are seeking the one master who can eternally vouch for them before all things of the universe.</p>
<p>That one master is none other than the master of eternal love, life, and hope. Moreover, that master is a being of altruism. He is the representative hero of living for the sake of others.</p>
<p>That master of altruism must be able to realize both the desires of the mind and the desires of the body. He must be able to take responsibility for and represent history and universal wholeness. If you have not found this kind of master and have not united your ideals with his, and if you have not materialized the environment in which you can serve him and live with him and share joy with him on the universal level, then you will not be able to free yourself from the universal fight and fear which will unfold in the last days. These will unfold on the three-dimensional level.</p>
<p>Human beings must seek after this eternal, central standard which they lost because of the fall. Conflict is inevitable in the course of restoration which pursues this standard. This conflict, which began on the individual level, has been expanding to the family, national, and world levels. After concluding this horizontal fight on earth, there will come a time of conflict in three dimensions that will even involve the spirit world. All the human beings who encounter that time must find the standard of true love, true life, and true hope. Based on that, they must vanquish that period of chaos and fear. If this is not accomplished and we cannot present before all things the condition that resides in the one master of love, life, and hope, then human beings will not be able to avoid the time of judgment.</p>
<p>In the near future, we will meet the end of history, when we must divide left from right and good from evil. What must we do at such a time? If we cannot find the one master who is the standard for separating good from evil and left from right, we will not escape judgment. Not only must we divide good and evil according to his standard, we must also carry on all tasks centering on him. If we cannot purify our spiritual and physical selves through him, then there is absolutely no way we can be excused from the judgment of the last days.</p>
<p>All the people of history have hoped for the one master who will become the standard of reference for all values. Now this hope has arrived before our eyes. Therefore, centering upon that one master, we must put forth before history all our accomplishments, having fulfilled all of our responsibilities, in order to satisfy the hope of all people. Going one step further, we must remove the grief of Heaven.</p>
<p>The course of God&#8217;s dispensation of restoration and human history intersect centering on one being. That point of intersection expands from individuals to the nation, to the world, and goes on to the universe. Therefore, you must understand that each of your lives represents the universe.</p>
<p>For six thousand years, God has been seeking substantial beings who can represent His internal heart and go beyond the point of intersection. However, if God cannot find that kind of person and cannot manifest His internal heart and His wishes through that one person, God will always remain in the position of transcendence and will not be able to create a substantial relationship with human beings at all.</p>
<p>Originally, human beings were supposed to connect with that one center of altruism and begin their life. However, because of the fall, they could not begin their lives out of altruism but instead began them out of selfishness. It came to be that they always tried to build their relationships centered on self-centered thoughts.</p>
<p>Now then, we who are marching toward the goal of eternal freedom and peace must cast aside the fallen nature which tries to conclude every affair to our own benefit. Transcending that, we must be able to live for other people first. By doing so, everything will make a reciprocal relationship of service and circle around for eternity.</p>
<p>In order for Jesus&#8217;s divine and human nature to substantially manifest themselves, we must also build an altruistic relationship of reciprocity with all existing beings in the same way that all things exist in reciprocal relationships. Moreover, that relationship must exceed the individual to expand out toward the family, nation, world, and the universe. Eventually, all such comprehensive relationships must be built for the sake of that one central being.</p>
<p>In this way, by offering our love, life, and truth before that eternal and unchanging center, we must forge bonds with his love, life and truth, which is the core of his value. We must inherit them and experience them.</p>
<p>That one being, that master, is none other than the person who is trying to connect with us by uniting disparate things into oneness: the humanistic hope and the heavenly hope, the historical life and the dispensational life, the historical love and the dispensational love. This person is the Lord of the Second Advent.</p>
<p>That person has been seeking for you for 6,000 years. In order to stand before him, you must attain qualifications in regards to truth, life, and love. You must not take away from his dignity. You must be able to connect everything in the universe in this relationship.</p>
<p>Jesus said, &#8220;I am the way, the truth, and the life.&#8221; In order for you yourself to become the way, the truth, and the life, you must embrace the whole universe and bring harmony to it.</p>
<p>The Lord to come is the person who will embrace everything from the individual, the family, the society, religious groups, the nations, the world, and so forth and stand before Heaven. He will emerge with unlimited hope and value which we cannot even imagine. Therefore, as an unchanging being, you must make the determination to act on behalf of the universal dispensation and take responsibility for it. You must learn how to fight with Satan. This is the only way you can confidently meet him in the last days. That person is the essence of our human love, life, and truth. We can stand before all things only if we also can represent the love, life, and truth.</p>
<p>What are your lives like, you who are to take up this kind of position? Are there any among you who are concerned about things centering on yourselves? There will surely come a time when such people will break apart. You must become people who can use the world as a foothold and live for the sake of everything and be happy even after abandoning everything.</p>
<p>Do you have anything that you can offer to him? You must understand that even your bodies can be absorbed into the universe. You must understand that God wishes that you will voluntarily offer yourselves to him with joyful hearts. This is also what all things desire.</p>
<p>If you cannot do this, then even if you live for thousands of years, you won&#8217;t be able to build a relationship of love with all created things. After forgetting yourself completely, you must be happy that you are possessing the world. God hopes for the one person who can be as happy as if he possessed the whole even when he possesses only a part, realizing that something is both a part of the whole and the representative of the whole.</p>
<p>Human life on earth has been full of bloodshed. In other words, there was never a time when peace was realized on earth. However, if you connect with him and realize the value of that love, life, and truth, you will fight at the risk of your life. That time is the period of revolution without bloodshed; it is the time when we can enjoy eternal, universal peace. In order to usher in that time, you must be able to offer everything.</p>
<p>Because it is the principle of creation that things which are empty will be filled up again, without fail, if you yourself offer your body, then something will fill in that vacuum. Humanity has been ignorant of this fact until today. Jesus was able to establish the standard of salvation through the cross in the vacuum created by offering his body.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/for-whom-are-we-living.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/for-whom-are-we-living.html" title="Permalink to FOR WHOM ARE WE LIVING?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html" rel="prev"><span class="meta-nav">&laquo;</span> THE LORD IS MY GOOD SHEPHERD</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html" rel="next">LET US BECOME THE ELITE TROOPS OF HEAVEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,247 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BE THE HARVEST OF GOODNESS HEAVEN DESIRES &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-792 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-792" class="post-792 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BE THE HARVEST OF GOODNESS HEAVEN DESIRES</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:15:32+01:00"> <a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:15:32+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">March 3, 1957 (Sunday)<br />
Former church headquarters,<br />
Seoul, Korea.</p>
<p><em>Galatians 6:1-10 </em></h3>
<p class="chapter-1" style="text-align: center;"><em><span class="text Gal-6-1">Brothers and sisters, if someone is caught in a sin, you who live by the Spiritshould restore that person gently. But watch yourselves, or you also may be tempted.</span> <span id="en-NIV-29191" class="text Gal-6-2"><sup class="versenum">2 </sup>Carry each others burdens, and in this way you will fulfill the law of Christ.</span> <span id="en-NIV-29192" class="text Gal-6-3"><sup class="versenum">3 </sup>If anyone thinks they are something when they are not, they deceive themselves.</span> <span id="en-NIV-29193" class="text Gal-6-4"><sup class="versenum">4 </sup>Each one should test their own actions. Then they can take pride in themselves alone, without comparing themselves to someone else,</span> <span id="en-NIV-29194" class="text Gal-6-5"><sup class="versenum">5 </sup>for each one should carry their own load.</span> <span id="en-NIV-29195" class="text Gal-6-6"><sup class="versenum">6 </sup>Nevertheless, the one who receives instruction in the word should share all good things with their instructor.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29196" class="text Gal-6-7"><sup class="versenum">7 </sup>Do not be deceived: God cannot be mocked. A man reaps what he sows.</span><span id="en-NIV-29197" class="text Gal-6-8"><sup class="versenum">8 </sup>Whoever sows to please their flesh, from the flesh will reap destruction; whoever sows to please the Spirit, from the Spirit will reap eternal life.</span> <span id="en-NIV-29198" class="text Gal-6-9"><sup class="versenum">9 </sup>Let us not become weary in doing good, for at the proper time we will reap a harvest if we do not give up.</span> <span id="en-NIV-29199" class="text Gal-6-10"><sup class="versenum">10 </sup>Therefore, as we have opportunity, let us do good to all people, especially to those who belong to the family of believers.</span></em></p>
<h3 align="center">
Prayer</h3>
<blockquote><p>Loving Father! Who is indeed the one who will keep going forth, taking on alone the burden of fate attributable to the fall in the desolate restorational course that cannot help but be walked?</p>
<p>We are aware of the fact that, owing to the fall of the progenitors of the human race early on, the Father came to bear bitter resentment and every human mind came to be left with grievous sorrow. Due to the guilt-filled history of the distrusting Jewish people, this lamentable resentment came to be extended to the world. This time, when the attraction of resentment is piercing the core of heaven and earth like this, I pray sincerely that the Father will open the way for us to step forward.</p>
<p>To walk the way the Father leads us, we know we have to, first, find the place in which our lives can find repose. Next, our bodies and minds will have to become the resting place for You. The Father&#8217;s love we long for will then dwell in our bodies and minds. Father of compassion, Father of love, Father of mercy, and my Father who labors to manifest Your will in the midst of us! Since this unworthy group of people came forward before the Father&#8217;s knees shamefacedly, bearing soiled and scarred bodies and minds, please forgive us. If the Father does not forgive and accept us and we do not become the standard by which we move forward, then we will be the most pitiable people.</p>
<p>Father, the group of people gathered here are the sons and daughters who are sad and anxiously looking up to Heaven to live as the Father wishes. They are the young sons and daughters who are being tried by strong winds as they go through the course of life that Heaven wishes for, even at the cost of their lives.</p>
<p>Father, since to us the eternal ideal was the Father, the eternal hope was the Father, and the eternal life was the Father, so please, Father who knows about the situation we are facing today and all about the will we desire. Please, manifest Yourself in person to govern each of us.</p>
<p>By our becoming equipped with natural and substantial elements that can receive the Father&#8217;s governance, please allow our bodies and minds to be captivated by Your commanding words and Your working through us. Please allow the direct work of Your power, to which we cannot but succumb, to be able to be manifested before Your glory. Beloved Father, I sincerely wish that, by governing all of our bodies and minds, You will remove the sinful roots You cannot accept from us.</p>
<p>Since the wave of death is about to sweep us away, please stop all of this and take us as a foothold on which You can work as a structure of providence. Please allow all of us to be on the side of the Father and to become the tribes that can fight against Satan to win. Since this day is a holy day, please manifest Your compassionate being and hands of love every place sons and daughters who are spread around are gathering to bow before You.</p>
<p>By quickly calling and upholding the chosen ones, please allow them to gather at one place to become the Father&#8217;s true sons and daughters who can fight the evil Satan, who has been in the enemy position for 6,000 years, before the Father and triumphantly return. I then sincerely desire You to let us become ones who can give way to each other, who can be at peace with each other, who can depend on each other by resembling the one mind, one love and one heart, and who can accomplish the joyful garden that the Father desired.</p>
<p>Even if there was something improper that You could not tolerate in the past week, please forgive us. If we have any deep personal grudge, please undo it. Are there still any self-centered hearts, minds, concepts and subjective opinions left? Father, I ardently request that You will manifest Yourself as a substantial entity of power and re-engender the heart of the whole by You alone controlling and asserting. Allow us to be able to be ones who resemble the Father&#8217;s hyung sang.</p>
<p>Since we leave the remaining time solely in Your control, please guide this hour to be one in which we prostrate ourselves in this place with all of our heart and soul and will. Soliciting ardently that You will lead us, I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The reason God created all things was to usher in a day in which He could see and enjoy them with humankind, who were to become the substantial entities of goodness. However, due to their fall, human beings could not become the fruitful entities of goodness which could make God happy. Therefore, the hopes of God and all things were not materialized. The hope of humankind did not come into realization either. That is why myriads of people alike have wished to see the emergence of such a fruitful entity of goodness. Moreover, God, too, wishes for humankind to be the fruitful entity of goodness. That is why He has unfolded the dispensation for its realization until now.</p>
<h3 align="center">GOD WHO SEEKS A SUBSTANTIAL ENTITY OF GOODNESS</h3>
<p>If we consider God&#8217;s shimjung from various angles, it is fraught with sorrow, and in it there remains some of God&#8217;s concern. As we see God&#8217;s providential dispensation being carried out in continuation through today&#8217;s creatures, we can comprehend that God still seeks the substantial entity that is the ideal of creation.</p>
<p>We the faithful believers today must appear before history and before the providence by becoming a substantial fruitful entity through experiencing God&#8217;s internal shimjung from the standpoint of God, who is in such a situation. Unless we can be reaped as God wishes and be those whom God can be proud of, you must understand that you will not be able to undo God&#8217;s acute resentment, penetrating grief, and heart-rending sorrow.</p>
<p>What is God&#8217;s sorrow? It is that there is no true human being who is the fruitful entity of goodness, who can have dominion over all things, having the right sense of direction by which all created beings can aim toward goodness. Therefore, human beings must become the fruitful entity of goodness that can express God the Father&#8217;s internal shimjung by becoming living sacrifices before God. Going further, there has to emerge a representative character who receives God&#8217;s blessing from among them.</p>
<p>You must remember the fact that, unless such a person emerges from among us, the faithful believers of today, the effort God made in carrying out the dispensation by sending Jesus to this earth and the meaning of Jesus&#8217; sending the Holy Spirit will all prove in vain. All the labor of the prophets and sages fighting against Satan in the blood-stained course and their eager looking forward to the day of victory will also come to naught.</p>
<p>What then is God seeking today? God is seeking one person who has attained to the substantial entity of goodness and can say with confidence, standing before a court of judgment, &#8220;Since I know that God&#8217;s hope is to realize the ideal of attaining the substantial entity of goodness in such-and-such a way, by looking at me as the one who has attained to such a substantial being, please dispel the Father&#8217;s resentment and stop the trial activities.&#8221;</p>
<p>Unless the substantial entity of goodness that pleases God is attained, God cannot be joyful and, accordingly, cannot have glory. As long as God does not feel happy, all created beings will not be joyful. As long as God does not have glory, no one can be given glory. All Christians today are given this mission to go further, cultivating the path of life in such a destiny.</p>
<p>We ourselves must become beings from such a standpoint who can experience God&#8217;s situation, looking at all things with the shimjung that is similar to that of God. We must step out before the will of the providence, before the prophets and sages, and before the Father, who is reaping the substantial entity of true cosmic goodness. In the meantime, have we indeed become the substantial entity of goodness in this hour today, the entity that is suitable to God&#8217;s internal standard, that God is also seeking? It has become time to ask ourselves this question and to reflect upon ourselves. Now is the time for God, who feels sorrowful because of the fall of human beings, to reap the fruit of goodness in the garden that He idealized by setting up a condition called judgment after the lapse of a 6,000-year history.</p>
<p>In our scriptural reading, it is said, &#8220;A man reaps what he sows,&#8221; (Gal. 6:7). After God set up Adam and Eve, He loved them and wished the day when He would feel joyful by receiving beauty and goodness in return for His love would continue eternally. Though it was absolute that the will and hopes of God in such a position were to be realized at all costs, they were not materialized due to the fall of Adam and Eve. Therefore, only after passing through 4,000 years of martyrdom for the sake of cultivating the seed of hope was God able to send Jesus Christ as the fruitful entity.</p>
<h3 align="center">JESUS WHO IS TO REALIZE GOD&#8217;S DESIRE</h3>
<p>What kind of man was Jesus Christ? Jesus Christ came as the substantial entity of goodness who could undo the bitter resentment of heaven and earth. Therefore, it was his mission to come to this earth as the substantial entity of idealistic goodness who could be spoken of with pride before God. He was to represent Heaven and represent the earth. He was the one for whom God waited eagerly. He was to be offered to God as the harvest of original goodness throughout his life. Because Jesus, who came with such a mission, came to bear the cross at Golgotha owing to human distrust, the man who should be the harvest of goodness became the sacrificial offering.</p>
<p>Therefore, Jesus carries a bitter shimjung originating from not having attained this. He has been praying a long time for the sake of realizing God&#8217;s original will on this earth. We must understand that, to accomplish this will, he will surely come again.</p>
<p>Similarly, Jesus came for the sake of saving all humankind to be the object of goodness of God. That is why he had the mission to subjugate Satan and make him cease to exist. At the same time, he came to realize God&#8217;s ideal in God&#8217;s place. Jesus had to go the life course with which God could be pleased. Therefore, Jesus could not help but materialize such a will, not by dying, but during his lifetime. If Jesus had completed such matters while he was living, we of today would not have to wait for him to return. The goal, in other words, the harvest of goodness that God had idealized and wished for could already have been offered through the life course exemplified by Jesus. If that had happened, it would not have been necessary for Christians to toil, to supplicate and to lead prayerful lives awaiting Jesus&#8217; return for 2,000 years.</p>
<p>Following in Jesus&#8217; footsteps to fulfill the providential mission, we must accomplish today all of the goals Jesus set and fulfill the purpose for his being born. Unless we now fulfill God&#8217;s will, even by sacrificing ourselves for Him, God cannot reap us as the fruitful entities of goodness.</p>
<p>God did not create human beings to live only in the spiritual world. He created them to live, building harmony between the spirit and the flesh by acquiring the substantiated body. That is, God created so that the spirit of human beings could govern all things by connecting with God, who exists as a spirit. The spirit and flesh can harmonize with each other by the spiritual body connecting to the physical body. This is the rule of creation. Therefore, you must understand that Jesus, who came to this earth as the fruitful entity of goodness after a 4,000-year history, should not have been the king of all kings only after he died, on the spiritual plane.</p>
<p>Jesus was anxious to clearly teach his beloved disciples the secrets of Heavenly principle without restraint. But there was no proper person who could comprehend Jesus&#8217; shimjung and then uphold the will. You must understand the indescribably tormenting circumstances pressing down upon the bosom of Jesus, who stepped forward wishing a time of triumph would come.</p>
<p>Jesus came for the sake of human beings and wanted to share joys and sorrows with them; however, he was unable to let them comprehend his circumstances. Therefore, God earnestly wished that Jesus become able to commune with human beings on earth. That is why God has come forth unfolding the dispensation of 2,000 long years in order for the person to emerge who can comprehend Jesus&#8217; internal and external shimjung.</p>
<p>After the lapse of the 4,000-year history after the fall of Adam, Jesus came as a substantial entity of cosmic goodness on this earth to attain God&#8217;s hope for the first time. He paid dearly and sacrificed himself to serve God. Jesus is the man who remains to us the symbol of tribulation, suffering and toil.</p>
<p>It is not right if we spiritually seek only for all the fruit of goodness that Jesus left. That goes against Jesus&#8217; saying, &#8220;Whatever you bind on earth will be bound in heaven, and whatever you loose on earth will be loosed in heaven,&#8221; (Matt. 16:19, 18:18).</p>
<p>If we have bitter resentment, it is not limited to our individual selves. In it, there is the acute, bitter resentment of God, Jesus and the Holy Spirit. Furthermore, there is the penetrating grief of the prophets and sages. While coming through the history of 6,000 years, God has waited eagerly for the day when human beings will awaken to the reality of their situation and become able to be offered as a sacrifice of goodness. The time when such an ideal comes to be realized is the time of the Second Coming. That time is now.</p>
<h3 align="center">THE ROOT OF GOODNESS, THE ROOT OF LOVE<br />
AND THE ROOT OF LIFE</h3>
<p>If you come to realize why Jesus, who came to be harvested as the fruitful entity of goodness, wishes to come again and demands a practical faith of human beings on this earth, you then have to move forward. You must fight with the resolution to advance through this path to the end, even in the face of any ordeals, sufferings and courses of struggle. Furthermore, you must not lead a life where you are self-centered and looking after your own interests.</p>
<p>Because each human being has lived a life that does good only for him or herself, and has carried out social activities in the same way, God feels sad. We of today should not live like that.</p>
<p>Although you may live somewhat self-centeredly for a day-to-day short life span, in the duration of your lifetime, you must set up a certain standard that you will consider as your center. In other words, if there is a man who has everything working out well, centered on himself, throughout his day-to-day life, he cannot live with confidence like that for the duration of a lifetime or else he cannot be offered to God as a harvest of goodness. Therefore, unless you wait eagerly for that one day when you can make a father-son relationship with Jesus throughout your lifetime and build a foundation such that you can bear trials to seek that one center, and endure any kind of hardship, you cannot reap the harvest of goodness for which you have hoped and for which Jesus Christ has wished on this earth.</p>
<p>You cannot establish the standard of goodness only by your life course. Although it seems that there are words of goodness and men of goodness in this world, the person who can be the fountainhead and father of goodness has not yet appeared. Human beings are all speaking of love, goodness and life, but they all speak of their own lifetime. Until one substantial entity that can be the root of goodness, the root of love, and the root of life comes into our depths by connecting with our minds, our bodies, and our whole lifetimes, we cannot become the substantial entity of goodness. We must reach the standard of being able to connect with that entity.</p>
<p>We should be aware that Jesus was the man who came as the father of all things in the universe. In other words, he was the father of myriads of people and he became the root of all life in this world. Therefore, Jesus became the root of goodness to the human beings who could not find the root of true life on this earth. What is more, Jesus came to introduce the standard that can be the root of goodness to realize God&#8217;s will in the human world. He is the root where the providential history that God has idealized is being unfolded in an obscure way</p>
<p>Since Jesus had a spirit and a body, he must have had internal and spiritual things, along with external and physical matters. Therefore, he must have had internal life and external life. Jesus established the central coordinates of life through living a life where the internal and the external are combined. He kept going to accomplish the standard that he wished, walking the course of the substantial entity for the sake of the will on this earth.</p>
<p>Although Jesus led a life suitable for him to fulfill such a mission, he did not attain the goal completely. That is why he had to wait 2,000 years to come back again. If the goal had been completely attained, then the Holy Spirit, Jesus and God would have come to live with us.</p>
<p>What do you think we have to inherit today from God, Jesus and the Holy Spirit? Human beings on this earth must inherit the ideal of substantial goodness that Jesus wished and upheld. They must then set up the concept of goodness, the religion of goodness, and the standard of goodness which can connect their minds and bodies and connect to God&#8217;s shimjung. If you possess the root of Jesus&#8217; good ideology, it will still put forth new shoots, no matter how many times it is cut off.</p>
<p>We men of faith must understand what the root of such goodness is, what the root of God&#8217;s love is, and what is the root of God&#8217;s life and His will. The lives of human beings, who lost such a root cannot transcend the aspects of time and space. However, if today, from the position where we are restricted by time and space, we come to find the root of goodness that can live in the eternal relationship with goodness, we then can rise above the world of time and space.</p>
<h3 align="center">SAME ROOT, SAME FRUIT</h3>
<p>Goodness is that the beginning and the end are manifested as one. From that standpoint, God said, &#8220;I am the Alpha and the Omega, the Beginning and the End.&#8221; This is when the main body of goodness, which represents the root, and the substantial body, which represents the branches and leaves, become harmonized. If God, who is the root, lives eternally, we the branches and leaves then come to live eternally. If God is good eternally, we, too, become good eternally. If God is happy eternally, we, too, can be happy eternally. The reason we cannot be happy eternally is that we have not become the substantial body representing the branches and leaves of God.</p>
<p>Therefore, we have to believe in Jesus, who came as the parent of goodness, and the Holy Spirit and become united with them by being born again. We must carry out the external and substantial activities that can manifest God&#8217;s internal and spiritual ideology.</p>
<p>To attain the substantial entity of goodness today, we must have the relationship of being unified with the Lord who is coming again. In other words, the man who believes in and serves the Lord who comes to this earth with the shimjung that is united with God as the root of goodness, who forms a reciprocal relationship with him, will bear the fruit of goodness like him. The one who does not understand such facts and cannot attain that one standard will not be able to attain eternal happiness, eternal life and eternal love.</p>
<p>We have the fate of pursuing such a path. This path is one that Jesus left to humankind after having tried to attain it for humankind, yet being unable to. Many prophets have arisen during the 2,000 years since Jesus&#8217; death.</p>
<p>Upon being faced with this time when everyone speaks unanimously of the last days, do you know what you have to do? You must become the substantial entity of the harvest of goodness. Unless you come to stand as one fruitful entity that can be reaped by Jesus, who represents the root of goodness, you will have nothing to do with Jesus, the Holy Spirit and God.</p>
<p>In retrospect, reflecting upon the position of ancient Adam and Eve, we can understand how human beings came to lose goodness. Adam and Eve forgot the responsibility they had to bear as the ancestors of humankind on this earth. Due to their failure in fulfilling such a cosmic mission, they came to lose the root of goodness and caused posterity to lead a life that is against Heavenly principle. Owing to their forgetting their responsibility and not fulfilling it, Adam and Eve came to fall. Similarly, all human beings ended up carrying the burden of falling. Accordingly, undoing the burden that each human being came to bear and which came to exert itself as an influence upon all created beings is the history of restoration.</p>
<p>As long as Adam and Eve abided by the rules God set as the Heavenly ways, no one could interfere with them. They were in a high and noble position where, having an absolute reciprocal relationship only with God, they had to follow the rules of Heaven. They merely had to obey, whether seen or not seen by anybody. Then they would have carried out the responsibility entrusted in them.</p>
<p>Not only Adam and Eve, but the archangel also had the rules of Heavenly principle to abide by, the path to walk, and the responsibility and mission to bear. But because they acted having forgotten this, the fall came into being. Jesus is trying to undertake and undo this burden that human beings have come to bear due to falling. To us, too, is left the responsibility, in cooperation with the Holy Spirit, to undo the burden that was to be undone through Jesus. Suppose we are the faithful believers in the final days who bear such responsibility. We then have to command our daily life, social life, and even the concept that we idealize based on this standard, bearing the same content of responsibility as that of Jesus and the Holy Spirit. We must have the shimjung that connects with them.</p>
<p>God, who had wished for the fruit of goodness that He had blessed humankind with to be attained, tried for the duration of long history to accomplish the will through Jesus. However, because of Jesus&#8217; dying on the cross, He did not accomplish the will completely and is working again to realize the will. During this process, Satan is fighting to prevent this. To proceed in repulsing Satan&#8217;s challenge is the path of restoration.</p>
<h3 align="center">BURDENED MAN&#8217;S RESPONSIBILITY<br />
BECAUSE OF THE FALL</h3>
<p>You must understand that if Adam and Eve had not fallen, an individual&#8217;s responsibility would have been limited to that individual&#8217;s bearing of it. Because they fell, all humankind has his own responsibility to bear and has to beat off the counterattack of Satan also. In other words, if the fall had not occurred, humankind would have been able to feel God&#8217;s joy as his own and attain to the fructified entity of goodness by fulfilling his own responsibility. But because humankind fell, he undertook the responsibility of having to stand against Satan and fight as well. This is the fate of humankind.</p>
<p>The burden of restoration that man bears is that while he has to go through indescribable hardships to go forward bearing this burden, to this is added the enemy, Satan, who is stalking him. Man has to exterminate this, too.</p>
<p>Because God&#8217;s hope was cut off due to Jesus&#8217; dying, a substantial being who has succeeded in attaining the purpose of life Jesus wished to attain will come to emerge on this earth in place of Jesus. Until the day when God personally puts His hands on that person&#8217;s head and says, &#8220;You are my eternal, beloved son,&#8221; and can lower His blessing, we have to meet Him through one religion and open a gate to attend Him. We must, first, foster cosmic energy to do that.</p>
<p>Today we have to do that which will enable us to make a connection with Jesus, who is the substantial entity of goodness of God, who transcends history on the national and worldwide level restorational process. What is more, we must become sons and daughters who can fight for Heaven, shouldering the responsibility of providential restoration and establishing relations with the substantial entity of goodness. Such a person will not be subjected to any condition of having to be tried, even when faced with the last days.</p>
<p>To become Jesus&#8217; friend, each of us has to do the work he did not finish and undertake the responsibility for the will that he idealized during his lifetime. Meanwhile, we should ask ourselves if we have fulfilled such a task in the past. Until the time of Jesus&#8217; Second Coming, Jesus and the Holy Spirit, who are spiritual, will carry out the work of making fallen humankind part of the original life through rebirth. The man who passes through such a process will be able to easily go through the time of judgment. God will let him hurry through the trial without difficulty. Therefore, we must be aware of the fact that without walking the path of life that can excite our creativity, and without becoming the harvest as the substantial entity of goodness, we will suffer more pain than the suffering Jesus endured.</p>
<p>Even a grain of seed can put forth buds for the first time only when the spring comes after the cold winter. Similarly, if there are human beings who try to go forth upholding the true nature of life in the last days, there will be the contrary influence that tries to confuse the real nature of life and goodness. In other words, just as there is a storm-sweeping winter season in heaven and earth, the time of rough-and-tumble life in which the blood of life dries up, the time when the power of the sacred spirit will freeze and all social activities become paralyzed will come upon us.</p>
<p>Without passing through such a life, without having actual results of overcoming these and attaining to the substantial entity united with the cosmic center, life, love and the root of goodness, all the world will become ridden by fear and lose equilibrium. Then the reason and mental panorama of humankind, who are accustomed to the force of habit, will be thrown into confusion. On top of that, Satan will appear to start the age of horror where he will attempt to take the life of humankind.</p>
<p>By way of precaution against such a time, we have to set up a firm center to ably bring such elements under control and equip ourselves with the vitality that can undo all bitter resentment. If we do not bear the fruit of life in which we become nestled in the bosom of God&#8217;s love, it will be like not seeing the spring or summer season during our growth, but instead seeing the fall or winter.</p>
<p>Now humankind has arrived at the time of harvest, after having passed through the history of 6,000 years. In such a time, you must equip yourselves with the natural quality of Christ, the seed of goodness, and with a character proper to God&#8217;s will, and become a substantial being who can fulfill the responsibility. Otherwise, you will be unable to be sown as a seed of immutability upon seeing a new season.</p>
<p>Therefore, when something regrettable happens, we should become sons and daughters who can pray to God, &#8220;Father, I will become the one who can take charge of difficult work that others do not want.&#8221; By becoming the people who lament, putting themselves in God&#8217;s place, we can be concerned and worry for the sake of Heaven.</p>
<h3 align="center">GOD WHO SEEKS,<br />
USING GOODNESS AS AN INTERMEDIARY</h3>
<p>Satan has contended against the Holy Father, the Holy Son, and the Holy Spirit for 6,000 years. He also watched for a chance to attack as God unfolded the dispensation. He is about to attack at once in these days by mobilizing all the crowds of people on his side. In times like this, have the children who can take the responsibility and check this emerged on this earth? They have not, and that is why the sorrow of God, Jesus and the Holy Spirit fills the earth. If we truly understand the will of God, who has come forth setting up the ideal of creation in such a situation, can we still move forward with confidence, raising our heads? As a qualified delegate of God, with the shimjung of feeling inadequate in every way, having cultivated the ability that can beat off billions of satans with confidence in the position of Jesus, we must join company with Jesus. Jesus has fought bearing the responsibility for the 4,000-year history. Jesus and the Holy Spirit have tried to end the history of the 6,000-year struggle. We must join them in their fight against Satan and move forward abruptly, expanding the sphere of triumph.</p>
<p>How many people have there been until now who can bear the responsibility for creating a climate like this! The faithful believers today do not know of God&#8217;s shimjung. He grieves about no such person being in existence. All of you gathered in this place today, wishing that you understand my shimjung, I, who make you the family members who stepped onto this treacherous road that others say nay to and refuse to walk, I desire that you at least become the people who can follow as far as the point that God wishes and carry out the responsibility. What is more, I wish you to be the people who can carry out the responsibility to the end, to accomplish that will, as long as there still remains the will that God wished to be fulfilled through Jesus.</p>
<p>You must fulfill your individual responsibility, the people&#8217;s responsibility and the worldwide responsibility by becoming people who can love each other like real brothers and sisters, comfort each other and take responsibility for each other. When this happens, even when you are struck with a serious and sad shimjung by being inadequate individually, brothers and sisters will save you. Thereby, you will come to taste the joy of what you want to attain without God&#8217;s hands reaching out to us. Now is the time when God lets such persons be aware of His will, even through sensing that feeling.</p>
<p>When faced with difficulties while trying to fulfill the will of God, who has endured and toiled for 6,000 years until now, the man who has lots of friends to whom he can plead, &#8220;Please help me,&#8221; will receive God&#8217;s helping hand. The mind of God is lamenting. He must look toward humanity on this earth, because He has to fulfill the will through human beings today. Human beings today are in a position such that not only can God not grab hold of them; Jesus and the Holy Spirit, also, cannot grab hold of them. The people who understand God&#8217;s situation will be contrite, shedding tears. However, even if a man with such a shimjung sheds tears that touch Heaven and earth, it will not be in the same category as God&#8217;s grief and sorrow. Human beings are not even aware that the root of such bitter cosmic resentment still exists. When you cannot step forward in the presence of God for yourselves, you must know to go forward relying on true brothers and sisters.</p>
<p>The reason people wish to meet good friends, good teachers or good ministers is because they wish to be able to hurry their way by forming relations with good cosmic fruitful entities and to avoid bad things. If you make other people feel God&#8217;s nation through your decisions, your faith and the way you lead your lives, they, too, will come to follow suit. As Jesus became a sacrifice by being obedient before God, you, too, must meet a person who does God&#8217;s work. In other words, you must find such a shepherd or leader and submit to him. If the person who is leading you strays from the path of the will, you have to render devoted service to Heaven for that person. You have to take the altar in your charge and become the sacrifice yourselves. You have to pass through the point of having fulfilled the responsibility like this.</p>
<p>You must understand now how invaluable is the burden you are shouldering. Since even now sorrow is still left with the Holy Spirit and Jesus and God, if each of us does not become the one who can undo this sorrow, then each of us will become one who is shameful before Heavenly Father.</p>
<h3 align="center">THE ONE WHO CLEARS THE WAY OF GOD</h3>
<p>God awaits the possibility of our toil going beyond those laborious efforts made in battle by God, Jesus and the Holy Spirit. He waits for us to become harvestable as the fruits of goodness. Therefore, if we cannot become ones that are adequate for that, God will experience sorrow again.</p>
<p>Although the history of adverse fortune is being prolonged because human beings cannot carry out their own responsibility, there are many who are not aware of this fact and are asleep. At any rate, we have to be able to say to God, &#8220;Father, who is going to be responsible for this? Since I came to know of the Father&#8217;s will ahead of anyone, I will bear the responsibility for this, even if by myself,&#8221; and to make such a determination. To carry on a fight against the force of deathly darkness on this earth and, furthermore, to have carried on a three-dimensional fight against Satan, is the history of faithful believers until now.</p>
<p>People today follow many different faiths. What is more, each of them recommends the religion that he has faith in to others. When you listen to the various contents of those faiths, they all demand faith that can set up righteousness and goodness and can also repulse Satan&#8217;s offensive power; a faith that does not break against any evil challenge that tries to destroy you. It is you who should be bearing fruit as the substantial being of such faith.</p>
<p>Jesus alone bore the responsibility to liquidate all of the guilt committed throughout history in one generation and to establish the foundation of a new history. He tried to realize his will, praying to God for the protection of the Israelite people who were to build God&#8217;s nation by saying, &#8220;Please let me shoulder the sins of the enemy.&#8221; Such a will of Jesus&#8217; has extended down until today and is being spread out worldwide.</p>
<p>If there are many sons and daughters even today who, representing the Korean church, can step forward and pray, &#8220;God, please let me shoulder all of the sins of this world and fight against Satan, sacrificing myself,&#8221; the standard of God&#8217;s providential history will be established through this people. If we came to understand God&#8217;s situation and shimjung while others were unaware, we must then become God&#8217;s true sons and daughters. With a sense of responsibility, we must take the steps of life with the shimjung that we too will walk the fateful path of Jesus, who would get up again and walk when he fell at the summit of Golgotha. We can move on gaining victory, following the example of Jesus, who walked the path of crucifixion defeating every matter of life. Furthermore, we have to move forward walking this path for this people today. We have to be able to step forward even to the tribunal representing the world. Members of the congregation, please do not lose heart because our church walks the lonely path in a different position from others. If our being scolded, getting sacrificed and ending in the place where each of us dies creates a way that this people can live, we then have to walk this path willingly. By taking this path, we and the people can live. What is more, that is how we fulfill our responsibility and make ready the place to which God can come.</p>
<p>In like manner, as the resurrection of Jesus took place after he completely paid indemnity for the guilt of the distrust of the Israelite people before God, we are left today with a burden to bear, a goal to attain and a path to walk before humanity and even before Satan. Therefore, even when faced with opposition from someone, we must be prepared to die and become living sacrifices possessed with the style of immutability only. In other words, we must have such unchanging confidence and a sense of responsibility as to say, &#8220;If heaven and earth change, I can never change! Despite whether heaven and earth fall into disorder, I can never become disordered! There is absolutely no created being in this world that can rock this center set up in me now.&#8221;</p>
<p>When we are determined to fulfill the responsibility of such a living sacrifice, it then satisfies the condition that we are to be subjected to cosmic level suffering, so that we become able to pass the first critical point of ushering in Jesus for whom we longed for the first time. What is more, if we have the standard that can handle the sinful world of suffering, Jesus will come to show himself before humankind for the first time. Only after that can it be seen that all humanity fulfilled the responsibility to set up the Heavenly principle on this earth.</p>
<h3 align="center">THE FRUITFUL ENTITY OF GOODNESS<br />
THAT TRANSCENDED HISTORY</h3>
<p>After setting up a goal that we will uphold this people before God by having them become the people who fulfill the responsibility, we have come out until now walking the course that realizes that. By the way, if some dark shadow is left in our living environment while we move forward walking the road of restoration, the essence of evil that is blocking our way, the element of death, will come to lurk. Such a dark shadow appears where good faces are being set up. Therefore, to show off is to destroy oneself. You should not stand in a position where you are destroyed due to such an outward show.</p>
<p>One can never muddle through things before the principle of natural laws. Speciousness will not do. Such a case is rather like dragging oneself into the sphere of sinfulness. That is to deceive oneself, and to deceive the Holy Spirit, Jesus and even God. Furthermore, that comes to be a factor that makes all created things sigh.</p>
<p>Therefore, if you ever happened to stand in a place like this, you must have senses of shame and guilt by command of the original mind. By reflecting on yourselves from now on before God, Jesus, the Holy Spirit and before all things, try to appear as ones whose actions and lives leave nothing to be desired. To accomplish that, you must live a life that does not bring ruin upon you. What is more, since trying to depend on each other is an element of vice, you should avoid becoming filled with sinful elements by dispelling from your minds the tendency to rely upon others.</p>
<p>It may be an easy thing for you to look and have faith in Jesus and follow him. However, defending against Satan&#8217;s invasion, which comes in horizontally, is not an easy problem to solve. To ward off Satan&#8217;s challenge, you must first be strong enough to not be destroyed by any challenge. To be so, you must have a diligent mind to be able to strongly establish in yourself the center toward Heaven.</p>
<p>Accordingly, only when you have a confident belief that you are living a life that is not self-destructive will the path that leads God to humankind be opened for the first time. Since you have a mission like this, you should never stay idle. As long as there is some responsibility left to be borne, you have to fulfill it by surmounting any difficulties. As long as there remains the fate to fight, you have to carry out the fight at the risk of your lives.</p>
<p>Now if you came to realize the purpose of goodness at which Jesus aimed, and that you can attain it only by going such-and-such a way, you must then live appropriately for your minds and bodies and for the wishes of Jesus and the Holy Spirit. Only when each of you becomes such a person and can say before God, &#8220;Heavenly Father! I have triumphed after fighting with Satan to attain the will that Father wishes,&#8221; with Jesus on the right and the Holy Spirit on the left, God then will set up through such a person the ideal of Jesus and the Holy Spirit before humanity on this earth. God will then entrust him with His new work and let him carry it out. Subsequently, God will let Jesus and the Holy Spirit rest in heaven and He will complete the will that He desires to establish on this earth.</p>
<p>People on the earth may attest to a person, but he does not automatically come to be the representative figure who attains God&#8217;s will. Jesus and the Holy Spirit will, first of all, have to be happy because of him and able to work through him for the mission he undertook.</p>
<p>As long as there remains the will that is to be fulfilled, the will surely is to be set up starting from one representative person. If the will started from that one person bears fruit into the will that can be extended to the whole, it will then bear fruit into one religion. Prophets and sages will come to gather centering on such a religion. Similarly, when you become able to march forward toward the eternal, cosmic blessed land of Canaan following one chosen, central figure, it will fulfill the responsibility of the Israelite chosen people.</p>
<p>Only then can God eradicate Satan&#8217;s influence from this earth, which is fraught with cosmic, bitter resentment, and enjoy the happiness of having His wish fulfilled, with Jesus and the Holy Spirit. Then He can implant the happiness He feels into all humankind. Then the grievous lamentation of human beings will come to disappear.</p>
<p>You should move forward so far that you can wish that the peak of danger has passed and that the bitter resentment is dissolved. Once seeing them resolved, you can express your gratitude to God and offer a respectful bow and bear fruit as the substantial entity of goodness that transcends history. I wish that you may become those who can liquidate the nameless fear that will come into being in the last days and the piercing resentment of God, all things and humankind.</p>
<h3 align="center">PRAYER</h3>
<p>Father who calls these young things and is laboring to seek the cosmic fruit of goodness! Please forgive us for not being able to understand or imagine, despite being faced with the cosmic fate, that each of us is to be harvested as the fruit of goodness by the hands of the Father.</p>
<p>Until today, we have been people who, while walking down this one path, were oblivious of themselves, being shameless, detestable, haughty and presumptuous, and who forgot their own responsibility. However, now we came to understand that the fruit of goodness is attained after the unification of mind and body is accomplished. Only through that can one come forth with a clear conscience. That is the law of Heavenly principle. Father, please awaken our souls and guide us in order for us to be able to walk such a lonely path.</p>
<p>If there is any content that is inadequate when You look at us, please set this in good condition and let only the shimjung that tries to care for the Father with increasing intensity pierce our hearts. My Father, I pray from the bottom of my heart that You will let the Father&#8217;s shimjung fill our lives.</p>
<p>Father, we are the lonely sons and daughters, and we are those who took charge of one portion of the work that people of all sorts and conditions must carry out. Therefore, Father, please comfort our minds. We understand that Your being with us this hour today is to let us have the substantiated body and to draw us in before You, through the hands of Jesus who is the Lord of truth. While for that purpose the Father labored and worked, we have wasted so many days living at random until now. The thing we took in our charge, the thing we idealized was a vain and wild thing and meant for our own benefit.</p>
<p>Father, although we are such people, please entrust us with Your work now and encourage us. Please raise us again through the Father&#8217;s work. Please bestow grace upon us who are living on this earth. Raise us to be sons and daughters who, upon ushering in the Lord who comes with a three-dimensional nature, can cast off the yoke of a billion satans and be the standard of eternal victory before humankind. Please allow even one person to emerge from among these unworthy people. Let him become the one who fulfills the entrusted responsibility and accomplishes a nation of victory, liberation and freedom, and a day of happiness in which all of the world can bow before him.</p>
<p>Father, I sincerely desire You to help all Unificationists to be able to do this work with this nation. By revealing nationwide and worldwide the comprehensive will that You are unfolding on this earth, let us expel billions of satans and fulfill the responsibility to attain Your desire.</p>
<p>We ardently solicit that You let eternal life gain its footing in these people through this word. Let this word appeal to the mind and body to stir up the thoughts and concepts so that it can guide the faith and life. Let the minds of these people move so that it becomes their eternal lifetime goal to make God happy I pray all these words in the name of the Lord. Amen.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html" title="Permalink to LET US BE THE HARVEST OF GOODNESS HEAVEN DESIRES" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html" rel="prev"><span class="meta-nav">&laquo;</span> JESUS WHO IS TO ESTABLISH HEAVEN&#8217;S LOVE</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html" rel="next">WHAT KIND OF RESURRECTION ARE YOU TRYING TO ACCOMPLISH? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,231 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME THE ELITE TROOPS OF HEAVEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-810 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-810" class="post-810 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME THE ELITE TROOPS OF HEAVEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:39:09+01:00"> <a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:40:27+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
April 14, 1957</h3>
<p style="text-align: center;"><em>2 Timothy 2:1-13</em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text 2Tim-2-1">You then, my son, be strong in the grace that is in Christ Jesus.</span> <span id="en-NIV-29830" class="text 2Tim-2-2"><sup class="versenum">2 </sup>And the things you have heard me say in the presence of many witnesses entrust to reliable people who will also be qualified to teach others.</span> <span id="en-NIV-29831" class="text 2Tim-2-3"><sup class="versenum">3 </sup>Join with me in suffering, like a good soldier of Christ Jesus.</span> <span id="en-NIV-29832" class="text 2Tim-2-4"><sup class="versenum">4 </sup>No one serving as a soldier gets entangled in civilian affairs, but rather tries to please his commanding officer.</span> <span id="en-NIV-29833" class="text 2Tim-2-5"><sup class="versenum">5 </sup>Similarly, anyone who competes as an athlete does not receive the victors crown except by competing according to the rules.</span> <span id="en-NIV-29834" class="text 2Tim-2-6"><sup class="versenum">6 </sup>The hardworking farmer should be the first to receive a share of the crops.</span> <span id="en-NIV-29835" class="text 2Tim-2-7"><sup class="versenum">7 </sup>Reflect on what I am saying, for the Lord will give you insight into all this.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29836" class="text 2Tim-2-8"><sup class="versenum">8 </sup>Remember Jesus Christ, raised from the dead, descended from David. This is my gospel,</span> <span id="en-NIV-29837" class="text 2Tim-2-9"><sup class="versenum">9 </sup>for which I am suffering even to the point of being chained like a criminal. But Gods word is not chained.</span> <span id="en-NIV-29838" class="text 2Tim-2-10"><sup class="versenum">10 </sup>Therefore I endure everything for the sake of the elect, that they too may obtain the salvation that is in Christ Jesus, with eternal glory.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29839" class="text 2Tim-2-11"><sup class="versenum">11 </sup>Here is a trustworthy saying:</span></em></p>
<div class="poetry top-05">
<p class="line" style="text-align: center;"><em><span class="text 2Tim-2-11">If we died with him,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-11">we will also live with him;</span></span></em><br />
<em><span id="en-NIV-29840" class="text 2Tim-2-12"><sup class="versenum">12 </sup>if we endure,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-12">we will also reign with him.</span></span></em><br />
<em><span class="text 2Tim-2-12">If we disown him,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-12">he will also disown us;</span></span></em><br />
<em><span id="en-NIV-29841" class="text 2Tim-2-13"><sup class="versenum">13 </sup>if we are faithless,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-13">he remains faithful,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 2Tim-2-13">for he cannot disown himself.</span></span></em></p>
</div>
<h3 align="center">Prayer</h3>
<blockquote><p>Waves of death are sweeping over the eastern and western oceans. As we think about how the ultimate responsibility to block these waves of death rests on each of us, beloved Father, please allow us to recognize that we are dull-witted, unprepared and immature.</p>
<p>Father of compassion! We earnestly hope that You will forgive our not being able to think about Your situation, dignity and prestige. We are not able to think about You, whose heart is broken. Instead we must rely upon Your compassion for strength.</p>
<p>We who are dwelling in this dark land of death know that without the power and kindness of the life spirit there is no way for us to return the glory of victory to the Father. Therefore, Father, we plead from the depth of our hearts that in this hour You will grant the grace that You promised and manifest to this congregation the entire will that You are working to fulfill.</p>
<p>How can we claim to be worthy enough to go before the Father? How can we raise our heads before Heaven? We deserve to die many thousands of times. We deserve to be fastened to the interrogation chair of sin and suffer the pains of judgment. Therefore, we have prostrated ourselves before You, hoping for the merciful love and grace of the Father, with the heart of revealing our inner self. If, after putting before the Father all that we possess, there is something that is not proper, then beloved Father, we sincerely wish that You liquidate it and guide us to guard our nature in the state You have given us. We appeal to Heaven for great grace.</p>
<p>Father! Please look down with compassion upon these sons and daughters of Yours who have gathered here. While pursuing this path that teaches them they are not strangers, they have gained memories of times when they were overwhelmed by the sorrow that penetrated deep into their hearts. There were times when they were deeply immersed in worries and troubles. Therefore, Father, please be present in this place today and bestow the grace of Your recognition. Let them not be considered strangers here. Beloved Father, we hope from the bottom of our heart that You will allow this moment to be the time when only You will hold them, comfort them and counsel them. Father, please allow the many millions of people who are living on this earth to feel the grief of the Father and to experience the deep-set grudges and lamentations of the Father. Furthermore, Father, we earnestly entreat that You love the countless living beings who are in pitiful situations with compassion.</p>
<p>Father, although we have heard people asserting themselves to have the truth and that their actions are right many times in the past, we have never seen a kingdom built by them. Father, we hope that with sympathy You will look down upon us. We have only heard false words and seen false actions. We pray that in the meeting this evening Your works will be revealed. We pray that Your limitless grace will unfold before us, gathered here today, that we can resurrect our exhausted bodies and dash toward the will which You command and desire.</p>
<p>We know that if, among the ignorant and sleeping people, there is someone who is connected to the sorrow of Heaven, then even if he suffers distressing tribulations many thousand times over, he will certainly win the victory. Please let Your children who have gathered here experience the sorrow of the Father with their minds and bodies and experience the concerns that Father has toward the earth, so that You can raise them as the sons and daughters who can fulfill their obligations as children.</p>
<p>Father, we have come before You with the minds and bodies that have been wounded during the last week. Please erase the traces of sin Satan has caused in us. Our only friends are the members who have gathered here, and the only ones that we can depend upon are ourselves. Father, we hope with the most earnest heart that You will embrace us in Your bosom of love, we who are lonely and do not have any friends on the earth. We pray that You will comfort us, counsel us and amply distribute the grace of concealed love upon us.</p>
<p>Today is a holy day, so please bless the countless altars that are gathering on behalf of the people. Among the children of the many religious groups who have lost the Father&#8217;s love, please let children quickly appear who can restore Your love.</p>
<p>Father, please do not let this people stagnate in the position of ignorance and self-destruction. Please bring upon this people the grace that will guide them to cause a self-explosion which can dismantle the base of evil. Let them yearn only for the Father&#8217;s compassion and love.</p>
<p>We have prostrated ourselves before You in this hour, yet we do not have any gift to offer to You. Father, we earnestly wish that You forgive us and that You allow us only to possess the heart of repentance that will frankly reveal our immaturity, which seeks only to survive physically.</p>
<p>Requesting with the utmost sincerity that the minds and bodies of everyone who have gathered here will unite with the will and the grace of love which You command, we have prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon I want to give is, <em>&#8220;Let Us Become the Elite Troops of Heaven.&#8221;</em> I will speak briefly on this topic.</p>
<h3 align="center">The Purpose of God&#8217;s 6,000 Years of Struggle</h3>
<p>Because of human beings, God has been carrying on internal and external conflicts that surpass our imagination throughout the course of history. In other words, in the invisible world, He is battling against Satan. In the visible world, He is unfolding the fight through the people on the good side and the people on the evil side.</p>
<p>If we now have the responsibility to fathom the will of God and understand His internal situation, then we must take charge of the internal and external conflicts of God on His behalf. You must understand that, otherwise, this conflict that involves the whole cannot conclude in the victory God desires.</p>
<p>What must we do in order to become the elite troops of Heaven who fight on behalf of the will of God? First, we must become united around the ideology centered on the wishes of God.</p>
<p>What has been the purpose of God&#8217;s fight during the 6,000 years of His dispensation? It is for the purpose of elevating us in the sinful world to the same position of glory as God. You must feel deep down to your bones that to fulfill this will, God has been sacrificing countless prophets and believers. He has been guiding the dispensation in deep concern. Otherwise, we would not be able to understand God&#8217;s situation.</p>
<p>What is the center of hope that God wants? What is the center of the whole situation that God wants human beings to seek? The center is elevating all people to high positions in His place. God has been working strenuously, until now, for this.</p>
<p>God has forgotten His own difficulties and has been guiding the dispensation throughout history in order to save us, we unworthy human beings who fell into sin and are bewitched by the seduction. God&#8217;s hope is that we human beings cultivate the sung sang of God as the substantial manifestations of God. His hope is that He can find and raise one true person who can inherit the will of God, who is trying to dominate over all things. We have to experience such a heart of God with our minds and bodies.</p>
<p>Likewise, finding and raising up the one person who can inherit the will of God is the center of the entire situation of the will that God desires. All human beings are ultimately walking forward for the sake of perfecting this one center. This kind of will of the whole remains with us. Therefore, we must be grateful toward that will of God for the rest of our lives and maintain unchanging hearts of loyalty toward the will. Even in the world, if there is someone who risks his life and, overcoming all difficulties, strains himself for the sake of his friend&#8217;s success, then that friend will consider him as his benefactor for his lifetime and will never forget the grateful feelings until his death.</p>
<p>God has been carrying on the internal fight for our sake, for the sake of unworthy human beings. It is done in order to bring to us the glory of success, regardless of whether human beings are aware of it or not. In other words, you must be able to experience with your body and mind that, through the course of history, in order to pave your way to the glorious position where you can govern over all things in God&#8217;s place, He has been persevering through all kinds of toils, worries and pain. You must be connected to the one center where the internal fight of God converts into your internal fight and the external fight of God converts into your external fight. You must keep that in mind, otherwise, you cannot become the elite troops of God.</p>
<p>Toward God, who has been carrying out this universal will, we have been repeatedly committing insolent acts. Today, if it was for your own sake, you would be able to endure any kind of sacrifice. However, when you reflect upon how much you have sacrificed for the sake of countless living things, human beings or for the numerous spirits in the spirit world, you will realize anew you are how lacking. Accordingly, we who have heavenly relationships must possess the heart that is willing to sacrifice ourselves internally and externally for the sake of all things and all people.</p>
<h3 align="center">Jesus, the Example of Sacrifice<br />
for the Sake of Humanity</h3>
<p>You must understand that the person God sent to the earth as the central person for the sake of such ignorant human beings is Jesus Christ. Jesus Christ stepped forward representing the internal situation of God. The center of his hope and his life was rooted only in God. To put it another way, Jesus hoped that he could follow the example of the patient heart of God who exerted Himself enormously and persevered for the sake of human beings. He hoped he could follow the example of the public life of God, who never works for the sake of His own glory. He wanted to follow the example of the principled content of God who does not desire conflict, so that he could represent God before all things and all peoples to give love. He wanted to cultivate God&#8217;s authority and emerge.</p>
<p>Not only that, Jesus did not want personal joy, personal hope or personal glory. You must understand that he wished his hope and glory could be realized by and manifested to all fallen human beings. For the sake of the accomplishment of this will, he toiled for thirty years of his life.</p>
<p>Therefore, we must follow the example of Jesus Christ, who appeared with the responsibility to fight for the sake of the construction of the Kingdom of Heaven and who came as the center of Heaven and earth. We must accept as our own ideology all the ideology of Jesus. If we cannot learn to follow the example of Jesus&#8217; love and march toward eternity, then the hope that God has will not be connected to us. You have to keep this fact in your minds.</p>
<p>Our fateful path is to pass through the course of conflict to reach the conclusion of history as the elite troops. We must break through on the fateful path. In breaking through this, many unfavorable conditions will block our path. Moreover, there will be countless invisible interferences by Satan. On earth you will encounter many people&#8217;s opposition.</p>
<p>However, if we are the chosen people of God who must strengthen the autonomy that God permitted and accomplish the responsibility even on such battlegrounds, then while we develop ideological unity externally, we must at the same time be able to persevere and overcome any kind of crisis that we might encounter in our actual life, just as God and Jesus have persevered.</p>
<p>Based on the joy of one moment, we must cast away the insecurity that surrounds us and nurture hope that can fill our spirits with happiness. We must not end with the karma of one day, but must safeguard forever even the relationship of one hour.</p>
<p>We must develop the base for the relationship that is like the relationship forged between God and Jesus. We must be able to serve the unchanging center as the unchanging purpose. In order to do that, we must possess immutable patience. At present, the course of ordeals remains before us. This course has become inescapable. We must inherit the character of Jesus who came to the earth and personally offered thirty years of his life in order to break through this course. With no regard for death, he testified to the truth and establish the truth.</p>
<p>Furthermore, we must inherit the patience of God, who has endured through the 6,000 long years of history, who has encountered all kinds of hardships, and who has suffered through all kinds of grief for the sake of finding each of us. Even though He had to give away His beloved only-begotten son, He did not stop His fight with the enemy but continued on with His dispensation.</p>
<p>God has persevered internally and externally in this manner to attain the qualification to stand as the master of perseverance before infinite afflictions. Because Jesus upheld the will of God, he was able to pioneer this path of the will with the determination to face even the cross. You should understand that if, while hanging on the cross, Jesus had submitted to the affliction and exhibited servility and cowardice, then Jesus Christ&#8217;s crucifixion could not appear before us as the path of life.</p>
<p>On his own, Jesus took responsibility for the entire dispensation of God. Realizing that he was the elite troop of Heaven who represented the previous 4,000-year history, he possessed the kind of character that can persevere and overcome all difficulties, even in the face of the hardships of crossing over the path of death.</p>
<p>The reason that Jesus suffered hardships is not because God intentionally drove them toward him. Because Jesus was sufficiently able to fathom the heart of God, who has been exerting Himself and persevering for 4,000 years for his sake, even at the cost of his life, even if he was to encounter the affliction of death, Jesus did not try to escape hardship.</p>
<h3 align="center">The Mind Set and Attitude of<br />
the Elite Troops of Heaven</h3>
<p>We, who must take after the example of Jesus and become the elite troops of Heaven, must be able to persevere and overcome countless troubles rather than avoiding them, even if we encounter them countless times. In the future, there will be fights that we must fight in a group of one hundred and fights that we must fight as one people. Furthermore, there will be fights that represent heaven and earth. Yet the attitude we must have, as the heavenly elite troops who are at the doorsteps of these fights, is that no matter what kind of conflict or affliction comes before us, we must develop the perseverance that will allow us to experience the heart of God, who is relying on us. We must then imposingly make a breakthrough. Otherwise, we cannot stand as the coworker of God who is victorious in the course of history that passes through strenuous conflicts.</p>
<p>You who believe in Jesus today must examine yourselves and reflect upon whether you have become people who can share Jesus&#8217; responsibility of hardships that remain in the universe. Jesus Christ, who stood before the will of God, traveled the course of afflictions because of the countless people who opposed the will of God. However, in order to not pass down those ordeals to the believers of the following generations, Jesus himself took responsibility for the ordeals.</p>
<p>In this time of the last days, universal hardships and universal conflicts are blocking the course you are walking. Yet in the same way that Jesus took responsibility for history and the fate of the descendants, fought with great difficulty and crossed over the pass of universal afflictions of his own generation, you must take responsibility for the universal afflictions. Overcoming them all, you must destroy all the conditions that Satan can accuse and fight with the conviction that you will not leave behind this ordeal as an inheritance for the descendants. If you do not have the confidence to do so, then you must understand that you will not be able to stand before God as the elite troops of God and the glorious victor.</p>
<p>Moreover, while we persevere and step forward to battle on the universal level, at the same time we must be able to abandon ourselves. Now is the time we must become more patient than any other time. You cannot have any obstinacy or assertions centering on yourselves. If there is some assertion that we can have, it is the assertion whose purpose is to realize the one will that God desires. Therefore, we who have to become the elite troops of Heaven and prepare the eternal grounds of victory must learn to abandon ourselves.</p>
<p>Jesus came to the earth with the permission of God to enjoy all the glory. Moreover, he possessed all the emotions that human beings can feel and he came with the desire to indulge in glory. However, before the fulfillment of God&#8217;s will, before God bestows the blessing and all human beings of the earth bless him, he cannot enjoy glory. Accordingly, Jesus and the Holy Spirit, who are in the spirit world without having fully accomplished the will, have been carrying on the dispensation of salvation until now in order to fulfill what they could not complete in the physical world. Jesus is someone who does not live for himself. As was the case for the thirty years of his life, even during the 2,000 years of his spiritual life, he did not live for the sake of himself or elevate himself. The hope of Jesus was ushering in the one day that, serving God and raising all humanity on the earth before God, all humanity can rejoice. For the sake of that task, he sacrificed himself and offered his life.</p>
<h3 align="center">The Qualifications of a Victor</h3>
<p>In order for us who live in the last days to become victorious in the last battle, in the same way that Jesus Christ sacrifices all of himself for 2,000 years and fights only for the sake of public cause, we must also forsake all our personal things and by finding and establishing the laws of the public cause be offered as the sacrifice that God can receive in joy. Otherwise, you must understand that you cannot stand on earth as the one who has become qualified as the victor by inheriting the hope of Jesus.</p>
<p>Until now, God has been fighting against Satan internally and against evil people externally, but this is not a insolent fight or a fight that violates the laws. In other words, God never fights in violation of the laws of the universe. Likewise, Jesus also never fought outside the principles of the universe.</p>
<p>Accordingly, when we wage the universal fight in the last days, we must understand the laws of the universal principles. By doing so, we must learn how to fight centering on that law.</p>
<p>Although you might not be aware of it, Satan also cannot establish insolent laws and wage a fight that deviates from the universal principles. For this reason, when you are fighting with Satan after setting the condition of restoration, if you deviate from the will of God, then Satan will make accusations; even Jesus cannot be an exception. When one violates the laws, Satan will invade without mercy.</p>
<p>Even for you who must pass through the fight of restoration, if you do not clearly understand the laws of Heaven, you will not be able to obtain the glory of victory as the elite troops who represent God and Jesus. The 2,000-year Christian history after the death of Jesus attests to this.</p>
<p>Jesus and the Holy Spirit are fighting against Satan spiritually while setting the conditions, in accordance with the laws of Heaven, from the position of being connected to the internal situations of God. However, among the human beings on earth, there is no courageous soldier whom God recognizes and who can represent the heavenly principles in this fight with Satan. In other words, Jesus is lamenting because there is not even one person who is fighting this battle based on God&#8217;s principles on behalf of Jesus Christ.</p>
<p>The reason that Jesus was able to comfort the heart of the Father who is in heaven, and the reason that God could entrust to Jesus the 4,000-year conflict that He was fighting against Satan is because Jesus and the Holy Spirit are more aware of the internal situation and heart of God than anyone else. Since Jesus has taken charge of the spiritual fight, the believers on earth must take charge of the physical, external fights.</p>
<p>Therefore, we who must take responsibility for this fight must own one shield of victory with which we can fight according to the laws of Heaven, in the same way that God and Jesus were able to set the condition of victory based on the laws of Heaven in the battle against Satan. Otherwise, God and human beings cannot reap eternal victory in the fight with Satan. Not only that, you yourselves will also have no way to prevent the powers of Satan, who has been in conflict against God&#8217;s laws in the invisible world for 6,000 years. You must understand that if you cannot block this Satan off, then even in the fight with Satan on earth, you will be defeated.</p>
<p>Thus, we must restore the laws based on which God was combating Satan and Jesus and the Holy Spirit were combating Satan, and lay the foundation to fight with Satan according to those laws. When this is accomplished, we can finally fathom the persevering heart of Jesus, and also experience the life course of Jesus who has become a public offering. However, in the fight with Satan we cannot fight according to the laws of Heaven, then first, God cannot recognize us, and further, we cannot win the recognition of Satan.</p>
<p>You must keep in mind that if we human beings cannot bring a conclusion to this fight by establishing on earth the day that Satan can recognize his own defeat, then we cannot bring resolution to the external and internal battles of the 6,000 years centering on us.</p>
<p>If we are the elite troops of God who can represent the Kingdom of Heaven and step forward, then we will definitely possess the weapons we need as the elite troops of God. This weapon is not some power or authority that can bring violence, but the words that God has given in order to raise human beings to the position of glory that He is in. Therefore, you must obtain this weapon of words and digest the words as your own. Next, with an unchanging heart you must cultivate a triumphant character that even Satan can recognize. If you cannot attain these things, then you will not be able to become the elite troops of God who are responsible for the universal fight.</p>
<p>Now, you who are about to encounter this kind of fight have something that you should think about while withdrawing; that is whether you have become someone who is qualified to easily overcome all the tribulations that represent the 6,000-year history. Moreover, you should think about whether you have abandoned your selfish desires and put forward God&#8217;s laws for public interests, so that you can appear before Satan as someone who will not move into action unless it is for the public interest. With the conditions that enable you to fight on behalf of the heavenly laws and prevail, you must set the legal standard of the heavenly laws.</p>
<p>By doing so, you must become the sons and daughters of God to whose victory Satan can testify even before you yourself brag about it and make it public, and even if the opponents of your fights are evil people, they should be able to testify that you are sons and daughters of God. You must realize that only by becoming that kind of people, can you free yourself from the course of long fight and become qualified to receive the glory of God.</p>
<p>Even if we have received the calling of God, God did not call us for our own sake. He called upon us hoping that we can become people of universal character. In order to find people of such character, God has been working and guiding the dispensation for 6,000 years. If you have understood this situation of God, then you must nurture the character that will enable you to go forward as the leader spearheading this universal fight with Satan.</p>
<h3 align="center">We Who Are Employed for the Purpose<br />
of Liberating All People</h3>
<p>After nurturing this kind of character in your actual daily life, you must elevate the members of your family to the position of the heavenly tribe, establish the people before the will, and establish them as ones who can emerge as the representatives of the humanity and countless believers. Such responsibility to secure unchanging laws of Heaven and work for the construction of the Kingdom of Heaven rests on you.</p>
<p>Particularly, you who have gathered here unlike the normal people have the responsibility to represent God and Jesus Christ. Do you know what that responsibility is? In this world, numerous, living things are alive, and, among them, there are wretched people who are groaning under the yoke of Satan. Your responsibility is liberating the wretched people from the yoke of Satan and making it possible for them to become eternal sons and daughters of God, according to the desire of God. Thus, you must retain a firm conviction that you bear the responsibility to offer your body and mind to liberate these pitiful people and elevate them to the position of God&#8217;s glory, and become sons and daughters who offer their each hour to Father.</p>
<p>On the one hand, until now even all things are longing for the conclusion of the history of the 6,000-year conflict, the emergence of the true son who brings the glory of God. You must feel the heart of all things. When you materialize the glory of God in this way, you are to invite even all things to participate in that position of glory.</p>
<p>Furthermore, you must feel that countless spirits of the spiritual world are dwelling midst lamentation and sorrow, and by setting the standard of victory, they should also receive the benefit of having set the standard of victory. Until you set that eternal standard of victory, you should be able to be responsible for them. You must become sons and daughters of God who bear this responsibility.</p>
<p>God is the one who bore this responsibility before you did, and Jesus is the one who is carrying on the battle. Therefore, we who have been called must follow their example and do our utmost to take charge of this task. As the sons and daughters of God, we must reawaken ourselves to the fact that we are the elite troops of Heaven who can bear the universal responsibility and fulfill it for the sake of victory in this fight. In order to fulfill this responsibility, you must endure infinitely. You must have the determination, &#8220;even if Jesus Christ cannot endure, even if God cannot endure, I will endure.&#8221;</p>
<p>We are the ones who were raised by God for the sake of this mission. Therefore, in order to lift up before God the countless people who are suffering in the universal conflict because of Satan. Regardless of whether it is the path of endurance or death and regardless of what the conditions might be, when the direction from Heaven falls upon us, we must obey it and move forward. If we cannot become this kind of elite troops of Heaven, then we will not be able to fulfill our responsibility as the chosen ones, and we can never restore this land into the eternal garden of victory. You must keep in mind that only when we become the elite troops of Heaven and win the victory can we rejoice with God eternally and, at the same time, rejoice with Jesus and the Holy Spirit for eternity, and the time of peace when we can also rejoice can come to this earth.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please allow us to understand that God is the commander of goodness and, at the same time, is our sole chief commander who is fighting against evil. Please allow us to become believers who resemble the hyung sang of the Father, who has been fighting on without rest or change for 6,000 years; moreover, allow us to become ones who follow the example of Jesus Christ&#8217;s course of devotion to do justice to your dignity.</p>
<p>We know that we must emerge as the elite troops of Heaven who can be the representative in Heaven&#8217;s battle and win over in that fight. We must not become elite troops who are centered on certain people or a certain world, so, Father, we wish from the depth of our hearts that you will permit us to become the elite troops of Heaven who retain fidelity for the sake of Heaven&#8217;s eternal ideal, unchanging love and will of Heaven.</p>
<p>Please allow us to understand in this hour that when the Father, who has been enduring for 6,000 years, gives us commands, if we do not become the valuable men of character who can fathom your heart, then God cannot personally give us commands. Father, we hope with the utmost earnestly that you will allow us to understand that even Jesus Christ, who has been toiling for 2,000 years, also cannot personally direct us if we have not become qualified people of glory who are true, public, not violating laws, and representing Heaven with immutability.</p>
<p>Please let us understand that if there is some universal wish that remains in us, that wish is becoming the elite troops, who can take bear the whole responsibility of all forms in the universe, so that we can liberate all created things and bring joy to all people. Father, we pray sincerely that you will permit us to become intoxicated in that sense of mission that will empower us to uphold the direction of Heaven and completely fulfill the responsibility.</p>
<p>Father, we earnestly wish that, until the appearance of the eternal ideal of God and the glory of restoration before all created things, you will allow us to become sons and daughters who do not change or rest, but battle on, by understanding the laws of Heaven and the laws of conflicts of the universe and representing the unchanging center for the sake of establishing the will of Heaven on this earth.</p>
<p>Hoping that you will guide us to become the elite troops of Heaven who transcend everything and not hesitate to march even on the path of death for the sake of Father&#8217;s joy and glory, we prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html" title="Permalink to LET US BECOME THE ELITE TROOPS OF HEAVEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/for-whom-are-we-living.html" rel="prev"><span class="meta-nav">&laquo;</span> FOR WHOM ARE WE LIVING?</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html" rel="next">ON THE DAY OF RESURRECTION (SUMMARY OF SERMON) <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,221 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US STEP BEYOND THIS WORLD THAT HAS BECOME A SACRIFICE &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-796 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-796" class="post-796 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US STEP BEYOND THIS WORLD THAT HAS BECOME A SACRIFICE</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:22:17+01:00"> <a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:23:35+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
March 10, 1957</h3>
<p style="text-align: center;"><em>Romans 12:1-12 </em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text Rom-12-1">Therefore, I urge you, brothers and sisters, in view of Gods mercy, to offer your bodies as a living sacrifice, holy and pleasing to God—this is your true and proper worship.</span> <span id="en-NIV-28248" class="text Rom-12-2"><sup class="versenum">2 </sup>Do not conform to the pattern of this world, but be transformed by the renewing of your mind. Then you will be able to test and approve what Gods will is—his good, pleasing and perfect will.</span></em></p>
<p style="text-align: center;"><em><span class="text Rom-12-3"><sup class="versenum">3 </sup>For by the grace given me I say to every one of you: Do not think of yourself more highly than you ought, but rather think of yourself with sober judgment, in accordance with the faith God has distributed to each of you.</span> <span id="en-NIV-28250" class="text Rom-12-4"><sup class="versenum">4 </sup>For just as each of us has one body with many members, and these members do not all have the same function,</span> <span id="en-NIV-28251" class="text Rom-12-5"><sup class="versenum">5 </sup>so in Christ we, though many, form one body, and each member belongs to all the others.</span> <span id="en-NIV-28252" class="text Rom-12-6"><sup class="versenum">6 </sup>We have different gifts, according to the grace given to each of us. If your gift is prophesying, then prophesy in accordance with your<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28252a" data-link="[&lt;a href=&quot;#fen-NIV-28252a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Romans+12:1-12#fen-NIV-28252a">a</a>]</sup>faith;</span> <span id="en-NIV-28253" class="text Rom-12-7"><sup class="versenum">7 </sup>if it is serving, then serve; if it is teaching, then teach;</span> <span id="en-NIV-28254" class="text Rom-12-8"><sup class="versenum">8 </sup>if it is to encourage, then give encouragement; if it is giving, then give generously; if it is to lead,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28254b" data-link="[&lt;a href=&quot;#fen-NIV-28254b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Romans+12:1-12#fen-NIV-28254b">b</a>]</sup> do it diligently; if it is to show mercy, do it cheerfully.</span></em></p>
<p style="text-align: center;"><em><span class="text Rom-12-9"><sup class="versenum">9 </sup>Love must be sincere. Hate what is evil; cling to what is good.</span> <span id="en-NIV-28256" class="text Rom-12-10"><sup class="versenum">10 </sup>Be devoted to one another in love. Honor one another above yourselves.</span> <span id="en-NIV-28257" class="text Rom-12-11"><sup class="versenum">11 </sup>Never be lacking in zeal, but keep your spiritual fervor, serving the Lord.</span> <span id="en-NIV-28258" class="text Rom-12-12"><sup class="versenum">12 </sup>Be joyful in hope, patient in affliction, faithful in prayer.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please lead us not to forget that today is the time when the will of the dispensation, for which sake the Father has been toiling for 6,000 years, will put our entire lives on the scale. Father, we understand that now is the time when our minds and bodies must take after the Father completely, so please allow us to enter Your bosom and inherit Your heart, with which You have loved the many millions of humanity, to realize that one will. Moreover, please let this be the moment when we can comprehend that we must materialize such a heart of the Father.</p>
<p>We understand that this is that land on which the Father has been laboring strenuously and has shed blood. It is also the land through which the difficult path of the cross of humankind, the course of Golgotha on the worldwide level, passes. Therefore, Father, please guide us to understand on our own on what kind of situation we are in today.</p>
<p>Since we recognize the fact that we are following the footsteps of the thirty years of Jesus&#8217; life, please lead us to understand clearly what kind of environment we are living in and what kind of desires we must hold in our heart. In this moment, when the remaining portion of the conflict of crucifixion is lying right before us, we understand that we must possess the heart of self-consciousness that can enable us to cast aside all our anguish and resentment by ourselves. God in Heaven, please cast Your gaze of compassion upon us. Please lead us to sense our own lack. Please guide us to sense our own incompetence. We hope from the depth of our hearts that You will allow this to be an opportunity for us to lament over our own incompleteness and shed tears of grief before the Father.</p>
<p>Father! Please look down upon this people with pity. Please dispel the fear of these people. Purge the sins of these people. Remove the darkness of these people.</p>
<p>Please allow Your powerful hands that can guide the way to the garden of light to quickly emerge amid the crowd of thirty million. Moreover, please awaken all humanity who is fast asleep. Through us, please resolve the resentment of the millions of faithful believers who have helped advance the dispensation during the course of history.</p>
<p>Father, we have prostrated ourselves before You this hour, so please lead us not to assert any view centering on ourselves. Please allow us to only lie prostrate before the knees of the Father with the heart of a child, holding onto the compassionate hands of the Father and enter the bosom of the Father&#8217;s love. Please allow us to make a full bow to the Father with a heart longing for such grace. Father, please guide us to offer everything and put forth everything so that there will not be any condition for Satan&#8217;s accusation.</p>
<p>Father! We know that this day is a holy day, a day when the Father bestows the blessing, so please bless the countless religious groups who are gathering on behalf of the people. Please allow the same grace also to Your sons and daughters who are in charge of lonely altars. At this time of the last days, please allow all of them to testify to the will of the whole.</p>
<p>Hoping that You will reign over everything, I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech I am going to give today is <em>&#8220;Let Us Step Beyond This World That Has Become a Sacrifice.&#8221;</em></p>
<p>Human being&#8217;s life of original creation is living the life with a tranquil mind. Yet, we do not find peace in the minds of people today. Moreover, in the minds of humankind who should be living within the eternal ideal centering on liberty, there are no freedom and ideal about which Heaven can also be happy.</p>
<p>Consequently, all human beings spread all across the world today hope for the fulfillment of complete freedom, ideal and peace based on a certain time. This is the heart&#8217;s earnest desire for all the people who are living on this earth. Similarly, the world of perfect freedom, ideal and peace is the original ideal for which humankind long, and no matter what, you must fulfill this centering on your minds and bodies. Furthermore, you must achieve this also in the family centering on your individual self, and you must fulfill this in the society, the nation, and the world. Not only that, you must build the one world that can unite heaven and earth and sing the song of peace and freedom, and enjoy the ideal love.</p>
<p>If you cannot materialize this kind of world, then human beings cannot partake in the true happiness, true liberation and true glory. Then, how did humankind come to face such unfortunate fate? This is retribution of the fall. In this way, the humanity of the whole world today must cross over the pass of confrontation and conflict. They have the fate to cross over the pass of anguish, the Golgotha of tears. You must feel, throughout your daily life, that you are also living such grievous life.</p>
<p>There is a big gap between the world mankind seeks and the reality they face. Although their minds proceed toward that world, their bodies cannot escape the reality; therefore, humankind cannot avoid the fate of living a life of suffering. Even if someone can erect a logical and ethical body of laws, and even if someone can claim that he can materialize the ideal world that people long for by using the laws to induce them to repent and comprehend, it is no more than a theoretical and logical system, and it cannot actualize humankind&#8217;s ideal world of happiness in the realm of real life. The courses of many prophets and sages prove this fact.</p>
<p>Accordingly, before us who are living in the last days is the path upon which we must embark and the pass we must cross. This is the road of sacrifice that can realize the eternal peace, freedom and ideal.</p>
<p>To cross such a pass, there must appear one center who can bring eternal freedom to the mind, who can represent the eternal hope of Heaven, and substitute for the eternal peace of Heaven. If such a central figure does not appear, then eternal peace, freedom and ideal can never be realized in heaven and on earth.</p>
<p>Then, how has the 6,000 years of deep-rooted bitterness progressed in a single strand? It was setting certain conditions centering on God, Satan and human beings. It is none other than the pass of sacrifice. When we reflect back on the 6,000 years of the history of dispensation, during the Old Testament era the pass of sacrifice was crossed through all things, and in the New Testament era the pass of sacrifice was crossed through the substantial body of Jesus Christ. Then, in the approaching Completed Testament era, what is the standard for our crossing over of the pass of sacrifice? It is the faithful people, in other words, it is to be crossed through you yourselves. During the Old Testament era the pass of sacrifice had to be crossed through all things, and during the New Testament era the pass of sacrifice had to be crossed through Jesus Christ, in other words, through the son of God. Nonetheless, now the pass of sacrifice has to be crossed by using you as the sacrifice, you who can assume the name of bride and bridegroom. Before you cross that pass of sacrifice, the world of true peace, freedom, and ideal cannot be realized on earth.</p>
<h3 align="center">The Original Heart of Humankind<br />
That Heads for<br />
the Original Homeland</h3>
<p>Then what is the history of humankind that passed through 6,000 years? Although its shape is large and its scope is broad, the 6,000 years of the history of dispensation is fundamentally the history of God&#8217;s laborious work to find and raise one true person who can command the perfect freedom, perfect ideal and perfect peach. You must already be well aware of this through history.</p>
<p>Originally, human beings were supposed to live in the Garden of Eden, enjoying eternal freedom, ideal and peace centering on God, but because of the fall of Adam and Eve, the ancestors of humankind, that kind of original world crumbled. Although we are the descendants of Adam and Eve who fell, because we have the original mind which heads for the original world, we have been going toward the world that God wills, and that desire of ours has remained as the ideal that must be pursued and be carried out.</p>
<p>Then, what is the center of that which God is trying to find and erect through that toilsome dispensation? That is the original true Adam and Eve who have nothing to do with the fallen natures.</p>
<p>As you know through the Divine Principle, Adam and Eve, the children of God who should have become the true parents of humankind, could not become true parents because of the fall; by virtue of this, they became the ancestors of fallen men without even being able to establish any relationship with the original history. Because we have become the tribes of the fall due to fallen Adam and Eve like this, we must usher in the one day that can destroy that kind of lineage relationship and attend the true parents of original character.</p>
<p>If that one day is not established in Heaven and on earth, in other words, if the people who can move in synchronicity with the central figure do not appear to unite heaven and earth and advance the one purpose, then on earth true freedom, peace and ideal will never be materialized. If that happens then humankind can never be free from the fateful and universal course of the history of restoration through indemnity.</p>
<p>If you wish to receive the love of God, then you must understand that you have come on the foundation of the 6,000 years of the history of the dispensation as the history of struggle, and you must realize that you must also walk the same course of struggle. What is more, supposing that the entire history of dispensation was a course of history whose purpose was to cross over the pass of sacrifice, you must also use all things as the condition and cross the pass of making sacrifices in your life, just as in the Old Testament era all things were offered as the condition of sacrifice.</p>
<p>Next, Jesus Christ must come to this earth and cross the pass of blood that was shed by the sacrifice. After that, you must put yourself forward as the conditional being and cross that pass of sacrifice.</p>
<p>Because of this background, God cannot come seeking us in glory. Moreover, He cannot come seeking us with peace, freedom and ideals. Instead, He has no choice but to come looking for us while presenting us with the pass of sacrifice. The believers of Jesus today are not aware of this fact.</p>
<p>Because the Jewish people did not believe when Jesus came on this earth, Jesus had to live a life on the level lower than any common person of that time or even an evil person. Jesus hoped that the Jewish people would believe in him instead of offering all things as the sacrifice and cross over to the side of God, but they could not understand the will of the dispensation, and by falling faithless to Jesus they deviated from the path of the dispensational fate, and such resentment has reached us.</p>
<h3 align="center">The Pass of Sacrifice We Must Cross with Hope</h3>
<p>To enable God to come seeking us, what kind of position should we be in? First, we must strike the material things that represent all things. This is the reason Jesus said that the gospel would disseminate to the poor people. Next, we must be able to strike even our beloved sons and daughters and, eventually, we must be able to even offer our bodies as the sacrifice. This is the pass of sacrifice that we must cross. Most faithful believers of today do not realize that when we advance through this pass of sacrifice, Heaven will come seeking us and forge a relationship with us. When God stands you on that path, you must be able to travel that path confidently.</p>
<p>The 6,000-year history is not a simple history, but a universal history of restoration. It is the history of individual restoration. For that reason, if you cannot cultivate an unchanging heart at the center, which can take responsibility for the history of the universe and stand firm as the representative of Heaven, then you cannot become one who has crossed the pass of history and you cannot stand in the position of having obeyed the laws of dispensation.</p>
<p>Please look at Abraham of the past. Abraham was in the position to abandon Ur of the Chaldeans, the land that he loved, and leave the living environment in which he felt at great ease and comfort, to follow the words of God. In other words, he was in the position to suffer pain, centering on the physical body. Nonetheless, Abraham did not despair. If Abraham despaired at that moment, then his descendent would not have been able to receive the blessing and grace of God.</p>
<p>In order for you to greet God, who has been leading the history of restoration for 6,000 years, you must have the wisdom to take charge of that condition of restoration and rise above it. Just as there has been the pass of the dispensation that God has crossed in the course of history until now, for us who live in the last days, there is also the pass of dispensation that we must cross. Therefore, in your life, by indemnifying all the conditions of sacrifice of the 6,000 years, you must pave the way for Heaven to freely descend and for the Lord to freely come. If you forget this point, then you cannot become the sons and daughters of God, and you cannot relate with God.</p>
<p>Because Abraham walked the course of many bitter and agonizing experiences and the course of sacrificial offering from the time he left Ur until he entered the land of hope, the blessed land of Canaan, he could cross over the pass of 400 years on behalf of the people. Abraham forsook all the material things that he owned. He even forsook his own wife and could offer the only son Isaac, whom he had when he was one hundred years old. Not only that, because he stood on the unified foundation of having walked the course of restoration through indemnity with faith strong enough to even offer himself, he could become the ancestor of faith of humanity.</p>
<p>In the Bible, there is a record concerning Job, another person who passed through the course of sacrifice. Because Job was within the realm of blessings in which he could receive the blessing of God, God blessed him with material affluence and children. However, Satan protested to God about Job receiving the blessings. So God allowed Satan to put Job through a test. As a result, Satan struck all the material things with which Job was blessed. Then, he struck his children. Next, he struck Job&#8217;s own physical body. When these took place, all the friends and neighbors of Job ridiculed him, and even his beloved wife reproached him.</p>
<p>You must think about the position of Job, who lost his material wealth and children with which he could lead a happy life, and lost his position by being betrayed by his friends and being criticized by his wife. Although his whole body was wounded and so itchy that he had to scratch it with tiles, he never held a grudge against God, instead he was able to silently contemplate or overcome the pain, and experience the heart of a sick person from the side of God. Because Job was this kind of man, he could regain all things and the children he had lost, and he could receive a greater blessing from Heaven.</p>
<p>When Jesus Christ set out on his way to spread the gospel, he first abandoned his entire environment. In other words, he cast aside the family environment in which he had lived for thirty years. Next, he abandoned himself, who stood in the position of the only begotten son of God, who could have risen to the position of eternal True Parents of humanity.</p>
<p>Similarly, even when he was on the path of the crucifixion when he had to abandon his own body, his family, his tribe, his people and even his hopes, he did not become disheartened. Although he took the steps of one who was declining, he crossed over the path of Golgotha with hope, while he fixed his eyes only upon the will that was first established before God, the path that leads to the fulfillment of the dispensation that he pledged with God.</p>
<h3 align="center">God Who Guides the Dispensation after<br />
Establishing the Basic Principles</h3>
<p>Because Abraham cast aside everything and moved forward hoping for the land of Canaan, his descendants could receive the blessing of God. Similarly, Jesus also abandoned the parents, relatives, people and nation he loved. Consequently, to the future generations, after a certain time has passed, will come a day when everything can be claimed back, and that day is none other than &#8220;the day of the Second Advent.&#8221; Therefore, you must understand that the Lord who comes again with this day of the Second Advent as the pivotal point will restore everything.</p>
<p>Countless prophets of the history and Jesus traveled this kind of road, yet what should we do? First, we must become the symbolic embodiment of God who, as the people responsible for history, can represent history. What is more, in the last days of today, when we are seeking heaven, just like Jesus who traveled the road of sacrifice for the sake of the people, church, and the entire land and world, or just like Abraham and Job, we must take charge of history and walk the path of indemnity. Unless you do so, you will never become the victors who have crossed the pass of sacrifice.</p>
<p>For you then who live in the last days, what works of indemnity will take place? First, there will be works of material indemnity. If you actually receive the grace of the soul, there will take place the same amount of works of material indemnity. If you wish to find the place and the time when you can stand up and cope with the will, then you must strike all the material conditions that you desire on earth. If you who understand the will cannot take this kind of position, then you will never be able to enter the position of having passed through the Old Testament and the New Testament eras and rise to the level of the Completed Testament era.</p>
<p>In the future, there will come a time when the tide will surge in. There will come a time when it strikes centering on the individual, and strikes centering on the people and the nation. So, there will come a time on this earth when, on the level of the individual, people, nation and world, a period of material deprivation prevails.</p>
<p>At such a time, there will be people who are most severely deprived of material things. The sorrow that people will feel at that time is not a ramification of their own faults, it is grief that they are suffering on behalf of the 6,000-year history. Moreover, even when they go through the agony, that pain is not being imposed on them as a restitution of their past deeds but because they are suffering the historical pain of God on His behalf.</p>
<p>Nonetheless, if even in the midst of such extreme degree of pain and sorrow they fathom that it is not material things but people that save the world, then that people can cross over the pass of sacrifice. It is because material sacrifice does not bring completion to salvation, but Jesus Christ, the son of God, is the one who brings completion to salvation. Accordingly, you must understand that if you of today cling only to the material things and consider them more valuable than life, then you will never be able to cross the pass of sacrifice.</p>
<p>In the last days, there will come a time when the material things are struck, and the people who hold grudges against Heaven will then be judged. The individuals who become bitter will also receive the judgment of Heaven. God is guiding His dispensation centering on this kind of basic principle. Therefore, even if you experience pain and material difficulties, you should not feel any lingering attachments to the material things. Moreover, just as how Jesus Christ, the son of God, transcended the material things, you must also transcend them, otherwise, your path will be blocked.</p>
<h3 align="center">The Qualifications to Stand before God</h3>
<p>Although you have believed in and relied upon the church leaders as Jesus&#8217; representative, this arrangement will not last forever. Although, in the course of restoration until the time of the Second Coming, you have centered your life of faith on the way of the crucifixion, in the course of restoration we must cross on the worldwide level. It will not be enough to just continue believing in and relying on the same things as you have until now.</p>
<p>Then, at such time, what are you to do? At that time, you must cultivate yourself who can be recognized through Jesus. Otherwise, you will never be able to cross over the pass of judgment that will confront you in the last days. Therefore, Jesus said, &#8220;In the last days, pour oil over your head and go into a secret chamber to pray.&#8221;</p>
<p>For you who are seeking God, it is easy for material things to become your enemies. Next, it is easy for the beloved children and beloved husband or wife to become your enemies. This is the reason Jesus said, &#8220;Your family members are your enemies.&#8221;</p>
<p>This is where the distressed and mournful heart of God is rooted, and this is where the sorrowful heart of our faithful believers of today is rooted. This is the critical moment that the believers of the last days must pass through in unison. You must understand this.</p>
<p>Next, you must even reject yourself and step over it. Jesus prayed in the Garden of Gethsemane with the crucifixion lying ahead of him, &#8220;Father, nothing is impossible for Father, so please let this cup pass from me. However, do not do as I will, but as You will.&#8221; Through this kind of process, Jesus struck himself and passed through the position of having denied himself. Therefore, you can offer at once all the hopes, joy, faith, heart and everything that you have ever owned until now, and then climb over it.</p>
<p>In other words, in the Old Testament era, the believers climbed over the pass of sacrifice by using all things as the condition, and in the New Testament era they climbed over the pass of sacrifice based on their faith in Jesus, yet in the Completed Testament era, because it is the individuals who must cross the pass of sacrifice, you yourselves must be able to represent the 6,000-year history of sacrifice. In other words, if you want to stand before Father, then you must be able to offer as one combined sacrifice all the material things that you have, your beloved sons and daughters, wife and even your own self. You must understand clearly that only after passing through this kind of path will you be able to climb over the historical pass of sacrifice, and only after having done that can you finally build a relationship with God.</p>
<p>Even if others deny, oppose, and discredit this path, you who have embarked on it must never become disheartened. What is more, you will have an experience in which you will be deprived of the desire to possess your material things, your wish for your children and your love for your wife, and you will even be robbed of your attachment to yourself. At such a moment, you must not try to climb over the world while clinging to the lingering attachments. Only when you sever connections with all the humanistic conditions, which includes material things, love of children, and wishes centering on oneself, will you be able to climb over the pass of sacrifice on the worldwide level.</p>
<p>The reason you must walk that kind of path is that until now the history of restoration has been history of sacrifice, and the history of sacrifice has been history of dividing, and the history of dividing is the history of striking. Consequently, when you arrive at the time when you must cross over the last pass, then Jesus whom you have believed in and followed will strike you, and the Holy Spirit who has been guiding you will strike you. What is more, God whom you have believed in as your hope will hit you, and the world will also hit you. If you cannot remain unshaken till the end even if Heaven and the earth strike you like this, then you can never stand before God.</p>
<p>You must understand that only those who bring victory in this kind of situation can represent the ideals of the king of kings on earth and, even after going to the spirit world, command the glory of the sovereign. You can see that today, this people are in a pitiful and sorrowful position. When you look at it from the perspective of God&#8217;s dispensation, this is the time that the individuals are being hit, and this is the time that people, nations and the world are being hit. Nonetheless, do not lament or hold grudges against Heaven even when you are being struck. Do not lament over the fact that people are being hit. Even when the time comes when the world is being struck, you must never become bitter toward Heaven.</p>
<p>The only heart you should have is the heart of relying only on Heaven no matter if you are to perish or die. With this kind of mind-set, you must climb over the individual cross, and be able to climb over the crosses on the level of the people, nation and the world. Only after stepping over this pass of the cross on the world level, will you be able to meet the Lord of the Second Advent who comes in glory. That is the moment that the ideals of the Second Coming that humankind longs for is realized.</p>
<p>Only after climbing over the pass of the cross on the world level, can you come to possess the love of God, the freedom of God, the peace of God and the ideal of God. The reason is that if you give the love, freedom and peace of God to someone who has not yet fully made his way over that pass, Satan will make accusations and that love, freedom, peace and ideal will be destroyed. Consequently, God does not grant His love, freedom, peace and ideals to those who could not climb over the pass of sacrifice on the world level.</p>
<h3 align="center">The World Level Chief Priest<br />
Who Is Carrying Out<br />
the Mission of the Tribe of Levi</h3>
<p>Accordingly, you who have set out for the sake of the will must ask yourself whether you have climbed over this universal pass of sacrifice. When you examine the history of the dispensation of restoration, tithing one-tenth began in the time of Abraham. The Jewish people, who were organized into twelve tribes centering on the tribe of Levi, offered one-tenth tithe, and the Christians of the world today are also making this one-tenth tithe. Yet, the one in ten is the one that has been purified among them all. What is more, if we cannot stand in this kind of purified position in the religious world of Korea, then we will not be able to relate with Heaven from the same position as the central tribe of the Jewish people, the tribe of Levi.</p>
<p>If you want to enter that kind of position, then you must be able to abandon everything that you have. Moreover, if you wish to find the world and the heavenly kingdom, then you must undergo the adventure of throwing everything away. Such a pass lies before you. Therefore, God who is guiding us has brought upon us tribulations because He wants to help us cross that pass, and He is allowing us to climb over the pass of the cross. However, even if that kind of pass of the cross emerges before you as the condition of judgment, you must be able to fully climb over that pass.</p>
<p>This kind of person must grow in number and form one altar. The tribe of Levi has led the Jewish people organized into the twelve tribes. After Jesus, there came into being, centering on Jesus, a Christian group that carried out the same mission as the tribe of Levi, and expanded into a world level altar; likewise, there must be a religion of the chief priest on the worldwide level today that fulfills the same mission as the tribe of Levi.</p>
<p>If there are people who want to partake in that religion, they must climb over the pass of sacrifice in the way that I have described above. Just as the Jewish people could cross the pass of sacrifice by making sacrifices before Heaven with all of their heart and soul, if you wish to become the chosen people who can stand before the Lord in the last days, you must pour out all of your heart and soul to make a sacrifice and climb over the pass of sacrifice. Only after having done that can you substitute for the mission of the chief priest, receive the grace of God, and fulfill the glory, freedom, peace and ideal of God.</p>
<p>Therefore, you must become especially attentive and alert. When God strikes your material things, your heart of loyalty must not waver before God, and you must be able to sever yourself completely from the surrounding environment. If you understand this principle, then you can strike your own material things before God cuts you off from it. You should be able to sever yourself from the love of children and spouse before God does it. Furthermore, you should be able to hit yourself. If you can become this kind of person, then you can climb over the pass of sacrifice of the 6,000 years at once.</p>
<p>You must keep in mind that God earnestly hopes for those who have climbed over this pass of sacrifice to emerge on earth in great number, and you should be able to examine in what position you stand. If you can actually climb over the pass of sacrifice by purifying the material things and offering them, as well as yourself, to Heaven, then you will not be accused by Satan on earth but can enter the ideal garden which the Father allows you.</p>
<p>I wish that heeding this you can exert your uttermost for the accomplishment of the mission with which you are entrusted. Let us pray.</p>
<blockquote><p>We who have received the calling first, since we, as the same element as the determining body for the creation of the one hyung sang, have been elevated before the will of the dispensation of the whole universe, please allow us to never forget that we must live for the sake of fulfilling the whole purpose. Today, although you have cut us off from our surroundings because we, having entered the public path of dispensation, have not been able to cross over the pass of sacrifice, we on our own accord have despaired, lamented and held grudges.</p>
<p>Beloved Father, when we climb over the pass of the material things and the pass of humanism, even if you are to strike them, please allow us to submit to it! Even if you take away all the things that we have, as long as life remains in us, we should be grateful. Even if you hit our loved ones in our surroundings, as long as there remains life in us, we should live with gratitude. Even if you strike our bodies, as long as we are still alive, we should be able to offer gratitude. Please lead us to be able to carry this out.</p>
<p>We hope to follow the footsteps of the prophets of the past and the ancestors of the past, so please guide us. We know that Abraham, Job and Jesus have also walked the same road. We know that we of today must also pass through this road, so please, Father, do not let it take a long time. Please allow us to make preparations to climb over the pass of resentment that is inescapably approaching us. Father, we pray from the depth of our hearts that you will allow us to become the loyal subjects of Heaven who, even when you scold and strike us, can overcome it with gratitude and build the altar of goodness to elevate the Lord of glory.</p>
<p>Father, please lead us, who have taken charge of the altar, not to despair. Please allow us to become the true sons and daughters who can universally break open the wall that is blocking our path to the holy and the most holy places. Please sanctify us so that we can confidently rise above the crises, even in face of being struck in the path, and so that we can stand before Heaven as valiant soldiers. Father, we hope and wish from the bottom of our hearts that you guide us to become sons and daughters who can climb over the pass of sacrifice that the enemies have placed before us, and lead the family to climb over the pass of family, lead the people to climb over the pass of the people, and, furthermore, lead the world to climb over the pass of the world, and even lead Heaven to climb over it, so that we can confidently appeal to Father to allow us the true life, true peace, true joy, and true glory for eternity.</p>
<p>I prayed all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html" title="Permalink to LET US STEP BEYOND THIS WORLD THAT HAS BECOME A SACRIFICE" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html" rel="prev"><span class="meta-nav">&laquo;</span> WHAT KIND OF RESURRECTION ARE YOU TRYING TO ACCOMPLISH?</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html" rel="next">WE ARE THE ONES WHO MUST POSSESS THE KEY TO THE KINGDOM OF HEAVEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,166 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US UNTIE THE KNOT &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/let-us-untie-the-knot.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-803 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-803" class="post-803 post type-post status-publish format-standard hentry category-uncategorized">
<h1 class="entry-title">LET US UNTIE THE KNOT</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:29:57+01:00"> <a href="/blog/2018/06/04/let-us-untie-the-knot.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:30:31+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-untie-the-knot.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
March 24, 1957</h3>
<p style="text-align: center;"><em>Matthew 18:15-20</em></p>
<p style="text-align: center;"><em><span class="text Matt-18-15"><span class="woj"><sup class="versenum">15 </sup>“If your brother or sister<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23743a" data-link="[&lt;a href=&quot;#fen-NIV-23743a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+18:15-20#fen-NIV-23743a">a</a>]</sup> sins,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23743b" data-link="[&lt;a href=&quot;#fen-NIV-23743b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+18:15-20#fen-NIV-23743b">b</a>]</sup> go and point out their fault, just between the two of you. If they listen to you, you have won them over.</span></span> <span id="en-NIV-23744" class="text Matt-18-16"><span class="woj"><sup class="versenum">16 </sup>But if they will not listen, take one or two others along, so that every matter may be established by the testimony of two or three witnesses.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23744c" data-link="[&lt;a href=&quot;#fen-NIV-23744c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+18:15-20#fen-NIV-23744c">c</a>]</sup></span></span> <span id="en-NIV-23745" class="text Matt-18-17"><span class="woj"><sup class="versenum">17 </sup>If they still refuse to listen, tell it to the church; and if they refuse to listen even to the church, treat them as you would a pagan or a tax collector.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23746" class="text Matt-18-18"><span class="woj"><sup class="versenum">18 </sup>“Truly I tell you, whatever you bind on earth will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23746d" data-link="[&lt;a href=&quot;#fen-NIV-23746d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Matthew+18:15-20#fen-NIV-23746d">d</a>]</sup> bound in heaven, and whatever you loose on earth will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23746e" data-link="[&lt;a href=&quot;#fen-NIV-23746e&quot; title=&quot;See footnote e&quot;&gt;e&lt;/a&gt;]">[<a title="See footnote e" href="https://www.biblegateway.com/passage/?search=Matthew+18:15-20#fen-NIV-23746e">e</a>]</sup> loosed in heaven.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23747" class="text Matt-18-19"><span class="woj"><sup class="versenum">19 </sup>“Again, truly I tell you that if two of you on earth agree about anything they ask for, it will be done for them by my Father in heaven.</span></span> <span id="en-NIV-23748" class="text Matt-18-20"><span class="woj"><sup class="versenum">20 </sup>For where two or three gather in my name, there am I with them.”</span></span></em></p>
<p>God&#8217;s love operates in places where there is harmony. Even in yourself, God&#8217;s love operates on top of the place where the body joins in harmony centering on the mind. Going one step further, God&#8217;s love operates at the place where families, nations, the world and Heaven come together in harmony.</p>
<p>If all created things had set the standard of goodness by which they could rejoice for eternity in harmony centering on God&#8217;s love, there would not have been any walls between things. Even in the human world, because they could not become united centering on God&#8217;s love, the minds and bodies of individuals could not be in harmony. Furthermore, among neighbors or clansmen, different people could not come together in harmony. Nations, the world and Heaven could not become one.</p>
<p>The purpose of God&#8217;s dispensation of restoration is to establish one person who can bring harmony to this world of creation that is in discord. Centering on that person the scope of love should expand to dismantle the barriers that stand between individuals, families, nations, the world and heaven.</p>
<p>The purpose of the dispensational history of restoration is finding this one person who can bring harmony to all things. Jesus was the person who came as the realization of the history of restoration, or as the standard and center of love before all things. His purpose was to resolve all that had been entangled in heaven and earth.</p>
<p>Therefore, humanity can only remove the faults of the original sin caused by the fall, in other words, the conditions of the fall, through Jesus Christ. The reason is that although man has to eliminate the condition of the fall by himself, since he is the one who set the condition on earth, fallen man by himself cannot resolve it. It can only be removed through the Messiah.</p>
<p>Human beings should have become one with Jesus to eliminate the grief and resentment that have saturated heaven and earth because of Adam and return joy before Heaven. Because they killed Jesus, that will could not bear fruit on earth, but still remains unfulfilled. Even after his death until today, Jesus has been trying to resolve the situation through you. He has been working for 2,000 years with an unchanging heart.</p>
<p>You must realize that every move you make, you who are the hope of Jesus, must never be centered on you, but on the movements of the historical being of culmination, who must bring resolution to the ordeals of Heaven, which have been accumulating for 6,000 years. As this kind of being, you must understand that the infinite grief of the prophets and sages, of Jesus, the Holy Spirit and God are entangled before you. The hope of Jesus who represents the bitterness of God from the 4,000-year history prior to his advent and the hope of the Holy Spirit throughout the 2,000 years since Jesus&#8217; death are also entangled.</p>
<p>Therefore, your one body must as an individual dismantle all the barriers of grief that stand between brothers, nations, the world and heaven. Otherwise, the historical grief that is pent up in Jesus, the Holy Spirit and God can never be removed, and God cannot love or rejoice through you. You must make a firm determination to take on this great historical mission in your one generation and accomplish it during your life. Going one step further, you must be determined to complete the mission that you have taken on before Heaven, even by working through your descendants.</p>
<p>Jesus was the person who taught the way to resolve the situations that are deeply rooted in heaven and earth. Understanding that he was the one who must eliminate God&#8217;s grief of 4,000 years, Jesus spent his whole life in desperate anxiety in his attempt to bring resolution to those deeply-rooted situations. Not only that, Jesus&#8217; life was not centered on himself; it was a life that focused only on solving all kinds of situations that came into being because of Adam.</p>
<p>Jesus has carried on the mission of restoring the fall of man. At the same time, he has carried on the mission of restoring even Satan to the original position from which he fell. This was because he knew that since Satan committed sin on earth, he must also be restored on earth.</p>
<p>Although human beings fell because of their own mistake, God is still trying to raise them up as the children who can receive His love again. Moreover, the day of judgment is not the day that the criminals who do not believe in the faith are thrown into prisons. It is the day when even the sinners, who are the causes of the grief of Jesus and the Holy Spirit, are restored to Heaven&#8217;s side. This is the dispensation of God and the task that remains for the new era.</p>
<p>You must take charge of this entire mission with Jesus. To do that, you must feel the heart of Jesus, who alone took on God&#8217;s lament of the 4,000 years during his life. You must feel the anxious heart of Jesus and the Holy Spirit which has continued for the 2,000 years since the resurrection until today.</p>
<p>If you, who have taken responsibility to conclude the 6,000-year history, cannot exert yourself more than Jesus, the prophets and sages, then you will never be able to secure your original position on which you deserve to stand. Since God has spent 4,000 years finding one person, Jesus, and spent 2,000 years finding one bride, in order for you to find yourself, you must emerge while possessing in entirety the circumstances of the ordeals of God, who has lived 6,000 years governed by tremendous sorrow.</p>
<p>Similarly, to find and establish yourself, you must fight. In your battle, you must first fight with yourself. Jesus struck himself before he struck Satan. By doing so, he could strike even Satan. We must also strike ourselves before we strike Satan, and then fight with Satan.</p>
<p>To walk through the course of these ordeals and agony, you need some comrade who can recognize you even if everyone abandons you. You should understand that when Jesus was passing through the crucial moment on the cross, although humanity abandoned Jesus, God and the Holy Spirit were in the position to recognize him. Even when he faced the fate of being abandoned by God, the Holy Spirit was in the position to recognize him. There will come a time when God will also pretend not to know you, so at that moment, you need some comrade who can act in the role of the Holy Spirit.</p>
<p>When humanity abandons you, you need some person who can act in the place of God, so you must learn to attend that kind of person. Consequently, Jesus said that when two people join their hearts to pray, the Father in Heaven will bring it to pass.</p>
<p>In the same way that God entrusted the mission to Jesus, rest assured that you must also relieve Jesus and the Holy Spirit by taking on the responsibility for the will of Jesus and the Holy Spirit. In order for God to become your Father and for Jesus and the Holy Spirit to become yours, you must take charge of the anxious situation they face and become the champion who is entrusted with the mission of Heaven.</p>
<p>You must make them rest assured. It is difficult just to bear the burden of our brother and relieve his worries. How much more difficult is it to bear the burdens of God?</p>
<p>However, Heaven has been hoping for such champions to establish them on earth, and Jesus and the Holy Spirit have been waiting. All created things hoped for this. Therefore, wherever there are two of these champions who unite their hearts in prayer, God cannot but be present. The more of these champions there are, the more that people can inherit the great mission of Heaven. In the last days, it will become the center of blessing for the whole world.</p>
<p>In this time of intersection, the last days, you must all become the champions of goodness to exterminate evil and filter out goodness, so that Satan can overcome the position of tying the knot and untie it. God can then take the position of knotting in order to lay the central foundation that can represent the will of God. Then, since it was God who tied the knot, there is no one who can untie it. Furthermore, you can represent the universe as the true sons and daughters of Heaven for limitless eternity.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/let-us-untie-the-knot.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/let-us-untie-the-knot.html" title="Permalink to LET US UNTIE THE KNOT" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html" rel="prev"><span class="meta-nav">&laquo;</span> WE ARE THE ONES WHO MUST POSSESS THE KEY TO THE KINGDOM OF HEAVEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html" rel="next">THE LORD IS MY GOOD SHEPHERD <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,214 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>THE LORD IS MY GOOD SHEPHERD &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-806 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-806" class="post-806 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">THE LORD IS MY GOOD SHEPHERD</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:36:33+01:00"> <a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:40:33+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
March 25, 1957</h3>
<p style="text-align: center;"><em>Matthew 25:29-46</em></p>
<p style="text-align: center;"><em><span id="en-NIV-24038" class="text Matt-25-29"><span class="woj"><sup class="versenum">29 </sup>For whoever has will be given more, and they will have an abundance. Whoever does not have, even what they have will be taken from them.</span></span> <span id="en-NIV-24039" class="text Matt-25-30"><span class="woj"><sup class="versenum">30 </sup>And throw that worthless servant outside, into the darkness, where there will be weeping and gnashing of teeth.</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-24040" class="text Matt-25-31">The Sheep and the Goats</span></em></h3>
<p style="text-align: center;"><em><span class="text Matt-25-31"><span class="woj"><sup class="versenum">31 </sup>“When the Son of Man comes in his glory, and all the angels with him, he will sit on his glorious throne.</span></span> <span id="en-NIV-24041" class="text Matt-25-32"><span class="woj"><sup class="versenum">32 </sup>All the nations will be gathered before him, and he will separate the people one from another as a shepherd separates the sheep from the goats.</span></span> <span id="en-NIV-24042" class="text Matt-25-33"><span class="woj"><sup class="versenum">33 </sup>He will put the sheep on his right and the goats on his left.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24043" class="text Matt-25-34"><span class="woj"><sup class="versenum">34 </sup>“Then the King will say to those on his right, Come, you who are blessed by my Father; take your inheritance, the kingdom prepared for you since the creation of the world.</span></span> <span id="en-NIV-24044" class="text Matt-25-35"><span class="woj"><sup class="versenum">35 </sup>For I was hungry and you gave me something to eat, I was thirsty and you gave me something to drink, I was a stranger and you invited me in,</span></span> <span id="en-NIV-24045" class="text Matt-25-36"><span class="woj"><sup class="versenum">36 </sup>I needed clothes and you clothed me, I was sick and you looked after me, I was in prison and you came to visit me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24046" class="text Matt-25-37"><span class="woj"><sup class="versenum">37 </sup>“Then the righteous will answer him, Lord, when did we see you hungry and feed you, or thirsty and give you something to drink?</span></span> <span id="en-NIV-24047" class="text Matt-25-38"><span class="woj"><sup class="versenum">38 </sup>When did we see you a stranger and invite you in, or needing clothes and clothe you?</span></span> <span id="en-NIV-24048" class="text Matt-25-39"><span class="woj"><sup class="versenum">39 </sup>When did we see you sick or in prison and go to visit you?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24049" class="text Matt-25-40"><span class="woj"><sup class="versenum">40 </sup>“The King will reply, Truly I tell you, whatever you did for one of the least of these brothers and sisters of mine, you did for me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24050" class="text Matt-25-41"><span class="woj"><sup class="versenum">41 </sup>“Then he will say to those on his left, Depart from me, you who are cursed, into the eternal fire prepared for the devil and his angels.</span></span> <span id="en-NIV-24051" class="text Matt-25-42"><span class="woj"><sup class="versenum">42 </sup>For I was hungry and you gave me nothing to eat, I was thirsty and you gave me nothing to drink,</span></span> <span id="en-NIV-24052" class="text Matt-25-43"><span class="woj"><sup class="versenum">43 </sup>I was a stranger and you did not invite me in, I needed clothes and you did not clothe me, I was sick and in prison and you did not look after me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24053" class="text Matt-25-44"><span class="woj"><sup class="versenum">44 </sup>“They also will answer, Lord, when did we see you hungry or thirsty or a stranger or needing clothes or sick or in prison, and did not help you?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24054" class="text Matt-25-45"><span class="woj"><sup class="versenum">45 </sup>“He will reply, Truly I tell you, whatever you did not do for one of the least of these, you did not do for me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24055" class="text Matt-25-46"><span class="woj"><sup class="versenum">46 </sup>“Then they will go away to eternal punishment, but the righteous to eternal life.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please allow the countless lives which You created to emanate the light of revival based on the words of Your commandment. Please allow shields of eternal victory to be raised high above the heads of the soldiers who have responded to Your call sending them out and are marching toward the battleground.</p>
<p>We who are living on this rugged and chaotic land, this land through which streams of sin and death are flowing, this land on which those who possess the true heart of Heaven cannot make a move forward without putting their lives on the line, we have come before the Father despite the wounds inflicted on us during the past week. Father of compassion! Please extend to us Your hands of patronage, and comfort us with Your hands of love.</p>
<p>Father! These are the children You have been seeking. We earnestly wish that You divulge before them, during this hour, the circumstances that have penetrated deeply into Your heart, and that You will command us. We, who are unworthy, wish to bring out all that we have according to Your commanding words and offer ourselves as sacrifice of redemption. My Father, please do not abandon this hour but forgive us. Please protect them directly, guide them, raise them and purify them.</p>
<p>Beloved Father, we wish from the depth of our hearts that we can radiate the light of life on behalf of all faithful believers who have died while striving hard to leave this dark world and go toward Heaven. We pray You will allow us to penetrate through the tomb of sin.</p>
<p>Today is a holy day, a day that You founded to bless all people. When we realize that even in this hour there are many in this lonesome group of people, this pitiful group of people who are lamenting and prostrating themselves before the Father because they do not have any way out, we feel that the Father must open the way that they can walk and set the standard for their actions.</p>
<p>We have come to realize that Your hands of counsel must expand their influence in this nation. We believe that the heavenly passion of the Father must reach every one. Beloved Father, we pray earnestly that You will first entrust the sons and daughters who are attending here with the entire mission in the last days. Allow them to enlighten the thirty million people who are groping in the darkness and even to awaken the miserable foreigners who are being washed away by the waves of death.</p>
<p>We understand that no matter how great the will and the human beings established, no matter how great the purpose they are pursuing, if Heaven does not move, then nothing can be realized. We know that the institutions and the formalities of man will fade away in front of the stage of judgment in the last days. Only the sincere heart fixed on the universal principles, devotion and fidelity can allow us to pass judgment and usher in the day when we can enter Father&#8217;s bosom and receive praise and glory. So, Father, I entreat you, from the depth of my heart, to let these members become the loyal sons and daughters whose heart is soaked in loyalty and fidelity, so they can pass the judgment of the Father and be remembered in your internal heart.</p>
<p>We have fallen prostrate before you hoping for the promised words and the granted grace to fall upon us. So, beloved Father, we earnestly wish that your works will manifest themselves during this hour, that the Father&#8217;s work of inspiration that penetrates internally and externally will cause an explosion in the hearts of these sons and daughters who must proceed through the course of conflict this year, so that elements of sin can be quelled and they can ascend as the substantial manifestation of goodness.</p>
<p>Now we have gathered the previously disorderly heart and are showing you the scars of our wounds and offer them to you as they are, so please hold us with your hands of compassion, rub on the aromatic oil of victory, and wrap them up. We have entrusted this hour to you, hoping that you will govern over this hour so that it will not become a time when Satan invades us, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon on which I would like to reflect is <em>&#8220;The Lord Is My Good Shepherd.&#8221;</em> I will speak briefly on this topic.</p>
<p>Because of the fall, human beings do not have the master they should serve. Moreover, even all things have lost their master.</p>
<p>Today between all the human ideologies and assertions, there is not even one that originated from the true master. Because human beings are in such a state of imperfection, they are trying to escape from it, are seeking perfect things, and are trying to flee from unrest to find peace.</p>
<h3 align="center">Jesus Who Came as the<br />
Center of Love, Life and Hope</h3>
<p>Human beings lost the master of life, love and hope because of the fall. Originally, the purpose for which God created human beings was to live, centering on eternal life, in the garden of eternal love while singing eternal ideals. However, because everything was lost due to man&#8217;s fall, God has been exerting Himself over a long period of history in an attempt to claim and return all these to man.</p>
<p>Moreover, every human being is subject to the fate of making the body that does not obey the mind to follow the mind and persist until he or she becomes the owner of a true mind. However, this does not take place naturally. One must be determined to confront death and pass through tribulations and conflict.</p>
<p>How then should you penetrate through this fateful path blocked on the universal level in this way? This fateful path is the pass of bitterness that human beings have been anxious over because they have not been able to cross over it, in other words, they cannot go seeking the master of goodness, love and ideals. Consequently, for 6,000 years, centering on the ideal to rejoice and live with original human beings, this master, God, has been carrying on the dispensation of salvation of raising fallen people up again.</p>
<p>We have longed for the original, ideal garden, centering on God, but because we are immature and incomplete, we who are walking the course of conflict must examine ourselves to reach the complete standard. In addition, we must be able to observe the countless satans and evil people who are blocking the paths all around us.</p>
<p>Moreover, fathoming the sorrowful heart of God who is toiling internally and externally to lift us out of the darkness, we must fight with the forces of evil and vanquish them, so that we can liquidate the sadness and resentment of the whole; otherwise, we cannot pass through the course of restoration. If we cannot pass through the course of restoration, there is no way that we can face the Father who comes as the true master in the last days.</p>
<p>God has the responsibility to guide all human beings to that one garden where they can meet the eternal master for the sake of elevating the fallen people as the people of life. Consequently, God sent Jesus as the center of life, hope and love to the weak and unprepared people.</p>
<p>Furthermore, God has allowed us to meet that center of hope, whom we must meet, not at the end of the historical hope, but He established him as the one who dwells in our lives and provides new life to us to realize God&#8217;s wishes. We must become one with the blessing of God, who placed the center of hope and life in our lives, and by attending that true master, we must fulfill the will of God. If we do not hold tight to this universal master, Jesus, the center of the universal life, who is leading us through the path we must walk, we can never find hope, and we can also never find life or ideals.</p>
<p>To become one with Jesus, the center of hope, the center of love and life, we must become connected to his internal and external circumstances, which shows how he has been striving and fighting to realize the dispensational will of God. Otherwise, we cannot become one with Jesus who is the true master, and cannot become one with the Creator God.</p>
<p>You must reflect on how Jesus, who can be the master of life, love and ideals for all people, has walked the toilsome path to seek you, that one person. Jesus was born under pitiful circumstances and led a miserable life. While he suffered through unspeakably contemptuous treatment, he fought with the evil forces and, without being able to obtain one comrade to stand on his side, he passed away. Not only that, after his death, Jesus has been fighting until today to liquidate Satan who has been torturing human beings for many thousands of years. You have to understand that Jesus is someone who lives with such a sorrowful heart that we cannot even imagine.</p>
<h3 align="center">The Value of the Tribulations<br />
That Jesus Suffered</h3>
<p>Among the Bible verses I have read this time, it says that the shepherd separates the sheep from the goats and puts the sheep on the right and the goats on the left; this predicts that the time of ultimate judgment will come when God will divide all people and place the good people on the right and the evil people on the left. In that day of judgment, based on what kind of condition would He divide them into left and right sides? You should understand that He will set the condition of judgment by using the entire life course of Jesus from the time of his birth to his death as the standard.</p>
<p>What then should we who are trying to become one with Jesus do? We must follow the example of the whole life course of Jesus, walk the same path as he, feel the same internal and external heart that he felt, have the same thoughts as he, and wish for the same things as he. Otherwise, we cannot become one with Jesus, and we cannot serve him as our master.</p>
<p>Moreover, if there is none who assists, fights and takes charge of tasks on behalf of Jesus, who as the center of all human beings has been singularly responsible for the historical battle against Satan, then the will of God that seeks to send him as the savior of men and save them will never be materialized. If that is what takes place, then human beings also cannot serve God the Creator as parents. This is because fallen men can serve God only through Jesus. Furthermore, when we contemplate ourselves, who are living in the realm of the fall, you must feel that if the life course that Jesus left unfinished and the historical fate that we must face remains unaccomplished with us, we cannot attend Jesus as master, and we cannot attend God as our eternal father.</p>
<p>What is more, in the Bible verses I have recited, there are words that reveal the hungry and desiccated situations of Jesus, his situation of having become a wanderer, his situation of being without clothes to wear, of being sick, and of being locked up in a prison. They predict Jesus will return and tell the people on the right side, &#8220;When I was undergoing this kind of difficult situation, you helped me.&#8221; You must keep in mind that these words are meant to be told not to the disciples that followed Jesus while he was alive, but to the Christians of the last days who will confront judgment.</p>
<p>When it says here that he was hungry and thirsty, it symbolizes the unspeakably sorrowful situation he felt. Moreover, because Jesus felt unspeakable loneliness, he spoke about how he became a wayfarer, and because he suffered pain unjustly, he talked about a situation of being locked inside the prison. The life course of Jesus in which he forecasts that the Lord of Second Advent in the last days will experience the same situation was indeed a path of distress, sorrow and anguish that others cannot even imagine, and he traveled it without anyone sympathizing with him. You must understand that he had led such painful life from the time of his birth.</p>
<p>We must build a direct relationship with Jesus who endured such pains and persevered through his life course, and feel the same sorrow and loneliness that he felt. Otherwise, we will be in the position of not having anything to do with him, who walked the course of heavenly life.</p>
<p>Jesus walked through doleful, lonesome and painful path for thirty years of his life on earth. After his ascension until today for 2,000 years, he has also been walking a path of sorrow and loneliness. Yet, Jesus did not walk this path for his own sake. He voluntarily walked the path of suffering because of fallen men, in other words, to restore fallen human beings back to God.</p>
<p>There were times when Jesus was hungry, thirsty and sick, and when he became a wayfarer and was locked in the prison. He experienced the same difficult circumstances, not just externally, but also internally.</p>
<p>The Israelite people should have inherited the will of God who led the dispensation for 4,000 years, should have realized the will, that the life of God has run dry, and that God&#8217;s hope has become exhausted. To be responsible for this, Jesus became a wanderer without any possessions and traveled all over Israel visiting the Jewish people. Originally, the Jewish people should have walked such a path. However, because there was none among the Jewish people who was walking such a path, Jesus, in their place, voluntarily led the life of a wayfarer to find true sons and daughters of God and to establish true life and love among the people who did not welcome him. Moreover, because the Jewish people should have been in the position to undergo the suffering and be locked in prisons completely neglected it, Jesus was in the position to substitute for them, suffer the ordeals and be locked up.</p>
<h3 align="center">Believers Who Should Attend Jesus</h3>
<p>We must understand that Jesus, who passed away while leading such a life, has been seeking us with the same heart since his resurrection and ascension. To put it another way, Jesus has not been living in glory or freedom with a joyful heart, but even in this moment he is in great anguish because he sympathizes with the pitiful people of this earth who are internally and externally suffering severe hunger and thirst. He worries about the believers who are groping to find the path of true life. On behalf of the believers who are imprisoned, he is in a position of imprisonment. Consequently, you have to understand the situation of Jesus who is not in the position to rejoice with God though he has left this earth and dwells in the Heavenly Kingdom.</p>
<p>Jesus told the twelve disciples that he loved, as he distributed bread and wine, &#8220;From now on, I will not drink that begotten from the grape trees until the day that I can drink it with you in the Father&#8217;s kingdom as a new substance.&#8221; He meant that until the day the sorrow of all human beings is resolved on the earth, he also cannot rest in peace. After understanding this situation, we should never cause Jesus to feel more lonely, painful or constrained.</p>
<p>We must experience all these situations with our mind and body to understand the situation of Jesus, and on his behalf fight with Satan and win over him to put God&#8217;s worries to rest. If we cannot become the ones who can take care of the people of this earth in Jesus&#8217; place, then we will not be able to receive Jesus who is coming to this earth in the last days.</p>
<p>The heartbreaking situation of Jesus immersed in sorrow, loneliness and pain during the long course of the dispensation for the thirty years of his life and the following 2,000 years must not just end with Jesus. We must take over the heartbreaking situation of Jesus and comfort him. Unless we can do this, we will not be able to go before Jesus, and we cannot call Jesus our Lord. Therefore, we must offer all of our lives to live a life connected to the situations of Jesus in our hearts and minds. You must understand that this is more important than anything else.</p>
<p>Although Jesus came to this earth as the true master, human beings have not been properly attending him as the master. Moreover, although Jesus has been working to fulfill the will of God, he is in the position where he cannot even govern over the things created to help fulfill the will of God. The reason is that, until now, human beings are shackled inside sorrow, suffering and loneliness, and because the will of God has not yet been fully realized. Similarly, unless Jesus is in the position of glory by fully accomplishing the will of God, he cannot dominate over all things with joy.</p>
<p>Then, how can we receive the true master of glory and joy? We must become people who can bring happiness to the Lord by, first, alleviating the sorrow of the Lord that has accumulated through the course of history; otherwise, Jesus cannot rule over us. If Jesus cannot govern us, God also cannot govern us. Moreover, if we cannot be ruled by Jesus fully, then we cannot forge a complete relationship of love with Jesus, and, as a result, we cannot serve him as true master.</p>
<p>If there remain in you the elements that cause Jesus to become sad, lonely, painful and shackled, then in the day that he returns, you cannot stand before him. Moreover, if you cannot secure the center based on which you can take responsibility for the agony of Jesus on behalf of history, then you will not be able to stand firm as the co- ruler before Jesus, who is in charge of the historical dispensation.</p>
<p>If Jesus has a wish to govern each of you, then it must be a universal wish. If there is some will that he set, then that will must also be the universal will. Not only that, even if there are love and glory that he wants, that love and glory must not be only for the sake of himself, but they must be universal love and glory.</p>
<h3 align="center">Human Beings Who must Connect<br />
with the Love, Life and Hope of God</h3>
<p>Then, do you have some sadness in you today? Do you feel loneliness and pain? Are you feeling restrained? It should never be that you are the ones who are causing the master of the universe, the Lord, to feel this kind of sorrow, loneliness or pain. The reason is that we are connected to Jesus; even if it is an insignificant feeling of sadness or pain, it does not stop with you but reaches Jesus.</p>
<p>If you are entrenched in sorrow, then it will become the sorrow of Jesus who is ruling over all things. If you feel lonely, then this feeling will become the loneliness of Jesus, who is the owner of all things. If you feel pain, then this will become the agony of Jesus who represents the universe. So if you cannot solve and overcome sorrow and agony in your own life, then you will not be able to attend Jesus, master of the universe, as the master in your life. Then, in place of Jesus, Satan will invade you, and you do not have any way to ward him off.</p>
<p>Moreover, if you cannot become connected to the situations of Jesus, then the situations of Jesus, who has been taking responsibility for the historical dispensation and has been fighting, will not be conveyed to you. If you cannot become people who can act on behalf of the will of God, the sorrow of Jesus will never be lifted, and there will not be any way that you can win in the fight with Satan and return that glory to Heaven.</p>
<p>You must understand that Jesus feels individual grief as the grief of the whole and is worried about it. The reason is that each of us is a part of the whole. Therefore, unless all of you who are incomplete beings reach the level of perfection based on the standard of the whole, the comprehensive will of Jesus also cannot be fulfilled. In other words, if one of you does not reach perfection, then the comprehensive will that Jesus is establishing will not be realized. Unless the will of the whole is realized, Jesus cannot rule over us as the shepherd of goodness who represents the whole. If that takes place, then the love of God, hope of God, and life of God will not be able to forge a direct bond with us.</p>
<p>Jesus has been working for a long time to emerge as the substantial manifestation of universal hope, as the substantial manifestation of universal life and universal love before the will of God. Today, we, as the sheep who are being led by this shepherd, must move when he moves, halt when he halts, and rejoice when he rejoices. Otherwise, the will of God, which seeks to clear the universal grief and bitterness through Jesus, will not be realized, not only through Jesus but also through you.</p>
<p>Although you are extremely small individual parts, you must act on behalf of the universal good shepherd and serve him. Even if there are times when you suffer grief, loneliness and pain, you must overcome those difficulties by thinking about the situation of Jesus who is undergoing greater ordeals. If you cannot live this kind of life, then you must remember that you will never be able to participate in the seat of glory of Jesus, who is the good shepherd.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father, we earnestly hope that the day will come soon when you can become the master of eternal life to soundly govern over all things under heaven and indulge with them. Father! Please forgive the human beings who could not serve their Lord Jesus, who came as the representative incarnation of Father, although you sent him as the good sovereign and dominator of eternal ideals to bridge the gap with you that widened because of the fall of the human ancestors.</p>
<p>We know that the deficiency of the ancestors has caused Jesus&#8217; sorrow, and we are learning that the sorrow remains in Jesus because of our deficiencies. Please allow us to realize the hopes of the Father who desires that we inherit the great mission of the good shepherd and proudly go before all things. Please allow us to realize the hope of Jesus, and allow us to become the ones who can emerge with the life of the Father, the love of the Father, the life of Jesus and the love of Jesus. We realize that unless we can become like that, there is no way to ever remove the heartbreaking situations of Jesus Christ, who came as the good shepherd, in the human world. Please open the gates to our hearts and guide us to listen to the voice of the good shepherd who is calling out to us.</p>
<p>When we come to realize the mournful situation of the Father, the lonesome situation, and the situation of the Father who is struggling, we are so utterly ashamed. Father, please guide us not to become wretched people who are begging to transfer our own sadness, loneliness, laborious word and pain to Jesus.</p>
<p>Father, we wish from the depth of our hearts that you allow us to understand all the secrets of Satan, the internal situations of the Father, and the internal heart of Jesus, and that you give us the strength to be responsible for the situation of the Father and take charge of Jesus&#8217; sorrow, loneliness, agony and shackles to fight with the many millions of satans. Father, please allow us to see Jesus who is deeply immersed in worries about our situation and is at work. Please allow us to understand that Jesus is hanging on the cross even today because of our own pathetic situation.</p>
<p>We have been ignorant of the fact that, when we feel mournful, sad and lonely for the sake of Heaven, Jesus is feeling greater loneliness, sadness and pain, to comfort us. Now, please help us to become true sons and daughters who will appeal desperately to alleviate the sorrow of Jesus, as well as loneliness and pain of Jesus, even when our pain is greater than that of Jesus, our sorrow is greater than that of Jesus, and our difficulties are greater than that of Jesus. In this way, we entreat sincerely that we can become people who can follow in the footsteps of the good shepherd and comfort his drenched heart.</p>
<p>Father, we now know that the sons and daughters who have gathered here have joined the historical ranks in which we must offer all our minds and bodies. Moreover, we have come to realize that before us lies the fateful path that we cannot but travel through and with us lies the responsibilities and mission that force us to fight, so please allow us to prevail over all the sorrow, loneliness or anguish that we might face in our path.</p>
<p>We earnestly hope that even if the invisible Satan directly invades our lives and provokes chaos and fear, we can become missionaries who represent Jesus, confront it and persistently battle and triumph over it. We also hope that, at this moment, You will lift us up newly as the sons and daughters who can continue the life of Jesus on his behalf.</p>
<p>Hoping that You will use all of our minds and bodies to fulfill Your wishes and guide us to become the source of the Father&#8217;s joy, glory and pride. Earnestly requesting that You allow us to become sons and daughters, whom You can govern and command as You will, and whom You can claim to place on your right side, we prayed all these things in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html" title="Permalink to THE LORD IS MY GOOD SHEPHERD" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/let-us-untie-the-knot.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US UNTIE THE KNOT</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/for-whom-are-we-living.html" rel="next">FOR WHOM ARE WE LIVING? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,283 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WE ARE THE ONES WHO MUST POSSESS THE KEY TO THE KINGDOM OF HEAVEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-800 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-800" class="post-800 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">WE ARE THE ONES WHO MUST POSSESS THE KEY TO THE KINGDOM OF HEAVEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:27:53+01:00"> <a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:28:10+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
March 17, 1957</h3>
<p style="text-align: center;"><em>Matthew 16:13-20</em></p>
<p style="text-align: center;"><em><span class="text Matt-16-13"><sup class="versenum">13 </sup>When Jesus came to the region of Caesarea Philippi, he asked his disciples, <span class="woj">“Who do people say the Son of Man is?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23687" class="text Matt-16-14"><sup class="versenum">14 </sup>They replied, “Some say John the Baptist; others say Elijah; and still others, Jeremiah or one of the prophets.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23688" class="text Matt-16-15"><span class="woj"><sup class="versenum">15 </sup>“But what about you?”</span> he asked. <span class="woj">“Who do you say I am?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23689" class="text Matt-16-16"><sup class="versenum">16 </sup>Simon Peter answered, “You are the Messiah, the Son of the living God.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23690" class="text Matt-16-17"><sup class="versenum">17 </sup>Jesus replied, <span class="woj">“Blessed are you, Simon son of Jonah, for this was not revealed to you by flesh and blood, but by my Father in heaven.</span></span> <span id="en-NIV-23691" class="text Matt-16-18"><span class="woj"><sup class="versenum">18 </sup>And I tell you that you are Peter,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23691a" data-link="[&lt;a href=&quot;#fen-NIV-23691a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+16:13-20#fen-NIV-23691a">a</a>]</sup> and on this rock I will build my church, and the gates of Hades<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23691b" data-link="[&lt;a href=&quot;#fen-NIV-23691b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+16:13-20#fen-NIV-23691b">b</a>]</sup> will not overcome it.</span></span> <span id="en-NIV-23692" class="text Matt-16-19"><span class="woj"><sup class="versenum">19 </sup>I will give you the keys of the kingdom of heaven; whatever you bind on earth will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23692c" data-link="[&lt;a href=&quot;#fen-NIV-23692c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+16:13-20#fen-NIV-23692c">c</a>]</sup> bound in heaven, and whatever you loose on earth will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23692d" data-link="[&lt;a href=&quot;#fen-NIV-23692d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Matthew+16:13-20#fen-NIV-23692d">d</a>]</sup>loosed in heaven.”</span></span> <span id="en-NIV-23693" class="text Matt-16-20"><sup class="versenum">20 </sup>Then he ordered his disciples not to tell anyone that he was the Messiah.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please allow the hyung sang of Jesus, who appeared representing God, to also appear before the congregation that has gathered here today. Please allow this to be a time when the words of the Lord&#8217;s commands can be heard through the ears of our hearts and minds. Please allow us to understand that the words Jesus spoke were relevant, not only for his time but also for us at present; they are words that transcend history.</p>
<p>Please allow us to fathom the anguishing heart of Jesus toward Peter. Allow us to fathom as Peter understood the thoughts of Jesus and gave such a reply that he could inherit the whole will of Heaven. Please lead Your sons and daughters who have gathered here also to understand the one who is spreading the words of the Father and to listen to them from a position of deeply sensing the inner situation. Let them fulfill their loyal obligations toward the will.</p>
<p>Please help us realize that at such a time God will hand down to us the whole will and the great feat of resurrection. Moreover, when we voluntarily listen to the words with the realization that the Lord has this heavenly mission, please allow us to fathom the inner heart of the one who is giving the words. Father, we wish from the depth of our hearts that You will allow us to understand the meaning of the words for the sake of comprehending the heart of God.</p>
<p>Beloved Father, we earnestly wish and desire that You will allow the words given to us today to make a deep connection with us. Just as Peter testified, &#8220;The Lord is the Christ, the son of the living God,&#8221; you will allow us to look upon the Lord and rejoice and to testify to the Lord. As the people who can become harmonized with the eternal words of the Father, please guide us always to reflect upon ourselves while we are on the path until the moment when we can appear as impeccable ones before the Father, the Holy Spirit and all created things.</p>
<p>Father, we wish from the depth of our hearts that You reign over the minds of all the brothers and sisters who have gathered here. We also wish that, in this moment, You can grant comprehensive works of Heaven through which we can receive the one grace and feel the one love with united hearts.</p>
<p>We sincerely hope that You will help us eliminate our conventional concepts. We hope that you, Father of capability, will cause resurrection by embracing us. Lead us to have a repentful and remorseful heart, the heart that seeks to submit before the Father with the offering of our lives. Allow the heart of the speaker and the heart of the listeners to become united.</p>
<p>Please allow us to realize that Satan is at work to divide us who have gathered here. Father, we wish with the utmost sincerity that you guide us to understand that, although the environment of grace dwells on us, Satan is always watching attentively and that the greater the grace, the greater the work of Satan that follows. Please lead us so that none of us will allow Satan. Father, please protect us so that we will not follow in the footsteps of the resentful ancestors who were dragged away by Satan, who seduced humankind for 6,000 years to seize them to his side, and become bitter. Please allow us not to repeat our lamentations and, Father, please allow this to be an hour when we provide the protection to prevent our descendants from lamenting.</p>
<p>Father, we hope from the bottom of our hearts that you will allow us to cultivate meekness and humility, and possess the heart that only seeks the grace of forgiveness, divulging everything before Father with the meek heart. We entrust everything in you, wishing that the will of Father be the only thing revealed in this hour, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon I want to give you is &#8220;We Are the Ones Who Must Possess the Key to the Kingdom of Heaven.&#8221; I will speak on this topic today.</p>
<h3 align="center">The Purpose of Jesus&#8217; Proclamation of Words</h3>
<p>Human beings on earth have hoped for the Kingdom of Heaven until now. As they were passing through history, human beings have led their lives with the hope that in their own generation the ideology of the heavenly kingdom will be materialized on this earth in every aspect, including environmentally and worldwide. What is more, God has been longing for the realization of the Heavenly Kingdom as He was guiding the dispensation. You must understand that, consequently, the heavenly kingdom that we must build is the hope of God, the center of man&#8217;s hope and the hope of all things. However, we ourselves must create this Heavenly Kingdom, which is the center of the eternal ideal and the eternal hope, but instead, we are in position to lament over our own selves.</p>
<p>If the Heavenly Kingdom is not a world that excludes God, but is a world centered on God, then we have no choice but to build a relationship with God to create the heavenly kingdom. In addition, if God is also conducting the providence for the sake of realizing the ideal of the Heavenly Kingdom which can harmonize the whole world of creation, then He must build a relationship with human beings. Because the Heavenly Kingdom of hope is far away from us and the world that we live in is a world of sin and hell, even if we ourselves want to build a relationship with God, we do not have a way to do it.</p>
<p>Nonetheless, if we want to create a tie with God and build the Kingdom of Heaven, then the relationship between the heavenly kingdom and us is inseparable. It is not limited to our own generation. It is the eternal bond that transcends time and place. Looking at how human beings are always perceiving this kind of ideology and ideal of the heavenly kingdom, we can understand that the eternal heavenly kingdom that will be materialized, centering on God, is already fatefully tied to us.</p>
<p>What must be the purpose of Jesus Christ&#8217;s coming to the earth and proclaiming the words while shedding tears for thirty years and walking a path of sorrowful ordeals? First, it was for the sake of having human beings restore the relationship with God and, next, it is for the sake of introducing the Kingdom of Heaven to humankind.</p>
<p>Similarly, when Jesus introduced the Heavenly Kingdom, he did it with the words. In other words, he tried to introduce the Heavenly Kingdom with the truth. Similarly, through Jesus, God bestowed upon humans the words, whose purpose was to build an eternal and unchanging bond between humans and the words and then construct the ideology of the heavenly kingdom on earth. He tried to manifest the truth through Jesus. Consequently, Jesus, who came to forge a relationship between God and man and came to testify to the truth before the people, began to proclaim the words of truth to construct the heavenly kingdom for which God, human beings and all created things hope.</p>
<p>However, although Jesus proclaimed the truth to restore the relations between God and man, because the Israelite people who should have built a relationship with that truth betrayed him, the purpose of Jesus&#8217; proclamation of the words could not be realized. Looking at this, we can understand that the genuine words of truth that Jesus proclaimed were not conveyed to the people one hundred percent. You must understand that this is because, when the people at that time betrayed him, Jesus had to introduce the truth through metaphors and symbolism, or as allusions. So, throughout the course of history countless people who live on earth have been seeking the concealed door to the truth by mobilizing abundant knowledge.</p>
<p>Now, when the last days of history arrives there will come a moment when human beings will meet the sacred spirit and truth for which they have been looking. Countless people will be lifted as the true believers of Jesus, and the truth that lay hidden deep inside the heart of Jesus will also be introduced in totality.</p>
<p>Then, you who are seeking heaven, which path have you entered? Until now each external truth and each internal truth has been established from different directions. In this moment, the two truths can become one with the same central focus. Similarly, the dispensation of God centered on the truth has been progressing in step with the development of history.</p>
<h3 align="center">Three Kinds of Movement<br />
for the Establishment<br />
of the Kingdom of Heaven</h3>
<p>Then, what will happen at the time of the completion of the work of recreation, for which humankind has been longing until now? First, there will emerge one center of the truth tied to the universal karma and has the power to substantialize the ideals of the Kingdom of Heaven for which all creation and humanity hope. If such a center of truth does not appear, then God&#8217;s entire ideology of the Kingdom of Heaven will not be established.</p>
<p>Then, what kind of movement will rise along with the truth after the movement of truth, galvanized by that center of truth, is set in motion and the truth is found? The movement of life will emerge. That movement of life is the phenomenon of unification centering on life. It will be marked as the center of the heavenly power that can materialize the one Kingdom of Heaven, and it will plunge all things in creation forward toward that kind of world.</p>
<p>Similarly, after the emergence of truth, there will come a movement of life; after the emergence of the unified movement of life, the unified world of love will be realized. Unless this takes place, the Kingdom of Heaven for which we hope cannot be built.</p>
<p>Then, what kind of world is the kingdom of hope that we long for? That world is a place where God can rejoice, a place where Jesus and the Holy Spirit can rejoice and many thousands of faithful believers can also delight. At the same time, it is a place where all things in creation can become harmonized. Accordingly, that place is the world where harmony is achieved centering on love, harmony is achieved centering on life, and harmony is achieved centering on truth. You must understand this.</p>
<p>Therefore, the movement that God induced man to initiate for the sake of building the heavenly kingdom is the movement of the restoration of truth. It was the movement of the restoration of truth through the words. Similarly, the reason that the movement of the restoration of truth must arise through the words is because only through the words is the miraculous work of life realized and only through life can the movement of life emerge.</p>
<p>When Adam and Eve fell, they fell because they disobeyed the commandments. Because they fell by disobeying the words, they lost life, which is the foundation of the words, and the love of God, which is the foundation of life. This is the actual sin that Adam and Eve committed. Thus, if we cannot make the opportunity to universally cleanse the sin that Adam and Eve committed in its entirety, then we cannot obtain the Kingdom of Heaven for which we hope and the ideal garden for which we long.</p>
<p>To accomplish this kind of task, the Holy Father, the Holy Son and the Holy Spirit have been at work for a long time. Among this trinity, the Holy Spirit has been working to guide humanity toward the truth. So it is written in the Bible, &#8220;When the Spirit of truth comes, he will guide you into all truth&#8221; (John 16:13). As you can see in her work, the Holy Spirit is in charge of the mission of truth. Jesus, the Holy Son, is in charge of the mission of the champion of life. Therefore, he has said, &#8220;I am the way, and the truth and the life; no one comers to the Father, but by me&#8221; (John 14:6) Jesus came to rectify this will of life.</p>
<p>Then, what are we, ultimately, to seek in our course of finding life through the truth? It is none other than love. We must reach the love of God, to say nothing of the love of the Holy Spirit and Jesus. If we manifest the nature of the Trinity from this perspective, then we can say that the Holy Father is love, the Holy Son is life, and the Holy Spirit is truth.</p>
<p>So, to the question of Jesus, &#8220;Who do you think I am,&#8221; Peter answered, &#8220;You are the Christ, the living son of God&#8221; (Matt. 16:16). This answer of Peter&#8217;s refers to the true and existing quality of the nature of Jesus. In other words, it symbolizes that Jesus is one who was anointed with the oil, that he is the living God, and that he is the one existing being who perfected the mind and body. Similarly, looking at the fact that Peter testified to Jesus as the living son of God, we can observe that Peter understood the internal heart of Jesus, and that he was able to stand on the level that can be linked to the one law. If we are to characterize God, humankind and all things symbolically, then we can describe God as love, man as life, and all things as truth.</p>
<h3 align="center">The Substantial Body of Love and Life<br />
That Possesses the Key of Truth</h3>
<p>Then, what must we, who are to seek the truth, do now? More than anything, we must possess the key of truth that can fit inside the heart of Jesus, the Holy Spirit and God. If you do not possess this key, then you cannot perfect your physical self. Moreover, you cannot create a bond with the Holy Spirit, the divine of truth.</p>
<p>What has been the purpose of the people of faith seeking the truth until now? It was to find the key of truth. If there is someone who can possess this truth, if he understands this truth, then the love of God will automatically enter this person. Moreover, if anyone among us is in a position to inject the love and life of God centering on the truth of God, then all things will not be able to make a relationship with God without going through that person.</p>
<p>So, if anyone stands in the center of truth that can connect with God, true life that can connect with God, and true love that can connect with God, then that person is the center of hope of all things in creation and the core of God&#8217;s hope. All things will not move away from that central person.</p>
<p>To speak about the truth of God from that standard, he can testify to the life of God that possesses a substantial body, can manifest the love of God that possesses a substantial body, and can manifest the truth of God that has a substantial body. In this sense, Jesus has spoken, &#8220;I am the way, truth and life.&#8221;</p>
<p>God has been working to find one central person who can realize the Kingdom of Heaven that He desires. So, the person whom God will establish on earth will first receive the truth, live and love of God. Next, he will stand as the substantial body of love, life and truth. Similarly, God has been working throughout a long history to establish one person who has perfected the standard of man centered on the love, truth and life of God.</p>
<p>If you cannot receive that central person who appears on behalf of God as a substantial body whose mind and body are united, then you will have nothing to do with the Kingdom of Heaven that God is trying to establish. Moreover, you must understand that there is no way to build the Kingdom of Heaven desired by humanity of the earth and all created things.</p>
<p>Today, we live in the difficult time of confusion when it seems that there are countless truth, countless lives and countless love, in other words, a time when this seems like that and that seems like this, when it is difficult to distinguish good from evil. This being the case, what should we who live in this kind of age do?</p>
<p>Now, the time has come when you must manifest yourselves before all the created things. Before manifesting yourselves, you cannot restore your original nature and nurture it. If there are evil elements in your minds, then, since this is the time to bear the fruits, you must bring out the evil elements as they are and uproot them. When you do that, you will connect with a new foundation, from that moment on. If there are good elements, you must use them to build a relationship with God and pursue those good elements more for the sake of nurturing your original nature. To achieve this, you must make an excruciating effort.</p>
<p>However, the more time nears the last days, the more things we human beings will want to seek. In other words, we will want to know everything about the earth and to possess these things and put them in action. Such desires increase because the human intelligence is developing and because human rational and wisdom are improving.</p>
<p>At such a time, we must, first, learn to appreciate all human beings. Next, with the mind of original nature, with your own effort you must become the precious substantial body that cannot be traded with anything on the earth, and by reciprocating with all things bring self-satisfaction. Only those who possess such a mind can be called the resurrected people for whom Jesus wished, and the citizens of the Kingdom of Heaven.</p>
<h3 align="center">The Mind-Set Needed to Become<br />
Citizens of the Kingdom of Heaven</h3>
<p>We who are in the last days, for us who face the day of the judgment, the problem is not the accomplishment, glory or ideals that we have, but seeking the true self, centering on the mind. When the time comes, the internal truth will surely reveal itself, and the internal life and love will manifest on this earth without fail.</p>
<p>Human beings, until now, have been ignorant, unable to distinguish the truth, true life and true love. Because they do not have any other solution, they try to proceed based on their understanding, try to feel things with the senses of life they possess, and to figure things out with the love that they possess, but they have not been successful in making the distinction. Similarly, when truth, life and love appear on earth in the last days, human beings will repeat the same thing. With such methods, the distinction cannot be made. Before you strive to understand the earth, world and universe that you do not know, you must first struggle to fathom your original natures that you have failed to see.</p>
<p>Consequently, you who are in the last days must pour oil on your head and enter the secret chamber to sever all worldly connections and relationships. Based on your heart, you must build a relationship with God. Having made the final resolution on life and death, you must become the children of God who can light the candle of truth and with the most sincere heart say, &#8220;I have established, as the eternal center of life, center of truth, and center of love, all these things that cause the continual progress of love.&#8221; Without doing this, there is no way for Heaven to make a relationship with us first. This is due to the way of the laws of the universe.</p>
<p>As for the flow of electricity, many of you might think that it flows from the positive end to the negative end, but in reality, it flows from the negative end to the positive end. Because of the way that the principles of the universe are, all things are created to seek God and make a relationship with God. Accordingly, in regards to the severed relationship between God and man, God cannot make the connection from His side first. So, God stands in the position where He has to make a detour and push us from behind.</p>
<p>Although Jesus and the Holy Spirit are at work, they cannot come in front of you and lead you from the front. Because their love is pushing from behind, you must receive that love. Because this is invisible, human beings are not clearly aware of it.</p>
<p>Now the time is approaching the last days, but even when the last days are near, your hearts must not become anxious. At that time, no matter how great your living conditions are and no matter how luxurious and proud a life you might be boasting before the world, you must understand that the agony in heart will increase proportionally.</p>
<p>Then, what must we do in this moment when the last days are approaching? When the center of the whole universe appears, you must make preparations in your hearts to receive him. In other words, you must be able to attend Christ, who is the center and the base of the universe, in your hearts.</p>
<p>If you serve Christ substantially in your hearts, then the feelings that you feel within Christ will become the eternal pillar of life, the eternal bedrock of truth, and the eternal base on which you can life up the signal fire of love. The center of truth is in no other place than inside our hearts.</p>
<p>Is there anyone among you who wants to possess the heart of the Lord? If you are determined to abandon, in one second, your position of which you have been in charge for ten years, and abandon, in one second, all the accomplishments you have spent your lifetime working for, then, in the last days, you can escape the fearful judgment.</p>
<p>Our teacher also does not reside in other place. Heaven does not dwell in other place. Our mind is the teacher of the truth. You must understand that our minds are closer than Jesus.</p>
<p>Although we might not possess anything, when we possess the truth that represents all things in the universe and the historical tradition and live our lives according to that truth, then God will dwell in our minds and rejoice. We will also be delighted, so we must strive heartistically to possess that truth. Unless we do that, we cannot serve God. If you relate to all things from the position of God, then you will enter the realm in which you can feel and experience all the universal life, truth and love.</p>
<p>When you feel this reality, then you will understand the fundamental content of the truth in that realm, understand the content of life, and feel the ideal stimulation of love. What is more, when we receive the gospel that Jesus proclaimed, the truth that Jesus taught, and the life element of Jesus and firmly establish them as the eternal root of our minds, then no matter what kind of universal, evil element infiltrates us, we can chase it out. If you can do that, lamentation and agony will no longer be problems for us. Moreover, even if lamentation and agony remain within us, we can easily overcome them.</p>
<h3 align="center">The Standard for the Citizens<br />
of the Kingdom of Heaven:<br />
Truth, Life and Love</h3>
<p>There is nothing on the earth that can push out the life and love of God. Moreover, the closer we come to the truth, the more we are intoxicated in the truth, the more that truth will become the center which cannot be snatched from us. Even if the earth is put through confusion many thousand times, even if the universe is destroyed, those who have firmly established that center in their minds will never change and never be affected.</p>
<p>However, if you have not made the preparations in your minds to receive that center, then no matter how great a truth appears before you, you will not be able to recognize it. Even if true life appears, you will not recognize it; even if true love appears, you will not recognize it. From this point of view, we can understand that, if Christianity today wants to find the truth, true life and true love, it must abandon itself till the end and become a religion that establishes the center of the mind that none can take away from them.</p>
<p>Until now, people thought that the earth was expanding because new continents have been discovered, but on contrary, it is shrinking every day. In other words, when civilization was not yet developed, the world seemed to be a vast place, but as history progresses and civilization develops the world seems to be increasingly narrower place. When we consider this, we can understand that the ideal world that will be realized through the works of the truth will be the universal era when everything will have a direct relationship with each of us. Consequently, the standard for the citizens of the Kingdom of Heaven must be materialized in your minds; in other words, the life and love of the Kingdom of Heaven must bear fruit in yourself.</p>
<p>Because truth, life and love are like one family, love and life must follow truth, and life and truth must also follow love. The same thing is true for life; there, love and truth must also follow.</p>
<p>Why are truth, life and love connected in that way? As you know, in order for one being to exist, centering on that being, there has to be above and below, front and back, and left and right. Anything that exists cannot liberate itself from these three realms. This is the basic structure of existence. Although these three things come together to form one united shape, if the force moves in the opposite direction, then forces that are different from the original ones will appear.</p>
<p>Accordingly, although God is originally a being of love, life and truth, after the fall when human being could not form the balanced triangular structure of love, life and truth, God could not exercise His powers. You must understand this. However, by choosing Abraham and connecting the three points into one, in other words as the three points line up in the straight line to the left and the right, the base on which God can dwell was created. Moreover, when Jesus and the Holy Spirit appear in the place of love, life and truth, that base secured its sense of direction and became closer to the whole earth. To put it another way, when they were lined up in a straight line, there was a long distance between them, but when that line is curved the distance is shortened. In this sense, Jesus and the Holy Spirit are acting as the bridge that connect God and man.</p>
<p>What is the good news in the movement for the restoration of the Kingdom of Heaven? It is the fact that human beings who could not directly receive the grace of God can do so by the virtue of Jesus&#8217; coming, which caused the relationship between God and man on a straight line to curve and bridge the distance between. Moreover, Jesus allowed us to possess substantial content based on which God can operate. He made it possible for human beings to become one with God and become the external body of operation. Jesus is the one who came to do this work.</p>
<p>When we think about this, for the human beings who must look upon the ideology of the Kingdom of Heaven from afar, the love of Jesus and the Holy Spirit that is present nearby, in the front, back, left, and right, is surely the universal gospel. When someone grabs hold of the most valuable force in the universe, by the principles of the universe, the power of life that connects with the power of the universe will reach that person. This being the case, that person will develop in four directions as a being of life, and can feel the love that connects the four directions. Love brings harmony to things and causes actions that form unified bodies.</p>
<h3 align="center">Self-Perfection of Human Beings</h3>
<p>Consequently, although until now we have been gazing from afar at the Holy Spirit who appeared as the deity of truth, Jesus who appeared as the deity of life, and God who exists as the deity of love, from now on, we must attend them in our hearts. Then, how can we serve the Holy Spirit, Jesus and God in our hearts? This is the problem.</p>
<p>To invite God, Jesus and the Holy Spirit into your hearts, you must abandon selfish obstinacy centered on yourselves. Until now, you have had a frequent tendency to be stubborn for selfish reasons. This is your enemy. The time has come when you must repent for this. Until today, human beings thought that they had many enemies, but the greatest enemy is your self, and the members of your family.</p>
<p>We must walk the remaining fateful path no matter what, so we must pass through the environment based on ourselves, and then, surpassing the nation and the world, we must connect with the Kingdom of Heaven. If we cannot complete this path while we are alive, we must continue after we die; our fate is to continue even if it takes many millions of years.</p>
<p>Can we escape from this fate? We must fulfill our responsibilities on this earth. Moreover, are there any elements of evil, jealousy and envy remaining in you? If such things remain in you, then there is no way for you to cleanse your sins and escape that kind of fate.</p>
<p>Then, what did Jesus do during the thirty years of his life? Jesus Christ grew up in the household of a carpenter, and with a humble appearance, he led a quiet life of reticence. What fight did he carry on? Although Jesus helped Joseph in Mary&#8217;s family and carried on a fight in his life to sustain the livelihood of that family, in no way was this a fight for livelihood, but it was a fight to perfect himself in the internal sphere. Even when you read the gospel of John, you can see that Jesus lived not for the human will but for the will of God.</p>
<p>Do you possess the weapons that can block the enemy satans who are invading you as you try to resurrect yourselves now? This is an important task for you. However, you cannot block these satans by yourselves. Because you are powerless, you are always in danger.</p>
<p>Through what means can you prevent the invasion of Satan now? You can prevent the invasion of the enemy through Jesus and the Holy Spirit. Jesus and the Holy Spirit are not only helping you, but they are also longing for you to stand on your own. In this way, Jesus and the Holy Spirit wish that heaven and earth were connected through you, but they are lamenting because human beings of today have not been able to accomplish this.</p>
<p>When all things become united, the whole universe can forge relationships front and back, left and right, and up and down, centering on human beings, and by virtue of human beings they can be liberated. However, because human beings cannot fulfill this task, the grief of heaven has been filling the whole heaven and earth until now. If there is something that you must feel, it is this grief and bitterness of heaven. What is more, to resolve this resentment, you must battle with sin.</p>
<p>The time when everything must be abandoned will come, and that time is the last days. In that last days, how would the will of God appear, and where will the truth, love and life of God appear? That place is the hope of all humanity and the center that they must seek. Therefore, if you do not know that place, you must rectify your mind and purify it, you must make the preparations. If you make such preparations, then even if you are not trying to go there, one day you can go there naturally.</p>
<p>Will you be able to distinguish true things from false things? At that time, even God cannot teach you true from false. After God reveals that something is true, He must also say that it is false. Accordingly, human beings must make the distinction by themselves, and human beings must make the determination and seek it on their own. Consequently, you must learn the meaning behind the story in the Bible that draws from the example of how only five wise virgins out of the ten who prepared the lantern light could receive the lord.</p>
<p>If you have not been able to make such preparations in your hearts, then when the center of truth appears on this earth and commands you to abandon everything, you will not be able to leave everything behind except for your true heart. Heaven will come based on this kind of foundation where the one center is securely established.</p>
<h3 align="center">Distinguishing the True from the False,<br />
and the Way to Investigate the Truth</h3>
<p>To find the truth, you cannot listen to any person&#8217;s words. You must only listen to the words of truth. What words then are the words of truth? If there are some words that provoke natural repentance no matter who listens, words that unconsciously draw people, and words that cannot be erased no matter how hard one tries to erase them, then those words must be the very words of truth. They are the words of truth that penetrate through the principles of the universe.</p>
<p>When you listen to the words of Jesus, you should be able to believe in them as the truth that represents the universal principles and cherish them deep in your hearts. This is because those words are words of life to you. When you listen to the words, at times you might take them as words of life and at other times you might feel that there is no way you can believe in them. In the last days, you should be able to relate with the center of the universal truth, the universal life and the universal love with your original mind. That complete center is none other than Jesus himself.</p>
<p>If there is one nucleus, there always is some existing being that circulates around it. The same thing takes place in the relationship between God and human beings, as in electrons circling the protons. Because our human minds, which are like electrons, are operating in relationship with the nucleus of God&#8217;s mind, which is like protons, God can carry on the dispensation of restoration toward human beings.</p>
<p>When we consider this, even if we were to go seeking the words of truth alone, we could feel the life of God active in the place to which we go and we can feel the love of God working in harmony there. Similarly, the path through which we pass by the road of truth and pursue the life and love of God is the path through which we can become valuable selves.</p>
<p>Truth is equipped with the eternal and unchanging center. Then, how are we going to distinguish good and evil in this evil world as we go seeking the truth? You must always forsake the self-centered mind and always descend to lower positions. Even in the Bible it is written that those who seek to rise must go down of their own accord.</p>
<p>The original nature of human beings is spiritual. Consequently, when you go to the spirit world, you will feel to your bones even more that this original nature of God is designed to live for the sake of others. Yet, why is it that human beings try to live for their own sake in regard to everything in life? That is because all human beings have a connection with the archangel who violated the universal principles, in other words, it is because they have a lineage relationship with Satan. Consequently, we have lost the original character of God, and the satanic character that is not following the will has come to dominate us. Nonetheless, we must face every affair with a humble attitude. If someone of more immature character tries to dominate someone whose character is as lofty as the sky, then the former will be destroyed. He will lose even the things he possesses. So it is written in the Bible that in the last days, that which belongs to one who does not have much will be taken away and given to those who have a lot.</p>
<p>The last days is the time when arrogant people will increase and people who have a self-centered world perspective will increase. Before true things appear, false things will come. In the fallen world, the historical reality has been that false things appear first in the form of true things. Moreover, before the appearance of the truth centered on the universal, unified ideology, many forms of false truths that confuse the world will emerge in great number. Before the emergence of the unifying movement of life, many forms of false movements of life will unfold; before the rise of the movement of true love, the movement of false love will unfold.</p>
<p>When we examine the flow of philosophy that emerged in history, rational philosophy came before the philosophy of life. In the future, the philosophy of love must also emerge. Then, what is the standard of the philosophy of love? Is it man or truth? Human beings will agonize over this kind of question.</p>
<p>However, even if we do not understand this kind of philosophy, if we can be pulled by the original mind and the saeng shim I and become deeply concerned about other people&#8217;s situations, then we can love anyone and be able to become in tune with that person&#8217;s heart. Therefore, you must become people who can understand the situation of others, despite whether that person is an evil person or a good person.</p>
<h3 align="center">Love, Harmony and the Perfection of Human Character</h3>
<p>God is someone who understands well the internal situation of all people. Consequently, He forgives even evil people. You must understand this. If you also reach this kind of internal heartistic standard, then you can also become close with all people. In other words, even if someone is a wicked person, when that person&#8217;s situation is revealed to your heart, you can understand that person.</p>
<p>In order for us to resemble all the aspects of God&#8217;s character, our mind and body must be able to be in harmony with anyone on this earth. If there are even just a few people who cannot harmonize with us, there will be no way that we can hide from the accusation of heaven and earth.</p>
<p>Then, what kind of person was Jesus Christ? He was the one who came to this earth, to this evil world, as yeast. What is yeast? You probably know a lot just from the stories in the Bible, but yeast is a material that mixes and harmonizes different things to transform them. What is meant here, when it says that Jesus came as yeast, is that he came with the mission to transform people with fallen nature into people with original nature.</p>
<p>If the hearts that we possess cannot harmonize with other people, we must train our minds to be able to move our minds to adjust them to other people one hundred percent. Unless we do that, Satan will place you on the stage for judgment and accuse you, &#8220;You so and so, don&#8217;t you have this condition of inadequacy?&#8221;</p>
<p>Until we reach this purpose, we cannot fully enjoy our freedom and cannot realize any other wishes. Consequently, human beings have been longing for the moment when, by having cleansed their fallen nature and offered all they have, they can attain the original character of love and elements of goodness that are connected to all things in the universe and, becoming one with the heart of God, immediately put into operation the elements of love and goodness within the will. In other words, they have been longing to become perfect in character before the one truth by perfecting the ideals of love in their lives.</p>
<p>Although people today often want to govern over this vast and great universe, this is causing their own destruction. Consequently, from long time ago I have been cherishing, as my motto in life, the phrase, &#8220;perfect self-dominion before seeking the dominion over the universe.&#8221;</p>
<p>In truth, for Christians, this motto is more important than anything else. When there is a believer who has nurtured the character to govern over the universe based on this content, in other words, when he can obtain the ability to govern over the universe, the shortcut through which God can step and jump over will finally be laid down. When such a standard is completed, one can finally say that he has the original value of creation. Therefore, Jesus spoke, &#8220;What good would it be if you win the whole universe but lose your soul?&#8221; You must never forget that today is the historical moment when the true person who possesses this kind of value must emerge.</p>
<p>You should not think that you can do this or that because someone else is doing the same, but you should set the condition that surpasses Jesus. Moreover, even if you have all powers of heaven and earth, you should be able to forsake them all at once for the sake of the will. On the surface it might appear that you are throwing them away, but in reality, you will win everything back; in addition, you can obtain something even greater.</p>
<p>The enemies that are infiltrating us are trying to prevent us from understanding the truth and are blocking our path toward life and love. Such enemies do not exist anywhere other than your own self. Accordingly, no matter what unfortunate things take place, before you blame other people, you should think that it happened because of your own mistake and try to take responsibility for it by yourself. If there is cause for lamentation, you should try to resolve it on your own, and you should also have the mind-set to alleviate the grief of your family and nation. If there are even just three million out of the thirty million citizens who take national tribulations as their own matter and shed tears, then our country will survive.</p>
<p>We could say that the reason that the nation has become like this is our responsibility and the reason that the whole world has become like this is our responsibility. We must feel ashamed before God who has hoped that Christians who believe in Jesus would number more than ten billion to eventually convert humanity to Christianity. You must understand on your own that we are in the position to fulfill the wishes of God.</p>
<h3 align="center">The Heart of True Children Who Attend God</h3>
<p>Moreover, although God created all things in the universe, because they have not become perfect, He bears grief and bitterness in His heart, and He is not able to receive glory from them. Therefore, you must become the true children of God who have perfected their characters and can serve God.</p>
<p>Only after experiencing the sorrowful universal heart of God, will you become the shepherd and the flock of sheep who can bow down your heads before Him. If such a shepherd and flock of sheep emerge on the earth, centering on them, a new history based on the universal principles will unfold. Moreover, through them the movement of truth that represents the universal principles, the movement of life that represents the universal principles, and the movement of God&#8217;s love that represents the universal principles will take place.</p>
<p>Today, such movement of truth must emerge among our Korean people. When we go forward with such a heartistic standard, God will not ignore us. After leading this kind of life, you should strive hard to discover your own character and value through others.</p>
<p>Jesus and the Holy Spirit have walked such a path on behalf of humanity. Therefore, we must become true believers who live by following the example of Jesus and the Holy Spirit. Otherwise, you will bear evil fruits and become unable to sever the relationship with Satan or perfect our character, and God cannot elevate you as true children.</p>
<p>Ladies and Gentlemen, Jesus was a miserable person. He was more unfortunate than anyone else on this earth. Although he came to the earth as the prince of the Kingdom of Heaven, he suffered through the conspiracy and wounds inflicted by the unfaithful Jewish people; in the end, they hung him on the cross. When you reflect on this reality, your minds and bodies cannot be at ease. If you do not feel in your minds and bodies such sorrow of Jesus, then you cannot claim to believe in Jesus.</p>
<p>If you understand the mournful situation of God, then even if you shed tears for millions of years, it will not be enough. Moreover, if you feel the anguishing heart of God for losing Jesus, even if you shed tears for the rest of your life, you will not be able to reach the heart of God. This is how much we owe a debt of heart to God.</p>
<p>There are many shameless people who owe such a debt of heart and make mistakes but still think, &#8220;He will forgive because He is our father.&#8221; God will forgive and embrace even this kind of person, but, on the other hand, He will feel great pain. Thus, before you ask for forgiveness for your mistakes, you must feel shame and be awestricken.</p>
<p>If you truly feel the suffering heart of God, then God will forget His pain and receive you with tears. Moreover, although you are seeking the path of universal principles, the path of truth with hope, God is concerned about you. The blessing of God&#8217;s love and life will befall you. If you have been able to lead this kind of life, you should be concerned about yourself.</p>
<p>Ladies and gentlemen, do not hold grudges against your brothers and fellow citizens. Do not hold grudges against the world and God. If you want to blame someone, you should blame yourself. You must understand that before you blame others, before you blame God, you should blame yourself.</p>
<p>Jesus who possesses this kind of heart passed through the thirty years of life of tribulation and bore the cross on the hill of Golgotha. Even under such circumstances, he never held grudges against God. Without many words, he passed away with the heart concerned about his own responsibility to fulfill the will of God. This is why God resurrected Jesus. Such heart cannot be found anywhere in the satanic world. With the heart of highest realm that one cannot even dream of in the satanic world, Jesus became the center of this world.</p>
<p>The same thing holds true for you. During your life of faith, you must become better than anyone in the satanic world; it will not do to be on a par with them. When comparing the internal heart and the nature of heart, you must attain the high and complete heart that they cannot even dare to reach. Based on this condition, you can enter the realm of resurrection.</p>
<p>Even when crossing the pass of death, Jesus did not worry about himself but was concerned about his responsibility; in the same way, you must not desperately beseech to enter heaven, but step forward zealously to bear the universal responsibility that remains unfulfilled.</p>
<p>Because Jesus not only prayed for the people on the cross and had the determination to fulfill the responsibility even after his death, but also transcended death to show concern for God&#8217;s will, God could resurrect Jesus. Therefore, Satan could not dare to accuse the resurrected Jesus. When you become the person of character who has the same internal value as Jesus, Satan cannot accuse you.</p>
<h3 align="center">Citizens of the Kingdom of Heaven<br />
Are People Who Have<br />
Perfected Love, Life and Truth</h3>
<p>When you become such a person, then as the center of the universal truth appears, you will naturally become one with that center of truth. Moreover, just as light shines everywhere without making a distinction between a bright place and a dark place, the light of truth will also everywhere in the world.</p>
<p>You today might understand your personal responsibility and your responsibilities in the environment in which you live, but you are not aware of the responsibility on the society, nation and world level. Moreover, you do not even know that you have a mission on the world level.</p>
<p>Then, why is it that the people who have received a mission and responsibility from Heaven have failed to become one? They have tried to relate with the universal principles centering on themselves. Therefore, you should be able to harmonize with all people at the core by abiding by the laws of the universe with a meek and humble heart and by walking the path of the will, the path that will make God happy, while you are providing inspiration for yourself. If you can stand in the position where you can harmonize with, not only God, but also, all people and be equipped with the elements of original nature that can be absorbed by all people, then you will be able to liberate yourself from all concepts of the past and reach the truth.</p>
<p>Among the original natures of human beings, there are love, life and the truth of God. Therefore, at the appearance of the central person who has the internal and external forms of love, life and truth that correspond to your own love and truth, then you will automatically become united with that person. The reason is that human beings are created in reciprocity.</p>
<p>Only when you nurture minds and body that are following the eternal, unchanging and unique ideology will you be able to transcend yourself to forge a relationship with the universe. The reason is that you yourselves are also created so you can respond in reciprocity to the ideology of creation and become delighted.</p>
<p>So, when we realize the environment in which we can say, &#8220;thank you,&#8221; in other words, when we can realize the ideal world centering on ourselves, our joy will be heaven&#8217;s joy, heaven&#8217;s joy will be our joy, and for eternity the relationship of give and take with God will be established. Unless you become the center of such eternal and unchanging love, life and truth, as well as become the son of God to sing a song on behalf of the whole, there is no way you can materialize the ideology of the Kingdom of Heaven that can dominate the universe through you.</p>
<p>However, if you become that kind of person, what will happen as a result? First, you could relate with God from the same position that you have been relating with Jesus; second, you could love members from the position of Jesus and the Holy Spirit; third, in the same way that God has loved Jesus, you could love others and be loved by them.</p>
<p>Furthermore, when you become the person of truth, life and love, you can think and act on behalf of God. When you become such a person, just as there are above and below for any one individual, the universe, world, nation, society and family composed of above and below will automatically become connected centering on you.</p>
<p>When you become the central figure of this kind of truth, life and love, you could forgive even the people whom you thought were evil. You could feel that all the elderly people are like your parents. You could consider everyone of a similar age group as your brothers and all who are younger than you as your children. In other words, if you become the person who can act in place of the ideology of the universal Kingdom of Heaven to unfold the movement of love, life and truth, then the world of peace will be built on this earth. Therefore, your own parents are not the only parents, your own brothers are not your brothers, and your own children are not your children.</p>
<p>When you become the person of character who can regard all people as your parents, brothers and children, when you look upon the many people who are suffering in the world of death, you will not be able to relate with them without tears. When you look upon the brothers or people of a young age, you will feel a sense of responsibility to save them, and with tears you will make an effort to carry it out. If you truly become this kind of person, then the Kingdom of Heaven will be constructed on this earth centering on you.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>I worry that not all the content of the bitter 6,000 years and the internal situations of Father has been conveyed to them, so, Father, please embrace them in your bosom so that they can realize everything! If there is something that they do learn in their hearts, please allow them to be responsible for that until the end.</p>
<p>Father, while we feel the gravity of the responsibility of the person who is giving, at the same time we also realize that the responsibility of the person who is receiving is just as great, and we learn that the responsibility of the receiver is greater than that of the giver. Although giving takes place in one moment, we know that receiving must take place in consideration of eternity. Please allow us to be able to safeguard for eternity that which we have received from heaven at that one time. Please allow us to preserve for eternity the life that we received at that one time, and please allow us to be able to preserve for eternity the love that we received at that one time. We also wish and hope earnestly that you guide us to understand that only when we can do this can we become true children of God.</p>
<p>We have heard many words and we have received many graces of life and love in the past, but because our minds are empty in this hour, please fill our empty minds. We repent in this moment for having betrayed Heaven many times until now, so, Father, we humbly appeal for Your forgiveness.</p>
<p>This having been fulfilled, please let us become the children who can find the key of truth and the key of life and love, with which we can open the remaining door of the universal truth, life and love, and in doing so alleviate the internal sufferings of God, who is the center of the universe. Father, we earnestly request and desire that we can go forward until we reach the position of the true children in whom you can confide.</p>
<p>Hoping that you will separate all that remain, make up for all the inadequacies and guide us until the complete realization of the eternal Kingdom of Heaven, we prayed all the words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html" title="Permalink to WE ARE THE ONES WHO MUST POSSESS THE KEY TO THE KINGDOM OF HEAVEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US STEP BEYOND THIS WORLD THAT HAS BECOME A SACRIFICE</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/let-us-untie-the-knot.html" rel="next">LET US UNTIE THE KNOT <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,214 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WHAT KIND OF RESURRECTION ARE YOU TRYING TO ACCOMPLISH? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-794 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-794" class="post-794 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">WHAT KIND OF RESURRECTION ARE YOU TRYING TO ACCOMPLISH?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-04T05:18:07+01:00"> <a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html" rel="bookmark">June 4, 2018</a> </time></span><time class="updated" datetime="2018-06-04T05:21:28+01:00">June 4, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
March 6, 1957</h3>
<p><em>1 Corinthians 15:35-44 </em></p>
<p style="text-align: center;"><em><span class="text 1Cor-15-35"><sup class="versenum">35 </sup>But someone will ask, “How are the dead raised? With what kind of body will they come?”</span> <span id="en-NIV-28755" class="text 1Cor-15-36"><sup class="versenum">36 </sup>How foolish! What you sow does not come to life unless it dies.</span><span id="en-NIV-28756" class="text 1Cor-15-37"><sup class="versenum">37 </sup>When you sow, you do not plant the body that will be, but just a seed, perhaps of wheat or of something else.</span> <span id="en-NIV-28757" class="text 1Cor-15-38"><sup class="versenum">38 </sup>But God gives it a body as he has determined, and to each kind of seed he gives its own body.</span> <span id="en-NIV-28758" class="text 1Cor-15-39"><sup class="versenum">39 </sup>Not all flesh is the same: People have one kind of flesh, animals have another, birds another and fish another.</span><span id="en-NIV-28759" class="text 1Cor-15-40"><sup class="versenum">40 </sup>There are also heavenly bodies and there are earthly bodies; but the splendor of the heavenly bodies is one kind, and the splendor of the earthly bodies is another.</span><span id="en-NIV-28760" class="text 1Cor-15-41"><sup class="versenum">41 </sup>The sun has one kind of splendor, the moon another and the stars another; and star differs from star in splendor.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28761" class="text 1Cor-15-42"><sup class="versenum">42 </sup>So will it be with the resurrection of the dead. The body that is sown is perishable, it is raised imperishable;</span> <span id="en-NIV-28762" class="text 1Cor-15-43"><sup class="versenum">43 </sup>it is sown in dishonor, it is raised in glory; it is sown in weakness, it is raised in power;</span> <span id="en-NIV-28763" class="text 1Cor-15-44"><sup class="versenum">44 </sup>it is sown a natural body, it is raised a spiritual body.</span></em></p>
<p style="text-align: center;"><em><span class="text 1Cor-15-44">If there is a natural body, there is also a spiritual body.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>My Father! I am aware that, although in the beginning the Father set a heart of goodness and created all things and existed as the immutable figure and standard of essential quality and true nature, humankind could not become the object of goodness of the Father. On that account, humankind could not attain the Father&#8217;s ideal. Humankind came to be far away from the standard of good conscience. I am also aware that this was an object of lamentation by heaven and all created things.</p>
<p>Father, since we are left with the providentially fated path and mission that we have to seek to the end, even at the risk of our lives, please urge us on to be able to walk this path with Your great power of authority. Since the element of evil that invades through the body is obstructing the way of the mind that aims at goodness, Father, please guide us not to lose the battle in this fight as our minds, that aim at goodness, receive punishment from our bodies.</p>
<p>Father, I sincerely wish and desire that You will grab hold of us so that we may be in harmony as an immutable being, led in our minds only by the power of goodness and love. We pray that we may be able to live eternally serving and attending the Father, resembling the hyung sang of the Father as an inseparable, eternal and substantial being.</p>
<p>While carrying out the fight against sin through the long course of history, we have become covered with scars. The root of sin is embedded in our bones and flesh. Although we have the responsibility to clear this up, we are insufficient. Therefore, Father who has the authority of life, Father who has the authority of power, and Father who has the authority of creation, please extend again the hands of power to our minds and bodies, although we are unworthy. Get rid of all the elements of evil that are captivated by the shadow of death. I sincerely wish and desire that You will manifest in this hour heaven&#8217;s direct miracle of life that can stir up the heart of victory upon receiving impetus from that one center.</p>
<p>I sincerely wish and desire that You will give rise to the power of resurrection in &#8220;my&#8221; own self. Allow us to become Your sons and daughters who can bring about the miracle of resurrection in place of that one center in the circumstances we are in.</p>
<p>Please lead us not to lament about being placed in an insufficient place. By reaping victory in the fight against enemy satans who are blocking this path, allow us to have the qualification to be the Father&#8217;s true children. Beloved Father, I pray from the bottom of my heart that You will allow us to take the weapon that the heavenly soldiers used to keep in their position and to fight and win against billions of satans.</p>
<p>Father, since a small number of people have knelt down and prostrated themselves before the Father in this hour to tell truthfully of their being insufficient on their own, if there is something inappropriate in us, please grant us the heart of repentance. Give us the heart of wisdom that can comprehend. Allow us to have the eyes and heart that can distinguish between good and evil. Then I sincerely wish and desire that You will allow the Father&#8217;s direct work to be unfolded through us in this hour so that we can rightly look and comprehend.</p>
<p>Since this hour is one in which we have to offer a true gift before the Father, even though there is nothing we can offer, please allow us to offer in good condition the shimjung of the original nature at least. Please remove the element of evil from the body imbued with sin and allow us, by frankly revealing ourselves before the Father, to move according to the Father&#8217;s command and to be the minds and bodies suitable for the will that the Father desires. This, beloved Father, I sincerely wish for and desire.</p>
<p>Please uniformly bestow the grace that the Father promised upon the numerous sons and daughters who are building a lonely altar, being scattered in every direction even now. Faced with the last days, please allow the work of inspiration, the work of reform, the work of power that can accomplish Your prophesied will to be manifested everywhere Your children stay. Since I am aware that there will be many sons and daughters who are building an altar of prayer in solitude, seeking a true altar, please give a command and allow them to gather in one place so that they can face the will You have permitted. Please lead us to be the children who are not too insufficient to step forward, holding the flag of victory of the Father eternally. This, Father, I sincerely wish for and desire.</p>
<p>Please let the work of the Father&#8217;s glorious sacred spirit unfold in this hour wherever a gathering takes place at the altar of heaven to worship. Please lead them to be altars that can bear the mission with which You entrusted this nation in the last days by manifesting the work of inspiration and the work of repentance.</p>
<p>Soliciting that You will govern the remaining hour according to Your will, I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon that I will deliver to you today <em>is &#8220;What Kind of Resurrection Are You Trying to Achieve?&#8221;</em> Because Adam and Eve fell, we human beings came to be far from God&#8217;s love. At any rate, Adam and Eve before the fall did not know that once they fell, the God who used to face them with joy would turn into a God of fear, and the God of the ideal would turn into a God of judgment.</p>
<h3 align="center">The Ideal God</h3>
<p>To us, the descendants of the fall, the time when we reciprocate with God, as the fearful God as well as the ideal God, will surely come. The reason that God has unfolded providential history in repetition was to stand as the ideal God before humankind by having them become suited to the providence. However, to the people in the realm of Satan, God will appear as a judgmental and fearful God.</p>
<p>Therefore, in order for us to attend God as the ideal God, we have to experience God&#8217;s sorrow derived from the fall of humankind, be in the same sorrowful situation as God, and form a connection to be able to live together with God. Otherwise, God cannot appear to us as the ideal God nor as the hero of the ideal of creation.</p>
<p>While moving forward on the course where we attend the ideal God, we have to go through a course of struggle with satans, who are obstructing this path. This is the path of restoration through indemnity that fallen humankind must inevitably take.</p>
<p>In other words, if I live looking up at an ideal, I must walk the path of struggle that can rescue all humankind of the world from the horror of judgment or I will not be able to find God&#8217;s ideal. You must understand this.</p>
<p>How is resurrection accomplished? It is not accomplished in accordance with natural law. Instead, the work of resurrection comes to be achieved on the foundation that I have overcome by fighting fear and annihilating the influence of darkness. You must consider that only the resurrected soul who has achieved a triumph over the tribulation of darkness can move up to the seat where he can relate to God&#8217;s ideal.</p>
<p>God has been working for 6,000 years to fulfill that one will. Therefore, we must equip ourselves with the real nature of truth as the substantial beings of God&#8217;s hope who are living on this earth. We must become unified with the resurrected body that prevailed over evil in battle. We will have to become one with God to attain God&#8217;s ideal. When that happens, we will feel, not two, but one love between God and our mind and will be able to accomplish God&#8217;s providence for the restoration of the ideal of creation. Otherwise, God&#8217;s providence, which has been unfolding for 6,000 years, will be left unfinished. Therefore, we are destined to go through the course of struggle.</p>
<p>Because the power of Satan cannot be destroyed by the strength of fallen human beings alone during a struggle like this, God sent Jesus Christ as the hero who can destroy Satan. Jesus Christ came to this earth and lived a short life span of thirty or so years. He did not see the day of peace and happiness. In other words, as we trace his footprints, we come to realize that they are studded with traces of blood and tears shed in the battle with Satan.</p>
<p>We have to review in our lives today the sorrowful family life of Jesus Christ. We must become faithful believers who are ardently praying before heaven, unfolding a battle to repulse the darkness of sin, sacrificing ourselves.</p>
<h3 align="center">The Purpose of Jesus&#8217;<br />
Walking the Path of Tribulation</h3>
<p>The reason Jesus came to this earth and walked the path of tribulation for a lifetime of thirty or so years was to have humankind, asleep in Satan&#8217;s bosom since the fall, totally awaken, and to lead them into a free environment over which God has dominion. By restoring them into true human beings, the original human beings who did not fall, are to establish the foundation of happiness and glory. Consequently, the sensations Jesus felt through all his sensory organs in his life, the shock and impulses he received, were not limited to that one day nor to one time in the realm of a restricted hour.</p>
<p>Although his gaze and gait were in the realm of one period at the time, his purpose and ideal were for the sake of making a connection with the love in the bosom of the eternal God. He lived with a sorrowful shimjung to become one with the doleful shimjung of God. You must understand this.</p>
<p>You, too, must come to feel that because Jesus lived experiencing a heart fraught with God&#8217;s love and ideal, his knowledge and sensations never deviated from God&#8217;s love and ideal. Therefore, the reason that he cultivated the path of struggle during his life, centered on God&#8217;s love and harboring God&#8217;s ideal, was to seek a figure who was like an original human being who is not fallen, having resurrected both the spirit and the body, and having gone through all the restoration course of formation, growth and completion. Jesus fought single- handedly against Satan&#8217;s influence.</p>
<p>As the hero of the whole cosmos who could relate to God&#8217;s cosmic ideal like this and who had God&#8217;s love with him personally, Jesus carried on fighting, sacrificing himself to establish a standard he could offer to God after resurrecting the whole. However, because the Israelite people did not believe in him, Jesus died unable to attain God&#8217;s ideal, which was to resurrect humankind, both in spirit and in body. You must understand this. The life of Jesus, from birth until the resurrection three days after he died on the cross, was to show what is to happen during our lives today and to show that we must one day go through the last times in the cosmic historical course. Consequently, we too will have to go the path of the cross like Jesus. What is more, we must fight the way Jesus fought Satan. You must understand that if we ourselves do not inherit the ideal and love for which Jesus wished, we will not be able to repulse Satan nor will we be able to attain God&#8217;s ideal that was to be celebrated through Jesus.</p>
<p>After having attained the substantiated body of the ideal resurrected into spirit and flesh and becoming the body of God, Jesus was to carry out on the earth the cosmic work of resurrection that can give a word of command to humankind. Since he died on the cross, he has been working as the hero who attained spiritual resurrection only. This is why he is unfolding the work of accomplishing this matter through the Holy Spirit for the sake of realizing the purpose of spiritual resurrection on the earth.</p>
<p>Therefore, in order for us to go over the standard of cosmic resurrection that Jesus wishes for today, we must unite with the Holy Spirit, who carries out God&#8217;s providence on the earth in place of him, to form an eternal relation.</p>
<p>Moreover, to find and establish again the lost ideal of resurrection, we must unite with the Holy Spirit and go forward, carrying out the battle Jesus fought. Otherwise, we cannot go as far as the seat where Jesus, who crossed the hill of the cross and resurrected, received the grace of resurrection from God.</p>
<p>When Jesus comes to this earth again, he should not repeat that path of dying on the cross 2,000 years ago. You must understand that the man who is to come again is the man who is to move forward to the seat where, by prevailing over Satan with the glory of resurrection and the authority of heaven, he is admired by the billion faithful believers.</p>
<p>Since the Holy Spirit is left with the mission to fight Satan after the resurrection of Jesus, after taking over that work of Jesus, battling with satans, she is unfolding the work the second time with humankind standing in the same situation as Jesus. Furthermore, she has until today been unfolding the work of establishing the worldwide Christian model through Christian believers.</p>
<p>When such work is accomplished, just as Jesus Christ prevailed over Satan while bearing the cross, the faithful believers and the Holy Spirit will be united. The Holy Spirit and the church will become unified and come to prevail over Satan.</p>
<h3 align="center">The Responsibility of Faithful Believers</h3>
<p>We must not only bear resemblance to Jesus, who prevailed over Satan by offering himself as a living sacrifice. We must also become the true Christians who can represent Jesus, who had to prevail by rallying the nation and the world as a living body. Otherwise, we cannot reap the victory while living, after indemnifying the sin that we made Jesus die on the cross. Having perceived ourselves as insufficient and lamentable, we who are going the path of resurrection should be able to advise ourselves by asking ourselves, Can I myself represent Jesus, who fought for the sake of humankind&#8217;s resurrection by being crucified, and the world-level cross of faithful believers who came forward fighting devotedly?</p>
<p>As we come to appear in God&#8217;s presence in the last days and God asks, &#8220;What kind of life did you lead for the sake of the glory of the resurrection?&#8221; We should be able to confidently answer this question without hesitation. If not, we will become selves who have nothing to do with God&#8217;s ideal. When we come to pass through the difficult path of the cross, there will not be a person among us who can say with confidence that he will not repeat the mistake of the twelve disciples who were following Jesus, looking after their own bodies in fear of going the path of the cross.</p>
<p>We, who are in the course of history that is also the end of a century, must soberly analyze how properly we have lived for our own resurrection. We will have to ask ourselves how much we have prepared ourselves, feeling God&#8217;s love, to attain God&#8217;s will and ideal. Unless we ourselves are able to have the confidence to gallantly plow through that path of the cross that Jesus Christ and the Holy Spirit have carried out in the fight to dissolve the grievous lamentation of 6,000 years, we cannot attain the will. If we are unable to control our bodies by ourselves, if our bodies cannot control the surroundings, if our minds are not centered as figures of immutability, we cannot attain the will. We must be equipped in both spirit and flesh to beat off the fear coming from Satan or else we cannot attain the will for which Jesus Christ has labored for 2,000 years, sending the Holy Spirit after crossing the hill of the cross after a lifetime of thirty years or so. We must heed this.</p>
<p>Now in the last days, what kind of attitude do we, who must surmount the gate of cosmic fear, need? You have to make the following resolution before heaven.</p>
<p>First, you must become those who can represent the life of Jesus Christ. If you look at Jesus&#8217; disposition, he never regretted his life, even up to the fateful moment. He tried to accomplish spiritual resurrection, although he had gone ahead through a life course of thirty or so years to accomplish God&#8217;s one will only, from birth until the time of his death.</p>
<p>Even up to that fateful moment, Jesus neither felt sorry over dying nor reproachful of himself. Rather, he was a man who had an awe- stricken heart before God, even in death. Even while dying for the sake of heaven&#8217;s will, after giving up his own life, he had that shimjung to forget himself with the attitude, I will proudly go the victorious road of death for the sake of the Father&#8217;s will. God came to take the responsibility for that death on his behalf.</p>
<p>The important thing that we must be aware of when trying to pass the gate of judgment in the last days, after receiving the aid of the Holy Spirit substituting for the sung sang of Christ, is that we cannot help walking that course in his place, that course that Jesus Christ prevailed over in walking the path of the cross.</p>
<p>While carrying out the fight with Satan, standing before God&#8217;s will throughout his lifetime of thirty years or so, Jesus never insisted upon himself in any way before heaven. Even when he had something to be happy about, he did not keep it for himself alone. You must understand that he lived, even when he gained a victory, without feeling it was only his own. He never felt that he alone had fulfilled the responsibility to carry out that work.</p>
<p>Jesus devoted his whole life until the moment of his crucifixion to God. What is more, being concerned about the mission given by God being left unfulfilled on earth, he kept the determination to fulfill the Father&#8217;s will in his heart until the moment he died. You must understand that Jesus prayed for the sake of his enemies, feeling responsible for even their salvation.</p>
<h3 align="center">Glorious Resurrection,<br />
Shameful Resurrection, Death-like Resurrection</h3>
<p>Even if we may have received the grace of resurrection as we lead a religious life, we have to have a shimjung like that of Jesus, who did not know how to enjoy anything centering only on himself. You must be aware of the numerous miracles Jesus performed.</p>
<p>What kind of person should we appear as before the Lord, who basks in the glory of the resurrection after going through the path of toil? There are three types here. First, there will be the person who will render devoted service and put forth all of their heart and soul in the way Jesus atoned for the sins of all humankind, walking the road of death without complaint. Even after all this, this person will say, &#8220;I am too unworthy to be able to dare stand before the Lord. I deserve to be dead ten million times over.&#8221; In other words, this is a person who has a humble mind. Even after fighting while tired and in the process of falling, by having undertaken the sin that is left on this earth, shedding tears and showing utmost integrity in his service, he says before God, &#8220;I myself am a person who is too unworthy to be able to dare stand before You.&#8221;</p>
<p>If there happens to be a person who, when God looks at him, does not want the glory of Heaven, leaving the matter entirely to God&#8217;s discretion, God will be happy. When He sees a person with a heart that is too awed before God to raise his head and with a shimjung that mind and body cannot move, God will change His sad state of mind into a happy state of mind. Even if there is any insufficiency, He would rather comfort that person than dress him down about it.</p>
<p>When we bow our heads before heaven with concerned minds, admitting our own insufficiency even when we have fulfilled the responsibility to step forward before Heaven, God will bestow glory upon us. By becoming a living sacrifice that moves forth as far as the point of dying, having rendered devoted service before heaven, God will bestow glory upon those concerned and sad minds. In other words, only such a man will be able to receive glorious resurrection.</p>
<p>Second, there will be a person who appears before God with confidence, saying, &#8220;I have given devoted service to heaven, and I have finished walking the path to be walked for heaven&#8217;s sake. This will be enough to receive the Father&#8217;s sanctity.&#8221;</p>
<p>Originally, humankind was to feel unworthy as he went further and further on the path seeking heaven. What is more, only when he feels unworthy and imperfect will he find a way to supplement his own insufficiency.</p>
<p>On this earth there may be a person who will appear before the Father with confidence and uplifted head, saying, &#8220;I came before the Father after having followed in such and such way the path that Jesus walked.&#8221; He will tell of how at one point he set up a condition that he can boast of before heaven, and that he once received recognition before heaven by working in earnest for the sake of heaven. The path that this type of person walked is different from the path that Jesus Christ walked. Therefore, he will not be able to completely cross the gate of the cross when in the other world.</p>
<p>Third, there will be those people who cannot stand before heaven, who cannot stand before men, and who are in the position of Heaven&#8217;s enemy. They cannot stand before the billion faithful believers and the Heavenly soldiers and angels in the other world. They are the people who have nothing to do with Jesus&#8217; will. They, too, will receive a type of resurrection after death.</p>
<p>The person who belongs to the first type will receive the glorious resurrection. The person belonging to the second type will receive shameful resurrection. The third type of person will receive a death-like resurrection. In the final days, there will be these three types of resurrection.</p>
<p>Which path of resurrection are you walking today? You must analyze and see for yourselves. Consequently, if you find yourselves left with conditions to clear up, you must then resolutely liquefy them. Moreover, you must walk the course of sacrifice with heads bowed, bearing the thought that we ourselves are too inadequate to dare to stand before the Father. We should have the shimjung that feels more and more strongly about our being inadequate as we go further. Otherwise, you will not be able to enjoy eternal life, blessing and happiness after receiving all of God&#8217;s created things in the garden of the ideal that is centering on God&#8217;s eternal love.</p>
<p>When a person of the first type comes to stand before the Lord, his heart might feel oppressed with sorrow, but it will in the end become a heart filled with glory and hope. The person of the second type, who faces the Lord with the heart of hope and glory, will eventually be grief-stricken. The person of the third type will come to receive a resurrection where he cannot express unhappiness when faced with Jesus, where he cannot desire to form a connection with heaven, and where he has nothing to do with heaven eternally.</p>
<h3 align="center">The Attitude of Faithful Believers<br />
Who Can Participate<br />
in the Glorious Resurrection</h3>
<p>What then can you do after you have found out which type of resurrection you belong to? What kind of attitude should we assume? A happy face or a grieving face? Even when you come to attend the Lord whom you have wished and longed for during the 2,000 years by becoming people of the first type, you should become the faithful believers who know how to shed tears of gratitude with awe-stricken hearts. You should not become those who have to stand in a sorrowful situation and bow before the Lord by becoming the people of the second type.</p>
<p>You also should not come to stand in a position where you can never admire Jesus and God, even in dreams, by becoming people of the third type. To this type of person, even if he has a hope, that hope will originate and end in himself. Even if he takes pain in the hope of attaining a better resurrection, he will not be able to expect anything better.</p>
<p>As we think about this, we who believe in the Christian gospel today, we who must accomplish the will of resurrection should be able to humbly bow and bear hearts that are extremely awe-stricken, even if we come to participate in the glorious seat of the Lord when we go to the other world.</p>
<p>Keeping such a heart, and with the Lord&#8217;s compassion and the Father&#8217;s love, we must fight the enemies and win victory to attain the will of God, who wishes for the glory of Christ&#8217;s resurrection. If we become unable to fulfill this matter on this earth, we will become destined to redeem it even after we go to the other world.</p>
<p>Therefore, as we lead a life of faith today, we must forget ourselves completely and be able to feel inadequate even when becoming sacrifices. We must be able to reproach ourselves, even when in the seat of death. We should understand that only when we become men of the original nature who are not boasting about anything before heaven will we be able to attain heaven&#8217;s eternal ideal of resurrection.</p>
<p>The people who live with a mind like this will become concerned when they receive grace that they might cause sorrow and embarrassment before heaven while attempting to establish themselves. What is more, if there is a person who feels more inadequate in proportion to the increase of the amount of grace received, and a person who feels insufficient more profoundly ashamed of himself in proportion to the preciousness of the grace he received, even Satan cannot put him to the test.</p>
<p>Unless you seek for that day when you can express gratitude before the Father, after fully experiencing heaven&#8217;s ideal with minds and bodies centering on heaven&#8217;s love, you cannot enjoy eternal happiness. You cannot experience glorious resurrection centering on God&#8217;s ideal and God&#8217;s love after fulfilling the ideal for which God wishes. You must comprehend this.</p>
<p>Therefore, as the days go by, you must feel insufficient. You must feel deep in your marrow that God unfolds the work of resurrection, the work of re-creation centering on people like this. Only then can you go to the seat of glory that no one can go to at the time the Lord comes again. I wish that you will understand this and lead a life that reveals the glory of Christ&#8217;s resurrection, becoming a sacrifice to testify to the true light in the dark world, with new resolution and determination from this time forward.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html" title="Permalink to WHAT KIND OF RESURRECTION ARE YOU TRYING TO ACCOMPLISH?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BE THE HARVEST OF GOODNESS HEAVEN DESIRES</a></div>
<div class="nav-next"><a href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html" rel="next">LET US STEP BEYOND THIS WORLD THAT HAS BECOME A SACRIFICE <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,229 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>GOD&#8217;S POWER IS REVEALED WHERE ONE HEART AND ONE WILL HAVE BEEN REALIZED &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-884 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-884" class="post-884 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">GOD&#8217;S POWER IS REVEALED WHERE ONE HEART AND ONE WILL HAVE BEEN REALIZED</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:31:58+01:00"> <a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:32:07+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">November 10, 1957 (Sunday Evening)<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Acts 4:27-5:11</em></p>
<p class="first-line-none top-05" style="text-align: center;"><em><span id="en-NIV-27050" class="text Acts-4-27"><sup class="versenum">27 </sup>Indeed Herod and Pontius Pilate met together with the Gentiles and the people of Israel in this city to conspire against your holy servant Jesus, whom you anointed.</span> <span id="en-NIV-27051" class="text Acts-4-28"><sup class="versenum">28 </sup>They did what your power and will had decided beforehand should happen.</span> <span id="en-NIV-27052" class="text Acts-4-29"><sup class="versenum">29 </sup>Now, Lord, consider their threats and enable your servants to speak your word with great boldness.</span> <span id="en-NIV-27053" class="text Acts-4-30"><sup class="versenum">30 </sup>Stretch out your hand to heal and perform signs and wonders through the name of your holy servant Jesus.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27054" class="text Acts-4-31"><sup class="versenum">31 </sup>After they prayed, the place where they were meeting was shaken. And they were all filled with the Holy Spirit and spoke the word of God boldly.</span></em></p>
<p style="text-align: center;"><em><span class="text Acts-4-32"><sup class="versenum">32 </sup>All the believers were one in heart and mind. No one claimed that any of their possessions was their own, but they shared everything they had.</span> <span id="en-NIV-27056" class="text Acts-4-33"><sup class="versenum">33 </sup>With great power the apostles continued to testify to the resurrection of the Lord Jesus. And Gods grace was so powerfully at work in them all</span> <span id="en-NIV-27057" class="text Acts-4-34"><sup class="versenum">34 </sup>that there were no needy persons among them. For from time to time those who owned land or houses sold them, brought the money from the sales</span> <span id="en-NIV-27058" class="text Acts-4-35"><sup class="versenum">35 </sup>and put it at the apostles feet, and it was distributed to anyone who had need.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27059" class="text Acts-4-36"><sup class="versenum">36 </sup>Joseph, a Levite from Cyprus, whom the apostles called Barnabas (which means “son of encouragement”),</span> <span id="en-NIV-27060" class="text Acts-4-37"><sup class="versenum">37 </sup>sold a field he owned and brought the money and put it at the apostles feet.</span></em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text Acts-5-1"><span class="chapternum">5 </span>Now a man named Ananias, together with his wife Sapphira, also sold a piece of property.</span> <span id="en-NIV-27062" class="text Acts-5-2"><sup class="versenum">2 </sup>With his wifes full knowledge he kept back part of the money for himself, but brought the rest and put it at the apostles feet.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27063" class="text Acts-5-3"><sup class="versenum">3 </sup>Then Peter said, “Ananias, how is it that Satan has so filled your heart that you have lied to the Holy Spirit and have kept for yourself some of the money you received for the land?</span> <span id="en-NIV-27064" class="text Acts-5-4"><sup class="versenum">4 </sup>Didnt it belong to you before it was sold? And after it was sold, wasnt the money at your disposal? What made you think of doing such a thing? You have not lied just to human beings but to God.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27065" class="text Acts-5-5"><sup class="versenum">5 </sup>When Ananias heard this, he fell down and died. And great fear seized all who heard what had happened.</span> <span id="en-NIV-27066" class="text Acts-5-6"><sup class="versenum">6 </sup>Then some young men came forward, wrapped up his body, and carried him out and buried him.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27067" class="text Acts-5-7"><sup class="versenum">7 </sup>About three hours later his wife came in, not knowing what had happened.</span><span id="en-NIV-27068" class="text Acts-5-8"><sup class="versenum">8 </sup>Peter asked her, “Tell me, is this the price you and Ananias got for the land?”</span></em></p>
<p style="text-align: center;"><em><span class="text Acts-5-8">“Yes,” she said, “that is the price.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27069" class="text Acts-5-9"><sup class="versenum">9 </sup>Peter said to her, “How could you conspire to test the Spirit of the Lord? Listen! The feet of the men who buried your husband are at the door, and they will carry you out also.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-27070" class="text Acts-5-10"><sup class="versenum">10 </sup>At that moment she fell down at his feet and died. Then the young men came in and, finding her dead, carried her out and buried her beside her husband.</span> <span id="en-NIV-27071" class="text Acts-5-11"><sup class="versenum">11 </sup>Great fear seized the whole church and all who heard about these events.</span></em></p>
<h3 style="text-align: center;" align="center">Prayer</h3>
<blockquote><p>Father of love, in the present state, the last fight has come before us. The Will of the Father, which was prophesied to the Israelites, must be accomplished on the earth. Therefore, we know that the sacred spirit must appear again.</p>
<p>This is a new era when we must set up the unprecedented historical offering before the whole of Heaven and earth. We feel that the Father&#8217;s hand of infinite exertion must be with us. Father, please trust in us, raise us up, call upon us and direct us. We earnestly pray for You to work to give us the power and ability of Heaven and allow us to materialize Your desired will on the earth.</p>
<p>The shouts of the 120 followers who became one in the upper room after losing the Lord produced new works of recreation in Heaven and on earth. In the same way, please let us also become one in our minds and bodies today to manifest the same phenomena on behalf of the will of the Father.</p>
<p>In doing so, Father, we hope that You will allow Heaven to shake and the earth to tremble so that the glory of victorious Heaven can be manifested on the earth. Just as the numerous prophets and saints have offered all they had for the sake of the one will of the Father, please, Father of love, let us also be offered before the will of the Father as the live offering who complies with a pure heart.</p>
<p>We have entrusted all of ourselves to the Father. Father, we sincerely wish for You to appear as the will of joy; that You will not prolong the promised time and chance, but will quickly raise us up to liberate the heart of grief bound for 6,000 years. Sincerely beseeching for You to allow each of us gathered here to have a new determination in our hearts and gradually to obtain the qualifications of children of the Father, we pray all this in the name of the Lord. Amen.</p></blockquote>
<p>Today I will speak on the topic <em>&#8220;God&#8217;s Power is Revealed Where One Heart and One Will Have Been Realized.&#8221;</em></p>
<h3 align="center">The Sorrow Of The Disciples Who Lost Their Leader</h3>
<p>After the resurrection, Jesus stayed on the earth for forty days. Before he ascended, he made the promise that he would send the Holy Spirit, the protector and giver of blessing. The disciples who followed Jesus looked at the glorious appearance of the resurrected Jesus and rejoiced, thinking that the promised will of God was being accomplished, but Jesus ascended without telling them clearly when he would return.</p>
<p>How must the disciples have felt at that time? They must have been overwhelmed by a strong sense of enmity toward the faithless Israelites and the sect of Judaism who had nailed their beloved Jesus to the cross. They must have made the determination that for the sake of the resurrected Lord and the will of God, even if their bodies were to become powder and their bones were to melt, they would follow the resurrected Lord for the sake of the ultimate victory.</p>
<p>With this kind of determination and resolution to make a breakthrough on the path even if they were to die or go to the cross, with earnest hearts that had yearned for Heaven since the time the Lord had passed away, they probably encouraged each other whenever they met. Because of this, Jesus promised that he would send the Holy Spirit to his disciples.</p>
<p>After that, with God working in the background, the 120 followers who had gathered in the upper room had an experience that exceeded their imaginations. They then could totally embrace the will of the dispensation. They could enter the state in which they could feel the internal heart Jesus had felt during the thirty years of personal life and three years of public life.</p>
<p>Accordingly, they were overcome with guilt for having betrayed Jesus. They came to realize that the Jesus who came to the earth was the only begotten son of Heaven, whom they should not have treated the way they did. Furthermore, the more clearly they realized that Jesus came to this earth as the Savior of all people, the more they made a firm resolution and determination in their hearts. They were then able to move toward the one purpose with one heart, centering on one will: brothers, apostles and believers all giving inspiration to one another. By exchanging their hearts and becoming one for the sake of the one will they were pursuing, although the 120 followers were all different individuals, they all headed in one direction based on the will of God. All their actions and movements were manifested in the same manner.</p>
<p>This kind of phenomenon took place among the apostles. Their hearts were burning with fire. Toward what direction did they shout? They began to shout at the Israelites, who had opposed Jesus. Not only that, they shouted to the countless numbers of humanity who did not believe in Jesus. They demonstrated that no one could change their hearts, united as they were with the new determination, resolution and pledge.</p>
<p>Similarly, you have to understand that they emerged as people who made a resolute pledge and determination before Heaven. Not only that, when they came with an unshakable center in spite of the severity of the persecution in their environment, Heaven elevated each of them as a representative of Jesus and passed the mission to them.</p>
<p>More than one person had this kind of mind-set. The more sorrow they felt for having lost the Lord, the more they were overwhelmed. The stronger the will of God moved, the more they felt enmity toward the people who had betrayed Heaven. When they came before Heaven with the determination to prevail over those betrayers and actualize the will of Heaven at once, what was manifested was not human power; it was the power of God. We have to understand that here the direct works of God&#8217;s powers, which are beyond human imagination, revealed themselves before the ignorant, faithless and rebellious people.</p>
<h3 align="center">The 120 Followers Who Manifested The Powers Of God By Becoming One</h3>
<p>If the 120 followers had not met in the upper room and had not prayed as one heart with faith in the promise that Jesus would send the Holy Spirit, Christianity would not have become a world religion today. At that time, the 120 followers who prostrated themselves and prayed did not have any fear. They forgot all about their own dignity, honor and families. When the 120 followers prayed with one heart, believing only in the promise of the Lord that he would appear at a certain time and place, they could clear away the realm of death that had blocked Heaven from earth for 4,000 years. The Spirit then descended upon the earth.</p>
<p>This event was not a coincidence. By virtue of this, a new path to humankind once again was pioneered. Who caused this to take place? This took place because of the yearning hearts of the 120 followers, who focused all of their attention solely on the one will of the Father with a uniform heart, a uniformly sincere will, and a uniform spirit of offering. You have to understand that due to this, the dispensational works of the Holy Spirit, which had not been able to be carried out, finally made a new historic start.</p>
<p>The 120 followers were gripped by a sincere and desperate heart toward Heaven when they experienced the work of the Holy Spirit, which shook Heaven and earth and divided into fire-like tongues. They came to possess the mind-set that they would be ready to die no matter what kind of enemies they faced. As the power of Heaven was added to this, this power could not be undermined by anyone. You must understand that because they became the foundations of this power, the words they spoke had the power to make Heaven and earth tremble.</p>
<p>What must be done to accomplish the will of God today? First, we must possess the heart that can become one with God. After possessing the heart that can become one with God, we must then possess the heart that can become one with our brothers. You must never forget that in the Last Days this will become the best foundation for the fulfillment of the will of God.</p>
<p>If there are 1,000 or 10,000 people on the earth, every one of them has a different will. However, because the will of God is one, we must trample upon our own will and eliminate all the conditions that we present to ourselves. We must follow the will of the Father and His conditions, instead. Although our wills and minds are different and although our positions and environments are different, unless we become one with the will of the Father, the will of God will never be realized.</p>
<p>To what extent then did the apostles of that time unite? They united to the point where they supplied each other&#8217;s needs. They did not distinguish what belonged to whom. Centering on the will of God, with the mind-set that what belonged to one belonged to the other, two of them became one, and ten of them became one. Therefore, when someone encountered some difficulty, they did not let that become the ordeal of that one individual. They considered it their own ordeal.</p>
<p>When they felt the difficulties of their brothers as their own so that it penetrated deeply into their own bones and flesh, even Heaven was touched. In other words, you must keep in mind that you also must forget yourselves like this and possess the heart which can offer all you have for the sake of the will of the Father, no matter how much sacrifice it will entail. You must possess the heart that can feel the difficulties of your brothers as your own.</p>
<p>For you who are living on the earth today, material things are your enemies. If you are imprisoned by the self-centered concept that the money in your pocket is your own and that only you can use that money for the sake of your own will, then you have not yet become one centered on the will of Father.</p>
<p>The anguish and distress of Heaven in coping with this exceed the degree of anguish and sorrow you can fathom. You must experience and comprehend the fact that it is distress and a desperate situation such that you cannot even imagine it.</p>
<h3 align="center">The Person To Whom The Blessing Of Heaven Can Be Entrusted</h3>
<p>Now you must learn from the movement of the early church, in which all the believers followed centering on the apostles. Otherwise, there is no way to put you in charge of the blessing of Heaven that is granted on the world level to you, the believers of the Last Days. You must take responsibility for the barriers blocking the heavenly principles and perform the judgment of God on His behalf. You must keep in mind that the time has come when you must make a self-reflection about whether you have abused the will of Heaven.</p>
<p>It is the work of Satan that appears to prevent this kind of movement of the apostles, their unity with the one heart that includes the whole body without discriminating against anyone. It is the work of Satan that tries to divide the environment in which they can become one, believing in everything and based on inseparable relationships.</p>
<p>Before these united apostles, Ananias and Sapphira appeared. They were envious of the apostles and believers. However, it was an envious heart centering on the world. We must keep this in mind today.</p>
<p>The amazing grace of Heaven appears as glorious grace. Everyone wants it to appear before him. Ananias and Sapphira enviously watched the execution of the unimaginable and amazing works of Peter, who brought thousands to repentance when he spoke in tongues or healed the sick. When they took on the appearance of an apostle, based on a humanistic desire to enjoy the same kind of position, God could not forgive them. You have to take special note of this point. You have to understand that concealing a part of what he sold and offering only a part of it, pretending that he had offered everything, is the cunning trickery of Satan, who is trying to destroy the will of God.</p>
<p>If one is a faithful believer who can reveal one&#8217;s honest heart and be absorbed by the will of Heaven, then it is no problem to make an offering. Ananias and Sapphira came forth based on their own concern and selfish desires and came before the apostles who had forgotten everything and had offered everything with earnest hearts. The apostles had prayed, &#8220;We offer all of our hearts, so dead or alive, please use us according to Your joyful will.&#8221; This condition of Ananias and Sapphira became the strongest condition to block the path of Heaven right after the ascension of Jesus, a moment when the early church should have been laying a new foundation.</p>
<p>You must in this moment realize that when the heart of Ananias was exposed by the Holy Spirit, Peter said, &#8220;Satan, Heaven cannot forgive what dwells inside your heart. I cannot forgive you for letting , Satan invade you,&#8221; and judged him in place of the words of the Holy Spirit.</p>
<p>What kind of mind-set then should we have? Those who are trying to relate with the will of Heaven by setting some self-centered condition will be in the same position as Ananias and Sapphira. What does this foretell? You have to understand that this foretells the fact that, at the time of judgment, those who cannot become one with a group that has become united will not be able to avoid death.</p>
<p>The 120 followers who had gathered in the upper room abandoned everything: Forgot their own dignity, honor and social environment &#8211; Only for the sake of the ascended Lord. They then became united as one. In other words, they mingled into one body while they admired the words of promise to bring one world everywhere. This is the point where the signal light of God&#8217;s new dispensation was raised aloft.</p>
<p>Similar phenomena to that which took place before the 120 followers who gathered in the upper room must unfold before us, those people responsible for the mission of the Last Days. Furthermore, now is the time when the works of the Holy Spirit, the Son and the Father are taking place inside you.</p>
<p>Who are the ones who will stand before the Father in the Last Days? It is written that those on whose foreheads the names of the Lord and the Father are inscribed can be part of the 144,000 who can stand before the Father.</p>
<p>Through the works of the Holy Spirit, we must earn the recognition of Christ today. After gaining the recognition of Christ and the Holy Spirit, we must earn the recognition of the Father. Since the Holy Spirit is the mother and Jesus is the father deity, if we have received the Holy Spirit, from now on it is time to receive the father deity.</p>
<h3 align="center">The Being Of Contradiction Who Has Two Hearts</h3>
<p>What must we do to receive the God the Father? We must attain the qualifications to become one with the Father for eternity. How earnest must we be? We must earnestly make the appeal, &#8220;Father God, please descend upon us!&#8221; with a more earnest and desperate heart than those of the 120 followers who prayed with a united and sincere heart after Jesus&#8217; resurrection and ascension. The time has come when we have to do this.</p>
<p>What must you do then at this time? You must understand the fact that there is nothing that belongs to you. Your body, mind and even the things that belong to you are not yours. Those who claim them as their own are still on the side of Satan. You must think that all that belongs to you is the sense of mission that you feel in your hearts. We have to have this kind of attitude.</p>
<p>If we are not ours, then whose must we be? We must become the possessions of the Father. To become the possession of the Father, we must become one heart centering on the will of the Father. Without achieving one heart and one will, the will of God cannot be realized.</p>
<p>In the same way that the 120 followers became one the upper room, in the Last Days, can more than 120 people become united in one heart? This is a problem. For those of us who are trying to walk this kind of path, who is the enemy? If there is a group of people who are trying to prevent us from becoming united into one heart and trying to present conditions of destruction, they are your enemies.</p>
<p>What we must fight with today is not Satan in the world. It is the people who have the same form and movement as the apostles and are centered on the apostles in Heaven, the people who have the same form of movement as the faithful believers but who possess some different motive in their heart. If there are those among you with these kinds of motives, you must expose yourselves honestly before the faithful believers. If you do not expose your motives but try to conceal them and go before Heaven while you are setting more grave conditions, then your fate in the Last Days will definitely fall under judgment.</p>
<p>Consequently, today you must open your heart. If you do not do that and are enslaved to the same kind of heart as that of Ananias and Sapphira, then you will not be able to escape from the judgment of Heaven in the Last Days. It will be the same if you guard your minds and bodies, fill up on your own things, and do not think about the whole value of Heaven. If you do not become one with God in heart and forsake the heart that wants to bring accomplishment for your own sake rather than for the one will, then you will not be able to escape from the judgment of Heaven in the Last Days.</p>
<p>What then must you know now? You must understand that you are a being of contradiction who has two different minds. You have to understand that there are brothers who have thoughts that are different from yours. Even if so, you must not oppose the brothers with different thoughts; you must try to become one with them. This is the Father&#8217;s will.</p>
<p>If you, as a being of life who has the true life, become one with the people who have experienced Heaven&#8217;s miracle of fire, then you will obtain the material things of ten people. If you become one with a hundred people, you will obtain the material things of a hundred people.</p>
<p>What is the fall? It is our failure to unite our hearts with God. What is Satan? Satan is the one who is separating our hearts from Heaven. Today, seeking the will of the Father centering on this church, you are learning the words of the Divine Principle. Because living centered on the words of this Divine Principle is the will of God, you will not be able to avoid being in the same position a Ananias or Sapphira, if you cannot live centering on that will. Now is an extremely fearful time. If you become even the slightest bit accountable for a condition now, there is no way out of it. You must realize that the time is coming when no one can speak in your defense. In the present as it was in the past, ignorant people learn only after they have collided against the direction of Heaven. However, by that time it is already too late.</p>
<h3 align="center">The Effort To Become One Which Is Better Than Ten Million Prayers</h3>
<p>Do you worry about the will of the Father? Please then become one with your brothers. Do you have the desire to exert yourself for the sake of the Father&#8217;s will? Please then become the spring of life that can bring unity. The sons and daughters of the Father are the people who eliminate all conditions preventing unity and manifest the power to bring unity in the place of their dwelling.</p>
<p>If you feel a sense of responsibility to be present at the last battleground for the sake of the Father&#8217;s will and to accomplish the will of the Father, then you must forget yourselves and become one. You must have one heart and one will to achieve unity. Even if there is a traitor here, you must not hold grudges against him. As Peter lamented over it, you must first rekindle this kind of heart among yourselves and fulfill your responsibilities to remove all conditions of Satan. Otherwise, even if you accepted the will of God with zeal initially, the moment you are unaware, you will fall into the realm of Satan&#8217;s play. You must take serious note of this.</p>
<p>If you cannot become one in heart and will now, it is worse than if you had never come to know the Divine Principle and the will of God. If Ananias and Sapphira had not known of the gathering of the apostles, they would not have been judged. You are living in this kind of amazing historical moment.</p>
<p>At this point, you must forget everything. Setting one mind and one will as the goal, you must reach for it, exert all your effort and loyalty, and cling to the hands of the Father.</p>
<p>You then will become victorious sons and daughters. After passing through the hands of the Holy Spirit, the hands of the son of man, and then holding onto the hands of the Father, there is no way Satan can seize it away from you. You who are living in this kind of moment today must cling to the hands of the Father and obey His words with the same degree of ardor as the apostles, who ardently cherished the promise of Jesus, &#8220;I will come.&#8221; They longed for his coming. You must become a qualified person who can distinguish between good and evil, otherwise, you cannot climb over the great hill of judgment, not of the Holy Spirit or the son, but of the Father. The time of the Father&#8217;s judgment has not yet come. At the time of Jesus and the Holy Spirit, sins can be forgiven, but at the time of the Father&#8217;s judgment, there is no forgiveness.</p>
<p>We have come to learn this will. We have learned the words of the Divine Principle that if we do not become people whose minds and will can become one, then even the Father cannot manage us. You have to understand that the will of God manifests itself to the same degree that you have achieved oneness.</p>
<p>This moment now is the time when you must receive the sacred spirit of the Father and live with the same heart as the Father. When you do that, the Father will personally reveal things to you often. The Father will personally appear and intervene, pointing out the way that you must walk, teaching you the ways to fight Satan.</p>
<p>Therefore, you must hurry to receive the divine nature of the Father, to take after the mind of the Father, and to uphold the will of the Father. You can then feel that the Father is your substitute and you are His substitute. You become one. The more this kind of form expands, the more the will of the Father is realized. Greater than praying ten million times, you must make more effort than anyone else to achieve unity. If you have the desire to understand the value more deeply and fight for the sake of the will more than anyone else, then you will not have to stand on the stage of judgment.</p>
<p>Therefore, at this time, unless each of you exerts all of your minds and bodies to inherit the divine nature of the Father and live a life that unites you with the Father, you will not understand the will of the Father. As long as you do not understand the Father&#8217;s will, you will not understand the heart of the Father. As long as you do not understand the heart of the Father, you cannot become one centering on the will of the Father.</p>
<p>Since you have been attending church until now, what you must realize is that before the will of the Father, everyone must become one in heart and will. The will of the Father must be conveyed as our own will. The mind of the Father must be conveyed to each of us as our own will. When this is achieved, God can begin to perform in His full authority.</p>
<h3 align="center">God Operates Only Where Hearts Have Become One</h3>
<p>For Jesus and the Holy Spirit, the victorious miracle of resurrection took place only when they became one, centering on the heart of the Father. The ardent heart and will of the Father must become one with yours so that the silent powers on both sides, that are trying to bring this to pass, are moving in the same direction. At that moment, God can act in His full authority, in a way which exceeds all your concepts.</p>
<p>Therefore, God moves amid the prayer that two people are offering with a united heart. Consequently, I have formed the trinities. The problem is to what extent you have become one in heart and soul, centering on your trinities. You must keep in mind that those who did not achieve the one will centering on one heart, in spite of that being their mission, are standing in the same position as Ananias and Sapphira. To carry on the last battle today and forget everything else, we must achieve it with the whole united power, as well as one united mind and will.</p>
<p>If we are to set a motto, it is, &#8220;Let Us Become One in Heart and Will.&#8221; To reach the state of one heart and one will, you must learn to forget material things, social prestige, social position, power and authority, and every such thing.</p>
<p>Since this has been blocked off, only when you learn to bravely overcome this will you be able to perform miracles like those the apostles performed with the help of the Holy Spirit, who appeared inside the upper room to destroy the ignorant enemies. You must also pray with the same heart, &#8220;Please let us become one in heart, one in will, and manifest it through united actions.&#8221; This is the motto we must shout out at this time. If there is someone who blocks this and prevents its fulfillment, then he is the very enemy of Heaven.</p>
<p>Do you long for the realization of the great will today? If you do, then you must become united in heart. Do you want the appearance of the great glory? Every one of you must become united. Where there is unity in heart, everything can pass through. Infinite persistence is also possible.</p>
<p>Accordingly, today you must quickly become one in heart. Do you have some element in your heart that prevents it from becoming united? You must take this as your enemy and see it as the great Satan. This will drag you to hell. Satan will snatch you away. This will become the condition by which you will be made to stand on the stage of judgment.</p>
<p>With the determination to eliminate these kinds of conditions from your life and bring order to your environment, your minds and will must become one. We must become united until the moment when we can subjugate Satan as the representatives of the mind and will of the Father.</p>
<p>This must end not just in this hour today. If for ten years that which belongs to Satan remains, then until the fulfillment of the Father&#8217;s will, you must be able to unite with one person for ten years. For ten years, you must be able to unite with a thousand people. We must offer our entire life to fight with Satan. By eventually vanquishing Satan, we must manifest the glory of the Father while we are alive. You must keep this in mind.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Had the heart and will of the Father and Adam become one, there would never have been this history of sorrow today, in which two worlds are in conflict with each other. The Father&#8217;s grieving and sad heart dwells in our hearts today. Our original minds recognize this, but our fallen natures, centered on ourselves, deny it. We know that the original mind and the selfish mind are always in conflict within us, so please allow us to cope with our hearts and make them become one with the heart of the Father.</p>
<p>The time of battle is nearing when we must cope with our own will and make it one with the will of God. Father, if among the sons and daughters here there are those who cannot become one in heart with the Father, then please forgive them. Please allow us to forget ourselves and exert ourselves for the sake of becoming one with the heart and will of the Father.</p>
<p>We know that the heart which has become one with the heart of the Father cannot be exchanged for any amount of money. Beloved Father, we ardently wish for You to guide us to fight on in the search of that one thing, even by sacrificing everything.</p>
<p>The Father now is in an enormously difficult time. Satan is blocking our hearts, which long to become united. Please allow us to set a new condition of sacrificing ourselves for the sake of others, to accomplish the Father&#8217;s will.</p>
<p>We earnestly wish for You to allow us to fight while longing for the will of the Father and manage the history of the dispensation that can broaden the glory of the Father&#8217;s will.</p>
<p>Our gathering here today wishes to be of one heart and will united before the altar of the Father. We ardently wish for You to allow us to be established as the conditional offering that has the same relationship with the Father. Let it become the condition to subjugate Satan. We offer all the words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html" title="Permalink to GOD&#8217;S POWER IS REVEALED WHERE ONE HEART AND ONE WILL HAVE BEEN REALIZED" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US UNDERSTAND THE TRUE PATH AND DISCERN THE SIDE PATH</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html" rel="next">LET US CELEBRATE CHRISTMAS ON BEHALF OF HEAVEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,212 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Heaven Is Calling Us &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/heaven-is-calling-us.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-892 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-892" class="post-892 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Heaven Is Calling Us</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T15:35:05+01:00"> <a href="/blog/2018/06/05/heaven-is-calling-us.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T15:35:05+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/heaven-is-calling-us.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
January 5, 1958</p>
<p><em>Genesis 3:1-14</em></h3>
<p class="chapter-1" style="text-align: center;"><em><span class="text Gen-3-1">Now the serpent was more crafty than any of the wild animals the <span class="small-caps">Lord</span> God had made. He said to the woman, “Did God really say, You must not eat from any tree in the garden?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-58" class="text Gen-3-2"><sup class="versenum">2 </sup>The woman said to the serpent, “We may eat fruit from the trees in the garden,</span> <span id="en-NIV-59" class="text Gen-3-3"><sup class="versenum">3 </sup>but God did say, You must not eat fruit from the tree that is in the middle of the garden, and you must not touch it, or you will die.’”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-60" class="text Gen-3-4"><sup class="versenum">4 </sup>“You will not certainly die,” the serpent said to the woman.</span> <span id="en-NIV-61" class="text Gen-3-5"><sup class="versenum">5 </sup>“For God knows that when you eat from it your eyes will be opened, and you will be like God, knowing good and evil.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-62" class="text Gen-3-6"><sup class="versenum">6 </sup>When the woman saw that the fruit of the tree was good for food and pleasing to the eye, and also desirable for gaining wisdom, she took some and ate it. She also gave some to her husband, who was with her, and he ate it.</span> <span id="en-NIV-63" class="text Gen-3-7"><sup class="versenum">7 </sup>Then the eyes of both of them were opened, and they realized they were naked; so they sewed fig leaves together and made coverings for themselves.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-64" class="text Gen-3-8"><sup class="versenum">8 </sup>Then the man and his wife heard the sound of the <span class="small-caps">Lord</span> God as he was walking in the garden in the cool of the day, and they hid from the <span class="small-caps">Lord</span>God among the trees of the garden.</span> <span id="en-NIV-65" class="text Gen-3-9"><sup class="versenum">9 </sup>But the <span class="small-caps">Lord</span> God called to the man, “Where are you?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-66" class="text Gen-3-10"><sup class="versenum">10 </sup>He answered, “I heard you in the garden, and I was afraid because I was naked; so I hid.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-67" class="text Gen-3-11"><sup class="versenum">11 </sup>And he said, “Who told you that you were naked? Have you eaten from the tree that I commanded you not to eat from?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-68" class="text Gen-3-12"><sup class="versenum">12 </sup>The man said, “The woman you put here with me—she gave me some fruit from the tree, and I ate it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-69" class="text Gen-3-13"><sup class="versenum">13 </sup>Then the <span class="small-caps">Lord</span> God said to the woman, “What is this you have done?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-3-13">The woman said, “The serpent deceived me, and I ate.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-70" class="text Gen-3-14"><sup class="versenum">14 </sup>So the <span class="small-caps">Lord</span> God said to the serpent, “Because you have done this,</span></em></p>
<div class="poetry top-05">
<p class="line" style="text-align: center;"><em><span class="text Gen-3-14">“Cursed are you above all livestock</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">and all wild animals!</span></span></em><br />
<em><span class="text Gen-3-14">You will crawl on your belly</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">and you will eat dust</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">all the days of your life.</span></span></em></p>
</div>
<p>We can understand the origins of humanity&#8217;s grief through the verses in the Bible. We can also learn within the Bible that the first human ancestors were chased away from the bosom of God.</p>
<p>God created all things based on the ideal of creation. After that, He created Adam and Eve as the central beings of the universe who could attend God and rejoice with all things. Yet because of their fall, God&#8217;s purpose of creation remains unfinished. God has regretted creating humankind. This is the sorrow of God and the lament of all things.</p>
<h3 align="center">The Heart of God, Who Was Calling for Fallen Adam</h3>
<p>The happiness and hope of humankind, who should have enjoyed their life centering on the ideology of eternal goodness, was cut off at this point. God and humankind should have enjoyed eternal joy and peace centering on the eternal ideology. Yet the hope of the Creator and of all things has been fundamentally destroyed. We must realize deep inside that this is where the sorrow of God and of humankind can be found.</p>
<p>When God created all things, He poured out all His heart and soul. You know very well through the Divine Principle that He poured out all His energy, especially when He was creating Adam and Eve. Through exhausting toil, God created them as the temple where He could dwell.</p>
<p>When God created all things, it was for the sake of letting them live with humankind for eternity. It was done so that God could be happy when people were happy. God established this purpose of creation. Because of the fall of Adam, God could not experience even a moment of this joy. You must keep in mind that this is the reason God is trying to re-create this time again.</p>
<p>You must fathom the painful heart of God who called out to Adam, &#8220;Adam, Adam,&#8221; after Adam and Eve fell. God was in the position to abandon Adam and Eve, who had abandoned Him, the Creator, but God looked for Adam, calling out, &#8220;Adam, Adam!&#8221; We must realize that God was not just calling for the two people, Adam and Eve. It was a historical calling.</p>
<p>Until today, people on earth have been ignorant of the internal heart of God who called out to Adam after the creation. The voice that called out to Adam, at that time, became the words of sorrow that represent the 6,000-year history of grief today. We have to understand that God called Adam with the sorrowful heart that represented all the grief inside the fallen realm after the creation of the world. Although 6,000 years of long history have passed since Adam, we have to know that God is connecting the events of that time to the present era and is calling out to us, the second Adam and Eve, in the same manner.</p>
<p>The people of faith who have served the will of the dispensation after the fall have mourned for the earth that cannot hear the voice of God calling for Adam and Eve. They grieved on God&#8217;s behalf because they could feel this heart.</p>
<p>We must realize the distressed heart of God, who was calling for Adam and Eve after the fall. This was the heart of the Father who felt indescribably heartbroken when He saw that Adam had entered the forbidden place and fallen. When we grab onto that heart and mourn with the same heart, God can continue again in His dispensation of restoration toward people on the earth. You must never forget that God has been calling out to you by setting up countless prophets and saints throughout the course of history until now.</p>
<p>The voice calling out to fallen Adam and Eve in the Garden of Eden is still heard today. After the fall, for 1,600 long years of history, God called for Adam with the same ardent heart. Clinging to the one person, Noah, who could remain loyal to Heaven, He was finally able to call out, &#8220;Noah! Noah!&#8221; You must learn to listen to this historical voice.</p>
<h3 align="center">The Ancestors Who Suffered in Order to Liberate God</h3>
<p>God called Noah in order to be liberated from the bitter heart, which was broken when Adam and Eve fell. However, was there anyone who fathomed the heart of the Father? There was no one on earth who knew that God worried for 120 years after calling Noah for the sake of the one day when the grief would be removed. If there are those among you who have experienced the heart of God that grieved after losing Adam and Eve, then you will not be able to relate to God without shedding tears.</p>
<p>Adam should have remained in the position of the blessing. If there is someone on the earth who feels the mourning heart of God at the time that Adam was chased out from the bosom of God, then he must repent before God on behalf of Adam.</p>
<p>The sorrow of Heaven began from the fall of Adam. God felt a deep bitterness because of this. He is pleading and appealing to you out of grief, even at this moment. If we understand this fact, then we will not feel satisfied, even if we cry and mourn until our bones, flesh, mind and body are deeply pierced.</p>
<p>Among the prophets and saints who came in the course of history, among the ancestors who stepped forward on behalf of God, there is none who shed tears of sorrow. Those who represented God did not avoid the path of suffering. This was what Noah, Abraham, Isaac and Jacob did. This was true for them as individuals, and it was true even for Moses, who represented the people. It was true also for Jesus, who came on behalf of the world, the Savior of all people.</p>
<p>Today we must mourn to the same degree that God mourns. When God feels highly indignant, we must simultaneously feel indignant.</p>
<p>Adam and Eve forgot God. After abandoning God, they tried to seek joy centered only on themselves. This has been left behind during history as a condition of sadness. This mournful earth was created from the selfish actions of Adam and Eve, who betrayed the will of God and neglected the heavenly principles. The sorrow of God began when humankind neglected the sorrow and indignation of Heaven and sought satisfaction and comfort for themselves. Therefore, we must become the fruit of the tears, shed by the prophets and saints who came during the course of history.</p>
<p>We must become the representative of Heaven who suffers hardships and agony. Coming to know about the sorrow, grudges and distress of Heaven, we must battle with evil. While doing so, we must fulfill our mission of supporting the Father, Jesus, the historical prophets and saints, and comforting Heaven. The Father must be looking for this kind of person. All of our ancestors, who have lived on the earth, also have been seeking this kind of person.</p>
<p>Ladies and gentlemen, in the new life that you are now leading after clearing away your life until now, how many hours have you suffered the rejection and ridicule of all people, in place of Heaven, from a position of hardship? Because fallen humanity is living in the sad course of fateful history, people who seek Heaven cannot avoid this kind of path. This is the ironclad rule of the fallen world.</p>
<p>Therefore, in the course of history, God was the God of those who mourned. While He was unfolding the will of the dispensation, God grieved while watching His sons and daughters being violated by the evil forces. However, God does not want to always live in sorrow. You have to understand that it is the hope of God to be liberated from sorrow, grief and distress and usher in the day of joy as soon as possible.</p>
<p>Although 6,000 years of history have passed since the fall of man, until today there was not even one son and daughter who could usher in the one day of hope and sing the glory of Heaven together. Consequently, the Christianity that God raised is a religion of tears. Christianity is the religion of the cross.</p>
<h3 align="center">The Path Jesus Walked and<br />
the Path the Chosen People Walked</h3>
<p>Before the footsteps of Jesus Christ, who was driven out by the Israelites, there lay the path of the valley of tears, the path of the cross. Jesus was ostracized by his family and chased out by Judaism. Jesus Christ was accused of being a cult figure and was chased out by the Israelites and the entire nation of Israel. Fathoming his situation and heart, we can understand that the path he walked was for the sake of the Israelites and his tribe. The path the Israelites took and the path Jesus took were opposites. The greater the gap between the two, the greater the sorrow and bitterness of God. You have to understand that the course of faith during the 2,000 years after Jesus was a history of conflict carried on to turn these contradictory paths into reciprocal ones.</p>
<p>Please set yourself in the middle of all things of creation. After dividing your mind and body, please make a comparison and criticism. Please be criticized before God. Be criticized before the prophets and saints of history and before the true shepherds, who are persevering through the path of sorrow and pain despite the tears they shed. You will not have anything to boast about. The more you think about it, the more you will not be able to deny that you deserve to face the repercussions of sin.</p>
<p>Our countless ancestors have passed through the altar of a history of blood and tears. Today God is trying to place you on top of the altar and establish you as the fruit of the victory. If you turn away from the will without knowing this, where will this people go? Where did the tribe that opposed God&#8217;s chosen Abraham go? Where did the Israelites who did not feel pain in their heart with Isaac and Jacob go? They had to struggle in misery. They fell into sorrow and lament.</p>
<p>Moreover, how was it at the time of Moses? The ignorant people did not understand the distressed and burning heart of Moses who climbed Mt. Sinai and appealed to Heaven for forty days without eating anything, for the sake of the people. If the people had understood his distressed heart and shared his grief, they would not have fallen down in the wilderness. They would not have made conditions to allow the nation of Israel to later subject Jesus to the cross. Moreover, the history of sin would not have continued until today. Because this was not done, the suffering of God was indescribably great. Until now, God has been walking the path of the cross and has been establishing religions throughout history.</p>
<p>If we are to leave something behind in history of which we can be proud, then to represent the heart of God, we must be able to say, &#8220;Oh Father! Please hand that sorrow over to me.&#8221; The people who step forward praying, &#8220;We will shoulder the burden that God is bearing,&#8221; will not decline. However, if an individual, society or a nation does not understand the sorrow, indignation and hardships of God, then it will decline. It is the same for all.</p>
<p>If the faithful people of the Last Days understand this historical tradition and provide the protection, feeling this sense of responsibility, they must then partake in the sorrow of God and shed endless tears of which others are not aware. They must receive the persecution of which others are not aware. Even as they are suffering the pain of which others are not aware, they must never make excuses for themselves. Jesus was this kind of person. How many people in the world can follow his example?</p>
<p>If there are the sons and daughters of God among these people, who walk the path through which they can receive the blessing of God and judge sins on behalf of all humanity and the world, then God&#8217;s statesmanship will be transferred to them. The universal mission will also be fulfilled through them.</p>
<p>Therefore, we must shed tears on behalf of the sorrow of God. We must shed tears for the sake of humanity, whom the Father loves. We must shed tears on behalf of the sorrow of Noah. We must shed tears on behalf of the sorrow of the 6,000 years, which include the 4,000 years from Adam to Abraham, Isaac, Jacob, to Moses, to Jesus, and the 2,000 years since Jesus.</p>
<p>If there is someone who can respond, &#8220;Father, I am here,&#8221; to the voice of God, who is calling out for His sons and daughters on the earth, then even if his hands are ugly, his heart has been wounded and his appearance is humble, he will never perish. This is because he can represent the sorrow of God and his heart can connect with the heart of Heaven. The basic rule of the heavenly principles is that the path he is walking cannot be blocked even if the whole world is mobilized. Because Jesus understood this kind of basic principle, he mourned for the sake of the Israelites who betrayed him. He shed tears for the sect that persecuted him. He wished blessings upon the enemies who were putting him on the cross.</p>
<h3 align="center">The Qualifications to Stand Before God</h3>
<p>If the people of faith today are trying to stand as the bride before Heaven and Jesus, the bridegroom, yet have not experienced the sad heart that Jesus and the prophets and saints of the past felt, then they must repent. Despite the fact that sons and daughters must emerge, who know how to mourn over Heaven, the nation and the world, if people are seeking happiness even as God is mourning, they will surely be ruined. This kind of nation will come to ruin.</p>
<p>God has been calling for you through the countless prophets and saints during the thousands of years of the course of history. For those of you who are receiving the grace of God, today is the time when you must look back on your past, examine what kind of attitude you have and what position you are in, and make a cold appraisal.</p>
<p>What is God prophesying to the world by raising us? The time when we can shed tears for ourselves has passed. Since now is the time of a world ideology, the time when we can shed tears for the family has also passed. The sorrow of God has passed through the stages of the individual, family, society and people and has even passed the national course. Now God mourns for the world.</p>
<p>Each of you stands in the position of Adam and Eve, who lived in the Garden of Eden. Only when you become sons and daughters, whom the Father can welcome with outstretched arms, can you finally stand before the Father, Who has been calling out to you with an ardent heart. To do that, you must climb over all the hills of sorrow, pass through all paths of the cross and, as a free and liberated person, be able to attend the eternal Father saying, &#8220;My Father.&#8221; When these sons and daughters emerge, God&#8217;s joy will begin. This was the historical hope. The day this hope is realized is the day of the Second Advent. Christianity is supposed to play the central role in actualizing this.</p>
<p>You must never turn away from the historical calling. You have to understand that God does not call human beings only at the end of history. He is calling us even now. There are many denominations in the world of the truth that has progressed centering on goodness until now. Now the time has come when we must find, among them, the true shepherd who is connected to the heavenly principles. Those who are stepping forward to walk any kind of path of death and tribulation to meet and follow the shepherd must first partake in the grief of Heaven.</p>
<p>The leaders of the religious world today must understand this situation of Heaven. If, on the contrary, they assert only their own views and fight with each other, their denominations will decline.</p>
<p>You who have embarked upon a path that is different from others must, for the sake of the people, bring an end to the works of the fall that have come down from the ancestors. You must wish for one person to appear who can help you go before God. You must know that the day this hope is realized is the day of the Second Advent.</p>
<p>Not having the sons and daughters whom He can bless and rejoice over is God&#8217;s grief and sorrow. Not having a kingdom centered upon Him is God&#8217;s sorrow. Not having a people centered on Him is God&#8217;s sorrow. Not having a country and a world centered on Him is God&#8217;s sorrow.</p>
<p>You have to understand what God wants in raising you. You have to understand that He is watching over you while He is feeling the deep distress of the past, present and the future.</p>
<p>Whom is God going to choose and elect as the heir of Abraham? To whom is He going to transfer the blessing of Israel and Jacob? To whom is He going to hand over the tasks of Jesus? God&#8217;s hope is to find the one person who can fulfill this. This remains as the condition that must be set in this era.</p>
<h3 align="center">The Path of the People<br />
Who Have Received the Royal Summons</h3>
<p>When we look back at human history, we can know that for 6,000 years, God has been unspeakably sorrowful. As it was for Jesus, the Holy Spirit and our ancestors, there has come a time when we must take on the responsibility on their behalf and liberate God from His grief.</p>
<p>When we look at the corruption of this era, we can understand that before us lies the historical, fateful path of Golgotha on the level of the people, which we must cross over with tears. It is our inescapable fate to walk through this path. It is the will of the dispensation that we leave victorious accomplishments here. When we look at the history of the dispensation, we can fathom the heart of God, Who mourned over humanity in the past, is mourning in the present, and even for the future.</p>
<p>When Israel ostracized Moses, who was responsible for them as a people, Israel broke apart. When Israel ostracized Jesus, who came with the responsibility for the world, Israel became a people who had to wander all around the world. This is a fact of history.</p>
<p>Although our people do not have anything of which to be proud, if we become a pitiful people before the world centering on Heaven, in other words, if this nation stands in a position more miserable than any other nation on behalf of the world, there can be hope here. If we shed sad tears while starving and lamenting for the world in that kind of position, we can come alive again, even from death. This people will lead the world in the future if that takes place.</p>
<p>We must protect the path Jesus walked with a humble attitude. Protecting the path Moses walked, we must climb over the historical hill and bring an end to the inadequate past on behalf of the position of the first Adam and Eve. We must attain again the original ideology of the creation. We must usher in the day when we become the sons and daughters to which God can relate in joy and receive the blessing and glory of the Father in harmony with all things. Only then can we enter the Kingdom of Heaven. After you overcome all historical sorrows and pass over the hill of sadness, you can finally participate in God&#8217;s joy.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/heaven-is-calling-us.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/heaven-is-calling-us.html" title="Permalink to Heaven Is Calling Us" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/the-meaning-of-the-trinity.html" rel="prev"><span class="meta-nav">&laquo;</span> The Meaning of the Trinity</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html" rel="next">Where Is the Refuge in Which Heaven Can Dwell? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,230 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JESUS&#8217; TRUE HEART FOR GOD &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/jesus-true-heart-for-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-846 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-846" class="post-846 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">JESUS&#8217; TRUE HEART FOR GOD</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:53:52+01:00"> <a href="/blog/2018/06/05/jesus-true-heart-for-god.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:54:01+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/jesus-true-heart-for-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
August 4, 1957</h3>
<p style="text-align: center;"><em>Matthew 7:1-27</em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text Matt-7-1"><span class="woj">“Do not judge, or you too will be judged.</span></span> <span id="en-NIV-23319" class="text Matt-7-2"><span class="woj"><sup class="versenum">2 </sup>For in the same way you judge others, you will be judged, and with the measure you use, it will be measured to you.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23320" class="text Matt-7-3"><span class="woj"><sup class="versenum">3 </sup>“Why do you look at the speck of sawdust in your brothers eye and pay no attention to the plank in your own eye?</span></span> <span id="en-NIV-23321" class="text Matt-7-4"><span class="woj"><sup class="versenum">4 </sup>How can you say to your brother, Let me take the speck out of your eye, when all the time there is a plank in your own eye?</span></span><span id="en-NIV-23322" class="text Matt-7-5"><span class="woj"><sup class="versenum">5 </sup>You hypocrite, first take the plank out of your own eye, and then you will see clearly to remove the speck from your brothers eye.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23323" class="text Matt-7-6"><span class="woj"><sup class="versenum">6 </sup>“Do not give dogs what is sacred; do not throw your pearls to pigs. If you do, they may trample them under their feet, and turn and tear you to pieces.</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-7-7"><span class="woj"><sup class="versenum">7 </sup>“Ask and it will be given to you; seek and you will find; knock and the door will be opened to you.</span></span> <span id="en-NIV-23325" class="text Matt-7-8"><span class="woj"><sup class="versenum">8 </sup>For everyone who asks receives; the one who seeks finds; and to the one who knocks, the door will be opened.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23326" class="text Matt-7-9"><span class="woj"><sup class="versenum">9 </sup>“Which of you, if your son asks for bread, will give him a stone?</span></span> <span id="en-NIV-23327" class="text Matt-7-10"><span class="woj"><sup class="versenum">10 </sup>Or if he asks for a fish, will give him a snake?</span></span> <span id="en-NIV-23328" class="text Matt-7-11"><span class="woj"><sup class="versenum">11 </sup>If you, then, though you are evil, know how to give good gifts to your children, how much more will your Father in heaven give good gifts to those who ask him!</span></span> <span id="en-NIV-23329" class="text Matt-7-12"><span class="woj"><sup class="versenum">12 </sup>So in everything, do to others what you would have them do to you, for this sums up the Law and the Prophets.</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-7-13"><span class="woj"><sup class="versenum">13 </sup>“Enter through the narrow gate. For wide is the gate and broad is the road that leads to destruction, and many enter through it.</span></span> <span id="en-NIV-23331" class="text Matt-7-14"><span class="woj"><sup class="versenum">14 </sup>But small is the gate and narrow the road that leads to life, and only a few find it.</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-7-15"><span class="woj"><sup class="versenum">15 </sup>“Watch out for false prophets. They come to you in sheeps clothing, but inwardly they are ferocious wolves.</span></span> <span id="en-NIV-23333" class="text Matt-7-16"><span class="woj"><sup class="versenum">16 </sup>By their fruit you will recognize them. Do people pick grapes from thornbushes, or figs from thistles?</span></span> <span id="en-NIV-23334" class="text Matt-7-17"><span class="woj"><sup class="versenum">17 </sup>Likewise, every good tree bears good fruit, but a bad tree bears bad fruit.</span></span> <span id="en-NIV-23335" class="text Matt-7-18"><span class="woj"><sup class="versenum">18 </sup>A good tree cannot bear bad fruit, and a bad tree cannot bear good fruit.</span></span> <span id="en-NIV-23336" class="text Matt-7-19"><span class="woj"><sup class="versenum">19 </sup>Every tree that does not bear good fruit is cut down and thrown into the fire.</span></span> <span id="en-NIV-23337" class="text Matt-7-20"><span class="woj"><sup class="versenum">20 </sup>Thus, by their fruit you will recognize them.</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-7-21"><span class="woj"><sup class="versenum">21 </sup>“Not everyone who says to me, Lord, Lord, will enter the kingdom of heaven,but only the one who does the will of my Father who is in heaven.</span></span> <span id="en-NIV-23339" class="text Matt-7-22"><span class="woj"><sup class="versenum">22 </sup>Many will say to me on that day, Lord, Lord, did we not prophesy in your name and in your name drive out demons and in your name perform many miracles?</span></span> <span id="en-NIV-23340" class="text Matt-7-23"><span class="woj"><sup class="versenum">23 </sup>Then I will tell them plainly, I never knew you. Away from me, you evildoers!</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-7-24"><span class="woj"><sup class="versenum">24 </sup>“Therefore everyone who hears these words of mine and puts them into practiceis like a wise man who built his house on the rock.</span></span> <span id="en-NIV-23342" class="text Matt-7-25"><span class="woj"><sup class="versenum">25 </sup>The rain came down, the streams rose, and the winds blew and beat against that house; yet it did not fall, because it had its foundation on the rock.</span></span> <span id="en-NIV-23343" class="text Matt-7-26"><span class="woj"><sup class="versenum">26 </sup>But everyone who hears these words of mine and does not put them into practice is like a foolish man who built his house on sand.</span></span> <span id="en-NIV-23344" class="text Matt-7-27"><span class="woj"><sup class="versenum">27 </sup>The rain came down, the streams rose, and the winds blew and beat against that house, and it fell with a great crash.”</span></span></em></p>
<p>Prayer</p>
<blockquote><p>Your children are gathered here. They have been striving during the past week to seek Your hope in accordance with Your will. Father of compassion, Father of love, Father of mercy, have dominion over them.</p>
<p>Our hearts are indescribably weak and restless. If Heaven&#8217;s grace of peace, harmony and comfort were not with us in our hearts, no people could have been as pitiful as we are. Please understand our situations and bestow Your grace of compassion on us. We understand that You are a friend to the weak, so please strengthen their hearts, and comfort the hearts of the lonely.</p>
<p>Beloved Father, through this hour, I sincerely desire and wish that You would allow us an opportunity engrave deeply in our hearts the heavenly principles, bow down to You in gratitude for Your grace, manifest Your glory, and offer You songs of joy. Father, even if we are fatigued with difficulties, as we stand up on behalf of a people asleep, we understand that it should be a glorious joy to You. If only our grief, despair, and lamentation can serve for the sake of the creation and the cosmos, not centered on us, we understand that there will be nothing more glorious than that. Through this opportunity, I earnestly wish and desire for You to allow us to have a heart filled only with concern for heaven and earth, to feel an irresistible sense of mission endowed from heaven and a burning desire to fulfill it.</p>
<p>Please allow us to clearly realize on our own that we are the ones who are standing before the will of heaven, and that each of our actions are for the sake of Heaven. Please guide us to fight Satan on behalf of the people and fulfill the mission entrusted by You. Thus, on their behalf, let us become the sons and daughters who can carry out the blessing bestowed upon the people. Beloved Father, we earnestly desire and wish for this to be done. By doing so, please lead us to become the sons and daughters who can awaken the sleeping people, and who can appeal to You to save all of humankind who are being swallowed in darkness.</p>
<p>Please help us not to take responsibility only for our own individual life, but help us to be responsible for the people and all of humankind. Let us offer our lives before You and thus become the kind of person You want us to be. Father, I sincerely wish and desire for this to be done.</p>
<p>Now let us offer all of our loyalty through our minds and bodies, and let this loyalty be embedded in our bones, so that You can comfort and desire and bless us. Father, I sincerely wish and desire for this hour to be such an opportunity.</p>
<p>Even today there are sons and daughters scattered here and there who are burning a torchlight of battles against Satan and evil before You. Please be with them, have dominion over them, and protect them. Please clearly show them that they are sons and daughters of the living Father, and let them be proud of themselves in the midst of hardships. This I sincerely pray. At this hour, I know that there are sons and daughters who are faced with lonely situations. Please have dominion over all of their environment and circumstances, comfort them and make an appearance before them with the same grace. I sincerely wish and desire for this to be done.</p>
<p>As we entrust everything to You at this hour, please allow Your will and glory alone to be demonstrated in our minds and bodies, and work through us. I pray all of this in the name of the Lord. Amen.</p></blockquote>
<p>At this hour, I would like to speak to you on the topic of <em>&#8220;Jesus&#8217; Heart for God.&#8221;</em></p>
<h3 align="center">Mankind&#8217;s Original Path</h3>
<p>Today countless people are living without clearly knowing their purpose of life. That is, they are living without knowing answers to the fundamental questions of life, such as why they were born, how they should live and where they will go after death.</p>
<p>However, this is simple. Men and women are to live for the sake of others. That is, they were born for others, to live for others and die for others. That is the original path of human beings.</p>
<p>The first human ancestors, Adam and Eve, should have done this. That is, they should have lived for others, but they failed to do so. This is the origin of the fall. That is why, until now, humans have been toiling to indemnify the origin of the fall through indemnity. However, because they could not be liberated from the fallen lineage, even if they tried to live for others, they eventually lived for themselves. In other words, they led a life in which they were born for themselves, lived for themselves, and died for themselves.</p>
<p>However, throughout the course of God&#8217;s dispensation, though it went unrecognized by human beings, God has been working to create a value to the universal life, a value to the universal being for the fulfillment of the ideal of creation. You should reflect upon this again.</p>
<p>By living according to heavenly principles, by keeping your integrity, you can find and create a value that can represent the relationship in heaven, the relationship of true ethics and the relationship of the universe. Further, by restoring your immutable positions for eternity toward the will of God, you can praise the one being who eternally lives for others. Through your substantial relationships with the whole, you should be able to fully express the beauty of God&#8217;s creation.</p>
<p>Thus, the ultimate purpose of God&#8217;s dispensation is to help humans find the value of their life. Accordingly, by being faithful to God as a universal original human, you can find a day when you can be proud of yourself before Him, before all of humankind, and before all things. You are destined to go the universal path to be restored even after death, if not during your physical lifetime. You should keep this in mind.</p>
<p>Until the present, there has been no one who established such a standard of loyalty to God and could manifest the value and glory to God, humankind, or all things. There has been no one who was a true man of character with unchanging, irreversible loyalty that will not disobey, no matter what. Throughout history, there have been many saints and sages sent and testified to by God, but there has been no one with such a character. That is why humans have been looking for such a figure throughout history.</p>
<p>Today humans should meet the one person who has pledged and is determined to stand before the heavenly will and human ethics as an unchanging figure, inheriting all the missions and faiths of all of the saints and sages who have come and passed away until now. If not, we cannot carry out the responsibility that God wishes for, nor can human history come closer to the one destination for which the heavenly will wishes.</p>
<p>Thus, unless there is a person who can represent Heaven, who can be a man of character with the standard of eternal loyalty representing all things, the heavenly will cannot be fulfilled. This person must be one who can be a substantial being of character, whom all people should resemble, and he must be a person who is taking responsibility for leading human history. Otherwise, this evil world cannot be restored. You should know that this is a principle of heaven.</p>
<p>Accordingly, the one central figure must appear on this earth no matter what. Otherwise, the person who was to appear in the last days of human history cannot come to the earth, and thus the ideal world centered on God cannot be realized. The central figure who is to come should be a being who can manifest the value of heaven within his realm of life, with the value and glory of all things and who can bring a core energy that can harmonize the whole.</p>
<p>God, who has been leading a dispensation to save all humankind sent a central figure to earth for every dispensational time of history. If human history had not succeeded through these central persons, we would not be able to inherit God&#8217;s providential will today. The final purpose and goal of human history are to find a unified ideology through one world view. People who live on earth today recognize this fact.</p>
<h3 align="center">The Unifying Point of the Dispensation<br />
of Restoration and a True Religion</h3>
<p>Then what is the unifying point of the dispensation of restoration? It is to establish a standard where each person can stand before the heavenly principle for eternity as a being of character that can replace the value of the heavenly principle, human ethics, and the universe. Thus, he can dwell with God for eternity. Similarly, since the purpose of human history is to be directed to the one returning point, we can understand that human history is moving centered on a certain ideology or a certain constructive activity.</p>
<p>The one standard is a historic, original being for whom all humans have been longing and yearning with hope throughout all of history until now. Humans have been longing to see the central person who reached this one standard to appear. That is, they did not want the being to come in the past or in the future, but wanted him to come in their lifetime and thus be personally connected to him. Through this, by fulfilling the standard of heavenly principles and becoming glorious beings who can enjoy the position of the eternal, unchanging ancestor of their lineage, they desired to be proud of themselves before the creation. In fact, when the very one appears before you, you should be able to attend him and take after his loyalty. Then the question will be whether you are actually prepared to do it.</p>
<p>Throughout many thousands of years of history, God has been sending men of character, with loyalty and devotion to the will, as central figures. By inheriting the heavenly will they were to be responsible for their time. Yet during each period people did not realize this.</p>
<p>On the other hand, throughout human history many doctrines are unifying into one and are moving toward one returning point. What is the reason for this or this process to the destination from the beginning of time? What is the reason the providence of the heavenly will is being united into one? It is because if the providential goal changes from time to time, the purpose of the unifying point of the providence cannot be achieved. Thus, you should understand that God&#8217;s providence is marching forward consistently, centered on the eternal axis, toward one goal.</p>
<p>This is not an ideology of certain ideas, nor is it humanistic law or moral ethics. This is the providential course of God, who has been fighting alone, centered on Heaven&#8217;s principles, which go beyond those of human ethics.</p>
<p>Therefore, we should become a person of heavenly character with an unchanging loyalty and devotion to the will of God on behalf of the heavenly will. By doing so, through an unchanging journey from the beginning point to the destination of God&#8217;s providence, we should find the value of one unifying point that can replace the value for the whole. Furthermore, the value of the unifying point should be established as a condition for the restoration of the whole. If not, the will of God, who attempts to lead the providence by sending a person of character representing the ideology of the heavenly will, will not be completed.</p>
<p>When viewed from the progress of history, we can understand that various religions were formed appropriately for different people and areas. Among them, there has to be one religion with a long historical background that seeks an unchanging figure and tries to connect heavenly love to the being of heavenly value. That religion should maintain an absolute standard for the fulfillment of this task until the last days, beyond time and the conditions of its environment. Furthermore, that religion should present the purpose of human birth and human life, and should also carry a historical background that can be connected to any area of history and culture, etc.</p>
<p>To find such a religion, we should examine whether that religion has been endlessly struggling on earth to actualize the religious ideology with a consistent, historical background even in the midst of hardships and tribulations. Even if time and doctrines change, it should not be affected by this. We should examine whether this religion has been contributing to the resolution of the problems to demonstrate consistently the ideas and love of God. The fundamental purpose of such a religion will be to represent heavenly principles, human ethics, and all the ideologies on earth. Also, the religion will be able to connect to the one who can actualize its ideas with unchanging loyalty. That religion is Christianity. In order for Christianity to make progress until now, it was centered on Jesus, whose life was an earnest hope to realize the ideas.</p>
<p>Therefore, the ideas that Christianity seeks openly today should accord with the ideas with which Jesus started. The lifestyles of Christians should accord with the lifestyle of Jesus. The hope of Christians also should be identical with Jesus&#8217; hope.</p>
<p>Accordingly, all Christians should be able to represent Jesus&#8217; unchanging fidelity and inherit the work of heaven. Unless they become such believers, they will not be able to manifest the ideology of Jesus which they desire to realize on earth. Then the ideology of Jesus through which they desire to bring all humankind into one cannot be manifested according to heavenly principles.</p>
<h3 align="center">The Character and Principled Life of Jesus</h3>
<p>When examining Jesus&#8217; thirty years of life, we come to understand that Jesus was not a person who was limited as an individual. His character was not only his own, it also a heavenly character that represented 4,000 years of history. You should understand this.</p>
<p>Jesus&#8217; ideas were not only ones of hope that the many saints and sages wished for, but also those of the Creator, who wanted to fulfill the purpose of His providence. To fulfill his mission, Jesus walked a course of bloody tears. Thus, you should copy his character and his unchanging will that he showed through his ideas and life course with an unchanging heart.</p>
<p>Since Jesus did not mind fighting to establish an unchanging will on behalf of 4,000 years of history, you should inherit the mission of Jesus and appear before Heaven as a person of character with unchanging integrity on behalf of the 6,000 years of history that include the last 2,000 years of history since Jesus&#8217; death. If not, you would not be able to have an eternal relationship with the ideology of heavenly ethics that Jesus wished for and we are seeking today. You should keep this in mind.</p>
<p>Then how did Jesus live? Jesus led a life that considered God&#8217;s will the purpose of his life. Ever since he had pledged before God that he would take responsibility for all humankind until the completion of God&#8217;s will, he led a life of unchanging piety toward God, one unconcerned with his own comfort.</p>
<p>Then how could God establish Jesus as the savior of all humankind? Throughout the 4,000 years of history, ever since the creation, Jesus was the only one who offered his entire life for the sake of God&#8217;s will. He alone led a life of loyalty and unchanging fidelity. That is why he could be established as the eternal Messiah, and the providential work of God inherited from Moses could enter a new phase through Jesus&#8217; life.</p>
<p>Faced with the final judgment to climb over the Golgotha of limitless fear in the last days, what do you need? The ideas that already exist on earth will not make it. That is the reason we need a central figure who can open the path blocked to us. When viewed historically, because even God knew that the preexisting ideologies would not suffice, throughout the many religions that pursued God&#8217;s providence, He promised to send a central figure of the providence. This is the ideal of the Second Coming.</p>
<p>Now we should not stand in a relative position toward God and the creation. We should be people with the character, unchanging ideas, and the ideas of heavenly life of the absolute God. In this position, where we can maintain an eternal relationship with God from the beginning to the end, we should be able to manifest our value before the creation.</p>
<p>You should find the truth that guides humans to become such persons. If you are seeking such truth, you will be the successor to the hope, ideas, and life standard of Jesus, and new ideas will be added. You should also look for a stage of activities on your own. Thus, you should find an absolute being who can control all aspects with the standards of ideas and acts, and become a kind of person whom God looks for. This will be a person of character, a true person who can represent the heavenly purpose of the whole. We should become a person with heart, who can repent on his or her own.</p>
<p>Today each of us is an individual, but we should not remain only on the individual level. Christianity also should not be only for of a people or a nation, but should be for the world and all of humankind. Also, it should represent all human history and be responsible for the historical hope of humanity. At the same time, it should represent the ideology of heavenly principles and human ethics.</p>
<p>You should clearly feel that such a history, the historical hope, and the ideology of heavenly principles and human ethics are connected to your living environment. You should be able to say, &#8220;My Lord, is this not what You wish for? I will fulfill it for You,&#8221; before Jesus who came 2,000 years ago as an unchanging man of character and a substantial being of hope. We should be able to reflect upon the words of Jesus who prayed, &#8220;Heavenly Father, please accept this,&#8221; after having fulfilled his responsibility for the will of Heaven with an unchanging will on behalf of the principles of heaven.</p>
<h3 align="center">The Mental Attitude of Jesus,<br />
Who Overcame His Lonely Environment</h3>
<p>Then with what kind of attitude of mind did Jesus pioneer and overcome his difficult environment? Jesus overcame his difficult environment with an unrivalled determined heart to have humans restore human ethics and have them connected to heavenly principles. He felt responsible for fulfilling the historical hope of all of humanity.</p>
<p>Then what were the difficulties Jesus was faced with? He had to fight not only against himself, but also against legions of the invisible Satans that were invading humans then. Alone, he had to pioneer the path blocked by the people then and by all the habits developed throughout history and the trends of the era.</p>
<p>In such a hard position, who has fought Satan on Jesus&#8217; behalf? Who has courageously pioneered the difficult path on his behalf! Today, on behalf of Jesus in such a position, at some point you should become a person who can fight to save the world and fulfill your responsibility as a human on earth. Unless such a person appears, the ideal that Jesus wished for cannot be fulfilled on this earth.</p>
<p>The people of the era did not recognize Jesus who had come as a being with a historic character to save them from their fallen state. Thus, he walked a solitary and extremely lonely path. However, he did not have his own hope.</p>
<p>His hope was only to save fallen people. Yet until now, people have not understood such a lonely situation of Jesus. Nor can they know Jesus, whose total hope was to save all humankind without thinking of himself, even in the midst of such loneliness. Further, even his followers did not know the situation of Jesus. Thus, you should understand that Jesus is the king of kings of loneliness.</p>
<p>Also, Jesus did not pray for himself alone. All of his words and acts, what he saw, heard, and felt were not to benefit himself. Those words and acts were on behalf of history, humanity, and heavenly principles. Thus, he attempted to manifest the real existence of the eternal and unchanging God.</p>
<p>Although Jesus led such a sad life of shedding tears while others did not notice, you should understand that he was a man with a great will. You should repent that you did not figure out that he was in a frustrating position where he had to fight Satan, forgetting his difficult environment without losing the ideology and conviction of God, the Creator. You should lament over yourselves. Jesus did not establish an ideology for himself, but for heaven. His ideas were unchanging ones that expressed God&#8217;s internal heart and the fundamental idea presented through many ideologies and thought throughout history. Then how did Jesus live with such ideas? How did he overcome his environment and relate to God? Jesus was a substantial being with limitless value, a human being of original nature who could sing God&#8217;s glory. He should have experienced the joy that Adam and Eve had experienced before the fall. Yet he was born into the fallen world, and on behalf of God, he had to take control over the difficult environment.</p>
<p>Due to the fall, humans had no choice but to lead a life of grief. Also, due to the fall, they had to experience pain and dwell in the world of death. Similarly, Jesus came to an earth filled with grievances, sadness, pain and death. He was a star who had to stand on that sadness and fight for heaven&#8217;s principles with that heart.</p>
<p>Jesus had to walk a path of sadness to feel God&#8217;s sadness. The heartbreaking pain he felt was not for himself, but because he had to fulfill a mission to indemnify the sorrow of history through himself. Therefore, he was frustrated with pain on behalf of history, the providence and people.</p>
<h3 align="center">Jesus&#8217; Love, Loyalty and Patience Toward God</h3>
<p>Jesus has never changed his center, no matter what kind of sadness and suffering he went through, or even the fear with which he was faced. Jesus was to inherit the heavenly ideology and take full responsibility to fulfill a mission of pioneering an unchanging path. If he had changed his center under the circumstances, the victorious history of heaven could not have begun.</p>
<p>Jesus pioneered a victorious path of heavenly principle, overcoming all hardships in spite of his difficult environment, hopeless situation, and in the position of being accused by Satan. To pioneer the way, Jesus emphasized a love that has never existed throughout history. No matter what kind of circumstances he was faced with, he asserted that we should have patience to overcome. As sinners are loyal to evil, we should be even more loyal to the will of God. This is the basis of the Holy Spirit&#8217;s nine fruits. Through a life of love, joy and peace will come. Through patience, compassion and goodness will come. Through a life of loyalty, gentleness and humility will come.</p>
<p>To remove all of the evil elements under the sovereignty of the fall, Jesus emphasized heavenly love, heavenly patience, and heavenly loyalty. This is the ideology to realize the building the Kingdom of Heaven. Do you have the love of Christ within you? Do you have patience and loyalty? Jesus was a being of substantialized love on behalf of God&#8217;s heart. Even on the sorrowful way to Golgotha, he was the hero of patience, with concern for the sufferings of all of humankind. He was a representative of loyalty toward heaven. More than anyone, he had given devoted service to heaven.</p>
<p>Then what is the source of Jesus&#8217; love, patience and loyalty? They are not from Jesus himself. Jesus was only playing the role of a mediator who could connect the love of God to humans. Jesus, who came to save ignorant humans, was the incarnation of God&#8217;s love and a substantial being with God-like value.</p>
<p>Then how could Jesus manifest God&#8217;s love, which had not existed before in history? He could overcome any difficulties for God and His will, and could even give up his own life. That is why God&#8217;s love could dwell with him, and for the first time in human history, he could personally incarnate the love of God. When Jesus came to this earth and sought God&#8217;s love, he did not place a priority on logic. He did not talk about the definition of love or its logic. He represented human history in the light of actualizing love. He did not mention anything that he personally did not feel or actualize. It was because he knew that one could have an eternal relationship with God only through real acts.</p>
<p>Then where did Jesus&#8217; actualized love come from? It was not from Jesus himself. Because he could fathom God&#8217;s inner heart, he could also create such an inner standard of heart. People did not know this.</p>
<p>Then what is God&#8217;s love like? Today people on earth betray God and others and change their hearts many thousands of times, but God cannot do it. God&#8217;s love is eternal and unchanging. Because man did not know such a heart of God, people did not believe and betrayed each other.</p>
<p>Then where is God&#8217;s patience coming from? The reason God has been leading a dispensation of struggle was to fulfill love. Also, the reason He has been endlessly patient with evil has been to establish the ideology of a good life. That is, to establish the standard of the unchanging heavenly laws to create a true human, He has been patient for 6,000 years. To fulfill the true will of God in this way, by finding a person who resembles God and can represent the value of all humankind, God has first been loyal to humans and infinitely patient with them before He expected them to be the same to Him.</p>
<p>Therefore, to achieve the will of God, who operates centered on heavenly principles, you should experience the same situations felt by God. He has been unceasingly loyal to humankind. The heart of God, who has been continuously sacrificing Himself to establish His will and who has been endlessly transcending even Himself to establish the ideas for the future, has the limitless desire to give. You should understand that you cannot stand before God with any kind of your own views or concepts.</p>
<p>Who could receive the love of God, who had been patient for 4,000 years to give His infinite love? There was no one but Jesus. Jesus knew this, and he could be grateful for the love of God even when he felt lonely.</p>
<p>Then where was there a person of character who understood that God had been sad for 4,000 years and that He had been patiently fighting Satan during that time? Who know that God could be proud of himself, by manifesting the result of the value of that patience? Again, it was Jesus alone. Thus, Jesus, who had to walk the path of Heaven&#8217;s principles on behalf of God&#8217;s patience carrying the hope of God, who wished that he could lead humans the right way, was sunk into grief.</p>
<h3 align="center">The Saints in the Last Days<br />
Who Should Follow Jesus&#8217; Example</h3>
<p>Therefore, you should also feel God&#8217;s loyal heart as Jesus did. Thus, you should realize that you should not only remain in the position of the prodigal son, but could represent the full value of God&#8217;s principles as the ideas of the creation. You should also realize that the heavenly value and historical value can be compared with one&#8217;s own value.</p>
<p>We should take after Jesus, who felt the love, patience, and loyalty of God. He understood that he who was found through God&#8217;s 4,000 years of toil and patience and that he was the hope of God. We should inherit his love, loyalty and patience. You should understand the heart of Jesus, who desired to find one such person.</p>
<p>Because Jesus represented the love of heaven and came to the earth as the historical being who could represent heavenly loyalty (that is, because he came as a person of principles to this earth) all the struggles in Heaven were transferred to earth. We should understand this.</p>
<p>We can inherit his unfulfilled mission. If such a person does not appear, not only it is impossible for Jesus to come back to earth; he also cannot have a relationship with people on earth. No one could understand the sorrow of God, who was in the position of watching Jesus. This was indescribable. Also, Jesus himself felt unbearable sorrow, thinking of God who had been toiling for 4,000 years only to find Jesus alone in the position of climbing over the path of death. Jesus, who understood the lingering sorrow of God, prayed, &#8220;Father, if it is possible, let this cup pass from me. Yet not as I will, but as You will&#8221; (Matthew 26:39).</p>
<p>Then how could Jesus who had died on the cross be resurrected? Because Jesus could laugh at Satan and his enemies who were ridiculing his death, without losing his dignity as God&#8217;s son. He pioneered a path as a master of the universe transcending his death, which Satan could not do. Also, by inheriting patience, love and loyalty, which do not exist in the satanic world, Jesus did something unimaginable in the world of Satan. That is, he could bless the enemies who killed him. Therefore, he could be resurrected and Christians could be reborn through their faith in the resurrection of the Lord.</p>
<p>As you understand the principles of heaven established by God, today you should take after the example of Jesus, who marched forward with the determination that he would never change even if he perished thousands and thousands of times. Also, by resembling the loyalty and patience established for us by Jesus, we should become a successor to and a child of the resurrection who can inherit his unaccomplished work and actualize it on the earth.</p>
<p>You should form a shimjung relationship with God in which you do not change, whether in happiness or sorrow. Multiply God&#8217;s love together and become the people who can fight the battle against Satan on behalf of Jesus. Such a person is a brother or sister of Jesus, and a person whom God had been anxious to find during the past 2,000 years.</p>
<p>You who are living in the last days, by taking after the love, patience, and loyalty of Jesus, as his representative, you should accomplish the ideas of Jesus not only on the two-dimensional level, but on the three-dimensional level as well. Further, you should be victorious in every battle with Satan and have him surrender to you. Please keep in mind that this is the mission of the saints in the last days.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/jesus-true-heart-for-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/jesus-true-heart-for-god.html" title="Permalink to JESUS&#8217; TRUE HEART FOR GOD" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US GO OVER THE HILL TO ENTER THE ORIGINAL GARDEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/when-will-we-stand-before-god.html" rel="next">WHEN WILL WE STAND BEFORE GOD? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,261 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET THE SLEEPING WORLD AWAKEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-the-sleeping-world-awaken.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-819 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-819" class="post-819 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET THE SLEEPING WORLD AWAKEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:30:37+01:00"> <a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:30:49+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
May 19, 1957</h3>
<p style="text-align: center;"><em>Psalm 98 </em></p>
<div class="poetry" style="text-align: center;">
<p class="line"><em><span class="text Ps-98-1">Sing to the <span class="small-caps">Lord</span> a new song,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-1">for he has done marvelous things;</span></span></em><br />
<em><span class="text Ps-98-1">his right hand and his holy arm</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-1">have worked salvation for him.</span></span></em><br />
<em><span id="en-NIV-15493" class="text Ps-98-2"><sup class="versenum">2 </sup>The <span class="small-caps">Lord</span> has made his salvation known</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-2">and revealed his righteousness to the nations.</span></span></em><br />
<em><span id="en-NIV-15494" class="text Ps-98-3"><sup class="versenum">3 </sup>He has remembered his love</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-3">and his faithfulness to Israel;</span></span></em><br />
<em><span class="text Ps-98-3">all the ends of the earth have seen</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-3">the salvation of our God.</span></span></em></p>
</div>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span id="en-NIV-15495" class="text Ps-98-4"><sup class="versenum">4 </sup>Shout for joy to the <span class="small-caps">Lord</span>, all the earth,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-4">burst into jubilant song with music;</span></span></em><br />
<em><span id="en-NIV-15496" class="text Ps-98-5"><sup class="versenum">5 </sup>make music to the <span class="small-caps">Lord</span> with the harp,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-5">with the harp and the sound of singing,</span></span></em><br />
<em><span id="en-NIV-15497" class="text Ps-98-6"><sup class="versenum">6 </sup>with trumpets and the blast of the rams horn—</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-6">shout for joy before the <span class="small-caps">Lord</span>, the King.</span></span></em></p>
</div>
<div class="poetry top-05">
<p class="line" style="text-align: center;"><em><span id="en-NIV-15498" class="text Ps-98-7"><sup class="versenum">7 </sup>Let the sea resound, and everything in it,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-7">the world, and all who live in it.</span></span></em><br />
<em><span id="en-NIV-15499" class="text Ps-98-8"><sup class="versenum">8 </sup>Let the rivers clap their hands,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-8">let the mountains sing together for joy;</span></span></em><br />
<em><span id="en-NIV-15500" class="text Ps-98-9"><sup class="versenum">9 </sup>let them sing before the <span class="small-caps">Lord</span>,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-9">for he comes to judge the earth.</span></span></em><br />
<em><span class="text Ps-98-9">He will judge the world in righteousness</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-98-9">and the peoples with equity.</span></span></em></p>
</div>
<h3 align="center">Prayer</h3>
<blockquote><p>Loving Father! We feel that we must materialize the ideal garden of creation which You desire. Father, You have created human beings and all things to rejoice eternally centering on goodness and love. Today our hearts desire to become intoxicated in Your goodness and resemble Your goodness, so please manifest Your goodness on all things and life. Moreover, Father of compassion, we hope to be in harmony with all created things, so please be present manifestly.</p>
<p>Please allow us the center of mind that will enable us to do this. Please give us the sacred, original nature so that we can respond to the outreach of Your hands to harmonize and rejoice. Please allow us to become sons and daughters who can sanctify everything and present it before You in cleanliness.</p>
<p>We know through the words that the eternal ideal that Heaven desires will not be accomplished apart from human beings, and we know this also from our realistic experiences. Father, in human beings there must be the standard of creation you have permitted that can represent the goodness of the whole universe, so please manifest it through the minds of the sons and daughters of yours who have gathered here and revive it into action through their bodies. Having done this, please allow this hour to be a time when we can sing, centering on our original self and through our mind, and bowing our bodies, raise our hands before Father and return glory. Father, we wish for this with the utmost earnestly.</p>
<p>We know that when the Father is in action there is not one being among all the created things that does not move and halt, so, Father, please be in action here to manifest your infinite love and produce your works of goodness. Are there any elements of evil in us that prevent us from executing Father&#8217;s works of power? Father! If those elements of evil are present in us, then please uproot them.</p>
<p>Father, we hope from the depth of our hearts that, by purifying ourselves victoriously even for this hour, we can feel to our bones the Father&#8217;s deep heart of love, the Father&#8217;s heart of goodness, and the Father&#8217;s aching heart of 6,000 years, and that you will allow us to become sons and daughters who are concerned about the Father and can attend Him. We now entrust everything in the Father, so please govern over them. We know that we cannot relate with the comprehensive knowledge of the Father with our own knowledge, and that our prestige cannot surpass Father&#8217;s comprehensive prestige. Not only that, we also realize that there is a limit to human understanding, that the ideals which humans cherish also have limits, and that the things they can be proud of also are limited.</p>
<p>We are living in this realm of limitation. So, please divulge before us, who are unworthy, the character and Sung Sang of the Father who uses the infinite relationships that transcend time and space as the foundation of the ideal, and allow us to first awaken on earth and become sons and daughters who receive the commanding words completely and act according to them.</p>
<p>Please allow the victorious base of light in which Father can be delighted to operate in our life course through the words given to us, and please allow us to nurture the ability to generate power! By doing so, we earnestly hope that you will let us face everything and overcome them, and allow that to be the standard of our lives.</p>
<p>Please let there be no gap between the heart of the conveyer and the heart of the receiver. Please grant the grace of harmony, so that by feeling the heart of the commanding Father on our own and resembling the voice of the commanding Father on our own, we can move when you move and stop when you stop.</p>
<p>Hoping most sincerely that you will allow us to inherit the heart and sung sang of the Father and return glory and beauty to the Father by bearing fruit for the center of Father&#8217;s goodness.</p></blockquote>
<p>Today, I plan to speak briefly on the topic, <em>&#8220;Let the Sleeping World Awaken.&#8221;</em> Since God is behind the dispensation, this earth will one day greet the new morning of bright future. There, we human beings will sing glory with the whole world of creation. The hope of God and human beings is that in this way human beings can join all things on earth to return glory and joy to Father. Consequently, while passing through the long history until today, human beings have yearned for the day when all humanity can rejoice centering on one ideal standard and become together intoxicated in love. Even when they did not know when that day might be, for sure, they longed for that day.</p>
<h3 align="center">God Who Is Appealing to Human Beings</h3>
<p>Then, why have humans lapsed into this realm of death? It is because human beings fell.</p>
<p>You know very well, through the Divine Principle, that there is not even one person, among the fallen people, who can realize on earth the ideals of creation that God and human beings can enjoy together, and offer joy and recitation of delight to God. What this signifies is that, until now, the new morning of the bright future, centering on God, has not come before all humanity yet. This also reveals that the time has come when human beings should become open to new ideology and doctrine.</p>
<p>Therefore, God and human beings have the responsibility to again awaken this world, which is fast asleep in the state of not having seen the bright light of the new morning until today. You must be able to feel this.</p>
<p>Although we live in this sleeping world, we have the ears that can hear the news of the new age, eyes that can see it and senses that can feel it. If you do not have these ears, eyes and senses, you cannot awaken this sleeping world. Or, rather than awakening this sleeping world, you cannot even awaken yourselves.</p>
<p>Now, through philosophy, religion and historical perspective, we must hear the new news, realize the new reality, and furthermore hear the voice of God, which has been appealing to human beings during the 6,000 years of the dispensation, and sees the Sung Sang of God which is manifesting itself through the sacred spirit. Otherwise, we will not be able to make even the slightest relationship with the new news of new age.</p>
<p>Today many people are predicting that the last days are near, and many religions, especially Christianity, are saying that the day of judgment is near. Then, what must we seek at such times? First, we must realize that we have to wake up from sleep; to do that, we must receive some stimulation. Then, from where does that stimulation come? It comes from the new news that you can hear, see and feel in your living environment. If you cannot establish this, then you will not be able to cast aside all the bitter grief that has been accumulating through the long 6,000-year course. If you contemplate on this fact today, then with new ears, eyes and hearts, you will understand in what form the universal dispensation will emerges. Now is the time when we must develop these new eyes, ears and intelligence. Now is the time near the last days, the time when the day of judgment has arrived, so if there is a God, then He will not want to leave this land undisturbed as the world of death, or world asleep for eternity. He will surely awaken this world and restore it to the original world of creation.</p>
<p>I have just said that now is the last days; how can we know that now is the last days? Looking at how false things that wear the masks of new things are emerging in large number, we can know that now is the last days. Even looking at history, in the last days, before the appearance of true things centering on Heaven, false things came first always.</p>
<h3 align="center">The Standard of Distinction Between<br />
the True and the False</h3>
<p>As you can see, we are living in the era of confusion. On our own, we cannot distinguish from all the things that we see, hear and come across which are true and which are false. Then, on what standard, can we distinguish the true from the false? That standard is neither knowledge nor learning. It is each person&#8217;s original mind. In this moment when the last days are near, we cannot know when and who will invade us and trample upon our life and eternal hope. The invasion might come through our knowledge and some worldly conditions. Therefore, we must not put too much emphasis on the knowledge that we have or in the worldly conditions.</p>
<p>All these things cannot be the highest standard for distinction between good and evil, and they cannot determine the ultimate goodness. If they can determine the ultimate goodness, then they would have already granted us the grace to hear the voice of God and go forward toward the new hope. Moreover, they would have become manifested as the stimulating things that we can feel anew and experience substantially. However, these things have not been able to introduce us to the eternal ideals of God until now. When we look at this, we can understand that knowledge or learning is not some ideal thing that can determine goodness.</p>
<p>Today, then, when we have come to the doorsteps of the last days, what must we seek to wake up completely? We must seek our original mind and seek the new truth that can uniformly explain the world of original substance and the phenomenon world through that mind.</p>
<p>Our countless ancestors, the central figures of the dispensation, have been exerting themselves until today while passing through the long course of history to seek this mind and truth; until now, they have failed to find the true truth of the mind that can represent Heaven. Not only that, they could not establish reciprocally the standard that can relate to the mind, is in harmony with it, and produce joy as the eternal ideal element. So, on earth, the walls of darkness are blocking the way until now. You must understand this.</p>
<p>Therefore, by finding all these things and establishing the unchanging center of the heart, you must penetrate through all the barriers of darkness that block the way. You have to understand this.</p>
<p>Nonetheless, in the present religious life, the most serious problem is conceptual speculation and faith. For example, people normally try to pray based on the stimulation that they feel as they imagine the pain and misery that Jesus felt when he was dying on the cross for our sake. Yet, you should not do this. You should pray, but, first, you must call upon your original mind and develop the appropriate attitude of the heart to pray. When this is done, the Holy Father, the Holy Son and the Holy Spirit can connect to us through that foundation of heart. If this kind of relationship is forged with us, then our bodies will naturally and gracefully respond to this.</p>
<p>Then, if we are the ones who woke up from sleep first today, then what must we do for the world that is fast asleep in the darkness? We must first awaken and raise the heart of the people who are asleep.</p>
<p>In your life course, is there a great teacher? Even if there is some teacher whom you think is great, although that person might serve as temporary teacher, but he cannot serve as the teacher who can stand before the eternal heavenly principles on behalf of your eternal life and introduce the divine nature of God to you. Furthermore, though he might be a good teacher in a certain moment of an individual&#8217;s course, he cannot be the leader of eternal life who can guide you to possess true life through the character and heavenly nature within.</p>
<p>Similarly, you must realize the fact that the standard of the teacher that you are relating to at the present cannot connect you eternally to God. Therefore, you have to find your original heart and through the ears of your mind you must hear the calling of Heaven. Through the eyes of your mind, you must see the divine nature; through the senses of the mind, you must feel the heart of Heaven. Otherwise, you have no choice but to simply repeat the 6,000-year course of history that has passed behind us.</p>
<p>Until now we thought that Heaven was the only truly precious thing, but now we realize that our minds are also just as precious. By realizing this, you must set the high standard of value to which God can relate, and find the nucleus of the mind. Otherwise, you cannot stand before the heavenly principles. You who have gathered here claim that you have led diligent life of faith until now in your own way, but if someone were to ask you, &#8220;What indeed do you have of which you can be proud?&#8221; not many of you could answer, &#8220;I have something of which I can be proud.&#8221; Even if someone among you does have something of which you can be proud before heaven, God wishes that you brag about it through your original mind. Similarly, if you represent the heavenly principles and lead your life while carrying out your thoughts with the mind of compassion that can testify to the eternal ideal, then you will never deviate.</p>
<h3 align="center">The Life of Cleansing the Defiled Mind</h3>
<p>People who are leading a life of faith today frequently seek comfort from the conceptual world and from that kind of object. Although fallen, human beings originally have the character to connect with the eternal heavenly nature, and in each person&#8217;s mind there exist elements of the ideal of creation. Therefore, human beings can become one with God by unshackling themselves from sin, perfecting themselves, and lead an infinitely happy life. The believers today are not aware of this fact.</p>
<p>What is the purpose of our prayer, or the purpose of the believers of Buddhism seeking the state of self-denial through Zen Buddhist meditation? It is an attempt to awaken the elements that can become the nucleus of the mind. If you set that one standard and establish the center of mind of all that you see, hear and feel before the heavenly laws, then you can make a full bow before God and return the glory.</p>
<p>But, among the human beings today, there is no one who is penetrating into it with dead seriousness to reach that state in search of one&#8217;s original nature, even if they desire this state of mind. Moreover, there is no one who is abandoning everything for the sake of causing the rise of this mind. Although people today can abandon everything they have and step forward for the sake of some ideology or thought, they do not abandon everything for the sake of the truth, which is more important and raises up their mind.</p>
<p>Even if there are some people who forsake everything for some doctrine or give up their own assertions for the sake of some ideology, if they are not doing this to find the truth that can raise their mind, then they cannot make any valuable relationship with the heavenly laws. Then, what must you do to enter this nucleus of the mind and cleanse the defiled mind inherited through the ancestors&#8217; lineage of sin for 6,000 years? Just as Jesus said, &#8220;The first commandment is that you exert all of your heart, will and character to love the Lord God,&#8221; you must be in the position of doing your utmost.</p>
<p>Moreover, you must become someone who can step forward at the cost of your life, no matter what kind of work you do or what kind of problem you face. You must do this in the place of your dwelling. You must do the same for all things that are unfolding, centering on the hope that you hold. Even in the forked road of life and death, you must exert all of your mind and body. You have to understand that if you do not do this, then you will not spark the nucleus of the heavenly mind, which enters motion based on the purpose of doing the utmost.</p>
<p>Then, to what extent must we try to provoke this kind of mind? In the course of 6,000 years of human history, there came and went countless prophets, loyal subjects, women of fidelity, and filial sons and daughters. However, no matter how much loyalty, fidelity and filial piety they demonstrated, until now, the center of mind that causes one to embark upon the road toward the complete realization of the ideal world of creation has never been raised. From this we can understand that with their loyalty, fidelity and filial piety, the dispensation of restoration cannot be brought to conclusion.</p>
<p>Therefore, you must also exhibit the heart of uttermost sincerity, exert all of your strength and demonstrate the highest loyalty for Heaven, to set a standard higher than the loyal subjects, filial sons and women of fidelity who pursued goodness for the sake of salvation of humanity until now. Furthermore, if these people, we the Korean people, bear the mission to awaken humanity in the future and usher in the new morning, then the Korean people must exert a more sincere heart than any other people for the sake of God&#8217;s will. If you who are here feel the sense of mission and responsibility on the world level to pioneer the new course of faith, then to manage that mission in your life you must be trying harder and live more diligently than anyone else in the world.</p>
<p>Similarly, can you demonstrate more loyalty and sincere heart than the ancestors who have done their utmost to be loyal and sincere toward Heaven? This is the problem.</p>
<h3 align="center">We Who Must Wake Up from the World of Darkness</h3>
<p>If you become the loyal subjects and filial sons that history has never seen until today and become the people of faith who exert all of their heart and will and show the highest loyalty, and if there are more such people among us Koreans than any other people of the world, then I can guarantee that, without fail, these Korean people can represent the heavenly laws and stand in the position closest to heaven. Therefore, if you are trying to hold up the new signal light of faith as the new people and go before all people with the entire mission and responsibility, then you must be in the frontline before anyone else concerning demonstrating a benevolent heart or sincere heart, and you have to become more truthful than they. If there are such people of faith, then even if the history of restoration is prolonged, God will try to steer the dispensation centering on that person. Today, even if sin is spreading and the world is in confusion, if there is a person who holds up the new torch of faith in this manner, then that people could receive the calling from God who is trying to awaken this sleeping world.</p>
<p>Do you then have the voice that you can speak to this society? Do you have some power that can bring stimulation? If you are equipped with the tools that can become the foundation of this society and if you have some power to stimulate this society, then more than anyone else in history, you must exert yourself assiduously to awaken this society. Only when you can present and speak something new to this society with this kind of sincere and loyal heart, can you wake up from the world of darkness and enter the eternal realm of God&#8217;s love.</p>
<p>You who have gathered here today, have you heard some new message? If you did hear, what kind of words are they? In my opinion, you have merely heard through your ears. Have you witnessed some new fact? This also is seen merely with your eyes. Still, you could hear and see even partially, because these things were already promised.</p>
<p>If there is some fact that you have seen with your eyes and heard with your ears, then from now on, you must securely establish the center of the heart that can see, hear and feel everything in a new light. If you cannot become like this, then when, in the last days, Heaven orders, &#8220;Wake up for the sake of the world and all people,&#8221; you will not be able to wake up no matter how hard you try.</p>
<p>Until now, human beings have tried to serve great teachers and read good books. Great teachers and books are probably also necessary for human beings. However, with only them, we cannot build the eternal ideal garden, and we cannot liberate humanity. Consequently, when you pray, you have to connect with the mind centered on the heavenly principles.</p>
<p>If there is something that you have seen, felt or heard through this prayer of the mind, then you have the responsibility to manifest that. In other words, if you have been awakened in the realm of time where you see, hear, feel and speak, then you should firmly establish the new ideology of life.</p>
<p>You who are in this process must now open your eyes wider, hear more with your ears, and feel more with your mind through more heartbreaking ordeals. Moreover, you must look upon the new stage of life and look toward the world of new life and heavenly principles.</p>
<p>From this point of view, the suffering that humanity is going through today allows them to feel new reality, and lets them participate in the sorrow of God. However, when we feel that sorrow of God, even as we feel the impulse to liberate Him from the sorrow, we cannot maintain that heart for a long time because, when we confront our actual life, we do not have the power to transcend the difficulties of our practical life. Moreover, until now we have looked down upon this world with the negative thought that is a living environment of chronic illness. Thus, without even being aware of it, we have been repeating it and have been shackled to the position of anguish.</p>
<h3 align="center">The Heart of Righteous Indignation Toward Evil</h3>
<p>Now, if you have become someone who can open new eyes, hear, see, realize and march in a new manner, then what kind of position should you stand in? The most important task you must do is establishing goodness on the behalf of history, establishing the heavenly principles on behalf of the present reality, and fulfilling the will of God on the behalf of the future.</p>
<p>After completing this mission and passing through the position of death, you can feel the triumphant heart of Jesus and complete your responsibility by feeling the indignant heart toward evil. If the power of Jesus that overwhelms you with this heart of righteous indignation does not guide you, then you will deviate without being aware of it.</p>
<p>With the truth that you have seen, heard, felt and known until now or when you are caught up in the practical living environment, you cannot prevail over evil, so you must transcend history and practical reality to feel righteous indignation toward evil. Being responsible for the eternal history and representing the heavenly laws, you should go before Heaven and can say, &#8220;Father, I have come forward to defeat the enemies, so please give me any kind of responsibility.&#8221; Similarly, if you do not become soaked throughout with the feeling of righteous indignation that can shake up practical reality, then without your being aware of it, you will lose your center.</p>
<p>Therefore, you must now separate right and wrong in your daily life based on your original heart and conscience, and from the position of having concern over the dispensation of God, you must feel the heart of righteous indignation. If you cannot possess such a heart of righteous indignation, you cannot carry on the decisive battle with Satan.</p>
<p>What was the reason that Jesus who came 2,000 years ago could be victorious in the fight with Satan? It is because, after clearly knowing the root of the enemy, who has been in conflict with God for 6,000 years, Satan, who was the enemy of our ancestors and righteous people, he could pick up the rod of judgment on behalf of God and strike them. Today, even after becoming overwhelmed by righteous indignation and after setting the standard to dominate all conditions of reality, if you cannot meet the counterpart who has the same will, you can appeal before Heaven. So, in the Garden of Gethsemane, Jesus forgot all hardships and prayed, and feeling the heart of universal righteous indignation he appealed. Accordingly, you must vanquish Satan, who is God&#8217;s enemy and our enemy, by promoting God&#8217;s public cause. Going one step further, you should be able to take responsibility for God&#8217;s will on behalf of the world. Only when you can do this, when you construct the ideal garden that God desires, can you own that ideal garden as your own.</p>
<p>After developing the feeling of righteous indignation, what should we do? We must become united and only shout for the Kingdom of Heaven. If, while crying out for the Kingdom of Heaven, someone who is closer to the Heavenly laws, someone who has a heart of seeking public interest for the sake of goodness appears, then we must, of course, have the generosity to be in harmony with him. Thinking from this point, because the Christians who are confronting this world of sin have entered the realm where they can call out to God, they are feeling more indignation than any others.</p>
<h3 align="center">Believers Who Must Execute<br />
the Event of Judgment in Substitution</h3>
<p>If you have the heart of righteous indignation and public interest that will allow you to become one with the righteous people, you must combine the heart of righteous indignation and public interest to confront Satan on the world level, and exert all of your heart and soul to complete your responsibility. When you fulfill this kind of world mission, God can finally perform the work of judgment. The hope that God had while He passed through the long course of history and endured is the appearance of someone who, possessing the heart of righteous indignation, strikes his own inadequacies first, and then represents the world in all aspects to confront Satan. Moreover, only when such people join their hearts to lead the church, lead the society and the world and appear before God, can God finally make the final decision of judgment.</p>
<p>If you want to become the son of God, then you must possess the heart of righteous indignation that has penetrated deep into God&#8217;s heart for 6,000 years. You should also be able to act on behalf of God&#8217;s heart, where the bitter grief is rooted deep. You must also feel righteous indignation toward the enemy Satan.</p>
<p>Similarly, if you represent the heart of God and possess the heart of righteous indignation toward the enemy, you should then become united to move onto the world level, and you can win the fight against Satan. Many people today do not realize they have this mission.</p>
<p>The Christian believers emphasize the words of Jesus, &#8220;Love your enemy.&#8221; However, these words do not mean that you should love sin and evil within the enemy, but that you should look upon the person who is fettered by sin with sympathy. You must understand this clearly. There cannot be such a thing as unconditional love. Telling you to love other people is also not asking you to love the sin of that person, but to love that person himself. At the time of judgment in the last days, to save sinners from the realm of sin, God must strike Satan, who is dominating over the sinners, but He can strike Satan only through true human beings.</p>
<p>Now, you must not desire the Kingdom of Heaven and follow God for your own glory. Even if you entreat God to do something for you, you must have the qualifications to make the request. Consequently, you must always examine whether you have appealed to God within the realm of God&#8217;s ideology and heart, at the time and position that you can receive the permission.</p>
<p>Yet, how are we? We do not understand the heart of God, and have not freed ourselves from the position of having betrayed the heavenly laws, we are only appealing before Heaven that it answers our prayers. We must step outside this position. Forgetting everything about ourselves and possessing the heart of righteous indignation centering on the heavenly laws, we must become the people who, forgetting everything, whether we ourselves are ruined or prosperous, holding the people and the world that are dying and holding onto Heaven, which is in sorrow, demonstrate concern and do our utmost. Only after we set this standard of life and pray, &#8220;Heaven, please be responsible for me,&#8221; will you become closer to the heart of God. However, there are many people who are following Heaven without setting this kind of standard of life. Therefore, you should have the mind-set of the master of Heaven and earth.</p>
<p>If you cannot become the ones who confront Satan from the position of having fulfilled the responsibility that you must do, the responsibility that God wants, and if you cannot become qualified to fight with Satan on behalf of Satan, then your hopes can never be realized. Therefore, you today must possess the heart of righteous indignation in the sphere of your life, and standing on the side of God you must be able to execute the judgment toward Satan in substitution. If the center of your minds, which can enable each of you to bear this responsibility, is not secured, then you cannot usher in the one day whose purpose is to judge Satan.</p>
<p>Because the dispensation of Heaven has world quality, you must also relatively pursue the ideology that has world quality. Therefore, more than anything else, you must first reflect, for whom is the demand that you make and for whom is the hope that you desire. However, most people today demand a self-centered will, rather than the will centered on God; rather than obtaining joy centering on the grace of God, they try to do so centering on themselves.</p>
<p>Even though God allowed some grace to you, that grace is not for just your sake, but it is the grace that must be propagated to the ends of the world stepping on you as the base; it is the grace that must bring to submission Satan, who commands power and authority; and it is the grace that must be returned to Heaven.</p>
<p>Similarly, the grace you received from Heaven is not only for your sake. It is grace for the sake of society, people, world, the will and heaven. Despite this, most people cling to this grace and secure their seat in their own sphere of life, and try to enjoy it only as their own. But, this grace will leave you because it can no longer remain in that place.</p>
<p>Therefore, if you have received some divine favor from heaven, then with the heart of righteous indignation you can fight with Satan on behalf of heaven. You must not act in judgment centering on yourself. Similarly, if you try to take advantage of the granted divine favor, centering on yourself, or try to judge others, centering on yourself, then, because this is not the right attitude of faith, you will not be able to walk the path of the will that is allowed.</p>
<h3 align="center">Our Responsibility to Awaken the World</h3>
<p>You who must then execute the ceremony of judgment must first calmly analyze yourself and search whether you have some element that prevents your mind and body from uniting. If you discover such a thing, you should learn to strike it first with the heart of universal righteous indignation. If the body does not move according to the will of the mind, then you should wake it up and raise it up. To do that, you must forsake or strike the things that the body demands. In addition, you must by yourself be able to consider your body as your enemy, centering on your mind, and through that kind of life you must go before God.</p>
<p>Then, who has the mission to awaken the whole universe one more time? That kind of mission rests not only with God, but also with you. You must understand this situation.</p>
<p>However, when you step forward in an attempt to be responsible for this task, there will appear an invisible spiritual Satan and a visible substantial Satan who will block your way. Moreover, among the members of your family who are closest to you, there will be people who block your way.</p>
<p>Therefore, to be able to take pride in yourself before the world, you must be able to abandon yourself at some time, and if you wish for a family that emerges before the world, then you should be able to sacrifice your family for the sake of the world. The same thing holds true for the nation.</p>
<p>Based on this hour today, you should now be able to feel to what level you have awakened yourself before the will of the dispensation to which God is trying to give rise universally. The reason is that while your minds and bodies awaken, at the same time you have the responsibility to awaken the family, society, nation and world. If this is true, then what kind of desire and hope should we have? We must become sons and daughters who can be satisfied with being the roots that complete the mission entrusted to them on this earth.</p>
<p>To accomplish this, you must sacrifice everything. If there is a path through which this earth can return glory to God centering on heavenly laws and public interests, then not only must you sacrifice even the religion in which you believe, but also, you must abandon all that you have and step forward. Therefore, we must unite with the heart of righteous indignation to battle against Satan. Satan is our enemy now, the enemy of the past and enemy of the future. To fight with Satan and become victorious, you must all become one; having established the laws of public interest, you must use that as the criterion and charge forward.</p>
<p>Then, what is the criterion of life for us who must fight with Satan and prevail? It is first becoming the true sons and daughters who can bear the cross. Moreover, it is becoming the true sons and daughters who defeat Satan that is invading into the position of sorrow and difficulty. To do this, we must overcome this difficulty and, more than Satan, we must complete our responsibility diligently.</p>
<p>We must become the true sons and daughters of God and obliterate all evil that has existed until now. Even if evil pushes us, we should not yield. We must charge forward bravely so that we can single-mindedly be able to do far more than vanquish evil. You must understand that this is the only way that God&#8217;s will can be accomplished. In this manner, victorious individuals are expanding as victorious brothers, victorious brothers as the victorious family, victorious family as victorious society, nation and world.</p>
<p>Therefore, centering on the laws of public interest that God wants, you must have the desperate heart that yearns to relieve God of His grief, and step forward with the firm determination to confront the countless satans and become victorious even if you are fighting alone. You must keep in mind that this is the only way that when the ideal world is realized you can become the sons and daughters of God who can live eternally in the ideal realm allowed by God.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Beloved Father! We understand that the only thing that remains before us is the will of the Heavenly laws. We know that the center of that will is the Father and True Parents. We have learned that the human beings who live on earth must become the true sons and daughters of True Parents. Not only that, we realize that what the Father wants from us is that all people become brothers in oneness and true sons and daughters of the Father.</p>
<p>Father! We also understand that the greatest sin on earth is blocking and trampling upon the people who want to stand in the position of the sons and daughters you desire. Although trampling upon man&#8217;s true sincerity is also an unforgivable sin, we know those causing people to lose brotherly love is a greater sin before the heavenly laws, so please guide us to not forget this.</p>
<p>Father, when the sons and daughters who have gathered here are not able to stand up before the heavenly principles that are trying to wake them up from deep sleep due to some brother, how can we claim ourselves to be the ones who are moving according to the guidance of the shepherd? Please do not allow us to stand in that kind of position. Please allow us to become sons and daughters who can be responsible even for that brother, and build the concealed altar on behalf of the heavenly principles!</p>
<p>Please allow us to establish the ideal of the eternal son you desire, and please guide us to understand that there is the Father&#8217;s gaze which is always looking down upon us. Father, we wish with great sincerity for you to allow us to feel your loving hands and that, by experiencing the heart of the Father who is giving lessons and is in agony and by resembling the heart and Sung Sang of the Father, we can become Jesus&#8217; best disciples who can bow down and offer gratitude before that will, even if we were to die many thousand times.</p>
<p>This hour, we have heard words through which we can feel something new about the countless enemies who are blocking the path to the liberation from the bitter grief of heaven. We have come to relate with the Father&#8217;s will in a new way. By inscribing these new learnings in our hearts, please allow us to understand that the words of today are not to end just at the level of our individual feelings, but that these words must make the connection with the heavenly principles that represent the historicity and universality, and that we have the mission to do this task.</p>
<p>Father! Please allow us to fight with the heart of public interest and righteous indignation that represent the heavenly principles toward the many enemies who are blocking this path. Guide us to march forward and endure for the sake of offering that one day of victory. Allow us to usher in that day and report to Father our grief that we have been persevering through until then. Lead us to go until the position where we can hold your precious hands and be comforted.</p>
<p>Please allow all humanity of this earth who is fast asleep to wake up. Please mobilize us and restore the world you created, since it is inside the realm of lamentation. Please grant the wisdom of Heaven to the 2.4 billion people, so they can complete their responsibility!</p>
<p>Please let the young children, who have gathered here, become sons and daughters who can go forward without hesitation in the face of any course of conflict. Earnestly wishing that, even at the cost of forsaking everything they have, you will allow them to become the elite troops of Heaven who can march forward only for the sake of the will, I offer all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html" title="Permalink to LET THE SLEEPING WORLD AWAKEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html" rel="prev"><span class="meta-nav">&laquo;</span> ON THE DAY OF RESURRECTION (SUMMARY OF SERMON)</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html" rel="next">WHY DOES THE LORD HAVE TO COME BACK? <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,176 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US AVOID BEING PUNISHED FOR OUR SINS BY RESTORING THE ORIGINAL NATURE OF GOODNESS &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-841 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-841" class="post-841 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US AVOID BEING PUNISHED FOR OUR SINS BY RESTORING THE ORIGINAL NATURE OF GOODNESS</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:50:36+01:00"> <a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:50:36+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
July 21, 1957</h3>
<p>All things were created good, but due to the fall of Adam and Eve, the value of goodness could not be fully manifested. You know well that, without being freed from the punishment for sin, human beings have been pursuing goodness.</p>
<p>In the Garden of Eden created by God, goodness alone should have existed, but because goodness was not realized on earth, God and all creation are still lamenting over it. Consequently, no matter what kinds of hardships fallen men undergo throughout history, the ideal of goodness must be realized. Such a goal should not only be achieved on the individual level, but also be expanded to the levels of the nation, the world, and the cosmos. Thus, the time when the will of goodness can be manifested in heaven and earth should come true. For this, you are the very people who should achieve the whole purpose on the universal level, by fulfilling the will of absolute goodness. You are destined to do so.</p>
<p>We who long for the original goodness should first know the substantial being of God, the original being of goodness, who created all good things. We should understand the value of God&#8217;s goodness and spread the message. By so doing, through the words of goodness, you should restore the value of goodness of all things created by God and manifest this goodness. Otherwise, the original purpose of God&#8217;s creation cannot be fulfilled. Prior to the fall of humans, they maintained the absolute goodness of God. God let them maintain a relationship with all things created good.</p>
<p>God made all creations through the absolute, good word. Among them, He created humans with the value of the entire creation. Thus, God&#8217;s purpose of creation was to have them become a center who can sing the goodness of God. However, due to the fall, they lost such value.</p>
<p>How can fallen humans come forth again to the good God? First, we should take after the goodness of the original being, through our conscience. Next, we should act upon the words of God and manifest the value of His goodness and word. If this happens, God will find the ideal joy of goodness through which God created all things. Then humans, who have been pursuing the purpose of goodness, would have also become the substantial beings of goodness. Yet all this was frustrated due to the fall.</p>
<p>You should now realize that you are the descendants of fallen Adam and Eve, but should eventually become the ancestors of goodness by accomplishing the purpose of goodness. If not, you will not only remain with the sin inherited from Adam and Eve, but also, through each individual, you will spread the sin to the world, all of the creation, and even to Heaven.</p>
<p>You should be able to establish yourself into the right position. You should be able to praise the value of goodness in the creation created through the word by fulfilling the original goodness that God has been looking forward to on His behalf. Also, you should be able to substantialize the value of the absolute goodness of God, the original source of goodness, the original being of goodness, through your conscience. Otherwise, you cannot fulfill the whole purpose for which God wishes; nor can you find the goodness that you seek.</p>
<p>This original goodness should be realized through a substantial being centered on God&#8217;s eternal, unique, and unchanging nature, but humans, who should have been the objects of God&#8217;s nature, failed to realize the goodness due to the fall. Thus, humans lost the autonomy, dignity, and value that should have been established as their ideology of life.</p>
<p>The greatest goal of fallen people is to achieve God&#8217;s autonomy, dignity, and value. If this is not achieved, they cannot have a relationship with the eternal, unchanging, and unique God. If the human ancestors, Adam and Eve, had lived to establish these three even at the risk of their life, this would not have remained as our hope today. If these had been achieved, humans, on their own could have enjoyed the autonomy, dignity, and value of goodness and lived joyfully in the eternal Garden of Eden centered on God&#8217;s limitless goodness.</p>
<p>However, due to the wrong doings of Adam and Eve, this has remained as a hope that should be restored by each individual. In other words, if the human ancestors, Adam and Eve, on behalf of God had only possessed the autonomy, dignity and value of goodness as the objects of God, the original being of absolute goodness, humankind on earth would not live in fear, grief and despair today.</p>
<p>Adam and Eve were in the position of a creator on behalf of God. They were in the position of taking responsibility for the whole. Thus, we come to understand something fearful, that the sin committed by them not only affected them, but was to have an impact upon the entire creation, which was created good. Adam and Eve should have established the goodness of the absolute God on earth.</p>
<p>Nevertheless, they did not realize that their own sin would affect not only them but also their posterity, and furthermore, would sadden God.</p>
<p>If Adam and Eve had followed the eternal, unchanging, and unique word of God at the risk of their lives, it would have been impossible for the sins and crimes throughout all the eras of history to exist. However, because they did not follow the absolute word of God, from the moment of the fall, the sins and crimes throughout all the eras if history and in the future all started to come about in their bodies.</p>
<p>When Adam and Eve were tempted in their minds, they desired to obey God&#8217;s word, but their bodies were drawn to Satan&#8217;s temptation. Yet because the strength of the bodily temptation was greater, they disobeyed God&#8217;s will. The greater the strength of the conscience of Adam and Eve that pursued the absolute goodness, the greater became their fear.</p>
<p>The warning of their fear was that their act of the fall eternally became the origin of sins and crimes throughout history and the eras. Yet they did not know this. When Adam and Eve felt fear just when they were about to fall, with the stimulation of terror, they should have clung to absolute goodness and established an unchanging center of righteousness that can control the evil mind. On the contrary, they were united with the first being of evil. This grievous fact did not come to affect only them, but also came to affect their generations after that. Thus, you should not forget that you have no choice but to fight the original being of evil through your conscience in your daily life.</p>
<p>Keeping in mind that throughout history, that one sinful act has been confronting human consciences until the future, we should be freed from the fallen sovereignty. Though humans are descendants of the fallen Adam and Eve, because they have consciences that fight the mind of fear, following the subject of absolute goodness, there has been no time and space in which one did not fight sins and crimes.</p>
<p>Adam and Eve chose a path of fear. Along with grief, tragedy came into their lives and they finally fell into a position of despair. As they stood in the position of fear, the original source of eternal love and life, God, who had been living with Adam and Eve, left them. They came to feel undescribably miserable. Then the Garden of Eden created to be a garden of the ideal, of goodness and joy came to have nothing to do with Adam and Eve and they stood in the position of despair, falling down into the world of darkness.</p>
<p>We humans, who have been going through the history of sins and crimes, should find a purpose of life and climb up to the standard of absolute goodness during our lifetime. You should know that the person who pioneered the way is Jesus Christ. You should depend upon the words established by God and continue to pursue absolute goodness by following the leader chosen by Him. By establishing a conscience that your mind can depend on and the words of God that the conscience can depend on, you should restore the purpose of absolute goodness. By establishing a substantial being who can, on behalf of God, fulfill His will and whom our body can depend on, you should restore the purpose of absolute goodness. This is done through your connection to God&#8217;s words and the substantial being.</p>
<p>Then finally, we can enter the realm of goodness that is eternal, unchanging, and unique and we can manifest the original nature of autonomy, dignity, and value. Thus, we can fulfill the hope of God, who has been leading the dispensation for 6,000 years.</p>
<p>Because man is destined to restore absolute goodness as such, even the ethics and morality established by them should pursue goodness. Further, the reason God gave the word to them and made them actualize it was also to restore the absolute standard of historical goodness and achieve the purpose of goodness.</p>
<p>Consequently, by practicing the words of historical goodness, you should become those who can represent the history that has been fighting for 6,000 years since the fall of Adam and Eve, clinging to the words of God. This is the final task commissioned to us.</p>
<p>You should not stand in the position of grievance to which Adam and Eve had fallen from the Garden of Eden. Their way of relating to the universal word of goodness was merely from a personal viewpoint. You should be those who can cling to the eternal words of goodness and energy and thus become eternal and unchanging. If not, you cannot escape from the relationship based on the historical sin that betrayed the word of God.</p>
<p>Due to the fall, Adam and Eve came to possess fear, tragedy, and despair. This has been inherited throughout history from generation to generation, and humans in the last days should also walk the same path.</p>
<p>In the world, there are people who pursue good, whereas there are also others who pursue evil. Even among those who pursue good, there is no one who can always enjoy joy and peace. In fact, they, too, will come to groan from feelings of fear and terror because they do not know the origin.</p>
<p>Though some are pursuing good, they cannot manifest eternal good and ideology forever on their own. It is so because humans are in the process of being restored.</p>
<p>In the last days where worldwide terror, tragedy and despair appear to us due to the fall, the most important thing to do is that we must win the fight against the endless fear, tragedy, and despair by doing our utmost best with the last ounce of energy. We must take after the example of the character and life of Jesus who alone established the realm of victorious resurrection. We should know that he fought until the moment when he brought a victory in the earthly battle against the endless terror, tragedy and despair, totally forgetting his own self. All men are inclined to express their own value to others. This original nature that desires to manifest one&#8217;s own value is good. Originally, humans were to manifest the value of their original nature one hundred percent, but due to the fall, they lost that value.</p>
<p>Jesus Christ was in the position where he could have insisted on manifesting the value of his dignity, which superseded the value of all humankind. Yet even if he were violated and humiliated in misery, he fought the evil with unchanging conviction. He also abandoned all of his own hopes to establish a hope for the whole. With the conviction that his hope for the whole would definitely be fulfilled in 1,000 or even 2,000 years after his death, in order to establish the original being, the God of goodness, he confronted all tragedy, despair and fear in unchanging conviction toward God.</p>
<p>Without taking care of himself, to fulfill the purpose of goodness that God was seeking, Jesus persevered in making the sacrifices that had to be made. He forgot his toil, thinking of the joy that would be experienced in the future. He maintained the conviction that he would transform the feeling of fear in the present into authority for the future.</p>
<p>You should take after the character and heart of Jesus. Even if you are faced with the reality of being immeasurably ignored and violated, you should be able to endure and tolerate it. Then you can be freed from the fallen sovereignty. Now in order for you to forget all of the hardships of the world and overcome all pain, you should be able to establish hope in the midst of despair, joy in the midst of misery, and authority in the midst of fear. This is also a mission that you should fulfill.</p>
<p>You should never be invaded by Satan. You should be able to demonstrate the heavenly good with heavenly joy, hope and authority that can eliminate the invasion of Satan. By so doing, you can manifest the value of goodness on earth and the sovereignty over the creation which was lost, with qualifications to become their master. Then even God will not be able to do whatever He wants with you.</p>
<p>We can reside with God when our fallen nature is restored to our original nature. Then we will be qualified to be His representatives. All the creation bows down before God without any resistance but instead with the joy of receiving a glorious day of victory. When your fallen nature is restored to your original nature, when you appear before the creation, they will also willingly obey you with dignity.</p>
<p>You should also manifest the value of goodness. Even if you do not insist or prove that you are good, you should be able to make people follow you out of respect for the value of your goodness to build an eternal relationship with you. Through obtaining these values, when you become substantial individuals who can represent an eternal hope, joy, authority and good, then God can finally rest in peace.</p>
<p>Such people alone can be freed from the historical providential course that requires punishment for the sins committed in the past. If not, you will be punished for the sins committed and leave grievance behind for tens of thousands of generations to come. Thus, by realizing this, you should act upon your new determination and commitment.</p>
<p>Do you have the word that can manifest a new sovereignty, a new dignity, and new value? Did you see the original being of goodness and feel Him? Then you should keep your position. Do not lose the heavenly sovereignty that God has been protecting. Do you believe that the words of the Unification Church are a truth that can introduce eternal goodness? Do you believe that through these words, you can meet God? If so, wherever you go, on behalf of God, do not lose the sovereignty, dignity, and value. Satan will always try to invade them. Whatever environment you may be in, when you do not lose this authority and position and march forward, you should realize that the source of eternal goodness, God, will endow you with the authority to judge the satanic world.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html" title="Permalink to LET US AVOID BEING PUNISHED FOR OUR SINS BY RESTORING THE ORIGINAL NATURE OF GOODNESS" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html" rel="prev"><span class="meta-nav">&laquo;</span> THE PERSON WHO IS TO REMAIN BEFORE GOD&#8217;S WILL</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html" rel="next">LET US GO OVER THE HILL TO ENTER THE ORIGINAL GARDEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,273 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BE A VICTOR FOR GOD &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-be-a-victor-for-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-837 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-837" class="post-837 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BE A VICTOR FOR GOD</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:48:29+01:00"> <a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:48:29+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON<br />
Chung Pa Dong Church<br />
Seoul, Korea<br />
June 30, 1957</h2>
<h4 style="text-align: center;" align="center">
<em>Luke 19:8-44, 22:39-46, 23:44-49 </em></h4>
<p style="text-align: center;"><em><span id="en-NIV-25740" class="text Luke-19-8"><sup class="versenum">8 </sup>But Zacchaeus stood up and said to the Lord, “Look, Lord! Here and now I give half of my possessions to the poor, and if I have cheated anybody out of anything,I will pay back four times the amount.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25741" class="text Luke-19-9"><sup class="versenum">9 </sup>Jesus said to him, <span class="woj">“Today salvation has come to this house, because this man, too, is a son of Abraham.</span></span> <span id="en-NIV-25742" class="text Luke-19-10"><span class="woj"><sup class="versenum">10 </sup>For the Son of Man came to seek and to save the lost.”</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-25743" class="text Luke-19-11">The Parable of the Ten Minas</span></em></h3>
<p style="text-align: center;"><em><span class="text Luke-19-11"><sup class="versenum">11 </sup>While they were listening to this, he went on to tell them a parable, because he was near Jerusalem and the people thought that the kingdom of God was going to appear at once.</span> <span id="en-NIV-25744" class="text Luke-19-12"><sup class="versenum">12 </sup>He said: <span class="woj">“A man of noble birth went to a distant country to have himself appointed king and then to return.</span></span> <span id="en-NIV-25745" class="text Luke-19-13"><span class="woj"><sup class="versenum">13 </sup>So he called ten of his servants and gave them ten minas.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25745a" data-link="[&lt;a href=&quot;#fen-NIV-25745a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+19:8-44,+22:39-46,+23:44-49#fen-NIV-25745a">a</a>]</sup> Put this money to work, he said, until I come back.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25746" class="text Luke-19-14"><span class="woj"><sup class="versenum">14 </sup>“But his subjects hated him and sent a delegation after him to say, We dont want this man to be our king.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25747" class="text Luke-19-15"><span class="woj"><sup class="versenum">15 </sup>“He was made king, however, and returned home. Then he sent for the servants to whom he had given the money, in order to find out what they had gained with it.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25748" class="text Luke-19-16"><span class="woj"><sup class="versenum">16 </sup>“The first one came and said, Sir, your mina has earned ten more.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25749" class="text Luke-19-17"><span class="woj"><sup class="versenum">17 </sup>Well done, my good servant! his master replied. Because you have been trustworthy in a very small matter, take charge of ten cities.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25750" class="text Luke-19-18"><span class="woj"><sup class="versenum">18 </sup>“The second came and said, Sir, your mina has earned five more.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25751" class="text Luke-19-19"><span class="woj"><sup class="versenum">19 </sup>“His master answered, You take charge of five cities.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25752" class="text Luke-19-20"><span class="woj"><sup class="versenum">20 </sup>“Then another servant came and said, Sir, here is your mina; I have kept it laid away in a piece of cloth.</span></span> <span id="en-NIV-25753" class="text Luke-19-21"><span class="woj"><sup class="versenum">21 </sup>I was afraid of you, because you are a hard man. You take out what you did not put in and reap what you did not sow.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25754" class="text Luke-19-22"><span class="woj"><sup class="versenum">22 </sup>“His master replied, I will judge you by your own words, you wicked servant! You knew, did you, that I am a hard man, taking out what I did not put in, and reaping what I did not sow?</span></span> <span id="en-NIV-25755" class="text Luke-19-23"><span class="woj"><sup class="versenum">23 </sup>Why then didnt you put my money on deposit, so that when I came back, I could have collected it with interest?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25756" class="text Luke-19-24"><span class="woj"><sup class="versenum">24 </sup>“Then he said to those standing by, Take his mina away from him and give it to the one who has ten minas.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25757" class="text Luke-19-25"><span class="woj"><sup class="versenum">25 </sup>Sir, they said, he already has ten!</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25758" class="text Luke-19-26"><span class="woj"><sup class="versenum">26 </sup>“He replied, I tell you that to everyone who has, more will be given, but as for the one who has nothing, even what they have will be taken away.</span></span> <span id="en-NIV-25759" class="text Luke-19-27"><span class="woj"><sup class="versenum">27 </sup>But those enemies of mine who did not want me to be king over them—bring them here and kill them in front of me.’”</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-25760" class="text Luke-19-28">Jesus Comes to Jerusalem as King</span></em></h3>
<p style="text-align: center;"><em><span class="text Luke-19-28"><sup class="versenum">28 </sup>After Jesus had said this, he went on ahead, going up to Jerusalem.</span> <span id="en-NIV-25761" class="text Luke-19-29"><sup class="versenum">29 </sup>As he approached Bethphage and Bethany at the hill called the Mount of Olives, he sent two of his disciples, saying to them,</span> <span id="en-NIV-25762" class="text Luke-19-30"><span class="woj"><sup class="versenum">30 </sup>“Go to the village ahead of you, and as you enter it, you will find a colt tied there, which no one has ever ridden. Untie it and bring it here.</span></span> <span id="en-NIV-25763" class="text Luke-19-31"><span class="woj"><sup class="versenum">31 </sup>If anyone asks you, Why are you untying it? say, The Lord needs it.’”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25764" class="text Luke-19-32"><sup class="versenum">32 </sup>Those who were sent ahead went and found it just as he had told them.</span> <span id="en-NIV-25765" class="text Luke-19-33"><sup class="versenum">33 </sup>As they were untying the colt, its owners asked them, “Why are you untying the colt?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25766" class="text Luke-19-34"><sup class="versenum">34 </sup>They replied, “The Lord needs it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25767" class="text Luke-19-35"><sup class="versenum">35 </sup>They brought it to Jesus, threw their cloaks on the colt and put Jesus on it.</span> <span id="en-NIV-25768" class="text Luke-19-36"><sup class="versenum">36 </sup>As he went along, people spread their cloaks on the road.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25769" class="text Luke-19-37"><sup class="versenum">37 </sup>When he came near the place where the road goes down the Mount of Olives,the whole crowd of disciples began joyfully to praise God in loud voices for all the miracles they had seen:</span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span id="en-NIV-25770" class="text Luke-19-38"><sup class="versenum">38 </sup>“Blessed is the king who comes in the name of the Lord!”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25770b" data-link="[&lt;a href=&quot;#fen-NIV-25770b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Luke+19:8-44,+22:39-46,+23:44-49#fen-NIV-25770b">b</a>]</sup></span></em></p>
</div>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Luke-19-38">“Peace in heaven and glory in the highest!”</span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-25771" class="text Luke-19-39"><sup class="versenum">39 </sup>Some of the Pharisees in the crowd said to Jesus, “Teacher, rebuke your disciples!”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25772" class="text Luke-19-40"><span class="woj"><sup class="versenum">40 </sup>“I tell you,”</span> he replied, <span class="woj">“if they keep quiet, the stones will cry out.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25773" class="text Luke-19-41"><sup class="versenum">41 </sup>As he approached Jerusalem and saw the city, he wept over it</span> <span id="en-NIV-25774" class="text Luke-19-42"><sup class="versenum">42 </sup>and said, <span class="woj">“If you, even you, had only known on this day what would bring you peace—but now it is hidden from your eyes.</span></span> <span id="en-NIV-25775" class="text Luke-19-43"><span class="woj"><sup class="versenum">43 </sup>The days will come upon you when your enemies will build an embankment against you and encircle you and hem you in on every side.</span></span> <span id="en-NIV-25776" class="text Luke-19-44"><span class="woj"><sup class="versenum">44 </sup>They will dash you to the ground, you and the children within your walls.They will not leave one stone on another, because you did not recognize the time of Gods coming to you.”</span></span></em></p>
<p style="text-align: center;">
<p style="text-align: center;"><em><span class="text Luke-22-39"><sup class="versenum">39 </sup>Jesus went out as usual to the Mount of Olives, and his disciples followed him.</span><span id="en-NIV-25905" class="text Luke-22-40"><sup class="versenum">40 </sup>On reaching the place, he said to them, <span class="woj">“Pray that you will not fall into temptation.”</span></span> <span id="en-NIV-25906" class="text Luke-22-41"><sup class="versenum">41 </sup>He withdrew about a stones throw beyond them, knelt down and prayed,</span> <span id="en-NIV-25907" class="text Luke-22-42"><span class="woj"><sup class="versenum">42 </sup>“Father, if you are willing, take this cup from me; yet not my will, but yours be done.”</span></span> <span id="en-NIV-25908" class="text Luke-22-43"><sup class="versenum">43 </sup>An angel from heaven appeared to him and strengthened him.</span><span id="en-NIV-25909" class="text Luke-22-44"><sup class="versenum">44 </sup>And being in anguish, he prayed more earnestly, and his sweat was like drops of blood falling to the ground.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25909a" data-link="[&lt;a href=&quot;#fen-NIV-25909a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+19:8-44,+22:39-46,+23:44-49#fen-NIV-25909a">a</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25910" class="text Luke-22-45"><sup class="versenum">45 </sup>When he rose from prayer and went back to the disciples, he found them asleep, exhausted from sorrow.</span> <span id="en-NIV-25911" class="text Luke-22-46"><span class="woj"><sup class="versenum">46 </sup>“Why are you sleeping?”</span> he asked them. <span class="woj">“Get up and pray so that you will not fall into temptation.”</span></span></em></p>
<p style="text-align: center;">
<p style="text-align: center;"><em><span class="text Luke-23-44"><sup class="versenum">44 </sup>It was now about noon, and darkness came over the whole land until three in the afternoon,</span> <span id="en-NIV-25981" class="text Luke-23-45"><sup class="versenum">45 </sup>for the sun stopped shining. And the curtain of the temple was torn in two.</span> <span id="en-NIV-25982" class="text Luke-23-46"><sup class="versenum">46 </sup>Jesus called out with a loud voice, <span class="woj">“Father, into your hands I commit my spirit.”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-25982a" data-link="[&lt;a href=&quot;#fen-NIV-25982a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Luke+19:8-44,+22:39-46,+23:44-49#fen-NIV-25982a">a</a>]</sup></span> When he had said this, he breathed his last.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25983" class="text Luke-23-47"><sup class="versenum">47 </sup>The centurion, seeing what had happened, praised God and said, “Surely this was a righteous man.”</span> <span id="en-NIV-25984" class="text Luke-23-48"><sup class="versenum">48 </sup>When all the people who had gathered to witness this sight saw what took place, they beat their breasts and went away.</span> <span id="en-NIV-25985" class="text Luke-23-49"><sup class="versenum">49 </sup>But all those who knew him, including the women who had followed him from Galilee, stood at a distance, watching these things.</span></em></p>
<h4 align="center">
<p>Prayer</h4>
<blockquote><p>We understand that after the 4,000 years of Your toil since the creation of Adam, Jesus Christ was sent by You, as the fruit of Your tears, sweat, and blood, and as the Father&#8217;s substantial body. He had the mission of taking on Your behalf the tears, sweat, and blood and the mission of liberating You from Your grieving heart. Thus Christ walked a path of tears on Your behalf, a path of endless toil without a moment of rest. He walked it on behalf of all humankind. It was the path of a public life of sweating toil. Thinking of this, Father, I humbly ask You to allow us at this time and hour to truly reflect upon ourselves and see whether we can face Christ. Please guide us to become the ones who can think back to the time of Jesus, who bled after having come as the substantial being of God on the foundation of the bloody altars of countless saints and sages who had worked during the past 4,000 years.</p>
<p>When Jesus was climbing to Golgotha carrying a cross on his back, to the fragile women who were weeping from a distance, he said, &#8220;Daughters of Jerusalem, do not weep for me, but weep for you and your children.&#8221; Please let us understand the earnest heart of Jesus then and experience it through this opportunity.</p>
<p>We know that the ones who cannot understand the scene of the cross cannot be saved, and the ones who are unable to experience the heart of Jesus when he was walking toward the cross cannot stand in the place of truth. Thus, Father, please have compassion upon Your sons and daughters gathered here at this moment.</p>
<p>We have nothing to offer to You, but please let us become the guards of goodness, who fight the enemies invading us. Let us embed in our minds the lonely figure of Jesus in the Garden of Gethsemane. Father, I sincerely wish and desire for this to be done.</p>
<p>We know that it is time for us also to cry out the last appeal of Jesus in the Garden of Gethsemane toward this wilderness of a world and to climb the hill of the worldwide Golgotha. Thus, Father, I sincerely wish and desire that You will guide us not to become sons and daughters who distance themselves from Christ and live for only our own selves.</p>
<p>Please take responsibility for the many lives who are gathered here together. Guide them to be willing to go the path of restoration with a pure heart. Grant grace like a flame upon this place of gathering. Father! Are there any children who are not aware of God&#8217;s will among the children gathered here? Are there any who cannot feel Your heart, buried as they are in death? Father, please appear as the flame of the Holy Spirit, and perform Christ&#8217;s work of resurrection. As Jesus was resurrected from death on the cross, allow us the same work of resurrection to happen to us at this hour. Father, I sincerely wish and desire for this to be done.</p>
<p>Father, from among many people, we thank you for calling us. The only thing that we are concerned about is that we may not be able to fulfill Father&#8217;s will by upholding the mission that You entrusted in us.</p>
<p>Father! Please allow Your sons and daughters who are bowed down before You to be the ones in the heart of Jesus Christ, who are willing to first take responsibility for difficulties and griefs when faced with them. If it is what God wants, let them be the ones who are willing to accept and fight any hardships, even if they could collapse due to their pain and sufferings. Please do not let any life among Your sons and daughters gathered here be dragged away by Satan. Since they came here after a long absence to seek life, please do not desert them. Father, I sincerely wish and desire for this to be done. At this hour, please allow the heart of the one who delivers the message and the hearts of its receivers to be united. Let our hearts be moved by the Father&#8217;s heart. By so doing, let us be in harmony in unity with You. Let us be recreated as a sacrificial offering that You can receive in joy. I sincerely wish and desire for this to be done.</p>
<p>At this time, there are sons and daughters all over, praying at lonely altars. Please work through them with the same grace bestowed upon us. Protect them from being invaded by Satan. Wishing for this to be done, I pray in the name of the Lord. Amen.</p></blockquote>
<p>The topic of the speech I would like to share with you today is &#8220;Let Us Be a Victor for God.&#8221; Due to the human fall, God who created Heaven and earth has never experienced joy and glory with the creation during the long history past, through which He has been leading the dispensation of restoration. You must already know this.</p>
<p>In other words, God has never received a day of victory in which He could be happy. The reason does not lie with God, but with humans who were created as the masters of all things. Thus, the day of victory cannot come with the effort of God alone, but it also needs the efforts of humans, besides those of God. Otherwise, God and the creation cannot receive a day of glory with triumph.</p>
<h3 align="center">God&#8217;s Hope and Jesus</h3>
<p>Then what is the purpose of God&#8217;s creating all things? It is to watch all things singing with God&#8217;s love and returning glory to Him, centered on humans who have fulfilled the purpose of goodness. All should rejoice in this. Due to the human fall, God&#8217;s purpose of creation was not achieved. To restore human beings, He has been leading a long battle of 6,000 years of history.</p>
<p>God, who has not been able to receive a day of universal victory since the creation, desires to see the day of victory through humans on earth. Thus, unless earthly people do not restore or recover that day, we cannot defeat Satan, who violates humans on earth. Nor can we eliminate the power of Satan, who makes accusations against humans before God in heaven.</p>
<p>Consequently, God does not mind any toil, any sacrifice, or any battles. Until this moment, He has been a shield to restore each of you.</p>
<p>When viewed from this standpoint, we can understand what God&#8217;s wish is. God wants to establish each of you as an individual and separate the enemy Satan who caused the human fall from you. Thus, the evil history of Satan will be concluded. We should become people who can fulfill the wish of God, come forth in pride before God and all things, and return the victorious glory to God. Then, finally, the purpose of God&#8217;s providence, which He led through His hard work, will be realized. Humans have been trying to witness such a day of victory, but until the present, it has not been fulfilled.</p>
<p>However, God sent a man who could find the day of victory for humans. This was Jesus Christ. He experienced the internal heart of God, who has been leading a dispensation to restore all humankind through a long history. He experienced all the unjust circumstances of humans. Thus, he came as a representative who could bring victory out of the battles with Satan.</p>
<p>Therefore, being faced with Satan, who is blocking the path to attain the will of God&#8217;s dispensation and the will that humankind wishes for, you should take over the lifetime undertaking of Jesus Christ, who fought valiantly as the historical man in charge, representing all things with the heart of the Lord of creation. Also, in your own life, unless you practice the life that Jesus wished for, not only the sorrow of Jesus but also that of God and all humankind will be again embedded on the earth. You should understand this.</p>
<p>Then what kind of life course should we take? We should go with the responsibility to inherit the will of Jesus Christ, who came for the fulfillment of God&#8217;s will. We should fight to bring about a day in which God and humans can rejoice together. This is more important than anything else.</p>
<p>The life of Jesus was not to live for himself as an individual. It was a life during which, in silence, he took on the responsibility alone for heaven above and earth below, that is, for all the creation. He did this to bring about a day when God&#8217;s will would be achieved.</p>
<p>Jesus did not make a distinction between day and night. Also, he did not care about persecution from the visible world. He was a courageous man who fought Satan, who was blocking his path, in an invisible place that people did not recognize or see, carrying responsibility for all of humankind.</p>
<p>Therefore, today all of us should attend Jesus as a vanguard and uphold his will. Thus, wherever he goes, we should go with him. If he fights, we should also fight with him. That is, we should share the same joy and pain and continue to fight to accomplish the will of God in His providence of restoration, which is the wish of all humankind.</p>
<p>Further, Jesus lived for his people and the world, taking responsibility for 4,000 years of history and the many lives in the spirit world. He did not fight for himself alone. It does not necessarily mean that he was fighting only for his people or the world. He fought to fulfill the will of God, with the mission of upholding heavenly principles beyond history and the universe.</p>
<p>Such battles continued throughout his lifetime of thirty years. Even 2,000 years after his death, it is still being continued. You should understand and feel deeply in your bones that although humans can take time to rest, he has been unceasingly fighting along with the Holy Spirit only to fulfill God&#8217;s wish and thus find the day of hope for which all humankind wishes.</p>
<p>It was lamentable for Jesus to die on the cross due to the failure of humans when he came to earth to save them. Nonetheless, even after his death, still carrying the sins of humans, he has been walking the course of the cross to Golgotha. We should reflect upon our past, thinking about what kind of life of faith we have had toward Jesus.</p>
<h3 align="center">The Motive of Jesus Who Walked<br />
the Path of Pain and Suffering</h3>
<p>Then what kind of person is Jesus? He is the begotten son of Heaven, the prince of heaven, the savior of all humankind, and the Messiah of glory. He should have nothing to do with pain. When seeing the Messiah, it would have been only natural for God to rejoice in him. It should have been with praise that all humankind who saw him received him. Yet because the Israelites were faithless toward him and cursed him, joy turned into sorrow. Who would have to take responsibility for this? You who know the will of God should do so.</p>
<p>The reason worldwide Christianity was established was because of Jesus&#8217; thirty years or more of life for the sake of humanity, during which he shed tears without letting others know. Ever since his death on the cross, there has been 2,000 years of history, a process through which God has been leading a dispensation of sorrow and grief.</p>
<p>Now as we are following the same path of Jesus who shed tears on earth, we should be willing to take responsibility for the failure of the Israelites who caused sorrow to Jesus. We should go on with the battles to take vengeance upon Satan.</p>
<p>You should not think that during the preparation period of the public ministry of Jesus, he simply led a life of meditations. While he was working as a carpenter for thirty years in Joseph&#8217;s family, Jesus shed countless tears without letting others know. His brothers did not understand Jesus&#8217; sorrow, nor did Joseph and Mary, who should have known this more than anyone else. Thus, Jesus walked a lonely path of undescribable sorrow that could not be revealed to anyone. Jesus consummated the sinful history of 4,000 years. While carrying the burden of liquidating the sorrow of God and humanity, with a firm and unchanging conviction for the will of God, he fought Satan. Consequently, if we follow the exemplary life of Jesus, we can set a victorious standard of life.</p>
<p>Why did Jesus come to live such a bloody and tearful life? It is because he knew that the long process of the 4,000 years of history was a course of tears. Jesus knew that God went through a history of tears. He also knew that the many prophets and sages who had attended God&#8217;s will underwent a tearful course of life. Consequently, he came to think that for the fulfillment of God&#8217;s will, he also had to walk such a tearful course of life, and he understood that his life would have a great impact upon the future.</p>
<p>Therefore, Jesus felt responsible for indemnifying all the tears shed by God and the prophets and sages. To give hope to all of humankind, he voluntarily walked a path of bloody and tearful sufferings.</p>
<h3 align="center">The Believers in the Last Days Who Should<br />
Complete the Course of Historical Suffering</h3>
<p>Today we cannot avoid a course of battles against Satan to recover the day of universal hope, the day of victory. Thus, the greater our mission, the greater our responsibility. To bring a victory out of the course of this battle, we should pass through deeper valleys of tears.</p>
<p>Jesus alone appealed before God in tears in the Garden of Gethsemane, without being accompanied by even his own disciples. He was totally sinless, without any wrongfulness, and he only hoped to live as the son of God. You should feel the heart of Jesus, who walked the path of bloody tears.</p>
<p>Today at the point when you hasten to bring a victory to Heaven, you should reflect upon whether you are truly ready to climb the same hill of universal tears with Jesus, which he has already climbed. Ever since humans left the bosom of God due to the fall, human history continued in tears. To be freed from this, we should walk a path of tears. This does not apply only to the course of God&#8217;s providence, but also to a people or a nation.</p>
<p>We call someone who sheds tears for a nation or its people a prophet. A nation does not come about automatically. It comes about through a history of tearful, trouble-filled stories made by such prophets. Similarly, unless you, too, climb the historical hill of tears, you can never receive a day of victory. Jesus shed bloody tears while walking on the path of Golgotha, the path of a pioneer, after having climbed hills of tears for thirty years. Today, if you are to be the ones who would take responsibility to fulfill the will of God and liberate Jesus, you should shed bloody tears that no one recognizes, springing from the bottom of your heart.</p>
<p>If there are disciples who are shedding tears for brothers and sisters and the world, and further, if they are unceasingly shedding tears without being able to stop it for Heaven, a condition for victory will be made. Once Jesus once could not help but shed tears, looking down at Jerusalem, yet no one understood his heart. Because he did not have even one friend who could cry with him when he wept in sadness, Jesus had to die on the cross.</p>
<p>Because we are descendants of fallen Adam and Eve, we are responsible for alleviating their grief. Also, to cleanse the sins caused by the fall, we should alleviate even the grief of Jesus Christ, who came as the second Adam. The history of the past is the history of the formation stage and the growth stage, and we could stand before the will by just partially fulfilling our responsibility. Since we are in the completion stage today, it is not enough for us to fulfill only a partial responsibility. In order for us to fulfill the mission given at the time of the completion stage, we should be motivated and work a thousand times harder than those who have come and gone in the past. Clinging to God&#8217;s grieving heart that cannot let go of this earth, whether cold or hot, asleep or awake, no matter what kind of circumstances He is in, you should become those who should also cling to this earth and weep for it more than anyone else.</p>
<p>In order for this people to find and establish a principle for unity today, the person above should come down, and the person below should go up. By so doing, each other&#8217;s tears should be exchanged and brought before God. Similarly, if we could understand the heart of God&#8217;s grievance and that of God who loves the earth and can communicate with His heart, we will never perish. Therefore, we should become those who can shed tears. In the last days, we are to shed tears, whether they are for joy or grief.</p>
<p>Two thousand years ago, as there was a wall of darkness that Jesus had to pass through in the garden of Gethsemane, carrying the cross of suffering and pain, we should also receive the last days in this century, which has a wall of darkness like the cross of Jesus. Also, because Jesus shed tears on behalf of God while others did not know of it, neither the disciples who lost Jesus, nor his people, all of humankind tends to avoid the path of tears.</p>
<h3 align="center">Tears That Should Be Shed<br />
for God&#8217;s Will and the World</h3>
<p>Thus, a hill of tears that should be climbed over will lie before the people of the last days. Then we will be standing at the crossroads where we have to decide whether we should cry for Heaven or for ourselves.</p>
<p>At that time, what Satan is looking for are the people who block the path to Heaven who will and seek instead after their own ambitions. Thus, if you shed tears for your own self at the time when you should shed historical tears, you will belong to Satan. On the other hand, if you cling to the heavenly will and shed tears for it, you will belong to the side of Heaven.</p>
<p>The reason Jesus could move heaven and the reason the creation could attend him was not because Jesus wept for himself, his own people, or even for the world. He did it to achieve the will of the eternal hope of God. Thus, the tears of Jesus could empathize with those of God, all humankind, and all things. Because Jesus died shedding tears in such a way, the ones who should attend him cannot help but shed tears, experiencing the tears of His universal grief and thus must grieve with all things.</p>
<p>Jesus thus shed tears for his people, the world, and God. What about you? In order for you to stand in front of the will, like Jesus, you should also go through the stages of shedding tears centered on the individual, family, people, and the world. Then you should fulfill your responsibility of shedding tears even for the grievances of the spirits in the spirit world.</p>
<p>Now, do you want to stand in the garden of hope that God desires? If so, you should not keep the heart that appeals to God to avoid suffering, centered on the individual. If you do so, you will be caught by Satan&#8217;s net. If you truly wish to enter the family level of the heavenly kingdom, you should build an altar as built by Jesus, beyond the individual and the family.</p>
<p>Also, if you wish to enter the tribal level of the heavenly kingdom, you should shed tears on behalf of Jesus. If you wish to enter the people level of the heavenly kingdom, you should shed tears for the people on behalf of Jesus.</p>
<p>You should save the face of Jesus who died, taking responsibility for the earth and even the spirit world before God. You should be the kind of person who are always concerned for God&#8217;s will.</p>
<p>During the 2,000 years since the death of Jesus, the way God led humans in the course of history has been to make them shed tears. That is the reason the path of Christians has been that of tears. Without it, the providence could not be fulfilled. After the death of Jesus, his seventy disciples built an altar of tears in Rome for a long time and gradually expanded the foundation of Christianity from the levels of an individual and a family finally to the worldwide level. Yet until now, among Christians, there have been many who cried for themselves, but only a few who cried for the world on behalf of Jesus.</p>
<p>Now we are in the last days and we should climb over the tearful hill of Golgotha. Therefore, the times when one could cry for the individual, the family, and the nation has passed. While God has been leading His providence for many thousands of years, His wish for us is to become faithful believers who can shed tears for the world, clinging to the will of God.</p>
<p>On this earth, there have been no faithful believers who could weep for God, understanding His heart and will. We are the ones who should take responsibility for this and shed tears for Heaven. Otherwise, Jesus would shed tears again, and so would God. As Jesus had shed tears before God in fighting Satan to take responsibility for human history and be victorious in the battle, the time is here when we should pray to God, &#8220;Please allow us also to be connected to You as a vanguard of tears.&#8221;</p>
<p>When viewing the trend of the world, we can understand that by removing nationalism in order for Christianity to be pursued, the worldwide foundation from which the coming Lord can be received has been expanded. It is about the time when all humankind can receive Jesus on the worldwide level. That is the reason humankind today has come to a point where they should climb the worldwide hill of Golgotha.</p>
<p>When crying, you, who are in this position, come to the following question: &#8220;Am I crying for Heaven or for the earth or for myself?&#8221; At this point, depending upon for whom you are crying, your path will vary.</p>
<p>If you want to spread the will of God to the people who are living in the world that is like an ocean of suffering, you should not be those who would forget the will for the whole and cry for your own self in sorrow. Such people will be naturally chased away on the way to the fulfillment of the will.</p>
<p>We who follow the will of God should not shed tears due to our personal circumstances. Also, if there are a people, a nation and a world that would live for the will of God, they also should not shed tears for their own sake. We should shed tears only for all of humankind.</p>
<h3 align="center">The Value of the Life That Sheds<br />
Blood, Sweat and Tears</h3>
<p>Now is the time when the will for the heavenly principles disconnected from humans should be reconnected through you. If you cannot restore a day when you can shed tears of victory from the battle against Satan, and thus if you cannot find a day when Satan can no longer accuse you, the victorious day that God wishes for on the worldwide level cannot be restored.</p>
<p>When Jesus came to the earth, as he went through a path of blood, sweat, and tears to fulfill the will of God, you, too, should walk a path of blood, sweat, and tears to receive the day of universal victory. The history of the universe must go the painful way of the cross, and in order for an individual to be successful, that person should also go through a way of blood and sweat. That is, we should all endure all hardships and fight Satan.</p>
<p>How hard have you truly fought for heaven? You must have shed sweat and tears for yourself or your family. However, Jesus shed tears and sweated not only for his family, but also for his people and the world. You should now go a path of life that sheds sweat and tears beyond your own individual self and your family and shed them for the world.</p>
<p>To go through the course of battles shedding sweat and tears is the first condition for a victory. Thus, in order for us to be victorious, we should become sons and daughters who fight hardships through undergoing a path of sweat and tears. Also, Jesus prayed in sweat and tears in the garden of Gethsemane, and you should have the same kind of heart. United people who marched for one goal, shedding sweat and tears, have never perished until now. In the spirit world, what kind of people are the glorious spirits that entered the realm of the Kingdom of Heaven? They are the ones who did not stop pioneering a course of struggles in the path of sweat and tears. If we know that we are responsible for making such conditions for the victory to fulfill God&#8217;s will, we should shed more sweat and tears than anybody in history.</p>
<p>Do you love your family? If so, you should sweat for the family. If you love your people, you should sweat for the people. If you love the world, you should sweat for the world. We should also take after the example of Jesus, who prayed in the garden of Gethsemane for all of humankind, building an altar alone while others did not know about it. We should become a second Jesus who can shed sweat and tears for all of humankind.</p>
<p>Have you ever desperately prayed for the will of God, at the risk of your life, in tears? Have you ever sweated while praying? Though we underwent the path of sweat and tears, we should never forget that the final bloody path of death remains in front of us. Jesus went the way of the cross on behalf of all humankind after three years of public life. If the begotten son of God walked a blood-shedding course, offering his own life for a spiritually victorious day, we who came forth with the determination to carry out a universal mission on behalf of Jesus should follow the example of his path.</p>
<h3 align="center">The Sacrificial Spirit of Jesus,<br />
Who Walked the Path of the Cross</h3>
<p>Do you have a life, hope, and a will to proceed? If so, it does not belong only to you. You should not think that your life is only yours. If Jesus had thought that his life belonged only to him, he could not have achieved the resurrection beyond his death on the cross. Because he knew that his life was God&#8217;s, Jesus endured the suffering and tribulations of being crucified. Accordingly, the path of the cross was not only for himself alone.</p>
<p>It is the same with you. Your life does not belong only to you; nor does the world, the universe, or the creation belong only to humans. All these belong to God. What is the center of your thoughts and ideas? We should find an ideology and ideas that petition for the sake of God. If we die, we should die for the Father. If we live, we should live for the Father. If we live with such an attitude, even if we are dead, we really did not die. Yet in contrast to this, even if we are alive, if we live only for ourselves, that life cannot be glorious. No matter what, if we are destined to climb over a hill of death, each of us should reflect upon why we should go such a path.</p>
<p>Jesus offered even his own body at the end after having gone through a path of sweat and tears. For the sake of God, he did not spare anything for himself and offered everything that he had, praying, &#8220;Father, please accept my spirit.&#8221; Why did he become an offering of sacrifice, shedding blood like this? It is because he knew that when he totally offered himself, God could totally receive him. Along with Jesus, if you are to be victorious toward the satanic world, you should think whether you are offering yourself while still attached to your life. If we are to be an extremely holy sacrifice to eternally fulfill Father&#8217;s wish, if we have any element centered on us, then we will become an offering that can be accused by Satan.</p>
<p>Do you want to become people whom God can call, &#8220;My sons and daughters&#8221;? If so, you should establish the truth, life and love of heaven, and you should restore all things and yourselves to be heaven&#8217;s.</p>
<p>Jesus prayed, &#8220;My Father, if possible, let this cup pass from me.&#8221; He also prayed the opposite of the prayer, &#8220;Do not do as I want, but do as You want.&#8221; You also should build an altar of heaven by bringing your will over to that of the Father&#8217;s. Otherwise, you cannot achieve the hope of God and cannot be victorious in the battles against Satan.</p>
<p>Due to the fall of humans, for many thousands of years, they walked a path of toil. Climbing a hill of blood and tears to become a living sacrifice before God, they have been fighting Satan. Similarly, today we should walk a path of sacrifice for our people. Then your followers will follow the path, and you will even be able to make the enemy Satan surrender to you and become your friend.</p>
<p>Humans who have been toiling for 6,000 years for the will of God should now be able to sing God&#8217;s glory by fulfilling the universal responsibility on behalf of Jesus through making the conditions of glorious victory. Satan, who has been opposing God, will oppose you, too. The day when the opposition of Satan will change all of a sudden, the day when Satan makes an offering before God with you, will be the last days, the day of judgment.</p>
<p>When we come to command Satan through making conditions that Satan can surrender to God, conditions that can start centered on the heavenly principles, Satan will obey the order. Therefore, you can become people who can be victorious in the struggle with Satan.</p>
<h3 align="center">The Way to Be Related to God,<br />
as a Parent to a Child</h3>
<p>When we come to Heaven as such a victor, then finally, in the ideal garden where the will of eternal God is realized, we can live as eternal and unchanging true people centered on God without having anything to do with Satan. Since Satan knows that this last battle will begin, he will attack with his utmost force. Therefore, in order for us to be victorious in the battle, not only God will do His best, but also you who are sons and daughters of God should pour all of your spirit and heart.</p>
<p>In this battle, Satan will not blindly surrender to you, but along with the people who are controlled under his domain, he will resist you with his maximum power. You should know this.</p>
<p>As we shed tears for heaven, Satan also sheds tears for the fulfillment of his will. As we sweat for God, he also sweats for himself. As we fight at the risk of our life, he also fights the same way we do for himself. You should know this.</p>
<p>When these two powers confront each other, in order for us to win the battle, we should not live for ourselves. We should live absolutely for the sake of the Father. Oblivious to our own will, we should offer everything we have. By so doing, we should only try to uplift the value of Father. This is the way we can win a victory in the battle against Satan. It is the way for us to be related to God as a parent and child are related to each other.</p>
<p>Now you must have found a way to defeat Satan and build a relationship with God as parent and child. Thus, we should lead a life in which we sacrifice ourselves more for the Father.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father! We now learned that we should walk a path to be a victor. This is a path of blood, sweat, and tears, and a sacrificial offering to have everything shared with all of humankind by separating all the elements of our own blood and flesh. When we got away from this path, we learned that we will not be able to stand in the garden of universal victory for which the Father wishes.</p>
<p>Father! We learned that our life is not ours, our love is not ours, our children are not ours, and all of our material is not ours. If we try to possess everything with our greed, we know that there will be nothing that will belong to us. Please guide us to stand in the position of sacrificial offerings who are willing to offer you everything that we have.</p>
<p>We learned that all people should indemnify God&#8217;s grievance of 6,000 years and become a victor. Father, allow all the sons and daughters gathered here today to do so, going this way without minding a path of sweat, tears and even death on behalf of the Father, so that they might fulfill the worldwide and universal mission. Thus, they will be in the position of having been restored as true sons and daughters. Please allow them to sing a song of glory for You.</p>
<p>By so doing, I sincerely wish and desire that You would guide them to be Your children who can have dominion over Satan, and in tears of joy, return all creations to You. As I entrusted all of this to You, please guide them to the path of tears, sweat, and blood for the victory.</p>
<p>We are commissioned to pioneer the path of victory, so let us be offered as a sacrificial offering of the cross by fulfilling the mission of this historical victory. Now we understand that if in a situation where we can shed tears for Satan, instead we proudly state, &#8220;I am a sacrificial offering to you, Father,&#8221; even Satan himself must admit, &#8220;You are right. You are truly a child of God.&#8221; Thus, I sincerely wish and pray that we can be such a group of people.</p>
<p>I prayed for this in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html" title="Permalink to LET US BE A VICTOR FOR GOD" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BE STRONG AND BOLD AND RESTORE THE LOST LAND</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html" rel="next">THE PERSON WHO IS TO REMAIN BEFORE GOD&#8217;S WILL <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,301 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Be Israel, the Chosen People of God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-905 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-905" class="post-905 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Let Us Be Israel, the Chosen People of God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T16:14:16+01:00"> <a href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T16:30:19+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
February 9, 1958</h3>
<p style="text-align: center;"><em>Genesis 32:1-28 </em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text Gen-32-1"><span class="chapternum"> </span><sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-930a" data-link="[&lt;a href=&quot;#fen-NIV-930a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-930a">a</a>]</sup>Jacob also went on his way, and the angels of God met him.</span><span id="en-NIV-931" class="text Gen-32-2"><sup class="versenum">2 </sup>When Jacob saw them, he said, “This is the camp of God!” So he named that place Mahanaim.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-931b" data-link="[&lt;a href=&quot;#fen-NIV-931b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-931b">b</a>]</sup></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-932" class="text Gen-32-3"><sup class="versenum">3 </sup>Jacob sent messengers ahead of him to his brother Esau in the land of Seir, the country of Edom.</span> <span id="en-NIV-933" class="text Gen-32-4"><sup class="versenum">4 </sup>He instructed them: “This is what you are to say to my lord Esau: Your servant Jacob says, I have been staying with Laban and have remained there till now.</span> <span id="en-NIV-934" class="text Gen-32-5"><sup class="versenum">5 </sup>I have cattle and donkeys, sheep and goats, male and female servants. Now I am sending this message to my lord, that I may find favor in your eyes.’”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-935" class="text Gen-32-6"><sup class="versenum">6 </sup>When the messengers returned to Jacob, they said, “We went to your brother Esau, and now he is coming to meet you, and four hundred men are with him.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-936" class="text Gen-32-7"><sup class="versenum">7 </sup>In great fear and distress Jacob divided the people who were with him into two groups,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-936c" data-link="[&lt;a href=&quot;#fen-NIV-936c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-936c">c</a>]</sup> and the flocks and herds and camels as well.</span> <span id="en-NIV-937" class="text Gen-32-8"><sup class="versenum">8 </sup>He thought, “If Esau comes and attacks one group,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-937d" data-link="[&lt;a href=&quot;#fen-NIV-937d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-937d">d</a>]</sup> the group<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-937e" data-link="[&lt;a href=&quot;#fen-NIV-937e&quot; title=&quot;See footnote e&quot;&gt;e&lt;/a&gt;]">[<a title="See footnote e" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-937e">e</a>]</sup> that is left may escape.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-938" class="text Gen-32-9"><sup class="versenum">9 </sup>Then Jacob prayed, “O God of my father Abraham, God of my father Isaac, <span class="small-caps">Lord</span>, you who said to me, Go back to your country and your relatives, and I will make you prosper,</span> <span id="en-NIV-939" class="text Gen-32-10"><sup class="versenum">10 </sup>I am unworthy of all the kindness and faithfulness you have shown your servant. I had only my staff when I crossed this Jordan, but now I have become two camps.</span><span id="en-NIV-940" class="text Gen-32-11"><sup class="versenum">11 </sup>Save me, I pray, from the hand of my brother Esau, for I am afraid he will come and attack me, and also the mothers with their children.</span> <span id="en-NIV-941" class="text Gen-32-12"><sup class="versenum">12 </sup>But you have said, I will surely make you prosper and will make your descendants like the sand of the sea, which cannot be counted.’”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-942" class="text Gen-32-13"><sup class="versenum">13 </sup>He spent the night there, and from what he had with him he selected a gift for his brother Esau:</span> <span id="en-NIV-943" class="text Gen-32-14"><sup class="versenum">14 </sup>two hundred female goats and twenty male goats, two hundred ewes and twenty rams,</span> <span id="en-NIV-944" class="text Gen-32-15"><sup class="versenum">15 </sup>thirty female camels with their young, forty cows and ten bulls, and twenty female donkeys and ten male donkeys.</span> <span id="en-NIV-945" class="text Gen-32-16"><sup class="versenum">16 </sup>He put them in the care of his servants, each herd by itself, and said to his servants, “Go ahead of me, and keep some space between the herds.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-946" class="text Gen-32-17"><sup class="versenum">17 </sup>He instructed the one in the lead: “When my brother Esau meets you and asks, Who do you belong to, and where are you going, and who owns all these animals in front of you?</span> <span id="en-NIV-947" class="text Gen-32-18"><sup class="versenum">18 </sup>then you are to say, They belong to your servant Jacob. They are a gift sent to my lord Esau, and he is coming behind us.’”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-948" class="text Gen-32-19"><sup class="versenum">19 </sup>He also instructed the second, the third and all the others who followed the herds: “You are to say the same thing to Esau when you meet him.</span> <span id="en-NIV-949" class="text Gen-32-20"><sup class="versenum">20 </sup>And be sure to say, Your servant Jacob is coming behind us.’” For he thought, “I will pacify him with these gifts I am sending on ahead; later, when I see him, perhaps he will receive me.”</span> <span id="en-NIV-950" class="text Gen-32-21"><sup class="versenum">21 </sup>So Jacobs gifts went on ahead of him, but he himself spent the night in the camp.</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-32-22"><sup class="versenum">22 </sup>That night Jacob got up and took his two wives, his two female servants and his eleven sons and crossed the ford of the Jabbok.</span> <span id="en-NIV-952" class="text Gen-32-23"><sup class="versenum">23 </sup>After he had sent them across the stream, he sent over all his possessions.</span><span id="en-NIV-953" class="text Gen-32-24"><sup class="versenum">24 </sup>So Jacob was left alone, and a man wrestled with him till daybreak.</span><span id="en-NIV-954" class="text Gen-32-25"><sup class="versenum">25 </sup>When the man saw that he could not overpower him, he touched the socket of Jacobs hip so that his hip was wrenched as he wrestled with the man.</span> <span id="en-NIV-955" class="text Gen-32-26"><sup class="versenum">26 </sup>Then the man said, “Let me go, for it is daybreak.”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-32-26">But Jacob replied, “I will not let you go unless you bless me.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-956" class="text Gen-32-27"><sup class="versenum">27 </sup>The man asked him, “What is your name?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-32-27">“Jacob,” he answered.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-957" class="text Gen-32-28"><sup class="versenum">28 </sup>Then the man said, “Your name will no longer be Jacob, but Israel,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-957f" data-link="[&lt;a href=&quot;#fen-NIV-957f&quot; title=&quot;See footnote f&quot;&gt;f&lt;/a&gt;]">[<a title="See footnote f" href="https://www.biblegateway.com/passage/?search=Genesis+32:1-28#fen-NIV-957f">f</a>]</sup>because you have struggled with God and with humans and have overcome.”</span></em></p>
<h3 style="text-align: center;" align="center"><em>Acts 1:6-11</em></h3>
<p style="text-align: center;"><em><span id="en-NIV-26930" class="text Acts-1-6"><sup class="versenum">6 </sup>Then they gathered around him and asked him, “Lord, are you at this time going to restore the kingdom to Israel?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26931" class="text Acts-1-7"><sup class="versenum">7 </sup>He said to them: <span class="woj">“It is not for you to know the times or dates the Father has set by his own authority.</span></span> <span id="en-NIV-26932" class="text Acts-1-8"><span class="woj"><sup class="versenum">8 </sup>But you will receive power when the Holy Spirit comes on you; and you will be my witnesses in Jerusalem, and in all Judea and Samaria, and to the ends of the earth.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26933" class="text Acts-1-9"><sup class="versenum">9 </sup>After he said this, he was taken up before their very eyes, and a cloud hid him from their sight.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26934" class="text Acts-1-10"><sup class="versenum">10 </sup>They were looking intently up into the sky as he was going, when suddenly two men dressed in white stood beside them.</span> <span id="en-NIV-26935" class="text Acts-1-11"><sup class="versenum">11 </sup>“Men of Galilee,” they said, “why do you stand here looking into the sky? This same Jesus, who has been taken from you into heaven, will come backin the same way you have seen him go into heaven.”</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please allow these sons and daughters who lay prostrated here to see for ourselves whether our own minds and bodies are in darkness. Please guide us not to have a self-centered mind or a mind full of doubt. Please allow us to be true sons and daughters who can comfort the Father&#8217;s shimjung. You toiled solely to seek us. Let God&#8217;s internal mind embrace our pitiful bodies.</p>
<p>If we are to feel sorrow, then please allow us to feel the sorrow of the 6,000 year history. If we are to be subjected to privations, then please allow us to endure the privations of 6,000 years. Father! Please allow us not to betray the Father while we live on this earth. Guide us not to have our bodies bound by the chains of Satan and therefore create a condition of sadness. Beloved Father, I pray this with a sincere heart.</p>
<p>Now, since Your sons and daughters have gathered together and You are the master here, please do not allow their minds and bodies to wander about at will. I sincerely wish and desire that You will allow this hour to be one in which we rely only upon the Father, when we feel the shimjung of the Father&#8217;s compassion deep in our hearts and are able to be embraced in the bosom of the Father&#8217;s love.</p>
<p>Through the word we just read, we understand that Jacob is the standard for our faith. Please allow us to follow the faithfulness of Jacob, who risked his life laboring for the sake of the one will. I pray You will allow us to experience his shimjung. Beloved Father, I sincerely wish and desire that You will allow us to return glory to the Father by having our footsteps and our minds represent the Father&#8217;s will and defend the way of the Father&#8217;s will to the death.</p>
<p>Please let us reveal the Father&#8217;s power by meekly obeying the word the Father commands. Since we are exposed as insufficient before the Father, please watch over us with eyes like a flame. If You find some inadequacy, Father, I pray from the bottom of my heart that You will forgive us for that.</p>
<p>In the midst of this race, which is caught up in darkness, there are sons and daughters who are wandering around because they do not know which way to go and where is the way of life. Therefore, beloved Father, I sincerely wish and desire that You will guide these people and bestow upon us the grace that You would grant in the final days. Allow us to be the people who can attest to the word of life before the race.</p>
<p>Through this pitiful race, please let all humankind in the world kneel down before the Father and make Satan submit on this earth. Father, I sincerely wish and desire that You will let us be filled with victorious excitement and happiness in relationship to Satan.</p>
<p>With You alone in charge, please allow this hour to be one in which we clear away all sins with the Father&#8217;s precious word and find the road of life. Ardently soliciting that the Father will personally govern our minds and bodies with firmness, I prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon about which I would like to share my thoughts with you is <i>&#8220;Let Us Be Israel, the Chosen People of God.&#8221;</i> I will speak briefly upon this subject.</p>
<p>The story of Jacob is recorded in Genesis. He was tested representing Heaven even after he had gone through a course of atrocious troubles. During the course of those trials, Jacob kept in his heart the thought that he was the blessed, chosen person. He fought to the finish with an angel who was trying to hold that will in check. He then won the victory and was granted entry into the realm of a person chosen by God. Because Jacob attained victory after struggling against all kinds of difficulty centering on God&#8217;s will, God granted him the name &#8220;Israel.&#8221; We use the word &#8220;Israel&#8221; frequently today.</p>
<p>This is not a simple noun. This word represented an historical life. This is the noun of victory that concluded the 2,000 year history from Adam to Jacob. We should not forget this. Furthermore, we must realize that after setting up Jacob and granting him the blessing to be called Israel, God felt happiness. At the same time, He was sad.</p>
<h3 align="center">The Will of God Who Let Jacob Take Pains</h3>
<p>The reason God carried out the dispensation of toiling for several thousand years looking for Jacob is because Adam, the ancestor, had fallen. Owing to his fall, Adam lost the blessing God gave. That blessing had to be recovered, but the historical course of recovering God&#8217;s lost blessing was indescribably sorrowful. You must understand that the God who blessed Jacob with the name Israel had this kind of sorrowful shimjung.</p>
<p>When God granted the blessing of &#8220;Israel&#8221;, the word was not to be limited to the one generation of Jacob. It represented the ideology and ideal of the whole creation. This one word was fraught with God&#8217;s shimjung in its entirety.</p>
<p>Jacob was exhausted from toiling for several decades at Laban&#8217;s house. He had come through a difficult life course to establish the land of Canaan God had granted. Then he went looking for Esau in the country of Edom, losing everything he had for the sake of carrying out the will of Heaven, which had blessed him through the uplifted hands of Isaac.</p>
<p>However, the homeland he returned to was not the original homeland in which he could have had joy in his own time. It could not be the seat of joy for him. Even as he was going back to see his homeland, for which he felt affection, and his brother, Jacob was anxious and worried. You must not forget that this is not a state of affairs only Jacob, one individual, had to endure. This is a course all of humanity must walk.</p>
<p>The Jordan and Jabbok Rivers blocked the road that led to Jacob&#8217;s hometown. With the blessed land in front of him, Jacob could not sleep. Instead, he had to pray shedding tears. The ancestors had left behind this state of affairs. This was the situation of God, who was conducting the providence of the heavenly principles. We should know that Jacob felt this in his heart more deeply than anyone else.</p>
<p>This situation was not limited to Jacob&#8217;s generation. It recurred in the course of the history of the chosen Israelites. All the prophets and sages who appeared in association with God&#8217;s will had to bear this kind of shimjung. In order to enter into the bosom of the Father, they had to cross the hill of struggle with a barrier of darkness in front of them. You should bear this in mind.</p>
<p>God granted the blessing through the hands of Isaac and urged Jacob to abandon everything and go back to his homeland. Why could God not make Jacob&#8217;s path smooth? Why did He let the kind of heartless circumstance develop in which He sent an angel and let the angel hurt Jacob? Why did He not give a word of advice to Jacob who was appealing all night before Heaven, bearing the will of the heavenly principles with a fretful shimjung on the banks of the Jabbok River?</p>
<p>We should not forget today that this was an indescribable state of affairs and a fretful shimjung of vicissitudes incomprehensible to man. As he returned to see the homeland God had granted, Jacob&#8217;s road was a wilderness one. We must realize through the course Jacob walked that there are twists and turns like this in the course we walk today.</p>
<p>Why could Heaven not help but pose these kinds of circumstances? Needless to say, selecting one person and setting him up is the will of God&#8217;s providence. Yet establishing a foothold behind the scenes through which people can push out Satan is a more important will of providence. These are the kinds of ups and downs whereby God could demolish a wall of turns and twists in the invisible world humans know nothing about, but which God and Satan know well. In order to set up such conditions, Heaven could not help but put Jacob through extraordinary circumstances. You must understand this.</p>
<p>From the day he was blessed by Isaac until he returned to the homeland where Esau lived, Jacob did not have one day of happiness. This shows us that if a person receives God&#8217;s blessing representing God&#8217;s will, he cannot but go through a life course of anxiety until he settles all before Heaven and earth from the position of a sacrificial offering.</p>
<p>Because such a course of history remains, when you march forward today bearing the responsibility, you will have to go to the enemy&#8217;s world as Jacob did and walk the course of struggle where you too fight alone in a difficult environment.</p>
<p>If Jacob had fallen down exhausted in the course of the struggle, then the name Israel would not have been given to him. The grace of blessing through the name Israel would have had nothing to do with Jacob. In order to attain the blessing Heaven had bestowed through the hands of Isaac, Jacob rendered devoted service toward Heaven with a burning shimjung that could overcome any difficulty or hardship. You should understand that was how he built a victorious foothold after fighting valiantly in a wrestling match with an angel at the Ford of the Jabbok River.</p>
<h3 align="center">The Content of &#8220;Israel&#8221; Which Jacob Received</h3>
<p>You should know that Jacob was a representative heavenly soldier who, centering on the word Heaven granted, walked the road of fierce struggle not to lose it, even at the risk of his life.</p>
<p>What forewarned this? Ancestral Adam and Eve should have been obedient to God&#8217;s word to the end in order to bring in the day of hope. However, they weren&#8217;t. In order to restore this one fact through indemnity, there had to be someone who would defend God&#8217;s word to the death, unlike Adam. You should understand that Jacob, who received the call from Heaven, was exactly such a person.</p>
<p>Jacob came to be in the position of receiving a heavenly trial. He never relaxed his mental vigilance for a moment. You should know this. He firmly believed in the word of blessing from God and kept a firm conviction not to retreat before the fight ended, even if he were to lose an arm. Only after gaining victory in a battle like this was the blessing of being named Israel granted. You should not forget that this became the victorious foundation for the Israelites.</p>
<p>Why was Jacob placed in this kind of situation? This was on account of the human ancestors, Adam and Eve, distrusting God&#8217;s word and betraying Him. Their descendants had to believe in God to the end centering on the word, even if God forsook them. Because Jacob maintained faith to the end, centering on the word from a position like this, he was able to surmount all pretexts for Satan&#8217;s ridicule.</p>
<p>If the angel had not appeared to Jacob, who was keeping vigil at the side of the Jabbok River in place of God, Jacob would have had to receive a trial from Satan. In order to reveal a representative too trustworthy for Satan to ridicule, who could fight centering on the word, God sent an angel to Jacob and let them fight all night long.</p>
<p>Harboring a will to fulfill absolutely the will that was bestowed upon him, Jacob fought at the risk of his life to beat off the angel. Before someone like this, Satan could not dare pose a pretext for ridicule and could not make any excuses. Because this kind of victory was attained on the banks of the Jabbok River, Heaven was able to inspire Esau, who was the object of the second trial, and subjugate him before Jacob. You should understand this.</p>
<p>The name of Israel, established through Jacob, and the base of Israel established in recognition of Jacob&#8217;s services were not to be blessings for the one generation of Jacob. The name was for the formulation of a national level, state level, and world level Israel after the individual and family level Israel were started through Jacob. Passing through the course of history, the descendants of Jacob should have realized and believed that this was the will of God.</p>
<p>Yet the descendants of Jacob have gone along believing that the blessing extended by virtue of Jacob belonged only to them. You should know that today the Israelites, who were covered with the glory of being chosen, are scattered without a trace of their former glory.</p>
<h3 align="center">Moses&#8217; Love for the People<br />
and the Course of Tribulation He Walked</h3>
<p>Although Jacob had formed a family in Haran and moved forth victoriously, there was yet another hill to cross: namely, the battle with the angel on the banks of the Jabbok River. The descendants of Jacob did not know this. In other words, the descendants of Jacob had to go into Egypt and endure a nationwide trial in the bosom of the Pharaoh for four hundred years. At this time, Moses appeared. By winning the hearts of the Israelites, he stepped forward bearing the responsibility of restoring the land of Canaan, promised to Jacob in ancient times.</p>
<p>The Israelites had to prepare a nationwide victorious foothold in Egypt resembling the victorious foothold of Israel Jacob had created in his time. In other words, in spite of being utterly exhausted, the Israelites had to establish a victorious foothold like that gained from the battle with the angel on the banks of the Jabbok River in enemy territory. They could not establish this. The Israelites forgot they were standing in a position to pass through the heavenly trial process on a nationwide level.</p>
<p>In order to regain the hearts of the people, Heaven set up Moses and made him prepare for forty years in the palace of the Pharaoh representing the people. He also had to go through a forty year course of a shepherd&#8217;s life in Midian. Because the Israelites in Egypt were not able to attain the blessing that Jacob, the ancestor of the chosen people, had attained in ancient times on the banks of the Jabbok River, Moses had to leave for the wilderness to walk a nationwide level course in order to regain their hearts.</p>
<p>In the same manner as Jacob went into the wilderness of Haran after receiving the blessing meant for Esau, Moses came to bear the responsibility to re-establish the blessing from God representing the Israelites. As such, upon seeing the people fighting amongst themselves, unable to unify, Moses expressed resentment. Upon seeing the race being subjected to unjust treatment by aliens, he came to fight at the risk of his life against that foreign nation.</p>
<p>The Israelites were to fight against Egypt by following Moses. Instead, they chased him out. This is similar to when Jacob left his homeland after receiving God&#8217;s blessing. Jacob left the family of blessing and went to a satanic family, Moses also left the people of blessing in Egypt and started off on a forty year wilderness course in Midian. Moses&#8217; leaving for the wilderness in this manner was not a matter that pertained only to Moses, one individual.</p>
<p>Why could Moses not avoid a path like this? It was because the victorious foothold Jacob had achieved representing God&#8217;s shimjung had disappeared. Moses felt more keenly than anybody the responsibility to prepare this foothold again on a nationwide level. Moses prayed ardently for the sake of the Israelites, who were experiencing toil and moil in the bosom of an enemy. He prayed more than anyone. You should feel Moses&#8217; shimjung to the marrow. He never forgot the Israelites in their course of toil and moil, not even for one day, not even for one moment.</p>
<p>Although he led a miserable and lonely life as a shepherd in the wilderness, Moses forgot about his miserable conditions. Thinking of the Israelites toiling under mistreatment by their enemies in Egypt, Moses shed tears of sympathy. You must know this. Moses&#8217; lonely state of affairs and his shimjung touched Heaven deeply. Because Moses was concerned for the sake of Heaven and appeared as a representative concerned for the chosen people, God called Moses again and dispatched him to the palace of the Pharaoh.</p>
<p>This is just like Jacob&#8217;s course when he went with all his belongings to see Esau after toiling for twenty-one years at the house of Laban in fear of Esau. You should understand that Moses walked a difficult course like that of Jacob.</p>
<p>By setting up Aaron and Miriam, who represented the word, and by showing the works of three great wonders, Moses stepped out to look for the palace of the Pharaoh where Heaven commanded him to go.</p>
<p>What happened then? God did not provide a smooth path for Moses. Instead, someone tried to kill him as he retired to rest. Again, this is a course similar to that of Jacob. Moses had to go through the circumstances of Jacob wrestling with an angel on the banks of the Jabbok River, imperivous to his own injury. Moses was put in that same situation by God. You should know that after going over this kind of trial without a hitch, Moses met the chosen Israelites again and built the altar of Israel on the nationwide level, representing God and the people.</p>
<h3 align="center">The Responsibility of the Israelites<br />
With Respect to Moses</h3>
<p>What can we learn from all this? If the question is whether only our ancestors, Jacob and Moses, must walk this kind of course and bear this kind of responsibility, the answer is no, that is not the case. Not only Jacob had to carry out the responsibility. All the members of Jacob&#8217;s family had to appeal to Heaven with a fretful shimjung and bear the responsibility, even more so than Jacob. Nevertheless, the family members of Jacob did not know this. This was the very point of Heaven&#8217;s sorrow.</p>
<p>Moses stepped forth to look for the Israelites, trusting the word God had declared in the Midian wilderness that even if heaven and earth might change, His promise would not change. Moses appeared again before the Israelites with a firm resolution and determination. There were not only the trials from God; there was also opposition from the Pharaoh&#8217;s royal court, like the opposition Jacob received from Esau. You may know it very well from the teachings of the Divine Principle, but you will have to look again at the fact that the Israelites built a nationwide level altar for the second time through subjugating Pharaoh and by bringing down upon Egypt ten calamities, which indemnified the fact that Jacob had been cheated ten times.</p>
<p>If God felt sorrow, what could have been the reason? If God felt sorrow, that sorrow was not because the enemies were evil. It was because the altar of the Israelites who had followed on the road of God&#8217;s toil had collapsed. You should realize that was the source of God&#8217;s sorrow, and it was the grief of humanity.</p>
<p>For Moses, who had to go into the land of Canaan leading the mass of 600,000 people, there were yet other trials barring his passage. These were none other than the Red Sea course and the wilderness course. What does this mean? It means that Moses had to pass through his wilderness course of an ordeal on a nationwide level. Moses drove the Israelites along toward this fate.</p>
<p>In the wilderness, the Israelites had to lift their hands if Moses lifted his hands. If he sat, they had to sit. If he went, they had to go. In other words, by becoming the second Moses, the mass of 600,000 people should have represented Moses and God. Instead, they forgot about this. To put it another way, when God pulled them out of the Pharaoh&#8217;s court, the Israelites considered God to be their loving God and they were grateful. Since there was a solemn promise yet to be fulfilled, they expected Him to guide them as far as the land of Canaan.</p>
<p>Why, then, did this people fall in the wilderness? It is because they did not have the mind of Moses while living the life of wandering shepherds for forty years in the wilderness. Moses had fought with a heart of integrity for the sake of the chosen people God loved. If the Israelites had had even a little bit of that heart, they would not have collapsed.</p>
<p>God wished to establish the blessing of Israel on a nationwide level. His hope was for Moses and the people to become one. However, since they became divided, the representative, Moses, also collapsed. As Moses fell, the Israelites came to pieces. You should know this.</p>
<p>When the people came out to the wilderness and said they were hungry, God fed them with quail and manna. Why did this same God let the Amalekites attack the Israelites? This is because man had betrayed the will of the heavenly principles. Whenever human beings attempt to seek the will of the heavenly principles, there remains a providential condition to be satisfied for God to strike from the opposite side. For this reason, God could not help but attack the Israelites through the Amalekites. You should understand that Heaven had this kind of fretful shimjung.</p>
<p>Moses should not have died, and the race should not have fallen and collapsed. This happened because they failed to pass this test. Moses had responsibility toward the race as a guardian, so even though he had not erred himself, Moses built an altar of atonement for forty days after climbing Mt. Sinai. He represented the race that had distrusted, and he fasted and sacrificed in order to restore Israel, which was on the brink of collapse.</p>
<p>If the Israelites had kept the qualification of being the chosen people, then when Moses went up to Mt. Sinai with a grievous heart, the mass of 600,000 people surrounding that mountain should have been diligent in their prayers, saying, &#8220;Oh, God, please send our guardian Moses back down to us.&#8221; They should have appealed to Heaven without sleeping and eating. However, there was no such person at all.</p>
<p>It was not for his own sake but for the benefit of the race that Moses had to fast and pray. Yet because the people were not even dreaming about it, they had no choice but to meet with destruction. Even though Moses faced the peak of difficulty, like Jacob praying on the banks of the Jabbok River, no one could lead the mass of 600,000 Israelites into the right path in Moses&#8217; place. If even one such person had emerged and led the nation, they would not have been in a difficult position, but would have stayed in a comfortable place. Since that was not the case, Satan took the people. This is the kind of path our ancestors walked.</p>
<h3 align="center">The Significance of the Trial and Ordeal</h3>
<p>By again setting up guardians, Joshua and Caleb, who substituted for Moses, the second generation was led into the land of Canaan. Once inside the land of Canaan, the Israelites had to make material the ideology of the sacred temple and be united into one with it. However, since they could not, the Israelite people fell down. In the fullness of time, the race which does not unify centering on the word will inevitably be forsaken by God.</p>
<p>Adam and Eve could not become the masters of all creation. All of creation was created through six periods centering on the word. Therefore, when the time to cross the hill of the worldwide level came after crossing the nationwide level hill of the restoration of all creation, the trial of whether or not to erect the word of God will inevitably take place in relation to the number six. The matter of attacking Adam in place of the archangel will inevitably take place.</p>
<p>That is why six centuries before Jesus&#8217; coming, the Israelites were tested as to whether they kept to the word of the Old Testament. When the time came for the Israelites to spread the will throughout the world, Heaven struck the people. This is the period when the Israelites were taken captive in Babylon. Subsequently, this race, which had betrayed God in the past, stood at a crossroads where they had to settle the grave issue of whether or not to betray again.</p>
<p>Because they had betrayed Heaven, when this race came to cross the hill of the new number six, Heaven could not help but allow Satan to attack and strike. This is why God allowed the Babylonian captivity.</p>
<p>What should the Israelites have done at that time? Holding onto the word God gave, entertaining the shimjung with which Moses looked out for God&#8217;s concerns and loved the nation even while wandering about in the wilderness, they should have gone to the enemy country Babylon and defended the word to the death. They should have been that kind of race. Since they were not, the Israelites disintegrated.</p>
<p>The Israelites stood on the historical course to restore the standard of the word on the second nationwide level centering on the Old Testament. If they had kept the heart of integrity of being God&#8217;s chosen people, then even if they were taken captive in Babylon, a new leader like Moses could have emerged to guide them onward.</p>
<p>After the lapse of six centuries, what took place? Just as Jacob ignored Esau&#8217;s being in the line of direct descent, and as Moses ignored the chosen Israelites because of the will, Jesus came to the earth and stepped forward ignoring the Old Testament, which was the Esau-like word. The Israelites, who were in Esau&#8217;s position and were to welcome Jesus, could not receive him favorably. That&#8217;s why the realm of death on the worldwide level has been formed. You should understand this.</p>
<p>What kind of people were the Israelites? They resembled the archangel who tested Adam and Eve in the Garden of Eden. Five hundred years ago, there was some attack upon the New Testament. The Renaissance, centering on humanism, caused the feudalistic society centering on Christianity to collapse. The sovereignty of the Papal court crumbled, and it was destined to go through a period of captivity in Avignon, owing to the attack of France. What does this explain? In the course of restoration, the second Israelites should have been formed at the time of Jesus. However, since Christianity, which bore the new mission of the second Israel, could not fulfill its mission, Christianity was struck on the worldwide level. You know this very well from study of the Principle.</p>
<p>The Pope had to repent before Heaven and entertain the heart of integrity that God had established. By upholding this will until the final days, he was to arrive at today. Then at the time of the final days, what will the Popes have to do? They should understand that the established word and denominations will be in the position of Esau, and they will stand in the position of the Israelites.</p>
<h3 align="center">God&#8217;s Hope Regarding Christian Believers</h3>
<p>If God had a hope, what would that hope be? God&#8217;s hope is to restore the chosen Israelites, who were revived to represent the lost, fallen humanity of this world. You must understand the providential will of Heaven in wishing to restore the Israelites. Where did the Israelites who were established through Jacob and Moses disappear to 2,000 years ago? They became enemies of Jesus. Jesus&#8217; course was such that he had to establish the Israelites and the Jewish nation as the foothold for restoration of the world. Centering on this foothold, he should have unfolded a lightning war for the restoration of Canaan on the worldwide level. However, because of his death, Jesus was put in the same situation as Moses. That is why today&#8217;s Christianity has been cast into a wilderness age. Like the Israelites who lost their master, Christianity continues on a wilderness course.</p>
<p>Jesus should have restored the chosen, second Israel and the Jewish people should have restored the worldwide level land of Canaan centering on him. Where did the chosen Israelites who bore this sort of responsibility disappear to? Where did Judaism go? With the disappearance of the Israelites, the disappearance of the Jewish denomination, the disappearance of an individual Israel like a Jacob or Moses, and the disappearance of the family of Israel, Jesus&#8217; situation became pitiful, and he died.</p>
<p>Jesus did not die because he wanted to. The established theologians today are under the false impression that Jesus could not help but die. After being pursued by the nation and denomination, being cursed by the family and betrayed by the twelve and finally even the three disciples, there was no place whatsoever for Jesus to go other than to death.</p>
<p>God did not send Jesus to have him live his thirty-odd years of life in misery. Jesus was sent as the Crown Prince of Heaven and as the master throughout heaven and earth. He alone represented the ideology of creation. God&#8217;s loving, beloved son, did not experience hardship due to his own wrongdoing. Because of the ignorance of the race, the denomination, the society and the family, Jesus walked the road of tribulation.</p>
<p>Where would the Israel Jesus was looking for be amongst us, we who committed the historical sin of killing Jesus! You must appeal with your very heart. Where would the denomination that Jesus was looking for be! You should pray with your very heart. You should understand that Jesus came to this earth 2,000 years ago and looked for the Israelites and such a denomination.</p>
<p>Jesus died because the chosen first Israel rejected him. For that reason, by erecting the Christians who believe in him as the second Israel and spreading them throughout the world, Jesus is again trying to make things right. Now is the time.</p>
<p>What kind of mission do the Christians spread all over the world have? Because Israel, which was established after being chosen in advance, was lost because of rejecting and crucifying Jesus, the course for the construction of the second Israel has been left for today&#8217;s Christians to walk.</p>
<p>What kind of situation are the worldwide Christian believers placed in? It is time for them to unite into one denomination centering on a person resembling Jesus&#8217; twelve disciples or Jesus&#8217; three special disciples. Since Christianity has lost this organization, it is facing a matter of grave concern. By having each of their positions determined in an organization of ranks centering on the twelve tribal chiefs and seventy elders, the mass of 600,000 people could have passed through the wilderness course. However, the Christians throughout the world, who bear the mission of the second Israel, do not have such ranks today.</p>
<p>Jesus died because the twelve disciples who represented twelve ranks and the three disciples could not fulfill their responsibility. Christianity throughout the world should realize that the time is near to unite by formulating twelve denominations centering on the world&#8217;s most prominent ones.</p>
<p>What life is Jesus leading now? Because Jesus did not attain all of Heaven&#8217;s will on this earth, in the same manner that Jacob and Moses had to lead the lives of shepherds, Jesus too lives the life of a shepherd in the spirit world. Since he has been praying for you without rest upon arriving at the spirit world, his life is like that of a shepherd.</p>
<p>What has Jesus done in the spirit world? After gathering the people who died believing in him throughout the course of the 2,000 years since his death, Jesus established the second Israel in the spirit world to replace the one which had been lost. This is paradise. The first Israel who tried to kill Jesus was lost. In accordance with the principle of restoration through indemnity, after his resurrection, Jesus restored the first Israel in spirit by gathering the faithful believers who had come forth seeking him. Those restored people in spirit world are in the state called paradise.</p>
<h3 align="center">The Qualification of the Master<br />
of the Kingdom of Heaven on Earth</h3>
<p>How is the world of paradise constructed? The spiritual people in paradise have been left with the unsatisfied condition to establish a foothold that welcomes Jesus on the earth, having received the blessing of being the first Israel. Therefore, all spiritual people in heaven are fated, through returning to the earth, to restore through indemnity the fact that the first Israel rejected Jesus. They must do this by setting up the presently living Christians to represent the blessing of the second Israel and then uniting with these people. You must understand this. Today&#8217;s Christians do not understand this.</p>
<p>What kind of time is the final days? Just as when foreign nations were attacking the Jewish people who believed in the word of the Old Testament, there will come a time to strike the Christians who believe in the word of the New Testament. That is why secular humanism is striking Christianity. Likewise, even in the midst of Christianity being struck, there must come forth one religious denomination that can hold onto the word. That denomination must be a reformative one.</p>
<p>During Moses&#8217; course, when the time came to attend the holy temple after attending the tabernacle, the Israelites did not know that there was a trial yet to be endured, the trial of having to fight in union. During the transition from the age of attending the holy temple to the age of having to complete the holy temple of a substantial entity, a cosmic battle had to take place. Because this battle could not be stopped, today it has expanded worldwide.</p>
<p>In the same manner, you should have the holy temple of the substantial entity ready in the final days. What do you have to do after attaining the holy temple of the substantial entity? You should build the kingdom of Heaven on earth.</p>
<p>Because of their fall, humankind lost the word. Therefore, the word of the Old and New Testaments came out and guided mankind in the right direction. Now the new word will come out and restore the people who are unified with that word into substantial entities. The age of feudalism was the period of putting God first in importance. Then the Reformation came into being. Owing to that, man stopped thinking of putting God first in importance and instead came to think of the possibility of uniting with God. Mankind has passed through this kind of course; now it has come to the age of restoring the holy temple of the substantial entity.</p>
<p>What should you do from here? After passing through this time of centering on the New Testament, the ideology of the Completed Testament will appear on the worldwide level. When that happens, you must become masters who can embrace the world, the representatives of Jesus. To be a master of the kingdom of Heaven on earth, you must become the holy temple of the substantial entity. After that, you must become a master who is acclimatized to the surroundings. To become this, you must go through a course of ideological revolution.</p>
<p>What form would that course take? Since history will reap what was sown today, in the worldwide-level final days, men of faith with established concepts and doctrines will stand in a position where all could betray Heaven. Who are they? They are the people standing in a position like the archangel&#8217;s. In the same manner as the archangel seduced Adam and Eve in the Garden of Eden, in this age of the final days, there will inevitably appear a time when spiritual denominations resembling the archangel will emerge and oppose God&#8217;s will.</p>
<p>As we realize that God unfolds the providence of restoration in accordance with principles of this kind, what must we do to become the chosen Israelites in these final days? You must make up your mind. You must make a resolution. What kind of people will you have to become? You must fill the place of Jacob. You should become a person who represents Jacob who, having gone through a twenty year course, fought with faith on the banks of the Jabbok River. You should become a man who can represent Moses, who walked on appealing to Heaven, holding the Israelites together in the wilderness course. You should be like Jesus as he prayed in the Garden of Gethsemane, worried about Israel, which represented world humanity.</p>
<h3 align="center">The Position of Christians Faced<br />
With the End of the World</h3>
<p>Now then, second Israel, scattered all over this world! Where can you go? The time has come when Christians of the world should appeal to Heaven. In the same manner as the distressed Israelites wandered about looking for a leader, asking who could guide them to the promised, blessed land of Canaan while in the enemy court of the Pharaoh. Christians today also will have to look for the ranks and tribes to which they belong.</p>
<p>The established church will collapse. Only when that happens will it be possible to divide into twelve ranks. Try your utmost to stop it.</p>
<p>Because Christianity must go through the fate of the worldwide level restoration by forming ranks, even if it controls a nation, the time will come when Christianity will lose its prestige before the society, family, and even before the individual.</p>
<p>The Israelites formed ranks just before leaving for the wilderness. They waited until the last minute, not carrying out the rank formation when they were in Egypt. The time has come for world-famous Christianity to start the formation of ranks, because the Second Coming for the sake of the restoration of Canaan on the worldwide level is near.</p>
<p>If before his death Jesus had arranged for every man of faith to be able to belong to a tribe by having formed ranks on the earth centered on Peter, John, James, and the other disciples, Christianity would not be in confusion today. The time to get this under control is near. The time may come when it is possible to attest to all by setting up one group who has received rejection from the bottomost position. You never know. The Unification Church may be just that kind of a church. Who knows?</p>
<p>Today, in Korean Christianity, a new denomination has emerged centering on some miracle worker called either Elder Nah or Elder Park. This denomination is breaking the church apart now. This kind of thing happens because the rank formation has to be made. What would be the matter of concern left unresolved here? It is the concept of established doctrine. This is an enemy before God. The concept of those with established doctrine is, &#8220;Since I am an elder son like Esau, I should get God&#8217;s blessing.&#8221; This kind of petty thought should be discarded. One little mistake and you will insist upon this and easily become like the Israelites who rejected Jesus.</p>
<p>Since we have reached the end of history, how can we get over this barrier now? Who is going to be the enemy? The archangel was the closest person to Adam in the Garden of Eden, and he became the enemy. When Jesus came as the second Adam to restore Adam, the high priests of Judaism who corresponded to the archangel type in the spiritual world were his worst enemies. Because they attacked Jesus after inheriting what the archangel did for the second time, they should go to hell.</p>
<p>In the final days today, teaching professionals will strike Heaven by becoming archangels before the Lord of the Second Coming. However, even if put in this kind of circumstance, the historical fate will go over, uninfluenced by the environment. Who is to walk this kind of road? Men of mission must emerge who are like prophets and can speak the new word and reveal the new end. However, they will receive rejection before the established denomination and therefore will move onto a new stage.</p>
<p>What kind of age is coming at the same time? The age of attack from the spiritual world will come. In a similar way as the archangel harassed Jacob on the banks of the Jabbok River and attacked Moses and Jesus, in the fateful age of the close of the world, all men on earth will oppose. Even Heaven&#8217;s attacks will come.</p>
<h3 align="center">The Faith that Can Cast Off<br />
the Yoke of Satan&#8217;s Ridicule</h3>
<p>Jesus said, &#8220;My God, my God, why have you forsaken me?&#8221; (Matt. 27:46). This was because, as the hero of the restoration of the whole universe, Jesus had to indemnify the fact that Adam, who represented the universe, had betrayed Heaven. Because in this situation Jesus said, &#8220;I know God,&#8221; even as God was saying, &#8220;I don&#8217;t know you,&#8221; he was able to bring about spiritual resurrection. You must be aware that this kind of crucial historical moment is left for you to overcome too. Since you feel that the world&#8217;s fateful close is infiltrating into the realm of your life today, you should understand that this is advance notice of the time when Moses and the race were to unite. This is advance notice of the age when Moses and Pharaoh fought against each other.</p>
<p>Where did God&#8217;s sorrow originate? You should understand that God feels sorrow not because those leaders did something wrong. It was their followers who made God sad by their mistakes.</p>
<p>What is the purpose of your walking the road others do not know about, this road that others do not walk? By becoming one rank, God can operate. After putting your strength together and uniting, you should become a successor who defends the footsteps of Moses to the death. He had a tough struggle in relation to the will of the heavenly principles. He forgot about himself to the extent of not noticing whether he ate or starved. You also must become the successor of Jacob. As Jesus&#8217; successor, following in his footsteps, you must fulfill the mission. This is the condition that enables the faithful believers in the final days to enter into the realm of the chosen Israel.</p>
<p>Because Jesus knew this kind of principle, he said the one who wished to live would die, and the one who wished to die would live. In other words, if you wish to subjugate Satan, you must step over even death centered on God. Only when man can step forward without being shaken even if Heaven betrays him, constantly faithful, will Satan separate from him. Then he will be able to escape from all conditions of Satan&#8217;s ridicule.</p>
<p>Now you must understand that after spiritually erecting the Christian believers scattered around the world as a second Israel to replace the first Israel that was lost, Heaven will construct the third Israel where these are all made one by uniting.</p>
<p>Therefore, you today must become ancestors of the third Israel like Abraham. You must become ancestors like Jacob and Moses, who was the representative of the race. You must become the representative of the third Israel like Jesus, who is the world&#8217;s representative. Furthermore, as you look back at the course of the history of God&#8217;s providential restoration, you should know that you should become the individual and race, the state and the world that can comfort God, overcoming Satan, who ridiculed Heavenly Father in the past.</p>
<p>What is Satan? He is a traitor rejecting God. Yet even Satan does not dislike God. That&#8217;s why God cannot help but reciprocate with Satan. Satan, too, likes God. Because this kind of condition exists, it could not but take a long time of 6,000 years. In the position of being fond of God, Satan says things like, &#8220;Please set me up and allow me to govern the whole universe as it was willed to be governed through Adam. Then I will absolutely obey God.&#8221;</p>
<p>Through confronting God, Satan has been working to attain His affirmation. He will try to stand in the position where, by objecting to the will of the providence to the end, he will force affirmation to be given.</p>
<p>Even a treacherous subject who relies on the strength of a loyal subject dislikes the king. But this treacherous subject is asking to be heard, after eliminating the loyal subject</p>
<p>Because the whole world is inside the realm of Satan, if this acknowledgment is given, then it is possible that the whole world can be returned before God. Then why can&#8217;t God do it? The rule of Heaven cannot be broken. Since God is the God of law, He cannot run counter to order. For this reason, even if He has to endure all kinds of trouble, God does not acknowledge Satan. He tells man, after setting him up before Satan who controls the world, to stop Satan who ridicules Him. This has been God&#8217;s fretful shimjung.</p>
<p>If a man appears who stops Satan from making ungrounded accusations, Satan will not be able to be critical of God. If a master appears who brings out and restores the heavenly principle that the archangel is to be governed by Adam and Eve in the Garden of Eden, all Satans will have to succumb. Attaining that does not mean to go to God&#8217;s royal seat in the spiritual world, as in the case of Jesus. It means establishing such a day on earth. The time to establish a day like this is the age of the Second Coming.</p>
<p>You should not stand now in Satan&#8217;s position, which is to offer opposition. You should follow the footsteps of God, who toiled for 6,000 years. You who are faced with the final days today should experience the shimjung of God, who toiled in the course of restoration from Adam&#8217;s age, the first start of God&#8217;s eternal world, until today. You should follow after God. In spite of being faced with a fate of this kind, you are not even dreaming about it. That means the situation is serious.</p>
<h3 align="center">The Way to Win Satan&#8217;s Trial</h3>
<p>There should be a chosen Israel of Heaven who can say, &#8220;God! Please receive glory through me and take rest.&#8221; Jacob, Moses, and Jesus represented this kind of mission. Only if you become someone who can fight against Satan, after inheriting the struggle that God has had with Satan, will the decisive sovereignty of Israel be set up before Heaven. Therefore, we should bring the war that defamed God to a conclusion. Because no objection can be raised, the war will be concluded. The time when we have to start the construction of the third Israel centering on such people will have to come. The struggle of having to attack the blessed land of Canaan, which was their own homeland, was left to be carried out by the Israelites who were in the land of Egypt in Moses&#8217; age. In Jesus&#8217; age, the struggle of having to build the blessed land of the worldwide level Canaan centering on the Israelites was left to be carried out. To those of us who have to build the third Israel today, a fierce battle to accomplish it in union has been left to be carried out.</p>
<p>What kind of people must you be today? At the time of the re- organization of the new Israelites, as the chosen people who will be put up before God in association with Heaven, you should willingly become a member of one trio, a platoon leader, a commander of a company, a regiment and a division. Who is going to be the commander of these heavenly soldiers? This is the problem. The time will surely come when this has to be done. In the end of history, all things will be united into one world. Because a mass of people want the unification of thought, and the world on earth is in need of a unification ideology, the time of unification when it is possible to be well-informed of the heavenly ideology will surely come.</p>
<p>What has happened in the course of history up until this time? If two got into a fight, the one with a bit more goodness would win. That is the principle. What is going to happen if the world on earth goes into the realm of one ideology? Whatever has a bit more goodness than the earth will win. This is the age when the spiritual world will attack the earth. For that reason, many kinds of diseases of the nervous system crop up, unnamed neuroses and whatnot. There is no medicine for this. For these kinds of problems you need the tonic of heaven and earth!</p>
<p>The time has come for the spiritual world to attack the earth for the sake of the ideology which can get heaven and earth in harmony. It is the time when men on earth should substitute for God&#8217;s will on earth. In order to become one, there will surely be a battle. The time of becoming one world after fighting between two sides is the very time of judgment when Heaven unifies by becoming the center. Likewise, in a situation like this, where the spiritual world is attacking the earth, the Lord of the Second Advent is to come with the mission of supreme commander representing the earth.</p>
<p>You who are about to start the course of constructing the third Israel! What do you have to do? You will be able to free yourselves only if you get to know the law of the spiritual world. You have to know the set-up of its chain of command. The army of a nation must know the password that is being used among its own army in order not to be attacked by its own during the fighting.</p>
<p>Now is the time when the password of Heaven is being heard. Now is the age of communication in code. It is the age of communication in the providential code, the historical code, the period code, the humanistic code, and the mission code. In addition, it is the age in which, through a code like this, connection can be made, the operation plan can be carried out, and the ideology of unification on earth can be represented.</p>
<p>Today the established churches raise objections, uttering the names of such as Elder Park, Elder Nah, the Unification Church, calling them a gang of heretics. We can take that. Modern times are such that science is discussing the age of the cosmos. This is the kind of age when an artificial sun is made. Since we have arrived at this kind of age, we should not hold fast to antiquated religious concepts. The one comprehensive Unificationism that can stand up and step over this will have to emerge.</p>
<p>There is a short-wave mechanism that can decode a secret code. If there is one with the short-wave mechanism who can decipher God&#8217;s secret, he will become victorious. For that reason, when the spiritual world comes down attacking the earth, the method of war will be different. The war will definitely take place, but I don&#8217;t know its limits. When a war of this kind takes place on the earth, conscientious people at that time will have to be mobilized.</p>
<h3 align="center">The Way to Become the Ancestor of the Third Israel</h3>
<p>Now you must understand that, in preparation for this one day in the final days, history has unfurled until today, sacrificing conscientious, good people. Today, we who are faced with the fateful fall, should look for and enter the last, unitary world of ideology and be able to sacrifice everything. Then we should become true heavenly sons and daughters who, riding upon Jesus&#8217; shoulder, can confidently say, &#8220;God, please take charge of me.&#8221; God also wishes to see sons and daughters of this kind appear.</p>
<p>You should heed that the mission to unravel all things in the world of paradise and introduce heavenly life does not rest on Jesus or God. It rests upon you today in the final days. A representative must emerge who can take on all the operational plan in place of Jesus and fight on behalf of God and fulfill the responsibility. Only then can God and Jesus be liberated. With this kind of cosmic mission in front of you, you should find and move forward on the course of the triumphant Israel.</p>
<p>For that purpose, you should find your leader and the rank to which you belong. Also, you should know what kind of position you are in before Heaven. You should become representatives of Moses, Abraham, Jacob, and Jesus, who are unchanging. You must become someone who can receive a respectful bow from Satan along with praise, saying, &#8220;Yes, you are God&#8217;s son (or daughter) who has the qualification to be able to return glory before God on behalf of the ideology of the creation.&#8221; When you get to command Satan, you will then be able to stand before God representing the ideology of the holy temple on the worldwide level of the garden of Heaven on earth.</p>
<p>Before that happens, you will face one big, fierce battle. Various denominations will attack you. You will be tested spiritually. As God struck Moses, you too will have this kind of course. As the race betrayed Moses, such a course lies before you too. As Jesus was forsaken on the cross by Heaven, such will happen to you too. As Jesus was betrayed by the race, such a course will lie before you. Knowing this, you should not be dispirited when it happens.</p>
<p>God&#8217;s will is not easy; it is extremely difficult. For that reason, you should not fall down in the course of battle, even when receiving extremely heartrending objections, bearing on your back the worldwide level agitation. Until the world and heaven and earth find one unitary point, you should move forth, fighting continuously.</p>
<p>In this process, please don&#8217;t bewail your fate like the Israelites bewailed the lack of food and water in the wilderness after leaving Egypt. Please don&#8217;t complain about no one giving you recognition. Please consider it to be the best thing if you have found and held onto one leader who understands you and who is like Moses. By grabbing and holding only onto God and Jesus, who understand you, and by believing that this is the best thing, if you hold onto that man even if everyone rejects you, you will then inherit what that man is to attain. Only then will you be able to participate in God&#8217;s glory with the qualifications for being the chosen people of the third Israel.</p>
<p>Then you will be able to be the man of God&#8217;s glory. At the same time, you will be the man of historical glory who represents the ideology of the whole universe. Only if we appear before Heaven representing the world as glorious sons and daughters will God be able to take a rest for the first time.</p>
<p>We will not receive such blessing as the angel gave to Jacob. We will receive the blessings God planned to bestow upon Jesus by personally lifting His hands. In other words, God will bless you who are restored in the final days to be His sons and daughters who represent Jesus, the heroes of the eternal third Israel. He will bless you for the first time to be substantial beings of happiness, glory and beauty that Heaven can rejoice about eternally.</p>
<p>Likewise, by penetrating into the sphere of God&#8217;s love through Jesus&#8217; love, if you attain God&#8217;s love, you will then be able to become the ancestor of the third Israel. You must understand this for certain.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>While the rank formation has been done in the name of the second Israel in the spiritual world, Christianity, which is spread throughout the world today, has not been able to accomplish it. Father! Please awaken this race, which is asleep. By awakening the sleeping Christians of the world, formulate the ranks which can replace the blessing of the second Israel on the earth in order that the spiritual world may become one. Please grant us the right of being the chosen people, able to build the third Israel on the worldwide level today.</p>
<p>Please allow us to inherit the heavenly mission to go forward as far as the world through the tribe organized in rank, through the race and through the state. Allow us to inherit the course on which Moses fought. After we inherit the course on which Jesus fought, please allow us to repulse Satan&#8217;s reproaches and slanders. Going further, allow us to be able to attend the Father. Please grant us the Father&#8217;s glory. Father, I pray this sincerely from the bottom of my heart.</p>
<p>I ardently pray that You will raise these people to be sons and daughters of happiness who, after receiving the word delivered today, can overcome the tribulation of the chosen people Israel, whom God selected. Please allow these people to accomplish the course of the restoration of the worldwide level Canaan. Now, in the course of the fight with Satan, please allow us to unite and win the victory. Please allow us not to betray the will of Jesus, who is like one center. Please allow us not to make the center suffer.</p>
<p>We know that the race was the one that betrayed Moses, yet Heaven needed them for the purpose of constructing Israel. Now, ardently soliciting that You will allow us to be sons and daughters who will not let Heaven worry and who will more than accomplish the estate of the third Israel, I prayed all this in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html" title="Permalink to Let Us Be Israel, the Chosen People of God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Be the People Who Attend God</a></div>
<div class="nav-next"><a href="/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html" rel="next">The Whole Universe is Searching for the One Day of Love <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,254 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BE STRONG AND BOLD AND RESTORE THE LOST LAND &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-834 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-834" class="post-834 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BE STRONG AND BOLD AND RESTORE THE LOST LAND</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:46:00+01:00"> <a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:46:24+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
June 23, 1957</h3>
<p style="text-align: center;"><em>Joshua 1:1-9</em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text Josh-1-1">After the death of Moses the servant of the <span class="small-caps">Lord</span>, the <span class="small-caps">Lord</span> said to Joshua son of Nun, Moses aide:</span> <span id="en-NIV-5854" class="text Josh-1-2"><sup class="versenum">2 </sup>“Moses my servant is dead. Now then, you and all these people, get ready to cross the Jordan River into the land I am about to give to them—to the Israelites.</span> <span id="en-NIV-5855" class="text Josh-1-3"><sup class="versenum">3 </sup>I will give you every place where you set your foot, as I promised Moses.</span> <span id="en-NIV-5856" class="text Josh-1-4"><sup class="versenum">4 </sup>Your territory will extend from the desert to Lebanon, and from the great river, the Euphrates—all the Hittite country—to the Mediterranean Sea in the west.</span> <span id="en-NIV-5857" class="text Josh-1-5"><sup class="versenum">5 </sup>No one will be able to stand against you all the days of your life. As I was with Moses, so I will be with you; I will never leave you nor forsake you.</span> <span id="en-NIV-5858" class="text Josh-1-6"><sup class="versenum">6 </sup>Be strong and courageous, because you will lead these people to inherit the land I swore to their ancestors to give them.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-5859" class="text Josh-1-7"><sup class="versenum">7 </sup>“Be strong and very courageous. Be careful to obey all the law my servant Moses gave you; do not turn from it to the right or to the left, that you may be successful wherever you go.</span> <span id="en-NIV-5860" class="text Josh-1-8"><sup class="versenum">8 </sup>Keep this Book of the Law always on your lips;meditate on it day and night, so that you may be careful to do everything written in it. Then you will be prosperous and successful.</span> <span id="en-NIV-5861" class="text Josh-1-9"><sup class="versenum">9 </sup>Have I not commanded you? Be strong and courageous. Do not be afraid; do not be discouraged, for the <span class="small-caps">Lord</span> your God will be with you wherever you go.”</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father, You worked hard to choose and raise the Israelites. When reflecting upon Your earnest heart that ordered them to fulfill Your will, we feel today that we must fully accomplish the responsibility of the Christians, who must fulfill the will of the Father on behalf of the Israelites.</p>
<p>Please allow us to learn how to attend You, You who have been working hard throughout the long history. Let us understand Your situation, in which You have been fighting Satan with concern for us. Please allow us to understand the heart of the Father, who is concerned with embracing the chosen sons and daughters as the hope of the future and bringing them to glory.</p>
<p>The reason we exist today is not based upon our own will; nor does the glory we enjoy nor the joy that we are experiencing before You due to our toil. Rather, it is due to Your grace endowed upon us with humility, You who have been working throughout the thousands of years of history. What would we have to be proud of before all humankind? Would there be anyone among us who can command the universe with the truth? Please allow us to understand that it is not what we are asked to take responsibility for.</p>
<p>Please allow us to become sons and daughters who can manifest the will of Heaven completely on behalf of all humankind, while representing the power of the Father&#8217;s grace. I sincerely wish for and want this to be done.</p>
<p>Are there any groups of people, who desire to fulfill Your will, who understand You and who wish to be glorified through humankind? Such groups of people could be a base that You would be able to bless. They could become a foundation of glory to bless all of the universe. Please guide us to realize this. I sincerely wish for and want this to be done.</p>
<p>Please allow us not to find ourselves today only as individuals, but to become sons and daughters who would not be ashamed of themselves before the heavenly will, representing history, the entire universe, and the future world. By so doing, allow them to be proud of themselves with glorious joy. Father, I sincerely wish for and want this to be done.</p>
<p>Father, Your sons and daughters who are gathered here, are they honest with You? Did they willingly, of their own accord, bow down before Your altar? Are they prepared to sacrifice and offer themselves so that they can indemnify the historical sins? Have these children the integrity and character to follow Jesus, who climbed Golgotha carrying the cross? Can they offer themselves to be responsible for the sins and crimes of reality? Have they brought the result of a glorious victory from the fights fought on Your behalf against Satan for the sake of the glorious future?</p>
<p>Father, please allow them to be such sons and daughters, and sing glory to You. Please allow them to become loyal and filial children who can follow you for this will. I sincerely wish for and want this to be done.</p>
<p>Now, as You granted us this day, please look at us with compassion. Do not desert us, who have gathered for Your will. Please bless many denominations on behalf of this pitiful people, and bless the people and their altars which have lost the center.</p>
<p>Please grant the grace of Your compassion upon people and their altars, who do not know where the flame of life is burning. Please bless humankind. Please allow a new blessing and a new flame to appear quickly upon this land and people. I sincerely wish for and want this to be done.</p>
<p>Father, please remove the tendency that places weight on human reasoning, and correct all human-centered ideology. Please allow us to become people of character who uphold a God-centered ideology, who establish heavenly principles and ethics by becoming sons and daughters who can reverently attend the heavenly will, be loved by You, and undertake the duty of the chief priests. Through this, please allow us to rise on behalf of this people. Also, please allow us to come forward on behalf of the many churches. My beloved Father, I sincerely wish for and want this to be done. Please allow us to cleanse all of the wrong doings committed during the past week, and allow this time to be an opportunity when we can be immersed in Your new words and grace and in Your profound will and love which is bestowed upon us. Please allow us be proud of You before all of the creation and bow down to You in glory. I sincerely request that this be done.</p>
<p>Wishing that you had dominion over the entire service from the beginning to the end, I pray this in the name of the Lord. Amen.</p></blockquote>
<p>The topic of the speech that I would like to reflect upon with you is, <em>&#8220;Let Us Be Strong and Bold and Restore the Lost Land.&#8221;</em></p>
<h3 align="center">The Result of the Human Fall and<br />
the Purpose of the Providence of Restoration</h3>
<p>The original people would not have needed to long for the blessed land. The garden that God created was to be the blessed land, and it was the garden of beauty that humans could enjoy for eternity. However, because humans disobeyed the heavenly principles established by God, they came to grief, and the blessed land where they should have lived became a mere hope to them. We know all about this.</p>
<p>If God created all things, He would have had an ideal for the creation. If the ideal had been actually realized, not only the Creator but also His created beings could have sung joyful songs in the garden. Then humans also could have sung of their joy and been grateful for this. Due to the human fall, all of this came to have nothing to do with human beings. Further, all things created as the symbol of beauty before God and humans had to undergo a long history of lamentation until the present. They still cannot return glory and appreciation to God.</p>
<p>God has a purpose for creating all things and is responsible for fulfilling the purpose of creation. Thus, God must fulfill His will. Otherwise, God&#8217;s ideal of creation and the purpose of the providence of restoration cannot be realized as the will to introduce the world of joy. The people living on this earth cannot feel the value of life; nor can the whole universe.</p>
<p>Consequently, to fulfill the purpose of creation, God has been leading a dispensation in order for humans to return to this purpose. You are well aware that this is the long history of 6,000 years of restoration. When Adam and Eve fell, God regretted and lamented over creating them. You should feel to the bone that the lamentation of God began from your ancestors.</p>
<p>Because God is lamenting over it, all the created beings cannot rejoice, even if they desire to. Because the center of the creation is saddened, all the creation is also saddened. Then what would be the purpose of God&#8217;s unfolding the dispensation? Having set up the will, He wishes that will to be fulfilled. That will is to find someone who can liberate Him, who is sorrowful and grieving because of His grief and lamentation. This is the unifying point of the providence of restoration.</p>
<p>To find the person who can alleviate God&#8217;s lamentation, that is, the one person who can stop the human history of sin that caused lamentation to God throughout the 6,000 years of long history and cleanse the sinful history, is the purpose of the providence of restoration. To find one original person who can represent this history is the purpose of the providence of restoration. You should clearly understand this.</p>
<p>When you come before God, you need to desire to be forgiven. You also need to ask for the grace of forgiveness for the family, the nation, and the world. Yet we should transcend the level of begging God to liberate us from our personal grief and lamentation and should realize that we need to appeal to God to alleviate His profound grief, deeply immersed in His heart, which started at the beginning of human history and was caused by their wrongdoing.</p>
<p>Then who will be the one who makes us long for the garden of hope, the garden of restoration, and to enter the garden and return glory to God on behalf of the creation? That person will be the one who will volunteer to become an offering of sacrifice to indemnify to God all the sins committed by human beings. Further, this person will be the one who is willing to indemnify all human historical sins until the present and take responsibility for all the sins of the historical figures in human ancestry that led God to work for 6,000 years. He must thus say: &#8220;Father, please entrust all the hopes and lamentations that You could not express upon me. I will be the one who can fulfill all of Your hopes and eliminate all of Your lamentations.&#8221; We should know that God has been looking forward to seeing a person on earth who can replace Adam, the human ancestor, who should have substantialized God&#8217;s joy, ideal and glory.</p>
<p>Our fate is to free ourselves from the history of sin. Thus you should understand that God has been leading the dispensation of restoration with the wish of seeing sons and daughters who can deserve to be living sacrificial offerings. Such never existed throughout history who can say, &#8220;Father, through this, please be freed from all the grief and pain, and rejoice from today on.&#8221;</p>
<h3 align="center">The Purpose of Establishing Central Figures<br />
and Their Failures</h3>
<p>When reflecting on God&#8217;s providence of restoration, God established one person, Noah, after having endured a long 1,600 years since the fall of Adam and Eve. God chose Noah and saved him and his family. Further, He attempted to put him in the position of a chief priest, as a representative of humanity. This was God&#8217;s will. If Noah had understood the endeavor of God, who had worked for 1,600 years to establish him and had empathized with His sorrow, and if eight members of his family had felt the heart of God, there would not have been grief caused by the mistake of Ham.</p>
<p>Some people think that salvation is completed by being free from personal lamentations and pain, but it is not true. We should cleanse our own individual sins while also cleansing the universal sin. After pulling out many nails of lamentation from deep in the heart of God, we should be able to say, &#8220;Father, please rest in peace! God who has been leading the dispensation of restoration until the present, please be relieved from the heart-breaking grief. Hallelujah! Amen.&#8221; God has been waiting for such a victor to come to earth ever since the time of Moses.</p>
<p>When Noah&#8217;s family was saved from the flood judgment, they should have led a life of gratitude, but they continued their habitual life. We who came forth after being called by the heavenly principle can also easily commit the same mistake. Thus we should not be the kind of person who will repeat the habitual life. If Noah had faced God, who had saved him and his family, with a constantly renewed heart, had felt God&#8217;s heart of wishing for the arrival of a day when all humanity possessed the same kind of heart, and had established a life of absolute faith before God, he would not have committed the mistake of the second fall. Four hundred years after the failure of Noah&#8217;s family, God established Abraham, but he also failed. Through the condition of offering Isaac, finally during the generation of Jacob, the 21-year course of Jacob to realize the blessing came about.</p>
<p>Ladies and gentlemen, please try to figure out Jacob&#8217;s situation in which with the heart of unknown sorrow, he lived the life of a servant as a shepherd in the land of Haran for 21 years. The purpose of God&#8217;s calling Jacob was to complete the will of the blessing promised to Abraham. Taking it one step further, it was to liberate the lamentations of grief between God and humans. The chosen people did not know this.</p>
<p>By returning from the 21-year course in Haran, Jacob established the standard of restoring one generation. From that standard, a victorious foundation where God&#8217;s inner heart could be liberated was fulfilled. However, due to the failure of Abraham, Jacob&#8217;s descendants had to suffer in Egypt for 400 years.</p>
<h3 align="center">The Mission of Moses and Jesus and<br />
the Faithlessness of the Israelites</h3>
<p>We should understand that after having established the will, God worked vigorously for 2,000 years and restored one person, Jacob. After Jacob, through the course of 400 years, God established Moses, a central person on the level of the restoration of a people from the standard of restoring one generation by Jacob. Thus Moses was restored to be the fruit of God&#8217;s entire dispensation, conducted through a long period. Consequently, if Moses fulfilled his responsibility, the grief embedded in not only the human heart but also in God&#8217;s heart was to be relieved. Under such conditional circumstances, Moses was chosen to be the representative of the people.</p>
<p>As the fruit of God&#8217;s entire dispensation, Moses was the one who could not be substituted for by all the people. Chosen as such, Moses was in a position in which he himself was responsible for indemnifying the historical grudge, grievance and sorrow of the people.</p>
<p>That is the reason why during the forty years of life in the palace and the forty years of life in Midian, a total of eighty years of life, Moses did not lose his consciousness of the chosen people of Israel, inherited from the ancestors. He also maintained unchanging fidelity with all his heart.</p>
<p>Moses maintained the integrity to be related only to God&#8217;s will even while when he was fighting the Pharaoh. Moses also possessed all the qualifications that could not be replaced by all the people and could fight against Satan&#8217;s side. Because the Israelites did not become the kind of people who could replace Moses, God hardened the heart of the Pharaoh several times. You must know this.</p>
<p>Then what kind of hearts should the Israelites have had toward Moses? They should have accepted him as the one central person who was established at the price of God&#8217;s 2,000 years of work and for all the sacrifice made for those thousands of years made by their ancestors.</p>
<p>Because the Israelites did not understand that God found Moses at the sacrifice of everything, a crowd of 600,000 people had to die in the wilderness. If they had known the value of Moses not merely as an individual, but as the one who was chosen as the representative of the nation or all humanity, and had united with him, the people would not have fallen down in the wilderness.</p>
<p>Since the time of Moses, throughout many thousands of years, the purpose of many prophets coming to the earth, even Jesus&#8217; coming to the earth on behalf of the world was to take over the labors and lamentations of God, human beings, and the creation. However, who knew that Jesus was the conditional being who came to the earth as the representative of the world? Who knew that Jesus made a triumphant condition against Satan on behalf of God, who had been lamenting during the past 4,000 years? No one understood this.</p>
<p>Then whom should you find today? You should find one person who can liberate the lamentations of God, human beings, and the creation, and you should unite with that person. No hope can be found in you nor can God&#8217;s glory be found in you, if you do not do that.</p>
<p>Jesus is the one who came with such a mission, but how were the Israelites, the Jewish religious group of people who had been prepared for 4,000 years through God&#8217;s constant endeavor and toil? You should understand that those who claimed themselves to be living for God, calling to God, were faithless to the Messiah, the central person who came to liberate humankind from the lamentations of heaven and earth. They rebelled against him.</p>
<p>Had they realized that they were the people who should have known God&#8217;s sorrowful history of the dispensation, they would not have crucified Jesus. Further, when Jesus was hanging on the cross, the thief to his right should not have witnessed to Jesus as the son of God. The saints who were watching the scene should have done so instead, and thus saved his life. However, because there was no disciple of his who could take such responsibility then, we must now take over the mission.</p>
<p>Until the present, God has been working to send one person on earth who could free the lamentations of God and human beings. Human beings have been longing for the arrival of such a person. This is the providence of God and human history as well.</p>
<p>When viewed from this missionary perspective, it can be understood that Moses was destined to lead the Israelites from Egypt into the land of Canaan and destroy the seven tribes of Canaan. On that foundation on the level of a people, Jesus came to fulfill the purpose of the dispensation for the restoration of the world.</p>
<p>Today such a will of Jesus is revealed even in the land of the desert, the wilderness, or the satanic world, as in the palace of the Pharaoh. Yet because the Israelites could not continue to follow Moses as their leader, although they were to cross the Jordan River with Moses with God&#8217;s mighty power, destroy the seven tribes in the land of Canaan and build the kingdom of Heaven there, they failed to do so. Thus, they had to remain in the land of the wilderness. Similarly, even today, those who do not fulfill a responsibility like that of Jacob and thus do not build the Kingdom of Heaven on earth, cannot enter the land of Canaan but must remain in the wilderness. This is what Christians do not realize.</p>
<p>Then what was the condition of resentment that led to a crowd of 1,600 Israelites in the course of wilderness being separated from Moses? You should not be ignorant of this today. It is because among the Israelites, there was a group of people who longed for the life in the bosom of the enemy in Egypt. They attempted to block Moses&#8217; path of heavenly destiny.</p>
<p>At first, when the 600,000 Israelites under the leadership of Moses fought Amalek, they won as Moses raised his hand, and the tide turned against them when he put his hand down. Thus, they were united with him. Later, they changed.</p>
<h3 align="center">The Sufferings and Temptations of Moses and Jesus</h3>
<p>From the historical viewpoint, people who desired to attend God first had to fight an invisible Satan and next a visible Satan. Then they engaged in a battle with poverty due to a lack of material. Consequently, Jesus was given a temptation through bread on the personal level; next he was given a temptation through the temple on the environmental level; thirdly, he was given a symbolic temptation on the world level while standing on the top of the mountain. Such events took place based upon the principle of the struggles between good and evil.</p>
<p>Then what kind of heart did Moses keep in the attendance of God? He had the heart to attend God, to fight the enemy Amalek tribe in the wilderness, to fight starvation, and the courage to step forward fearlessly at the risk of his death. Moses fought Satan by himself and fought hunger for a total of eighty years, during the first forty years of his life in the palace of the Pharaoh, and during the second forty years in the Midian wilderness. When he won the fights, God called him.</p>
<p>Moses was not the only person who went such a path. Jesus did, too. Consequently, Jesus himself underwent the temptations from Satan that symbolize the confrontation with Satan. First, to overcome himself, there was a forty-day fasting period in which he fought against hunger, making himself an offering. Next, there was the temptation, &#8220;Make this rock into bread,&#8221; to pass through the temptation of material.</p>
<p>The reason Jesus had to go through this process was that of the fall, humans lost God, lost their position as a son and a daughter of God, and lost the creation. Thus, conditions were required to restore these.</p>
<p>Accordingly, also on a course that saints should walk, no matter the level, individual, a people, a nation, or the world, there are the temptations of Satan, who represents the world of evil. Also, instead of the glory as God&#8217;s son or daughter, there is a course of the cross to be followed. Next, it is required to overcome the suffering of hunger caused by the loss of the creation to Satan.</p>
<p>The Israelites in the palace of Pharaoh were united with Moses and won over the temptations from Satan, but when they were confronted with hunger while fighting Amalek in the wilderness, they came to resent Moses. Then where did this resentment against Moses derive from and why? If they had been born in the wilderness and had followed God&#8217; will while living there, they would not have resented Moses. However, the habits developed during the life of four hundred years in Egypt and the living environment blocked their life in the wilderness. You must keep this in mind today.</p>
<p>In other words, the Israelites depart out of belief in Moses, but they could not forget the previous life environment and could not abandon their previous lifestyle. Thus, they came to perish. It interfered with the path of Moses and it separated them from Moses.</p>
<p>Consequently, the second chosen people who are to fulfill the ideology for the restoration of the land of Canaan on the worldwide level are Christians throughout the world. They can represent Israel on the worldwide level, and they should be proud of being God&#8217;s chosen people, even if they are faced with times of hardships like those of the first Israelites. At the same time, we should not follow the same footsteps as the Israelites, who perished due to their complaints and faithlessness when they were faced with starvation in the forty-year wilderness course and could not understand the viewpoint of the leader who came alone on behalf of the people.</p>
<p>Who destroyed the future of Jesus? They were the people who were chosen to fulfill the will of God on behalf of God, human history, and the whole. They should have led a life to fulfill God&#8217;s will and set the standard of their life of faith based upon it, but they failed to do so. That is, as the Israelites who should have upheld Moses&#8217; will made him fall in the wilderness, the same people who should have upheld the will of Jesus made him die on the cross due to their faithlessness.</p>
<p>Consequently, Moses&#8217; will was transferred to Joshua and Caleb, and they led the people into the land of Canaan. Similarly, the representatives of Joshua and Caleb in the second Israel had to inherit the will of Jesus and enter the land of Canaan on the worldwide level along with the disciples of the second Israel and build the Kingdom of Heaven on earth in that land. This is the hope of Jesus, and the ideal of the Second Coming.</p>
<p>Thus today we who are called for the fulfillment of the will of God should understand the historical background of the providence and should never commit the same sins on the level of the people. You should not become the ones who will again walk the same sinful path that the Israelites walked.</p>
<h3 align="center">The Lord of the Second Coming and<br />
the Mission of Christianity</h3>
<p>Then what should we do? We should understand that the Lord who comes in the last days is coming to eliminate the conditions that caused God lamentation for 6,000 years and to fulfill the purpose of the faith of the many saints.</p>
<p>If the Israelites who departed with Moses at first understood that they had to abandon all their possessions, if they had only followed Moses, abandoning everything they had in the wilderness as well, they would not have been separated from him. We should know this.</p>
<p>Today, what are the first things that we should do while we are being prepared to receive the day of the second advent, longing for the ideal garden? It is to deeply understand that the Lord of the Second Coming is the fruit of the 6,000 years of hard work of God and our ancestors.</p>
<p>If he comes to the earth, what are we supposed to do? We should gladly offer everything in the world and be ready to serve him as the representative of human history, the being who can end the sinful history of humankind. He alone is the representative of God and all of humankind.</p>
<p>Unless Christians in the world have such a heart, they will face the same consequence of lamentations caused by the failure of Moses in the wilderness. Therefore we must become those who know how to toil for the sake of the Lord who is coming again.</p>
<p>Each of us in that position today should remember that, after the death of Moses, whose goal was to arrive at the land of Canaan, Joshua and Caleb became the successors of Moses&#8217; mission. We are the ones who are to inherit the historical mission of Joshua and Caleb. That is, we should become like Joshua, who made a condition of offering through which God&#8217;s grief and lamentations of several thousand years could be liberated by leading a multitude of 1,600 people into the land of Canaan.</p>
<p>Unless we are determined to be like Joshua and Caleb today, uniting our people wandering in the wilderness, we cannot enter the blessed land of Canaan, nor can we complete the ideal temple. Since you have understood God&#8217;s love and grief, you should have a different purpose in praying. Also, we should become the kind of person who can understand the heart of God, who left Moses and the faithless 600,000 Israelites in the wilderness and who through Joshua and Caleb, led the second generation into the land of Canaan.</p>
<p>What is the position that you have reached? You are in the position where you should lift the flag of judgment high, based upon the footsteps of 6,000 years during which our ancestors have been walking in hardships. You should take over the mission of Joshua and Caleb, who roared at the Israelites to cross the Jordan River.</p>
<h3 align="center">Be Bold and Strong</h3>
<p>If we say that we are willing to take on such a responsibility and mission, what would God emphasize to us? As God told to Joshua, who took over the mission of Moses in the wilderness, &#8220;Be bold and strong.&#8221; He would assert us to be the same.</p>
<p>Now we should understand that we are in the wilderness, looking at the blessed land of Canaan on the worldwide level, with the hope to enter the land. We should maintain our mind and body like that of Joshua or Caleb.</p>
<p>Then how should today&#8217;s Christians throughout the world live? They should appeal to Heaven so that someone like Joshua or Caleb will appear on the earth and lead Christianity today. During the time of the wilderness where the center was lost and chaos and confusion were prevalent, Christians should clearly understand that the time has come when someone like Joshua or Caleb should appear to resolve the problems and give direction to move forward. For this to be done, the denomination of each individual is not important. This is what we should understand.</p>
<p>In the Book of Revelation, Chapter 11, two olive trees are prophesied. What does this mean? Prior to the departure for the worldwide course of the restoration for the land of Canaan, it prophesies that someone like Joshua or Caleb will appear. As Joshua, who appeared on behalf of Moses, entered the land of Canaan, leading the Jewish people, today someone like Joshua or Caleb with the gospel of Jesus will appear and march forward into the new blessed land of Canaan on the worldwide level, leading the people of God.</p>
<p>Furthermore, just as the group of people who entered the land of Canaan with Joshua and Caleb destroyed the seven tribes of Canaan, you are also responsible for destroying Satan. We should understand this. You should become courageous heavenly warriors and be responsible for walking such a path. You should remember this well. Even if someone like Joshua or Caleb who speaks the new word appears at any place in the world, we should become the kind of person who can open our hearts, listen to the word, and live for God.</p>
<p>The path of Joshua and Caleb was full of adventures. Their path was a difficult pioneering one, one of battles. Wherever they went, there were paths to be pioneered. Sometimes on the individual level, other times on the level of the environment, they had to face courses in which they had to fight all kinds of tribulations.</p>
<p>When Moses was about to lead the Israelites into the blessed land of Canaan, Pharaoh attempted to kill Moses, and there were many people who were faithless among the Israelites and opposed him. They faced the same problems. God, who knew this well, said to Joshua and Caleb, &#8220;Be strong and bold.&#8221; What does this mean? That means to transcend all the human conditions. For the same reason, Jesus was triumphant in overcoming all the human conditions through his three temptations. Accordingly, even 2,000 years later, today you should also be strong and bold in overcoming all the human conditions.</p>
<p>Joshua was placed in the position where he had to walk a path of victory until the last moment from the individual course of battle on behalf of Moses. Along with the words, &#8220;Be strong and bold,&#8221; he was also advised, &#8220;Consider the individual whom you are dealing with to be an enemy, any people to be your enemy, and any land to be the land of the enemy.&#8221; We should understand this clearly today.</p>
<p>Today if we stand in the same position of Joshua, we will also meet enemies wherever we go. The environment will also attack us. It will be the same with the people and the nation. However, if we who are chosen are united and become second Joshuas who fight until the end at the risk of our lives, if we become saints who can take responsibility for worldwide Christianity, following Jesus Christ at the risk of our lives, we can win any battles ahead of us. This is the reason God wants us to be strong and bold.</p>
<p>Then what should we do with ourselves? We who are in the position of being strong and bold should be able to see ourselves correctly. We should be able to judge ourselves if we have done something wrong. Also, let us not think that we have lived thirty or forty years of life. Nor let us think of ourselves for the present only.</p>
<h3 align="center">The Significance of Human Existence and<br />
the Mission of Human Beings</h3>
<p>Who then are we? We should understand that in order for me to exist today, God has been working hard for 6,000 years, going through worldwide battles. We were found through such endeavors of God. Thus, you should not forget the grace of God who has been nurturing you. Further, we should realize that we are offerings to God on His behalf. You should also understand is that in order for you to have come this far, there has been a path of sufferings and lamentations and grief for God that He could not express. He has been going through a path of difficult and rough battles, paying the price of sacrificial blood, shed by countless ancestors. Further, we should become sons and daughters who can feel this love of God, who has been toiling hard to save us.</p>
<p>Now, we should know to pray to God, &#8220;Please help us understand Your heart of 6,000 years ago and that of today. Please help us be Your representatives.&#8221; We should be determined to be a sacrificial offering to God whether alive or dead. Thus we should be able to pray, &#8220;Since we are offered to You as a sacrifice, do whatever You desire with us.&#8221;</p>
<p>Throughout many thousands of years, our ancestors have been building an altar of blood. Jesus died also as a sacrifice on the cross. After his death, Christians also have been building an altar of blood for 2,000 years. Therefore, we should understand that we come on the foundation of such altars. In that position, we can call God &#8220;Father,&#8221; hear His voice, and appeal to the Father to save all humankind on His behalf.</p>
<p>We should also know the anxious heart and grief of God, who has been leading 6,000 years of the providence, and we should become the children who can comfort God. You should be able to figure out all matters like this on your own and demonstrate them in action.</p>
<p>Then what should we in this position do? To culminate God&#8217;s dispensation of salvation, we should understand that we must observe the tradition established by our many ancestors. There is also the enemy, Satan, who is trying to destroy the conditions upon which God can operate. To overcome the enemy, we should be determined to become sons and daughters who would feel a sense of responsibility to mobilize even down to the tiniest cell in our body. If we call God from this standpoint, we will come to understand that He would not be God who had a relationship only with Moses. Nor is He the God who only had a relationship with the Israelites. He is the God who can be also with us. God is the one who created all things, who had the relationship with our ancestors throughout history, and who should have a relationship with &#8220;me.&#8221; Especially, God was with Jesus when in the garden of Gethsemane, he came to a final decision to be offered as a sacrifice. The sacrificial spirit of Jesus, who loved all humankind, was bequeathed to the descendants as a tradition, and the revival of Christianity came about.</p>
<p>Then what should the saints who believe in the truth of Jesus, which replaces 4,000 years of history, do in the future? They should become sons and daughters of God, like heavenly soldiers who can save all humankind which is captured in the wire nets of Satan. Also, by correctly understanding God&#8217;s will, we should not follow in the same footsteps as the Israelites who became the prey of Satan in the wilderness due to their inability to understand the will of God.</p>
<p>Further, we should take the fidelity of Moses, who until he could stand again before God, lived a sacrificial life for forty years in the wilderness, as the root of our faith. We should take after his strong and persistent nature that enabled him to petition to God for eighty days on behalf of Israel. Also, you should understand that you are a tribe of the Second Coming who should achieve the ideal of restoring the land of Canaan on the worldwide level. You are a representative of the second Israel.</p>
<p>Therefore, understanding this, you should be able to come forward and pledge, &#8220;Father, though I have to personally undergo all the battles that persisted during the past 6,000 years of history, I will overcome them.&#8221; Toward the satanic tribe that governs the world, as a representative of the saints and sages who had to climb the hills of death to fulfill God&#8217;s will during the 6,000 years of history, you should be able to shout, &#8220;I am a bomb. I will explode your hearts!&#8221; When viewed from this perspective, we should take the words of God to Joshua, &#8220;Be strong and bold,&#8221; as our lesson. We should understand well from the principle that, because the Israelites could not understand the meaning of the words, even when they entered the land of Canaan, they had to pay more indemnity centered on the twelve Judges. Consequently, if we cannot fulfill the responsibility like the one given to Joshua today, the Lord who comes back to this earth to build the Kingdom of Heaven must walk a path of suffering along with you.</p>
<h3 align="center">God&#8217;s Hope for the Blessed Land</h3>
<p>What will happen to you if you are triumphant in the battle against enemies at the risk of your life in strength and boldness, representing the 6,000 years of the dispensation of salvation for human beings? Then finally, we will meet a day when heaven and earth will be harmonized, and the aching hearts of our ancestors, who lamented over the shedding of blood for many thousands of years, will be liberated. The joy of the Creator will be manifested, thousands and thousand of saints will rejoice within the realm of God&#8217;s eternal, unchanging love. So will it be for all humankind on earth. Further, God will be proud of you before Satan. Your ancestry will be also proud of you, and you will be proud before each other as brothers and sisters.</p>
<p>Therefore, among you, one person who can be praised, &#8220;Please love him since he is your son,&#8221; should appear. If such a person does not appear with the truth on earth, the joy of human beings, spirit world, God, and Heaven and earth, cannot be fulfilled. You should deeply keep this in mind.</p>
<p>Today, after having cleansed the sinful history of 6,000 years filled with grief and pain, we must become the individuals who can say, &#8220;Dear Heaven, please rejoice with me. Please be liberated from the grief through me. Please forget the lamentations accumulated during the past 6,000 years and receive a day when You can finally smile for the first time since the creation.&#8221; When we become such individuals who can also say, &#8220;Our ancestors in the spirit world, as Heaven is rejoicing, please rejoice with us,&#8221; the land of Canaan on the worldwide level will be restored. Thus we should become the ones who can introduce God&#8217;s love to all humankind, transferring the 6,000 years of grievous history caused by the fall to the satanic domain.</p>
<p>Without failure, only when we become such people can we represent Jesus Christ in the worldwide land of Canaan, represent the seventy disciples of Jesus, and thus become the sons and daughters whom God desires. Then we can create a family that God can rejoice in, be a person whom God can trust, and restore a nation that God can trust. From here on, the garden of eternal happiness, the blessed land of the ideal will be established. You should know this clearly. Today, this is the time when 6,000 years of providential restoration should be consummated. By making a final decision of courage, we should march forward for the fulfillment of the will. We should not look back. At the time of the destruction of Sodom and Gomorrah, the wife of Lot missed her old family life in her hometown, her old neighbors and her old environment and habits. She looked back and turned into a pillar of salt.</p>
<p>The Israelites who followed Moses from Egypt missed their life in the past when they faced difficulties in the wilderness. Thus, they could not enter the land of Canaan and fell to death on the way. When they did not have a shelter to rest comfortably in or food to eat in the wilderness, they resented Moses and complained to him, saying, &#8220;If we had remained in Egypt, we could have eaten cake and even meat occasionally.&#8221; At that time, the ones who complained like that, reflecting upon the past, were the wealthy ones who had been bosses over the others.</p>
<p>Therefore, today we should not follow the same footsteps of the Israelites. Then what should you now seek with this lesson in mind? Is it a house in which you are now living? Is it friends whom you are now associating with? Your house or friends are not the ones that you should seek. If you have a house, it will be a wilderness in a barren land. If you have friends, they will be brothers and sisters who are wandering in the wilderness.</p>
<p>Consequently, in order for you to go the path to heaven, from the levels of an individual, a family, a society, a people, and a nation, we should separate from all the worldly things and abandon them. We should replace them with heavenly things. That is, I should abandon my worldly self and be replaced by a heavenly self. I should restore a worldly family into a heavenly one, and a worldly tribe into a heavenly tribe. Further, we should abandon the worldly people and nation and restore a heavenly people and nation. To establish such things, you should march forward with all of your hearts and minds, in strength and boldness.</p>
<p>Such a person will be grateful even if the collapses while trying to restore one other person. Such a people and nation will be grateful even if the people and the nation perish while restoring themselves. Today we should be able to fight an individual, family, nation and world battle with such determination and be courageous enough to tell Satan on earth to move away.</p>
<p>If there is anyone who proceeds with loyalty toward heaven until the end of life, even if he or she dies, that individual will be resurrected and enjoy glory in the blessed land. If he or she does not die, that individual could live in the garden of blessing. I hope you can keep this in mind.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Beloved Father! Please allow these individuals who are gathered here today to be heartistic sons and daughters who can hear Abel&#8217;s appeal to You. Also, please guide them to be the children who can liberate the heart of Jesus, who could not speak everything that he wanted to speak to all humankind when he was offered as a sacrifice of blood on Calvary on behalf of the blood of Abel. Let them liberate his heart through their blood, their mind and their perception.</p>
<p>We thought that all the passages of the many saints and sages who came and passed away throughout history only belonged to them. Now we finally came to realize that those are the passages that we also need to walk. There are so many people on earth, but You came to visit us, who are unworthy. Please let us be the kind of sons and daughters who can understand Your heart that desires us to liberate you from the han of 6,000 years.</p>
<p>On this earth, there are many smart, superb, and capable people. Nevertheless, You came to us with the desire that wants us to understand the situation of Heaven and experience Your grieving heart. Please guide us to be such sons and daughters. Father, I sincerely wish and desire for this to be done.</p>
<p>As Joshua was strong and bold long ago, today we should be strong and bold on behalf of our people and the world. Father, please be with us. We have many deficiencies. I wish and desire for You to lead us through all of the historical sufferings and to indemnify our own individual selves.</p>
<p>Please let there appear among the Christians many, strong and bold people like Joshua and Caleb who were determined to enter the land of Canaan even if they were to die. Please guide all the sons and daughters who are present here to feel the vivacious movements of the life of resurrection and Your life. With the hearts that are obedient to Heaven&#8217;s will, as quickly as possible, let them receive a day of glory when they can be in harmony with You. Father, I sincerely wish and desire for this to be done.</p>
<p>Please let us feel Your words given to us as the seeds of life and the center of our lives, that we may carry out the responsibility of burning incense as a chief priest at Your altar and holy place. Beloved Father, I sincerely wish and desire for this to be done. I pray in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html" title="Permalink to LET US BE STRONG AND BOLD AND RESTORE THE LOST LAND" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME PEOPLE WHO PARTICIPATE IN THE GLORY OF THE LORD</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html" rel="next">LET US BE A VICTOR FOR GOD <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,248 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Be the People Who Attend God &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-901 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-901" class="post-901 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Let Us Be the People Who Attend God</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T16:07:35+01:00"> <a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T16:30:24+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
February 2, 1958</h3>
<p style="text-align: center;"><em>John 14:1-17</em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-14-1"><span class="woj">“Do not let your hearts be troubled. You believe in God<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26670a" data-link="[&lt;a href=&quot;#fen-NIV-26670a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+14:1-17#fen-NIV-26670a">a</a>]</sup>; believe also in me.</span></span> <span id="en-NIV-26671" class="text John-14-2"><span class="woj"><sup class="versenum">2 </sup>My Fathers house has many rooms; if that were not so, would I have told you that I am going there to prepare a place for you?</span></span><span id="en-NIV-26672" class="text John-14-3"><span class="woj"><sup class="versenum">3 </sup>And if I go and prepare a place for you, I will come back and take you to be with me that you also may be where I am.</span></span> <span id="en-NIV-26673" class="text John-14-4"><span class="woj"><sup class="versenum">4 </sup>You know the way to the place where I am going.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-5"><sup class="versenum">5 </sup>Thomas said to him, “Lord, we dont know where you are going, so how can we know the way?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26675" class="text John-14-6"><sup class="versenum">6 </sup>Jesus answered, <span class="woj">“I am the way and the truth and the life. No one comes to the Father except through me.</span></span> <span id="en-NIV-26676" class="text John-14-7"><span class="woj"><sup class="versenum">7 </sup>If you really know me, you will know<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26676b" data-link="[&lt;a href=&quot;#fen-NIV-26676b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+14:1-17#fen-NIV-26676b">b</a>]</sup> my Father as well. From now on, you do know him and have seen him.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26677" class="text John-14-8"><sup class="versenum">8 </sup>Philip said, “Lord, show us the Father and that will be enough for us.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26678" class="text John-14-9"><sup class="versenum">9 </sup>Jesus answered: <span class="woj">“Dont you know me, Philip, even after I have been among you such a long time? Anyone who has seen me has seen the Father. How can you say, Show us the Father?</span></span> <span id="en-NIV-26679" class="text John-14-10"><span class="woj"><sup class="versenum">10 </sup>Dont you believe that I am in the Father, and that the Father is in me? The words I say to you I do not speak on my own authority. Rather, it is the Father, living in me, who is doing his work.</span></span> <span id="en-NIV-26680" class="text John-14-11"><span class="woj"><sup class="versenum">11 </sup>Believe me when I say that I am in the Father and the Father is in me; or at least believe on the evidence of the works themselves.</span></span> <span id="en-NIV-26681" class="text John-14-12"><span class="woj"><sup class="versenum">12 </sup>Very truly I tell you, whoever believes in me will do the works I have been doing, and they will do even greater things than these, because I am going to the Father.</span></span> <span id="en-NIV-26682" class="text John-14-13"><span class="woj"><sup class="versenum">13 </sup>And I will do whatever you ask in my name, so that the Father may be glorified in the Son.</span></span> <span id="en-NIV-26683" class="text John-14-14"><span class="woj"><sup class="versenum">14 </sup>You may ask me for anything in my name, and I will do it.</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-15"><span class="woj"><sup class="versenum">15 </sup>“If you love me, keep my commands.</span></span> <span id="en-NIV-26685" class="text John-14-16"><span class="woj"><sup class="versenum">16 </sup>And I will ask the Father, and he will give you another advocate to help you and be with you forever—</span></span><span id="en-NIV-26686" class="text John-14-17"><span class="woj"><sup class="versenum">17 </sup>the Spirit of truth. The world cannot accept him, because it neither sees him nor knows him. But you know him, for he lives with you and will be<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26686c" data-link="[&lt;a href=&quot;#fen-NIV-26686c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=John+14:1-17#fen-NIV-26686c">c</a>]</sup> in you.</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! Please allow this hour to be a time when these sons and daughters who are lying prostrate before the dignified presence of the Father can have the sanctified minds and bodies the Father wishes for.</p>
<p>When the Father is in charge, please let there be no one who has a mind and body unable to feel His presence. Allow each of us to offer his or her mind and body to the Father. At the same time, allow the Father&#8217;s heart-warming shimjung to be transmitted through our mind to our body.</p>
<p>Since Heaven is so sincere now, please let us be just as sincere. Allow us to become the holy temples in which the Father can dwell.</p>
<p>Please allow us to be the people who can shed tears, holding onto the Father who has trodden along for the long period of 6,000 years seeking unworthy man. Please let us shed all false sins. Allow our bodies and minds to be full of love so that we can be embraced in the Father&#8217;s bosom. Let us experience His piercing, sincere shimjung.</p>
<p>Although there are many people on this earth, no one knows of the Father&#8217;s shimjung. Although there are many people who love their own children, no one knows of the Father&#8217;s shimjung toward all His children. Father, please look with compassion upon all the people on this earth who don&#8217;t know You.</p>
<p>Please look with special compassion upon the thirty million people of this nation of Korea. Father! Your hands of compassion are extended to the people of this nation, although this nation has nothing to boast of, nothing to offer to the Father. Yet since these people are so worried about the Father&#8217;s difficult situation and path that they really don&#8217;t know where to turn, Father, please come visit this nation and guide this people.</p>
<p>I sincerely wish and desire, Father, that many proud sons and daughters of the Father will emerge from among the people of this nation, sons and daughters who can unify the minds of humanity around the world, and who can uphold the will of the Father and build the Father&#8217;s altar.</p>
<p>We know that the Father is eternally concerned about us. If there are children who have a feeling of impatience for the sake of the Father, if there are denominations like that and a nation like that, then the Father&#8217;s ardent shimjung wishes to seek them and rest with them. Please allow us to be the children who can offer our bodies to the Father and whose minds can console You.</p>
<p>By Your presence with us, I sincerely wish and desire, Father, that You will allow this hour to be one in which You will personally and with compassion show us the way to walk, what to do, and the way to fight for the Father.</p>
<p>Since we wish to receive the Father&#8217;s words today, please do not allow us to remain stuck in any of our own doctrines, assertions, or concepts. By letting us be immersed only in the Father&#8217;s words, and by allowing those words to become the soil and water that give rise to the works of re-creation, I sincerely wish and desire that You will allow this one hour to be one in which we can be molded into the Father&#8217;s hyung-sang.</p>
<p>Please allow us, as obedient and humble sacrificial offerings, to have the shimjung to eagerly await the Father&#8217;s commands. Then, my Father, I sincerely wish and desire that You will allow the works of re- creation to appear in this hour so that we may be reborn by the words into resembling the Father&#8217;s hyung-sang and sung-sang.</p>
<p>Please do not allow the mind of the deliverer and the minds of the receivers to remain as two in this hour. Let this hour be one in which we can live and die together for the sake of the one will. Let us listen to the words with a happy mind for the sake of the one will. Father, I sincerely wish and desire that You will not allow any room for Satan to take pleasure in.</p>
<p>Father, I ardently pray that You will give rise to the miracle of re- creation in this hour, so that we may experience that fretful situation in which Jesus had to walk the road of the cross, leaving behind the beloved disciples and humanity. By experiencing with our minds and bodies the shimjung of our ancestors, even though their time has long come and gone, let us be able to carry out the responsibility in response to their shimjung.</p>
<p>I believe that numerous believers are lying prostrate before Your knees, insisting upon themselves, unaware of this hour of opportunity. Father, please guide them to be able to share in the providential grace by lowering Your hands of love wherever they gather. Allow them to reap a victory. I sincerely wish and desire this.</p>
<p>I believe that the family members scattered in solitude throughout the country are making an appeal before the Father on their knees in this hour. I ardently solicit that You will bestow upon their minds and bodies indiscriminate grace and the hands of sweeping love. Earnestly soliciting that You will allow us the grace of compassion by which we can be embraced in the Father&#8217;s bosom as living sacrifices in this hour, I prayed all these words in the name of the Lord. Amen.</p></blockquote>
<p>I will speak briefly centering on the words, &#8220;I am the way and the truth and the life. No one comes to the Father except through me.&#8221; The topic of my sermon is “<i>Let Us Be the People Who Attend God.</i></p>
<h3 align="center">Humankind, All Creation and the Center of God&#8217;s Hope</h3>
<p>There are many people living on this earth today. They live with individual visions and opinions, with various doctrines and assertions. However, there is no one who can step forward with pride before Heaven and earth, bowing respectfully with a truthful mind and body. There is no one who insists upon God and who was sent by God.</p>
<p>Many people on this earth today live according to their own individual visions and opinions. However, if their assertions and actions do not correspond to the will of the heavenly principles and the providence of the heavenly way, then at some time they will surely end up being subverted. We have witnessed this numerous times throughout the course of history.</p>
<p>What must we human beings ultimately seek for? The numerous people who left after having come during history are said to be hoping for a person to emerge on this earth who can step forward insisting that his mind and body represent God and that all his actions are for God&#8217;s sake. He has given up all of his own doctrines, opinions, and subjective actions. In addition, wishing for this kind of representative to emerge, Heaven has been unfolding the dispensation for a long time, enduring limitless toil and suffering. You should understand this well.</p>
<p>What is the source of sorrow on the earth? It is not because there are no doctrines or men of action; it is because there is no doctrine that can be asserted which represents God&#8217;s shimjung and will. No one takes action representing God. That is the cause of sorrow and sadness.</p>
<p>In order to eliminate the lamentation and suffering which are spread throughout this earth and the human world and all of the bitter resentment that is piercing to the marrow, doctrines and opinions that can represent God must emerge. One person who can represent God must emerge. Therefore, you should realize once more that the time has come for you to understand that this one person is the purpose of the providence. This person is also the purpose of history.</p>
<p>The ideology of creation that God wanted to enjoy centering on human beings, that of living with all creation in Heaven and on earth, was not realized on this earth due to the fall of Adam and Eve, our progenitors. God created all existence in six days through the word. All things were the objects of accomplishment of the word. In other words, all of creation is the substantial object of God&#8217;s word.</p>
<p>What, then, would all creation hope for after they appeared as the substantial object through the word? They could have hoped for one mediator, one center that would enable all of creation to move if God moves and rest if God rests. If human beings had become such a center, the chaotic history that has unfolded on this earth would not have taken place.</p>
<p>God&#8217;s hope is to see one existence emerge who can represent Him and who is able to take action on His behalf. God not only wished for this in the course of providential history after the human fall; it was the center of hope that God wished for from the time of the creation. You should know this.</p>
<h3 align="center">Jesus Came as a Substantial Being of the Word</h3>
<p>What is this center of hope like? He represents the word. He is the embodiment of the word. At the same time, centering on God&#8217;s love, he must become the embodiment of life. This is the problem. Only when he becomes the embodiment of life will he become for the first time the substantial being who can represent God&#8217;s hyung-sang and the one doctrine which can represent God&#8217;s word. You should understand this.</p>
<p>In the Bible, there is a verse that reads, &#8220;I am the way and the truth and the life,&#8221; (<a href="http://bible.gospelcom.net/passage/?search=John+14:6">John 14:6</a>) . Jesus is the way, the truth and the life. What did this foreshadow for all mankind? This foreshadowed that, although God&#8217;s word has gone back unchanged to God&#8217;s spirit without being attained due to the fall of Adam and Eve, because man lives on this earth, God will again bestow this word upon humanity.</p>
<p>Because the word God spoke at the time of creation is connected to humanity, humanity has cherished that word as the one unchanging goal, the one hope. For that reason, a substantial being of the word must come in order to attain it.</p>
<p>Where must the substantial being who can represent God&#8217;s word go? You should know that the course of the providence is the 6,000 years of God&#8217;s toilsome efforts to look for this one person. Although all of creation created in five days are equipped with a substantial body of the word, human beings, created on the sixth day, have come along until today not having a substantial body of the word. This is in spite of the fact that they were present before the word. You must understand this. To find and establish a substantial embodiment of His word has been God&#8217;s fateful course, the course of restoration, and the course of history.</p>
<p>That is why Jesus said, &#8220;I am the way and the truth (the word) and the life,&#8221; (<a href="http://bible.gospelcom.net/passage/?search=John+14:6">John 14:6</a>). This explains that Jesus was the substantial being of God&#8217;s word whom God had been hoping for.</p>
<p>What kind of word was the word of Jesus? It was the word Jesus announced by appearing as the one fruit of the heart-warming shimjung of God, who had wished to speak to human beings during the course of history for 4,000 years. It was to demonstrate God&#8217;s fretful shimjung before humanity and all creation in place of God. The one who came as the hero of the word for the accomplishment of this was the very Jesus you believe in today.</p>
<p>Likewise, Jesus appeared as the substantial being of the word for whom God had searched for 4,000 years. The word that was buried in God&#8217;s bosom should have appeared through the world of creation, but that didn&#8217;t happen. However, with the appearance of Jesus, the word that had been buried in God&#8217;s mind could be transferred to Jesus&#8217; shimjung. You must know that this is the most joyful good news for humankind.</p>
<p>What must Jesus have felt when, after appearing as the substantial being of this historical word, he announced the word? In short, what kind of shimjung could he have had? Jesus knew that his word represented the will of the historical providence. What&#8217;s more, he felt the shimjung that his word represented what was hidden in God&#8217;s mind. He understood that his word was the word that could repeat the history of re-creation representing God until God&#8217;s will was attained on this earth for the whole of eternity.</p>
<p>For that reason, in order to receive Jesus&#8217; word today, we must know that Jesus is not someone who simply went through a life time of thirty-odd years. Jesus&#8217; word is not a word to explain life in that era. Jesus&#8217; word represents the 4,000 years of history, the world of that era, and human history up to now. At any rate, there was no one at that time who understood the value of Jesus&#8217; word.</p>
<p>What was the cause of God&#8217;s lamentation? The cause of His lamentation was the fact that all that was created by the word did not appear as the embodiment of the word. Jesus came as the incarnation of the word of re-creation representing God&#8217;s shimjung. He propagated the word to initiate the work of re-creation. However, there were no people who would come forth before that word. You must know that this was the source of Jesus&#8217; sorrow.</p>
<h3 align="center">The Word and the Incarnation</h3>
<p>You must realize that even now the word of God is being conveyed to each one of you. God appeals to you with a heart-warming shimjung. For that reason, the heavenly principles get connected to our minds without our being aware of it. Therefore, our minds come to pursue Christ.</p>
<p>That is why numerous people have appeared trying to discover truth, constantly asking, &#8220;What is truth? What is the true word?&#8221; throughout the long course of history. Likewise, you must know that it is no exaggeration to say that human history is none other than the course of discovering the truth.</p>
<p>Therefore, when Jesus&#8217; shimjung representing God&#8217;s shimjung, the word that substitutes for the sorrow, comes to appear on this earth, all people must accept that word. It can demonstrate the power of re- creation. Otherwise, the will of Jesus Christ, who toiled for thirty or so years after he came to this earth and for 2,000 years from the time of his death until now will not be attained.</p>
<p>What is the cause of God&#8217;s sorrow? The purpose of the providence is to find the embodiment or temple of the word through Jesus, who is the embodiment of the second word and who represents God&#8217;s word, which is the first word. The fact that there is no substantial representative of this third word is the cause of God&#8217;s sorrow. You should know this.</p>
<p>Jesus, the incarnation of the truth, said, &#8220;I am the way and the truth.&#8221; What was the purpose of these words of Jesus? The purpose of the 4,000 years of preceding history was the embodiment of Jesus. Jesus spoke in order for human beings to become substantial beings of the word like him. This was to be attained only if people came to believe in Jesus&#8217; word. Because human beings did not believe in Jesus, Jesus&#8217; life came to an end at Golgotha.</p>
<p>What God wanted and what God wished to find was one substantial being who possessed His word, one who could inherit the will from God and to whom God could entrust the will. Jesus was that substantial being. He was united with God&#8217;s word. That is why Jesus&#8217; incarnation was the purpose of the whole history which God had unfolded in the providential dispensation. Then God stopped in His footsteps. Taking Jesus as His holy temple, He was able to hand over the will to the earth for the first time.</p>
<p>How did Jesus see himself? Jesus knew he was the holy temple that God could operate through. If God wanted to operate, Jesus knew that He had to do it through him. Because Jesus sensed this, Jesus realized that he was the holy temple God had been seeking for 4,000 years. He was the foothold upon which God could operate. He was the substantial being who represented the numerous prophets and sages who had toiled to fulfill this one will.</p>
<p>Because Jesus was this kind of substantial being, he realized that as long as God did not change, he could not change. As long as God did not move, he could not move. For this reason, even if all people tried to push Jesus away, he wouldn&#8217;t be pushed away. In other words, you must know that Jesus appeared in place of Adam at the risk of his life to restore what Adam could not become. On this foundation, Jesus&#8217; disciples realized that Jesus&#8217; word was the word of God&#8217;s re-creation.</p>
<p>In the same manner as God operates through Jesus, Jesus operates through a person who resembles him and who walks the way Jesus walked in his place.</p>
<p>God does not belong a certain era; God is historical. He is the God of the period and at the same time, He is the futuristic God. Since Jesus was the holy temple with a substantial body God could operate through, if humankind had become united with Jesus, the whole providence would have been accomplished and humankind could have been united with God.</p>
<p>What takes the lead today in the course of history? Because Adam lost the word owing to the fall in the Garden of Eden, the word takes the lead. The substantial entity appears after the word is found. Then, equipped with a substantial entity, the life of God will move. Where does God&#8217;s life move? God&#8217;s life moves in that center where, having found the word, unification is accomplished relying upon that word. Furthermore, God&#8217;s love will begin to bud after love relations are formed. Only then will the substantial entity of God&#8217;s life come into being.</p>
<h3 align="center">The Purpose of Jesus&#8217; Coming</h3>
<p>Jesus said, &#8220;I am the way and the truth and the life.&#8221; This was meant to show us God&#8217;s word personally and to show us God&#8217;s substantial entity. It was to show us God in person. Jesus Christ&#8217;s was not a life that simply passed through thirty years or so. He was the embodiment of life who appeared resembling the shimjung of the love of God, who had loved humankind throughout His toil of 4,000 years.</p>
<p>What was Jesus, the central being of the word, to do after having come to this earth? God had toiled for 4,000 years to establish Jesus instead of the lost word in the Garden of Eden. He was the second Adam, the incarnation of the word. After attaining the word and the substantial entity centering on God&#8217;s eternal love, God tried to form a love relationship with human beings. Even though God and Jesus were able to be united centering on eternal, true love relations, human beings could not form an eternal love relationship with God.</p>
<p>God&#8217;s love appears centering surely on the word. Jesus, who was God&#8217;s word and embodiment, appeared. Yet while the word has remained, the substantial being, Jesus, has left for good. That is why we ended up living in a sorrowful world where we must live centering on the word.</p>
<p>In the end, what do human beings wish for through the word? It is to find Jesus again. Having the word in our possession will not be enough. We must attend the substantial being. However, because there is no substantial being to attend people yearn for that. The earth is to be moved by finding and setting up the one person who is one with God&#8217;s word. History has flowed forth to look for this substantial being of God&#8217;s word.</p>
<p>What is the purpose of Jesus&#8217; announcing the word? It is to see the emergence of people who can represent God&#8217;s and Jesus&#8217; word. The word that God and Jesus spoke will bear the fruit in the final days. History up to now is the history of the process of re-creation. Therefore, the focus of the word Jesus spoke at the end was, &#8220;I am the bridegroom and you are the brides.&#8221; Yet the person who possesses the word of immutability, who can represent the word of Jesus, the bridegroom, has yet to appear. You should understand this.</p>
<p>God&#8217;s hope was not for Jesus simply to leave after having come to this earth; neither was it for Jesus simply to propagate the word. God hoped for one substantial being who could represent God&#8217;s and Jesus&#8217; word by qualifying, through the word, to be the bride.</p>
<p>Jesus came to this earth as God&#8217;s body. Centering on God&#8217;s life, he was to accomplish the garden of God&#8217;s love. This was the purpose of Jesus&#8217; coming. Jesus&#8217; body was the substantial being in whom God could rest. For that reason, just as God loves Jesus and Jesus loves human beings, someone was required who could love.</p>
<p>Because Jesus came with this understanding in his heart, he opened the way for the faithful believers in later generations to be able to become his bride. Jesus is the bridegroom of humankind. Humankind must come to be the bride of Christ. For that reason, as Jesus was so sincere toward God, human beings have to be very sincere toward Jesus. Jesus was to have found a person like this.</p>
<p>Owing to the fall of humankind, the word was lost in the Garden of Eden and so was the substantial being. Human beings should have found the word and the substantial being in Jesus when he came. Yet because humankind killed Jesus, we experienced only the grace of being able to receive the word.</p>
<p>It is a blessing for you today to be in a sphere where you can recreate Adam&#8217;s hyung-sang before the fall by relying on the word.</p>
<h3 align="center">The Faithful Believers in the Final Days<br />
Should Possess the Word</h3>
<p>The one who will come as the substantial entity is the Lord of the Second Coming. Because this is the principle of creation, the Lord of the Second Coming cannot come on a cloud. The principle of the rule of Heaven cannot be reversed. Human beings have longed until today for a substantial being of the word since Jesus left. This is the ideal of a Second Advent; it is the hope of the 2,000 years of Christian history.</p>
<p>Jesus stopped Mary Magdalene when she tried to grab hold of his resurrected being. Human beings cannot grasp Jesus in a substantial way. You should understand that Jesus did that because he could leave behind nothing but the word.</p>
<p>Therefore, now you should become the second Christ incarnate who can represent this word and be a representative of Jesus&#8217; mind, Jesus&#8217; sense of responsibility, and God&#8217;s shimjung. Humankind, including Christianity, living on this earth today can find the word in place of such a shimjung. Relying upon that word, they can find a substantial being of that word. Yet they don&#8217;t know or appreciate this.</p>
<p>This time we should march forward, regardless of life and death, holding onto the word of God. Ever since receiving the fallen lineage by running counter to the law in the Garden of Eden, we have lived in sin until today. However, now we are able to live in joy relying on the new word. All mankind should now march forward toward that world in which they can live realizing the value of eternal life holding onto and standing by the word. You are living in such a time. Do you want to walk this road later? You can&#8217;t. You should realize that you are living in this kind of fateful, historical moment.</p>
<p>Representing God&#8217;s word, the collective shimjung of God&#8217;s 4,000 year providential history, and the will of God, Jesus had a shimjung of love. He lived centering on God&#8217;s will and formed a love relationship with God. For this reason, he was able to resurrect even after he died on the cross.</p>
<p>God&#8217;s love is eternal. God&#8217;s life is also eternal. Because Jesus was the united being of the word and its embodiment and represented God&#8217;s eternal love and life, no death or tribulation in this world could affect Jesus eternally. In short, Jesus already had the power of resurrection.</p>
<p>What shall we do now? If there are doctrines we can stand by and actions we can follow, what are they? They are none other than the word Jesus Christ spoke and the evidence of Christ&#8217;s actions. You should understand this for certain. You should ask yourselves whether you have become a possessor of the word who can represent God and Jesus. You should ask yourselves whether you can be acknowledged on earth and in Heaven.</p>
<p>Because human beings fell, the word of promise could not appear as the word of fulfillment. That is why it is said to be the Old Testament and the New Testament. The word of promise must appear as the word fulfilled. In spite of this being the most serious matter facing humanity today, they don&#8217;t realize it. This is a matter for the faithful believers seeking for Heaven to solve in union. This is Christianity&#8217;s problem and it is the problem of the union of all branches of religion.</p>
<p>This world today is a world in which disintegration and factional fighting are taking place. Why do these phenomena occur? When Jesus came to this world, this world was disintegrating. Therefore, Jesus delivered the word to settle this disintegration and factional fighting. However, because human beings at that time did not believe in Jesus&#8217; word, the factional fights and disintegration could not be completely resolved. That&#8217;s why factionalism and disintegration are taking place in the world today. Now the word of completion has to emerge that can get this chaotic world under control; the word which can unite all doctrines and thought.</p>
<p>You should seek for the truth. If you look over the course of the history of this world today, there have been numerous races and many different religions. However, they are marching forth toward one unitary point, toward the goal of unification. Through what kind of word would this goal of unification be achieved? Unification will be achieved by the word of God&#8217;s promise. Human history cannot free itself from the foundation that God established by the word of His promise. That&#8217;s why world history has developed centering on Christianity. Now the time has come to unite into one. Accordingly, a new word will emerge full of the wisdom that can unify everything.</p>
<h3 align="center">Jesus&#8217; Shimjung</h3>
<p>Do you have any idea how lonely Jesus was? When you think about his saying, &#8220;Foxes have holes and birds of the air have nests, but the Son of Man has no place to lay his head,&#8221; (<a href="http://bible.gospelcom.net/passage/?search=Matthew+8:20">Matthew 8:20</a>), we can understand how lonely Jesus was. Jesus demonstrated his tragic feeling through a figure of speech, through symbols, but now the time has come for us to know the meaning of his words. Now the time has come for Jesus to rest. God will rest in Jesus, and Jesus will rest in us. Therefore, you should understand that now the time has come for you to take charge of all creation in Heaven and on earth.</p>
<p>Relying on the word of promise, we will be able to go any place. Relying on the word of promise, we will be able to become one and meet the promised Lord. We will be able to live happily in the midst of God&#8217;s word, having love in its center. That is why it is said in the Bible that faith, hope and love will remain, but that the greatest of those is love. Now the time has come to find the word that God and Jesus expressed, embracing us in love.</p>
<p>Now if that word appears in reality, all will have to accept it. If you act against the word, you won&#8217;t be able to feel God&#8217;s love. However, if God&#8217;s word, which Jesus spoke from the bottom of his heart, appears in the final days, the person who listens to that word will be able to feel God&#8217;s love. The person who can feel the love of God will be the possessor of God&#8217;s love. You should understand that God&#8217;s word is not to establish a certain principle; it is to create His life and ideology.</p>
<p>Although there are doctrines and principles of numerous religions which profess the truth on this earth today, none of them, even if practiced as professed, will comfort our minds and bodies and allow us to be steeped in the word eternally. Since the love of God, the origin of life in the universe, has moved our mind and body, if the true word of God is revealed, it will be able to settle the fundamental differences in all doctrines and opinions.</p>
<p>What is the word of Jesus? The substantial being, the love of promise, and the life of promise was to be found through the word of promise. By adding the word of truth to this word of promise, Jesus&#8217; word enabled the substantial being of the truth to be found. It enabled true love and true life to be found.</p>
<p>Jesus is still praying, even after going to paradise. The reason for this is that he could not fulfill his earthly mission when he came. Originally, Jesus was not to go to paradise. That is why Jesus cannot rest before a hero of the word, a substantial being of life who can represent God&#8217;s one ideology on this earth appears. Centering on God&#8217;s love, he will start building a world in which to rest eternally. You should know that until that time, God cannot rest either.</p>
<p>What should we lament about now? We must lament that the word of Jesus cannot come out of our mind and body unconsciously. We must lament that in spite of the actions he took, Jesus could not come into his own on the earth. We should lament that, ignorant of all this, we could not shed tears of pity.</p>
<p>You should become a person who can let Jesus rest. You should become a cell that is one with Jesus. Originally, the Israelites and the world&#8217;s humanity of the time should have become the limbs of Jesus. Through that, Heaven and earth should have been united into one. You must understand this.</p>
<p>Jesus was a pitiful man. Christians today think Jesus is sitting on the the right hand of God on a throne, but Jesus was a man to be pitied. Jesus came with the cosmic mission to build the one ideal world. He came with the word of hope that could move the world and connect it to the top of Heaven. Yet mankind on the earth did not trust him. Therefore, he could not finish speaking what he wanted to say. He could not finish everything he wanted to do. You should understand the shimjung of Jesus, who was in this kind of regrettable situation.</p>
<p>To put the will into practice, Jesus propagated the word from district to district. However, people did not trust him. For that reason, God, the angels, and the whole universe grieved in sorrow over the case of one man, Jesus. Yet in spite of the fact that we today are the descendants of ancestors who committed the historical sin of not trusting Jesus, people do not know where on this earth they stand nor where they or this world are going. Seeing this, we today should be able to feel sorrow the way Jesus grieved 2,000 years ago over the Israelites, who were on the brink of ruin.</p>
<p>What is more, you should become a substantial being of the word that is God&#8217;s last hope. Through the shimjung of the heavenly principles, you should become a substantial being who can represent the collective historical substantial being. By doing so, you should be able to say, &#8220;Oh, God, who unfolded the providential dispensation for 6,000 years! Please see me and send the Lord here!&#8221; Furthermore, you should understand that the question of where God should allow Jesus to actualize his Second Coming is a matter of concern for God.</p>
<h3 align="center">The Responsibility of the Third Israel</h3>
<p>The Korean people today must open their eyes. We have nothing. We are abused by others, and we live in a difficult environment. Yet our minds will have to represent Jesus&#8217; shimjung and God&#8217;s love, and our bodies will have to become substantial beings of Heaven. Where would a person who can do so be found? In the long history of 6,000 years, God has not sought you, one individual being. You should understand that God has toiled to restore the whole Korean people, the whole of humanity.</p>
<p>You should become a substantial being who can represent God&#8217;s shimjung when He grieved over the fall of humanity. You must represent Jesus&#8217; sorrow and the ancestors&#8217; shimjung.</p>
<p>The Israelites should have attended Jesus, but they did not. That is why Jesus went looking for Judaism. In other words, Jesus tried to transmit God&#8217;s word using Judaism as a foothold. However, Judaism put up opposition so Jesus went looking for a family. The family too rejected him. That is why he had no choice but to look for disciples. You should understand this.</p>
<p>Because the chosen race did not attend Jesus, the grounds of God&#8217;s hope, the road that the world was to take, were broken up. Because the family did not attend him, the road that the denomination was to take was broken apart. Everything was broken up. Who is to know Jesus&#8217; sorrow about this? God had established Joseph&#8217;s family by toiling for 4,000 years. Joseph was a direct descendant of Abraham. Yet where did that family disappear to? Where did Joseph and Mary go?</p>
<p>When the foundation of restoration based upon the Israelites fell through, the foundation of restoration based upon Judaism fell through and so did the foundation of restoration based upon a family. Then Jesus had no place to go. In the end, the twelve disciples also rejected him. Even the three disciples chosen from among the twelve rejected him. Therefore, Jesus could not but be hung on the cross.</p>
<p>Today, you too must experience being pursued, expelled, abandoned and rejected. Through that you will learn about God&#8217;s grievous situation and Jesus&#8217; sorrowful shimjung. Being crushed by the race, expelled by the denomination, driven out by the family, forsaken by the parents and rejected by the disciples, you will understand God&#8217;s mind and the minds of our ancestors.</p>
<p>Although we are a pitiful and lonely group of people the word of God that others are ignorant of abides with us. We should feel this. Then we will be able to represent Jesus, who was fighting for the world, and be able to practice the will. Therefore, don&#8217;t be discouraged because it is difficult. Since this word you are listening to is the word of God, where that word is present, God&#8217;s love will move and life will put forth buds. Then you should attest to that word.</p>
<p>Now you should have the love to love the human world, to comfort Jesus who died on the cross and to fulfill the mission of the second Israel.</p>
<p>In order for us to remain as ancestors of the third Israel, we cannot escape the road of the second Israel. In order to save the world, Jesus let the second Israel take the road of the cross after their calling. Jesus&#8217; disciples crossed that road and the hill of the word that the faithful believers walked. We are faced with a common road of fate that we cannot but cross.</p>
<p>Faced with this kind of situation, what should we do? Jesus left without being able to express all of God&#8217;s internal shimjung. Therefore, with the foundation of this one shimjung, no matter what kind of difficulty comes our way, no matter what kind of rough road lies before us, we must march on with gratitude. In short, we must become heavenly soldiers.</p>
<p>You have to be the ancestors of the third Israel. You are placed in the final days and should understand that the word of the last days is the word of Heaven&#8217;s love. Therefore, you must understand that if God&#8217;s word stays on one side and you on another, that is not an acceptable scenario. We will have to become visible substantial beings of God&#8217;s word. You have to let God&#8217;s internal shimjung become your internal shimjung. You must become a substantial being of the original mind.</p>
<p>You must carry out the mission of the second Lord of creation to propagate the word of God. You must be a propagator of the word, a propagator of life, and a propagator of the substantial being. Only when you become united centering on love can you attend God eternally.</p>
<p>This is the standard of the third Israel. Only when this happens can you implant the word, the substantial being, and the life.</p>
<p>You must fulfill the mission of being able to recreate the second Israel by becoming a substantial being of the word who can attend God. You must feel the word upon seeing it and become a substantial being of life and one who represents the shimjung of 6,000 years. Only then can you be the sons and daughters who are fully connected to God&#8217;s internal shimjung. Only by becoming such children of God will you will be able to live in eternal glory centering on God&#8217;s love. You should bear this in mind.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html" title="Permalink to Let Us Be the People Who Attend God" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html" rel="prev"><span class="meta-nav">&laquo;</span> Let&#8217;s Be the Person Who Has the Heart of Jesus Christ</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html" rel="next">Let Us Be Israel, the Chosen People of God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,244 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME A TRUE MEMBER OF JESUS&#8217; FAMILY &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-870 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-870" class="post-870 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME A TRUE MEMBER OF JESUS&#8217; FAMILY</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:22:45+01:00"> <a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:22:55+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 18, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Matthew 10:16-42</em></p>
<p style="text-align: center;"><em><span id="en-NIV-23434" class="text Matt-10-16"><span class="woj"><sup class="versenum">16 </sup>“I am sending you out like sheep among wolves. Therefore be as shrewd as snakes and as innocent as doves.</span></span> <span id="en-NIV-23435" class="text Matt-10-17"><span class="woj"><sup class="versenum">17 </sup>Be on your guard; you will be handed over to the local councils and be flogged in the synagogues.</span></span> <span id="en-NIV-23436" class="text Matt-10-18"><span class="woj"><sup class="versenum">18 </sup>On my account you will be brought before governors and kings as witnesses to them and to the Gentiles.</span></span><span id="en-NIV-23437" class="text Matt-10-19"><span class="woj"><sup class="versenum">19 </sup>But when they arrest you, do not worry about what to say or how to say it. At that time you will be given what to say,</span></span> <span id="en-NIV-23438" class="text Matt-10-20"><span class="woj"><sup class="versenum">20 </sup>for it will not be you speaking, but the Spirit of your Father speaking through you.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23439" class="text Matt-10-21"><span class="woj"><sup class="versenum">21 </sup>“Brother will betray brother to death, and a father his child; children will rebel against their parents and have them put to death.</span></span> <span id="en-NIV-23440" class="text Matt-10-22"><span class="woj"><sup class="versenum">22 </sup>You will be hated by everyone because of me, but the one who stands firm to the end will be saved.</span></span> <span id="en-NIV-23441" class="text Matt-10-23"><span class="woj"><sup class="versenum">23 </sup>When you are persecuted in one place, flee to another. Truly I tell you, you will not finish going through the towns of Israel before the Son of Man comes.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23442" class="text Matt-10-24"><span class="woj"><sup class="versenum">24 </sup>“The student is not above the teacher, nor a servant above his master.</span></span> <span id="en-NIV-23443" class="text Matt-10-25"><span class="woj"><sup class="versenum">25 </sup>It is enough for students to be like their teachers, and servants like their masters. If the head of the house has been called Beelzebul, how much more the members of his household!</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23444" class="text Matt-10-26"><span class="woj"><sup class="versenum">26 </sup>“So do not be afraid of them, for there is nothing concealed that will not be disclosed, or hidden that will not be made known.</span></span> <span id="en-NIV-23445" class="text Matt-10-27"><span class="woj"><sup class="versenum">27 </sup>What I tell you in the dark, speak in the daylight; what is whispered in your ear, proclaim from the roofs.</span></span> <span id="en-NIV-23446" class="text Matt-10-28"><span class="woj"><sup class="versenum">28 </sup>Do not be afraid of those who kill the body but cannot kill the soul. Rather, be afraid of the One who can destroy both soul and body in hell.</span></span> <span id="en-NIV-23447" class="text Matt-10-29"><span class="woj"><sup class="versenum">29 </sup>Are not two sparrows sold for a penny? Yet not one of them will fall to the ground outside your Fathers care.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23447a" data-link="[&lt;a href=&quot;#fen-NIV-23447a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+10:16-42#fen-NIV-23447a">a</a>]</sup></span></span> <span id="en-NIV-23448" class="text Matt-10-30"><span class="woj"><sup class="versenum">30 </sup>And even the very hairs of your head are all numbered.</span></span> <span id="en-NIV-23449" class="text Matt-10-31"><span class="woj"><sup class="versenum">31 </sup>So dont be afraid; you are worth more than many sparrows.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23450" class="text Matt-10-32"><span class="woj"><sup class="versenum">32 </sup>“Whoever acknowledges me before others, I will also acknowledge before my Father in heaven.</span></span> <span id="en-NIV-23451" class="text Matt-10-33"><span class="woj"><sup class="versenum">33 </sup>But whoever disowns me before others, I will disown before my Father in heaven.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23452" class="text Matt-10-34"><span class="woj"><sup class="versenum">34 </sup>“Do not suppose that I have come to bring peace to the earth. I did not come to bring peace, but a sword.</span></span> <span id="en-NIV-23453" class="text Matt-10-35"><span class="woj"><sup class="versenum">35 </sup>For I have come to turn</span></span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Matt-10-35"><span class="woj">a man against his father,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-10-35"><span class="woj">a daughter against her mother,</span></span></span></em><br />
<em><span class="text Matt-10-35"><span class="woj">a daughter-in-law against her mother-in-law—</span></span></em><br />
<em><span class="indent-1"><span id="en-NIV-23454" class="text Matt-10-36"><span class="woj"><sup class="versenum">36 </sup><span class="indent-1-breaks">    </span>a mans enemies will be the members of his own household.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23454b" data-link="[&lt;a href=&quot;#fen-NIV-23454b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+10:16-42#fen-NIV-23454b">b</a>]</sup></span></span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-23455" class="text Matt-10-37"><span class="woj"><sup class="versenum">37 </sup>“Anyone who loves their father or mother more than me is not worthy of me; anyone who loves their son or daughter more than me is not worthy of me.</span></span><span id="en-NIV-23456" class="text Matt-10-38"><span class="woj"><sup class="versenum">38 </sup>Whoever does not take up their cross and follow me is not worthy of me.</span></span><span id="en-NIV-23457" class="text Matt-10-39"><span class="woj"><sup class="versenum">39 </sup>Whoever finds their life will lose it, and whoever loses their life for my sake will find it.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23458" class="text Matt-10-40"><span class="woj"><sup class="versenum">40 </sup>“Anyone who welcomes you welcomes me, and anyone who welcomes me welcomes the one who sent me.</span></span> <span id="en-NIV-23459" class="text Matt-10-41"><span class="woj"><sup class="versenum">41 </sup>Whoever welcomes a prophet as a prophet will receive a prophets reward, and whoever welcomes a righteous person as a righteous person will receive a righteous persons reward.</span></span> <span id="en-NIV-23460" class="text Matt-10-42"><span class="woj"><sup class="versenum">42 </sup>And if anyone gives even a cup of cold water to one of these little ones who is my disciple, truly I tell you, that person will certainly not lose their reward.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father, You toiled to awaken us even when You were subject to the power of Satan spread throughout this troubled earth. First, I would first like to offer my gratitude that You allowed us to seek You, and then bow down before You.</p>
<p>Please guide us to realize once more that we exist today, thanks to Your toil. The fact that we can claim ourselves to be Your children is due to Your infinite love.</p>
<p>Father, this evening as we are gathered to listen to Your words, I sincerely wish and desire for You to speak to Your beloved sons and daughters.</p>
<p>Today, this land is in a similar position to the 600,000 Israelites, who even after they had passed through the struggles against darkness in the forty-year wilderness course and the land of Canaan was before their very eyes, they could not follow Joshua and Caleb who came forth with strong determination to enter the land. Father, please speak to the people of this land, and let them realize this. As Heaven emphasized to Joshua and Caleb at that time to &#8220;be bold and strong,&#8221; please allow us to keep the same message in our hearts. Beloved Father, I sincerely wish and desire for this to be done.</p>
<p>Billions of satans are blocking our way with cruel tribulations, persecutions and paths of the cross to sweep us away and violate us. Please allow us to become sons and daughters with hearts of unchanging will, loyal subjects toward You of whom You can be proud. One step further, please guide us to become children who can pray, &#8220;The only living sacrifices we can offer You are our bodies and minds. Please accept these.&#8221; Beloved Father, I earnestly wish and desire for this to be done.</p>
<p>Father, we know You are concerned about us even now. Father, do not let even one life be dragged into darkness. We understand that the time when a song of glory sung for Your joy has drawn near. Please guide us so that none of us will be derailed from the right track due to a personal situation. Let us not be too inadequate to experience Your heart and the hearts of the many prophets and sages who have already passed away. Beloved Father, I sincerely wish and desire for this to be done.</p>
<p>Father, although we are not good enough before You, as we have gathered at this hour to repent of our past life and we aspire to come forth with a new determination and a new commitment, please allow us to become the children who can grope for the bosom of Your infinite love. Beloved Father, I sincerely wish and desire for this to be done.</p>
<p>You alone have dominion over the remaining hours of the service. Do not allow Satan to invade these hours. I also wish for You to protect us with Your glorious grace, and embrace us with Your hands of love. I pray all of this in the name of the Lord. Amen.</p></blockquote>
<p>The words in Matthew 10 were given to the beloved disciples, who were about to leave and bear witness to Jesus for the first time. They were guided by Jesus, who had the final determination, with an important mission to lead battles against Satan on earth.</p>
<p>Through these words, we can understand that Jesus had infinite love and attachment toward his disciples, despite extremely sorrowful circumstances in his heart. On the other hand, when Jesus sent out his chosen disciples to spread the new words of blessing to the Israelites, we should understand that the situations and hearts of the disciples were pitiful. Yet, so were the anointed Jesus&#8217; heart and situation.</p>
<p>You should understand also that these words were spoken by Jesus out of concern for his disciples. Although he wished for their victories in the battles against the billions of satans so that they could sing a song of glory to God, they could make a mistake during the process and thus cause Heaven to worry.</p>
<h3 align="center">The Heart of Jesus,<br />
Who Sent out His Disciples to Witness</h3>
<p>These words were given to encourage his beloved disciples who were determined to win the final battle. Because Jesus knew that enemies would certainly appear to block their paths, he hoped they would win the battles, sing a song of victory and participate in a joyful moment when they could testify that they were sons and daughters of God. However, you who are living today should understand these words did not apply only to the disciples at that time. These words also imply a life course for Christians, who should fight, walking the same path of the disciples. These words are for all humankind, which has been striving to establish a victorious foundation on this earth throughout history based upon the will of Christ.</p>
<p>If we can glean such a heart in Jesus, we can understand that he said the words with concern for the faith of the disciples, who were to leave soon, knowing the possibility that they would soon be facing an unbelievably difficult environment. Therefore, Jesus wanted his beloved disciples to return glory to God through victories in the battles against Satan. Thus, he spoke to them with a special determination and heart. We should understand this.</p>
<p>In the verses we read that no one will welcome the disciples. This means that in walking a path to become a heavenly son or daughter, Satan will always try to invade. We should understand this. Furthermore, we should remember what Jesus said: The ones who will block your way will not be pagans who do not have faith, the chosen Israel nor faithful Jews, but will be your own family members. Although you do not have much in your possession and have nothing to offer Heaven, since you came to understand the meaning of the words of Jesus, you should become the kind of person who can figure out the heart, determination and pledge of Jesus when he spoke thus.</p>
<p>Reflecting upon the words from Jesus&#8217; viewpoint, we can understand that Jesus did not have even one friend with whom he could share his heart. If there was a nation, it did not belong to him; if there was a people, they were not his people; and if there was a church, it did not belong to him. He had a family in which he was raised, but it was not his own. He had brothers and sisters, but they were not his own.</p>
<p>Thus, when he spoke about this, he was actually bequeathing his own life course, walked on behalf of Heaven, to his disciples on earth. You should understand this. Another thing you should understand is that Jesus is asking you who are living today, Who can become my true family member?</p>
<p>There are many nations on earth, many peoples, many families and many human beings. However, no true family members of Jesus exist among them. Therefore, you should understand that God has been looking for such people until now.</p>
<p>What then was the purpose of Jesus sending out his own beloved disciples to the bosom of his enemies? It was not to create a religious body or organization nor to build a new nation through the Israelites. It was to find family members with whom God could rejoice, God&#8217;s true family members who could live in accordance with the will of God. Therefore, the most important thing is how we can become Christ&#8217;s true family members.</p>
<p>What then should you do? You do not have many possessions, you know little. You may not have much to be proud of, but God should be able to say that you are a true family member of Jesus. That is, you should be able to become a person with whom God can live forever, and whom God, Jesus and even you can approve of, a heavenly family member who can manifest the glory of God. Such is the person for whom God has been looking, for whom Christ has been looking, and whom you hope to become. You should understand this.</p>
<h3 align="center">The Inner Attitude of a Person<br />
Who Can Stand Before Christ with Pride</h3>
<p>What then should we do to become a true family member of Christ? By attending Jesus in our daily life, we should become his family member, who came as a true person and the begotten son of God; that is, the first family member of Heaven.</p>
<p>By doing so, we should be able to prove our life to be like that of Jesus before God. Jesus was established as number one in the heavenly family realm. That is, he showed his life to be the standard through which he could live in the Father&#8217;s home as the son of Father.</p>
<p>Jesus testified that he was the son of God who came to fulfill a mission to bring the Israelites, living in the land of faithlessness, back to the bosom of Heaven. He claimed that he was a family member of Heaven.</p>
<p>Whatever the opposition, Jesus was not afraid of it and spread the will of Father. He fought alone at the risk of his life. You should understand this.</p>
<p>Therefore, just as Jesus who came to the earth as the son of God testified to God&#8217;s will during his entire life, you also should become a person who can testify to the heart of Jesus, who can fight Satan and die for the fulfillment of God&#8217;s will on earth.</p>
<p>What then is the purpose of testifying to Jesus&#8217; heart, fighting Satan and risking our lives? It is because the power of darkness on earth attempts to block you from becoming a true family member of Jesus.</p>
<p>Enemies persecuted Jesus who proclaimed God&#8217;s heart before all humankind. They blocked Jesus&#8217; path. That is, satans worked together to kill one person, Jesus. Thus, to evict and obliterate them from the earth, Jesus walked a course to make Satan surrender. He did not sleep or eat well. That is, to raise a shield against all the attacks of Satan, Jesus lifted a torchlight, sacrificing everything he had. Therefore, we should understand and reflect that Jesus, the son of God, went to a battleground at the risk of his life and eventually walked a path of death on the cross, to testify to the will of God.</p>
<p>Why then is it that we have faith and hope in Jesus? It is to become a true son or daughter of God, and thus become a true family member of Jesus, who can live attending him. Therefore, you should first become a person who can stand in pride before Jesus, who represented Heaven&#8217;s heart. That is, each of you should become a true family member of Jesus. You do this by first establishing one realm of heart with God through bowing down before Him and by building a place in which Jesus can rest in peace.</p>
<p>The reason is that, although Jesus came to the earth, he had no one who could be his true family member, with whom he could rest in peace. This became his historical painful grievance. Thus, you today should become his true family member, comforting his heart and liberating him from such pain. In your family, living in the attendance of Jesus as your own elder brother, you should possess a heart that can take his sorrow as yours, his pain as yours, his concern as yours. Thus, you can comfort him. Unless you have such a heart, you can never become a true family member of Jesus. You should clearly understand this.</p>
<h3 align="center">The Person Who Can Take after the Heart<br />
and Character of Jesus</h3>
<p>Jesus lived with his beloved brothers for thirty years in the family of Joseph, but those family members did not become Jesus&#8217; true family members. Although Jesus had a family, he did not have a true family nor did they become the kind of family member whom Jesus needed. Therefore, Jesus was evicted from village after village. Further, he was persecuted by the Jews, the Israelites, until recent human history.</p>
<p>Even in the midst of such persecution, what was the hope of Jesus with such a sorrowful heart? On earth Jesus wanted to live with the heart of Heavenly Father, for the sake of His sons and daughters, attending Heavenly Father as His family member. Not only did he want to live in love for his beloved family members and comfort his Father, he also wanted his family members to be able to comfort the Father. Yet he did not have such family members, and thus all of the Jewish religious body and the Israelites came to fall in the position of faithlessness.</p>
<p>Therefore, Jesus expressed his sorrowful heart, stating, &#8220;. . . Foxes have holes and birds of the air have nests, but the son of man has nowhere to lay his head.&#8221; (Matthew 8:20) Therefore, you should be able to empathize with such a heart of Jesus and prepare a place where he can lay his head. If you do not have a family where you can attend Jesus, you can attend him, at least in your heart. If you do not have a place where Jesus can lay his head down, you should be willing to lay his head down on your lap. When you have such a heart, you can become a true family member of Jesus.</p>
<p>You might have wanted to become Jesus&#8217; true family member who could fulfill his will of salvation on this earth. Thus, you should remove all of the elements that can cause you to have an opposing desire.</p>
<p>Jesus said, &#8220;Your family members are enemies,&#8221; in walking a path to Heaven. Jesus wanted to treat everyone as his family members and raise them up as his family members, but no one knew such a desire of Jesus. Instead, even people who were close to him, believed in and depended upon him left. Through that condition, Satan came to invade Jesus by driving him to the cross. From this you should realize how heartbroken Jesus was, who came as the tree of life for all humankind was, and how he yearned to have a true family member who could represent his situation.</p>
<p>What then should you who are gathered here together do to understand the situations and heart of Jesus and stand in the position of a true family member who can live with him forever? To do this, you should keep a heart that can represent the heart of Jesus. You should take after the heart and character of Jesus, whose loyalty toward Heaven never changed in any environment, anywhere. As people who have been called for a mission to pioneer a new path, what should you do? You should stand in the position of a true family member of Jesus, creating an environment where he can rest in peace and feel joy.</p>
<p>When Jesus stated, &#8220;Your family members are enemies,&#8221; who were they? They were those who could not grieve when Jesus grieved, those who were not heartbroken. They were those who were ignorant when he &#8220;heartbrokenly&#8221; testified to Heaven&#8217;s heart. You should also clearly understand that Jesus&#8217; mother and brothers could not be his true family members. Instead, they became his enemies in the path he was walking. Furthermore, you should understand that even Jesus&#8217; three disciples, who were educated with all of his heart and life, the ones who walked the three years of his public ministry with him, could not become his true family members.</p>
<p>When Jesus was about to climb a hill of death, a hill of the cross, you should understand that those beloved disciples did not become his true family members. They became his enemies instead. Thus, you today should understand the historical fact that your ancestors did not understand the heart of God and did not become His true family members who could follow His dispensation.</p>
<h3 align="center">To Become a True Family Member of Jesus</h3>
<p>Therefore, although you are using an expression, &#8220;a family member,&#8221; it is a phrase with which you should be fearful. If you commit a wrongdoing in the course of faith, you will become an enemy who will block the standpoint of Jesus, who testified to the will of God. You will also become an enemy who will block the standpoint of Jesus who fought Satan, and blocked his will to redeem the sins of all humankind through the cross. You should keep this in mind.</p>
<p>What kind of person then is a true family member of Jesus? He or she will be a person who resembles Jesus, who wanted to spread the word to everyone, and who can experience all of his heart that worried, concerned and lamented while Jesus was fighting Satan. Thus, the one who only followed Jesus, when he was walking the way of the cross, cannot be a true family member of Jesus, but the one who understands the heart of Jesus until the time when he had to walk a path toward the cross. You should comprehend this clearly.</p>
<p>When Jesus came to the earth, with a mission as a true witness in his life course of thirty years, the fact that he could not find a true family member was his greatest sorrow and pain. A true family member who could testify on his behalf, fight alongside him when he was fighting Satan, carries the cross on his behalf when he walks toward Golgotha, one who he could be proud of before Heaven and earth. You should understand this.</p>
<p>What then should you do today? As Jesus was desperate to testify to the will of God 2,000 years ago, you who are living today should also do your best to testify to His will, with all of your heart and mind. You should become the kind of person who can fulfill the wishes of Jesus, with the same situation of Jesus, who fought Satan, and with the heart of Jesus who was concerned about the fulfillment of the will at the risk of the opposition of Judaism and the Israelites.</p>
<p>Further, to eliminate all the obstructions to fulfilling the will of Heaven, you should become the kind of person who can feel the grim resolution of Jesus, who was determined to offer even his life. You should also be willing to have the spirit to become a sacrificial offering, to carry a cross on behalf of your people.</p>
<p>With the character of Jesus, you can communicate with the heart of Jesus, who became a sacrificial offering 2,000 years ago, on behalf of the Israelites. You should not become a dead offering, who surrenders to Satan. Penetrated with the heart of Jesus, you should not be discouraged to testify to the will of Jesus, nor should you be defeated through fighting against Satan. Therefore, you who are in the Last Days, should have a heroic resolution and the heart to climb over the hill of death, and guide even your enemy to God&#8217;s bosom of love. You can then finally become a true family member of Jesus.</p>
<p>Who then saddened the heart of Jesus, when he was carrying out the great will of God? They are the ones who were the closest to Jesus. They were not the prepared Israelites nor were they the believers of Judaism. The greatest grief to Jesus derived from the facts that the disciples who followed him for three years, did not have faith when he needed, nor could they testify to him when needed, nor could they fight when needed, nor could they die when they had to. You should clearly understand this.</p>
<p>What then are the things you should do to be called a true family member of Jesus? First, you should be united in heart and act upon it.</p>
<p>By doing so, you should learn how to fight to achieve one goal, the will of God, and become a person who can be determined to die for its fulfillment. You should also become a person who can relieve the grievance of Jesus, caused by the failure to fulfill the will of God when he came to the earth 2,000 years ago, and comfort him. When you do all of this, you will be called a true family member of Jesus. You should remember this.</p>
<h3 align="center">What a True Family Member Should Do</h3>
<p>What then should you possess in your course of faith? You should become a person who can have true family members. When you return to your family, you should be able to have true family members. When you go to your church, you should have true family members. When you go to the society, you should also have true family members.</p>
<p>As Jesus testified to God on His behalf, fought against Satan on His behalf, and died on His behalf, you should be able to do the same.</p>
<p>Further, after having stood in such a position, you should become a person who can have a family member who can testify to you. As Jesus had his disciples who could testify to him, you then will become a person testified to by that person. That is, to stand in a position where you can be called a son or daughter of God, you should have a family member who can testify to you as an unchanging child of God, and can die for you.</p>
<p>To become such a person, what should you do? You should become a leader, who is willing to sacrifice more than anyone else. In other words, unless you become a true sung do (Christian), who is willing to carry a cross of sacrifice for many people, you shall not have anyone who will fight and die on your behalf.</p>
<p>For the sake of God, Jesus went a path of sacrifice, abandoning everything he had. What he testified was not for his own sake, but for God&#8217;s sake, nor did he fight for his own sake, but for God&#8217;s sake. Similarly, he did not carry the cross for himself, but to fulfill the whole purpose of God&#8217;s providence.</p>
<p>Therefore, until now, many sung do testified to Jesus, fought for him and died for him. So while fulfilling God&#8217;s will of restoration, you should have someone who can testify to you, fight for you and die for you. If not, you should understand that you will be in the position of an enemy before Heaven and earth, or Jesus.</p>
<p>What was the reason Jesus died when he had come to the earth? It is because he had no one who was willing to die for him. Why did he fight on this earth? It is because no one was willing to fight for him. Why did he testify to himself? It is because no one was willing to testify to him.</p>
<p>Therefore, you should become a family member of Jesus, who can represent his heart, and should have a family member who can testify to you, fight for you and die for you. Otherwise, you will carry a grievance that you could not become a living sacrificial offering before the Father, by not being able to indemnify a thirty-year life course of Christ. You should keep this in mind.</p>
<p>What then should you do today? As you seek a way to become a true family member, you should have a heart of the same concerns that Jesus had and God had, and should be able to pray for family members. Although Jesus prayed for his beloved disciples and people, due to their faithlessness, they caused him a grievance. You thus should be able to relieve him of this.</p>
<p>Consequently, to establish a church and a people centered on Jesus, you should work hard when others enjoy themselves. To fight Satan, while others do not know, you should find a person who is willing to die for you.</p>
<h3 align="center">The Importance of Forming a Family<br />
Which Can Be One with Jesus&#8217; Path</h3>
<p>For whom then did Jesus die on the cross? Of course, it was for his beloved family members. Further, it was for many people and all humankind. Jesus did not pray for himself, but for all humans. He also testified, fought and lived for them. Therefore, you should do your best to become a family member of Jesus. That is, you should make your utmost effort with all of your heart and mind to become his family member, through a path of testifying, fighting and dying.</p>
<p>Ladies and gentlemen! Do you have a person who can testify to you before the judgment of God or Satan? Do you have a friend who can fight Satan for you? Do you also have a family member who is willing to die for you? All of this will determine your value. Thus, you should understand your current position, in pursuing this path.</p>
<p>Today, a person who pursues the fulfillment of God&#8217;s will shall be confronted with enemies in the process. First, someone in the family will try to block the path. That is, if a wife of a family goes to church, her husband will become her enemy, and if a husband of a family does, vice versa. If children go to church, their parents will become their enemies, and if parents do, vice versa.</p>
<p>What position then are you in? You are in the position where you lost your family, and lost your husband or wife. Further, you could lose even your parents. That is why you should find a true family and true parents, and you yourself should become a true husband or a true wife. Further, you should become a true family member of Heaven.</p>
<p>What then should you do to become such a person? In your family, if your parents are sad, so should you be as their children. If your children are sad, so should you be as their parents. If your husband is sad, so should her wife be, and vice versa. In your family, if everyone is not united as one, and cannot create an environment in which they can attend God&#8217;s will, no one will be more miserable than you. If so, you will be rejected from your family, society and nation. You will then need a family member centered on God&#8217;s will.</p>
<p>Instead of being rejected by your worldly parents, you should have true parents, and instead of a conjugal relationship without trust in each other, you should find a true family member, with whom you can establish a true family. No matter what happens to the world, you should form an inseparable relationship with a family member that transcends even death.</p>
<p>Even in the secular world, a relationship between parents and children is such that they are willing to die for each other. If so, you should connect each other with the love of Heaven, and form a deeper relationship with love. If you cannot create such an environment, you will not be able to dwell in the same place where Jesus does, nor can God dwell with you in peace.</p>
<p>What then should you do at the time when the final moments of the Last Days are beginning? Even in the same church, you do not understand each other&#8217;s heart and situation, but this is not acceptable. That is a relationship of enemies. Thus, you should be interested in your neighbor brothers or sisters, and consider their situations to be yours, and their sorrow to be yours. By doing so, we should build an eternal and true family member&#8217;s relationship.</p>
<p>That is, with God&#8217;s sorrowful heart, considering each individual to be your own family member, you should establish a true family relationship through which you can love each other in the position of parents and children, husband and wife, and brothers and sisters.</p>
<h3 align="center">Jesus&#8217; True Family Member,<br />
The Person Who Can Build a Relationship to Live for Each Other.</h3>
<p>However, in such relationships, when you try to attend God and have Him dwell in peace, enemies who want to block your way will appear, without fail. Those who have been related to you until now will come and appear as your enemies. They are in your own family, society and nation, and even in the world in which we are now living.</p>
<p>Thus, you have an important mission to remove them from the levels of the family, the society, the nation, the world and even in the spirit world. That is, by attending one True Parent through the hearts of God and Jesus, you are to carry out an important mission to establish a family, a society, a nation and the world. Therefore, you should be able to build relationships with people who can testify to you, fight for you, and die for you. When you do it, you can become a true family member of Jesus. Please keep this in mind.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Beloved Father! Please establish your children gathered here today to be your true children.</p>
<p>If there was anything that could not be united with your heart due to their self-centeredness, through this hour, please let them realize that it could have been a condition for them to stand in the position of an enemy before You.</p>
<p>Father of love, today, through experiencing Heaven&#8217;s heart, we should fight to testify to Your heart to our beloved (church) family members, and we should also fight Satan who is blocking us from doing this. If it is not achieved, please let us also realize that even at the risk of our life, we are to fulfill this responsibility. Beloved Father, I earnestly wish and desire for this to be done.</p>
<p>Before Jesus started his universal mission, the question was with his three disciples. Similarly, today also, for our church to prosper, the question is whether each of us can be united with three members next to each other. Thus, please allow them to be united as one. Please guide them to also realize that it is a way to become a true family member of Jesus. I sincerely wish and desire for this to be done. Since we are to fulfill our mission, by being united in mind and body, and with a heart of Jesus, by being able to testify against Satan, and die while fighting him, please guide us to escape from the intrusions of the enemy during the process.</p>
<p>Through the unity of our entire church membership, please help us to defend ourselves against the group of enemies on the level of a people, and further, through the unity of three people centered on God&#8217;s will, please help them be able to defend themselves against the enemies on the worldwide level. Beloved Father, I sincerely wish and desire for this to be done.</p>
<p>If each of us is ready to fight for his or her people, pray for humanity and die for them, we can attend Jesus in peace as the center of our family, society, nation and the world. We are also aware of the fact that only when we become such a person can we become a true family member of Jesus. Beloved Father, please guide us to stand in such a position. As I earnestly wish and desire for this to be done, I pray in the name of the Lord. Amen.</p></blockquote>
<p><i>This was originally an untitled speech. The title was added in Korea.</i></p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html" title="Permalink to LET US BECOME A TRUE MEMBER OF JESUS&#8217; FAMILY" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US RESTORE GOD&#8217;S KINGDOM AND HIS RIGHTEOUSNESS</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html" rel="next">LET US NOT BECOME A BETRAYER OF GOD&#8217;S WILL <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,290 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME PEOPLE WHO PARTICIPATE IN THE GLORY OF THE LORD &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-831 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-831" class="post-831 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME PEOPLE WHO PARTICIPATE IN THE GLORY OF THE LORD</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:38:27+01:00"> <a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:38:37+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
June 16, 1957</h3>
<p style="text-align: center;"><em>Matthew 25:31-46</em></p>
<p style="text-align: center;"><em><span class="text Matt-25-31"><span class="woj"><sup class="versenum">31 </sup>“When the Son of Man comes in his glory, and all the angels with him, he will sit on his glorious throne.</span></span> <span id="en-NIV-24041" class="text Matt-25-32"><span class="woj"><sup class="versenum">32 </sup>All the nations will be gathered before him, and he will separate the people one from another as a shepherd separates the sheep from the goats.</span></span> <span id="en-NIV-24042" class="text Matt-25-33"><span class="woj"><sup class="versenum">33 </sup>He will put the sheep on his right and the goats on his left.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24043" class="text Matt-25-34"><span class="woj"><sup class="versenum">34 </sup>“Then the King will say to those on his right, Come, you who are blessed by my Father; take your inheritance, the kingdom prepared for you since the creation of the world.</span></span> <span id="en-NIV-24044" class="text Matt-25-35"><span class="woj"><sup class="versenum">35 </sup>For I was hungry and you gave me something to eat, I was thirsty and you gave me something to drink, I was a stranger and you invited me in,</span></span> <span id="en-NIV-24045" class="text Matt-25-36"><span class="woj"><sup class="versenum">36 </sup>I needed clothes and you clothed me, I was sick and you looked after me, I was in prison and you came to visit me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24046" class="text Matt-25-37"><span class="woj"><sup class="versenum">37 </sup>“Then the righteous will answer him, Lord, when did we see you hungry and feed you, or thirsty and give you something to drink?</span></span> <span id="en-NIV-24047" class="text Matt-25-38"><span class="woj"><sup class="versenum">38 </sup>When did we see you a stranger and invite you in, or needing clothes and clothe you?</span></span> <span id="en-NIV-24048" class="text Matt-25-39"><span class="woj"><sup class="versenum">39 </sup>When did we see you sick or in prison and go to visit you?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24049" class="text Matt-25-40"><span class="woj"><sup class="versenum">40 </sup>“The King will reply, Truly I tell you, whatever you did for one of the least of these brothers and sisters of mine, you did for me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24050" class="text Matt-25-41"><span class="woj"><sup class="versenum">41 </sup>“Then he will say to those on his left, Depart from me, you who are cursed, into the eternal fire prepared for the devil and his angels.</span></span> <span id="en-NIV-24051" class="text Matt-25-42"><span class="woj"><sup class="versenum">42 </sup>For I was hungry and you gave me nothing to eat, I was thirsty and you gave me nothing to drink,</span></span> <span id="en-NIV-24052" class="text Matt-25-43"><span class="woj"><sup class="versenum">43 </sup>I was a stranger and you did not invite me in, I needed clothes and you did not clothe me, I was sick and in prison and you did not look after me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24053" class="text Matt-25-44"><span class="woj"><sup class="versenum">44 </sup>“They also will answer, Lord, when did we see you hungry or thirsty or a stranger or needing clothes or sick or in prison, and did not help you?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24054" class="text Matt-25-45"><span class="woj"><sup class="versenum">45 </sup>“He will reply, Truly I tell you, whatever you did not do for one of the least of these, you did not do for me.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24055" class="text Matt-25-46"><span class="woj"><sup class="versenum">46 </sup>“Then they will go away to eternal punishment, but the righteous to eternal life.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! Please allow us to reflect upon Jesus&#8217; three-year course of public life when he was chased from this village to that. We must feel again that Jesus who came with the heavenly heart shed limitless tears of sorrow with an earnest heart, yet the contrary Israelite people denied him with arrows and conjured up all kinds of conspiracies. There were many times when we blamed the believers of Judaism, the Pharisees and the Jewish people, in the past for their mistakes. We judged them rashly. However, please let us feel that if we were born 2,000 years ago at the time of Jesus&#8217; birth, we would have opposed Jesus and handed him over to Pilate. Let us believe that we are even worse than they.</p>
<p>Please let us understand that the wheel of history is continuing to turn while the universe is changing. The time of the dispensation is turning around, but the new history of restoration has failed to turn around the crisis that it must overcome. Therefore, lamentation, spite and bitterness still remain on this earth.</p>
<p>Please let us realize that when human beings stand in the position of betrayal, heavenly laws can be destroyed and the works of heaven can be undermined. Therefore, please guide the sons and daughters who are here, even if they are to die many thousands of times, to forsake everything they have and accomplish the will of God from the position of sacrifice.</p>
<p>Father! We hope with earnestness that You will allow us to understand that God mourns when we cannot rectify what belongs to Heaven as Heaven&#8217;s own. Allow us now to rectify what belongs to Heaven as Heaven&#8217;s own and offer even our own things as Heaven&#8217;s possessions.</p>
<p>Please bind the minds of the sons and daughters here as one. Let there not be any gap between the receiver and the giver. Please allow our minds to become one with Yours so that we can bear fruit before the will of the Father&#8217;s desire and become subjects of harmony. Please allow them to be in harmony before the Father&#8217;s grace.</p>
<p>We know that our original nature and character must eternally adore the Father, so please do not let the intellectual mind and the sacrifices that we have made prevent our minds from adoring You. Please let us realize how we are infinitesimally small.</p>
<p>Please allow us to lie prostrate before the majestic Father. Allow us to report our inadequacy directly and adore Your loving hands with innocent hearts.</p>
<p>We have entrusted this hour only to You, so please guide us. Wishing sincerely that You will appear with the same grace before all the members who are scattered everywhere, we prayed all these words in the name of the Lord. Amen.</p></blockquote>
<p>The title of what I wish to speak about is <em>&#8220;Let Us Become People Who Participate in the Glory of the Lord.&#8221;</em></p>
<h3 align="center">God&#8217;s and Jesus&#8217; Hope for Humanity</h3>
<p>You know very well that fallen humanity is longing for the dawning of the glorious day that is their hope and ideal. You have to understand that God also has been toiling for the long 6,000-year time span to find this one day. Jesus and the Holy Spirit also have been exerting themselves to repeat the battles for a time span of 2,000 long years. Furthermore, the countless believers who are worshipping heaven have also been crossing the ridge of infinite sacrifice to find this one day.</p>
<p>This ridge must be crossed over, even if we die hundreds and thousand of times in the process. We must feel to our bones that to cross over this ridge, human beings were not the only ones who were mobilized. Many religious groups and many founders of religions in the spirit world, even the Holy Trinity, have been mobilized for this effort.</p>
<p>To manifest that one day, God has been enduring for 6,000 years. Human beings have persevered through many sufferings and adverse situations to find the new hope, the new guiding ideology.</p>
<p>Because God created the world with a purpose, the created things must unite with that will of God. Therefore, if we humans who must realize the will of God cannot establish the one day that heaven and earth can rejoice over, then all the work of God and human beings up to now will have no meaning.</p>
<p>Jesus Christ was the person who came to the earth to newly introduce this day of hope to God and human beings. We human beings do not have any power or resource that can enable us to accomplish the will that God plans to fulfill. Therefore, we are following Jesus Christ, who came as the mediator, to attain that kind of power and resource.</p>
<p>What did Jesus desire after he came to the earth? It was to establish through his life the one day of hope that humanity seeks, establishing heavenly principles and human ethics on this earth and to spread the gospel of God to humanity. However, because of the betrayal of the Jewish people at that time, Jesus left without having laid the victorious foundation for the fulfillment of the will before God, human beings or before all things.</p>
<p>The Israelite people were living in the time and environment in which they could attend Jesus as the Lord of the highest glory, the master of all peoples. They could have taken pride in that. Although they were blessed with heavenly grace, because they could not cope with that grace, the victorious foundation that God planned to lay could not be secured on earth.</p>
<p>As a result, during his work in the 2,000 long years since the ordeal of the cross until today, what Jesus wanted was to return to this earth and fulfill the will that he had offered some thirty-odd years of his life to fulfill. He wanted to establish the one day of the glory of God, the glory of himself and the Holy Spirit, and the glory of all people.</p>
<p>For the human beings then who have the fate to usher in this day and pass through the end of history, the problem is with what attitude they will meet the day of glory that will emerge universally in the last days. This is the day of new glory that God, Jesus, the Holy Spirit and humanity all want.</p>
<h3 align="center">The Attitude of Faith Which Can<br />
Greet the Day of Glory</h3>
<p>Because the Israelite people of the past did not complete the mission that God bestowed upon them, Jesus had to follow the footsteps of sorrow to come seeking humanity again. Yet at this time, if there are people who repeat the precedent that the Israelites set, then they will be blocking the coming of the glory of heaven, blocking the one day for which Jesus hopes. They will be blocking the one day for which humanity longs.</p>
<p>Why then did the Israelite people and the believers of Judaism who met Jesus fail to joyfully usher in the one day of glory that could have accomplished the purpose they had been longing for during the 4,000 years? Why did they fail to serve Jesus as the leader of the people and fail to establish the one day of glory before all people? You have to understand that this is the crime they have committed before God.</p>
<p>When Jesus was alive, if the Jewish people had built the national territory on this earth centering on God and if they had built the kingdom wherein the ideals of Heaven could be realized, then today we would not have inherited the hope of the Israelites in waiting for the Lord as our hope.</p>
<p>Because the Israelite people could not serve Jesus as the embodiment of hope and could not attend him as the historical master, the will of God was completely discontinued. The Israelite people and the Jewish sects let Jesus die on the cross by violating the will of heaven on the level of society and the chosen religion.</p>
<p>Because there was none on earth who welcomed Jesus on the individual level, not to mention on the level of society and the chosen religion, God, who had sent Jesus with hopes that he would be welcomed, felt tormented. Therefore, you must understand that this grief remained as the sorrow of the people, the sorrow of the religious group, and the sorrow of each individual.</p>
<p>How then should we who believe in Jesus conduct our faith today? We must take responsibility for the sins committed by the Israelite people, the Jewish sects and each individual. On the level of the individual, the religious sects, the people and the world we must cleanse them. We face this kind of fate. Our ancestors have been cleansing sins throughout history.</p>
<p>The history of humanity which should have become the history of joy became the history of sorrow, as you can see. Because the Israelite people walked that path of betrayal, the Christians who have followed Jesus had to pay indemnity for it. You who have the mission of the spiritual Israel on behalf of humanity must also travel this road of indemnity. You have to pass through the lonely road, the road of the cross, the road of death. This was the reason why, when Christianity tried to spread its doctrines and establish the Christian faith in a place where the people believed in another religion, without fail, they had to build an altar of blood. Simply put, the history of Christianity is a history of martyrdom. It traveled a course of hardships and persecution. This path of martyrdom began from the individual and expanded to the family, society and the world.</p>
<p>You must never forget that among your ancestors have been many prophets and sages who walked the road that is in line with the will of God without abandoning the will of God and the hope even while they were traveling through this path of conflict for Christianity. They did not abandon the will of God even while falling down this way and that, even while being crushed and tangled.</p>
<p>Originally the Israelite people were to serve Jesus. This was not because the Jewish people were extraordinary or because of the efforts of the Jewish religion. It was because there were many prophets and sages who, representing the people in the 4,000-year course of history, had demonstrated concern for God and remained faithful to His will. Nonetheless, the Israelite people and the Jewish religion at that time forgot this and could not establish the will of God. As a result, the bitter grudge of Jesus saturated the earth.</p>
<p>What is the position, then, of we who believe in the Lord? We must pass through the road of adversities and clear the bitterness on the world level to usher in the one day of glory. We stand in the position representing the Israelite people and the religion of Judaism, which were chosen to receive the Lord 2,000 years ago. We represent the spiritual Israel on the world level. You must keep this in mind.</p>
<h3 align="center">Jesus&#8217; Elite Troops Who Inherited<br />
the Tradition of the Dispensation</h3>
<p>Now we must become the elite troops of Jesus who can fight with the opposing people and the opposing sects to cleanse the bitterness caused by the failures at that time of the Israelite people and the Jewish religion. If the Israelite people had understood Jesus Christ, who was trying to establish the will of God and confront Caesar&#8217;s faction, which had conspired to send him to the cross, what would have happened? If they had endured through the national conflict and obstructed the conspiracy, then at that time the will of God would have been realized. God has been fighting and persevering through difficulties while hoping that some people who represent the world can set the base of victory on the level of a people like this.</p>
<p>Yet why did God and the Holy Spirit have to fight? Weren&#8217;t they the Jesus of peace, the Holy Spirit of peace and the Father of peace? They had to fight to protect humankind from the legions of satans who have been expanding the powers of evil on earth for 6,000 years. They had to fight to bring an end to the history of evil. You have to understand this painful situation of God, Jesus and the Holy Spirit.</p>
<p>To whom then do the terms &#8220;God of mercy, God of love&#8221; apply? They do not apply to Satan. They apply to the sons and daughters who are within the realm of heaven. God loves man and not sin. You have to understand this clearly. Where there is Satan, God&#8217;s ideals cannot be revered. Heaven cannot dwell there.</p>
<p>Jesus Christ who appeared before the Israelite people did not hold grudges against anyone, even when he was dying on the cross. The reason is that he knew that, even after he died, the door to the salvation of the world would open up.</p>
<p>Because Jesus suffered immeasurable agony, he could have been bitter towards the Israelite people. However, what Jesus felt from the people who opposed him was the toil of God, who had led the dispensation for 4,000 long years. Jesus felt the altars of blood that the countless prophets and sages had built to usher in the one day that the will of God could be realized. Therefore, he did not hold any grudge against them.</p>
<p>When Jesus was passing away on the cross, he could have appealed to heaven for the judgment of the Israelite people who had put him to the cross. Reflecting back on the history of the dispensation during which God had greatly exerted Himself, seeing how God forgave even the people who opposed those whom He had sent, Jesus had the magnanimity to forgive them. Even though there might have been times in history when people who opposed God avoided judgment and rejoiced, the reason that God did not judge them was not because they themselves were valuable, but because He was able to generate magnanimity by looking at the prophets who had forgiven them, just as Jesus forgave them representing history and the dispensation with the heart of sorrow on behalf of Heaven.</p>
<p>To receive the glory of the Lord, what kind of position must we then stand in? We must be able to link with the situation of Jesus. Tracing the footsteps of God, who raised Jesus and worked strenuously for 6,000 years, we must be able to stand before Heaven. Moreover, we should be able to say, &#8220;Although this earth might be a land of sins, looking at the bloody footsteps of Your hard labor of 6,000 years, heaven, please withdraw the whip of judgment.&#8221; When you stand in such a position, you will be able to establish the ideology of the people, the ideology on the world level.</p>
<p>You must realize that people cannot exist alone. No matter in what form or content, they have to live making relationships with other people. Regardless of what society or nation to which they belong, the actions of the individuals who belong to that society or nation will have impact on the whole. Good actions have good impact and evil actions have evil impact. Therefore, you today must go beyond the desire to live centering on yourself and have the mind-set to live while materializing the ideal world of God and the ideals of the spiritual Israel. You must actually live it.</p>
<p>You must never forget the tradition of God, who until now has been longing for the one day of hope, who has been exerting Himself and battling. Moreover, you must learn to set the tradition of the dispensation, the historical tradition and the tradition of the tribe. If the Israelite people had achieved this task, then at that time, great transformations would have taken place in all the cities and villages of Israel through the names &#8220;Jesus&#8221; and &#8220;Messiah.&#8221;</p>
<h3 align="center">The Reason that Jesus and the Prophets Were Betrayed</h3>
<p>When Jesus was born in the stable at Bethlehem, the three wise men were not believers in Judaism, but fortune tellers of that time. Yet when they came to Jerusalem and inquired, &#8220;Where is the king of the Jews who is just born?&#8221; all the people in Jerusalem were thrown into great tumult. When we contemplate this fact, we find that the Israelite people longed for a Messiah only in words. They did not think about the question of when and where they might meet the Messiah.</p>
<p>We today can also easily make this mistake. It is difficult to readily accept and not betray the person who is sent by God or the heavenly principles, no matter where they might appear.</p>
<p>The Israelite people were able to criticize all the facts and historical events that emerged in practical reality by looking at the surface, but they did not understand the content. In other words, they knew how to see but they did not know how to taste. Today you must not conduct the same kind of life of faith. It is also not right just to believe in Jesus and not understand his heart. You know how to put Jesus on a high pedestal, but you are ignorant of the fact that he shouldered the will of God in a miserable position.</p>
<p>Now we must never repeat the mistakes that the Israelites committed in the past. When we greet the day of glory again in the place of the Israelite people who lost Jesus, we must think about what differences we have with the Israelite people as we greet that day.</p>
<p>When we examine the course of Jesus, who was centered on the will of God, many people followed him, including the disciples. We can see that there were people who followed him when they were happy. There were others who followed him when they were sad. There were people who followed him at the time of the new beginning. Among them, those who welcomed Jesus when they were happy were particularly large in number. When he fed the crowd of 5,000 with five bottles of wine and two pieces of fish, when he was introducing historically new facts and moving the hearts of the people, they supported him and followed him.</p>
<p>Nonetheless, why was it that the people who shared every experience with him for a long period and followed him could not penetrate through the surrounding environment during the progressive course of history and fell down on the way? You have to understand that this was the repetition of the past historical course when the Israelite people betrayed Moses as they were heading toward the land of Canaan.</p>
<p>When Moses led the Israelite people to the land of Canaan, his will and the standard were different from the will and standard of the people. Moses, who was trying to establish the will of God, had a clear purpose toward which he was heading. Because he had a clear sense of direction, he was thinking about the road of survival by forecasting into one year or ten years later. He was trying to put that into action to reach his purpose. By contrast, the Israelite people could not do the same. Consequently, the Israelite people fell away from Moses.</p>
<p>Although originally the Israelite people were permitted to pass through the 400-year history after Abraham to greet the one day of glory, they fell down in the wilderness without being able to greet that day. In the same way, when Jesus came, he had a clear sense of purpose and direction, and looking at ten or twenty years in the future, he was trying to create the environment in the living sphere of human beings in which he could fulfill the will of God. Yet the Israelite people could not live up to his expectations.</p>
<p>Because the direction and purpose they pursued were different from those of Jesus, because their lives were different from the will of the dispensation that was headed toward eternity, although they might have welcomed Jesus when they were glad, they did not hesitate to neglect Jesus when the situation turned adverse. In other words, they had set a conditional purpose and lived based on a conditional direction.</p>
<p>The Israelite people, who raised a banner of opposition before Jesus, mocked Jesus who was hanging on the cross and pushed him along the path of death. They were repeating the act of disbelief committed when they had betrayed Moses and made the golden calf to worship. In the same way that Moses had to wander in the wilderness for forty years, even as he was looking at the footsteps of the land of Canaan where he could have lived in splendor, Jesus also had to wander for 2,000 years while looking at the ideal of the blessed land of Canaan on the world level. You have to understand that Jesus has been feeling this kind of bitter grief.</p>
<p>Why then did the Israelite people not believe in Jesus? It was because they did not know Jesus was the representative of God. They did not know that he had come to fulfill the purpose of the dispensation of God. They did not know that he was the one who would guide them to the straight path to heaven. They did not know that Jesus was not just an individual, but a representative of the world and the people and that he was responsible for their eternal lives.</p>
<p>If the Israelite people had known that Jesus came to save their lives, then even at the cost of their lives, they should have followed him. If they knew that he came for the sake of the people, then even if it required forsaking the people, they should have followed him. If they knew he came for the sake of the religion and the world, then they should have followed him even if they had to abandon their religion and the world. Yet because the Israelite people did not know Jesus&#8217; value and betrayed him, they traveled through the road of indemnity for a long time after that.</p>
<h3 align="center">The Value of the Sacrifice Made<br />
for the Sake of the Whole</h3>
<p>It is heavenly principle that what is sown will be reaped. Therefore, there will come a day when what was sown at the beginning of Christian history will be reaped in the same manner. Similarly, you must heed the day that everything sown in Christian history is harvested.</p>
<p>Now you must not stand in the same position as the Israelite people who betrayed Jesus. The direction and purpose of the faith you are pursuing and the various environments of your life must be according to the will of God, who has been guiding the dispensation for 6,000 years. They have to agree with the direction in which Jesus and the Holy Spirit are urging you. The problem is whether you can become one with this. The problem is not whether Jesus comes. The problem rests with you who are making the preparations to receive him.</p>
<p>Do you desire to receive the blessing in your life of faith? You have to understand that blessing comes only after you have completed walking your course to the end and have completed the battle you must fight. Therefore, just as Jesus passed through the road of crucifixion to become resurrected, you also can greet the one day of hope, resurrection and joy only after you have passed through a difficult path of hardships. Jesus said, &#8220;Those who are trying to gain their life will lose it, and those who are trying to lose their life will gain it&#8221; (Luke 17:33).</p>
<p>In the past, when the Israelite people violated their pledge with God and worshipped Baal, Elijah went before Jehovah. Pleading with God to take his life, Elijah cried out, &#8220;I am the only one who is left.&#8221; Yet at that time Jehovah said that He had kept 7,000 people who had not submitted to Baal.</p>
<p>Similarly, the religious world today is shaking at its core and is in great confusion, which has deprived them of a sense of direction. You who are living in this time must be able to connect with the heart of Elijah, who clung to the people and appealed to Jehovah. You must also be connected to the heart of Moses. When the Israelite people did not have any food to eat in the wilderness and were wandering in the wilderness for forty years without direction, Moses went up Mount Sinai and appealed to Jehovah for forty days of fasting.</p>
<p>Moses did not pray for his own glory. Moses knew better than anyone else that God had sent him to the earth, not for his own sake, but for the sake of the people and the world. We who are moving forward while looking at the world-level blessed land of Canaan must also realize that we are the chosen Israelite people who must inherit this heart of Moses. We must march forward.</p>
<p>You who have heard these words today, please critically evaluate your own life of faith from the position of a third person. Was there any day when you mourned for the sake of the people as Jesus did? Have you ever prayed like Jesus? Have you ever built an altar of tears for the sake of the people as Moses did? He prayed for forty nights and days and soaked his knees with tears without anyone knowing about it while the chosen people freely slept and played.</p>
<p>The reason that various forms of culture have formed centered upon Christianity today is not because of the merit of the people of the present era. It is because many believers risked their lives and traveled lonely and perilous uphill roads. They overcame loneliness and fought with sin, even in such lonesome places as huts and caves. It is because such as they have continuously prayed in tears to God.</p>
<h3 align="center">The Time When We Have To March Forward<br />
in Search of a New Path of Faith</h3>
<p>Now humanity has come to the time when they must march forward toward a new goal. Therefore, human beings must look for a new goal.</p>
<p>You must not try be in a comfortable position only promoting your own interests or abuse your faith as did the Israelite people and their leaders, the chief priests, of the past. Now is the same kind of difficult time as when Jesus went up to the garden of Gethsemane and offered a decisive prayer to God while the path of crucifixion lay before him. Moreover, just as Moses climbed Mount Sinai on behalf of the 600,000 Israelites and prayed earnestly for forty days and nights with his life on the line, this is the time we must pray for the sake of the people and the world. Moreover, in the last days, there must emerge many sons and daughters of God who can manage this kind of mission. If such people can really be found, then the twelve tribes and seventy elders during Moses&#8217; time and the twelve disciples of Jesus cannot even compare to them.</p>
<p>If the Israelite people had actually forgotten their own situations and supported Moses, who was fasting and praying for forty days and nights on Mount Sinai and had entreated God with him, then they would not have suffered through the forty bitter years of wandering in the wilderness. Moreover, if there was a disciple who beheld Jesus and fell on his knees to pray together in tears with the same heart, then the 2,000 years of ordeals would not have come into being. However, our ancestors could not fulfill these tasks. Still, we must be able to forgive these historical mistakes of the ancestors and bring to a conclusion the grief of the world. We must restore the garden of joy that God seeks. To do that, you must search the right path that will lead you to the destination in the homeland.</p>
<p>When Moses climbed Mount Sinai, he did not tell the Israelite people, &#8220;I am going to pray for you.&#8221; Moreover, when Jesus was offering a deep prayer in lonely solitude, he did not tell anyone about it. He did not even tell his three disciples, Peter, John and James. Now is also that kind of time.</p>
<p>The reason is that there is the condition set by the ancestors of humankind who betrayed God by secretly falling. Therefore, we descendants have the dispensational fate to set the condition God can recognize. Such a thing has taken place frequently during history. Moreover, you must understand that, in the last days, when we must cross over the one door while gazing at the day of glory, such things will take place.</p>
<p>Although Jesus spoke on behalf of the people, the world and God from a position of transcending himself, all the apostles who were following Jesus thought the words Jesus spoke were meant only for them. When Jesus did something good, they thought it was only for their sake. When Jesus entered a lowly position, they thought that he did it for their sake. Because they had this kind of faith, God could not fundamentally approve of them. You have to understand that there they began to split away from God.</p>
<p>In this moment then when we are in the last days, what position should you who must seek for the day of glory stand in? More than anything else, you must be able to connect to the heart of Jesus. Each of you must create this kind of environment for your individual lives. Furthermore, you must make this environmental foundation that can act in for the world and the whole universe. If you make this kind of environment, then this will come together and form the environment of life for Israel on the world level.</p>
<p>You who have participated here today! At present what is your purpose in believing and following God? You should ask yourself this question in this hour today. Do you perhaps have the desire to use God to raise yourself up and seek only your own happiness? You must not do that. You must transcend yourself and put the purpose of faith in God.</p>
<p>Jesus possessed a heart of concern for God, even when he was happy. On the contrary, for the crowds that followed him, the more their joy was magnified, the more they welcomed Jesus with the desire to accomplish their own purposes and desires on earth. Jesus was the only person who sincerely worried about God. The future of Christianity today will be blocked if it stands in that position. Moreover, if there is a religion that conducts its life of faith in this manner, then the same thing will happen to it.</p>
<p>What then is the path Jesus walked? As I have just said, Jesus forsook himself. Even when he was happy, he did not take that as his own happiness, but tried to channel all of it to God.</p>
<p>Therefore, now you must be happy when Jesus is happy. You are not to be happy centering on yourself, but centering on God and Jesus. Moreover, you are not to set as your purpose that which will unite with your desires, but set as your purpose that which unites only with God. Otherwise, we will be separated from Jesus. We will be divided in the same way that Moses and the Israelite people were divided and the way the Israelites were divided from Joshua and Caleb. Moreover, as was written in the Bible verses recited today, we will be divided into the sheep and goats.</p>
<h3 align="center">The Standard of Life</h3>
<p>The place where Cain and Abel separated in the beginning was not two, but one. They were not divided from the world, but from one individual. At the time of the ultimate judgment, the judgment is not to take place in heaven, but centering on humans on earth. Good and evil will divide. You yourselves will also feel that your minds are dividing into two. In other words, you will feel the division between the mind that is trying to establish the heavenly principles and the mind that is trying to accomplish humanistic purposes. When we look at this, we can learn that our minds are at the point of the division of good and evil.</p>
<p>Ladies and gentlemen who are present here! We have come forward already determined to penetrate through any kind of adversity to head toward the one hope. Therefore, now when we feel joy in our hearts, we must link that with the people and with God. If we experience hopeful events, then it must not end up as just our own hope. We must connect that hope with the people and the world.</p>
<p>If we are glad when Jesus is happy and we comfort Jesus when he is feeling agony, then Jesus will be with us. Moreover, when we do that, we will be able to relate with God. You must understand that only when you become this kind of person, can the Holy Father, the Holy Son and the Holy Spirit consider you with compassion. Only when the Holy Father, the Holy Son and the Holy Spirit treat you with compassion will the work of resurrection take place.</p>
<p>The reason Jesus could resurrect was that Jesus was able to throw away his own life for the fulfillment of God&#8217;s will. His abandonment of his own life for the sake of the will reached the level where he could receive God&#8217;s hands of resurrection. If you cannot set one standard that can stimulate you more powerfully than any other standard set by people in history, then even if you have been following the will from the beginning, you will fall away soon. If you fall away, what will happen to you? How can anyone guarantee that you will not become the same sort of people who rebelled against Jesus and spearheaded the attempt to kill him?</p>
<p>You who are present in this place: if you now understand that your goal is to establish the heavenly principles, live for the sake of heaven and earth and establish human ethics, then even if some adverse condition blocks your path, even if someone denies you, you should have a conviction strong enough to defeat them.</p>
<p>The members of the Unification Church can become the friends of Jesus only if they are able to head toward this direction from the beginning. How were the apostles, who had the mission to guide the crowds that followed Jesus on his behalf? They could not have the same heart as Jesus.</p>
<p>As the number of the multitude following Jesus increased, they took that as the enlargement of the scope of their own glory. Thus, they tried to order the people around. Therefore, as the days passed and as the number of the people who were following for their own benefit increased among the crowd, Jesus had more cause for worry. The more he found himself in such a situation, the more he found he did not have anyone with whom he could share his heart openly.</p>
<p>Although these actions of theirs became unsurpassable sorrow, in contrast, for Satan they became conditions of delight. Simply put, they could not fundamentally cause the words that divide good and evil, the works of judgment. You must never repeat this.</p>
<p>The problem is not the number of the people who believe. At this time when we have arrived before the final verdict on the world level, there must appear true people who can represent humanity and the people in rejoicing and say, &#8220;Hallelujah, amen,&#8221; even if they are in a difficult and lonely place. This is the problem. Only a person with this kind of faith can manifest the glory of God and become the embodiment of resurrection.</p>
<h3 align="center">The True Person God Needs</h3>
<p>The road for the sake of the will cannot be traveled when you are trying to attain heaven&#8217;s glory or value of life for yourself. Criticizing, centering on oneself, and bringing harm to other people for one&#8217;s own benefit are the actions that brought about the fall.</p>
<p>At this time, then, when we are looking at the glory of the last days, what position are you in? Right now God has an unspeakably sorrowful heart and is overwhelmed by lamentation and melancholy. Do you perhaps try to be in a comfortable position and enjoy yourself in contrast to how God is? If there are such persons today, then eventually they will be in the same position as the Israelites who betrayed Moses or the multitudes who betrayed Jesus. You have to clearly understand this fact.</p>
<p>Even if someone is living for the sake of the fulfillment of the will of God, if he does things for his own happiness, then at the point of division of the last days when the sheep are divided from the goats, they will be put on the side of the goats.</p>
<p>What kind of person then can participate in the position of glory? That person must be one who has become one in heart with Jesus. If 2,000 years ago, there had been believers who shared in Jesus&#8217; sorrow and joy, then Jesus would have been delighted and would have manifested all the will of heaven before them. Eternal glory would have been given to them. However, Jesus felt desolate and sad because, although his followers were on the rise, he could not share his heart with anyone because there was no one who could remain faithful to him and inherit everything from him. The people who were following him did not understand his feelings. In the last days, there will be people who will lead the same kind of life of faith.</p>
<p>Even if a person believes in God and follows Him, if he neglects God&#8217;s concerns and only seeks his own comfort and pleasure, then he is not someone God needs. There is a greater need for the one person who is helpful to God than 6,000 or 7,000 people of that kind. When Jesus was fighting with evil and made his appeal for the realization of the will with the same sad heart of God in the Garden of Gethsemane, humankind should have appealed with a heart three times more aching than that of Jesus. Peter, John and James did not even try to feel one-third of that sorrow. You who are present here must never become that kind of person.</p>
<p>If Jesus toils over one thing, then you should work more than three times as hard. If someone who represents heaven exerts himself, then you must exert yourself more than three times as much. If someone who represents heaven agonizes over one thing and suffers one hardship, then you must feel the anguish and concern more than three times and experience the hardships more than three times. Because the followers of Jesus did not try to extend themselves even one-third of the exertion of Jesus, they brought doom to the people, sold off the only begotten son and betrayed God.</p>
<p>You who are present here today, do you really want to follow the Unification Church? When this Rev. Moon who leads the Unification Church feels some anguish, you must feel more than three times the anguish and become the encircling fence for the sake of the will of heaven. On the contrary, if there are many people who seek for comfort rather than becoming such people, then just as the Israelites who were following Moses left behind heaps of corpses in the wilderness, Satan who drags people to death will invade.</p>
<p>At this time, when we have arrived at the conclusion of history, you must become the sons and daughters of glory who can bring hope to the whole universe by shouting before Satan who caused the grief of 6,000 years, &#8220;How can you boast your powers!&#8221; You must fight with Satan single-handedly and demonstrate the victorious accomplishment to God. Without doing that, you must never think, &#8220;I can just do the bare minimum.&#8221;</p>
<h3 align="center">The Life of Faith in Which You Must<br />
Be Willing to Face Death</h3>
<p>You might not be aware of this, but we stand in a serious situation today. If the path we are walking is true, then we must make a serious resolution. This is because the results will change according to our determination.</p>
<p>When Adam and Eve fell, because God took the responsibility and carried on the salvation, there was some hope. Yet in the last days when the Lord of glory returns, if human beings do not fulfill their responsibility, the dispensation of salvation cannot be continued again. Therefore, if we cannot complete the dispensation of salvation, there will remain bitterness that is greater than that which was left at the time of the fall of Adam and Eve.</p>
<p>We who have come upon this kind of fearful time must understand the heart and the heavenly will of God and speak in defense of God&#8217;s heart from the position of having been recognized by God. If we do not understand or cannot achieve this, then we must seek a humble position on our own initiative. Jesus was humble even when he was aware of the will of God, so people who do not know the will of God must be humble. If there are such people, then they will surely fall into Satan&#8217;s abyss of death.</p>
<p>Peter, who followed Jesus 2,000 years ago, as well as the twelve apostles and countless multitudes below him did not understand the heart of Jesus. Therefore, today, you must be determined not to stand in the same kind of position. Ladies and gentlemen, please call out to the Father with that kind of heart. Because the Father is alive, He can give you an answer. If you give all of your heart for the sake of the earth with the same heart as He, then you will be brought to the side of God. Now you must understand that you have the two-fold or three-fold responsibility of alleviating all the bitterness that Jesus left behind on this land and establish yourself, not as a deceased offering, but as a live offering to build paradise on earth.</p>
<p>Yet, why did Jesus die? Jesus did not die because he did not feel any attachment to this world. Jesus loved this earth more than anyone else, and he was full of human kindness. However, because he knew the will of God that only he could bring to pass, he walked the path that differed from other human beings and eventually took the path of the cross. Jesus could not share in the joy when they were rejoicing and could not walk the same path together. He could not divulge his own sorrows. This is how the path that Jesus took was different from that of human beings.</p>
<p>If we want to behold the day of lasting glory and go before Heaven to demand, Please let me stand before all things and creations! then what kind of road should we take? In one word, we must go through the path of death. It is because this is the direct route to heaven. You must also walk this path that Jesus traveled.</p>
<p>Jesus did not walk the road of the cross of Golgotha only for one day. Jesus fixed his heart on the will of God, and for some thirty odd years of his life, he set the standard of the cross and fought on. Moreover, he did not make the determination to face death on the cross in several days. You have to understand that by offering some thirty odd years of his life and in the position of being in charge of the 4,000-year history of the dispensation, Jesus predicted, &#8220;If it goes well, then these things will happen. If it does not go well, then that will take place.&#8221; Meanwhile, there was not even a moment of his life that he was able to escape from the sorrowful heart of Golgotha.</p>
<p>Because there was such a prepared foundation, Jesus was able to place his beloved disciples, people, nation and religion behind him and walk the road that he was determined to go from his birth, the path of the cross on which he offered himself as the sacrifice.</p>
<p>Now you must feel in your life the victorious conditions of Golgotha that Jesus set throughout his life. Otherwise, you will become the same as the disciples who turned away while they were following Jesus, when Jesus was receiving many people&#8217;s rejections and reproaches and had to bear the cross on his shoulder to take the path of death. Moreover, you must reflect on the fact that although many multitudes had followed Jesus, there was no one who was following him with his life on the line.</p>
<h3 align="center">The Faith of the Women,<br />
Simon of Cyrene, and Jesus</h3>
<p>Jesus hoped to hear of someone who could bear the cross in his place, take the beatings on his behalf, and on the road of death of Golgotha suffer hardships and desperately call out in his place, &#8220;God! Father!&#8221; Although for thirty years he hoped to hear this kind of voice, when his hopes were dashed, how would he have felt?</p>
<p>You have to understand this heart of Jesus. You have to experience this pain of Jesus and be able to sympathize with his pain. Moreover, you must have the mind-set that it is perfectly natural for you to go this path of death on which you will die many thousands of times for the sake of the humanity of the world.</p>
<p>What you have to realize is that when Jesus became fatigued while carrying the cross to Golgotha, there was none among his disciples who, like Simon of Cyrene, shouldered the cross in his place. There was not even one person like this among the chosen people of Israel. Because this foreigner, Simon of Cyrene, participated in the tribulation of Jesus, Christianity could not become the religion of the Israelites. It became a religion of foreigners.</p>
<p>Today, you who have determined to believe in Jesus and go in search of God must be determined to carry out the same actions as Simon of Cyrene, even in your dreams. Although Simon of Cyrene could have made an excuse or rebelled, he silently obeyed and bore the cross in Jesus&#8217; place. You have to become this kind of person today.</p>
<p>How must Jesus have felt when he was looking at him? When the apostles with whom he had shared all his joys and sorrows had all disappeared, a foreigner named Simon of Cyrene suffered misery on his behalf. Looking at the situation, Jesus must have felt deeply embarrassed and sorrowful.</p>
<p>If among the twelve apostles there was just one person who had shouldered the cross in his place, then by looking at him, Jesus could have forgotten the hardships of death. He would have overcome his own agony by feeling sympathy for him. Nevertheless, because this did not take place, Jesus felt greater sorrow. You must understand this situation.</p>
<p>In the Christian world of today, there must emerge a denomination in the position of Simon of Cyrene. Yet, which denomination will take on that responsibility? Christians today must realize that Jesus could not become Messiah of the apostles who had followed. He became Messiah of a foreigner, Simon of Cyrene. They must build a church in the position of Simon of Cyrene.</p>
<p>In order for you to become a companion in the situation and painful heart of Jesus, who suffered the tribulations of the cross, and to fulfill the eternal will and dispensational purpose as in the life of Jesus, you must become sons and daughter who can call out &#8220;Father&#8221; to God, even if you are alone. You have to be there with the Lord of ordeals and the Lord of resurrection who is embarking upon a new beginning.</p>
<p>Jesus, who resurrected three days after he passed away on the cross, was a miserable person. Although for three years he had shared all joys and sorrows with them and, with an earnest heart, had told them he would resurrect three days after his death, his disciples forgot these words and disappeared. When Jesus was resurrected, there was not even one disciple who stood guard next to his tomb. Only enemies, the Roman soldiers, were guarding the place. How could this be! Today there are many instances wherein Christianity is not guarding the tomb of Jesus. Enemies, like the Roman soldiers, are guarding it.</p>
<p>Is there no group on earth who can encircle the Roman soldiers and long for the tomb of Jesus? Even though there were no such people then, among us, the believers, there must emerge many such people.</p>
<p>Who are the ones who could meet the resurrected Jesus? Those who let Jesus die, those who lost Jesus and scattered everywhere to wander according to their will could not meet Jesus.</p>
<p>After his death, who was the person who went in search for Jesus without eating for three days? Who was groping in darkness not knowing where to rest his body? The disciples of Jesus should have become this kind of people more than anyone else. However, the three disciples that Jesus loved the most, Peter, James and John, all returned home. The ones who met Jesus first were the women who searched for Jesus&#8217; tomb before dawn. They were Mary Magdalene; Mary, mother of James; and Salome.</p>
<p>They were longing for Jesus, who had passed away as a traitor of the people and the nation. Shedding tears for three days and unable to bear it any longer, they came searching for him. They were the first ones to meet the resurrected Jesus. This shows in what direction and how the believers of the last days must act.</p>
<h3 align="center">The Mind-Set Which Can Partake<br />
in the Glory of the Lord</h3>
<p>You must understand that now is the last days when you must go in desperate search for the tomb of Jesus. The women who were desperately searching for the tomb met the resurrected Lord in place of the Israelite people, who should have met the resurrected Lord first. Today when the resurrected Lord comes on the world level, the ones who can meet the Lord first are those who do not sleep and rest in spite of their desire, who shed tears for heaven while wandering through the mountains and hills with an unsettled heart that cannot be expressed.</p>
<p>The apostles did not even mourn over the death of Jesus on the cross. Yet unexpectedly, the three women who were not even apostles mourned over the death of Jesus, shed tears of sympathy and went in search of his tomb. These actions allowed them to meet the Lord of resurrection before the others. In the same way, in the last days, the same phenomena will take place.</p>
<p>If you transcend your life and live a life of anxiety, unrest and lack of sleep for the sake of the lives of your people and humanity, then the Lord of glory who is coming to this world again will surely come after you. You will be entitled to the glory of receiving the Lord when you are not even aware of it. You have to understand that such a time is nearing.</p>
<p>To whom did Jesus appear next? He appeared before the two people who were heading towards Emmaus. They were not apostles. They were in Jerusalem when the three women were testifying to the resurrected Jesus, and they talked about the death of Jesus in torment on their way to Emmaus, because they sympathized with the situation of Jesus. They were able to connect with his sad heart more than anyone else. This is the reason that Jesus appeared before them. The reason Jesus appeared before them was to have them testify before the apostles about the resurrection of Jesus.</p>
<p>If you want to usher in the new day of glory, the new ideal garden on the world level, then you must have a sincere concern for the distressed heart of Jesus, the mournful life of Jesus. With a painful heart, you must struggle to go toward heaven. Yet without carrying these things out, without having deep thoughts, are there any who wish for the glory of the Lord? If there are, then that person is none other than the antichrist and the false prophet.</p>
<p>Who would have known that the apostles would stand in the position of the antichrist before Jesus? Who would have known that the chosen Israelite people and Judaism would become the antichrist? We must be concerned about this in the last days, too. You must reflect on yourself whether you stand in the position of the antichrist. This is not the time to reproach others or interfere with the affairs of others. The problem lies with you yourselves. The denominations are not the problem. You must worry about the fact that you might become Satan in the last days. Until now, people who found problems in others have all lost themselves in the course of history.</p>
<p>In the new ideal Garden of Eden, do you want to greet the glorious resurrection the whole universe desires? You must then feel the heart of Jesus and, while shedding tears, share the responsibility. Only this kind of people can receive the glorious resurrection.</p>
<p>Now is the time when the last days are approaching. People who have reached a certain realm of the spirit feel uneasy. They do not feel happy even when they have received grace. They do not feel satisfied even when they have experienced the miracle of the fire. Therefore, people want to run away from the churches. No matter how many fences are put around the churches, they cannot keep people from leaving. This is a difficult time when you must find yourself, in spite of these kinds of circumstances.</p>
<p>When there emerge the true sons and daughters who can represent the church, the people, the world and the cosmos, the maneuverings of Satan who is trying to cause division will all be undermined. You must become the victors in the historical course with these qualifications. You must take responsibility even for the sins of criminals and act in place of Jesus when he was praying alone in the garden of Gethsemane. If you can do this, then even if the path that you travel is the path of death, as long as you keep to it, you can be resurrected.</p>
<p>However, those who dodge hardships and choose the comfortable path for their own benefit, then even if they believe that the road they are walking is the path of resurrection, eventually they will arrive at death. You have to keep this in mind.</p>
<h3 align="center">The Life of the Living Sacrifice Offered to God</h3>
<p>You can usher in the glorious day of resurrection for which God has been hoping for 6,000 years and enjoy eternal happiness only when you set the victorious condition of offering yourself to God, not as dead sacrifice, but as a living sacrifice to fulfill the will of God.</p>
<p>Moreover, when you are offered as the living sacrifice before God, who has been exerting Himself for 6,000 years, your spirit and physical selves will be resurrected. When this takes place, you can accomplish the beautiful task of bringing to a conclusion the ordeals and sorrows of God, who has felt bitterness toward Satan for 6,000 years. You can boast before all things of the universe or before Satan or before the many millions of believers or the heavenly soldiers and angels. You can enter the eternal ideal garden to live in glory for eternity. I hope that you cherish this in your heart.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html" title="Permalink to LET US BECOME PEOPLE WHO PARTICIPATE IN THE GLORY OF THE LORD" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html" rel="prev"><span class="meta-nav">&laquo;</span> WE WHO ARE SEARCHING FOR THE HOMELAND, THE GARDEN OF EDEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html" rel="next">LET US BE STRONG AND BOLD AND RESTORE THE LOST LAND <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,253 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME THE BRIDES WHO RECLAIM WHAT WAS LOST TO JESUS &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-861 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-861" class="post-861 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME THE BRIDES WHO RECLAIM WHAT WAS LOST TO JESUS</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:19:21+01:00"> <a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:19:31+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 4, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>John 12:44-50</em></p>
<p style="text-align: center;"><em><span id="en-NIV-26625" class="text John-12-44"><sup class="versenum">44 </sup>Then Jesus cried out, <span class="woj">“Whoever believes in me does not believe in me only, but in the one who sent me.</span></span> <span id="en-NIV-26626" class="text John-12-45"><span class="woj"><sup class="versenum">45 </sup>The one who looks at me is seeing the one who sent me.</span></span> <span id="en-NIV-26627" class="text John-12-46"><span class="woj"><sup class="versenum">46 </sup>I have come into the world as a light, so that no one who believes in me should stay in darkness.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26628" class="text John-12-47"><span class="woj"><sup class="versenum">47 </sup>“If anyone hears my words but does not keep them, I do not judge that person. For I did not come to judge the world, but to save the world.</span></span> <span id="en-NIV-26629" class="text John-12-48"><span class="woj"><sup class="versenum">48 </sup>There is a judge for the one who rejects me and does not accept my words; the very words I have spoken will condemn them at the last day.</span></span> <span id="en-NIV-26630" class="text John-12-49"><span class="woj"><sup class="versenum">49 </sup>For I did not speak on my own, but the Father who sent me commanded me to say all that I have spoken.</span></span> <span id="en-NIV-26631" class="text John-12-50"><span class="woj"><sup class="versenum">50 </sup>I know that his command leads to eternal life. So whatever I say is just what the Father has told me to say.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father, we offer sincere gratitude to the Father, who has been protecting us until now. We know that this day in particular is a day we must cherish in our memory.</p>
<p>Father of love! We sincerely hope and wish that You allow this to be a moment when we can remember that day of the past. Reflecting back on the loyal heart of that time, let us examine in what state we find ourselves and to what extent we have returned glory to the Father during the past week.</p>
<p>We sincerely thank the Father who has called upon us first from among many people and who sought us out first among this pitiful people. Father, we earnestly wish You will allow us to understand how grave is the responsibility entrusted to us, who lack so much.</p>
<p>The Father knows that the purpose we seek and what we are trying to seize is not for the sake of some earthly desire. Rather, it is for the sake of alleviating the grief of the Father. Therefore, please guide us not to forsake this will and retreat. Furthermore, Father, we sincerely wish that You permit us to become the children who can raise high the Father&#8217;s signal light of victory to guide the thirty million people to the love of the Father. In this way, please allow this 3,000-li peninsula to become the garden that can be embraced inside the Father&#8217;s bosom of love.</p>
<p>Father of love! We have come together today in hope of going nearer to the Father. Please allow us to repent before the Father for all our inadequacies in this moment. Let us cleanse all our iniquities before the Father and obey the will that the Father has permitted according to the directions given this hour. We offer all the words in the name of the Lord. Amen.</p></blockquote>
<p>Today I will speak briefly on the topic, &#8220;Let Us Become the Brides Who Reclaim What Was Lost to Jesus.&#8221;</p>
<h3 align="center">Jesus, Who Was Rejected on the Earth</h3>
<p>You know very well that although many people believe in Jesus and welcome him now, calling him Christ and Lord, he did not enjoy that same glory at the time he came to the earth. Of course, it is not the case for those of us who believe today. Yet among the people of that time, no one believed that the words Jesus left behind were the words of Heaven. There were none who believed those words could substitute for their lives.</p>
<p>Although Jesus came for the sake of the earth, he was not welcomed by the people on earth. You have to understand that there was no one who sincerely welcomed him on behalf of individuals nor on behalf of families.</p>
<p>Although Jesus lived thirty years in the family of Joseph and Mary, everyone in that family was ignorant of his heart, his cherished hopes and his life and task. Not only that, there was no one who deeply understood the words of Jesus and who received him as the Christ. On the contrary, they betrayed and abandoned him. Such was the family of Jesus.</p>
<p>Jesus had the dispensational mission to rectify the individual and the family through his life and words. Yet among the chosen people at that time, there was no one who felt Jesus&#8217; mission as his own.</p>
<p>Even though all aspects of the life of Jesus, seeing, listening, talking, acting and working, were carried out on this ignorant earth, his life was not lived only for the sake of the people on earth. He lived for the sake of the new will of God, which people did not know about.</p>
<p>Moreover, when Jesus could not realize his will in the family, he hoped that his will would be proclaimed through the society or the religious groups. Nonetheless, Jesus was not welcomed by Judaism or the people of Israel. Not only that, the words Jesus spoke were rejected. His life, as well as all the works that he performed, were rejected.</p>
<p>Accordingly, you have to learn to fathom the heart of Jesus, who was abandoned. What great loneliness he felt and what great pain left its scars in his heart. If you become ignorant of the agonies of Jesus, you will never emerge as the one who understands the life, ideology, works and words of Jesus, who bore responsibility for the 4,000-year history.</p>
<p>Today we understand a little bit about this situation of Jesus through the verses in the Bible, but we understand only with our heads. Moreover, we understand merely by listening with our ears. However, this is not enough. When Jesus was spreading the words of truth to the people of Israel in the past, they also merely listened with their ears and understood with their heads. Because they could not feel and experience his words in their flesh and their actual lives, ironically, it facilitated Jesus&#8217; path to the crucifixion. For this reason, you have to clearly know that you should not listen only with your ears nor comprehend only with your heads.</p>
<p>What must we do today? While we understand the words we hear in our heads, we must also learn to comprehend them in our hearts and put them into action. However, at that time, until Jesus passed through the path of death on the cross, not even one person appeared who comprehended Jesus&#8217; words in their heart and put them into action.</p>
<p>Among the Israelite people, Judaism and the disciples with whom Jesus spent three years of sharing joys and sorrows, whom he taught with all his heart and soul, there did not appear even one such person. All of them fell victim to faithlessness. Although Jesus poured out all of his heart and energy, teaching them about the situation of God through dreams and with such words as, &#8220;Those who have seen me have seen God,&#8221; the disciples whom Jesus loved did not understand Jesus&#8217; situation. There was no one who understood the words in their heads, felt them in their hearts, and put them into practice through their bodies.</p>
<h3 align="center">The Qualifications of the Bride of Jesus<br />
and Her Mission</h3>
<p>What is our responsibility during this time when we have arrived at the Last Days? We must restore all the ideologies of Jesus which were lost, bring victory in the conflict with all the sins of this earth, and construct the world of the Kingdom of Heaven. We must obtain the qualifications of a bride to receive Jesus as the bridegroom.</p>
<p>You are not just to listen to the situation of Jesus and be aware of it. You are not to just realize it in your mind and know it. You are to feel it in your heart and experience it through your body. Therefore, you have to understand that contained within the words of Jesus is the situation of not having been able to fully unveil the will of the Father before the people of that time. The infinitely sorrowful heart that could not fully reveal the secrets of the heavenly principles was contained within his words. If you are ignorant of this situation and heart of Jesus, then you will not be able to genuinely understand the words of Jesus, the life of Jesus who lived for the sake of establishing those words, and the works of Jesus, who strove hard to save all the people of this earth.</p>
<p>There was an infinite gap between the heart of Jesus and the hearts of those who were dealing with him. Jesus could not speak the words that lay deep inside his heart. Thus, he merely spoke words of advice to awaken the ignorant people.</p>
<p>What then is the content of the words Jesus spoke at that time? They were words of advice for those who tried to become the children of Heaven, even though they were living in the satanic world, in the evil land, in the world of enemies. They were the words whose content showed the way they could avoid the tests of the satanic world and bring victory. To put it another way, Jesus left behind a foundation based upon which all people could abide by his words in the satanic world and lead their lives while representing his heart.</p>
<p>Hence, the ultimate mission Jesus left behind for us is contained in the words, &#8220;You are my bride.&#8221; At that time, Jesus could not speak directly, even to his beloved disciples. Instead, he spoke from the position of making a promise for the future. You have to understand this heart of Jesus.</p>
<p>Centering on the will that Heaven entrusted to him, Jesus&#8217; heart of love toward his disciples, the Israelites and Judaism remained unchanged. However, because they were ignorant people, an ignorant religious group and ignorant disciples, Jesus alone took on all the arrows as the spearhead in the conflict with Satan. To pioneer a path for their survival, he walked a course of ordeals. In other words, you have to clearly understand that Jesus was a sorrowful person who did not live in an environment in which he could frankly reveal the heart deep inside his mind, the ideology of the bride and bridegroom of Heaven.</p>
<p>As Jesus was leaving, he spoke the words to us on the earth, &#8220;You are my bride&#8221; as the target of hope that could usher in the new day of joy. Yet what happened to that ideology of the bride? Until now, there has been no one who, during the course of thousands of years of history, won the victory in the bitter conflict with Satan and stood in the position of Jesus&#8217; bride. Accordingly, you today must establish the ideology of the bride which was not established by the chosen people of Israel and the beloved disciples 2,000 years ago. You must learn to deal with the heart of Jesus on your own accord.</p>
<p>From what position did Jesus speak his words? His words were left behind to help the people, who believed in him as the bridegroom, develop the real qualifications of a bride and be connected to his heartbreaking situation. Therefore, we today must fulfill the real meaning of the words Jesus gave us. We must rectify the words of the bridegroom by becoming the bride Jesus wants, and reach the position where we can experience the internal heart that Jesus felt. You have to understand that if no one reaches this state, then the purpose of the words Jesus spoke throughout his thirty years of life cannot be fulfilled.</p>
<h3 align="center">The Situation of Jesus Who Walked the<br />
Course of Public Life</h3>
<p>What was the situation when Jesus was spreading the words of truth on this earth? The people opposed Jesus&#8217; words rather than welcoming them; furthermore, they opposed him. Thus, you today must be able to fathom the internal heart of Jesus, who spoke for the sake of his persecutors, even in that situation. You must learn to feel the mind of Jesus, who is the bridegroom of all people.</p>
<p>Moreover, you must experience the internal heart Jesus manifested as he was speaking 2,000 years ago, bringing yourselves to tears. We must go one step further and become the people who can comfort him. By doing so, we must become the faithful believers who welcome the words that were rejected at that time. We must realize the purpose of the words of Jesus on the earth without fail.</p>
<p>The words of Jesus the bridegroom have been conveyed to us until now, across countless crises of history. Today, when we have arrived at the Last Days, how should we relate with the words? You are not to understand those words only with your heads, but also with your minds and bodies.</p>
<p>Moreover, you have to understand that, at the same time Jesus&#8217; words were rejected, the sacrificial course of the thirty years of his life was also forsaken. In other words, you have to understand that, although it is true that the words of Jesus were abandoned, Jesus himself was also abandoned. As a result, the thirty years of his life were rejected.</p>
<p>Today when you are to become the brides of Jesus, what must you do? You should be able to claim back, through your own self, the thirty years of his life course, which were abandoned.</p>
<p>Although Jesus lived in the family of Joseph for thirty years, there was no one who welcomed what he was doing. He did not live in an environment where he was free to visit anywhere he wished. There was an enormous gap between the life he led and his will and words. Because he could not find even one person with whom he could share all of his situation, Jesus could not speak all the words he wanted. Instead, he silently carried on with his life while doing the work of a carpenter.</p>
<p>Moreover, Jesus was the central hero who could fulfill the will that God had tried to accomplish by sending numerous prophets. In other words, Jesus was the center of the people and the center of the religion. Furthermore, he was not only the center of the individual, he was also the center who represented the whole.</p>
<p>Yet Jesus was not only the master who represents everything on the earth. He also understood that he had to dominate the spirit world. As all of these things were undermined, he led a more and more sorrowful life. As one can see, the responsibility for Jesus losing his life rests with the Israelites of the past, Judaism, Joseph&#8217;s family, John the Baptist and the beloved disciples of Jesus.</p>
<p>You who have learned this fact, what must you do? You should be able to comfort Jesus, who is returning as the hopeful bridegroom of all people on behalf of the world. He comes on behalf of the people, on behalf of the countless religious groups, on behalf of the numerous families today, and on behalf of his beloved disciples.</p>
<p>Moreover, you have to realize that as God has been working with this earth through the Holy Spirit, He has been longing for the appearance of someone who exerts all of himself to feel the anguished heart that Jesus felt deep in his bones and flesh.</p>
<h3 align="center">The Faithful Believers of the Last Days<br />
Who must Become the Representatives of Jesus</h3>
<p>To spread the words of the new gospel, Jesus shouldered the worries and difficulties of the Israelites, even as he suffered faithlessness and persecution wherever he went. However, there was not even one person, at that time, who considered the words and works of Jesus as his own. Jesus single-handedly shouldered all the worries of the people. This is the reason you today must cleanse all the sins that the chosen people committed by abandoning the words and work of Jesus. You must establish the ideology of Jesus on the earth. Moreover, you must find and rectify the ideology of Jesus, who tried to become the friend of all created things on behalf of the will of Heaven.</p>
<p>When we examine this from the biblical perspective, what level of truth did Jesus come to the earth with? Due to the faithlessness of the people of Israel, Jesus passed away without being able to manifest the entire, eternal ideal of God. What then is the ideal of Jesus? His ideal is to realize the one nation, one world and one ideal garden by joining Heaven and earth together. However, we have to understand that, indeed, this is not an easy thing.</p>
<p>If there is a nation, then there must be one national ideology. Moreover, there will also be political institutions whose purpose is to govern the nation. There are some policies. Furthermore, there is some official procedure, based upon which the policies are set. We can understand that, as a result of this, all citizens can lead their particular lives centering on those official guidelines.</p>
<p>You must understand that in order for a nation to establish a national ideology, it must pass through a complicated process. The individuals who are to achieve the great tasks of the heavenly principles have the responsibility to claim back the words, the life and the works of Jesus. However, you should know that because there is no one has completed this responsibility, the ideology of Jesus could not be manifested on the earth. This has caused great sorrow for God. Furthermore, you must take after the examples of the people who demonstrated loyalty toward Heaven for the purpose of constructing the new Heaven and earth, in other words, to construct the Kingdom of Heaven.</p>
<p>Among the words that Jesus spoke to his beloved disciples, the most important are &#8220;You are my bride.&#8221; In other words, when he came to the earth, Jesus implanted the ideology of the bride and bridegroom.</p>
<p>For this reason, today you must pass through the position of the bride and bridegroom. After that, you must transcend your families, your society, and your nation to link up with the world and reach a state of oneness with the ideology of the Father, the Creator, who represents the heavenly principles. You have to clearly understand that if you have some inadequacies in the course of your advancement, you will cause a corresponding amount of sorrow for Jesus.</p>
<p>What then must the faithful believers who are living in the Last Days do today? They must restore the words that can connect them with the heart of Jesus. At the same time, they must restore the ideology of his life and works. By doing so, they must become the people who can step beyond the family to be linked with the society, the nation, the world and the whole universe.</p>
<p>Because Jesus should have secured the ideology of Heaven and because God tried to elevate Jesus as the master of the Kingdom of Heaven, Jesus took responsibility for the will of God and introduced the new ideology to construct the Kingdom of Heaven on this earth.</p>
<p>To inherit this mission, Jesus turned away from all his personal paths and walked this path, representing the one religion and God. You must keep in mind that this is the reason he single handedly walked a lonely path and left behind words of lament and wistfulness toward human beings.</p>
<h3 align="center">The Life of Actualizing the Words of Jesus</h3>
<p>To restore the works of Jesus and construct the Kingdom of Heaven on this earth, what must you who are living in the Last Days do? You must, first, find those words which are the ideology of Jesus. Through your life, you must correct the ideology of Jesus. In your daily life, you must now find and put into practice the works of Jesus, which have been abandoned until now.</p>
<p>By doing so, you must become the people who, passing through the forms of the individual, the family and the religious group, reach the nation and the world. You must establish the relationship of one body wherein Jesus moves when God moves, and the earth moves with Jesus. This kind of relationship cannot be forged by the power of Jesus and the Holy Spirit alone. Therefore, the words of Jesus can prevent tribulation within the evil world, the environment where one is subjected to the invasion of Satan.</p>
<p>What then must you understand now? You must understand that Jesus did not fully convey all the words he should have spoken to the people on earth. He passed away without realizing the ideal of commanding all people after completing his given tasks. Only when you become the people who know how to feel the internal sorrowful situation of Jesus, who had to leave this earth without accomplishing everything, can you obtain the qualifications of a bride.</p>
<p>Just as a bride attends the bridegroom, there must come into fulfillment the eternal relationship of oneness in which she must consider the hope of the bridegroom as her own. The life of the bridegroom must become her own life, the words of the bridegroom must become her own words, and the works of the bridegroom must become her own works. In order for you to become the brides of Jesus today, you must obtain these qualifications.</p>
<p>Therefore, today you must feel and experience the path Jesus walked in your actual daily life. Furthermore, even before faithless people, you must convey the words and will of Jesus. The more you come to realize the desperate and sincere heart of Jesus toward the will of God and the more you become one with Jesus, the more you must become one with your brothers, in greater humility. When this is done, you will be able to understand the religious heroes who led their lives toward the path that humans must walk, the true path of life.</p>
<p>What then would Jesus want from the faithful believers who are living in the Last Days today? Jesus wants them to become the brides who can become his objects. Yet what kind of bride is that? God is not seeking a bride who merely dwells in the family or only in the religion of Judaism. God is seeking someone who not only can represent the chosen Israelites and that nation as well as the world, but who can represent Heaven and earth and shoulder the responsibility for the works of God and bring them to pass. This is the bride with whom God can consult for the sake of the fulfillment of His will according to the public laws. God is seeking this kind of bride.</p>
<p>Now while you are leading your life of faith, you must reflect on the extent to which you have obtained the qualifications of the bride for which Jesus longs. Have you searched for the works of Jesus in your life? Have you really been making an effort to materialize the ideology of Jesus? In other words, in your words and works, have you made a serious attempt to represent the words and works of Jesus? You have to reflect on this.</p>
<p>By doing so, you must perform actions by which your daily life is connected to the ideology, the life and the work of Jesus at that time. You must also completely inherit the internal agony of Jesus, who had come to the earth in place of Heaven but who lost all of his ideology. Furthermore, you must be able to alleviate that agony. You have to understand, with certainty, that such a mission is given to each and every one of you.</p>
<p>You then must be able to look upon the people and the religions with the sorrowful heart of Jesus, who came to the earth and exerted himself to find one bride. In other words, you must become connected to the heart of Jesus, who lived with a sad and grieving heart, unable to accomplish the will of God. You must strike your unrighteous self with the desperate heart that is reaching out towards goodness. Even if you are fatigued and driven back in the course of conflict, you must develop a genuine sense of bravery to fight on for the sake of fulfilling the will of Heaven.</p>
<p>In other words, you must follow the example of the actual life of Jesus, who stood alone as the spearhead confronting Satan. He did not fear death on the cross. On the contrary, he went beyond the cross to return glory to Heaven. Further, you are not to be content merely to follow the example of the life of Jesus or with becoming triumphant one day in the fight against Satan. You are to become content only after reaching the state where this universe can be eternally governed by the ideology of Jesus, and the glory of Heaven is manifested as Jesus&#8217; glory and your glory. To put it another way, you must only feel content by touching Heaven and Jesus with inspiration. You must bring joy to the Father and usher in the day when the whole universe can rejoice.</p>
<h3 align="center">The Self-Satisfaction We Should Obtain<br />
by Moving Heaven</h3>
<p>What must we find now? First, you must find the self who can represent the four directions of Jesus. By doing so, you must each become an individual who represents the twelve tribes of the past. You must understand clearly what kind of relationship existed between the twelve tribes and Christ, who was the representative of the twelve tribes. You must become the heroes of Heaven, who can accomplish the ideology of Jesus on the earth while sharing with him all of the hardships and joys in any environment.</p>
<p>Moreover, after understanding the grief of Jesus, who represented the family, and understanding the heartbreaking situation of representing the church, you must become united to inherit the last mission. Furthermore, we must create a religion that can represent Israel and the Judaism of that time. We must fulfill all that the faithful believers should have fulfilled on behalf of Heaven. If the believers at that time had nurtured individuals who could represent humanity and who could stand before Satan and if they had formed a people and a world that could have represented the whole of Israel, what more words would Jesus have spoken? Because they did not establish the laws that would guide them to unconditionally obey, submit to, and practice the words of Jesus, you must today claim all of these things back.</p>
<p>Although Jesus came, lived and fought on the earth, when you come to realize that his life came to an end without being able to fulfill even one of the things he purposed to do, you must not be content just to follow the path Jesus walked. You must learn to feel the internal agony of Jesus, the bridegroom, who had to drive his beloved disciples to the path of death.</p>
<p>In addition, you have to keep in mind the historical mistake of making the bridegroom lonely and forcing him to the cross. You must carry on the fight while beholding the one day of hope. To put it another way, you must comprehend the fundamental ideology of Jesus to alleviate the grief and bitterness in his heart. You must learn to materialize the tasks he left undone.</p>
<p>What then must the believers who live in the Last Days do now? They have to become the ones who alleviate the grief of God and Jesus, which is deeply rooted in the 6,000-year history. They must become the brave soldiers of Heaven, who make their way through the path of the cross and the path of thorns. They must step forward to construct the nation of God, the Kingdom of Heaven on this earth, by determining to die and offering their lives.</p>
<p>As God promised to send the Messiah after raising the Israelites through the 4,000-year history, He sent Jesus to the earth. Yet due to the faithlessness of the Israelites and the apostles, Jesus could not speak all he wanted. He could not reveal everything, even to his disciples. We have to understand that Jesus suffered this deep sorrow inside.</p>
<p>You have to understand that such sorrowful grief still remains on the earth. You must feel that it is moving toward your bosom even at this moment. In addition, you have to claim back the words Jesus lost, the ideology of life that was lost, and the ideology of the heavenly principles that were lost. You must fathom the situation of these people who have toiled until now amid hardships. Furthermore, you must not only take on Satan, who is fighting with Jesus, in the same way Jesus took on Satan; you must also take responsibility for the countless lives on this earth today.</p>
<h3 align="center">A Life and Death Battle with Satan,<br />
Who Is Obstructing the Way of the Will</h3>
<p>Where then does the difficult problem, in the course of faith, lie today? The problem is whether we can set certain conditions based upon which we can inherit the internal grief which Jesus could not express and the foundation he laid as he toiled for the sake of the people of that time.</p>
<p>If you, who are living in the Last Days, want to reclaim the lost words of Jesus, you will have to make a firm determination and pledge that you will not fall down, no matter what kind of ordeals and persecutions you face on this earth. At any cost, you will certainly fulfill the will of God on behalf of Jesus.</p>
<p>In the past, Satan tried to kill Jesus and force him to forsake his life. In the same way, when you try to live on behalf of the will of Jesus today, the same kind of environment will unfold before you. To put it another way, just as Jesus&#8217; family, religious group and nation forsook the works of Jesus, the same circumstances will dawn upon you.</p>
<p>You have to understand that it was a disciple of Jesus who sold Jesus to the enemies and put him on the cross, while trying to find a comfortable place for himself. The people were ignorant of the fact that Jesus was the very Messiah God had chosen, and they betrayed and persecuted him. In addition to that, you have to understand that satanic history has not been brought to an end, since the bitter grief of God was engendered due to that faithlessness. Therefore, in your course of faith today, the same phenomena will occur as when the people forsook the words, the works and the life of Jesus Christ.</p>
<p>Accordingly, today Satan is forcing you to stay within the limited realm of the individual level. The will of Jesus is connected to individuals, families, a society, a nation and the world. Satan is blocking your way, so you cannot exceed the limit of the individual realm in the environment of your daily life. For this reason, when you find yourself in a living environment similar to that of the time of Jesus, you must put your life on the line and fight to escape.</p>
<p>Likewise, you should realize that when you try to represent the words of Jesus and fight with Satan, you will suffer difficult situations no one else can understand. Even if you find yourself in that kind of situation, you must overcome it by setting some direct condition which represents the life of Jesus.</p>
<p>What then must you, who have been leading your life of faith centering on the ideology of a bride, do? On behalf of Jesus, you must actualize the ideology revealed through the entire life of Jesus, in other words, the ideology of universal hope. You must unmistakably understand that, when you do that, you can enter the position of the bride of Jesus.</p>
<p>Where are you dwelling today? You must not be stuck in your own individual realm and remain in the environment of lament. You must overcome that kind of environment. Even if your beloved parents and beloved younger brothers, as well as all the people you love, oppose you, you should be able to follow the footsteps of Jesus, who overcame all such opposition. If you cannot do that, you will not be able to be restored as original men, and the existence of the Unification Church today will have no value.</p>
<p>If you understand that the history of the dispensation is proceeding according to these rules and principles, you should join in that path. After entering that path, you must make an effort not to satisfy your own desires, but to live for the sake of the whole.</p>
<p>You should find the words that can replace the lost words of Jesus. You should lead a life that can replace the life of Jesus. Even when the will given to him was not being realized, Jesus did not lose hope about all the authority and power of Heaven and earth God had promised him. You have to learn from this character of Jesus.</p>
<p>Thus, you should learn to thoroughly reflect upon yourself, whether you have become a bride who can always attend the bridegroom Jesus by following in his footsteps. You must reflect upon what kind of environment in which you are living and whether you are crossing some pass. By doing so, after passing through the course of the bloody trail that believers must travel through, you must greet the Lord who is coming again amid glory.</p>
<h3 align="center">The Lord of Glory, Whom We Can Meet<br />
After Crossing the Pass of Hardships</h3>
<p>When the returning Lord appears amid the glory of God, what must you do? If you can meet the returning Lord, that joy must not be limited to you. It must represent eternity or it must be manifested as the joy which represents the unlimited ideology of the Kingdom of Heaven. In other words, even if you momentarily feel that you are not going to find satisfaction in it, you are to go one step further to feel the joy in which you can experience the eternal bliss of having triumphed over Satan, as well as the eternal love of God. Moreover, even when you are feeling the grace, you must feel the grace that is beyond our imagination in the same way Jesus felt it.</p>
<p>Through what kind of process was Jesus able to feel that kind of grace? It was because Jesus severed himself from all things in his life and worried only about the will of God. Moreover, why was Jesus able to behold the glory of resurrection? Jesus was able to live for the sake of God without any change, even when the glory of Heaven and earth, the loyalty of Heaven and earth, and the ideology that no one on earth possessed were all cut off. On account of this, Jesus entered the realm of the direct glory of God and stood in the position where he could forge bonds with human beings on earth.</p>
<p>What then is the joy you feel today? It is surely not for the sake of yourself. This joy is the grace that is instilled into you to give you the strength to fight against the forces of Satan on the earth. For this reason, being grateful to the Father who has given you joy, you have to have the determination to win the battle with Satan in order to offer the song of bliss for having removed the grief of the 6,000 years implanted deep in this earth until now. You must have the determination to rejoice after you have become eternally one with the Father.</p>
<p>Accordingly, this blessing is not the grace that will guide you forever, and it is not only for your sake. This grace is meant to help you fight with and subjugate Satan. Therefore, with the grace you have received, you must not create some conditions of comfort and peace for yourself. Instead, you should begin to liquidate all sins and powers of Satan on this earth. When you can emerge as the victorious children who have completed God&#8217;s purpose of creation on this earth and when you emerge as the ones who have fulfilled all the conditions, it will be to no avail, no matter how much Satan struggles. Moreover, you have to clearly understand that if there is someone who can emerge like this, he will be free no matter where he goes. In every footprint he leaves behind, there will be traces of victory.</p>
<p>Have you felt or realized something after listening to these words today? Have you discovered something? Have you learned something after joining the Unification Church? If these are the words of truth, you must not understand them only in your mind. You must understand them in your mind and, at the same time, understand them in your bosom. You must understand through your mind and your body.</p>
<p>When you comprehend the words in your head, your bosom, your body and your mind, you will have to move toward the fulfillment of the purpose of those words. You will have to fight with Satan. Moreover, you will not be able to curse the Father with your mouth and you will not be able to change your mind and be in a position of betraying Heaven.</p>
<h3 align="center">The Pioneer of the New Heaven and Earth<br />
Who Completes His Responsibility and Marches on until the End</h3>
<p>Furthermore, when you understand the words, through your body and mind, you will feel that countless arrows of Satan are rushing toward you from your surroundings. The more you feel that, the more you will have no choice but to unite with the people who are in the same position as you.</p>
<p>Having done this, you must consider the situation of others as your own situation, the griefs and grudges of others as your own griefs and grudges. That way you can form the living environment of oneness in which people can rely on each other, help each other and begin to build the new Heaven and earth. You have to understand that this kind of person is the pioneer of the new Heaven and earth.</p>
<p>You have to have the mind-set to manifest the grace you have received through your daily life in the practical field and that now you will ward off and overcome any arrows and false charges of Satan. Moreover, when you develop this kind of mind-set, no matter where you go, no matter whom you are dealing with, and even if you are in a lonely position, the heavenly soldiers and angels will always protect your life. Because Jesus had this kind of mind-set, the many thousands of believers in Heaven protected and supported him. If Jesus had not had this mind-set, even he would not have been able to carry on his works and to step forward before the will of the heavenly soldiers, the angels and the Father.</p>
<p>Until today, you have failed to possess this kind of mind-set to create an environment on this earth in which you can live intoxicated in the glorious grace of Heaven. For this reason, until now, God and the angels have been in the background helping humans on the earth, inducing them to move toward this glorious blessing. God has been living in sorrow. Because Jesus possessed this sorrowful heart of God, he tried to create a relationship between humans on the earth and the eternal ideology, based on the conditions of the new laws of the heavenly principles. Yet because of the faithlessness of the people at that time, he died on the cross in bitterness and anguish, unable to realize that will.</p>
<p>What kind of environment then are you in today, you who have searched for this Jesus of the sorrowful death? Even today, the same kind of phenomena, as the betrayal of Jesus&#8217; words and the rejection of Jesus&#8217; works seen in his time, are taking place. In other words, today you are also walking the path that others say is wrong, while being driven away and rejected by all people. Thus, you must cast away the sorrow of being rejected like this and, at any cost, you must make the effort to set the conditions of victory that will bring joy to Heaven and earth. If our gathering is for the sake of fulfilling this kind of will, all of us must become one in body and mind to follow in the footsteps of Jesus.</p>
<p>Although you are suffering the grief of being rejected, forsaken and the sorrow of being abandoned by your former church, you must step over this kind of sadness according to the principles of restoration through indemnity. In other words, the members of the Unification Church must not stop halfway at feeling the heart and will and no longer feel the grief. Instead, you must walk the path that you must travel and cut off the paths that you must cut off. Furthermore, you must be able to participate in the Father&#8217;s glory of resurrection.</p>
<p>If you represent the will that Jesus tried to realize on the earth and set the condition of having completed all of the responsibility for the sake of history and the universe, then Satan, who caused the fall of the human ancestors Adam and Eve, will naturally disappear from this earth. Thus, you must keep in mind that when human beings step over that hill of conflict with Satan on the earth, God will always be with them. You should understand that Jesus dwells inside the realm of the ideology of bride and bridegroom, in the central position representing the world. Satan cannot make accusations about this.</p>
<p>When you emerge as the hero who, acting on behalf of the internal heart of Jesus, passes through Jesus&#8217; ideology of the nation and the world and goes in search for the whole value of restoring Heaven and earth, you will be able to restore all that Jesus lost. As the one who comprehends all the grief he suffered, you will be able to stand up as the one with victorious value.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father! Please forgive us, we who are neither loyal nor filial, for not understanding the heart of the Father who worries about the lonesome ones. Instead, until now we have been making the appeal for You to alleviate our anxiety. Please let us realize that the heart of Heaven is this miserable and anxious, and that we cannot dare to speak about our own situation to the Father.</p>
<p>Father, since this alone is inadequate, Father of love, we sincerely hope that You will allow us to remove the worries and concerns of the Father based on myself. Let us become the sons and daughter who can offer all that we have to the Father during this hour. Father, we are making our best effort to set the valuable conditions toward Heaven, within the sphere of our actual daily lives today. Father, please be with us.</p>
<p>Although we have been inadequate in that we could not be glad about our sacrifices, made for the sake of setting the conditions of Heaven&#8217;s value, from now on, we will become sons and daughters who can be happy even when we are being used limitlessly by the Father. Father, please give permission. We know that even Satan cannot block our footsteps, so beloved Father, we earnestly wish that You help us maintain an unchanging heart today and tomorrow.</p>
<p>Father, please let us understand that to become the bride of Jesus, the bridegroom, we must worry when the bridegroom worries, fight when the bridegroom fights, and dead or alive we must move with the bridegroom. Please raise us to the position of the bride who shares in the joy of the bridegroom. After passing through the course of conflict, they sing the glory of the Father amid the grace of liberation.</p>
<p>We wish that, on account of this, we can reclaim all that was lost. Wishing that the one day when we can sing the glory of the Father in praise and in joy will quickly emerge within the life course, the lives and in the minds of each person who has gathered here, we offer all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html" title="Permalink to LET US BECOME THE BRIDES WHO RECLAIM WHAT WAS LOST TO JESUS" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html" rel="prev"><span class="meta-nav">&laquo;</span> THE PATH, ITS PURPOSE AND ITS VALUE</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html" rel="next">LET US ESTABLISH THE GLORIOUS ORIGINAL HOMELAND <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,258 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME THE CITIZENS WHO TAKE POSSESSION OF THE KINGDOM OF HEAVEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-825 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-825" class="post-825 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME THE CITIZENS WHO TAKE POSSESSION OF THE KINGDOM OF HEAVEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:34:08+01:00"> <a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:34:18+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
June 2, 1957</h3>
<p style="text-align: center;"><em>Matthew 21:33-46 </em></p>
<p style="text-align: center;"><em><span class="text Matt-21-33"><span class="woj"><sup class="versenum">33 </sup>“Listen to another parable: There was a landowner who planted a vineyard. He put a wall around it, dug a winepress in it and built a watchtower. Then he rented the vineyard to some farmers and moved to another place.</span></span> <span id="en-NIV-23861" class="text Matt-21-34"><span class="woj"><sup class="versenum">34 </sup>When the harvest time approached, he sent his servants to the tenants to collect his fruit.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23862" class="text Matt-21-35"><span class="woj"><sup class="versenum">35 </sup>“The tenants seized his servants; they beat one, killed another, and stoned a third.</span></span> <span id="en-NIV-23863" class="text Matt-21-36"><span class="woj"><sup class="versenum">36 </sup>Then he sent other servants to them, more than the first time, and the tenants treated them the same way.</span></span> <span id="en-NIV-23864" class="text Matt-21-37"><span class="woj"><sup class="versenum">37 </sup>Last of all, he sent his son to them. They will respect my son, he said.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23865" class="text Matt-21-38"><span class="woj"><sup class="versenum">38 </sup>“But when the tenants saw the son, they said to each other, This is the heir.Come, lets kill him and take his inheritance.</span></span> <span id="en-NIV-23866" class="text Matt-21-39"><span class="woj"><sup class="versenum">39 </sup>So they took him and threw him out of the vineyard and killed him.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23867" class="text Matt-21-40"><span class="woj"><sup class="versenum">40 </sup>“Therefore, when the owner of the vineyard comes, what will he do to those tenants?”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23868" class="text Matt-21-41"><sup class="versenum">41 </sup>“He will bring those wretches to a wretched end,” they replied, “and he will rent the vineyard to other tenants, who will give him his share of the crop at harvest time.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23869" class="text Matt-21-42"><sup class="versenum">42 </sup>Jesus said to them, <span class="woj">“Have you never read in the Scriptures:</span></span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Matt-21-42"><span class="woj">The stone the builders rejected</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-21-42"><span class="woj">has become the cornerstone;</span></span></span></em><br />
<em><span class="text Matt-21-42"><span class="woj">the Lord has done this,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-21-42"><span class="woj">and it is marvelous in our eyes<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23869a" data-link="[&lt;a href=&quot;#fen-NIV-23869a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+21:33-46#fen-NIV-23869a">a</a>]</sup>?</span></span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-23870" class="text Matt-21-43"><span class="woj"><sup class="versenum">43 </sup>“Therefore I tell you that the kingdom of God will be taken away from you and given to a people who will produce its fruit.</span></span> <span id="en-NIV-23871" class="text Matt-21-44"><span class="woj"><sup class="versenum">44 </sup>Anyone who falls on this stone will be broken to pieces; anyone on whom it falls will be crushed.”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23871b" data-link="[&lt;a href=&quot;#fen-NIV-23871b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+21:33-46#fen-NIV-23871b">b</a>]</sup></span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23872" class="text Matt-21-45"><sup class="versenum">45 </sup>When the chief priests and the Pharisees heard Jesus parables, they knew he was talking about them.</span> <span id="en-NIV-23873" class="text Matt-21-46"><sup class="versenum">46 </sup>They looked for a way to arrest him, but they were afraid of the crowd because the people held that he was a prophet.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Loving Father! We have brought all of our situations before You. You have been guiding us in various ways, so please admit us.</p>
<p>Every time we prostrate ourselves before the holy presence of the solemn Father, we feel that we are inadequate. Therefore, Father of compassion, please govern the entirety of this hour. By constantly dwelling in each of our hearts, allow us to live within the will of God.</p>
<p>Father, we earnestly wish that You will allow us to relinquish our evil minds and to follow and harmonize with the original mind that the heavenly nature seeks. Let us be the sacrifice that will become the root of original nature.</p>
<p>We are exhausted from fighting with the sin of darkness for one week. Father of compassion, please appear and hold onto us. Teach us lessons, and by advising us, guide us to climb over the ridge of death and dash toward a clear goal regarding the will. We earnestly hope that the Father will rejoice about this and be with us.</p>
<p>Beloved Father! Please manage every detail of the many children who have gathered here this hour. Beloved Father, we earnestly hope that the Father will sanctify everything about each of us in this hour. By eliminating all the conditions that You do not want, we pray that You will let us have purified minds and bodies and bring joy to You. Allow us to become a group of the whole who can serve You and bow to You.</p>
<p>Father! We feel awe-stricken before the toilsome will of the Father who has called us. Father, please look down upon us with compassion. Father, we desire with utmost sincerity that only You will become our friend, that only You will believe in us, with the result that You will allow us to become beautiful sons and daughters who can demonstrate our full loyalty before the eternal will.</p>
<p>Father! We have fallen prostrate before the grace of the Father who has strained to gather us like this. Please vividly manifest what You will.</p>
<p>Father, You are working hard to realize the will of the dispensation. We sincerely wish that You will allow us to become lovely sons and daughters who can console Your loneliness; to become sons and daughters who can put everything aside to fight and dash forward only for the sake of the will of the Father.</p>
<p>Please give blessings upon the countless altars that are gathering on behalf of this people today. Please reveal the grace of joy upon all these people and the countless altars that represent these people. May this people relate with the will You have commanded with a single, true heart. By doing so, beloved Father, we hope sincerely that You will allow them, as Your chosen people and Your chosen religious group, to fully accomplish the responsibility entrusted to the 2.4 billion people of the world in the last days. Though we may have all kinds of personal situations, Father, please allow us to report everything to the Father and follow in obedience.</p>
<p>We are trying to offer bows to the Father this hour. Let the Holy Trinity operate over everyone and rule each of their minds and bodies. Father, we earnestly wish that You will not let us be in the position to relate with the will of the Father according to our whims. Please let this be the hour when we can be in harmony before the entire will of the Father through the inspirations of the sacred spirit. Father, please be with the members who are spread out in the countryside at this hour. Please allow us to fulfill the victorious will, the will that the Father has established, as the grace of joy.</p>
<p>We have entrusted everything this hour. Therefore, earnestly hoping that the Holy Trinity will govern us, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>The topic of the sermon that I want to reflect upon with you is <em>&#8220;Let Us Become the Citizens Who Take Possession of the Kingdom of Heaven.&#8221;</em> I will speak briefly on this topic.</p>
<p>You know clearly that for us who are fallen, the world that everyone hopes for is the Kingdom of Heaven. This Kingdom of Heaven is not something only human beings desire. You also know very well that God also yearns for the time of the realization of the Kingdom of Heaven where He can live in joy for eternity, forging the eternal parent-son relationship with all human beings centering on the original love, which was the ideal of creation. Until now, He has been repeating His toilsome works for that goal through the Holy Trinity.</p>
<h3 align="center">The Perfection of the Ideology of the<br />
Kingdom of Heaven and Jesus Christ</h3>
<p>The Kingdom of Heaven we sincerely wish for today is not only the hope of human beings but also the hope of God. Consequently, the ideology that can build this Kingdom of Heaven must pass through the individual level and possess world quality and universal quality to agree with the heavenly principles. Therefore, unless we construct this Kingdom of Heaven on earth, God&#8217;s dispensation of salvation cannot be completed, and the goal of our faith cannot be completed.</p>
<p>Accordingly, God, who has the mission as the Creator who created human beings, must take responsibility and attain this Kingdom of Heaven, and the fallen men also must take responsibility and fulfill it even at the cost of sacrificing everything. When we think about this, although through the long course of history God has been longing for the appearance of one person who can bring to pass this idea of the Kingdom of Heaven and take pride in it on behalf of humanity, but until now, that one person has not emerged on this earth.</p>
<p>Consequently, since the creation of the world until today, the idea of heaven that God is seeking to find through human beings is not to be concluded as one individual ideology. While it is an individual ideology, at the same time, it is a world and universal ideology and the eternal ideology that the all created things are pursuing. You must again take to heart the fact that longing for the time that this ideology can be established, God has been walking the road of patience, toil and suffering for 6,000 years.</p>
<p>Then, how can God and human beings create relations? The relations can be created centering on the ideology of the Kingdom of Heaven. At the level where the Kingdom of Heaven can be constructed, the ideology of human beings and God&#8217;s ideology of creation are achieved.</p>
<p>Therefore, God who has passed through the long 4,000-year history since Adam hoped to establish people at one point and connect them with the whole internal heart and the external ideology of God. Jesus Christ was the person who was established as that central figure. Thus, before sending Jesus Christ to this earth, through John the Baptist He has chosen and raised, God predicted, &#8220;Repent! The Kingdom of Heaven is at hand!&#8221; However, the kingdom can be realized not through John the Baptist but through Jesus Christ.</p>
<p>Hence, on John the Baptist rested the responsibility to unite the whole Israelite people and guide them toward Jesus. However, because John the Baptist did not fulfill that responsibility, the idea of the Kingdom of Heaven that he was crying out did not have anything to do with Jesus. So, the cry of John the Baptist, &#8220;Repent, the Kingdom of Heaven is at hand!&#8221; did not consummate as the idea of the Kingdom of Heaven that only corresponds to that time, but left behind as the idea of the Kingdom of Heaven prophesied through all the people who have the mission of John the Baptist after him no matter which era of history, and as a result, the laborious hands of God continued to be at work.</p>
<p>You also must never forget that during the 2,000 years after Jesus, many prophets have labored hard to introduce God. Although John the Baptist shouted, &#8220;Repent, the Kingdom of Heaven is at hand,&#8221; Jesus Christ who came to actually introduce and manifest that Kingdom of Heaven had to die on the cross. So, after that until today, the ideology of the Kingdom of Heaven which is the center of God and man&#8217;s eternal hope, could not be realized through man on earth and in heaven.</p>
<p>You should understand that the Israelite people losing Jesus Christ ultimately brought the result of losing the idea of the Kingdom of Heaven that John the Baptist predicted. At the same time, they even lost the master of the Kingdom of Heaven who could help the Israelite people overcome the hardships that they encountered horizontally. Therefore, we must claim back the ideology of the Kingdom of Heaven that Jesus lost when he came, and bring it to perfection.</p>
<h3 align="center">The Content of the Ideology of the<br />
Kingdom of Heaven That God Wants</h3>
<p>The Kingdom of Heaven that God wants is not the kingdom built only in the spirit world. The Kingdom of Heaven that God wants is the kingdom built on earth first and then built again in the spirit world. Because, after human beings die, the spirit world that their spirits form and the earthly world cannot be separated, in order for you to develop a victorious substantial body and embody the ideology of the kingdom of heaven, you must be able to stand before the Heavenly principles and stand before humanity and demonstrate the ideology of the Kingdom of Heaven through your sphere of life so that you can be connected to the heavenly laws and human ethics. Furthermore, that ideology of the Kingdom of Heaven must become the individual ideology of the Kingdom of Heaven, and simultaneously, it must become the ideology of the Kingdom of Heaven on the family, society, nation, world and universal level. You should be able to manifest this ideology of the Kingdom of Heaven through yourselves.</p>
<p>The Israelite people could not materialize the ideology of the Kingdom of Heaven because they, not only could not understand, but also did not even listen to the words of John the Baptist, though he cried out in the wilderness, &#8220;Repent, the Kingdom of Heaven is near.&#8221; If today, in this era, there appears a person who announces the ideology of the Kingdom of Heaven, just like the Israelites, you will not be able to hear his words. Not only that, you will stand in the same position as the Israelite people who could not accept the new blessed words of the Kingdom of Heaven of Jesus Christ, who shouted out to the masses as he was being chased from this mountain to that mountain during the three years of public life. Thus, I repeat that if you cannot experience the historical situation of heaven, which can introduce the ideology of the Kingdom of Heaven to all people through the heavenly nature and can announce the new, John-the-Baptist-type ideology through countless denominations, and if you do not become people who can pull the ideology of the Kingdom of Heaven into your sphere of life and live and act according to those words, then you will never be able to realize the hopeful ideology of the Kingdom of Heaven, which God seeks and desires.</p>
<p>The Kingdom of Heaven that human beings have known until now is not the Kingdom of Heaven of the ideals of creation that God has sought and wanted. When we trace back and examine the course of restoration centered on Jesus for the 2,000 years from Jesus, until today, during which the work was done to build the spiritual Kingdom of Heaven, what Jesus could construct was not the Kingdom of Heaven but Paradise.</p>
<p>So, the ideal of the Kingdom of Heaven that people believe in Jesus hope for also is Paradise. Therefore, the ideals of the Kingdom of Heaven which human beings have today are not the ideal, original Kingdom of Heaven that God and human beings can both accept, but the conditional Kingdom of Heaven while moving toward the construction of the Kingdom of Heaven of God. Therefore, the noun Paradise came into being.</p>
<p>Therefore, if you have truly received the calling as the elite troops of heaven who are to fulfill Jesus&#8217; ideals of the Kingdom of Heaven, then you are not to let Jesus merely remain as the master of Paradise, but by combining all the spirits of the spirit world and all people who live on earth and by opening the door to Paradise, you are to make it possible for Jesus Christ to also be the master of the Kingdom of Heaven. Similarly, the responsibility to elevate Jesus as the master of the Kingdom of Heaven does not rest on God, or on Jesus Christ and the Holy Spirit, but on all people of the earth. However, unfortunately, human beings are not aware of this fact.</p>
<p>When we think about this, for the people who are walking the course of restoration, the path that they are walking is far away and difficult. Even if there are other sorrowful paths that human beings are walking on, none of them can be as sad. The reason is that this path is the road of restoration on which we must repeat the course of the conflict of the prophets and sages while we experience their sorrow as our own. Unless we live to cross over all the difficult courses that the countless prophets and sages walked, even if they are perilously high and steep mountains or the path of cross or of Golgotha that they climbed over after they came to the earth, we cannot follow the footsteps of Jesus.</p>
<p>The road that you are traveling, your life of faith, is not easy. This is because your life cannot be only for your own sake. You live for the sake of the spirits who are dwelling in Paradise, and furthermore, you have the mission to accomplish the Kingdom of Heaven on earth. Though you might have suffered many sorrows and have made many pledges for the sake of your own life, if it was only for your own living, then you can never achieve even your personal will.</p>
<p>This earth will never leave uninterrupted the road that you are walking alone. The reason is that this earth became a land dominated by Satan due to the fall. So, Satan who has been confronting God for 6,000 years is blocking your path.</p>
<h3 align="center">The Responsibility of the Believers</h3>
<p>What is the road that we must walk in the midst of these difficulties? It is the road of climbing over the perilous ridge of Golgotha and building the Kingdom of Heaven by liberating this earth that Satan is dominating. However, to walk this path, just like the world history, in which all of humanity, constantly hoping for this road, traveled the course of enormous indemnity in the actual historical course, you must also walk the road of indemnity. So if we are the chosen people, we must make a strong determination.</p>
<p>Even if you desire the Kingdom of Heaven that God wants, and even if you have taken responsibility for and are working toward the building of that Heavenly Kingdom by offering your life, if you think like John the Baptist, you will perish in the end, in the same way that John the Baptist ultimately met his doom, despite the fact that during some thirty-odd years of his life he tantalizingly proclaimed the ideology of the Kingdom of Heaven. John the Baptist failed in the road that he walked to cherish hope and bring that to fruition because he was centered on himself. If you do not wish to follow the footsteps of this precedent, then your actions should not be as selfish.</p>
<p>In you remains the character of Satan, which dominates your daily life all your days and opposes the road of heaven, preventing you from walking the path of the ideal that heaven desires and causing you to live only for your own sake. You must feel this deep into your bone marrow.</p>
<p>If we believe that the road to the realization of the Kingdom of Heaven is the universally fateful road that we must pursue, the fateful will of Heavenly laws that remains as the ideal of the creation, then we must not think of this path only as our own. God has taken responsibility for the historic fate and has been preparing for the fate of the eternal heavenly principles. What this means is that He is trying to connect you with the internal heart of God and the heart of Jesus and the Holy Spirit, and to create the bond with the historical exertion of the countless prophets and sages. God&#8217;s will toward you is that, on this foundation, by letting you lay the foundation that will allow the many prophets who had lived in the past to respond to your outcry, as well as allow Jesus and the Holy Spirit to welcome it. God, who has been toiling for 6,000 years to help, can enable you to win in the battle with Satan. Thus, you who are called before the will of God first must realize by yourself the gravity of your responsibility and the mission and complete your responsibility.</p>
<p>If you do not take responsibility for these things in this last days, then who will take bear the historical sorrow of God, Jesus and the Holy Spirit? Human beings must bear the responsibility for the heartbreaking situation of God.</p>
<p>For this undertaking, God has chosen this pitiful people among many peoples of the world. However, we must recall how, by virtue of the faithlessness of the Israelite people who did not endorse the will of Jesus at his time, a new beginning had to be made in the foreign lands centering on Christianity.</p>
<p>Now, the era of confusion on the world scale is also approaching us. The era of persecution and opposition is nearing us. We are also confronted with the time when all religions of the world will be brought to consummation. In such times, we must race with all of our strength to fulfill the mission of the world history bestowed upon these people.</p>
<p>From now on, people of religious faith will directly confront terror because of the ideological conflict. Moreover, Satan who has been opposing God for 6,000 years will attack you in his final fierce struggle. You must understand that Satan and evil spirits who are attempting at your life are always on your side.</p>
<p>Their invasion cannot be warded off with your own power alone. In order for you to win in this fight with them and become the victor representing history, the present and the future, you must understand the true identity of Satan who has been dominating history and ruling over the present reality, and the intentions of Satan who is relating with the future. To do that, you must walk the same path as Jesus who climbed the mountain by himself and prayed on behalf of the Israelite people, and offering his life fought with Satan who was rebelling against the will of God, and set the standard of tribulation that represents the history, the present reality and the future. In your individual course, such a pass of ordeals still lies ahead.</p>
<p>We who must be in this position of sacrifice have the responsibility to alleviate our own resentment and also to alleviate the bitter grief of God in the place of Christ. We also have the responsibility to fulfill the wishes of the many prophets by achieving the purpose for which Christ came to the earth. By completing this responsibility of ours we can bring happiness to them, and when we manifest such accomplishments before the Creator of heaven, God, and before all created things on earth and before Satan, we can break off from the realm of Satan&#8217;s influence of the long history and create the environment where we can form harmony within the heavenly principles.</p>
<h3 align="center">The Value of Individuals Who Can Realize<br />
the Kingdom of Heaven</h3>
<p>So, if we cannot find the Kingdom of Heaven, the foundation of victory where we can rest for eternity, then God and Jesus that we have been believing in, or the shepherd and angels who are following cannot escape from the suffering caused by Satan. You who are connected to heaven must understand what kind of person you were raised as and what kind of mission rests in you.</p>
<p>We have infinite Heavenly value that allows us to stand before God. Therefore, representing human beings and all things, you must develop the one victorious ideology of the heavenly kingdom. After inheriting the many internal agonies of God, who has been exerting himself for 6,000 years, and by inheriting the agony of Jesus and the Holy Spirit, you are to become the victor who can overcome all historical sufferings. God has been searching for this kind of victor for 6,000 years. Therefore, if you do not become this kind of victor, then you cannot materialize the ideology of the kingdom of heaven that God is trying to grant you.</p>
<p>If today on this land of deep resentment, someone can establish the ideology of the Heavenly Kingdom on behalf of Heaven, earth and human beings, then he will become a precious person who brings to fruition the entire purpose of the exertions of God, Jesus, the Holy Spirit, and the countless prophets and believers, and represent them. This precious person is indeed the one who can save countless ancestors who betrayed God, save from sin the countless humans who are living in the world of sin at the present, and at the same time build God&#8217;s eternal Kingdom of Heaven.</p>
<p>The Kingdom of God that human beings have been seeking by transcending history, the Kingdom of Heaven that God hoped to build by sending Jesus to this earthE Human beings of the future hope for the emergence of the one precious person who can fully manifest that kingdom on this earth, while God, Jesus, the Holy Spirit and countless prophets and believers have been at strenuous work for the sake of the appearance of that valuable person. If that person does appear on this earth, then God will bear the responsibility to eternally protect that person. This is the principle. Centering on that person, eternal nation and world must be formed on this earth.</p>
<p>We pitiable Korean people. When we look back, our people do not possess anything. There is nothing of which to be proud. We do not have anything valuable of which we can boast to the world.</p>
<p>However, if we transcend the nation and the people and exert ourselves for the sake of the countless humanity, then the Kingdom of Heaven will not first be realized in America, England or some other nation, but, despite the fact that we are pitiful people, we can go before God and before anyone else. We can claim the Heavenly Kingdom as our own. When this takes place, then the many people who are searching for heaven will not be able to go toward God without going through this people.</p>
<p>Then, what kind of mission and role must we fulfill to bring to pass this Kingdom of Heaven? We must make the effort to realize through us the Kingdom of Heaven, for which throughout the long history until now, people have been crying out, &#8220;Kingdom of Heaven, please dawn upon us!&#8221; even when they were being trampled upon and being torn apart while passing through the road of conflict, the road of death.</p>
<p>If that Heaven is realized on the individual level, in other words, if the individual Kingdom of Heaven in which Father can dwell is actualized, then Heaven must be realized also on the family level. Furthermore, it must be expanded on the society, nation, world and universal levels. You must feel the sense of responsibility to accomplish this Kingdom of Heaven first.</p>
<p>Although many believers and prophets have come and gone in the history until today, God has not been able to fully reveal his internal situation to human beings through them. However, if there emerges a person who can fully divulge the internal situation of God and possess the key to the treasure chest inside the heavenly palace in the dead center of the Kingdom of Heaven, then because of him, God cannot but dwell on this earth.</p>
<h3 align="center">Jesus&#8217; Life as a Filial Son of God</h3>
<p>You who have gathered here, you who have stepped forward without fear for life and death, ready for the road of troubles, the road of the cross, you who have come in search for the situation of God that could not be told to human beings for 6,000 long years! Have you really come to become filial sons and daughters of God? Have you come to become loyal subjects and women of fidelity? If you have come forward in this path of the will to become that kind of person, then the problem is what you have sought until now, what you have felt, and what you have manifested to God. Everything is brought to conclusion here. When we look from this position, clearly you have to all become the heirs of Jesus Christ. Even if there is a center on this earth, there is nothing that is more central than Jesus and even in enduring through a difficult environment, there is no one who persevered through an environment more difficult than that of Jesus.</p>
<p>Because of human beings, even as he was crossing the difficult hill of death, Jesus prayed, &#8220;Father, please do not let their sins fall upon them!&#8221; This road is the solitary path of Jesus which no one else could travel.</p>
<p>When we make the association with the road that Jesus walked on, we must realize it was clearly not for the sake of his own self. Furthermore, Jesus did not try to relate with God&#8217;s will based on the biblical perspective of that time, and he did not try to deal with the will of God centering on the Israelite people. Always based on a new point of view, Jesus had made the preparations to relate with the new will of God.</p>
<p>In this way, he taught a true individual path to human beings, and made it possible for them to realize a new perspective on life. The path that Jesus traveled was a mournful road personally, but he experienced a love from God that people on the earth could not experience. Moreover, he mourned over the fact that God who created all things could not indulge in His rightful glory as the master of all things due to the people who were living with an habitual attitude of faith.</p>
<p>Although God personally created human beings and all things, although He is the master of the whole universe, He could not command human beings and all things as He willed, and could not govern over them even if He wanted. Many people of faith today think that because God is omnipotent He can rule over human beings and all things as He wishes, but He is not in such a position. Then, who is going to make it possible for God to receive glory from created things as the God of the original ideal of creation?</p>
<p>Because God was put in the position where He cannot fully rule over all things due to the fall of Adam and Eve, the ancestors of human beings, the responsibility to restore this situation lies in human beings. So, representing human beings and representing all historical doctrines and thoughts, Jesus stood at the forked road where he had to get rid of the conditions allowing the invasion of Satan, who caused man&#8217;s fall. He abandoned his tribe, people and, in the end, even himself for the sake of accomplishing this responsibility; yet, because of the faithlessness of human beings, this will could not be realized. So, God is mourning without having been restored to the position where He can have full dominion over all created things.</p>
<p>If you who live in the last days know that Jesus offered some thirty- odd years of his life to walk the road of conflict to realize the Kingdom of Heaven for which God longs, in other words, to fulfill the will of God, then you must also become the true Christians who are profoundly concerned about the dignity and prestige of God, so that inheriting the victory of Jesus you can go before God. Though there are many people on this earth today, there is none who is genuinely concerned about the dignity and prestige of God. If at such time there are some people who fathom the internal heart of God and sorrowfully make the appeal to restore the dignity and prestige of God, then God will turn toward that people the attention that He has withdrawn from the world. In the same way God could look at Judaism, the Jewish people and the world through Jesus Christ, even today he will try to liquidate the forces of Satan by raising you who have cultivated the internal heart of Jesus.</p>
<p>Understanding that as the elite soldier of God he would not perish even if the people and the world betrayed him, Jesus fought Satan on earth to eliminate Satan with unchanging conviction and to fulfill his responsibility to rectify the dignity of God.</p>
<p>Therefore, Jesus and the Holy Spirit took up the task of probing into the sins of Satan, who damaged the dignity of God, and then attacking him. This is not all. They tried to construct the Kingdom of Heaven through which human beings can rectify the dignity and prestige of God.</p>
<h3 align="center">The Rehabilitation of the Relationship<br />
Between God (Parent) and Man (Child)</h3>
<p>Originally, the relationship between God and man was the eternal and unchangeable relationship between parent and child who live and die together, but because of the fall, human beings have been living for 4,000 years without creating that parent-child relationship with God. Jesus was the person who mourned over this fact more than anyone else. He came to the earth after attaining a complete parent-child relationship with God and tried to fulfill the will of God and save human beings. Therefore, Jesus is the Father and ancestor of us human beings. You must rectify the dignity and prestige of Jesus.</p>
<p>The karma of the heavenly principles is that all human beings are to completely achieve the parent-child relationship with God. However, unless someone on earth accomplishes this task first, no one can form the parent-child relationship with God. Now, we must meet that person and serve God as our parents, and we must feel God&#8217;s grief as our own grief, feel God&#8217;s anguish as our own anguish, and feel God&#8217;s distress as our own. Only then can we form the parent-child relationship with God.</p>
<p>The reason that human beings could not find God, though they piercingly cried out to Him with desperate heart, is because due to the fall they could not create the parent-child relationship with God, and because the love relations according to the Heavenly laws have not been established. Accordingly, we must understand the reason human beings have fallen into this position, and, by revealing the true identity of Satan, restore the original position.</p>
<p>There is no need for the parent-child relationship formed only with words or built only on promises. Only when we exert all of our heart and strength to live for the sake of Father&#8217;s will, and only when we endure through suffering that melts our flesh and blood to bring victory, can we rehabilitate the parent-child relationship with God.</p>
<p>Then, in the same way that Jesus bore the cross and crossed over the hill of Golgotha to establish the Father&#8217;s dignity and prestige and for the sake of the Father&#8217;s glory, you must also be able to climb easily over the path of Golgotha on the world level. Otherwise, you will stand in the same position as the archangel, who has been betraying God&#8217;s ideology of Heaven for 6,000 years.</p>
<p>You must understand that God dwells near you and more than anyone else worries about each of you. In the world, it is believed that the love of physical parents is the greatest, but you must understand that the love of God is even greater and deeper, greater and deeper than any kind of humanistic love in the world.</p>
<p>You can be embraced inside Father&#8217;s bosom of love and call out, &#8220;Father,&#8221; and you can experience the internal heart of God from the position where you can say, &#8220;Now I understand the grief of God.&#8221; If you become this kind of sons and daughters and possess the Kingdom of Heaven that worships God, then no one can seize that heaven away from you.</p>
<p>Next, you can take responsibility for and alleviate the suffering of God. You also should feel furious about the fact that God is suffering. You have to understand that Jesus felt furious about Satan who has been afflicting God for 4,000 years, and he was determined to overcome suffering that is more intense than the suffering of the 4,000 years. Jesus could drag even the people who transgress the will of God and do not walk the path of the will, and after reforming history and practical reality, he could proclaim, &#8220;Father, I have taken responsibility for your sufferings, so please forget all your worries and cast aside all agonies of the dispensation.&#8221; Moreover, Jesus was willing even to share the agony that God felt through Heaven and the universe. Consequently, when the descendants of the Israelite people who took charge of the will of God for 4,000 years drove Jesus to the road of death of Golgotha, Jesus forgot his own pains, and instead he clung onto and comforted Father whose heart was torn apart in great distress as He was looking down upon His dying son.</p>
<p>If there is someone among you who can also comfort the Father, even as you are in the same difficult situation as Jesus, then such people can build the Kingdom of Heaven and no one can block the path of that person.</p>
<h3 align="center">The Responsibility of the Believers Toward<br />
Building the Kingdom of Heaven</h3>
<p>Because there was Jesus who was determined to take responsibility over the historical toils and pains of God, Satan could not accuse even when God used the powers of resurrection and resurrected Jesus. You who are following this Jesus must follow the example of Jesus and be responsible for the pain and bitterness of God who has been leading the dispensation of restoration for 6,000 years, and you should step forward and on behalf of humanity receive God&#8217;s whip of indignation, striking down upon the faithlessness of the people. This is the time that heaven demands this kind of believers.</p>
<p>If among you emerges a believer who is willing to bear not only the suffering of this people, but also the suffering of humanity and suffering and sorrow of God&#8217;s 6,000 years, and bear God&#8217;s whip of judgment toward humanity, then God will allow the second resurrection of Christ through that person. When this takes place, this earth naturally will be connected to the ideology of the Kingdom of Heaven.</p>
<p>Now, just as Jesus shouldered the 4,000-year history of restoration in God&#8217;s place and made it possible for Him to rest, we must become the believers who can say to Jesus who has been fighting with Satan for 2,000 years, &#8220;Lord, now please rest. We will take charge of your tasks.&#8221; Similarly, you have arrived at the level where you must bear responsibility for the work of Jesus who has been exerting himself. In other words, all the believers on the earth must shoulder the pain and grief of God, and the pains and sorrows of Jesus and the Holy Spirit in their place. We must naturally take responsibility to accomplish this feat.</p>
<p>Furthermore, we must thwart the invasion of Satan who has been in conflict against God for 6,000 years, and be responsible for the dispensation of restoration, and we must create the environment that has paid indemnity for all sins of human beings. You must understand that only by creating this kind of environment, can Jesus and the Holy Spirit dwell there and can God dwell there, and can the Kingdom of Heaven that God and human beings have been yearning for since the creation of the world finally be constructed on this earth. However, you today are ignorant of how important you yourselves are. You are tied to the past, the present, and the future, and while you can become an agent of blessing, you can also become an agent of misfortune.</p>
<p>Therefore, in order for you to become the agent of blessing, you must shoulder the responsibility for the works through which God and the Holy Spirit been exerting themselves to save humanity, and become the victor who can bring Satan to natural submission. Since you are in the process of forming the Kingdom of Heaven now, you must believe in God in every aspect of your life based on the will, and be in accordance with the construction of the Kingdom of Heaven on earth by passing through the individual heaven.</p>
<p>If you understand these details, then you should pour out all of your heart and soul to fulfill the Principle mission. Furthermore, as did Jesus who was fighting against Satan in the Garden of Gethsemane on behalf of the people, even if the world puts up opposition, even if tribulations confront you on a world scale, you should become the loyal subject who surpasses all loyal subjects of history, and become the filial son of all filial sons and woman of fidelity of all women of fidelity.</p>
<p>Unless you become true children of God who possess this heavenly value and can dominate Satan, so that God can boast about you before Satan, Satan cannot recognize you before heaven, and the standard of heaven cannot be established on earth.</p>
<p>Assuming the Father wants this kind of person to emerge, in the same way that Jesus and the Holy Spirit have suffered through pains and called out to the Father to raise the dignity and prestige of God, with the parent-child relationship with God that can never be severed, you must also raise the dignity and prestige of God and act on behalf of God&#8217;s situation. If such persons appear more often among our people than among any other people, then just as God abandoned the faithless Jewish people and formed the second Israel centering on the twelve disciples of Jesus, He will create the third Israel centering on the Korean people and achieve the great feat of materializing the Kingdom of Heaven on earth. Furthermore, when this nation inherits the heart of Jesus and God and exhibits utmost sincerity to spread the will of God to the people of the world and fulfills its responsibility to realize the will of God, this people will receive the blessing of heaven.</p>
<h3 align="center">The Mission of the Korean People and<br />
the Thesis of the New System of Truth</h3>
<p>While human beings today only pursued material things, they formed the material civilization of the twentieth century. However, the original desire of human beings is not just to investigate the visible material world and only pursue this value.</p>
<p>Religion teaches the existence of the invisible world that transcends the material world and the formless God. Thus, if there is a group that hope to go before the formless God on the basis of this religious ideology and go in search for the will of God, if there are such a people, nation, and humanity, then centering on them the new world of God, that transcends the material civilization of the twentieth century, an invisible world, a new world that is the center of values will come into being.</p>
<p>When you pursue the material world, you will not be able to pass through the world of the first causal force of materials and reach the invisible world, and in the end you will reach the world of the deity who governs over the visible world. Similarly, the visible world and the invisible world are existing in a corresponding relationship. Therefore, if our people pray and exert themselves more assiduously than any other people to experience the penetrating internal heart hidden inside the bosom of God and experience the heart of Jesus and the Holy Spirit on behalf of the invisible world, then we can discover all the secrets of Heaven before any other people.</p>
<p>The history of humanity from now on has to pass through the religious position. Even in pursuing material things and even in science, we have grown out of researching horizontal problems as well as the earth, the oceans and other such aspects of the material world, and we have entered a new level of researching the more fundamental world of essence that has the quality of three-dimensionality and is prior to the material world.</p>
<p>What remains now are the fierce conflicts in the spirit world, which comes after the substantial division and conflict of religions. Just as today we have discovered the greatest force in the material world through nuclear fusion, in the future we will discover the same kind of force in the spirit world.</p>
<p>That is a force that cannot be explained with the present level of natural science. This force is transcendent and is applicable in the supernatural world, but it is surely possible for this force to reach all things of the universe through human beings. Without this kind of action, human beings cannot have hope, and the ideal Kingdom of Heaven also cannot be realized. Therefore, you must manifest the entire ideology of the spirit world in the substantial world through yourselves, and you can take pride in the fact that you are more precious than any other being in the universe, and going one step further, that you can become the substantial embodiment of the cosmic force. If you can become such a person and create the environment that can praise the Creator Lord, then by the same principle of how weaker force is pulled by the greater force, Satan will come to submit naturally before that cosmic force.</p>
<p>Until now, our people have been worshipping religion more diligently than any other people of the world. While our people were penetrating the greatest gate of the world, there came into being many forms of religion. Even in the future, there will also emerge many strange forms of religion. We must cope with them and set the one standard upon which the Lord can come to this earth, and we must connect that to the heavenly power. You must not forget that if you do not form the Kingdom of Heaven from your sphere of life, centering on your heart, and continue until you form the cosmic heaven, the idea of heaven, the ideal of creation that you and God desire cannot be realized through you, and not only that, that idea of Heaven cannot take root in humanity through you.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>We infinitely yearn for the one world where we are linked to Father based on the heart. This world is immersed in faithlessness, and this world is pent up with grief.</p>
<p>Father, we feel shameful before the love of the Father who has been guiding us until this hour today, so please forgive us. We know that the mission that you have entrusted in us is great, and we have learned that the greater your commands the more we feel that we are lowly and weak, so we earnestly hope that you will lead us with your great capability.</p>
<p>Please allow us to now become the citizens who can uproot the powers of Satan, children of heaven who are needed in the Kingdom of Heaven. Please bestow Your grace so that we can link with God&#8217;s heart and experience the heart of Jesus, so that we can follow the course of Jesus&#8217; heavenly victory, which drove back the invasion of Satan. On that basis, please allow us to become the sons and daughters of Yours who can both stand before the whole universe as the one victorious man that you have desired as the original ideal of creation and at the same time stand tall before God. Father is our Father, so, we wish with the utmost sincerity that until the day that the whole humanity can attend you as Father, You will bestow upon our minds Your capabilities so that we can vanquish Satan and manifest the will of heaven to all things.</p>
<p>Praying that you will truly claim and rule over all of us who are participating here today, we prayed all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html" title="Permalink to LET US BECOME THE CITIZENS WHO TAKE POSSESSION OF THE KINGDOM OF HEAVEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html" rel="prev"><span class="meta-nav">&laquo;</span> WHY DOES THE LORD HAVE TO COME BACK?</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html" rel="next">WE WHO ARE SEARCHING FOR THE HOMELAND, THE GARDEN OF EDEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,223 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME THE ONES WHO CAN UNDERSTAND GOD&#8217;S SORROW &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-875 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-875" class="post-875 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME THE ONES WHO CAN UNDERSTAND GOD&#8217;S SORROW</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:26:57+01:00"> <a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:27:06+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 25, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Genesis 6:5-13</em></p>
<p style="text-align: center;"><em><span id="en-NIV-143" class="text Gen-6-5"><sup class="versenum">5 </sup>The <span class="small-caps">Lord</span> saw how great the wickedness of the human race had become on the earth, and that every inclination of the thoughts of the human heart was only evil all the time.</span> <span id="en-NIV-144" class="text Gen-6-6"><sup class="versenum">6 </sup>The <span class="small-caps">Lord</span> regretted that he had made human beings on the earth, and his heart was deeply troubled.</span> <span id="en-NIV-145" class="text Gen-6-7"><sup class="versenum">7 </sup>So the <span class="small-caps">Lord</span> said, “I will wipe from the face of the earth the human race I have created—and with them the animals, the birds and the creatures that move along the ground—for I regret that I have made them.”</span> <span id="en-NIV-146" class="text Gen-6-8"><sup class="versenum">8 </sup>But Noah found favor in the eyes of the <span class="small-caps">Lord</span>.</span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-147" class="text Gen-6-9">Noah and the Flood</span></em></h3>
<p style="text-align: center;"><em><span class="text Gen-6-9"><sup class="versenum">9 </sup>This is the account of Noah and his family.</span></em></p>
<p class="top-05" style="text-align: center;"><em><span class="text Gen-6-9">Noah was a righteous man, blameless among the people of his time, and he walked faithfully with God.</span> <span id="en-NIV-148" class="text Gen-6-10"><sup class="versenum">10 </sup>Noah had three sons: Shem, Ham and Japheth.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-149" class="text Gen-6-11"><sup class="versenum">11 </sup>Now the earth was corrupt in Gods sight and was full of violence.</span> <span id="en-NIV-150" class="text Gen-6-12"><sup class="versenum">12 </sup>God saw how corrupt the earth had become, for all the people on earth had corrupted their ways.</span> <span id="en-NIV-151" class="text Gen-6-13"><sup class="versenum">13 </sup>So God said to Noah, “I am going to put an end to all people, for the earth is filled with violence because of them. I am surely going to destroy both them and the earth.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! When we reflect upon the 6,000 years of history, we can see that You have not had even one moment to rest in comfort or rejoice. On the contrary, we know that You have been immersed in grief and anguish. Reflecting upon the time of Noah, also, we feel that both that time and today are causing You stains from tears of sorrow.</p>
<p>Please allow the sons and daughters who are gathered here today to experience Your situation, pierced with indescribable unhappiness and sorrow, whenever you, Father, took a step, with the desire to seek a lineage of faith among ignorant people. Let us also realize at this hour that the heart of the Father, who had to drive a heartbroken Noah out into the vast world of Satan, was grieving. Noah also was indescribably saddened and lonely. Beloved Father, we sincerely wish and desire for this to be done.</p>
<p>Prophets, who had been chosen before the will of Heaven, came as a sacrificial offering and as a symbolic being of infinite sorrow to God and to people, regardless of time. Thus, we know that Noah was not the only prophet in that position, but there were many other prophets and sages. We also acknowledge that, since the time of Noah, all prophets and sages who attended the will of God have been walking the same path as Noah.</p>
<p>We who are to receive the day of the final judgment, should establish ourselves before chun ryun (heavenly principles). We should also reflect as to whether we carry the heart of many prophets and sages, who, until now, had been heartbroken in sorrow. By doing so, I earnestly wish and desire You could lead us to save our faces before you, as your sons and daughters.</p>
<p>Please guide us not to become people who try to escape from the last judgment due to fear, but to become people who comfort your grief, experiencing your heart of infinite humility, and prepared to fight any unrighteous power to fulfill your will on earth. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Father, please have compassion on the children who are gathered here, and upon them, bestow the words of reproach given to Noah long ago. By doing so, please guide each of their resolutions to be not just temporary. Allow them to be your sons and daughters who, with wisdom, can have the ability, with a new determination and resolution, to overcome any obstacle caused by the billions of satans in their environment during their lifetime. Father, I sincerely wish and desire this to be done.</p>
<p>Father, please be with the words given at this hour. Guide the heart of the person who conveys the words and the hearts of those who receive them to be united into one, and thus allow us to move as Heaven immersed in Your grace moves. Allow us to stay still if Heaven stays still, so that we can experience your heart. By doing so, please guide us to attend the will felt in our hearts as the will that should be attended before the eternal Father. Beloved Father, I earnestly wish and desire this to be done.</p>
<p>At this hour, as I sincerely wish and pray for You to allow us to offer our body before You as a sacrificial offering, beloved Father, please have dominion over the remaining hours. We pray in the name of the Lord. Amen.</p></blockquote>
<p>At this hour, I would like to speak on the title of &#8220;Let Us Become the Ones Who Can Understand God&#8217;s Sorrow.&#8221;</p>
<h3 align="center">God&#8217;s Grief Caused by the Human Fall</h3>
<p>You know well that throughout the thousands of years of history, grief has been inseparable from humans. You also know that humans are not the only ones who mourn; the creation, in relationship with humans, and God, the Creator of humans based on the ideal of creation, also mourn.</p>
<p>When you compose yourself, and in the midway position between God and the creation, look at humans who can look up to the Heaven and look down to the creation, you will come to understand that there has been no one who can claim that he or she is liberated from grief for God, humans and the creation. As long as God&#8217;s grief is not relieved, the grief of humans on earth cannot be relieved. As long as the grief of humans living on earth is not relieved, the creation created for the sake of humans cannot be relieved from grief.</p>
<p>Who then caused grief to God? That being is not God Himself nor the creation, but it is humans. Humans, who should have carried out God&#8217;s central mission and their mission toward the creation, brought sorrow to God and the creation, due to the fall. Consequently, you should realize that you are the one who stands alone before Heaven and earth, and are destined to undergo a course of struggle, which strives to eliminate sorrow that is flowing beneath your heart.</p>
<p>The sorrow in your heart does not remain in you, only on the individual level, but will be connected to Heaven and all humankind. One individual&#8217;s grief will affect your family, society, nation and the world. Consequently, you should realize that you are standing in an incredible position today.</p>
<p>With what kind of heart should we then reflect upon that? This is a question that we, all of the fallen people who are to climb up the hill of the last judgment, should be faced with. At this time when we are in adversity, after putting the load of burden down, we should be able to say proudly, &#8220;I am emancipated and I have hope, happiness, and love all things in Heaven and on earth.&#8221; We should also become people who can transcend the standard in which we have already removed the sorrow of God and that of the creation. If we do not go beyond that standard, even if you are rejoicing about something at the moment, the joy will be only transient. Even if you were endowed with a grace, the grace will also be temporary, and you will be soon immersed into grief.</p>
<p>How then can we be freed from grief? Humans alone cannot be freed. We know through the Principle that is the reason Heaven, for thousands of years, has been guiding a providence that can bring a work of a new energy, grace and resurrection, fighting to remove grief while humans were not aware of it.</p>
<p>You also acknowledge that human sorrow was transformed into the sorrow of Heaven and earth. Due to the fallen humans, the path of love through which God and the creation could be united, was blocked.</p>
<p>Consequently, you should never give yourself up, due to your own sorrow. Before you think of your own position, you should first reflect upon the grief of God, Who has been saddened for all humankind throughout the course of history. By doing so, when you become a person who can, in your daily life, empathize with the grief of God, you would not take your sorrow solely as your own. Unless you can do it, you would not be able to climb over the hill of the judgment in the Last Days, and come forth as a person who can be qualified to comfort the heart of God. You should keep this in mind.</p>
<h3 align="center">The Doubled Grief of God</h3>
<p>What kind of sorrow then does God possess? This is a very important question for us. It was derived from the result that, since the fall of Adam and Eve, God could not establish the original world of creation, which was to be established through them. We should thus become the ones who can experience the grief of God.</p>
<p>That is, due to the fall of Adam and Eve, the ideal of creation through which they were to enjoy an eternal blessing in the garden of love centered on God&#8217;s love and ideas, was frustrated. God thus came to work continuously until the present throughout thousands of years of history. To fulfill the ideal of creation that Adam and Eve could not fulfill due to the fall, God has thus been experiencing all kinds of grief while fighting Satan. We should also become a person who can empathize with such a heart of God.</p>
<p>We should now experience the sorrow of God at the time when Adam and Eve were lost and the sorrow of God at the time when Adam and Eve betrayed Him and fell. To do this, we should first understand God&#8217;s love and how much God loves humans. Otherwise, you will never be able to experience the grieving heart of God at the time when He lost Adam and Eve. Thus, you should experience the grieving heart of God, who could not realize the ideal of creation due to the fall of Adam and Eve.</p>
<p>God&#8217;s sorrowful heart to achieve the ideal of creation is imbedded in all of the creation. You should understand that God&#8217;s providence has been to resolve the problem. Since Adam, what did all the prophets and sages, from Noah, Abraham, Moses to Jesus testify to humans on the earth? It was only to convey God&#8217;s grief to the ignorant people.</p>
<p>Due to the human fall, God came to carry a grief for not having been able to realize the ideal of creation. Thus to fulfill it, He sent many saints and sages and came to have a double grief that He could not but watch them fighting Satan. You should understand this.</p>
<p>That is, many saints and sages walked a sorrowful path to introduce the ignorant people, out of whom no one has ever welcomed the will of God, and His sorrowful heart. The more they empathized with the sorrow of God, the more strongly they felt responsible for being sorrowful for the earth on behalf of God, and they had to fight Satan with the sorrowful heart of God.</p>
<p>They were to appear as the representatives who could be recognized for their value on behalf of the eternal will, but on the contrary, God had to feel a double grief, by watching them ridiculed and rejected by the ignorant people and even being chased from here and there. God was already sorrowful enough not to have been able to fulfill the ideal of creation, but it was indescribable grief for Him to watch many saints and sages who were destined to awaken the ignorant earthly people and fight Satan. You should not forget that God was situated to carry such a double grief.</p>
<p>When looking back at the time of Noah, God was overwhelmed with indescribable sorrow for 1,600 years, but he was tolerant of it. The sorrow toward humans was so overwhelming, He could never forget it even one moment. Overcoming it, to fully manifest His sorrows before all humankind and the creation, He established Noah.</p>
<p>Why then did God establish Noah in the position that people at that time could not understand? You should understand that the reason was to establish one person, Noah, as a representative of humans, and put him in an incomprehensible environment, to experience the sorrow and pain of Heaven, caused by humans for 1,600 years.</p>
<h3 align="center">Saints and Sages Throughout History,<br />
Who Comforted the Grieving God</h3>
<p>Noah tolerated people who opposed and ridiculed him in faithlessness for 120 years. Even 120 years later when a warning was given that the earth was to be judged, he accomplished his duty to God in faith. He was called a righteous person of that time. Because he was a righteous person, the more he was concerned and saddened for the society in which he was living, the more corrupted the society of that time was.</p>
<p>When many people were striving to live for their personal comfort, Noah alone struggled to find the laws of public righteousness, was concerned about chun ryun, and was saddened in the environment where no one wanted to belong. Because Noah was concerned with and grieved for the people of that time, God called him. You should understand this.</p>
<p>This is not limited only to Noah. What was the reason for all the saints and sages, until now, who were responsible for fulfilling God&#8217;s will to be chosen? All of them were concerned about the corrupted earth and people of their time. With the concern for an individual, a family, a society, a nation and the world, without letting others know, because they prayed, &#8220;Does Heaven exist? If so, please save this sinful earth!&#8221; and did their best to be loyal, with a sorrowful heart toward Heaven, they could be called by Heaven.</p>
<p>You should understand that the heart of God, Who called for any prophet such as Noah, was indescribably pierced into grief. Even in the midst of people&#8217;s faithlessness and betrayals, when a prayer of a prophet called by God rang in the air, with a grieving heart, &#8220;Oh, Father!&#8221;, the prayer was not joyful to hear to humans. However, God who heard the prayer was moved by the earnest appeal, as many saints and sages throughout history have been walking a thorny path to comfort God&#8217;s grieving heart.</p>
<p>Whenever God faced with anyone who appealed and prayed to Him with such a grieving heart, He related to that person with a sorrow welling up in His heart. You should understand that when He faced them, he was determined to restore all His desires and ideas.</p>
<p>However, God was not always in the position where He could freely command the saints and sages who followed Him in faith or His sons and daughters, nor could He discuss with them despite time and space. You should understand that He was to relate to them only when a certain symbolic condition was met. Thus, you should understand that God has been conducting His providence to remove His grief through a sacrificial offering during the time of the Old Testament Age, and through Jesus during the time of the New Testament Age.</p>
<p>Through them, God&#8217;s will was not entirely fulfilled. God desires to have a direct, full give and take relationship with you, and live eternally in the realm of His love, embracing you in His bosom. By so doing, He would like to call all humankind His sons and daughters. For this, He has been controlling His desire to express all of His grievance and pain until today. You should understand this.</p>
<p>Today, you who are living on this earth, can reveal your own sorrow to someone, your family members or relatives, but God cannot do it. When you are also in difficulties, you can lay your feelings bare, &#8220;I am sad or I am lonely,&#8221; but God could never freely express His feelings throughout many thousands of years of history even when He was sorrowful. You should empathize with such a feeling of God, Who is in such a difficult position.</p>
<p>You should understand that all the saints and sages throughout history first expressed the sorrow of all humans on the earth, before revealing the sorrow of their own, and when you desire to stand before Heaven, you should reflect upon your past. You should look back whether in your own living environment, you did anything small, which can be a comfort to God, who has been sorrowful throughout 6,000 years of history.</p>
<h3 align="center">Humans Who Should Liberate the Sorrow of God</h3>
<p>Thus you should become a person who can look at the future and can be concerned about your family, society or nation. Even if the world is shaken and thus swept into a realm of death, you should become a person who can walk a path toward Heaven. If so, you shall never perish nor shall you be cursed by God.</p>
<p>God is saddened because humans could not fulfill the ideal of creation due to the fall. To fulfill the ideal, He has been looking for a person who would be concerned and work hard for the earth on behalf of Him. You are thus destined to walk a path in which you should comfort God and remove grief from God, Who is in such a sorrowful position today.</p>
<p>Because humans are the ones who caused grief to God, they are the ones who should eliminate that grief, yet you are not well aware of this. Thus you should know this clearly, and should try hard to free Him from the grief. You should make it clear that this is the most important thing to be considered.</p>
<p>God has never been joyful, even for one moment in the life-course of the humans who have been established. It is because some people did their best to fulfill their mission, but He could not help but watch those who could not, at times, fully comfort His sorrow to satisfaction. God was in the position to have heart-to-heart communication with the people who were established, but He has been heartbroken that they could not complete the mission in their generation.</p>
<p>After a history of sorrow for 4,000 years had passed, God could finally send a person who could represent the entire history of 4,000 years and all the prophets and sages who had come throughout history, and could represent the entire cosmos. The person sent by God as a representative for Heaven, all things and all humankind is Jesus Christ, in whom you believe. The day he arrived was a joyous day for the creation, all humanity and Heaven. You should understand this.</p>
<p>With what then did Jesus come to the earth? He came to the earth with an indescribable sorrow as a person who could represent all the grief of humans throughout the entire history of humans and that of all things. On behalf of all humans and the creation, he came with a responsibility to relieve the sorrow imbedded during the past 4,000 years of history.</p>
<p>In order for Jesus to reverse the direction of fallen history, caused by the human betrayal and their subsequent deviation from God, he fought Satan, who blocked a path to a life for humans and the creation, from a new angle. In the position where he had nothing to do with Satan&#8217;s lineage, he pursued one ideal of God, one hope and joy.</p>
<p>Jesus walked such a path for his life of thirty years or so, but no one understood and supported him. He shed blood and sweat with all of his loyalty for his entire life, to relieve God&#8217;s sorrow, entangled for 4,000 years, and to fulfill the will of God, no one recognized such a heart of Jesus. He was rejected by the religious leaders and the people of Israel. Later, he had no place to stay or rest; he had to wander from village to village, from valley to valley. You should understand the circumstances of Jesus at that time.</p>
<p>What then was the sorrow of Jesus? The sorrow was that he could not fulfill his mission for God&#8217;s will, and that he could not awaken the ignorant people and teach them the will of God. Consequently, he grieved for Judaism and the Israelites, who did not believe in him and who opposed him at that time.</p>
<h3 align="center">God&#8217;s Situation That Jesus Desired to Convey</h3>
<p>God, who was watching Judaism and the Israelites persecuting and disbelieving in Jesus, wanted to judge them and dismiss them immediately, but He did not. You should understand such a sorrow of God. You should clearly understand that Jesus, who had come as a Savior for all humans on the earth, took instead all of their grief and that of the creation.</p>
<p>Thus you should now have an attitude of heart that desires to feel the sorrow of Jesus, by exploring his lonely heart. You should also desire to become a friend of Jesus Christ, who was in the sorrowful position that no one knew. If you cannot be a friend with him for a day, you can be one even for an hour. If you do not have such a heart at all, you would not be able to come forth on behalf of chun ryun nor can you comfort God&#8217;s grief on behalf of humans. On the contrary, you will end in the position of a betrayer, in which you will be against Heaven. You should be able to feel the sorrow of God, Who had watched Jesus, who had to be crucified at the end, despite the fact that with a sorrowful heart, he did everything possible to fulfill the mission endowed upon him.</p>
<p>On behalf of all humans and the entire cosmos, Jesus was commissioned to relieve the sorrow of God and have Satan surrender, by fulfilling the will of God, but he was eventually driven to carry the cross on the hill of Golgotha, in the pursuit of others from here and there. How then would he have felt?</p>
<p>He perceived that all the promised wills centered on him were to be destroyed, and his life was at the end to be terminated on the cross, but he still did not betray Heaven and fulfilled his duty toward God with an unchanging loyalty. Even if humans disbelieved in him, without being swayed by it, Jesus continued to pursue his life toward chun ryun. You should keep in mind that such a life of Jesus becomes a way to hope throughout history.</p>
<p>You should be able to figure out the broken and sorrowful heart of God, Who could not help but watch Jesus who prayed, immediately before his death on the cross, &#8220;My God, my God, why have you forsaken me?&#8221; God had tolerated His sorrow for 4,000 years, but because He could not have a direct dominion over His beloved sons and daughter before they make an appropriate indemnity condition, He had no choice but to wait with patience until they met a certain indemnity condition. This you should understand.</p>
<p>How then did Jesus live on the earth? He could not speak or act freely as you could today. Jesus could not stay in a comfortable situation. Wherever he slept, whatever he ate, in whatever direction he moved, he always manifested God&#8217;s sorrow pierced into the marrow of his bones. Wherever he spoke aloud to the Pharisees, the Sadducees, and the Israelites, he felt such a sorrow that his bones seem to melt down, and his blood and flesh shrank. Jesus could not discuss his heart of grievance, imbedded with all the sorrows he had encountered, with the people because of their ignorance and disbelief. Today, you should not forget such a heartbroken situation of Jesus.</p>
<p>Jesus, who knew with what mission he was endowed from Heaven and why he came to the earth, was welling up with sorrow due to the difference between God&#8217;s hope and the reality in which he was living. Such a grief could envelop Heaven and earth, but he could not be saddened with his personal situation.</p>
<p>Today, you should take after the approximately thirty years of the life of Jesus, which was not bound by his personal situation, but was concerned with the grief of God and all humankind throughout history, and thus tried to comfort Him. You should now reflect upon how much you were concerned with the sorrowful situation of Jesus, and also, to fulfill the will of God, how much you came to experience the sorrow.</p>
<h3 align="center">God&#8217;s Additional Sorrow Caused<br />
by Jesus&#8217; Being Crucified</h3>
<p>Due to the fall of Adam and Eve, God failed to fulfill the ideal of creation and thus came to experience an indescribable sorrow. Therefore God desired to receive a day of hope, by having humans believe in Jesus and be comforted, but He again had to face a miserable scene in which Jesus was killed on the cross. Through one person who was established as a fruit of His hard work during the 4,000 years of history, He desired to be relieved from the sorrow and build a Kingdom of Heaven on the earth, but when the plan was frustrated, how would He have felt?</p>
<p>The grief then was beyond the grief that He had experienced at the time of the fall of Adam and Eve. At the time of the fall of Adam and Even, He felt a sorrow that seemed like Heaven and earth were crumbling down. At the time of Jesus&#8217; death on the cross, Jesus who had felt like the tower of God, built with God&#8217;s blood, sweat and tears during the past 4,000 years, crumbled in an instance. Thus God had to start all over again. God&#8217;s sorrow at the time of the fall of Adam and Eve was consequently doubled and God could not help but lament over the death of Jesus with indescribable grief.</p>
<p>What kind of position then are you faced with today? Today, you are descendants of Adam and Eve, who caused sorrow due to their fall. You should understand that you are also descendants of the ancestors who brought an additional grief to God, by crucifying Jesus. Nevertheless, God forgot that humans are the very ones who had betrayed Him and caused Him grief, and is continuously leading a providence centered on their descendants. All that God looks forward to is to see a day when humans and the creation are united, and thus His kingdom will be realized on the earth.</p>
<p>In what kind of environment then are you living today? What is the reality in which you are living? What is the situation where the world is faced with? Anyone with a meaningful will would be grieved with and lament over the current situation of reality.</p>
<p>Anyone who understands the mission of Jesus Christ, who had come to introduce the love of God and comfort His sorrowful heart, could not help but strike, on behalf of the entire world, his own heart filled with ignorance and darkness. It is so because the reality today is too remote from the original will of God, and is full of corruption and contradictions.</p>
<p>Consequently, you should pursue the one way, empathizing with God&#8217;s sorrowful heart and seeking His infinite love, regardless of whether others persecute or swear at you, only to bring about a day of hope, even if you fall down while striving to establish God&#8217;s nation on the earth. We are destined to fulfill the historical mission.</p>
<p>While carrying out the mission, even if you are faced with tragic situations from a group of faithless people, you should report it to God, Who is in the position more miserable than yours. Although God&#8217;s sorrows toward humans have been immeasurable, God has never expressed it to them.</p>
<p>Until today, as God has been leading a dispensation to save all humankind, restraining His own sorrow, you should also fight Satan, restraining your own sorrow. Thus, even when you pray, you should forget your own personal situation, but should be focused on how you can become a person who can liberate God from Father&#8217;s sorrow, and will take responsibility for all the historical grievances and the universal sorrow pierced into Father&#8217;s heart. To realize the will of God, you should fight Satan. If you become such a person, even if you would die while struggling to carry out the will, you shall never perish.</p>
<p>Consequently, God is looking forward to seeing such a person even at this moment. He is anxious to see a person who desires to eradicate His sorrow at the risk of his own life. By injecting the original energy of an infinite life of chun ryun into such a person, God wants to relieve His sorrow and build an eternal relationship with Him. Through such a person, He desires to relieve sorrow on the levels of a family, society, nation and even the world. You should clearly understand this at this hour.</p>
<h3 align="center">God&#8217;s Wish for Humans</h3>
<p>What then is Heaven&#8217;s piercing sorrow to you? You should not be grieved with your own sorrow. If you are, you are an unfortunate person. You should become a person who should carry the grief of your family, society, nation, the world, and further, that of God, and who should liberate it from them.</p>
<p>Think of Noah in the old days. When he was given a warning from God that the earth would be judged through the flood 120 years later, he never forgot it even one moment, but believed in it. He had an absolute obedience in God&#8217;s one word for 120 years. It is an incredible faith. Yet he was not the only one who had such an absolute faith in God&#8217;s words. Abraham also was another one. When God told him to leave the land of Ur of the Chaldeans, he never forgot the words of blessing, even one moment in the wilderness. Consequently, he fought Satan every day with faith in the words of God&#8217;s blessing to him.</p>
<p>Another person was Jacob. Because he did not forget the blessing from Isaac and the blessing from God, he could tolerate the life of hardships in Haran for 21 years. Another person was Jesus. He also attended one word from God to him, and to fulfill the word, he fought Satan during his entire life of over thirty years. As such, all the saints and sages called by God observed one word from Him and attended it with faith in their lifetime. You should clearly understand this.</p>
<p>What then should you do at the time when a historical sorrow is passing through you? You should first become a person who can experience God&#8217;s sorrow, and the hearts of Jesus and the Holy Spirit toward God and humans, and the sorrowful hearts of many saints and sages during the past 6,000 years of history. By so doing, you should go beyond your own level, and become a person who can liberate all the historical grief and return joy and glory to God. You should never forget that God is anxious for you to become such a person even now.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html" title="Permalink to LET US BECOME THE ONES WHO CAN UNDERSTAND GOD&#8217;S SORROW" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US NOT BECOME A BETRAYER OF GOD&#8217;S WILL</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html" rel="next">THE PROVIDENTIAL LIFE OF JESUS AND ITS VICTORIOUS PURPOSE <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,268 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US BECOME THE TRUE SONS AND DAUGHTERS OF THE TRUE FATHER &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-852 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-852" class="post-852 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US BECOME THE TRUE SONS AND DAUGHTERS OF THE TRUE FATHER</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:15:29+01:00"> <a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:15:39+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">September 15, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Romans 8:12-30 </em></p>
<p style="text-align: center;"><em><span id="en-NIV-28129" class="text Rom-8-12"><sup class="versenum">12 </sup>Therefore, brothers and sisters, we have an obligation—but it is not to the flesh, to live according to it.</span> <span id="en-NIV-28130" class="text Rom-8-13"><sup class="versenum">13 </sup>For if you live according to the flesh, you will die; but if by the Spirit you put to death the misdeeds of the body, you will live.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28131" class="text Rom-8-14"><sup class="versenum">14 </sup>For those who are led by the Spirit of God are the children of God.</span> <span id="en-NIV-28132" class="text Rom-8-15"><sup class="versenum">15 </sup>The Spirityou received does not make you slaves, so that you live in fear again; rather, the Spirit you received brought about your adoption to sonship.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28132a" data-link="[&lt;a href=&quot;#fen-NIV-28132a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Romans+8:12-30#fen-NIV-28132a">a</a>]</sup> And by him we cry, “Abba,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28132b" data-link="[&lt;a href=&quot;#fen-NIV-28132b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Romans+8:12-30#fen-NIV-28132b">b</a>]</sup> Father.”</span> <span id="en-NIV-28133" class="text Rom-8-16"><sup class="versenum">16 </sup>The Spirit himself testifies with our spirit that we are Gods children.</span> <span id="en-NIV-28134" class="text Rom-8-17"><sup class="versenum">17 </sup>Now if we are children, then we are heirs—heirs of God and co-heirs with Christ, if indeed we share in his sufferings in order that we may also share in his glory.</span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-28135" class="text Rom-8-18">Present Suffering and Future Glory</span></em></h3>
<p style="text-align: center;"><em><span class="text Rom-8-18"><sup class="versenum">18 </sup>I consider that our present sufferings are not worth comparing with the glory that will be revealed in us.</span> <span id="en-NIV-28136" class="text Rom-8-19"><sup class="versenum">19 </sup>For the creation waits in eager expectation for the children of God to be revealed.</span> <span id="en-NIV-28137" class="text Rom-8-20"><sup class="versenum">20 </sup>For the creation was subjected to frustration, not by its own choice, but by the will of the one who subjected it, in hope</span> <span id="en-NIV-28138" class="text Rom-8-21"><sup class="versenum">21 </sup>that<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28138c" data-link="[&lt;a href=&quot;#fen-NIV-28138c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Romans+8:12-30#fen-NIV-28138c">c</a>]</sup> the creation itself will be liberated from its bondage to decay and brought into the freedom and glory of the children of God.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28139" class="text Rom-8-22"><sup class="versenum">22 </sup>We know that the whole creation has been groaning as in the pains of childbirth right up to the present time.</span> <span id="en-NIV-28140" class="text Rom-8-23"><sup class="versenum">23 </sup>Not only so, but we ourselves, who have the firstfruits of the Spirit, groan inwardly as we wait eagerly for our adoption to sonship, the redemption of our bodies.</span> <span id="en-NIV-28141" class="text Rom-8-24"><sup class="versenum">24 </sup>For in this hope we were saved. But hope that is seen is no hope at all. Who hopes for what they already have?</span> <span id="en-NIV-28142" class="text Rom-8-25"><sup class="versenum">25 </sup>But if we hope for what we do not yet have, we wait for it patiently.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28143" class="text Rom-8-26"><sup class="versenum">26 </sup>In the same way, the Spirit helps us in our weakness. We do not know what we ought to pray for, but the Spirit himself intercedes for us through wordless groans.</span><span id="en-NIV-28144" class="text Rom-8-27"><sup class="versenum">27 </sup>And he who searches our hearts knows the mind of the Spirit, because the Spirit intercedes for Gods people in accordance with the will of God.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-28145" class="text Rom-8-28"><sup class="versenum">28 </sup>And we know that in all things God works for the good of those who love him, who<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-28145d" data-link="[&lt;a href=&quot;#fen-NIV-28145d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Romans+8:12-30#fen-NIV-28145d">d</a>]</sup> have been called according to his purpose.</span> <span id="en-NIV-28146" class="text Rom-8-29"><sup class="versenum">29 </sup>For those God foreknew he also predestined to be conformed to the image of his Son, that he might be the firstborn among many brothers and sisters.</span> <span id="en-NIV-28147" class="text Rom-8-30"><sup class="versenum">30 </sup>And those he predestined, he also called; those he called, he also justified; those he justified, he also glorified.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father! We have gathered today before Your knees after fighting for the last week in the locale of evil with the permitted grace in our hearts. Please forgive us, even if we are inadequate.</p>
<p>We could not come with anything to offer to the Father. We have come as the objects of the Father&#8217;s concerns. Father of compassion, Father of capabilities, Father of love, please do not let us remain as we are now. You must take charge of us.</p>
<p>Millions of satans have surrounded us and are attempting to take our lives. Father, please protect us. Please allow us to be immersed in the deep love of the Father today so that we can sing His glory in our hearts. Father, we sincerely wish that this will be an hour when we can lie prostrate here and make full bows.</p>
<p>We know that during the past week, there were still traces of unacceptable actions in the course of our daily lives. There are many elements that cannot be brought out before the will of the Father. Therefore, Father of compassion, Father of capability, please appear with the authority of victory and allow the hands of recreation to work.</p>
<p>Father! This day is a sacred day. Please give Your blessing to the countless religious groups who are gathering on behalf of the thirty million people. We know that there are lonely sons and daughters who are building concealed altars to fulfill the Father&#8217;s will and who are now lying prostrate before You. Please grant the same grace upon them, and grant the ultimate grace that You have foretold for the Last Days. By doing so, Father, we wish with utmost earnestness that You will let them build the altar of final victory and establish Your glory on this 3,000-li-long <a href="http://www.unification.net/1957/570915.html#*"><sup>*</sup></a> peninsula.</p>
<p>Your sons and daughters, who have gathered here, now entrust everything to You, so please accept them as living sacrifices. Guide them so that none may deviate from the Father&#8217;s will. I sincerely hope that they can become true children who can confidently call the Father their own, even when attacked by Satan.</p>
<p>There are lonely sons and daughters, scattered across the countryside, who are carrying on difficult battles today. Beloved Father, please arouse the Father&#8217;s power of re-creation wherever they gather, and allow them to testify that they are the sons and daughters of the Father. Now requesting and wishing that Your will may govern all we offer to the Father in this hour, we offer these words of prayer in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon I want to offer to you is <i>&#8220;Let Us Become the True Sons and Daughters of the True Father.&#8221;</i> I will speak briefly upon this topic.</p>
<h3 align="center">God&#8217;s Hope for Humankind</h3>
<p>You probably know very well that God, Who created all things, could not abandon this world. Rather, He has been conducting a brutal fight with Satan and has been taking sole responsibility for it until now.</p>
<p>What is the ultimate purpose of God&#8217;s desire? What does He want? What is the reason He could not forsake humanity, but clings to it even while suffering the historical course of countless sorrows? It is to make it possible to say to humankind that they are His sons and daughters by blood. God has been fighting until now to realize this ideal.</p>
<p>Adam was to attain all the qualifications of the master of all things in that garden of goodness, amid the glory of God and harmony among all things, centering on the love of God. He was to say, &#8220;My Father! Please be glorified.&#8221; Adam lost that significance because of the fall. You have to understand that, for this reason, God longs to hear His original sons and daughters, after the creation of the world, come forward and call out, &#8220;Father.&#8221;</p>
<p>The Father we are calling out to is not one we can call on from the position of sin. Accordingly, we must leave this world of sin and enter the ideal garden of goodness. While that ideal garden is the place where humankind can manifest the glory of God, it is also a world where they can live intoxicated in joy. In other words, it is a world where all things move when human beings move; all things halt when human beings halt. While human beings move and halt together, the Creator God also moves and halts accordingly. It is the ideal garden where the reciprocal relationship between God and man transcends and brings true oneness.</p>
<p>God wanted men to be one with Him like this. Yearning for the time when, after having become one, they could become intoxicated in joy centering on the amazing love, He created that kind of world. However, we know very well today that because of the fall of man, this became mankind&#8217;s grief, as well as the grief of Heaven. From the fall until now, they have been contributing to the sorrowful history that has been increasing that grief.</p>
<p>What then is the greatest hope of God&#8217;s dispensation being conducted today in relationship to this earth? It is to re-establish humanity, who now have fallen parents, on the side of God and make it possible for God to proclaim that He is their Father and they are His children. You must clearly realize that ushering in that kind of day is the historical hope of fallen humankind and the natural hope of Heaven.</p>
<p>When you reflect and probe into yourselves after putting yourself before the heavenly laws, you will feel that there never was a time that you achieved harmony centering on the love of God. As true children, you can say, &#8220;Father!&#8221; You should have led a life of faith governed by Heaven. Yet you will feel that you have failed to do this. Now, centering on one time and hour, you should be able to call God, &#8220;My Father!&#8221; Changing yourselves and igniting the heart of the Father, you must proceed until you reach the position of making a new parent-child relationship with God centering on love.</p>
<h3 align="center">The Cause of the Grief and Lamentation of God</h3>
<p>You must feel in your minds and daily lives that the Father is exerting Himself to help human beings experience and create the parent-child relationship. Based on what standard would the fulfillment of our ultimate hope, being raised amid the grace of God, come to fruition? This is determined by how much we have lived for the sake of restoring the parent-child relationship between God and mankind on earth. This is the ideology of creation. We can find our worth according to how much we have practiced this in our living environment.</p>
<p>Why is God sorrowful toward the earth? Why is God lamenting over the earth? God is not mourning because of Satan. He is not mourning only because He dislikes evil and there are many sinners. The real source of God&#8217;s sorrow and lamentation is the fact that He could not say to humanity, &#8220;You are My beloved children.&#8221; He could not hear the voices of these sons and daughters crying out, &#8220;My Father.&#8221; You have to understand that the real sorrow of God is not being able to possess an environment where He can be welcomed.</p>
<p>Today we call out to God, &#8220;Father!&#8221; However, there are many types of fathers to whom we may call out. There are true fathers and false fathers. This is because humanity has fallen.</p>
<p>The original True Father that humanity must call is the master of eternal life, the center of the ideal, and the center of all human happiness. This is the reason we can cut off the evil that is infiltrating our minds and call Him &#8220;Father.&#8221; When we can carry out the will of the Father in action, there is no additional need for the Kingdom of Heaven. Yet because of the fall of men, we have lost all this. Accordingly, fallen men are placed on the fateful road where they must inevitably seek after the original True Father.</p>
<p>You then must give some thought to the question of what content you have when you are calling the Father. Moreover, you must understand what kind of person is the Father whom you are calling.</p>
<p>The Father that we call &#8220;True Father&#8221; is the one who has been fighting for 6,000 years without any rest. Persevering through countless difficult passes throughout the course of dispensational history, He has been exerting Himself to find that one person: you. Furthermore, you have to realize that He is the Father who is feeling the greatest sorrow and sadness beyond what any human being on earth can feel. You have to understand that to what degree we feel this is more important than anything else.</p>
<p>If there is someone who calls out, &#8220;Father!&#8221; out of a true and sincere heart, he will feel the sorrow and sadness of God. The agony of God will be conveyed to that person. When there is an exchange between God and men, when we transcend ourselves to accomplish the great ideology of the heavenly laws, we can finally develop an eternal relationship with God centering on life. You have to experience this state of existence.</p>
<p>You probably feel that, at present, you do not have a perfect relationship with God. However, God and you are connected in heart and in reality in an eternal relationship. There is no way to free oneself from this relationship. Therefore, as you feel these kinds of things, you have to hope for the moment that you can call out, &#8220;Father!&#8221; from the position of true sons and daughters.</p>
<p>I repeat: the hope of humanity, the hope of all things and the hope of God is for human beings to stand in the position of true children and call out, &#8220;Father.&#8221; Therefore, on earth, as the true children of God, we must break through the fate of restoration. If there is one thing for which we might wish, it is to restore the parent-child relationship with God centering on love.</p>
<p>You must feel that the heartbreaking situation and sorrow of God penetrate deeply into this earth. God&#8217;s sadness fills and overflows this earth. You must stand in the position of the Father and build the altar of restoration. You are to restore the position of God&#8217;s son. What must you do? You must love the Father. Being concerned about the Father&#8217;s situation in His place, you must exert yourself until you can call Him, &#8220;My Father!&#8221; while you meet heart to heart.</p>
<p>Among the fathers that people call upon, there is another person&#8217;s father, there is a stepfather, and there is a True Father. Although among the believers of faith today some call God, &#8220;Father,&#8221; often this father is not the True Father, but is either another person&#8217;s father or a stepfather.</p>
<h3 align="center">The Position of Existence<br />
and the Responsibility of Humankind</h3>
<p>This is not God&#8217;s desire. The wish that God has is for humankind to set all the conditions of restoration and bring to pass the one day when they can call God &#8220;True Father.&#8221; God has been wished for this for 6,000 years. Therefore, you have to understand that God is working hard for this earth. He has been battling for the sake of this earth while crossing an unspeakably miserable course. Now we must attend this Father. We must reflect upon ourselves, before the eternal Father, whether we are leading selfish lives in the position of an enemy.</p>
<p>You who have come searching for the path of ordeals that others avoid! You who have been found after 6,000 years of Heaven&#8217;s work! As sons and daughters of the True Father, you have to take on the Father&#8217;s unfinished tasks. You must become the representatives of Heaven who can fight against Satan, even until the end of time. Moreover, for this sake, you should be able to completely present yourself to the Father and say that you can inherit a new mission. In your mind you must envision each step taken by the Father. Even if you cannot take responsibility for all of the Father&#8217;s suffering and worries, you must be able to attend the Father in your hearts.</p>
<p>What then is the source of the bitterness and grief of God? Christianity today thinks that God dwells in glory, but this is not true. If humankind does not believe in and support Him, then God&#8217;s will cannot be realized. This is the reason even now God anxiously longs for humankind to fulfill their responsibility. Therefore, you must establish the heavenly laws on this earth, actualize the heavenly kingdom of glory, and materialize God&#8217;s eternal ideal of goodness in this universe.</p>
<p>No matter how hard God tries to fulfill the will, He cannot do it alone. Moreover, Satan cannot stand in the position of goodness, no matter how hard he tries. Unless humankind saves him, he has no choice but to remain in the position of evil for eternity. This is not true with men. They can become glorified before the Father. On the contrary, they can also stand on the side of Satan and confront Heaven.</p>
<p>Hence, humanity is more fearful than both God and Satan. Without men, God&#8217;s will cannot be realized. Moreover, without men, Satan&#8217;s conspiracy also will be frustrated. Similarly, you must understand that the accomplishment of the will or fulfillment of sin rests not with God or Satan. It depends on human beings.</p>
<p>God agonized over human beings as He watched their actions. It is they who must believe in God&#8217;s ideology regarding the will of Heaven and the ideal world of goodness. It is they who must bring them to pass. You have to understand that this is where God&#8217;s sorrow and anguish lie.</p>
<p>If there is something we want, then it is calling God &#8220;Father&#8221; from the position of true sons and daughters. If there is just one person like this among the thirty million people, a way to their survival will be opened. The universal event will take place centering on that person. The reason is that if there is someone who can represent the people and the universe and call God &#8220;True Father,&#8221; then he can bring out the will of God. We must understand this today. At the same time we understand it, we must also believe in it.</p>
<p>Until now, we also have suffered many difficulties as we passed through the road that is different from the ones upon which others travel. We also have passed through the course of the cross. There must have been circumstances in which angels showed concern over the path you walked, but this is not the problem. The bigger problem is how we can go before the Father, Who has been concerned about our difficulties and situations. Our own sorrows are not the problem. Our sadness, suffering and cross are not the problem. The problem is whether we have truly become the people who deserve to receive comfort for our difficult circumstances thus far, as we go toward the position where the foundation for the greatest victory is laid. This is the position where human ideology and Heaven&#8217;s ideology come together as one.</p>
<p>What position are we in today that we can call God &#8220;True Father&#8221;? A true father and true son must have a lineal relationship. We must have the relationship that cannot be separated in any way, the relationship that can naturally bring unity, the relationship built through flesh and blood. When we see from this position, we can learn that we have a lineal relationship with God. This is the reason we can call God &#8220;True Father.&#8221;</p>
<p>Humankind fell. If they had become God&#8217;s direct children, centering on eternal goodness and the love of Heaven, by fulfilling their responsibilities, could anyone have invaded them and caused them to fall? You have to understand that human beings are the substantial embodiments that possess this kind of hope.</p>
<p>Where are you dwelling today? You dwell in the satanic realm, while you possess the heavenly relationship with God. Even as you have the relationship of direct children that God allowed, you also have the relationship of the fall with Satan.</p>
<h3 align="center">The Purpose of the Coming of Jesus<br />
and the Value of the Words of Truth</h3>
<p>Who is the person who is to come to save humankind? That person not only represents humanity; he is also the master who has a relationship with God that can never be severed. The one who came to the earth with this relationship and mission was none other than Jesus Christ. This is why he said he was the son of God while he spread the gospel. Moreover, he said that he was one with God.</p>
<p>This is an amazing proclamation. These are words that cannot be found in average people. Because Jesus Christ came with the lineal relationship with God centering on love, as the unprecedented center of history, he had to create a new history of transition. In this respect it can be said that the flesh and blood of Jesus are the flesh and blood of the Father. Everything about him belonged to the Father. God and Jesus are joined in this unseparable relationship.</p>
<p>Why did Jesus have to be this kind of person? Because fallen humankind was born in the lineage of sin, God had to send one person to this earth who could engraft humankind with the flesh and blood of the Father. Due to this need of the dispensation, Jesus had to come to this earth.</p>
<p>Nonetheless, though Jesus came to this earth, no one believed in him. Thus, Jesus eventually had to bear the cross. On the day before the crucifixion, he held a final banquet with his disciples and said that they had to eat his flesh and blood. What he meant by this is that the minds and bodies of human beings must move and act in unison with the flesh and blood of God. In other words, humankind is to realize the ideal of oneness with God and forge a lineal relationship with God. What Jesus said was that they were to do this with him as the mediator. If these kinds of things are not brought to pass in your sphere of life, then Satan, without hesitation, will make false charges against you.</p>
<p>Human beings should unite in oneness with God, believe in Jesus who came to the earth, and relate to Jesus from the position of a friend. These issues lie with you.</p>
<p>You possess the same blood, flesh, bones, mind and body as Jesus. This becomes the grounds upon which Jesus and human beings can become one. Therefore, just as Jesus united in oneness with God, you must also become one with God and move and act in unison with Him. If this is actually completed, no one can take that away from you, no matter what they do.</p>
<p>Next we must become true sons and daughters who can call God &#8220;True Father.&#8221; Moreover, we must possess the words with which God can call us true children, and the words based upon which He can live with us. In other words, we must develop a true parent-child relationship with God. While we become God&#8217;s children by lineage, we must also cherish the words of God.</p>
<p>Jesus did not proclaim the words of this earth when he came to this evil world. Jesus&#8217; words were words of truth that had not existed until then. They represented a new ideology, different from anything on earth. They were words to introduce reforms.</p>
<h3 align="center">God&#8217;s True Sons and Daughters<br />
to Whom Satan Bears Witness</h3>
<p>Since we are beings who can call God &#8220;True Father,&#8221; we must also be able to speak the words which God possesses. Wherever God&#8217;s words fall, the realization of goodness takes place. They are the words which give rise to resurrection and re-creation. We must liquidate evil and bring about resurrection. We must possess the words that can execute the power of re-creation.</p>
<p>You must think whether the words you speak today come from you or are the words of the Lord whom you attend. Moreover, you have to think whether you possess the environment that can boast of the words of the Lord.</p>
<p>The words of Jesus can connect with both Heaven and earth. They are the words which must be connected to all created beings. Similarly, when we call out, &#8220;Father,&#8221; we should speak the words that the Father can hear, the words which can represent the will of the Father.</p>
<p>Today there are many kinds of words on this earth. There are words that are truly like words, and words that really cannot be considered words. There are also the words of truth and just plain words. Now we must possess the ultimate words that mankind seeks, the words which are related to the words of Heaven and which can help us become one with all of the creation. Otherwise, we cannot rule over the creation, no matter what we do.</p>
<p>We can say that the fall caused us to lose the words we must understand. Therefore, we must discover where are the words we should possess. In the course of history, countless people have been working hard to restore these words. We must be in accordance with human ethics. At the same time, we must possess the words which can speak on behalf of heavenly laws. You have to feel this kind of reality in your sphere of life.</p>
<p>Next, you have to become true children who can represent the life of the Father. Your life is not something that should begin and end in the present environment. Until now, living things could not free themselves from the historical relationship with the fall, and from the relationship and environment of the society. You have to understand that, in reality, living things are in the position to represent the grace of the universe, the ideology of the past and the ideology of the future.</p>
<p>In your life you have to represent God. In each of your days, you should live in glory, joy and happiness on behalf of God. The distressed heart of the Father tried to achieve the unfinished task of the eldest son, who represents the whole of humanity. He did this even at the cost of his extremely beloved Jesus Christ. Only after you can feel this heart are you proven to be the sons and daughters of God before the earth and Satan.</p>
<p>Even if you are trying to live as the true sons and daughters of God, this evil world is trying to cause you to fall down. You can understand this by observing the complex 6,000-year history of restoration.</p>
<p>Suppose that the dispensation of restoration has been progressing until now, the last era, in the end you have to establish the ideology of living with God. If there is someone who has begun this process, someone who understands what God has been seeking until now, he can comprehend the will God is trying to bring to pass. When he enters deeper into the heart of Jesus, he can feel the heart God invested in the creation, even in a handful of grass. When one encounters this heart, one can understand the heart that God has toward all things. One can even fathom the heart that He feels toward human beings.</p>
<p>After feeling this heart, what kind of person are you? You must be someone who worries and sheds tears about humankind on earth and grieves on behalf of God. You also have to become someone who can sympathize with the tribulations humanity has been suffering during the long course of history.</p>
<p>You have to become someone who can, even for a moment, feel every aspect of the many prophets and sages who took responsibility for God&#8217;s history of the dispensation on earth. You must feel sympathy for them. Moreover, you have to feel the sorrow God felt at the time of Adam and Eve&#8217;s fall. You have to become someone who can feel the heart of God, Who mourned when He lost Adam and Eve as well as losing Heaven and earth.</p>
<h3 align="center">The Road Through Which the Feelings of Heaven<br />
and the Feelings of Men Are Linked Together</h3>
<p>If there was a person who could uphold the will of the dispensation and alleviate the bitterness of Jesus in the course of history, then God vigorously promoted the will centering on that person. Many people who share sorrow with Him have been exerting themselves.</p>
<p>Noah, who came after Adam, lived for the sake of God&#8217;s will for 120 years before passing away. His life manifested the ideology of God on earth for 120 years. It connects us with the heart of God today. His life was a testimony to mankind&#8217;s existence as the Father&#8217;s children and prepared the groundwork to link us with the living environment. At the same time, his life manifested the ideology that is in line with God.</p>
<p>When you enter this realm, you can understand the position of Adam and can possess a painful heart toward God. Moreover, you can feel the heart of the grandfather, Noah, who for 120 years felt deep anguish in his heart toward faithless humankind in this world, and made many painful efforts to reveal to the ignorant people the heart of which only he was aware.</p>
<p>You should comprehend the hearts of Noah, Abraham, Isaac, Jacob, Moses, Jesus and all the central figures of the dispensation of restoration who have been exerting themselves until today. You must be able to wail and shed tears for them. If you do not deny the ideology of historical content and do not betray the historical quality of the heavenly laws, then you will feel this historical sorrow in your daily life.</p>
<p>You who have gathered here must inherit all that the many prophets and sages in history experienced as they sought to actualize God&#8217;s ideology of life. With the determination to face all difficulties, even at the cost of your life, you must become one with every person by tuning in to their hearts. In place of the historical quality, you must bring unity to the path that leads toward God.</p>
<p>As you understand that the fate of restoration is the fate of historical sorrow, you have to lead a life of sorrow. You have to understand that shedding tears over the will of God for the sake of making a relationship with Him is the way to connect the feelings of Heaven and human feelings. Now you must face yourself and ask, &#8220;Oh! God, what kind of position am I in?&#8221;</p>
<p>When you experience and pass through the same life that the ancestors led to fulfill the dispensation of God, you can understand the heart of Noah, Abraham, Isaac, Jacob, Moses and the countless prophets. Similarly, you must leave behind the tradition of having shed tears before Heaven on behalf of all people.</p>
<p>A person who has this qualification can never go to hell, no matter how much he tries. Therefore, among the Christian believers today, there must be sons and daughters who can shed tears for the people who passed away without completing the will of the heavenly principles in the past course of history. The will of the heavenly principles can be entrusted to these sons and daughters. Moreover, there must be sons and daughters who can shed tears with aching hearts on behalf of the people of this present age. There must be sons and daughters who can shed tears out of concern for the future of humanity.</p>
<p>God is looking for the sons and daughters who have undergone this situation, who are in that position now, and who can also be in such a situation in the future. Those who can cry for people whose lives are contrary to God and shed tears for history will become the heroes who can introduce the new phenomenon of recreation in the Last Days we face today.</p>
<p>If there is a couple who laments over the situation of God and cries about the new ideology, then their family will become the foremost family. Moreover, if there is a people who cling to God and cry, this people will become the central people of the new ideology. The entire love and truth of God on the universal scale will be introduced through them. If there is some gathering, group, society or nation that clings to the Father and appeals on behalf of the past, present and future, &#8220;My Father, please entrust the sorrow to us,&#8221; then no matter how strong the surrounding culture might be, it can never overcome this group.</p>
<h3 align="center">The Ideology of God and the Life of Humankind</h3>
<p>When we go forward for the sake of the will, what should the purpose of our fight be? We must fight to produce works, present and future, which are better than before. By doing so, we must restore the day when we can be immersed in God&#8217;s ideology of life and introduce the living environment where Heaven can be happy. When this is achieved, the Father who created humankind and all things, the historical Father, the Father who rules over the present and the future will take responsibility for you.</p>
<p>What must we possess next? What kind of ideology should we possess? We must connect with the ideology of God. We must stand amid the ideology of God. Although we are individuals, we must reach the position from which we can connect with the universe and with God&#8217;s entire ideology of the heavenly principles on the level of the world and universe. When we are intoxicated in this kind of ideology and are drawn into battle because of that ideology, we can proudly stand in the position where we can fight many millions of enemies.</p>
<p>What you have to understand, today, is that the earth we have been living in has not been the land that can represent the ideology of the heavenly principles. Nonetheless, we cannot let this history, which began in evil, end in evil. In the present moment, when we have passed through the evil history, we cannot simply embrace the heavenly principles and just collapse in the circumstances we are in. We must present some new ideology for the sake of future generations, whatever the cost.</p>
<p>What then is the history of goodness on the side of Jesus? It is the history of God and the history through which we have been traveling toward the will of the heavenly principles. As you can see, the entire history is contained in one event that manifests itself in reality, so we must learn the history of the past through that. Transcending the present reality, we must attain the ideology that will enable us to experience hopeful things of the future.</p>
<p>When we stand in the midst of that ideology today, we can link with everything through that ideology. Therefore, we must carefully analyze life in the present reality with that ideology. By combining its value with the ideology of the present life, we must develop the one standard that can link with the comprehensive ideology. If we do not live with that kind of standard, we cannot become true sons and daughters of God.</p>
<p>Since the time of Jesus&#8217; passing, the dispensation of God remains unfulfilled. What this means is that human beings are not putting into practice the ideology introduced through the Bible. Accordingly, to achieve everything, God has been preparing silently for 6,000 years. Because God had to remove the doubt from the earth, even if He had to lament while looking down upon the miserable world and pitiful humankind, He has been persevering without criticizing the people who denied Him and turned away.</p>
<p>Why did God persevere until today? God has established, in His mind, the one standard of comprehensive victory at a certain time. Therefore, He has persevered until now.</p>
<p>Nonetheless, the bitterness of God, Who has been persevering for a long time, will manifest itself in that place where the ideology of the heavenly principles, the universal ideology and the humanistic ideology emerge as one. This one moment is the time of the judgment. Although God gives love during the process, He judges in the end. Anticipating this kind of relationship, God has been at work until now.</p>
<p>For us, we of the Last Days, which are the same as Noah&#8217;s time of judgment, we must understand that we must become people who can represent that ideology. We must be able to connect with the heavenly ideology. We must be able to spread human ethics and the words of truth, disseminate the religion and lifestyle of Heaven, and carry on the mission of the prophet to convey the one conviction and ideology. This is the ideology that God&#8217;s sons and daughters must have through the universal ideology. If we reflect on everything through that ideology, our field of vision will broaden.</p>
<p>You must understand that when you shoulder this responsibility and step forward, the sorrow that you feel is the universal sorrow, the historical sorrow and the hopeful sorrow. You must never mourn or call upon the Father for your own sake. You must decide to single-handedly take charge of the many responsibilities on earth, and fight on God&#8217;s behalf. Feeling the difficulties of God, you must assert dignity as the tribe of God without fail. While feeling the heavenly ideology, you have to lead a life that is proper before Heaven.</p>
<p>Therefore, you have to set the one standard that can attest that you are the sons and daughters of God by blood lineage. It must testify that you are sons and daughters of God through the truth, through your life and through your work. If you cannot set this one standard, then your life of faith in the church is no more than that of a servant.</p>
<h3 align="center">The Condition of Victory that One Attains<br />
as True Sons and Daughters</h3>
<p>Those people who are not yet in the position to call God &#8220;Father&#8221; must cause the loving hands of God to reach out to them before they can call His name. Without passing through this course of salvation, one cannot stand in the position of a true son and daughter who can represent all humanity and call God &#8220;Father.&#8221;</p>
<p>Religious events or events related to lineage and human life on earth have been formulated by the heavenly principles. You must secure within yourself the central value which can criticize everything based on that ideology and usher in the day when you can boast of that value before all people. Only after seeing this kind of event take place can God conclude the history for which He has been fighting until now.</p>
<p>Until now the fight has been between God and Satan. Yet from now on, there must emerge a hero who, on behalf of Heaven and centering on the earth, can bring it down to a battle among the people and take responsibility for it.</p>
<p>In that course of conflict, what can we establish as the condition of victory? If we know whether we belong to the original Heaven or earth, to sin or to goodness, and if we have a heavenly relationship of lineage, then we must live a life of heavenly truth. This becomes an important condition for victory.</p>
<p>If we have cultivated our character through a heavenly lifestyle, a life of truth, then we can predict our own future. We can harmonize with people who have heavenly character. If God establishes one person who can be trusted, then even Satan cannot oppose it.</p>
<p>Who will worship God? They are the believers who live in the Last Days today. Who are the people who will make it possible for God to rest? It is we, the unworthy. As you can see, we have to understand that the liberation of God rests on our shoulders, in our minds and bodies. The pivotal condition of human history lies before us. We are responsible for the amazing mission that lies between Heaven and earth. Despite the fact that you do not have any place to rest assured, you should not struggle over problems of the earth. We are still in the middle of the course during which our ideas are not to seek comfort for ourselves.</p>
<p>After introducing the laws of Heaven to earth and winning the victory, we can rest in peace. Today you are in the middle of this course. Where would this take place? Although there are advanced nations that boast of the superiority of their people, what merits pride is the question, who is closer to God.</p>
<p>What we have to understand today is that as long as we live with the awareness, &#8220;I am of the people of God; I am Heaven&#8217;s citizen; I am a child of Heaven,&#8221; then we will certainly go through a course of conflict. Because this world is evil and because this society has an evil history, this world will not readily welcome that kind of person.</p>
<p>Therefore, we must obtain the compassionate feeling of love which can unite things that are difficult to unite, like water and fire. In other words we must obtain the heavenly content that can move our physical bodies, attain the truth and then achieve the living environment and character. We then obtain love that can connect with the ideology. We must penetrate this world of evil. These conditions are the conditions of the judgment of the universe. They represent the heavenly principles in the Last Days of the universe.</p>
<p>Have we then today completed our responsibility and the mission of the direct line? We have to think about whether we can assert the power of life before the whole universe. Have we obtained the truth that can replace the judgment of God, the character that can connect with the ideology of life, and the love linked with the ideology of God?</p>
<p>If there is such a person, then when he moves, all things will move with him. When he mourns, all things will feel sorrow. With this feeling, you must stand before Heaven and in awe you can say, &#8220;Father, please eliminate the bitterness of the 6,000 years through me on this day. Please subjugate Satan, who has been confronting you for 6,000 years, through me.&#8221;</p>
<h3 align="center">The Road Humankind Must Travel</h3>
<p>After creating men before all things in the Garden of Eden, God has not witnessed the day that His words of blessing, &#8220;Have dominion over all things,&#8221; were fulfilled. We must exert ourselves for the sake of the fulfillment of these words. When that is achieved, everything will become glory to the Father. From that point on, new love through the new ideology, new character based on new life, and new words and truth can be obtained. We can embark as children of a new lineage.</p>
<p>When we observe your actions, we find that at present the ideology of hope, the historical ideology and the practical ideology are seeking you. Not only that, before us beckons the one day when the glory of sons and daughters of the direct line in Heaven and on earth can be demonstrated through you. Yet, in spite of all this, you are ignorant of these facts. Not knowing your proper position, you bypass the environment in which you should dwell, the hopeful environment where you must carry on the struggle.</p>
<p>The road we must travel is actualizing the whole ideology of God on earth and forming the foundation of heavenly glory where God can rest. We must do this at any cost and by any means. At the same time, it is concluding all the fights of the earth. To do this, you have to fight on with love.</p>
<p>You who are going in search of obtaining this ideology must possess the love that represents the universe. Moreover, you have to attain the practical ideology of life and the power to carry it out in action. When we step forward with this kind of love and power of practice, Satan, who has been confronting Heaven until now, will naturally submit.</p>
<p>Today you have to understand the will of God, Who wishes for the appearance of children who cherish the desires of God. We have to, first, feel the tragic sorrow and distress of God and offer all of our effort to liberate Him from them. By doing so, you must be able to march forward toward the one will of hope. You must become the leaders who can represent the 600,000 Israelite people who headed toward the blessed land of Canaan. Today humankind is fighting because a tranquil and free living environment is not realized. They must go out to the wilderness and combat the seven faithless Canaanite tribes. You also have to pass through this kind of course of conflict.</p>
<p>Now Heaven is thinking about each of you, asking whether you are a historical criminal, an apostate, an opportunist or a substantial person who can take responsibility for history, the present and the future. You have to understand that Heaven is relating to you based on these conditions.</p>
<p>What then are you to do now? You have to become sacrifices that can be offered to Heaven today. What is a sacrifice? It has to be divided. Historically, there were those that were divided and those that were not divided. The ones who were not divided could not become sacrifices. In the future, there will be sacrifices on the national level and on the world level.</p>
<p>People who live with this kind of idea of sacrifice must not live for the sake of their individual selves. They must live for the sake of the society, the nation and the world. You must not be defeated in the place where you become the sacrifices. Even when you are divided in the place of conflict, you must be able to say, &#8220;Oh! Hallelujah! Glory of the Lord! Today is the glorious day when God is liberated from the bitter grief of 6,000 years.&#8221;</p>
<p>You must boldly step forward in place of Joshua and Caleb of the past. You have to become the victorious chosen people of Heaven without losing the standard of faith in the wilderness, like the first chosen people. Having done this, you must endure within the will and enter the blessed land of Canaan. Revering the heavenly principles, you must stand in the position of Joshua and Caleb who have completed their responsibilities and bring the victory. By doing so, you must become true sons and daughters who attend the Father eternally from the position of having reaped the victory.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please let there emerge many people on this earth who can say, &#8220;Father, I believe it. I am here, so Father, please show it to me,&#8221; when the beloved Father calls us. Now is the time when, longing for this day, all things are lamenting. The Holy Spirit is lamenting, and countless believers are also grieving. Therefore, please lead us to understand that we must not cry about our own misery today. We must abandon all our secular aspects.</p>
<p>We have received the conviction that can link us with reason, so please allow us to actualize this. Father, we sincerely hope that You will bring to pass the joyful day, which is significant in Heaven&#8217;s dispensational history, by letting us mature ourselves as the heavenly sons who can relate with the heavenly principles and the universe, and have a reciprocal base with their value.</p>
<p>Please guide the sons and daughters who have gathered here to become true sons and daughters who can call You &#8220;True Father&#8221; now. Please guide us so that we can eventually proclaim that we fought not for our own sake but for the sake of the Father. Allow us to represent the entire value and cultivate heavenly character so that we can be victorious in living a heavenly life and reaching heavenly love. Please guide us to become sons and daughters who can confront Satan powerfully.</p>
<p>We, the unworthy, hope that we can now serve the True Father. We earnestly entreat You to guide us to not become the prey of Satan. We pray all these words in the name of the Lord. Amen.</p></blockquote>
<p><a name="*"></a><sup>*</sup> Korean unit of measure for distance. This refers to the length of the Korean peninsula.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html" title="Permalink to LET US BECOME THE TRUE SONS AND DAUGHTERS OF THE TRUE FATHER" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/when-will-we-stand-before-god.html" rel="prev"><span class="meta-nav">&laquo;</span> WHEN WILL WE STAND BEFORE GOD?</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html" rel="next">LET US JOIN IN THE PURSUIT OF THE HOMELAND <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,185 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US CELEBRATE CHRISTMAS ON BEHALF OF HEAVEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-887 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-887" class="post-887 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US CELEBRATE CHRISTMAS ON BEHALF OF HEAVEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:33:10+01:00"> <a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:33:21+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<p align="center">December 25, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</p>
<p style="text-align: center;"><em>Luke 2:1</em><br />
<em>In those days Caesar Augustus issued a decree that a census should be taken of the entire Roman world. </em><br />
Prayer</p>
<blockquote><p>By virtue of Jesus&#8217; birth, the providential will that God had been working to fulfill for the 4,000 years since Adam had come to pass. Moreover, we can also say that the wish of our ancestors in the history of the dispensation of restoration since the fall of Adam was also realized through Jesus&#8217; birth. We must think again about the fact that Jesus&#8217; birth was the moment when both the will of God and the will of humanity were accomplished.</p>
<p>Since the birth of Jesus, 2,000 long years of history have passed. Now we feel we are living in the same kind of historic, universal and intense period as the time when Jesus was born 2,000 years ago, when the will of God and the will of humanity were realized.</p></blockquote>
<h3 align="center">The Meaning of the Birth of Jesus</h3>
<p>Although Jesus was born in the small, bloody body of a baby, he was the incarnation who could represent the Will of God. His crying voice and movements represented God&#8217;s grief of 4,000 years. They manifested the pattern of all the things that God tried to carry out on the earth. They expressed the sorrow suffered during the 4,000-year course of history when indemnity was being paid for the sins of humanity. Therefore, through his birth, we could usher in a scene of joy when a new history of goodness began.</p>
<p>When we think about how, due to one man, Jesus, the worries of God, the worries of humanity throughout the course of history and the worries of that time could all be gotten rid of, it is clear that Jesus was truly an immense personality. We stand in awe of him. However, in his time, there was no one who bowed before him with utmost sincerity on behalf of the heart of the Father, the hearts of all people and the countless prophets. You must feel indignant about this.</p>
<p>What kind of mind-set then is appropriate for those of us who have gathered to celebrate this birthday of Jesus? We must be able to represent the heart of the Father and the hearts of the countless prophets who came throughout the course of history. Moreover, we must feel the desire to offer a gift to baby Jesus on behalf of the hearts of the chosen people, who longed for the promised day at that time and yearned and prayed for the Messiah. You have to understand that only then can we comfort God&#8217;s heart and the hearts of the faithful believers of that time. Though history has passed by, you can attain the right to participate in the glory of the Father with the qualifications of the chosen people in place of the Israelites.</p>
<p>Furthermore, you must offer gratitude with the feeling that the birthday of Jesus is the day that all things in Heaven and earth can express joy. It was the day of God&#8217;s liberation from grief, as well as the day that the wish of all people was brought to fulfillment. While doing so, you must offer the gift you have prepared through your life of faith, with a nervous heart. With the heart that represents the heart of Father, the historical heart and the heart of the time, you must bow before Jesus and congratulate him.</p>
<p>Let us then examine who worked and how hard they worked for the birth of Jesus Christ. First, God worked for 4,000 years. Our ancestors, many prophets, wise men and heroes also worked hard. Moreover, the followers of Judaism, who represented the chosen people of the Israelites, also toiled and offered their lives. Similarly, until the birth of Jesus, you can find many hidden historical efforts that do not seem to have any direct relationship to it.</p>
<p>That is not all. Jesus lived his thirty years of life after coming to the earth. Since then, 2,000 dispensational years have passed for the sake of the will of the heavenly principles. Here we can find the historical grief of the past that existed before Jesus, as well as the 2,000-year history after Jesus that has been added to it.</p>
<p>The hope of Jesus, who was born for the sake of historical liberation, the liberation of the period, and the liberation of the future, has not reached fulfillment even now, 2,000 years later, because of the mistakes of the people during his time. Therefore, the sorrow of the 2,000 years after the death of Jesus has been piled on top of the sorrow of the 4,000-year history before his time.</p>
<h3 align="center">God&#8217;s True Intention for Having Jesus Come</h3>
<p>What kind of mission do we bear on our shoulders today? We bear the mission to alleviate the bitter grief of God which remains, even after Jesus came and passed away. Likewise, we are living in an intense time when we are faced with the will of God&#8217;s dispensation of salvation for the last time since the creation of the world.</p>
<p>In this moment of Christmas, if we are to express congratulations and take the responsibility to return the grace of celebration to Heaven, then we must embrace the heart of Jesus, who was concerned about this world. We must embrace the heart of God, who felt concern as He guided the dispensation for 6,000 years. We must build the altar of celebration for the glorious birth that came into being for the sake of the will of the dispensation. Otherwise, there is no way we can manifest our value as people who have accomplished, on earth, the glorious will in which God has been celebrating the birth of Jesus Christ until now.</p>
<p>Moreover, we who have prostrated ourselves before the altar of the Father must be able to represent the heart of Mary, who celebrated the birth of Jesus before Heaven 2,000 years ago. At the same time, we must go one step further and represent the blissful heart of God, who allowed the birth of Jesus. We must represent the hopeful heart of the prophets who worked hard for several thousand years until the time of Jesus&#8217; birth and actualize their long-cherished will.</p>
<p>Similarly, we must feel the sorrowful heart of God, Mary, Joseph and the shepherds at the moment when Jesus was born on earth as the one who was prepared to liberate the historical heart of the whole. We must feel the heart that agonizes over the fact that Jesus had to lie in a horse manger. Making the preparations to greet Jesus, who is coming with a new determination, we must step forward as the prepared people of glory about whom God can be happy. Otherwise, you must understand that Heaven&#8217;s intention for having us celebrate Christmas cannot be brought to pass.</p>
<p>Until now there were many people on earth, but it is not an exaggeration to say that there was no one who truly celebrated the birth of Jesus Christ, the one who came with the mission to fulfill the whole will of God&#8217;s dispensation. What kind of mind-set then must we have today? We must be able to represent the heart of God. We must be able to represent the hearts of the many millions of believers, heavenly soldiers and angels in Heaven. We must cultivate the resolution and sense of responsibility to put to rest all the bitterness and grief of God for Jesus. Similarly, if we do not offer bows of congratulations with a heart that prepares for the day of hope that will come in the future, then the hope of God will end with us. It will not be transmitted to our descendants. You have to clearly understand this.</p>
<p>Although, at the time of Jesus, all the people looked upon Christ, they did not think about the will of the dispensation that would unfold after Christ. Although they watched the birth of Jesus, they did not think about the will of God that would come about after his birth.</p>
<p>Therefore, although it is good to celebrate the birth of Jesus from the position of the Israelites, it is better to celebrate his birthday by figuring into the picture the will of the dispensation after the coming of Jesus; in other words, by substantially understanding the whole value of Jesus.</p>
<p>The birth of Jesus Christ 2,000 years ago begot the result of increasing the sorrow and grief, because of the faithlessness of the followers of Judaism. What must we do today to alleviate all this on behalf of the 6,000-year history? We must become the prepared incarnations who can remove all historical sorrow. Furthermore, we must also become connected to the heart of Jesus who is to come. Only then can the significance of our celebrating the birth of Jesus go beyond us and become linked with the eternal, historical ideology of our descendants.</p>
<h3 align="center">The Believers of Judaism Did Not<br />
Understand the Will of God</h3>
<p>As you can see, although God wanted to be congratulated for the birth of Christ, He did not want to be congratulated only in the present moment. He wants someone who possesses the ideology that can pierce through the past, the present and the future to offer congratulations with a heart that can relate with His heart.</p>
<p>What kind of people then should you be? You must become people who can represent the heart of God, Who toiled for the birth of Christ. Moreover, you must represent the hearts of the prophets and patriots who came before Jesus and have been exerting themselves in the spirit world since then.</p>
<p>How then must God&#8217;s heart have been as He looked down upon the birth of Jesus? Angels prophesied the birth of Jesus to the shepherds, but there was no earthly person who prophesied the birth of Christ. This was God&#8217;s sorrow. If there had been people who watched the birth of Jesus and proclaimed it as the advent of the Messiah in place of the angels then, then, just as there was celebration of the birth of Jesus in Heaven, the same celebration could have taken place on earth. On the contrary, we know that because the believers of Judaism, who represented the Israelites, did not accomplish this mission, Jesus had to die on the cross.</p>
<p>Therefore, you have to reflect upon whether you are capable of paying indemnity for the condition of faithlessness made by these ancestors and can actualize this will with a sense of responsibility. Moreover, when we reflect upon whether we can actualize this task and even pass that will to our descendants, we have to realize how intense is this moment today. We must reflect, and make a new determination and resolution.</p>
<p>If the Israelites at that time had connected with the heart of the angels and represented the rejoicing heart of Heaven, if they had embraced the heart of God who mobilized and sent the angels, Jesus would never have died on the cross. Had the chosen people been prepared to face death to carry on the fight of testimony and had shouldered the cross of Jesus to fulfill their responsibility, Jesus would never have died on the cross. Since the believers at that time listened to the prophecy of the shepherds and the testimony of the three wise men and John the Baptist, they should have been able to fight for the faithless people with a celebrating and glorious attitude from the day of the birth of the historical Messiah for which humanity had been yearning. If there were such believers, then the sorrow of having lost Jesus would not have been transferred to us.</p>
<p>Heaven made this move on that day, in that hour, 2,000 years ago. Yet human beings on earth have not been able to stand before Heaven with this kind of heart even after 2,000 years. As you have gathered with the intention to celebrate the birth of Christ on behalf of Heaven, you must understand clearly that this is the source of God&#8217;s sadness.</p>
<p>This moment when we are celebrating the birth of Christ, God will examine whether He can find the same ardent heart He possessed within each of you. He felt irrepressible joy over the birth of Christ, for whom He had yearned as the only hope and about whom He had given prophecies through the angels and shepherds.</p>
<p>If we can receive this day with this kind of attitude, then even if we did not directly witness the birth of Jesus, and even if 2,000 long years of history have passed by, our heart can transcend the historical distance to connect with the heart of God and the angels. You have to understand that now is this kind of historical moment. If you have truly reached this state of heart, then you will feel the welling up of sorrow.</p>
<p>We are the pitiful people who cannot testify to the glorious Messiah with overflowing joy. Instead, we must testify to the sad story of how he died on the cross. You will feel this today.</p>
<p>When you consider this, you must come to the realization that throughout the passage of the long 2,000-year history until now, countless believers have celebrated this day. Yet there is almost no one who truly celebrated for the heart of Heaven. Moreover, in regard to the issue of restoring this day through indemnity on behalf of the 2,000 years, you must now step forward in their place and testify to the death and sorrow of Christ. Just as 2,000 years ago, believers testified to the imminence of the arrival of Christ after listening to the voices of the angels, wise men and shepherds. Only when you realize that it is your fate to accomplish this task will you not be ashamed to stand before Jesus, whose birth was historic.</p>
<h3 align="center">The Way to Truly Celebrate the Birth of the Messiah</h3>
<p>You who have gathered here today with a new will! You must think about the situation of Jesus and understand that inside Jesus&#8217; heart, there was the penetrating sorrow of the 4,000-year history before his birth. Moreover, you have to understand that penetrating deeply into this day is the sorrow of the thirty years of his life after his birth, as well as the sorrow of the 2,000 years after he died with the words of promise that he will return.</p>
<p>What kind of mission then must we fulfill today? You must, first, make a deep reflection as to whether you have made it possible for God to comfort you with the same sorrowful heart He felt toward Jesus. You must stand in the position from which you can take over the sad situation of Jesus. Next, you must become people who can receive comfort from all the prophets and patriots who came in history and who can be guarded by and receive the testimony of the heavenly soldiers and angels.</p>
<p>You must represent the value for which Heaven mobilized all heavenly soldiers and angels at the time of the appearance of Jesus. You must be able to grab hold and give comfort to Jesus with a heart that can represent the concerns of the countless prophets and patriots at the time of Jesus&#8217; birth. If you have not made this kind of preparation and determination, you cannot inherit the will and ideology of the dispensation of the present and the past centered on the day of Jesus&#8217; birth.</p>
<p>Due to his death, Jesus&#8217; intention to realize the purpose of God&#8217;s dispensation of the 4,000 years was prolonged 2,000 more years. It became a 6,000-year history of restoration. The hope of the ancestors, which should have been fulfilled through Jesus, was prolonged for 2,000 years. The concerns of many apostles and believers and millions of angels were added to the concerns of God. You should feel a sorrow that is more intense than that of God, Who handed Jesus over to the cross, and that of Jesus, who was walking toward the cross. You should feel the sorrow of the millions of believers and angels in Heaven at the time of Jesus&#8217; death, as well.</p>
<p>By doing so, while reflecting on history, you alone must make preparations, on behalf of all things of creation, to alleviate the sad and grieving heart of Heaven and earth. You must earn the qualification to celebrate Christmas in the way Heaven wants by longing for the one day of the Second Advent and by making thorough preparations. Only when you understand the ideology of the coming Messiah and make the determination to shoulder even the mission of the angels to testify when the will is manifested, can you celebrate Christmas in the way Heaven wants.</p>
<p>You, who have gathered here today to conduct this service of celebrating the birth of Jesus, must realize that only when you eliminate the grief of God, Jesus and the millions of heavenly soldiers and angels can God finally behold the one day of eternal celebration. You must become qualified to inherit the will of Heaven and materialize it on the earth. God can then celebrate eternally.</p>
<p>As you can see, today you stand in the important focal point of history. Therefore, you are living in a time when you must prepare for the one day of hope when Christ returns. You must reflect upon the birth of Christ and celebrate it as historical witnesses and the heirs of God&#8217;s dispensation. Only then can God look down upon you and be liberated from all the bitterness and grief that have plagued Him until now. Moreover, while you feel the joy of accomplishing the will of Christ in his place, at the same time, Jesus can also return his glory to God because of you.</p>
<blockquote><p>This is a summary of an article in Sel-Gyo Mal-Seum Nae-Yong Yo-Yak, published by the Witnessing Department of the Seung- Hwa Youth Association.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html" title="Permalink to LET US CELEBRATE CHRISTMAS ON BEHALF OF HEAVEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html" rel="prev"><span class="meta-nav">&laquo;</span> GOD&#8217;S POWER IS REVEALED WHERE ONE HEART AND ONE WILL HAVE BEEN REALIZED</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/the-meaning-of-the-trinity.html" rel="next">The Meaning of the Trinity <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,251 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let Us Climb over the Hill of Historical Misfortune &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-896 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-896" class="post-896 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Let Us Climb over the Hill of Historical Misfortune</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T16:02:04+01:00"> <a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T16:07:45+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
January 19, 1958</h3>
<p style="text-align: center;"><em>Matthew 23:27-39</em></p>
<p style="text-align: center;"><em><span id="en-NIV-23946" class="text Matt-23-27"><span class="woj"><sup class="versenum">27 </sup>“Woe to you, teachers of the law and Pharisees, you hypocrites! You are like whitewashed tombs, which look beautiful on the outside but on the inside are full of the bones of the dead and everything unclean.</span></span> <span id="en-NIV-23947" class="text Matt-23-28"><span class="woj"><sup class="versenum">28 </sup>In the same way, on the outside you appear to people as righteous but on the inside you are full of hypocrisy and wickedness.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23948" class="text Matt-23-29"><span class="woj"><sup class="versenum">29 </sup>“Woe to you, teachers of the law and Pharisees, you hypocrites! You build tombs for the prophets and decorate the graves of the righteous.</span></span><span id="en-NIV-23949" class="text Matt-23-30"><span class="woj"><sup class="versenum">30 </sup>And you say, If we had lived in the days of our ancestors, we would not have taken part with them in shedding the blood of the prophets.</span></span><span id="en-NIV-23950" class="text Matt-23-31"><span class="woj"><sup class="versenum">31 </sup>So you testify against yourselves that you are the descendants of those who murdered the prophets.</span></span> <span id="en-NIV-23951" class="text Matt-23-32"><span class="woj"><sup class="versenum">32 </sup>Go ahead, then, and completewhat your ancestors started!</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23952" class="text Matt-23-33"><span class="woj"><sup class="versenum">33 </sup>“You snakes! You brood of vipers! How will you escape being condemned to hell?</span></span> <span id="en-NIV-23953" class="text Matt-23-34"><span class="woj"><sup class="versenum">34 </sup>Therefore I am sending you prophets and sages and teachers. Some of them you will kill and crucify; others you will flog in your synagogues and pursue from town to town.</span></span> <span id="en-NIV-23954" class="text Matt-23-35"><span class="woj"><sup class="versenum">35 </sup>And so upon you will come all the righteous blood that has been shed on earth, from the blood of righteous Abel to the blood of Zechariah son of Berekiah, whom you murdered between the temple and the altar.</span></span> <span id="en-NIV-23955" class="text Matt-23-36"><span class="woj"><sup class="versenum">36 </sup>Truly I tell you, all this will come on this generation.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23956" class="text Matt-23-37"><span class="woj"><sup class="versenum">37 </sup>“Jerusalem, Jerusalem, you who kill the prophets and stone those sent to you, how often I have longed to gather your children together, as a hen gathers her chicks under her wings, and you were not willing.</span></span><span id="en-NIV-23957" class="text Matt-23-38"><span class="woj"><sup class="versenum">38 </sup>Look, your house is left to you desolate.</span></span> <span id="en-NIV-23958" class="text Matt-23-39"><span class="woj"><sup class="versenum">39 </sup>For I tell you, you will not see me again until you say, Blessed is he who comes in the name of the Lord.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23958a" data-link="[&lt;a href=&quot;#fen-NIV-23958a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+23:27-39#fen-NIV-23958a">a</a>]</sup></span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please forgive us for not having felt the love when we came before the Father&#8217;s throne. Please forgive us for not have exerted ourselves for the sake of the world.</p>
<p>Please allow our hearts to feel sorrow when we fathom the Father&#8217;s course of tribulations. Please allow our hearts to feel hardships. Please let us become the sons and daughters who can feel the pain.</p>
<p>We know that we have not become these sons and daughters. Father of love, please allow us to possess the life of Heaven in this hour. We are sons and daughters who have survived and gathered here in search of Heaven. Even if we cannot stand before the Father because of all our sins, we have fallen down prostrate, observing the blessed grace of the Father who built the altar of blood while fighting for 6,000 years. Please forgive us.</p>
<p>Based on this, my beloved Father, I pray earnestly that You will allow our minds to bring joy to the Father. Allow our bodies to bring joy to the Father. Please let us offer all of this hour as the Father&#8217;s own.</p>
<p>Please penetrate into each of our hearts now, and allow us to search for the purpose of the demand and center of the desire found deep in our hearts. If we have some selfishness, please allow us to be awakened to ourselves and realize we have not established the center of Heaven before the will of the dispensation. Please guide us so that we can examine ourselves and not violate the will of Heaven.</p>
<p>Please let the desperate heart of adoration be the only thing that fills the minds and bodies of Your sons and daughters who have gathered here. Let this be the heart which will enable us to admit we are sinners, to prostrate ourselves before You and to report everything frankly. Let us repent in tears before the Father.</p>
<p>My Father, I earnestly wish that, by doing so, You will let the work of resurrection take place centering on that mind. We have prostrated ourselves before the knees of the Father, Who has been guiding us until this hour today. We know that the conditions of the appeals we make here are not all conditions of loyalty. Father, please let us open the gates to our hearts and be immersed in the will of Heaven. Please allow us to be embraced in Your bosom of love. By doing so, we wish that You will let us experience the Father&#8217;s heart and emerge as the glorious ones for which the Father hopes.</p>
<p>Although we have come together now as individuals, the whole gathering must become one live offering before the Father. Even if our historical enemy, Satan, envies us and is obstructing us, Father of love, we earnestly beseech You to protect our sincere hearts, which long to be the Father&#8217;s children.</p>
<p>Today is a holy day, so please bless these people. Drive us on, we who have come forward to save these people who are so ignorant of their path. Let us win victory in the last battle of restoration in the Last Days and become the central people who fulfill the will of Heaven.</p>
<p>Father, please take charge of everything this hour. Is there something about which we are knowledgeable? Father of love, we pray You will let us forsake everything this hour and offer all as the Father&#8217;s own.</p>
<p>We know that today there are many sons and daughters who are making lonesome appeals to the Father in the countryside. Wishing that You will work with them wherever they are with equal grace and bestow a great blessing, I pray all these things in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech I want to briefly reflect upon with you is <i>“Let Us Climb Over the Hill of Historical Misfortune.”</i> I will speak briefly on this topic.</p>
<h3 align="center">The Destined Path of Misfortune We must Cross over</h3>
<p>You know very well that although many people are living in this world today, a destined path of misfortune lies before them that they have no choice but to cross over. Even in Christian thought, there is judgment in the Last Days. You know very well that, consequently, many Christians have lived their life with the concern of how to cross over this hill of death.</p>
<p>When we examine ourselves, who are living in the present era, we find that the more we recognize the fact that we have a sad fate we do not even understand, the more we feel that grave problems can be found in the path before us, in our surroundings and in our minds and bodies. This mission to break through this unfortunate environment lies with us today. This is the mission for the rest of our lives. The day you can overcome this sad environment and step over the unfortunate history of the past is the new day when you can greet the garden of hope.</p>
<p>When we, who are in this point in time, look back at history, we can see that the hill and environment of misfortune that we now face are not just the current situations. You have to understand that through the 6,000 long years of history, our ancestors also walked the course of misfortune.</p>
<p>You must trace back in history and feel that our ancestors could not escape from the position of misfortune. At the same time, even in their relationship with the Creator, people could not escape from the position of misfortune. While you feel this kind of urgency in your heart, on behalf of history and the ideology of creation, at the same time you must one day possess the day of joy in which you have won the victory on behalf of history. Otherwise, hope and joy both will be cut off from human society today.</p>
<p>Because people have passed through this kind of historical course, God has been feeling responsible for the task of getting rid of the curtain of misfortune that covers the human spirit and life, the curtain of misfortune passed down through history. People who have been seeking the way also have felt a sense of responsibility to solve this one problem for the sake of humankind. If the countless religions that have come into being until now have left behind an unsolved task, it is our mission to solve this problem.</p>
<p>You know that Heaven was mobilized to break through this barrier of misfortune that remains with humankind. You must understand that, at the same time Heaven is mobilized to remove this fate of misfortune, the spirit world also has been mobilized. Moreover, people on earth also have been mobilized.</p>
<p>Humankind must search for the one historical time to climb over the barrier of misfortune. Because they could not find that time, today we have again inherited the history of misfortune. Therefore, we must now become united to step over all barriers of misfortune. If we cannot step over them, your descendants will have to climb over the barrier of misfortune. There will be no way for them to avoid the path of death, grief and tears our ancestors walked. When we think about this, we can see that you today are not a simple being. The pleas of Heaven and the pleas of humanity are vested in you. Furthermore, you are in a position to resolve all the pleas of the past, present and future. If you cannot pioneer and overcome all the barriers of misfortune through your daily life in a whole lifetime, then the historical, providential hope of the whole which is vested in you will be shattered. The hope of the spirit world, who looks toward you and hopes to climb over the barriers of misfortune with you will also all be shattered. When you consider this, you must realize you are not simply an individual.</p>
<p>There are many people today, but we must reflect upon how many of them are leaders who can fight against the invisible Satan and the forces of evil that are blocking us. Who can fight on behalf of the heart of the misfortune of God, the angels and even on behalf of the humanity of the future?</p>
<p>When we reflect upon this, we can understand that we are not the only ones who are faced with this kind of position. The countless prophets and patriots who have been associated with the dispensation of God until now also have been in the same position of fighting to solve this one question, even as they were abandoning their lives. You must feel this deep down to the core of your bones.</p>
<h3 align="center">The Miserable Fate of Noah</h3>
<p>Please look back at the Old Testament again and consider Noah. Noah was the one person God finally found from among many people, after He had worked hard for the 1,600 years that followed the tragic fate of the first human ancestors. What kind of person was this Noah? He had to possess a heart that could feel Heaven&#8217;s heart of misfortune on behalf of the countless people of that time. He could comfort God on behalf of the heart of misfortune that the people of that time felt.</p>
<p>Noah shouldered this historic mission and conducted the conflict from the distressful position of misfortune. He was trampled upon, ridiculed, driven out and chased around for the sake of humankind and Heaven. You must never forget the kind of life of Noah.</p>
<p>What appeared in front of the life of Noah? Since he was the central figure of God&#8217;s dispensation, whose purpose was to establish the principles of indemnity, the ark appeared representing the sad and unfortunate situation of the 1,600 years. The ark that Noah was faced with represented the historical misfortune.</p>
<p>Noah felt a sense of mission to climb over the hill of the 1,600 years of misfortune. Because of this, Noah who shouldered the responsibility, and God, who gave the responsibility, became one in heart. You have to understand that because Noah knew that the ark was entrusted to him as a historical indemnity condition, he had to lead a life of all kinds of misfortunes and walk a thorny path for 120 years.</p>
<p>Noah received the prophecy that there would be judgment of the earth by water 120 years later. He began to pour out all of his heart to build the ark from that day. However, it was not just for one year. He persevered in building the ark for 120 years. Noah&#8217;s attitude as he was building the ark was that he was not doing it for the sake of his own family nor was he building it for his own descendants. Moreover, he certainly did not do it for the sake of the evil world. He built the ark only for the sake of accomplishing the will of God and nothing else. You must reflect back upon Noah, who embraced all the sorrows of God and the countless prophets and patriots of the 1,600 years and continued the battle. Although the ancestors who had served the will of God in the past had walked a sorrowful path, Noah conducted endless internal conflicts of mind and body to drive away and overcome the sad and difficult environment that rushed toward him.</p>
<p>He continued this fight for 120 years. While there was no one who sympathized with him, Noah remained loyal with all of his heart for the sake of establishing the will of God. When we think about this, we can see that the heart of Noah was truly a distressed heart that had no precedent in the 1,600 years. Because God recognized Noah only after he went through that kind of process, the day that the promise of Heaven was fulfilled, the judgment took place that could get rid of the grief of misfortune.</p>
<p>The more Noah shouldered this great providential mission, the less he could lead a comfortable life. He could not live a joyful and peaceful life. His body suffered pain, his mind suffered pain and persecution came from the environment. As you can see, Heaven could stand on his side only after he was put through a difficult crisis in which there was no one on his side. Only after he persevered through 120 years of persecution, sorrow and an indescribable fate of misfortune, was God finally able to emerge as his friend, consoler and leader, Who could lift the misfortunes away from Noah.</p>
<p>However, you have to understand that during the accomplishment of the promise, Noah had to struggle with all his might and carry on a merciless conflict in an environment of misfortune. Both in his internal and external life, he could not find a place of rest. Noah did not know that there were both the barriers of internal misfortune and the barriers of external misfortune. The providential will of God was not completed when the external ark was built. After building the ark, there was the judgment of God. After that, he had to build a new family in the restored garden. Noah thought that everything would come to a conclusion after the ark was completed. He did not know that after crossing over the hill of external misfortunes, there remained the hill of internal misfortunes. Eventually, due to the mistake on that day, Noah&#8217;s family fell.</p>
<h3 align="center">Abraham and Moses Were Responsible<br />
for the Misfortunes of the Whole</h3>
<p>It was the same for Abraham. Inheriting the will of Noah and being chosen as the ancestor of faith, Abraham also shouldered the mission to climb alone over the barrier of the misfortunes of Heaven and earth. This is the reason that Abraham could not avoid the path that Noah walked.</p>
<p>From the time Abraham left the homeland he loved, in other words, from the moment that he received the order from God to leave Ur of the Chaldeans, he had to lead a life of misfortune such as he had never experienced. After leaving Ur of the Chaldeans and coming back to the land of Canaan through Egypt, until he went to visit Lot to set the condition of the restoration of all things, Abraham had to feel the sorrowful heart that no other seekers of Heaven could experience until then.</p>
<p>He did not have any relatives there. He did not have any comrade. He did not have any friend. Even then he had to be responsible for the heart of all the misfortunes of humanity from a position of responsibility for the whole history of restoration. You have to understand the unfortunate life of Abraham, who had to overcome everything with the mind-set that no matter what kind of misfortune, tribulation, sorrow, difficulty and pain came his way, he would fulfill the will of God.</p>
<p>Although Abraham greatly exerted himself until the time he built the altar and offered the three great sacrifices, he did not even know that the internal sorrow centering on the sacrifice would confront him. Thus, we must reflect upon the position of Abraham. He was in an environment of misfortune. Feeling that he was confronted for the sake of others, he should have known that he was representing a historical mission and the mission of the age. He should have known that he must also represent the mission of the future generations and the mission of Heaven. However, his thoughts could not reach that far.</p>
<p>He thought that by climbing over the hill of external misfortune, everything would be resolved. He did not know that he had to resolve not just the misfortune of that time, but also the misfortune of the future. Abraham should have set the one standard point of restoration in the eternal history of humanity, but he could not accomplish that. Therefore, although he overcame the life of external misfortunes and went as far as offering Isaac as the sacrifice, that alone did not put the matter to rest. The internal misfortune has been passed down until today. Abraham, who was responsible for the historical misfortunes, was in a miserable situation.</p>
<p>Possessing the heart of misfortunes that people could not feel before then, how often did Abraham make a pledge and determination before God that he would take on the responsibility? He was concerned that, asleep or awake and in every moment, if he neglected the fact that he was the sacrifice centering on the will of God, then God&#8217;s will could not be realized. Furthermore, he mourned for Heaven, and he decided that he would offer himself for the sake of Heaven. You have to understand this unfortunate heart of Abraham.</p>
<p>When we look at Jacob, from the day he inherited the foundation of Abraham and received the mission to realize the blessing of Heaven, he led a life of misfortunes. He not only led a life of misfortune in Laban&#8217;s house in Haran for the long period of 21 years; he also had to bring Isaac to internal submission. You have to understand that in the path Jacob traveled, there were always conditions for sorrow.</p>
<h3 align="center">Why Moses and the Israelites<br />
Could Not Overcome Misfortunes</h3>
<p>The path Moses walked was the same. Moses had the mission to restore, through indemnity, the 400 years since Abraham on the level of the people. The 40 years of his life in the palace of the Pharaoh when he was preparing to serve the will of God was a period of misfortune. The 40 years of his life in the Midian wilderness, when he was carrying out the will, was a period of misfortune. The 40 years of the wilderness course, when he went toward the land of Canaan guiding the 600,000 people, was also a period of unspeakable misfortune.</p>
<p>Moreover, there was a time when Moses alone possessed the heart of misfortune that the people did not understand and went up to Mount Sinai to fulfill his responsibility as the representative of the people. You have to learn to experience the sad heart of Moses who abandoned the crowd of 600,000 in the wilderness, forgetting everything of the eighty years of his life and the sad environment he was suffering through, and went up to Mt. Sinai for the sake of the will of God.</p>
<p>There was no one, among the Israelites, who understood the tragic heart of Moses as he climbed Mt. Sinai. Forgetting eating food and wearing clothes, Moses poured out all of his heart and mind and appealed to Heaven out of desperation.</p>
<p>When we fathom this, we can understand that no one understood the heart of the ancestors who shouldered the mission of restoration from the time of Noah until now. No one appealed on behalf of their sad and unfortunate life. Thus, the prophets and patriots in Heaven are lamenting whether someone can take responsibility for the misfortunes and grief they left behind as they fought on behalf of Heaven. If you do not take responsibility for the unfortunate fate, they will accuse you.</p>
<p>Although the people as a whole had the mission to enter the blessed land of Canaan given by God, they complained and wanted to quit in the wilderness. The people did not know that at that time Moses tried to raise one life and use that life as a living sacrifice to save the lives of the whole people. Only God understood this. Only God was his friend, and God related to him as his Father.</p>
<p>Because Moses knew that God was like that, he felt a sense of responsibility to eradicate the sad and unfortunate heart of the Father, even if it meant not eating for forty days. By making the appeal with all of his heart, he could receive the words that could resurrect the Israelites.</p>
<p>This was a happy event. However, the Israelites did not know there was someone who became a sad, unknown sacrifice in the background for the sake of introducing this joy. If they had understood this, then the multitude of 600,000 would not have fallen down in the wilderness. Even after that, if they had the unyielding faith to uphold the Ten Commandments of Moses and become sacrifices for the sake of alleviating the sorrowful heart of God, they could not have fallen in the wilderness.</p>
<p>Although Moses received the external tabernacle, he did not know he had to uproot even the internal misfortunes of his ancestors. This was the case with Noah, Abraham and Jacob. Although the living environment they found themselves in was unfortunate, even Moses did not know that he had to take charge of the internal misfortunes of his descendants. Thus, when Moses struck the rock twice, the 600,000 Israelites, who were led out of the palace of Pharaoh with the help of God, fell in the middle of the wilderness.</p>
<p>What was another reason they fell? It was their ignorance of the heart of Moses. Because they did not inherit the loyalty of Moses, they fell in the middle of the wilderness.</p>
<p>When you think about this, you must come to the realization that the place you are standing on right now is the place where Noah was building the ark, where Abraham was offering the sacrifice, and where Jacob was raising the sheep for 21 years. It is where Moses exerted himself for 120 years and offered 40 days of fasting and prayer.</p>
<h3 align="center">The Attitude of Jesus Who Suffered Misfortunes</h3>
<p>The Israelites had been promised the garden of hope by God and were offering the joy of glory as they left the palace of Pharaoh. Yet when they neglected the heart of God, that joy disappeared and became enmity and was targeted toward Moses. When this took place, we have to understand that Heaven had to strike them.</p>
<p>What must we Christians possess today? We must possess the mind-set that we will fight against the forces of Satan, who tampered with our history and our path. We must possess enmity toward Satan. That kind of person will not perish. However, you must not possess a grudge or enmity directed at each other on your own side, rather than at the satanic forces. You have to understand that if such people are in a religious group, it will surely be shattered.</p>
<p>Considering this, we can see that those who understand the will of God have been praying with concern that the people might stand in the right position. If there are those who have the mission to guide the people and the world on behalf of the will of God, then when the time comes and the environment permits, they will liquidate many enemies of the people.</p>
<p>The people who have much and are thinking and acting selfishly will perish, but the people who have a sense of mission to fight against the enemies of the people and sacrifice their minds and bodies will not perish.</p>
<p>What kind of position then do you who are living in the Last Days occupy? If you have come forward on behalf of all the ancestors, you must pass through the course from Noah to Abraham and walk the course that Jacob, Moses, Jesus and all the ancestors walked while fighting the enemies. You must follow the example of how they suffered and took on the mission. If you do not have this kind of mind-set in this hour, you cannot be sure who will surpass you. You have to take note of this.</p>
<p>Moses fought on while feeling the loneliness of Elijah, who appealed to Heaven, &#8220;I am the only one remaining.&#8221; Moses&#8217; heart for the Israelites and his urgent yearning for the one day when he could alleviate the bitter grief of the people were constant. Even if he fell down repeatedly, he could continue the mission of guiding Israel. He lived like this, not out of the desire to live for his own sake. His life was for the sake of the will and for the people.</p>
<p>John the Baptist was born six months before Jesus came to the earth and fought for the sake of the will. When he emerged to take on the will, his living environment was miserable. He could not avoid the environment of misfortunes. His thirty years of preparation in the wilderness for the sake of the Messiah, for whom God had been prophesying for 4,000 years, was indeed a difficult life that no one understood. Only he could understand it. However, although he lived through thirty sorrowful years with this kind of heart, John the Baptist did not know that Jesus was the teacher who had experienced more miserable internal misfortunes.</p>
<p>Matthew and John also walked the path of misfortune. However, there had to appear one person who could represent the 4,000-year history. On behalf the misfortunes of Heaven, earth and all of humanity, feeling the most miserable heart experienced in history, that person had to defeat Satan, who had caused this history of misfortune. Heaven had to raise this kind of person.</p>
<p>The person who came with this responsibility is the Jesus of which you already know. While feeling a heart more miserable than anyone else in the 4,000 years of the history of the restoration, Jesus was capable of winning the victory in the fight against Satan, who had caused the history of misfortunes.</p>
<p>Although it is not written in the Bible, Jesus himself walked a path of unspeakable misfortunes during his thirty years of private life in the family of Joseph. This was for the sake of embracing the people and representing the heart of God. It was for the sake of embracing the religious sect and the tribe in God&#8217;s place.</p>
<h3 align="center">The Responsibility of the People of Faith<br />
in the Last Days</h3>
<p>However, although Jesus had the desire to embrace his family, the tribe, the religious sect and the people, he was persecuted by the people, ridiculed by the sect, chased out by the tribe, and in the end betrayed by the twelve disciples. When we think about that, it is an extremely sad thing. He could have easily cursed humankind. On the contrary, however, Jesus overcame any feeling of hostility toward his enemies. Instead, Jesus understood that his path had been blocked and he was concerned about who could inherit the heart of historical misfortunes to comfort the internal heart of the Father on behalf of Heaven.</p>
<p>The countless people who were following thought they would be given the blessing of Israel and that the blessing of Judaism would be fulfilled. They thought Jesus would build a historical kingdom of Heaven centering on them, but he died on the cross.</p>
<p>Jesus was in the position to walk through the formula course of the ancestors. He walked the path of the cross, knowing that the greater his mission on the earth, the higher his ideology. He knew that the greater his sense of responsibility, the more his gospel would spread to the world. Although the people were opposing him at that time, he felt that the enemies in the world would submit in the future. He chose the path of the cross, thinking that he must not stand in a position on the level of the people, but must step above it and subjugate the enemies on the world level. When we look at the verses in the Bible about the thirty years of Jesus&#8217; private life in the family of Joseph and the three years of his public life, we can see that he represented the historical and heavenly misfortunes.</p>
<p>The countless people who were following Jesus believed he was the Messiah and the Savior of the people when he showed them the miracle of the loaves and fishes. Yet when Jesus passed away, all the people abandoned him and went away.</p>
<p>If the people who were following Jesus had understood the internal heart of Jesus toward Heaven, if they had understood that he possessed a deeply penetrating heart toward God and that he came to take responsibility for the whole history of the dispensation, they would have realized his situation and followed him. Furthermore, following them, the whole Israelite people also would have followed Jesus.</p>
<p>However, the works of Jesus&#8217; gospel, which should have decorated the 4,000-year history of restoration as the one glorious page, was recorded as a history of tears on an altar of blood. Because Jesus knew that it was inevitable that this would not end with him but would continue repeatedly, he prayed, &#8220;My God, my God, why hast Thou forsaken me?&#8221; (Matthew 27:46) He did not offer this prayer because he was concerned about himself. You must understand that he offered this prayer out of concern for the people and the innumerable future generations.</p>
<p>Ladies and gentlemen, please do not despair because you do not have anything. Do not lose hope because you do not know anything. If you are to despair, it must be about the fact that you have not felt the heart of God, Who has been fighting on in the course of history. Moreover, you must become concerned about your failure to feel the heart of the prophets and patriots who exerted themselves while building the altar of blood. Furthermore, we must feel distressed about the fact that we could not have a firm resolution and feel enmity toward Satan, who envied us that we could become the true children of God and the true friends of Jesus and who has been tempting us.</p>
<p>When we look back at the course of history, we must realize that our countless ancestors had to climb over the hill of misfortune on the level of the family and the people with this kind of heart. We who must climb over the barriers of misfortunes on the world level must not repeat the mistake of Noah&#8217;s family. We also must not repeat the mistakes of Abraham, Moses and John the Baptist.</p>
<p>If today, 6,000 years after the human fall, there is no one who has felt the totality of the sorrowful heart of God, then you should pray, &#8220;Father, please raise me up so that I can represent the heart of Abraham, Jacob and Jesus and feel the whole heart of the Father. Let me feel the heart of love toward Adam before the fall, and even the penetrating heart of grief that could not be revealed to the people after the fall.&#8221; You must be able to pray, I will become a historical and universal sacrifice.</p>
<p>Who understood the sad situation of God, Who from the time of the creation until now could not raise His hand? People have understood God only as the God of love. They did not know that God is also a God of indignation and righteousness. Although God deals with men with love during the process, in the end, He must judge and strike. You must clearly understand that God is both the God of love and the God of righteousness who has a heart of indignation.</p>
<p>Only those who can understand this can drive out the seven Canaanite tribes and build the blessed land of Israel. You who have been called as the faithful people of the Last Days today, you who have come following the will, unlike other people, you must understand that although God is a God of love, He relates with you with the idea that He must judge you with righteousness. You have to comprehend the situation that forces Him to do that.</p>
<p>We who are living in the Last Days must understand the historical heart of the Father. At the same time, representing that heart, we must fight to fulfill the wishes of the Father, Who has deep grief in that the will has not yet been realized on the earth. The person who comes to complete this mission from the position of a true son of God is the one who is called the Lord of the Second Advent.</p>
<h3 align="center">The Role and Mission of the New Religion</h3>
<p>At the time of Noah, God struck, centering on the ark. At the time of Abraham, God struck, centering on the altar. At the time of Moses, He struck Pharaoh, centering on the Israelites. He could not succeed in striking the satanic world, centering on Jesus. This is the reason that Jesus passed away leaving behind the term &#8220;judgment.&#8221;</p>
<p>How are you going to climb over the historical hill of misfortune that lies ahead of you? This depends on each of you. You cannot force your way into the gates of Heaven. Therefore, you must climb over this hill of misfortune by yourself and break down the barriers of misfortune. Only when you can alleviate the deeply-rooted grief of the Father and become the brave soldiers who can fight with the hope of Israel moving toward Canaan can you completely cross this hill.</p>
<p>If you carefully examine your life course based on history until now, you will find that in the end of time in the future, you must cross many hills of misfortune. At that time, you must pass through the individual gate. After passing through the gate on the individual level, you must then pass through the gates on the family, national and then world levels.</p>
<p>What kind of mission have you taken charge of? You are either in the position to take responsibility for the misfortunes of the ancestors of the past or to take charge of the mission of the period. If you are not in a position to take charge of the mission on the world level, you are in the position to take responsibility for the eternal will of the dispensation. You must keep this in mind.</p>
<p>What direction has history been pursuing until now? World history has been moving toward the heavenly Messiah. Therefore, the history of misfortune will now pass behind us. The era of faith will also pass behind us. Until the time of the Messiah, who comes with a new mission to solve all the misfortunes of the world and bring an end to the misfortunes that have penetrated all areas, you must have courage and march forward.</p>
<p>Among you who are living in the last era of the dispensation of restoration today, there are those who have the fortune of the time, one period or those who represent the fortune of the world and of Heaven. All the indemnity conditions which have been passed down in history must be horizontally restored through indemnity at once.</p>
<p>How can one connect all of them and rally them? This is the very mission of the enlightened and religious people. Moreover, it is the mission of religions to actually bring this mission to a conclusion.</p>
<p>From the birth of the universe until now, on what have human beings centered themselves? Until now, people have set the love of parents, couples and children as the goal. In other words, through this and that kind of religion and ideology, history and time have been in flux, but the way and the laws of the parents, couples and children have never been trampled upon even once.</p>
<p>What must people of the Last Days do? They must be able to transcend personal emotions. While searching after the way began by first cutting off their personal emotional attachments. This is the battle on the way to Heaven.</p>
<p>Although the issue of human emotion has been the purpose of the historical religious faiths, this cannot connect with the vertical ideology of the heavenly principles. Although the 6,000-year history of humanity has progressed to establish this one thing, because this alone cannot solve all the problems of the universe, there must come forth a religion with the one ideology that can institute the laws of heavenly life.</p>
<p>At the time when we can soon enter the time of heavenly fortune, what kind of person can be raised as the true parents, true children, and true husband and wife? These people are linked with human emotion and the heart of God. They are the people who have experienced the universal hardships found deep inside the heart of God. They are the people who, centering on the love of God, have felt something based upon which they can say that God is their Father.</p>
<p>Throughout the passage of the 6,000-year history, people have failed to solve the vertical and horizontal human problems. This is the reason people have been seeking the religion that can solve these problems. At the end of time, we must climb over all the hills and barriers that come our way.</p>
<h3 align="center">The Path We must Travel</h3>
<p>We must understand that God is the True Parent, Who in the long course of history has been persevering through everything concerning humankind. What kind of person is Jesus? Jesus said, &#8220;I am your bridegroom and you are my bride.&#8221; In the same way, the religion that solves the problem of the bride and bridegroom, in other words, the problem of heavenly emotion (love), is the one that can climb over the last hill. In this sense, Christianity is the central religion.</p>
<p>Jesus said, &#8220;I have become one with God; I am the only begotten son of God.&#8221; Moreover, Jesus said to humanity, &#8220;I am the bridegroom and you are my bride.&#8221; For a long time, God hoped to climb over this barrier of misfortune on the world level centering on this kind of standard. The person in charge of this task was Jesus.</p>
<p>Now, what must you do? You must become the people who can embrace the heart of Jesus, who had the heart of the misfortunes of the bridegroom for 2,000 years, and the heart of the misfortunes of the countless prophets and patriots. Only if you are this kind of person can you be called the children of God and brothers and sisters before Jesus Christ.</p>
<p>If you try to become this kind of person, Satan will attack you. This is the purpose of Satan&#8217;s attack. However, if a new ideology, doctrine or some new religion and new central figure come forward to confront this, even the attack of Satan can be warded off. If done, Satan cannot drive you away. There cannot be any more revolution and change. At that time, the eternal ideology can finally be unfolded.</p>
<p>You must not think that you will go to Heaven. You must think that you will construct the Kingdom of Heaven on earth. Before building the Kingdom of Heaven, you must first become a citizen of the kingdom. To become a citizen of Heaven, you must become one in heart with the Father, to the point where you can confidently say that the Father&#8217;s heart is your heart and your heart is the Father&#8217;s heart. Having done this, you must represent the heart of God and represent the hearts of the Lord and the ancestors on the earth. Only then can you solve all problems.</p>
<p>The spirit world has been mobilized and is trying to climb over the barrier of the historical misfortunes. We who are living on the earth also have the mission to carry out this task. Now if you want to possess this sense of mission and be able to penetrate through the last historical barrier of misfortunes, you must understand the unfortunate heart of God, the unfortunate heart of history and the unfortunate heart of the present and the future. We must feel a sense of enmity toward the enemy of the True Parents who is blocking our path, the enemy of the true children, and the enemy of the true bride and bridegroom. If you have not become sons and daughters who are burning with this kind of enmity, you cannot climb over the hill of the last judgment.</p>
<p>You must fulfill the historical mission, the mission of the present era and the mission of the future. Which era are you living in now? You have to understand the problems that concern your era. In the future, the era of the ideology of the Creator God is coming. In the future, someone will come forward to restore this world who has the heart toward Heaven and feels enmity toward Satan that people ordinarily do not have or feel. It is the mission of Christianity to attend and assist that person at that time.</p>
<p>Each day must be lived for the sake of the Father&#8217;s will. Your whole life course must also be for the sake of the will of the Father.</p>
<p>You must walk the course that your ancestors walked. We are in the same position as the Israelites who came out of the wilderness. Moses and the Israelites were chased out of the wilderness and suffered tribulations. Jesus also was ostracized by the people and the church, and his family members did not believe in him. You will also have to experience this kind of sad and distressful situation, but do not lose hope. If you have to do something in this unfair situation, then you must experience the heart of the Father, who has been afflicted throughout history. Thinking that the sorrow of the Lord is your own sorrow and the pain of the ancestors is your own pain, you must unite your hearts and remain unchanging for thousands of years for the sake of that will. You must feel a sense of enmity toward Satan. Heaven is demanding young men and women who can do that. The will cannot be entirely entrusted to the ministers and the elders. If they fail to accomplish the responsibility, the deacons must do it. If the deacons cannot do it, the young people must rise. If they can save the church and the people, then they must rise. Heaven has been searching for sincere young people who are overcome by the misfortune of Heaven.</p>
<p>If this mission is entrusted to us on behalf of the people, we must become the elite troop who can feel the bitter heart of the Father, embrace the sorrow of the Father in our bodies, and march forward toward the enemy. To do that, you must unite your life and ideology.</p>
<p>You must fight to uproot the sorrow of Heaven, the sorrow of Jesus, the sorrow of our ancestors and the sorrow of our descendants.</p>
<p>The history of misfortune is coming your way now. Therefore, you must exert all your heart and will, offering all of yourself. Even if you are suffering mistreatment and grief, you must make the determination to become the sacrifice before the people and the world on behalf of Jesus. You must be able to raise your hand and pledge before Heaven.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html" title="Permalink to Let Us Climb over the Hill of Historical Misfortune" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html" rel="prev"><span class="meta-nav">&laquo;</span> Where Is the Refuge in Which Heaven Can Dwell?</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html" rel="next">Let&#8217;s Be the Person Who Has the Heart of Jesus Christ <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,201 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US ESTABLISH THE GLORIOUS ORIGINAL HOMELAND &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-864 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-864" class="post-864 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US ESTABLISH THE GLORIOUS ORIGINAL HOMELAND</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:20:18+01:00"> <a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:20:27+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 6, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>1 Thessalonians 5:1-11</em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text 1Thess-5-1">Now, brothers and sisters, about times and dates we do not need to write to you,</span> <span id="en-NIV-29624" class="text 1Thess-5-2"><sup class="versenum">2 </sup>for you know very well that the day of the Lord will come like a thief in the night.</span> <span id="en-NIV-29625" class="text 1Thess-5-3"><sup class="versenum">3 </sup>While people are saying, “Peace and safety,” destruction will come on them suddenly, as labor pains on a pregnant woman, and they will not escape.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29626" class="text 1Thess-5-4"><sup class="versenum">4 </sup>But you, brothers and sisters, are not in darkness so that this day should surprise you like a thief.</span> <span id="en-NIV-29627" class="text 1Thess-5-5"><sup class="versenum">5 </sup>You are all children of the light and children of the day. We do not belong to the night or to the darkness.</span> <span id="en-NIV-29628" class="text 1Thess-5-6"><sup class="versenum">6 </sup>So then, let us not be like others, who are asleep, but let us be awake and sober.</span> <span id="en-NIV-29629" class="text 1Thess-5-7"><sup class="versenum">7 </sup>For those who sleep, sleep at night, and those who get drunk, get drunk at night.</span> <span id="en-NIV-29630" class="text 1Thess-5-8"><sup class="versenum">8 </sup>But since we belong to the day, let us be sober, putting on faith and love as a breastplate, and the hope of salvation as a helmet.</span> <span id="en-NIV-29631" class="text 1Thess-5-9"><sup class="versenum">9 </sup>For God did not appoint us to suffer wrath but to receive salvation through our Lord Jesus Christ.</span> <span id="en-NIV-29632" class="text 1Thess-5-10"><sup class="versenum">10 </sup>He died for us so that, whether we are awake or asleep, we may live together with him.</span> <span id="en-NIV-29633" class="text 1Thess-5-11"><sup class="versenum">11 </sup>Therefore encourage one another and build each other up, just as in fact you are doing.</span></em></p>
<p style="text-align: center;">You know very well that if human beings had not fallen, the garden of hope, the original homeland of glory, would be the world we would gladly welcome in our living sphere today. Because mankind fell, we have no relationship with this garden of hope today. In this moment, you have to think once again that the responsibility and duty to construct this glorious new homeland rests with us, even if we have to exert all the strength we have, pour out all of our hearts, and sacrifice all that we have.</p>
<p>If people had become perfect centering on God, then their joy would have become the joy of God. The glory they would have commanded would have been the glory of God. Because humankind failed to enjoy their happiness and glory at the standard God wanted, all turned into sadness for humankind. Because people committed a crime, they fell down to a position very far away from the garden of that ideology. You are probably well aware of the fact that the history of the dispensation of restoration is the toilsome history to reclaim fallen human beings.</p>
<p>What kind of place, then, is this garden of the dispensation? It is a place where all created things can lead their lives in the glory of unity within the sphere of the Creator&#8217;s ideology, attending the Creator Lord. It was a garden with that purpose, but because of the fall of man, we have fallen into the position where we can no longer attain the ideology of unification and sing the glory of God.</p>
<p>Therefore, we have to understand that God has been fighting and toiling persistently throughout the long course of history in order to establish this one, united ideology of unification.</p>
<h3 align="center">The Human Struggle to Construct<br />
the New Homeland of Glory</h3>
<p>When we look at ourselves as people, after our minds and bodies become one and all humanity becomes one, it is our responsibility to unite with nature&#8217;s laws and rules of operation. Furthermore, we have the grave responsibility to unite into one the laws and rules of operation upon which the heavenly principles move.</p>
<p>We must accomplish the new ideology of glory and consistency with the laws of the operation of nature while passing through the historical process of conflict. On the other hand, we have to adjust to the laws of Heaven. Moreover, you must not forget that our ancestors exerted themselves to accomplish this kind of responsibility.</p>
<p>In all developmental processes of history, when a family-oriented society develops into a tribal society, for instance, the forces of darkness and opposition are always blocking the path.</p>
<p>With what does God carry on the dispensation? The fall lost the quality of unity. The mind and body were divided, and all laws of the operation of nature and of the heavenly principles, as well as the whole ideology, have been divided. Millions of people have been divided. You have to understand that Heaven has been performing the work of establishing some united entity centering on tribes, people, and so forth, throughout every era in order to bring them all together.</p>
<p>Therefore, a family society becomes a tribal society. A people and a nation are formed when several tribal societies gather together. Alliances form when several nations came together. Next, they are to form a federation. A federation forms a united ideological sphere by joining together several doctrines or ideologies. In this manner, the order of the operation of the universe is supposed to be maintained.</p>
<p>You have to adjust to all the laws of the operation of the world of creation which are in action. At the same time, you must form a relationship with the ideology and laws the Creator hopes for. Otherwise, you cannot become the foremost victor. You cannot attain the qualifications to govern all created things by possessing the highest human nature and representing the glorious value of all things.</p>
<p>God has gathered countless families to form a tribe. He joined tribes together to form a nation. He joined nations together to unite them into one world. This dispensation is connected to the one man and woman who were created in the beginning. In other words, you have to understand that God has been leading the dispensation of restoration in order to construct the new homeland of glory that He wanted to give to humankind at the beginning of creation.</p>
<p>Then what is the cause of our lament? It is our failure to become someone who can unite the surrounding environment. What caused all this? The forces of darkness have caused this. Even though there were hearts that sought goodness in every corner, these hearts could not become connected to one other. After setting up the lofty light for the people, in other words, after setting up someone who is like the morning light and someone who is like the evening light, those persons seeking goodness traveled through the course of the history of conflict in which they passed through the period of the night.</p>
<h3 align="center">Religion and Science are Pursuing<br />
the Unity of the Two Sides</h3>
<p>Today many believers are saying that now is &#8220;the last days.&#8221; There are the two camps of democracy and communism today. One of them represents the morning and the other represents the evening. There is something that blocks these two camps in the middle. You have to take on the mission to break this down.</p>
<p>It has become a confused world in the last days when everything in the world is stirred up in confusion. The center cannot be firmly secured and the direction cannot be determined. You have to realize that the responsibility to clear all this lies not with God, nor with nature. It lies with none other than us.</p>
<p>Because God gave people the responsibility to bring the comprehensive ideology of unification to pass, they have been developing the natural sciences, which research nature, into the form of one unified science. Through religion, they have been bringing together the world of the mind. The development of science today, in other words, the modern civilization centering on science, has been fulfilling the unified external ideology. This has reached the sphere of a unified ideology on the level of the world. After that, in the internal dimension, you must complete the mission of building the internal world in which humanity can become one through the religion which reveals, the mind or the original nature and character of human beings.</p>
<p>Although religion and science divided in the second half of the sixteenth century, in the last days today, we are crossing over to the state of union when we can again reach the one purpose. Hence, science has taken up the unified form first. The reason for this is that when Adam was created as a complete human being, his body was created first. After that the spirit of life was breathed into him. This is the principle of creation. Today religion and science are in a position of confrontation. However, this is not the basic principle. In the last days, in the same way that God created Adam, the phenomena of history will also come together in this way.</p>
<p>The external civilization today, the twentieth century civilization, has been expressed through words and written letters. In the united ideal world that God hopes for, the center which is reciprocal to the civilization of the heart must be determined after completing the form of the ideology of God through the words. Otherwise, there is no way to bring them together into the one world.</p>
<p>How will they be united? Even if there is some unified ideology that can unite the external and internal civilizations, they will not be brought together in an orderly manner. There will be forces of darkness which obstruct that task. Thus, we must first pass through a course of conflict to shatter them. This is the reason why today two last days doctrines are taking responsibility for one field. In other words, one is in charge of the internal aspect of God, and the other is symbolically responsible for the external aspect of God.</p>
<p>If the side that replaces the center of the mind is democracy, then this democratic territory must be able to cause the communist territory to automatically champion the one will and move toward the one purpose. If the time when this is done does not come, the heavenly principles will never move.</p>
<p>When we examine this, we can see that not only in the field of the natural sciences today, but also in the religious field, we have come to the point where we cannot move forward any more. At this time, when neither can interfere with the other, we find that</p>
<p>there must appear someone new who can remove obstructions and take responsibility for the people if they do not listen to the commands. You have to understand this.</p>
<p>What kind of person will come to possess the glory of the new homeland? We must be able to fulfill the leading and dominant role which can unite our body centering on the mind and bring the environment into oneness.</p>
<p>In order to construct the glorious new homeland, our minds and bodies must become one. Centering on us, all of humanity must become one. At the same time, we must become one with all the laws of the operations of Heaven and earth. Moreover, we must become one with the heavenly principles with which the Creator has been carrying on the will. Otherwise, there is no way that the glory of God can manifest itself on this earth or in the world of creation. You have to understand that if the glory of God is not manifested, we human beings cannot even dream about the new nation of glory.</p>
<p>When you think about what kind of historical course humanity has been traveling through in order to construct this new nation of glory, you will discover that they have passed through a ceaseless history of conflict for a long time.</p>
<p>Centering on ourselves, we have to become one with all the laws of the operation of nature below. Above, we have to adjust to the laws of Heaven. Thus, we fallen ones must bear the responsibility to bring the environment into oneness centering on our minds and bodies.</p>
<p>In other words, when you secure the victorious accomplishments that can represent the whole of the human principles, this will also represent the heavenly principles to stand as the center connected to the way. You must be able to step forward on behalf of all the things of humanistic society and be in motion in synchronization with all the laws of natural operations. This must be achieved.</p>
<h3 align="center">The Path to Perfection</h3>
<p>God is trying to carry on the fight between the two camps. Therefore, you will not be able to escape from the coming of the period of conflict, the purpose of which is to eliminate the darkness.</p>
<p>At this moment, when the period of universal and worldwide conflict is nearing, you have to understand that because you are not exempt from the laws of the heavenly principles, you will be swept up in fear as these two camps fight one another.</p>
<p>Even in such times, you must set the center which can prevent all the forces of darkness from sweeping over it, and you must step over it. Because you must keep pace with the twentieth century scientific civilization that is making tremendous leaps and also nurture your internal character, you must set the new reformative standard in the internal aspects. Even if everything is swept away, you should be able to cling on to the center and circle around in stability. If you cannot attain this kind of center, you won&#8217;t be able to become the last victor in the course of human history. In the end, you will have no choice but to be a failure.</p>
<p>The will of God is also moving through a progressive and revolutionary process. Before the Old Testament, God performed the works of building man&#8217;s relationship with the heavenly principles through sacrificial offerings. In the Old Testament era, He carried on His history of the dispensation based upon the laws.</p>
<p>If those laws had emerged as a unified ideology, and if someone had emerged who deeply felt that this was the will of Heaven, then the dispensation of restoration could have been greatly shortened. However, because this was not done, you have to understand that after setting the external conditions through the laws, God sent Jesus to set the external conditions through his physical body and the internal conditions through his spirit.</p>
<p>Until today, Jesus appeared only as the subject of faith. If it all ended there, then the dispensation of God would never see its conclusion. Only when the ideology of unification is established on this earth and its tasks are brought to pass can Jesus complete his mission.</p>
<p>To become a person who can establish and manifest the external scientific progress and form, you have to become one with goodness that can connect itself to the heavenly principles. You must do this from the position of having won and overcome all the battles of the age.</p>
<p>In the near future, the dark sphere of death will emerge as a trap on the world level. We must dismantle this and step over it. This kind of work cannot be done by the conscience or by ethical principles. Only by seeking and establishing the heavenly principles can we become linked to the new glory of the new garden.</p>
<p>Therefore, if religion, science, philosophy, and all fields of thought cannot make the connection with these heavenly principles in the last days, Heaven will strike them down with a rod.</p>
<p>Although John the Baptist, who appeared before Jesus had a higher intellect than Jesus, Jesus told him to follow him. This was because John the Baptist was centered on himself. Jesus, however, possessed the ideology of the heavenly principles that he could be eternally proud of. If there was a person who could establish and manifest the external scientific progress and the internal conditions as the one united ideology, then the united homeland centered on God would have already been realized.</p>
<p>It is good to set Jesus up as the goal of your faith. However, you must first become the embodiment of that faith and belief, and in your daily life you must be with Jesus. When you act after achieving this, the whole of nature should move, and the whole world should be able to rejoice. Otherwise, you won&#8217;t have any relationship with the glorious new homeland.</p>
<p>Even in the new homeland, there is one leader and his citizens. Therefore, you have to first become the citizens who attend that leader and construct the new homeland. You must be able to strike the forces of darkness which are preventing the construction of the new homeland.</p>
<p>What kind of fight lies ahead of us? Before Jesus lies the course of bloody conflict. In other words, in carrying out the mission at the growth stage, Jesus suffered through such a difficult course of conflict. Now for you who must complete the mission at the perfection stage, there will be a greater course of conflict. You have to think about this again.</p>
<p>In this kind of universal conflict, you must be victorious in using the external nature as your body and the will of God as the internal mind for the sake of unification. In this way, after taking the heavenly principles as your mind, you must bring into oneness the nature which has become your mind.</p>
<p>Each of you has a different fortune. Moreover, for each nation there is a fortune. Heaven has Heaven&#8217;s fortune. Accordingly, in the same way that the ideology of the individual must be made a part of the homeland&#8217;s ideology, the homeland&#8217;s ideology must be made a part of the heavenly ideology. Today our individual fortune must be absorbed by a higher fortune. Furthermore, our fortune must be made one with the universal fortune.</p>
<h3 align="center">The Great Agony One Must Bear<br />
in Order to Attain a Precious Thing</h3>
<p>For fallen human beings, there will be a history of conflict. God and Jesus do not just give us love today. The God of love, the Jesus of love will at one time become the God of judgment and the Jesus of judgment who give us suffering and ordeals.</p>
<p>For this reason, you are not to behold them only as the God of love and the Jesus of love. You should have the attitude to serve them as being capable also of putting us through ordeals and sufferings. Only then can the love of God and the love of Jesus return to you. Only then can all the laws of the heavenly and human principles on earth revolve around you.</p>
<p>What do you who are gathered here have that you can confidently present before Heaven? If you do not have anything, then you must search for some condition that you can set before the heavenly principles.</p>
<p>In the last days today, there is no one who can confidently stand with his own ideology. The only one who can do that is someone who has the ideology of the heavenly principles. Hence, people feel fear, unrest, lamentation, and worries. At such a time, if there is someone who has the heavenly ideology with which he can cling to both the human and heavenly principles and confidently stand up, that person will stand in a place higher than all the others.</p>
<p>Before this person, everything will automatically emerge in harmony with the way. Because humankind fell, when Heaven wants to give something great, it must first perform the contradictory works of giving great pain and tribulations first. Is there anyone among you who despairs in the face of all the tribulations that come your way? Such a person must not understand the sorrow of Heaven. He will fade away when sadness disappears from this earth.</p>
<p>Jesus, the loyal subject of Heaven, was the one who took charge of the battle with Satan on behalf of God and stepped forward confidently on this kind of course of conflict.</p>
<p>Therefore, the works of the Second Coming in the last days today will come in the same form. You have to become one with goodness that can connect itself to the heavenly principles from the position of having won all the battles of the age and having overcome them.</p>
<p>Please keep in mind that only this ideology of the heavenly principles can form a relationship with the new glory of the new garden in the last days.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html" title="Permalink to LET US ESTABLISH THE GLORIOUS ORIGINAL HOMELAND" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME THE BRIDES WHO RECLAIM WHAT WAS LOST TO JESUS</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html" rel="next">LET US RESTORE GOD&#8217;S KINGDOM AND HIS RIGHTEOUSNESS <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,211 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US GO OVER THE HILL TO ENTER THE ORIGINAL GARDEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-843 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-843" class="post-843 post type-post status-publish format-standard hentry category-uncategorized">
<h1 class="entry-title">LET US GO OVER THE HILL TO ENTER THE ORIGINAL GARDEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:52:20+01:00"> <a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:52:32+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<p style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
July 28, 1957</p>
<p style="text-align: center;"><em>Genesis 1:28, 3:6-24</em><br />
<em><sup class="versenum">28 </sup>God blessed them and said to them, “Be fruitful and increase in number; fill the earth and subdue it. Rule over the fish in the sea and the birds in the sky and over every living creature that moves on the ground.”</em></p>
<p style="text-align: center;"><em><span id="en-NIV-62" class="text Gen-3-6"><sup class="versenum">6 </sup>When the woman saw that the fruit of the tree was good for food and pleasing to the eye, and also desirable for gaining wisdom, she took some and ate it. She also gave some to her husband, who was with her, and he ate it.</span> <span id="en-NIV-63" class="text Gen-3-7"><sup class="versenum">7 </sup>Then the eyes of both of them were opened, and they realized they were naked; so they sewed fig leaves together and made coverings for themselves.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-64" class="text Gen-3-8"><sup class="versenum">8 </sup>Then the man and his wife heard the sound of the <span class="small-caps">Lord</span> God as he was walking in the garden in the cool of the day, and they hid from the <span class="small-caps">Lord</span> God among the trees of the garden.</span> <span id="en-NIV-65" class="text Gen-3-9"><sup class="versenum">9 </sup>But the <span class="small-caps">Lord</span> God called to the man, “Where are you?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-66" class="text Gen-3-10"><sup class="versenum">10 </sup>He answered, “I heard you in the garden, and I was afraid because I was naked;so I hid.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-67" class="text Gen-3-11"><sup class="versenum">11 </sup>And he said, “Who told you that you were naked? Have you eaten from the tree that I commanded you not to eat from?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-68" class="text Gen-3-12"><sup class="versenum">12 </sup>The man said, “The woman you put here with me—she gave me some fruit from the tree, and I ate it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-69" class="text Gen-3-13"><sup class="versenum">13 </sup>Then the <span class="small-caps">Lord</span> God said to the woman, “What is this you have done?”</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-3-13">The woman said, “The serpent deceived me, and I ate.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-70" class="text Gen-3-14"><sup class="versenum">14 </sup>So the <span class="small-caps">Lord</span> God said to the serpent, “Because you have done this,</span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Gen-3-14">“Cursed are you above all livestock</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">and all wild animals!</span></span></em><br />
<em><span class="text Gen-3-14">You will crawl on your belly</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">and you will eat dust</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-14">all the days of your life.</span></span></em><br />
<em><span id="en-NIV-71" class="text Gen-3-15"><sup class="versenum">15 </sup>And I will put enmity</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-15">between you and the woman,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-15">and between your offspring<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-71a" data-link="[&lt;a href=&quot;#fen-NIV-71a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Genesis+1:28,+3:6-24#fen-NIV-71a">a</a>]</sup> and hers;</span></span></em><br />
<em><span class="text Gen-3-15">he will crush<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-71b" data-link="[&lt;a href=&quot;#fen-NIV-71b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Genesis+1:28,+3:6-24#fen-NIV-71b">b</a>]</sup> your head,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-15">and you will strike his heel.”</span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-72" class="text Gen-3-16"><sup class="versenum">16 </sup>To the woman he said,</span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Gen-3-16">“I will make your pains in childbearing very severe;</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-16">with painful labor you will give birth to children.</span></span></em><br />
<em><span class="text Gen-3-16">Your desire will be for your husband,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-16">and he will rule over you.”</span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-73" class="text Gen-3-17"><sup class="versenum">17 </sup>To Adam he said, “Because you listened to your wife and ate fruit from the tree about which I commanded you, You must not eat from it,</span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text Gen-3-17">“Cursed is the ground because of you;</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-17">through painful toil you will eat food from it</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-17">all the days of your life.</span></span></em><br />
<em><span id="en-NIV-74" class="text Gen-3-18"><sup class="versenum">18 </sup>It will produce thorns and thistles for you,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-18">and you will eat the plants of the field.</span></span></em><br />
<em><span id="en-NIV-75" class="text Gen-3-19"><sup class="versenum">19 </sup>By the sweat of your brow</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-19">you will eat your food</span></span></em><br />
<em><span class="text Gen-3-19">until you return to the ground,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-19">since from it you were taken;</span></span></em><br />
<em><span class="text Gen-3-19">for dust you are</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Gen-3-19">and to dust you will return.”</span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-76" class="text Gen-3-20"><sup class="versenum">20 </sup>Adam<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-76c" data-link="[&lt;a href=&quot;#fen-NIV-76c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Genesis+1:28,+3:6-24#fen-NIV-76c">c</a>]</sup> named his wife Eve,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-76d" data-link="[&lt;a href=&quot;#fen-NIV-76d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Genesis+1:28,+3:6-24#fen-NIV-76d">d</a>]</sup> because she would become the mother of all the living.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-77" class="text Gen-3-21"><sup class="versenum">21 </sup>The <span class="small-caps">Lord</span> God made garments of skin for Adam and his wife and clothed them.</span><span id="en-NIV-78" class="text Gen-3-22"><sup class="versenum">22 </sup>And the <span class="small-caps">Lord</span> God said, “The man has now become like one of us, knowing good and evil. He must not be allowed to reach out his hand and take also from the tree of life and eat, and live forever.”</span> <span id="en-NIV-79" class="text Gen-3-23"><sup class="versenum">23 </sup>So the <span class="small-caps">Lord</span> God banished him from the Garden of Eden to work the ground from which he had been taken.</span> <span id="en-NIV-80" class="text Gen-3-24"><sup class="versenum">24 </sup>After he drove the man out, he placed on the east side<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-80e" data-link="[&lt;a href=&quot;#fen-NIV-80e&quot; title=&quot;See footnote e&quot;&gt;e&lt;/a&gt;]">[<a title="See footnote e" href="https://www.biblegateway.com/passage/?search=Genesis+1:28,+3:6-24#fen-NIV-80e">e</a>]</sup> of the Garden of Eden cherubimand a flaming sword flashing back and forth to guard the way to the tree of life.</span></em></p>
<div class="footnotes"></div>
<p>When we read Genesis 1:28 and Genesis from 3:6 through to the end of the chapter, we come to understand that God first blessed humans, but later after their fall, He stood in the position of a judge. The Bible verses describe Adam and Eve before the fall and their eviction from the Garden of Eden with God&#8217;s curse after the fall. This happened to Adam and Eve, but because they are human ancestors in the position of having dominion over all things, they are not the only ones who were cursed through the judgment, but the entire creation was also affected by it.</p>
<p>Due to the fall of man, God&#8217;s joy was transformed into sadness, and their hope into despair, and thus both Heaven and earth came to experience grievance and lamentation. We should never forget that the heart of Adam and Eve at the time of the fall has been clearly transmitted even to us.</p>
<p>The heart of Adam when he was blessed by God before the creation, and his heart at the time of eviction by the Creator, God after the fall, was in total contrast, after God lost all things. Thus Adam and Eve could not stand before God and all things, and could not be a center from any direction.</p>
<p>We in the last days should remember that we are destined to be liberated from such a historical relationship of tragedy (with God). The sin committed by Adam has been transmitted to us in the form that looks like a principle, transcending time and space.</p>
<p>Then you should become a person, who can manifest the will of heavenly nature, with the value of the entire universe. By so doing, the value of yourself should be identical with the value of heavenly nature. Such value should be restored in the center of the universe, despite any historical obstacles. Otherwise, the ideal of one person, and the original garden created by God, naturally cannot be manifested through me.</p>
<p>Remember that the sorrow brought to the Garden of Eden affected every creation of the universe until the present. Consequently, what is more important than anything is myself. You may think that I belong only to a family or a tribe, but I am not limited to those levels alone. I am in the position of a weight that balances the weight of the ideal of hope. God who is watching me doing this is universal and historical.</p>
<p>When the hope of God is fulfilled, all humankind would like to be related to me. When we realize something so amazing as this, we can fulfill their hope through me, and should be able to demonstrate the beauty of the original mind along with them before God. However, what is important is where humans can find such value. To find this, what should we do? You should examine the stand-point of Adam and Eve while prior to the fall and after the fall. You should be able to realize that God&#8217;s hope is to personally call them &#8220;My children!&#8221;</p>
<p>Then, what is the fall? It is to separate a relationship between God and humans as a parent and children, that can never be separated, no matter what. Adam and Eve created by God should have first called Him &#8220;Father!&#8221;, but by first calling Satan &#8220;Father!&#8221; instead, this became the original source of historical grief. Thus, the betrayal of Adam and Eve through their faithlessness in God was planted as the seed of universal grievance.</p>
<p>Then what will happen in the last days? In the last days, the breakdown in the relationship of parents and children will occur. Because the first human ancestors betrayed God, children of their descendants from the lineage will also challenge (and betray) their parents. When the time comes, you should find the True Parents whom you cannot betray no matter what. The environment in which you live was not established through the relationships based on trust. Thus, the phenomena of mistrust will be prevalent in the environment.</p>
<p>Relationships between parents and children will be as such, and so will there be such a tendency in the relationships with their relatives. Thus if various phenomena of rejections that can fundamentally destroy even the will (of God) pursued by humans occur here and there, you should realize that is the time of the last days. Even if we witness to such phenomena happening in our reality, we should never be a part of it.</p>
<p>Adam and Eve fell because they listened to the words of Satan, not God&#8217;s. Thus (in the last days), there will be God&#8217;s words, but at the same time, Satan&#8217;s words that were not expected will appear. Therefore, on earth, there will be two kinds of words: words of the truth and words of lies. They will be directly influencing your daily life, wherever you are, whatever you do.</p>
<p>Then what should we do under the circumstances? By observing the words spoken through the True Father whom I am looking forward to seeing, and God whom I have faith in, you should establish the words as the standard of your life, your ideas, and your struggles. Otherwise, you will not be able to receive a blessing that allows you to have dominion over the creation in your earthly life. Today, many people lost their center. Although words centered on a certain ideology or on the individuals&#8217; ideology exist, people who are desperate to fight at the risk of their life, without changing their hearts to keep the words of God as their eternal standard, are gradually disappearing. On the other hand, people who express their selfcentered views are increasing more.</p>
<p>According to the Bible, the one who tempted Eve in the Garden of Eden was a serpent with two tongues. This symbolizes a being who speaks two different things with one tongue. Therefore, the person who carries the words of the heavenly principles should establish a clear position such as &#8220;yes&#8221; or &#8220;no,&#8221; and take responsibility to protect the words at any price.</p>
<p>You should not stand in the wishy-washy position, which does not belong either this or that, or right or left. If you stand in an indecisive position, without knowing where you belong to, you will be even more confused, often causing you more troubles at the end.</p>
<p>Adam and Eve lost their body, faith, and the word of God. At the same time, they also lost the substantial being. However, we restored faith and words, and what remains to be done is solely to restore the substantial being. The time to restore the substantial being is the so called &#8220;day of the second advent,&#8221; for which we wish. We have a hill to climb over to reach the standard of the restored substantial being. The question is whether, we became a substantial being in whom God can dwell and through whom He can operate.</p>
<p>God directly spoke to Adam and related to him as His partner, based upon his condition of faith, but in the future, Adam will find the substantial being. Thus my partner, my own substantial being should be found through the unity of mind and body. To do this, however, it is required to go through the principle of creation. Originally, humans should have been one in heart with God, their mind should have been one with their body, and their body should have been in relationship to all things. This is a standard of true subject-object relationship. As long as we were born as humans, because we were to be perfected through this standard of true subject-object relationship, we should find thoughts pursued by the mind, should find one point of unity through which the mind is followed by the body, and leave a purpose on earth that both mind and body pursue together.</p>
<p>You in the process of the restoration should have your mind and body, which are in conflict with each other, united. By so doing, if you have faith in God, and are in the position of Adam and Eve before the fall, who could relate to the center of heaven, your mind should be united with your body, and your body can be united with your mind. When you stand in that position, you will also be able to pioneer a living environment where you can be united with the creation. In the last days, what mission will be endowed to you? You are responsible for inheriting the historical heavenly value that has been preparing to restore the substantial being with a value of the entire universe.</p>
<p>Depending upon whether or not you fulfill the mission, it will be determined whether you will be given authority to become a leader on this earth, and depending upon whether the authority was given to you, it will be determined whether the heavenly character will be formed. You should know this. That is the reason the dispensation of restoration started from the tabernacle, and through the holy temple, comes to the substantial being.</p>
<p>Because Jesus Christ came as such a man of character, God has been leading the dispensation centered on him, and today, we are leading a life of faith, following him. Thus if humans take after Christ, the sinful history will be reversed. We are now in the process of going to the final stage of the battle.</p>
<p>Please stand yourself before the entire creation, considering yourself to be the one who is responsible for the dispensation of restoration. If there are 1,000 objects, ask yourself whether you are qualified to be a master of those objects, and if there are 10,000 objects, ask yourself whether you are qualified to be a master of those objects. This is the question.</p>
<p>The hope of the creation is nothing more but to receive the day of glory when they can come forth to God through true humans. If you want to be a substantial being in whom God can dwell, you should feel responsible for fulfilling the mission wherever you go, whatever environment you are in. Do you live with such a sense of responsibility? &#8220;This is something that I need to take care of, and that is another one. There is nothing that has nothing to do with me. Father, if I cannot finish the jobs, please allow me to do it even after my death.&#8221; Appealing to God as such, we should live with an attitude willing to be responsible for everything.</p>
<p>You should realize that all things desire to have a relationship with you and enjoy living with you. You should also feel, with rage, responsible for fighting Satan, who is making accusations against humankind before God and causing grief to you. Unless you become children who can declare to God: &#8220;Father! My beloved Father, I will fight on your behalf. I will take revenge on your enemy. I will restore what you have lost. To recover your will, please use us as you wish,&#8221; God&#8217;s will of restoring the substantial holy temple will not be fulfilled. Therefore, to achieve the Kingdom of Heaven on earth, you should become the kind of person who can conform to heavenly principles whatever your given circumstances.</p>
<p>By reforming yourself to live a life that separates good from evil, as an eternal and unchanging warrior in victory, you can be proud of being a son or daughter of Heavenly Father. When you do this, by going over the hill of judgment in the last days, you will understand that you can enter the restored ideal Garden of Eden and perfect yourself as a truthful being.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html" title="Permalink to LET US GO OVER THE HILL TO ENTER THE ORIGINAL GARDEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US AVOID BEING PUNISHED FOR OUR SINS BY RESTORING THE ORIGINAL NATURE OF GOODNESS</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/jesus-true-heart-for-god.html" rel="next">JESUS&#8217; TRUE HEART FOR GOD <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,266 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US JOIN IN THE PURSUIT OF THE HOMELAND &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-855 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-855" class="post-855 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US JOIN IN THE PURSUIT OF THE HOMELAND</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:16:42+01:00"> <a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:16:57+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">September 22, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>John 14:1-7</em></p>
<p class="chapter-2" style="text-align: center;"><em><span class="text John-14-1"><span class="woj">“Do not let your hearts be troubled. You believe in God<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26670a" data-link="[&lt;a href=&quot;#fen-NIV-26670a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=John+14:1-7#fen-NIV-26670a">a</a>]</sup>; believe also in me.</span></span><span id="en-NIV-26671" class="text John-14-2"><span class="woj"><sup class="versenum">2 </sup>My Fathers house has many rooms; if that were not so, would I have told you that I am going there to prepare a place for you?</span></span> <span id="en-NIV-26672" class="text John-14-3"><span class="woj"><sup class="versenum">3 </sup>And if I go and prepare a place for you, I will come back and take you to be with me that you also may be where I am.</span></span> <span id="en-NIV-26673" class="text John-14-4"><span class="woj"><sup class="versenum">4 </sup>You know the way to the place where I am going.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text John-14-5"><sup class="versenum">5 </sup>Thomas said to him, “Lord, we dont know where you are going, so how can we know the way?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-26675" class="text John-14-6"><sup class="versenum">6 </sup>Jesus answered, <span class="woj">“I am the way and the truth and the life. No one comes to the Father except through me.</span></span> <span id="en-NIV-26676" class="text John-14-7"><span class="woj"><sup class="versenum">7 </sup>If you really know me, you will know<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-26676b" data-link="[&lt;a href=&quot;#fen-NIV-26676b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=John+14:1-7#fen-NIV-26676b">b</a>]</sup> my Father as well. From now on, you do know him and have seen him.”</span></span></em></p>
<h3 style="text-align: center;" align="center">Prayer</h3>
<blockquote><p>We have come after having won a victory in last week&#8217;s fight. Please let the Father&#8217;s deep love and sung sang descend upon our minds and bodies. We are embraced inside the bosom of the Father. Father of love, please bestow upon these sons and daughters the joy of love that penetrates deeply into Your abundant life. We know that if we cannot experience the preciousness of the Father and His heart, then we cannot eradicate our ties with all of our sins. Therefore, Father of compassion, please allow us to fall asleep inside the Father&#8217;s love this moment. Please allow us to give all of our heart to the Father&#8217;s dispensation.</p>
<p>My Father, we sincerely hope You will allow us to become beloved sons and daughters who can submit to the Father&#8217;s dominion and experience the original will in our minds. Let us feel the original heart in our minds and fully cope with all of our responsibilities as those who have been called on earth.</p>
<p>We know that it was the Father who mourned for us when there was a sad situation on the perilous road up to now. It was the Father who reflected upon all of our sins, fought against the false charges of Satan when we fell into the realm of despair, and lamented. Beloved Father, we wish, from the bottom of our hearts, that You will allow us, in this hour, to feel with our minds and bodies that there is no way to repay the grace of the Father who has been exerting Himself until now. Even if we offer all of our minds and bodies as sacrifices to the Father, it would not be enough.</p>
<p>Father! We do not have anything to brag about or take pride in before the Father. You have called us out of many people and have called upon these people out of many peoples in spite of our being unworthy. What we want now is to become people who know how to mourn when the Father mourns and rejoice when the Father rejoices. Let our minds and bodies go up in an explosion for the sake of the will when the Father desires it to be so.</p>
<p>Please protect the sons and daughters who have gathered here. Please be the center and master. There is nothing we can boast about on earth. We know that we stand in a lonely place and the steps we take are on a perilous path. Father, please take charge of us and rule over us.</p>
<p>You can be comforted by our voice calling out, &#8220;Father,&#8221; even as we are falling down in the fight of the Last Days. We are Your children who have received the counsels of the Father&#8217;s love. We are the ones who have pledged, determined, and must fight. Therefore, Father, please do not hand our bodies and minds over to Satan.</p>
<p>As much as possible, please embrace us inside the realm of the Father&#8217;s love. Please build the garden that You desire so that the one day when all people can be happy can manifest itself. Father, we earnestly wish that You will hold onto them and guide them until the end so that they can achieve this.</p>
<p>In this one moment today, please allow the will that the Father allowed to fill this temple. Allow us to understand that the place we are in right now is the culmination of the 6,000-year work, an altar of the blood of the 6,000 years of toil. May the bow that we are offering on behalf of all humanity open the heart and mind of the Father and comfort Him.</p>
<p>Now, beloved Father, we sincerely hope that You will allow us to become a light before the will of the Father. Let us remain as the center that can boast before the will of Father as we now divulge everything.</p>
<p>Even now, lonely members are scattered in the countryside, carrying on a conflict fraught with hardships. Father, we earnestly wish for You to protect and guard them. Earnestly requesting that the Father&#8217;s compassionate grace will be bestowed upon the bows that we are making this hour, we offer all these words of prayer in the name of the Lord. Amen.</p></blockquote>
<p>The content I want to reflect upon with you is &#8220;Let Us Join in the Pursuit of the Homeland.&#8221; I will speak briefly upon this topic.</p>
<h3 align="center">The Reason Fallen Humankind Longs for the Homeland</h3>
<p>You probably have already heard through the Divine Principle that we must restore and return to the original homeland before the fall. We must find the original state before the fall of man, the position before losing God, the position before losing True Parents. Humanity lost True Parents. We cannot but seek the position where we can live as children in the garden of peace centering on God and the ideal True Parents. Therefore, to accomplish this task, we have a new term today: the dispensation of restoration.</p>
<p>If our ancestors in the garden of goodness had forged eternal ties with God, then today we would not have needed the term &#8220;restoration.&#8221; We would not have needed the condition of going through the Savior. There would not have been any need to use the terms &#8220;faith&#8221; and &#8220;seeking God&#8221; nor would there have been any need for the term &#8220;new era.&#8221; There would have been no need for repentance.</p>
<p>When we analyze ourselves today, we find that there is a demand for new hope, a new leader, new life and new practices. All of this came into being because of the fall.</p>
<p>From the fall until today, despite the passage of the long history, the homeland of hope that humankind wants has not yet been realized. Although human beings seek that homeland in their hearts, they are unable to create and find joy in that homeland. They are unable to indulge in eternal happiness inside that homeland.</p>
<p>There has not appeared even one person who has experienced joy in the historical garden of the homeland. Even among the masters of Tao who took responsibility for missions, not even one person fulfilled that ideology. Until this day, neither the Creator nor Jesus in whom we believe could complete the ideology of the homeland on earth.</p>
<p>Human beings lead their lives longing for the garden of the homeland. We cannot deny that we must live following our good mind, otherwise we cannot become good people. The course you must travel until the day you achieve the homeland of hope, the land where you can lead a life of goodness, is not a smooth course. The history of conflict is connected with that course, and Satan is ceaselessly making false accusations. Therefore, humankind has wished that the conditions of accusations and lamentation directed toward them may be forever wiped off this earth.</p>
<p>This is the sorrow of humanity and the sorrow of the earth. Human beings should not experience anguish and sadness, yet they live in an environment of sadness and anguish by virtue of the fall. God the Creator cannot change His concern about the sadness and distress that His children suffer. When human beings are distressed, God must be sad too. When human beings are sorrowful, God must be sorrowful.</p>
<p>We have to understand that we have the causal link that made it possible for God to raise us up and give us universal life. The link with the environment is the basis upon which we can live. In the background of the environment there are also certain links.</p>
<p>What is the most precious thing for those of us who are searching for the ideology of life? It is obtaining the link of life that allows us to forge a relationship with the ideology we have in the framework of our lives. Until you find those links of life, of environment and of ideology, your mind will struggle without rest to find them.</p>
<p>After finding these links of causality, are we going to solve only human relationships? No, we are not only to solve human relationships; we are to surpass human laws and connect with the heavenly principles. The position formed by the bonds of life, as well as the bonds of lifestyle and environment on the world and cosmic levels, can be manifested centering on you. When you feel your lifestyle can stand as a testimony, humankind will finally usher in the day of victory.</p>
<h3 align="center">The Bonds of Parents, Couples and the Nation</h3>
<p>For as long as human beings have lived on earth, there has been no one who has the foundation of life that surpasses the human laws of this environment. When we think about this, we can see that in order for me to be born today, in order for me to exist on the earth, by the law of cause and effect, we must work through the bond of parents. You must keep in mind that without the bond of parents, you would not exist.</p>
<p>The relationships and purposes of people born on the earth is the parent-child bond. After connecting with the parent-child bond, what kind of bond should you possess? When you go seeking the ideology of life, you cannot escape from the bond between a couple. After attaining the bond of life and the bond of lifestyle, what do you need to have? You are to make relations with the nation and the citizens who can connect with the bond of life. This is the realm of relations we live in today.</p>
<p>Can we be satisfied in the realm of relations in which we live now? Certainly not. Even if all these have been prepared, there is one absolute relation that our minds demand. You will feel in your lives that we are longing for and searching for that bond. What is that bond of cause and effect? It is the relationship with God, Who exists as the subject in the reciprocal relationship with humankind. In this world, there are many people who do not feel this.</p>
<p>When a human being is born on this earth, with what eternal relationship is he born? There is the relationship of causality with his parents to obtain life. He then has to pass through the bond between couples to find the ideology of life. After that he has to pass through relations on the national level for the sake of practical activity, and he has to transcend human ethics and find the day when he can rest eternally. Yet this earth is a fallen world. Therefore, religion, which manages the dispensation of restoration, has been established on earth to sever relations that obstruct our path out of the fallen realm to the realm of restoration. It enables us to step over them.</p>
<p>When we live on the earth, we are to follow heavenly laws and human laws. Moreover, you have to struggle to become people who can connect with the parents on whom we depend for our lives, connect with the couple, connect with the nation, and forge relations with the whole world. To find the one day that we can sing and harmonize with all things, you have to struggle until your life is fully exhausted. You are to carry on fierce conflicts.</p>
<p>Because history began with conflict, the conclusion of history will also be achieved through conflict. Of course, the same is true for the process. Even if you have parents who love you and a nation in which you can find comfort, because the humanity of this earth lost peace of mind, fighting is inevitable.</p>
<p>Why is God feeling distressed? God does not grieve over the sorrow of the people who have no parents on the earth. God does not mourn because there are no couples on earth. God does not mourn because there are no nations on earth. What is the cause of God&#8217;s grief? You have to understand that the sorrow of God is that the bond that can connect with the ideology of the heavenly principles has not been accomplished on earth.</p>
<p>What we, the descendants of the fall, must realize today is that the parents, the world and the nation are unable to introduce the ideology of God in the original form. Living in this fallen realm, humankind has the responsibility and mission to accomplish this ideology after stepping above the one stage. It is Heaven&#8217;s difficulty that it has to work its dispensation with people who are ignorant of this.</p>
<h3 align="center">The Destination of Human Beings</h3>
<p>What path should humanity travel and what steps should they take now to go in search of the eternal ideology? They need one condition of rapid progress that is different from the one at present. It is a condition that is not clearly known. Jesus, whom you believe in, is the one who was sent to this earth to take responsibility for finding that condition.</p>
<p>In what position is humanity, the descendants of the fall? They have fallen from the position where they were to serve God as the eternal Parent. Due to the fall of human beings, the bond between the bride and bridegroom, which can provide the condition of eternal joy centered on God, has also been cut off.</p>
<p>Because this original relationship has been destroyed, failures came on the individual and family levels. Next, people lost the qualification to inherit the glory of God, the Jehovah of all people. What is more, they lost the environment that promises the greatest joy to God and humankind.</p>
<p>What then is the original purpose of believing in Jesus and following the road of faith? It is not to indulge in the environment where they are born into the fallen lineage. It is to bring liberation from that environment and to, one day, eradicate all the causes entangled by sin and then find the original center. What is the original center? In that place, there must be parents and couples. There must also be an environment and nation that can protect one&#8217;s family. The purpose of our life of faith is to fulfill all these. Moreover, you have to understand that God imbues even evil people with goodness, and by moving their consciences, He has been working to raise them up to this standard of ideology.</p>
<p>After understanding these things, you must carry on the struggle for the sake of goodness with all of your sincere heart. By feeling that you and the world have deviated from the original laws, you must develop an immutable conviction to fight against this.</p>
<p>When we look at the lives of the people who have been raised by their parents and are managing their lives inside the spheres of relationships on the national or world levels, we learn that they are not lives centered on eternal human ethics or eternal values. All forms of lifestyle and ideology, which came into being on this earth because of the fall, face the destiny of being liquidated on the day of judgment.</p>
<p>The love that was meant to be between human beings is manifested by the fact that there is mourning when one lacks affinity for their parents. There is mourning when affinity between a couple is lacking and when there is no nation that protects one&#8217;s family on this earth where the eternal ideology has not been realized. Even for changeable relations, one mourns when the environment conducive to them is not formulated. Therefore, would not one mourn over the fact that one does not have relations centered on the eternal ideology? Human beings are created so that, even when they are given all the humanistic conditions on earth, they still want eternal relations of heavenly principles.</p>
<p>Today then how must we men and women of faith live? We are not to live with changeable ideological conditions. We are to restore unchanging relations, but we must understand that these relations are not separate from us. They are all tied together as one inside the sphere you live in. You must develop a relationship with God by your own effort.</p>
<p>By developing a relationship with God, you are to become sons and daughters of God who restore that demonstrative value and attend God in that sphere of time and life. In other words, you must become sons and daughters who can live within the bond of unity with God.</p>
<p>If you feel the substantial embodiment of God, who enables us to lead that kind of life, then that value is not partial. When you restore the environment in which the whole value can be realized, then the individual and whole value will begin to move centering on you.</p>
<p>God has been working to inspire a good heart in humankind. The history of sin must change, no matter what. In this way, God has been working to introduce to humankind the door to the ideology which will not change once it becomes a world of goodness. Jesus is the person who came to this earth to fulfill this task on behalf of God. Therefore, Jesus said that he and God had become one body. Furthermore, he said that he was the son of God, specifically, the only begotten son. Going one step further, he said that he was the bridegroom of humanity. You have to understand that Jesus was the true parent of humanity.</p>
<h3 align="center">Jesus Came to Restore the Original Bond</h3>
<p>What was the spirit of the people of Israel who led their lives based on the idea of faith? That spirit is the faith that believes in God. Thus, they hoped that the nation of God would be built with the faith that relied on God. The purpose of Jesus&#8217; coming to this earth was to bring this hope to pass.</p>
<p>Therefore, Jesus was the king of all kings. In regard to life, Jesus spoke of being the bridegroom. We are the brides. The purpose of these words is to implant the idea of a united couple in the living sphere. Accordingly, even when he was passing away, Jesus pledged to do the work of parents through himself and the Holy Spirit. Since God Who created the earth is invisible, it can be said that the purpose of Jesus&#8217; coming to this earth was to represent the invisible God, to testify to humankind of the invisible God.</p>
<p>What was Jesus&#8217; field of vision, coming to the earth with that kind of mission? First you have to understand that Jesus could call God, Who created the world, &#8220;Father.&#8221;</p>
<p>Today, countless men are living in the fallen realm on this earth. Jesus&#8217; line of vision was different from that of fallen people. Jesus poured every ounce of his heart into the one question of calling God his own father. Moreover, he agonized over the purpose of actualizing the relations that allowed him to proclaim that his father was the best. He then tried to develop the idea that he is the bridegroom for humanity. However, before he could qualify as the bridegroom of humanity before God, he passed through the stage of perfecting his position as the bride before God.</p>
<p>Although Jesus came to the earth with the idea of True Parents, humankind on earth at that time did not attend Jesus. They did not know that, although they had parents whom they served, a spouse with whom they lived, a nation in which they worked, and a world for which they longed, these could not be complete.</p>
<p>They should have promulgated their hope, revived that ideology, and served Jesus Christ. Jesus Christ was the central figure of the ideology that could give life to the whole lifestyle and historical course, which has the value equivalent to God. Yet, they could not do this.</p>
<p>Jesus Christ came to complete all the hopes of God and humanity. What kind of life did he live? Although Jesus was born into Joseph&#8217;s family on earth, he was not Joseph&#8217;s son. He was not Mary&#8217;s son. The relationships for which Jesus hoped were different from the hope of human beings on the earth. In the changing environment, he transcended the relationships of mourning parents and couples. He transcended the bonds of the environment in which people live. Furthermore, he transcended the relations of the world within the realm of judgment. Jesus felt the unchanging heart of the Parent of Heaven, Who is the center of goodness.</p>
<p>This was the joy of God. This was the content based upon which Jesus could become the son that God had been seeking throughout the 4,000 years since the fall of man. On this earth, where there was no one who could call God &#8220;Father,&#8221; there finally appeared someone who could. Born with the lineage of changeable parents, humankind at last could seek an unchanging relationship with the eternal Parent.</p>
<p>The center of Christianity is the New Testament. What is the center of the New Testament? It is Jesus. What is the center of Jesus? It is love. The center of love is the bride and bridegroom. What is the center of the bride and bridegroom? It is True Parents.</p>
<p>You have come searching for this path. However, no matter how wise you are and no matter how much boasting you can do before God, you have been born with the lineage of fallen parents. You are dead people who could not receive the immutable lineage of True Parents. Only when the dead people develop a bond with the unchanging lineage of True Parents can they claim back the eternal bond of the heavenly principles. To get this back, the spirit world has been mobilized for the fight that is being conducted now. Christians have hoped for these kinds of eternal relations. When the relations of parents, couples and national relations are determined in Heaven, the glory of God can be transferred to this earth.</p>
<p>In materializing the ideology of the Creator, one must develop the causal relations of the parents who gave birth, the relations of a couple for the sake of living, and the relations of the nation and universe for the sake of carrying out activities. If such a universal ideology of the creation is not found and established in the living environment, then God cannot come and reside.</p>
<p>What has Jesus done in the 2,000 years since he passed away? He has been pioneering this path. What then should we do, we who are moving forward with a firm belief in Jesus, the spearhead of the pioneering efforts of today?</p>
<p>Jesus said, &#8221; . . . I am the way, the truth, and the life. No one comes to the Father except through me.&#8221; (John 14:6) The road Jesus traveled was the road that connected the relations of parents, husband and wife, and the nation. Jesus is a person who is linked to the heart of the heavenly principles and to the heart of the Kingdom of Heaven. He is the center of goodness, who is connected to the heart of the Creator, Who governs over dispensational history.</p>
<p>Jesus said, &#8220;I am the way.&#8221; Yet what &#8220;way&#8221; is he referring to? He is talking about the way of love. That truth is the truth of the cross. Moreover, the life he is talking about is the life of the whole. You should believe in Jesus.</p>
<h3 align="center">The Efforts of God to Find True Sons and Daughters</h3>
<p>You who are living on earth today are living within the sphere in which you can endanger your heart when you are afflicted with wounds in your mind. Nonetheless, you will feel that there is no way for you to connect to God, Who exists as the center of hope. You have to understand that this is the anguish of Heaven. Someone must resolve this anguish, but there is no one with the internal standard who can.</p>
<p>Although human beings can see, hear and express their hearts to each other, the heart of the Creator God was never conveyed to anyone, though 6,000 years have passed. Heaven has been laboring until now to set the standard on the level of some people to connect to the heart of Heaven.</p>
<p>Although this kind of history has traversed 6,000 years, until now there still has been no establishment of the eternally unforgettable link between Heaven and &#8220;I.&#8221; You have to understand that to set this standard, God sent many prophets and has guided the dispensation through Jesus. You should realize that this is the effort God made to find true sons and daughters.</p>
<p>Though God stands in the position to accomplish the ideal ideology of life as the center of ideals, He had to do the work by sending prophets and sages, because He could not directly build a relationship with humankind in the fallen realm. This is also the difficulty of Heaven.</p>
<p>God sincerely longs for the establishment of the one standard on earth which can attend the representative of God as the Savior who is coming to help the whole of humanity serve God as their Father. Therefore, we must quickly bring about the one day when humankind can stand on the standard of original human ethics and of the heavenly principles that Heaven demands and offer a bow before the Father.</p>
<p>What has Jesus been keeping deep in his heart? What has he mourned over? Today there are many people who are sad because they do not have parents, a spouse or a nation. However, Jesus grieved because he could not fulfill his duty of alleviating the sorrow of God and building the true heavenly nation, centering on True Parents.</p>
<p>Moreover, you have to understand that Jesus has suffered greatly to build eternally, unchanging, heavenly relationships with people who were changing countless times in their lives. Therefore, you should walk the road of truth, life and love that Jesus introduced.</p>
<p>While he was living on earth, Jesus had the mission to set the unchanging, principled center, but because he lost the foundation to live on the earth, he has been working to achieve this task. Jesus came as the center of the world that combines the spiritual and the physical, but because he died on the cross, he could relate with human beings only spiritually. This is the grief of Jesus. However, because this is not the completion of the dispensation, there still remains the condition for him to return to this earth again.</p>
<p>What is another sorrow that Jesus felt after coming to this earth? He mourned over the fact that if humankind had not fallen, they could have led their lives personally attending Parents of goodness with their minds and bodies. Because of the fall, they could not serve True Parents for the long period of 4,000 years. As you can see, the people at that time could not recognize that Jesus stood in the position of the Father with the heart of a True Parent.</p>
<p>Humanity&#8217;s inability to recognize Jesus who came was the grief of God. Not being able to attain the parent-child relationship with humanity is the grief and sorrow of Heaven.</p>
<h3 align="center">The Task of Believers</h3>
<p>What is the consequence of the fall today? The eternal Creator is the Father, yet our not being able to call him &#8220;Father&#8221; is the consequence and source of bitterness of the fall. Because Jesus understood this well, he appeared to humankind personally and tried to guide them with loving hands, but they did not fathom his heart. Although he spoke words of love, they ignored him. Although he shed tears of grief, they did not understand his situation.</p>
<p>You who are living on earth today must demonstrate filial piety to your parents and be loyal to the nation. In other words, you must walk the path of human ethics. Jesus came with the mission to join the heavenly principles with human ethics. Who comprehended this heart of Jesus? Today there are many people who betray Jesus and forget his heart, but people 2,000 years ago did not understand Jesus any better. You have to reflect whether you are true Christians.</p>
<p>What is that which you must achieve and restore now? It is understanding the heart of Jesus and comforting the heart of God, Who has been grieving for 6,000 years. You should repent from the position of the people of 2,000 years ago, who caused God deeply penetrating grief because they failed to attend Jesus. You must also repent that you are ignorant of the practical reality.</p>
<p>Who followed Jesus to the end without forsaking him? The twelve apostles of Jesus? No, the three disciples among the twelve apostles also could not believe in and follow Jesus to the end.</p>
<p>Although Jesus tried to introduce the love of God to humankind and tried to put that love into practice, he passed away without building a substantial relationship of love with humankind. You have to understand that although Jesus conveyed the words of love and had a heart that burned with love, he passed away without having found one person whom he could hold tight and interact with as, My son, My father, and share the love that runs between parent and child.</p>
<p>You have to understand the heart and situation of Jesus, who cried in anguish through the sleepless night in the Garden of Gethsemane, even as the disciples were dozing off. There were many people who liked Jesus&#8217; words of love, but 2,000 years ago, Jesus did not have any place to give his love.</p>
<p>Without connecting to this heart of Jesus, you cannot forge a parent- child relationship with him. Moreover, you cannot make the bond of husband and wife through Jesus, and you cannot stand in the position of loyal subjects and women of fidelity.</p>
<p>We are to comfort and liberate his heart, which is immersed in the historical sorrow of the 6,000 years when he called God &#8220;Father&#8221; and clung to Him. When we cling to the distressed heart of the Father and call Him, with just that one word, Heaven and earth that have been divided will be joined again. If you cannot set this standard again, then the sorrow of God will never leave you. You will not be able to escape from the condition of judgment by God.</p>
<p>What then must you do to accomplish this task? What must you do to understand the will of Jesus? You have to become a person who knows how to live according to your original mind and according to how you are taught, and walk the same way Jesus walked.</p>
<h3 align="center">The Wish of Jesus and Ours</h3>
<p>As a person who lived on earth with a physical body, Jesus could have displayed his emotions of filial piety toward his parents, but he could not do that. He could not have a relationship with a spouse. Because he knew that the bitterness of God had not yet been alleviated, he abandoned a comfortable environment. He cut off all the trivial relationships of the world. This is the situation those who are searching for the world of the heavenly way today must inevitably go through.</p>
<p>Therefore, because there were the conditions of the heavenly principles that constrained him to selectively do certain things, Jesus was silent even when he was rejected by his family and society, and even when falsely accused by Satan. He could not say anything. Jesus could not find the bride for which God had yearned in humankind on earth for 6,000 years. He could not find one son or daughter. Who could he blame?</p>
<p>What then is Jesus&#8217; wish? It is that you become true people who, as the central figures who can unite with Jesus, can inherit the whole ideology of Jesus concerning life, husband and wife, and parents. Moreover, Jesus hoped for a person who could materialize the ideology of love. When such a person emerges, there will come a time when Jesus can frankly discuss with him the situations of God.</p>
<p>Because this kind of person did not emerge, God&#8217;s dispensation until now has been covered up. It could not be revealed. Moreover, Jesus was in a position where he could not divulge it even if he wanted. The reason is that there did not appear one true person who could fulfill the ideology of goodness on earth for the original ideology. Thus, the dispensation of God has remained a symbolic dispensation. As a result, our destiny is to unfold this symbolic dispensation of God into substantial manifestation.</p>
<p>Since the creation of the world until now, there was not even one person to whom God could reveal everything in His heart and consult with honestly. Moreover, after Jesus passed away until now, not even one person has appeared to whom He could reveal all of his ideas and share them. You probably know well that the substantial environment in which the entire ideology of Jesus could be realized did not come into fruition.</p>
<p>Who then must become the objects of God and Jesus on behalf of history? All people must become the objects of Jesus and God&#8217;s love. Until you cross this line, you cannot create the bond with parents, spouses and with the nation which will allow you to sing in praise of the eternal relations.</p>
<p>As you try to search for the original road today, there will come a time when all conditions of this earth will pull you down. The closer you go toward the Last Days, the less you can deal exclusively with the things you like. They have to be changed. Only then can you cross the pass of judgment. Moreover, you can then build the eternal bonds of parents, husband and wife, and the substantial bonds of a nation.</p>
<p>If there is someone who is searching for the ideology of Heaven in the Last Days, often that person&#8217;s parents will oppose him. When you go in search of the ideology, your parents will cut themselves off from you. Husbands and wives will be separated from each other, and there will be divisions in the nation and the world.</p>
<p>Therefore, you have to walk the course that Jesus traveled. Jesus was abandoned by his parents, his brothers, and by the church, the nation, and the world. However, because Jesus clung onto the unchanging laws and ideology of the heavenly principles with the heart of a shepherd, his ideology survived. Moreover, a victorious environment centering on Jesus was created.</p>
<p>Similarly, because humanity chased Jesus out, by the principles of restoration through indemnity, the people who seek Jesus must walk through the environment in which parents, spouses and the nation oppose them. You have to have this kind of determination.</p>
<p>Furthermore, you must connect with the unchanging bonds with parents under heavenly law and the bonds between original couples. You must establish the uniform ideology of life based on the relationship of the bride about which Jesus spoke. You have to serve God and love the earth, and you must be loyal to the nation. After these things are achieved, Jesus&#8217; wishes will be fulfilled, and God&#8217;s love can finally make a relationship with human beings.</p>
<h3 align="center">The Last Days When We are<br />
Judged by the Things We Like</h3>
<p>In the past, to overcome the crisis encountered in the course of restoration, God worked through angels. After that, He worked through His only begotten son. From now on, the time will come when we will be ruled by the Father. Therefore, Paul talked about the love of God inside Jesus. The love of Jesus alone is not enough. Moreover, the love of the Holy Spirit alone is not enough. You must reach the standard where you can forge a bond with the love of God, through the love of Jesus and the Holy Spirit.</p>
<p>To do that, you must not be tied down to any condition of love on this earth. Moreover, you must not remain in any position of glory on earth. At this time, when the day of hope is approaching, we must feel that the fearful day when the Father will make the judgment is coming to us.</p>
<p>At any rate, to walk the original path humankind must travel, we must abandon everything we have. First, we have to abandon material things; next, our parents and children. In other words, we must abandon our families, and even lose our nation and the world.</p>
<p>The reason is that we must follow the example of Jesus, whose one and only center remained unchanging, even when he lost his parents, relatives, church and the idea of dominion over the universe, which God had promised at the time he crossed the victorious hill of the cross. The center of Jesus is attaining the eternally unchanging parents, couple, family, nation and world.</p>
<p>Similarly, you must also have the mind-set ready to abandon all momentary values and bonds on earth for the sake of unchanging eternal relations. In the Last Days, there will come a time when you are judged by the things you like. What do you want? Do you want to be a scholar? If things go wrong, then your degree will hang you by the neck. That authority will hang you. Those who have been blessed with inspiration will fall down because of it. This is the so-called great judgment. You simply cannot be sure whether the conditions in which you find joy, the conditions you treasure as your own life, will hand you over to the place of judgment.</p>
<p>You must not abandon the course, even when you are in an arduous and difficult place. You must persevere to the end so that you can give birth to your second self. I wish that you would clearly understand that only this kind of person can enter the Kingdom of Heaven. This is the reason Jesus said, &#8220;. . . Whoever desires to come after me, let him deny himself, and take up his cross, and follow me.&#8221; (Mark 8:34) Jesus also said, &#8220;Do not think that I came to bring peace on earth. I did not come to bring peace but a sword.&#8221; (Matthew 10:34) These are the Last Days. Jesus said your own family members are your enemies. Furthermore, your physical bodies, the nation, society, etc., all that is not restored, are your enemies.</p>
<p>Those who have the mind to appeal, &#8220;Father, who will even understand this kind of situation?&#8221; can obtain true life and the victorious resurrection. Those who have the heart of the heavenly principles can do so.</p>
<p>Jesus said in his final decisive prayer in the Garden of Gethsemane, &#8220;. . . O my Father, if it is possible, let this cup pass from me; nevertheless, not as I will, but as You will.&#8221; (Matthew 26:39) You must realize that this kind of faith has become the condition of resurrection and represents the heart of Jesus, who was fighting on behalf of the heavenly principles. The bonds that tied God and the Israelites must bear fruit through you. You must become people who can alleviate this sorrow.</p>
<p>After you become this kind of individual, in whom God can take pride, when you become the couples, parents, filial sons, nation and world, there will no longer be any need for religion. There will no longer be any need for the terms &#8220;faith&#8221; and &#8220;Savior.&#8221; In the one uniform sphere of relations, God can finally make a beginning that can bring out His glory toward humankind.</p>
<p>To enter this kind of environment, you must obediently follow in the footsteps of Jesus. In other words, you are to inherit Jesus&#8217; ideology as is, and set the unchanging standard of resurrection. That standard is not centered on human beings. It is centered on the heavenly principles. Therefore, you must pass through the positions of parents of the heavenly principles, the couples of heavenly principles, and filial sons and daughters of the heavenly principles. You must then set the laws of filial sons, the laws of women of fidelity, and the laws of loyal subjects.</p>
<h3 align="center">The Life of Separating Oneself from Satan</h3>
<p>How many filial sons and loyal subjects have there been in history? Only when there are people who can receive love from God can we remove all the conditions embedded in the satanic world and enter the original garden.</p>
<p>In order for you to become like that, what must you do? You must become one with the heart of Jesus. You must become one with the will of God. After you have achieved this, you must become united with all of humanity on earth. After coming to earth, Jesus sought the uniform ideology regarding the heavenly love of oneness and has put it into practice for the sake of bringing unity.</p>
<p>You today must become one now. To become filial sons and daughters who are loved by Heaven and serve their parents, you must, first, become one with your brothers and sisters. Furthermore, you must make it possible for the family, nation and world to attain oneness. You must be able to distinguish Satan. To fulfill that kind of mission, you must fight from this moment on. Satan will follow you around even after you enter the glorious realm of resurrection. You must chase away this Satan who is following you. What must you do to accomplish that? You must find the master, parents, couples and children on earth centering on God. You must establish the heavenly nation and heavenly world where you can actualize the ideology of Heaven. Until then, Satan will always follow you around.</p>
<p>What is your present state of faith? You have arrived at the realm of unchanging ideology that can link with the heart of God and Jesus. Nonetheless, this alone is not enough. You are to carry these out with a sense of responsibility. After you joined the Unification Church, you must have come to some understanding of the standard of truth. Yet even if you understand the truth and are within the realm of liberation of the truth and have followed the truth, the question is whether you have become an embodiment of truth. Not all of you have.</p>
<p>During the 2,000 years since his resurrection, Jesus has been fighting in the spirit world for the sake of God&#8217;s will. Similarly, you must also have the environment in which you can fight for the sake of Heaven. Just as the 2,000-year history has been a history of sorrow, you must conduct a faith united with the new truth and can overcome the sorrow.</p>
<p>We have come to know the fact that we are joined with God in a bond. We have come to understand the unchanging heart of the Father. Therefore, we must comfort God and become the elite troops of Heaven who can take on the invisible Satan and march forward.</p>
<p>The 6,000-year history of humankind brought grief to God. Therefore, you must make the determination to follow the will of the Father with an unchanging heart, even if you die. Without this kind of resolution, although you have joined the Unification Church, you will soon quit. Many people also thought that following Jesus was beneficial 2,000 years ago, but when they saw Jesus walking the path of the cross, they all ran away.</p>
<p>You have to have the same kind of sense of responsibility as Jesus, who traversed the realms of life and death with the ideology of God&#8217;s creation and an unchanging heart. He maintained an unchanging center of heart, even in front of Satan. If there is someone who becomes one with God for the sake of restoring the love and life that was lost and who boldly steps forward toward Satan, then that person is an owner of true faith.</p>
<p>Now to actualize the ideology of God, humankind must first become one. Even if we suffer sorrow and agony, we must not despair. For the sake of restoring the true bond, we must liquidate original sin and the works of Satan. By pioneering the changing environment into an unchanging environment, we must all become united. We must fight with Satan in unity.</p>
<p>Have you become members of Heaven&#8217;s family who can multiply and spread the new ideology of Heaven? If you are members of the same family, then you have to serve the parents and you have to receive the recognition of the parents. After you have parents, siblings can rejoice. You will then have the environment in which the family can be happy.</p>
<p>You have to let your joy become the joy of your neighbors, the nation, the world and God. Moreover, when you relate with the whole of humanity as if they are your parents and siblings, you can say that the will of Heaven is fulfilled.</p>
<p>To fulfill that, you must follow the teachings of Jesus. You are all to walk together the path of life, truth and love that Jesus pointed out when he said, &#8220;I am the way, the truth, and the life.&#8221; Ultimately, you have to overcome all difficulties and ordeals with an unchanging heart and go before the Father in the same way that Jesus maintained an unchanging heart even while he was bearing the cross. Furthermore, you can restore the original world only when the Father can boast about you before Satan. Only then can you feel the original parent- child bond with God and between human beings and also with all things. You can experience the original affinity and love.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please let the sons and daughters who have gathered in this place now understand that they are struggling to find the relationships through which they can find joy in their families and nation, and in their ideological course. When we come to understand that we have the mission to pay indemnity for the relationship with our bodies and minds, and when we come to realize that until now our minds and bodies have been moved and swayed by bonds to this earth, Father, please grant us the power, love and life of Heaven that will empower us to bring an explosion as the wellspring of re-creation. Based on this, by destroying all the accusations of enemies and the conditions of death and by becoming one with the love of the Father, please allow us to become embodiments of the eternal truth and to stand in the position where we can be proud before the whole universe.</p>
<p>Father! Earnestly requesting that You guide us to become filial sons and daughters, women of fidelity, and men of loyalty who can live with the Father amid eternal glory with unchanging hearts, we offer this prayer in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html" title="Permalink to LET US JOIN IN THE PURSUIT OF THE HOMELAND" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME THE TRUE SONS AND DAUGHTERS OF THE TRUE FATHER</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html" rel="next">THE PATH, ITS PURPOSE AND ITS VALUE <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,227 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US NOT BECOME A BETRAYER OF GOD&#8217;S WILL &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-873 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-873" class="post-873 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US NOT BECOME A BETRAYER OF GOD&#8217;S WILL</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:24:01+01:00"> <a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:24:01+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 20, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</p>
<p><em>Matthew 23:29-39</em></h3>
<p style="text-align: center;"><em><span id="en-NIV-23948" class="text Matt-23-29"><span class="woj"><sup class="versenum">29 </sup>“Woe to you, teachers of the law and Pharisees, you hypocrites! You build tombs for the prophets and decorate the graves of the righteous.</span></span> <span id="en-NIV-23949" class="text Matt-23-30"><span class="woj"><sup class="versenum">30 </sup>And you say, If we had lived in the days of our ancestors, we would not have taken part with them in shedding the blood of the prophets.</span></span> <span id="en-NIV-23950" class="text Matt-23-31"><span class="woj"><sup class="versenum">31 </sup>So you testify against yourselves that you are the descendants of those who murdered the prophets.</span></span> <span id="en-NIV-23951" class="text Matt-23-32"><span class="woj"><sup class="versenum">32 </sup>Go ahead, then, and complete what your ancestors started!</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23952" class="text Matt-23-33"><span class="woj"><sup class="versenum">33 </sup>“You snakes! You brood of vipers! How will you escape being condemned to hell?</span></span> <span id="en-NIV-23953" class="text Matt-23-34"><span class="woj"><sup class="versenum">34 </sup>Therefore I am sending you prophets and sages and teachers. Some of them you will kill and crucify; others you will flog in your synagogues and pursue from town to town.</span></span> <span id="en-NIV-23954" class="text Matt-23-35"><span class="woj"><sup class="versenum">35 </sup>And so upon you will come all the righteous blood that has been shed on earth, from the blood of righteous Abel to the blood of Zechariah son of Berekiah, whom you murdered between the temple and the altar.</span></span> <span id="en-NIV-23955" class="text Matt-23-36"><span class="woj"><sup class="versenum">36 </sup>Truly I tell you, all this will come on this generation.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23956" class="text Matt-23-37"><span class="woj"><sup class="versenum">37 </sup>“Jerusalem, Jerusalem, you who kill the prophets and stone those sent to you,how often I have longed to gather your children together, as a hen gathers her chicks under her wings, and you were not willing.</span></span> <span id="en-NIV-23957" class="text Matt-23-38"><span class="woj"><sup class="versenum">38 </sup>Look, your house is left to you desolate.</span></span> <span id="en-NIV-23958" class="text Matt-23-39"><span class="woj"><sup class="versenum">39 </sup>For I tell you, you will not see me again until you say, Blessed is he who comes in the name of the Lord.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23958a" data-link="[&lt;a href=&quot;#fen-NIV-23958a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+23:29-39#fen-NIV-23958a">a</a>]</sup></span></span></em></p>
<h3 align="center">
Prayer</h3>
<blockquote><p>Father, please forgive the children who are gathered here today. They have been living day by day, not understanding that they are Your precious children.</p>
<p>We understand that without You, no one can comfort us nor can anyone allow us to manifest Your glory. Have we by any chance insisted upon ourselves, so penetrated are we by sin? We know it is a historical fact that any act centered upon oneself betrays the heavenly principles. Please allow us to offer everything in this hour and receive Your grace through the separation of good and evil. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>By doing so, please allow us to incarnate our mind into Yours, our body into Yours. Please allow Your heart to substitute for ours, Your aspiration to substitute for ours. Allow our fighting spirit to be united with Yours for the fulfillment of Your will. Thus, bless us to attend Your will only with an undying spirit. Beloved Father, I earnestly wish and desire this to be done.</p>
<p>We understand that our life until today has been secular and could not be free of sin and evil. Please allow us to find the absolute value beyond time and space. Guide us to offer everything we have before the fulfillment of Your will, which desires to manifest its value before the one center.</p>
<p>Please allow us to establish a reciprocal relationship through which our hearts can be harmonized before the will and within ourselves. Allow us to maintain the joy that can sing a song of glory to God. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Father, I earnestly wish and pray that You allow us to understand the history of Your toil for humankind. Guide us to protect, at the risk our lives, the bloodstains of the many prophets and sages who have come and gone from this earth. Allow us to become sons and daughters who can be loved by You and of whom you can be proud before Satan.</p>
<p>Is there anyone who still does not know how to be grateful before Your will? If so, please caress them with Your hands of compassion. With Your almighty power, please have their hearts surrender to You, repent before You and humbly bow down before You in gratitude. Father, I earnestly wish and pray for this to be done.</p>
<p>As we now wish to receive Your words, Father, please have dominion over this audience. As I understand that You have been guiding these people for a long time with concern, please do not allow them to turn their faces away from Your guidance. Allow us not to block Your way due to our inadequacy or to stand in a position against Your will. Beloved Father, I sincerely wish and pray for this to be done.</p>
<p>Please have dominion over this hour as the Trinity. Allow us to offer everything we have before You and act according to Your will. By doing so, please allow us to become the ones who can return the beauty of harmony to You. Beloved Father, I earnestly wish and pray for this. Please grant us Your words.</p>
<p>Jesus loved his disciples with all of his heart and mind during his thirty years of life. Due to their betrayal, he had no choice but to die on the cross. Please let us again feel the heartbreaking facts in this hour. Please guide us, we who have been following You, to return an unchanging loyalty to You until the end and to appear before You as the fruits of glory. Father, I earnestly wish and pray for this. Please do not allow this place to be invaded by Satan. Even if billions of satans are attempting to invade this place, please allow us to offer ourselves as a living sacrifice in this hour.</p>
<p>Father, I understand that many lonely family members are scattered throughout the nation and are now praying, kneeling down before You. Wherever they gather, please manifest Your glory and victories to them. Thank You for filling their minds and bodies with Your amazing glory and guiding them to become Your sons and daughters. I earnestly wish and pray that they will become the children who can return glory to You. I prayed all of this in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech I would like to reflect upon with you in this hour is <i>&#8220;Let Us Not Become a Betrayer of God&#8217;s Will.&#8221;</i></p>
<h3 align="center">The Reason Human Beings Could Not Live<br />
in the Eternal Ideal and Environment</h3>
<p>Today we are living in an environment in which it is extremely difficult to establish laws based upon trust and righteousness. It is also hard to make a friend with whom one can live, enjoying a friendship not only throughout life, but also throughout eternity.</p>
<p>You must know well that we are faced with a reality in which it is difficult to have a spouse, parents, brothers or sisters with whom we can live together forever. Even now we humans are longing in our hearts to live with God in an amazing and broad realm of ideals in which our mind and our living environment would never change.</p>
<p>Originally, humans were to live in an environment in which they could eternally trust, depend on, love and show off everything good to one another. However, because they lost this environment, they have been destined to restore it. This did not become history by coincidence. There are certain stories we do not know. Throughout history, there were conditions through which our ancestors violated the great principles of absolute trust and righteousness. There were other conditions of darkness as well of which we are not aware. We should understand that, until now, not only our flesh and blood, but also our environment has been oppressed.</p>
<p>What then should we do when faced with such an environment today? Centered on the original ideals human beings were to possess, by becoming unchanging individuals of trust and righteousness, we should be able to manifest the eternal ideals, trust and righteousness as our own. By doing so, transcending our own life course, we should be able to receive a day when we can eternally rejoice. Today countless people are longing to see the arrival of such a day.</p>
<p>What state then are we in now? We are not yet liberated from the fallen lineage. We were not emancipated from the boundary of sin. Consequently, we are responsible for becoming free of it. We should reflect upon our wrongful way of life. We should block all acts that are unprincipled. You should understand that you are destined to restore the environment and ideals we can enjoy.</p>
<p>We are in that position because of the fall. What does the fall mean? It means that people could not be an unchanging center, a center that has fulfilled the ideals for the purpose of faith. We cannot be a center for the creation. The fall caused a change and a separation in the relationship between God and man. That relationship should never have changed nor should there have been separation, no matter what.</p>
<p>The reason humankind came to grieve is that they deliberately betrayed the principles established by Heaven. They did not believe in, but violated the will that should have been realized on earth as the center of the principle of creation. Because they did not do this, they came to grief.</p>
<h3 align="center">The Sorrowful History Continued Due<br />
to the Betrayal of Heaven</h3>
<p>When I realize today that my entire life is manifested through my mind and body and I cannot embody the absolute goodness and righteousness of God, what should I be sad about? I should grieve that my mind and body still have the scars that remain from the betrayal of God.</p>
<p>If people had not betrayed the heavenly principles, words like &#8220;betrayal&#8221; or &#8220;faithlessness&#8221; would not exist. Adam and Eve should have been established as the inseparable, true son and daughter in relation to God. The fact that they betrayed God&#8217;s will remains the sorrow of the universe and the sorrow of all people throughout history. Further, you should clearly understand that it remains today as the sorrow of our minds and bodies.</p>
<p>Now, with such a history, you should fight the enemy, offering yourself before the Father. Further, you should fight your living environment and all the powers of darkness on earth. You should be aware that you are destined to carry out such a life.</p>
<p>When we restore ourselves then and try to establish the principles of the absolute trust and righteousness of God, how can we stop ourselves from betraying God? How we can overcome ourselves, we who have inherited such fallen nature in our lineage? We have the background of such a mind and lifestyle, so does the entire social environment.</p>
<p>Since the creation of humankind, God has been conducting His providence for 6,000 years. You should also understand that in the process, He sent many prophets and sages through whom He attempted to establish faith and build an eternally unchanging relationship.</p>
<p>What was God&#8217;s heart like? He loved humans without limitation. That is why He is still toiling for them behind the scenes. Thus, you should become people who can discern the inner heartbreak of God, who has had an unchanging will throughout the course of human history. He has been looking for a person who can come forth and represent His eternal will with an unchanging heart for eternity.</p>
<p>What kind of being is God? He is a being who has been toiling and enduring for 6,000 years so that people would establish conditions for the foundation of faith in Heaven. Ever since the human fall, He has been standing, with a grieving heart, in the position where there was no one who did not betray Him. Still, He did not have any choice but to forgive and embrace them. You should clearly understand this. God and Jesus, in whom we have faith and whom we try to attend, believed in us repeatedly, in spite of our countless betrayals.</p>
<p>If there is a person who can understand the hearts of God and Jesus, that person will certainly be qualified to discuss things directly with God, beyond the historical betrayals on all levels of the society and the nation. To become such a person, you should clearly understand the heart of God.</p>
<p>How many people exist on this earth who can understand the heart of God, Who has been embracing faithless people until now? You who are gathered here at this hour should be able to feel God&#8217;s heart. You should empathize with the sorrowful heart of God, Who has been patient with people even as He was watching them betray Him. Still He toils to restore them to Himself. Unless you can become a person who can understand the heart of God, Who has been betrayed throughout the many thousands of years of history, but Who has remained a loving, patient and believing God, you will not be able to defeat the historical course of betrayals.</p>
<p>In the course of human history, where did the first human betrayal start? It started with Adam and Eve betraying God&#8217;s domain of love on the family level. Adam and Eve should have established God&#8217;s ideal of creation. Yet due to their disbelief in the will of God, through the fall caused by the archangel, the history of betrayal started.</p>
<p>After the toil of 1,600 years, God established Noah, a person He thought He could trust. God made Noah set a condition for 120 years. Noah attempted to fulfill God&#8217;s will, but he failed. Thus, the will of God was prolonged through the ancestors of faith throughout the many generations after Noah until the time of Moses.</p>
<h3 align="center">Jesus Appeared to Establish Faith on Earth</h3>
<p>Due to the fall of Adam and Eve, fallen people were divided into many peoples. From among the many peoples, God chose the Israelites, in whom He could trust. From among those people, He chose Moses. Through Moses, God could establish the laws of the heavenly principles that can never change, but the people who followed Moses betrayed God.</p>
<p>As a result, God could not achieve His will on the level of the family and the people. Yet by regaining Israel from the dominion of the Pharaoh and through the battles with the Canaanites and Satan, He sent a star who could represent 4,000 years of history: Jesus.</p>
<p>Did the people who had betrayed Moses accept Jesus? On the contrary, the Israelites betrayed him on the levels of the family, the society and the nation. You should know this.</p>
<p>When the sages and saints throughout the generations of history were commissioned with a heavenly responsibility by the will of God, God wanted to trust in them. The central people who were called for the heavenly mission to make such conditions were Noah, Abraham, Jacob, Moses and Jesus. You should know this.</p>
<p>With what kind of heart then did Jesus appear on earth? Jesus came as a representative of the whole nature of God and His historical words. Jesus was the substantial being of hope for which God had been looking. What then did Jesus feel when he came to the earth? When he came to the world with God&#8217;s words and cried them out, he felt that the words were not only historical words. He felt what the many prophets and sages had desired to express throughout history. Further, he felt that the words had been betrayed by countless people throughout history. Thus, he could feel the broken heart of God, Who has been looking for a person whom He could trust on the faithless earth.</p>
<p>Furthermore, Jesus felt the heart of God&#8217;s love that had desired to establish an eternal incarnation of ideal love, inseparable from Him, after He had created humans with all of His energy in the Garden of Eden. Jesus also felt a sense of mission to restore the original position of Adam and Eve, who had betrayed God. Jesus&#8217; position was not that of God, who was concerned about the fall. He was balancing sorrowful human history and heavenly principle on the scale, feeling the painful heart of fallen people, too. He appeared to cry out the words of God, a visible being representing the invisible being. He was the hyung sang of God, clinging to God&#8217;s heart. Jesus considered the words and the heart rejected and violated by many people throughout the long history to be his own. He regarded his body as God&#8217;s temple.</p>
<p>If Jesus had a hope that he desired to be fulfilled, it must have been to restore a day of goodness. He fought and died to establish a day of goodness.</p>
<p>When Jesus appeared before God the Father, he felt responsible for restoring all the words rejected throughout history and to comfort the Father by indemnifying the sinful history caused by the betrayal of the human ancestors.</p>
<p>Thus, Jesus appeared with a prayerful heart: &#8220;Oh, Father, whose temple and heart have been violated and trampled upon by human beings during the past 4,000 years! Please be comforted by seeing me.&#8221; He felt responsible for liquidating sin on earth. You should understand that his heart was pierced with the determination not to leave behind another history of betrayal and to vindicate all the betrayals throughout history and persist in reality.</p>
<h3 align="center">Jesus&#8217; Determination</h3>
<p>Jesus was determined to take the responsibility to fulfill such a mission. He knew that betrayal would occur where God&#8217;s words were spoken. He knew that God&#8217;s sorrow and grief would be wherever His heart was brought. He knew that Satan&#8217;s arrow would fly where God appeared in a body. He was determined to face this.</p>
<p>Although Jesus wanted people to advocate his position and protect him in reality, when they betrayed him, he was silently patient. You should understand the sorrowful circumstances where Jesus prayed alone for all humankind, grieving in the Garden of Gethsemane, under the olive trees.</p>
<p>At that time, Jesus was in a more pitiable position than anyone else on earth. Jesus came as a representative of God&#8217;s heart, clinging to the words of God. In addition to the words of betrayal by many people throughout history, there was no one who prayed, &#8220;Oh, my lord, my groom, my guide! Please guide our lives to You!&#8221;</p>
<p>Jesus knew that God&#8217;s providence of 4,000 years was consumed in human betrayal, but he still shed tears for humanity. Though he felt the grief that filled Heaven and earth, Jesus still looked for humankind, who had betrayed God. Thus, if he had a grievance in his heart, it would have been an endless one.</p>
<p>However, when he thought of God, who came to look for human beings in spite of their betrayals throughout the 4,000 years of history, Jesus could not be grieved even when he was betrayed. He could not be discouraged with his material deficiency even when he was struggling with it. He could not disobey the Father&#8217;s will, even if he were to be sacrificed as an offering. He could feel the heart of God, Who did not desert the Israelites but treated them with love for 4,000 years despite their betrayals. Jesus could feel and comfort the Father&#8217;s heart. Furthermore, he was in the position where he discussed all matters directly with God. We should clearly understand this.</p>
<p>Looking back today, we come to realize that our past was a trail of betrayals. Our reality is an environment of betrayals. &#8220;I&#8221; am a root of betrayals. Thus, I carry a past of such betrayals, I am living in a reality of betrayals, and I am becoming a root of betrayals toward my posterity. You should know this and should be heartbroken and grieving.</p>
<p>When Jesus came to this earth, he was rejected by his own people. He was considered a traitor by his nation, worse than a thief. Nevertheless, he prayed for his enemies to be forgiven. What is the source of such a heart? It is derived from the suffering heart of the Father, who has been patient with the people who betrayed Him for thousands of years throughout history. Jesus realized that even if his life was lost as a sacrificial offering, it could not be compared with the Father&#8217;s sorrowful heart. Therefore, even when he was climbing over the hill of death, he could not help but pray for his people, who had betrayed him. You should know this.</p>
<p>Jesus continues to visit us even after he left the earth. Even if people have been faithless throughout history, Jesus still believes in us today. He does not curse humankind, who can betray him beyond time and space. On the contrary, Jesus is stretching his hand out to us with salvation. Nevertheless, there is no one on this earth who came on behalf of Jesus&#8217; words, his body and his heart. Furthermore, there are no people nor nation which can represent Jesus. At the time of Jesus, the Israelites should have represented the will of God and inherited His words. Yet no one welcomed Jesus, no matter where he went with the words of God.</p>
<h3 align="center">The Path to Search for God<br />
in Spite of Persecution and Rejection</h3>
<p>Because Jesus went through such a historical path, you also will be rejected by your brothers and sisters, your religion or your people when you attempt to attend God&#8217;s words. However, you should become the kind of people who can pray that those who betray you may be blessed, despite their persecution.</p>
<p>Where then do your words, faith and religious ideas stand now? Jesus went through betrayal on the levels of the individual, the family, the church, the Israelites and the nation, 2,000 years ago. We are now being rejected on the level of the world, after having gone through the levels of the people and the nation.</p>
<p>You know that human history has been a continuum of good being stricken by evil ever since Cain killed Abel. We should also know that in walking the path toward Heaven, the ones who are being rejected, not the ones who reject them, are on the side of truth. They are the ones who are leading the heavenly dispensation.</p>
<p>Which people then are in the position of being rejected on all levels on behalf of the world today? If there were a tightly-knit people who can represent the will of God, they would be destined to be rejected on all levels.</p>
<p>How would the people be rejected? They would be rejected through the same conditions that took place at the time of the fall between Adam and Eve and the archangel. Thus, first they will be betrayed centered upon words. Although they were allowed to eat any other fruit in the Garden of Eden, God&#8217;s words not to eat of the fruit of the Tree of the Knowledge of Good and Evil were betrayed. They fell by following the words of the archangel, who stated that their eyes would be opened and they would become like God. The same phenomena will take place. Various ideas and ideologies from different nations will appear.</p>
<p>Consequently, even if one mind that is meant to pursue one idea, one purpose and one center seem to appear as a second mind and introduce a new purpose, the second mind has created the origin of the eventual betrayal of the original idea and purpose. You should clearly understand this.</p>
<p>Through what did this origin of betrayal come about? It came about through words. Thus, in the Last Days, if a people is to be established before Heaven, the people will be betrayed in their own language at some point. Even if they have their own letters to write with, the letters will be betrayed. Furthermore, their history and the spirit of the people will be violated.</p>
<p>When viewed from the perspective of the Last Days of the century, the nation which has met these conditions today is Korea. Korea has been invaded by many peoples throughout history, and many betrayers were produced. Under the sovereignty of Japan, we almost lost our language. Our letters, our distinctive nature as a people, our pride and even our ideas were almost abolished as well.</p>
<p>Furthermore, today we are in a position where the same people are confronting each other in betrayal. The same is true in the relationships between brothers and sisters, parents and relatives, fathers and sons, husbands and wives. What then should this people do? At some point, this people will be faced with the sorrowful heart God has experienced because of humanity&#8217;s betrayals.</p>
<p>This people then should pray to Heaven for the world that has betrayed them, as Jesus did not curse the people who had betrayed him but instead prayed for them with the heart of God in the Garden of Gethsemane. Only then will this people find a way to live.</p>
<p>Therefore, this people should overcome the world that betrays. Throughout all betrayals, they should appeal to God, bowing down before Him and taking the words of Jesus who was betrayed as their own. They should take the heart of God who was betrayed as their own, and the bodies of their betrayed ancestors as their own.</p>
<h3 align="center">The Perfected Person Who Knows How to Discern</h3>
<p>Jesus came from the Israelites, though they appeared to be perishing due to Heaven&#8217;s indifference. In the same way, this country has hope, although it seems to perish. This people should experience the words, the heart and the grief of God, Who has been betrayed for 6,000 years of history, as their own.</p>
<p>From now on, you should not depend on someone else. Do not believe anyone&#8217;s words. Use your own judgment. Originally, you were not meant to depend on anyone. You are not to believe anyone nor are you to allow anyone to judge for you. Because you are not an original being, you came to depend on someone, believe in someone else&#8217;s words and let someone judge for you.</p>
<p>Thus, you who should march forward with the original purpose should become the incarnation of belief, the person whom you can depend on and able to judge for yourself. You should be able to believe in yourself and judge for yourself.</p>
<p>As God has been patient and tolerant, you should be able to be more patient and tolerant than anyone else. By doing so, you should be able to depend on yourself, believe in yourself and judge for yourself.</p>
<p>Furthermore, you should be able to do so from the position where you can say, &#8220;Father! Please be comforted by looking at me.&#8221; Thus, when we establish a relationship in which the Father can believe in me and I can believe in Him, the sorrow of Heaven will finally depart. God&#8217;s struggle over you then will be finished. You should keep this in mind.</p>
<p>You should now come to realize that Adam and Eve fell because of their inability to discern the right words from the wrong ones. You should become a perfected person who can discern them. If Adam and Eve had been able to discern the words of the archangel through their original nature, they would not have fallen. For this reason, if you have a heart that can communicate with eternal ideas and have reached a state of perfection where you do not vacillate on eternal heavenly principles, then you will not fall.</p>
<p>Therefore, now you should become the kind of person who resemble God. Throughout the many thousands of years of history, in the midst of many betrayals, He could have excused Himself with many reasons if He had wanted. Yet He has not done so even once. Jesus also could have excused himself during the past 2,000 years, but he has been concerned with the people on earth. Thus, you should become the kind of person who will be patient and tolerant, not making excuses. Furthermore, you should become the kind of person who can reveal that we are in the position of a second archangel.</p>
<p>Today, billions of satans are trying to threaten and invade your living environment. You should not have a heart to betray the heavenly principles. Instead, you should feel the heavenly will and experience it in your body. You can then finally come to judge everything right. This is the reason God has been looking forward to the day of judgment. Jesus also has been looking forward to that day, while fighting billions of satans for 2,000 years.</p>
<p>Those who say everything they want to say will not have much in their possession. Those who do everything they want to do will not have a foundation for glory. You should understand that those who live in accordance with their own desires will later become a traitor or a betrayer. Jesus and our ancestors are the ones who did not say everything they wanted to say nor could they do everything they wanted to do, even when being betrayed. You should be aware of this, and as an unchanging being, you should be able to control yourself.</p>
<p>Please remember that you stand in a position where you can betray Heaven any time. If you do, do you know what you will be accused of? When you betray the Father, who has been tolerant in grief throughout the betrayals of 6,000 years, you will not be able to avoid judgment in the Last Days. You will not be able to pass through the last judgment through which God wants you to indemnify all the sorrows of 6,000 years.</p>
<p>Therefore, you should come forth with the heart of Jesus, who died on the cross as a sacrificial offering for the world. It should not be only for a year. It should not be for ten years or thirty years. You should do this for your entire life, with faith, so it can be inherited by your posterity.</p>
<p>Today you should pioneer and cultivate yourself. By doing so, you should realize that your relationship with Heaven can transcend all of the wicked world, even the Last Days throughout the universe. You should be able to make victorious conditions through which you can be rejoiced over by the Father. Only then will you be able to stand before Heaven as eternally victorious sons and daughters who will not betray the heavenly principles and the will. You should keep this in mind.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html" title="Permalink to LET US NOT BECOME A BETRAYER OF GOD&#8217;S WILL" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME A TRUE MEMBER OF JESUS&#8217; FAMILY</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html" rel="next">LET US BECOME THE ONES WHO CAN UNDERSTAND GOD&#8217;S SORROW <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,266 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US RESTORE GOD&#8217;S KINGDOM AND HIS RIGHTEOUSNESS &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-867 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-867" class="post-867 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US RESTORE GOD&#8217;S KINGDOM AND HIS RIGHTEOUSNESS</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:21:35+01:00"> <a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:21:46+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 15, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Matthew 6:16-34</em></p>
<p style="text-align: center;"><em><span class="text Matt-6-16"><span class="woj"><sup class="versenum">16 </sup>“When you fast, do not look somber as the hypocrites do, for they disfigure their faces to show others they are fasting. Truly I tell you, they have received their reward in full.</span></span> <span id="en-NIV-23300" class="text Matt-6-17"><span class="woj"><sup class="versenum">17 </sup>But when you fast, put oil on your head and wash your face,</span></span> <span id="en-NIV-23301" class="text Matt-6-18"><span class="woj"><sup class="versenum">18 </sup>so that it will not be obvious to others that you are fasting, but only to your Father, who is unseen; and your Father, who sees what is done in secret, will reward you.</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-23302" class="text Matt-6-19">Treasures in Heaven</span></em></h3>
<p style="text-align: center;"><em><span class="text Matt-6-19"><span class="woj"><sup class="versenum">19 </sup>“Do not store up for yourselves treasures on earth, where moths and vermin destroy, and where thieves break in and steal.</span></span> <span id="en-NIV-23303" class="text Matt-6-20"><span class="woj"><sup class="versenum">20 </sup>But store up for yourselves treasures in heaven, where moths and vermin do not destroy, and where thieves do not break in and steal.</span></span> <span id="en-NIV-23304" class="text Matt-6-21"><span class="woj"><sup class="versenum">21 </sup>For where your treasure is, there your heart will be also.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23305" class="text Matt-6-22"><span class="woj"><sup class="versenum">22 </sup>“The eye is the lamp of the body. If your eyes are healthy,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23305a" data-link="[&lt;a href=&quot;#fen-NIV-23305a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23305a">a</a>]</sup> your whole body will be full of light.</span></span> <span id="en-NIV-23306" class="text Matt-6-23"><span class="woj"><sup class="versenum">23 </sup>But if your eyes are unhealthy,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23306b" data-link="[&lt;a href=&quot;#fen-NIV-23306b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23306b">b</a>]</sup> your whole body will be full of darkness. If then the light within you is darkness, how great is that darkness!</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23307" class="text Matt-6-24"><span class="woj"><sup class="versenum">24 </sup>“No one can serve two masters. Either you will hate the one and love the other, or you will be devoted to the one and despise the other. You cannot serve both God and money.</span></span></em></p>
<h3 style="text-align: center;"><em><span id="en-NIV-23308" class="text Matt-6-25">Do Not Worry</span></em></h3>
<p style="text-align: center;"><em><span class="text Matt-6-25"><span class="woj"><sup class="versenum">25 </sup>“Therefore I tell you, do not worry about your life, what you will eat or drink; or about your body, what you will wear. Is not life more than food, and the body more than clothes?</span></span> <span id="en-NIV-23309" class="text Matt-6-26"><span class="woj"><sup class="versenum">26 </sup>Look at the birds of the air; they do not sow or reap or store away in barns, and yet your heavenly Father feeds them. Are you not much more valuable than they?</span></span> <span id="en-NIV-23310" class="text Matt-6-27"><span class="woj"><sup class="versenum">27 </sup>Can any one of you by worrying add a single hour to your life<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23310c" data-link="[&lt;a href=&quot;#fen-NIV-23310c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Matthew+6:16-34#fen-NIV-23310c">c</a>]</sup>?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23311" class="text Matt-6-28"><span class="woj"><sup class="versenum">28 </sup>“And why do you worry about clothes? See how the flowers of the field grow. They do not labor or spin.</span></span> <span id="en-NIV-23312" class="text Matt-6-29"><span class="woj"><sup class="versenum">29 </sup>Yet I tell you that not even Solomon in all his splendorwas dressed like one of these.</span></span> <span id="en-NIV-23313" class="text Matt-6-30"><span class="woj"><sup class="versenum">30 </sup>If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the fire, will he not much more clothe you—you of little faith?</span></span> <span id="en-NIV-23314" class="text Matt-6-31"><span class="woj"><sup class="versenum">31 </sup>So do not worry, saying, What shall we eat? or What shall we drink? or What shall we wear?</span></span> <span id="en-NIV-23315" class="text Matt-6-32"><span class="woj"><sup class="versenum">32 </sup>For the pagans run after all these things, and your heavenly Father knows that you need them.</span></span> <span id="en-NIV-23316" class="text Matt-6-33"><span class="woj"><sup class="versenum">33 </sup>But seek first his kingdom and his righteousness, and all these things will be given to you as well.</span></span> <span id="en-NIV-23317" class="text Matt-6-34"><span class="woj"><sup class="versenum">34 </sup>Therefore do not worry about tomorrow, for tomorrow will worry about itself. Each day has enough trouble of its own.</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Please allow us to experience through our minds and hearts the fact that the Father&#8217;s sorrow for all humankind and the earth still remains, even in this hour. Please allow Your children who are gathered here to realize that the scars of the Father&#8217;s sorrow have remained in our minds and bodies since God&#8217;s eviction of the fallen Adam and Eve from the Garden of Eden.</p>
<p>The cherished hope of our mind is the ideal garden of the eternal Father. Our bodies long to see the day when we can be proud of ourselves before the Father, victorious in the battles against Satan. Please allow our minds to be honored with Your glory and our bodies to resemble Your image. Let our minds and bodies become the objects of the Father&#8217;s joy and appear in glory. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>We are to be equipped with the hyung sang of such victorious sons and daughters. Therefore, please guide the sons and daughters who are gathered here and lay prostrate before You to reveal everything before the glory of the Father. Let them reveal themselves before the Sung Sang of the Father. With a sense of awe and reverence, let them be able to reflect upon their inadequacies in the past and let them repent in this hour.</p>
<p>Father, if our hearts truly desire to revere the Father&#8217;s love and resemble the Father&#8217;s character, then today the Father&#8217;s sorrow should be our own. The Father&#8217;s brokenhearted attitude should be our own. Therefore, beloved Father, please unfold the works to make us become such people.</p>
<p>Father of love! Are there any sons or daughters among us who still do not repent, though they know their minds and bodies are following a path of death and darkness? Father, please reveal Your power. Father, please reveal Your strength. Father, please manifest a work of resurrection, a work of re-creation. By doing so, allow our minds and bodies to run to the bosom of Your infinite love. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Are there any who have lived away from Your bosom during the past week? Please let them be willing to repent on their own. Is there anyone among us who happens to be against Your will, harboring a wrongful heart? Please guide them to repent before You and rest in Your grace of compassion and love. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Father, please let us understand that, as time goes by, the days of the last battle are approaching before our eyes. Guide us not to be discouraged on the battleground. Until the time when the final victory is brought, let us be heavenly soldiers who are willing to fight over and over again. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Even now billions of satans are trying to invade us. Please allow no one among us to betray and desert Your grace of love. Do not let even one life be taken away to the bosom of Satan. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>Father of love, during the past week, we led a life which was so far away from You. Please allow us to be embraced in Your bosom at least during this one hour. Let us become sons and daughters who would not leave on their own, without Your permission. At this hour we know that many of Your lonely children, fatigued from the battles against Satan, are appealing to You. Wherever they are, please be with them with the same grace You give to us. Raise them into the same position of glory.</p>
<p>Father who has been saddened by us, fighting with us, suffering pain because of us until today! We understand that we are left with a new battle to fight, seeking a day of Your hope. Father, please work through us to win that battle by pouring into us limitless strength. Help us to not be inadequate before You.</p>
<p>Father of love, are there any who cannot march forward for the sake of Your will due to personal problems? Please allow us not to have such people with us. Instead, on this day, help us manifest Your glory through our deeds. Let us experience Your heart and resemble Your image. Beloved Father, I sincerely wish and desire this to be done.</p>
<p>I understand that in this hour there will be many altars gathering on behalf of the thirty million people of this nation. Beloved Father, please allow them to attain the foretold will of promise everywhere they gather. By pouring out the sacred spirit over them like water, please unfold the works to enable them to become precious altars who can beat off billions of satans and reveal the glory of the Father.</p>
<p>By doing so, please allow this people to be embraced in Your love. Furthermore, through this people of Korea, allow the countless human beings on earth to be able to receive a day of Your glory. Father, I also sincerely wish and desire that we may build one world rather than two, harmonizing the millions of faithful believers in Heaven with humanity. Through this, You will unfold the miracles to allow a new garden of restoration where humanity praises Your glory and lives experiencing Your love. May this be realized on earth as quickly as possible.</p>
<p>We who lay prostrate here are sons and daughters who stepped forward after sacrificing everything to accomplish the will. Therefore, Father, please allow us not to stop the pace toward the attainment of the will. Please be with us so that we can make our way through any tribulations and difficulties that may come our way.</p>
<p>We know that there are many sons and daughters making appeals to the Father in solitude in this hour and that they are faced with trials and hardship. Father of love, wherever they are, please work through them with indiscriminate grace and embrace them with the same love.</p>
<p>I earnestly pray that the Father will help us to not fall down exhausted in battle until the day of victory, the day when, God willing, we achieve a nation for the Father. Since I entrust the remaining hour to the Father, please have dominion over it entirely. I pray all this in the name of the Lord. Amen.</p></blockquote>
<p>Today I would like to reflect with you on the topic &#8220;Let Us Restore God&#8217;s Kingdom and His Righteousness.&#8221;</p>
<h3 align="center">The Words of Jesus, Who Came to Realize Human Hope</h3>
<p>Today the many people living on the earth cannot find the Kingdom of God and His righteousness which God foretold. Consequently, finding the kingdom of God and His righteousness is the hope of all humankind today. It has been the hope of humankind in the past, too, throughout the thousands of years of history. You should understand this.</p>
<p>Why has the hope for God&#8217;s kingdom and His righteousness remained as our ultimate goal? It is due to the human fall. Due to the fall, God and man, who should have been the center of God&#8217;s kingdom and His righteousness, came into a state where they could not relate to one another. That is, people came to a state where they did not know about God, the center of His original kingdom and His righteousness. God has been toiling throughout history to educate such ignorant people and, indeed, all of humankind, so they could learn who is their Father. That is the reason finding and restoring God&#8217;s kingdom and His righteousness remains our hope and goal. Similarly, if the Father exists, who desires to find and restore His kingdom and righteousness on earth, you must comprehend that the will of the Father still remains on earth.</p>
<p>To find and restore God&#8217;s kingdom and His righteousness, what should you then do? You should first find the Father, who has been working hard throughout history to have a relationship with people and establish His kingdom and His righteousness. If you cannot first find the Father, you cannot find His kingdom and establish His righteousness. Consequently, anyone and everyone living in this world should find the Father, the star of the kingdom, no matter what he or she may have to go through. However, if humans cannot find that Father, the glory of that Father cannot be revealed on this earth. The kingdom and the righteousness of God, for which people long, also cannot be found and built.</p>
<p>Before Jesus&#8217; coming, no one appeared who could claim before Heaven and earth, &#8220;I am the master of the kingdom.&#8221; In other words, before Jesus came, no one stepped forward proclaiming confidently that he could represent the righteousness of God&#8217;s kingdom, that he was following God&#8217;s righteousness, and that he was the substantial incarnation of that righteousness.</p>
<p>One person, after being born from the hope of Heaven and the lineage of righteousness, proclaimed before hopeless and desolate Heaven and earth: &#8220;I am the representative of the Father of the kingdom. I am the substantial incarnation of the righteousness of that kingdom.&#8221; This was the gospel of gospels, the most joyous of joyful news for humankind on this earth.</p>
<p>Who was that man then who stepped forth making such a proclamation? That very man was the one who was distrusted by the religious leaders. He was the man who was ostracized by the prevailing denomination and evicted from the nation. This was the very same Jesus Christ in whom you believe today. You should clearly understand this.</p>
<p>What did Jesus say when he appeared on this earth? He overturned the history of 4,000 years and asserted, &#8220;I am one with God; I am the son of God.&#8221; He also said, &#8220;You will come to know God by believing in me. Only by believing in me will you establish the kingdom.&#8221; He also stated, &#8220;I am the way, the truth and the life.&#8221; Similarly, Jesus strongly asserted that to attain the comprehensive goal of Heaven, man should believe in him and that man could not help but go through him.</p>
<p>Jesus emerged after making his way through all that was blocking Heaven and earth and said, &#8220;By believing in me, you can have a relationship with God.&#8221; He said this to fallen people who could not possibly have a relationship with God, the center of that kingdom and righteousness. This was the gospel of gospels. You should understand this. You should now inform today&#8217;s Christians who believe in the gospel of Jesus that the time is near when they should not stand still just gazing at Jesus.</p>
<p>The Essence of God&#8217;s Kingdom and His Righteousness, and Jesus&#8217; Wish The wish of God, who desires to establish His kingdom and His righteousness, cannot be fulfilled apart from humankind and the creation. It must be attained through people. God&#8217;s wish was to harmonize with the creation through a true man. Thus, God sent Jesus to this earth as the substantial incarnation who represented God and Heaven&#8217;s lineage before fallen humankind. That is, Jesus was the man who came to this earth to fulfill the historical wish of God for the first time.</p>
<p>For that reason, no human being of those days or these should oppose Jesus. Nor should any existence with life on this earth oppose Jesus. Because humankind living on the earth must prepare the living environment in which they can testify to the glory of His kingdom and His righteousness, they are longing for the day when the will gets fulfilled.</p>
<p>Looking back upon such a fact, we can see that Jesus&#8217; death was an infinite sorrow to humankind, indeed, the most heartbreaking event. Accordingly, people could not avoid confronting the environment through a process of historical pain and suffering.</p>
<p>What kind of nation are we then looking for? You should understand the essence of that kingdom and that righteousness. Jesus worked hard on earth to manifest the righteousness of that kingdom. He loved all humankind, and he walked a sacrificial path to save them. Thus, the kingdom that Jesus desired to build was a kingdom filled with a love that gives. It was to be a kingdom overflowing with the life of serving sacrifice. You will clearly understand this once you experience the spirit world.</p>
<p>What kind of being then is the God who has dominion over a kingdom of this kind? He is a being who takes pains to give love, bearing a fretful mind toward all of creation and humankind.</p>
<p>What kind of life does such a God desire? God wishes that all humankind on earth would lead a life lavishing their labor upon the establishment of that kingdom, giving up everything they have, sacrificing and serving.</p>
<p>Today the kingdom man longs for is a kingdom where the essence of love is realized. That is, it is a kingdom where people are anxious to give. In addition, understanding that the essence of love is to be anxious to give love, we should walk the course of a sacrificial and serving life that can correspond to that righteousness.</p>
<p>What then is the sorrow of God? His sorrow is that He could not find an object of love to whom He could give perfect love. That God could not find such a person, who could eternally serve and sacrifice for the sake of his neighbors as God eternally sacrifices for and serves humankind, is God&#8217;s sorrow.</p>
<p>When Jesus warned people about the Last Days, what did he say? Jesus, who appeared as a substantial incarnation of God, having inherited God&#8217;s shimjung, talked about God&#8217;s love. Referring to all humankind on the earth as his friends, Jesus testified to God&#8217;s love and practiced it himself.</p>
<p>What was embedded in the heart of Jesus, who toiled to demonstrate God&#8217;s love? It was the question of how he could give more of God&#8217;s love to humankind. What was his purpose of giving that love to them? The purpose was not to love only those who believed in and followed him; it was to love the Israelites, Judaism, and, further, to love even the Gentiles. Thus, it was to build an ideal garden filled with God&#8217;s love on this earth. However, no one among the disciples or the crowd of people who believed in and followed Jesus at that time, nor anyone among the Israelites, was able to have an eternal relationship with Jesus&#8217; shimjung of love.</p>
<p>Seeking one who resembled the heart of the God who desires to give love, Jesus tried to build the kingdom of God on this earth through the denomination, the race and the nation of Israel. Furthermore, he wanted to build it through the world. That will of Jesus was blocked by his family, by the denomination, by his disciples and by the Israelites.</p>
<p>For that reason, to fulfill the will of God on this earth, Jesus has to come again. The day when the Lord comes again is the day of the Second Coming that Christians wish for today. You should understand this.</p>
<p>Besides that, you should understand that Jesus was not only anxious to love humankind in his heart. He also led a life of actual service. Jesus stepped forth onto the road of sacrifice and service, forgetting everything concerning himself, willing even to be torn apart by Satan and to become a sacrifice if it was for the benefit of all humankind.</p>
<h3 align="center">Jesus&#8217; Bride and Jesus&#8217; Enemy</h3>
<p>Was there anyone who understood Jesus&#8217; shimjung at that time? Was there anyone who, as God&#8217;s true son or daughter, felt sorry upon seeing Jesus being chased away and rejected by the race? There was not even one person. If there had been even one person like that, he would have carried out an amazing mission of testifying in place of the 4,000-year history. If there had been a man who could represent the sorrowful shimjung of the love of Jesus, he could have fulfilled God&#8217;s will, attending Jesus from the position of a bride.</p>
<p>However, because there was not one person on earth who could demonstrate the garden of love, the righteousness of the Kingdom of Heaven, God came to be in the sorrowful position where He needs to ask you today to build that kingdom of hope and righteousness. For that reason, you should fulfill the will at all events.</p>
<p>Even if the many Christians spread throughout the world today unite, you should understand that will not necessarily attain the will. The question is whether they can be in a hundred percent accord with God&#8217;s essential love and whether they can become a bride who can be connected to the loving shimjung of Jesus, who is anxious to give. Jesus is looking for a person who can practice love in his place, who can practice the life of sacrifice and serving that he practiced. You should also keep in mind that not only is Jesus seeking such a person, but God is also seeking him.</p>
<p>As long as God&#8217;s providence for the universe is not consummated, a certain standard to become such a being should certainly be established on this earth. If you cannot set up one such standard, you will then have nothing to do with the purpose of the sorrowful words of Jesus, who said, &#8220;Seek ye first the kingdom of God and His righteousness. Then all these things will be added unto you.&#8221;</p>
<p>What is our sorrow today? What is my sorrow? What is the sorrow of Christianity? What is the sorrow of the world? What is the sorrow of this earth and what is the sorrow of Heaven? Where will the love of God stop? You should understand that the fact that we still have not been able to solve all problems of this kind is the cause of God&#8217;s lamentation.</p>
<p>When looking at human beings living on this earth today, the answer to the question of whether they have become beings who can solve that kind of problem is no, they have not. For that reason, God is grieving and lamenting even in this hour. Furthermore, you are faced with a historical fate which you should overcome. That is the fate to go through a process of judgment.</p>
<p>While going such a road, God feels sorrow, not because you do not have Heaven&#8217;s love or righteousness. God feels sad because there is no one with a shimjung to conform to the law of nature and become God&#8217;s object, a man with the value of eternal existence, transcending humanistic ideology and concepts.</p>
<p>Humankind should be able naturally to feel God&#8217;s love and naturally live a life with a shimjung of service, which is the essence of that kingdom and that righteousness. However, they are not able to do so. For that reason, you must practice God&#8217;s love by going through a process of confusion, contradiction and struggle in the course of faith. You must struggle to lead a life of service.</p>
<p>Who then is your enemy? Who is the enemy of the race? Who is the enemy of this world and Heaven and earth? The enemy is not something different. It is this entire universe where billions of invisible satans reside, even if temporarily.</p>
<p>However, such enemies do not offer any problem to you. The problem is you, the individual. The pressing question is the enemy hidden inside your individual self. Who was the enemy of Jesus when he came to this earth to save humankind? His enemy was the group of people who recognized him not as someone with absolute value but as someone with relative value. For that reason, Jesus longed to see one being emerge from among them to whom he could say, &#8220;Your heart and my heart are one and the same.&#8221; If such a person had appeared, even if Jesus had died on the cross, his love and ideology would have been established on earth. However, it did not happen that way. That was the cause of Jesus&#8217; anxiety. You should understand this.</p>
<p>What kind of world is it where that kingdom and righteousness have been attained? That is a world of love, where each person enjoys giving to one another. It is a world in which the life of serving and sacrificing for the sake of God shines. You should understand this. Thus, that world is not like this world in which we live today.</p>
<h3 align="center">The Way to Receive God&#8217;s Love</h3>
<p>What then do you have to do to be able to receive God&#8217;s true love? As I mentioned before, when you step forth onto the road of sacrifice, the road of service for the sake of others of your own accord, you will then be able to receive God&#8217;s love for the first time.</p>
<p>Jesus was in a position to lead humankind to that kind of road, yet there was no one among the people on earth then who wished to love others and live for the sake of others. Instead, because everyone wanted others to live for their sake and only wanted to receive love, all the people Jesus related with were objects of sadness to him.</p>
<p>Thus, you should understand the fact that Jesus could not find even one person who could give God&#8217;s love through sacrifice and service for the fulfillment of God&#8217;s will. This was the greatest sadness and sorrow of Jesus.</p>
<p>Jesus was heartbroken, relating to the ignorant people who could not see no matter how much he tried to show them, who could not know what something was even if he placed it in their palms. That is why Jesus told them, &#8220;Do not worry what to eat, what to drink and what to wear.&#8221; It is the word that tells you to deny your life and all of your environment.</p>
<p>Jesus did not give this kind of word because he did not know the necessities of human life. It was because he knew that fallen humankind could receive a day of hope only when they tread on such a road. He told them not to worry about what to eat, what to drink and what to wear, but to seek that nation and that righteousness. Since the one who attains that kingdom and that righteousness in advance can have dominion over all things within the realm of natural law, he no longer needs to worry about such things. That is why Jesus said this.</p>
<p>When Jesus came to this earth, he was tempted several times by Satan. First, he was tempted through food, during his forty-day fast. Satan appeared to Jesus and asked him to change a rock into a cake. This would be good news to a starving human being, but Jesus refused. Instead, he expressed that he had not come to eat. On the contrary, he insisted on the importance of God&#8217;s word and thus established the position that human beings had not lost all conditions in the realm of actual life.</p>
<p>Until that time, humankind had come through a history of struggle centered on material needs. However, with Jesus&#8217; winning a victory in the first test of Satan, the history of struggle centered on materials was concluded. You should understand this.</p>
<p>What was the next trial Jesus had to face? Jesus was led to the top of a church temple by Satan. There he was tested by Satan saying, &#8220;If you are the son of God, throw yourself down. . . .&#8221; (Matthew 4:6)</p>
<p>Jesus had appeared with the religious ideology that could educate the Israelites and Judaism. What did the expression &#8220;throw yourself down&#8221; signify? It meant that he should abandon the position of being their educator by succumbing before their religious customs and their opinions. However, Jesus did not fall into Satan&#8217;s test here. Instead, he won a victory.</p>
<p>After that, what kind of test was there? Showing Jesus all the kingdoms of the world and their splendor after taking him to the top of a very high mountain, Satan said, &#8220;All these things I will give you if you will fall down and worship me. . . .&#8221; (Matthew 4:9) Yet with the universal ideology that was to establish the will of God, the kingdom of God, Jesus rejected Satan&#8217;s demand.</p>
<h3 align="center">The Significance of Jesus&#8217; Victory over<br />
the Three Great Temptations and the Mission of the Faithful Believers</h3>
<p>What then does this mean? Jesus possessed the ideology that could build a new Heaven and earth, namely, the Kingdom of Heaven on earth. Therefore, he must set up symbolic conditions while realizing and demonstrating the will to indemnify and restore all historical conditions of faithlessness.</p>
<p>Consequently, for you today who are faced with the Last Days, a struggle centered on material conditions will come about. If all humankind today then gets defeated without winning the victory in such a struggle, this earth will automatically be transformed into a world of darkness. Therefore, you of today should step forth upholding the ideology of Jesus&#8217; Kingdom of Heaven, having overcome the materialistic struggle. You must then build God&#8217;s kingdom on this earth by joining forces with Christians throughout the world.</p>
<p>Jesus had the mission to restore the world by being united with the Jewish denomination, which contained the comprehensive value of ancient Israel. Christians throughout the world today should understand that they too have the mission to build the kingdom of God on this earth by uniting into one, centering on the ideology of democracy, which represents the world. The ideology of Christianity, which constitutes the foundation of the ideology of democracy, should be a part of this.</p>
<p>In the same way that Jesus won the victory by defeating all the temptations of Satan, you should understand that you too have to go through such a process. For that reason, when the Last Days are here, you have to overcome the process of a materialistic struggle. After that you have to overcome a religious struggle. A religion will emerge which will resolve disintegration, contradiction and conflict, and unite these. The trials that Jesus went through symbolize this kind of an age.</p>
<p>In the same manner that Jesus demonstrated himself to be unchanging, even in the face of all kinds of hardship and death, you must resemble the character of Jesus. Christians today, who are in the Last Days, should not attach themselves to the past. They must find and establish the ideology of the holy temple of Jesus on a worldwide level. What is more, because you are on the course that corresponds to the life course of Jesus and his historic mission, you must know that there lies a moment of historic battle before you.</p>
<p>The time should come when Satan, who has been enjoying worldwide glory until now, succumbs and bows down before God&#8217;s sons and daughters by losing in the final battle. The day Satan is defeated and only God&#8217;s will is manifest must come as soon as possible. A person must emerge who can fulfill such a mission. If such a person does not appear, Jesus&#8217; will that we seek that kingdom and that righteousness can never be realized on earth.</p>
<p>What kind of period are you living in today? You are living in a period when you should accomplish God&#8217;s will after passing the test of material. We are living in a period where materials surpass not only human beings but also all doctrines and opinions on this earth. Furthermore, materialism is attempting to subjugate even God. This kind of period is the very Last Days. You should understand this.</p>
<h3 align="center">The Life That Demonstrates the Essence of the Kingdom<br />
and His Righteousness</h3>
<p>What then should you do, being faced with this period where everyone talks of today being the Last Days? This is the age of the worldwide conclusion. It will be the close of history, science, ethics and religion.</p>
<p>According to the words that Jesus cried out, to seek that kingdom and that righteousness, you should become the people who render unchanging, devoted service to establish God&#8217;s kingdom and His righteousness on this earth. You should not think of all the things that belong to you. By doing so, you can be proud of yourself and become a person who fulfills the mission of being a representative of God.</p>
<p>That is, by applying the essential ideology of that kingdom to your own life, you should accomplish that one day of hope to formulate the substantial value and to promise an eternal future. If you do not become such people, you will have nothing to do with the will that God had Jesus unfold, sending him after having toiled for 4,000 years since the fall of Adam and Eve. You will have nothing to do with the will of the Triune God that unified Jesus and the Holy Spirit.</p>
<p>From this viewpoint, what should you look for now? You should find the elements of unrighteousness that make it impossible to establish that kingdom and that righteousness; that is, which make it impossible to establish the universal ideology. You should then win the victory after struggling in your own life and become a representative of Jesus, God&#8217;s son.</p>
<p>If you want to become righteous people of that kingdom, you should not be so foolish as to fight over what to eat or what to wear. You should become people who lead a life of having transcended the problems of what to eat, what to drink and what to wear. What is more, if you were given a little bit of such things, you would rather distribute it to people who are naked and hungry.</p>
<p>Members of the congregation! Do you know what God&#8217;s heart is like? If there is a piece of bread, it is God&#8217;s shimjung to make people want to not eat that piece of bread alone, but to have a mind that wishes to distribute it to many others. Although Jesus represented this kind of shimjung, the people at the time of Christ were not like that.</p>
<p>What then are the causes of family discord and family fights? It is because each member of the family thinks the family exists for his or her own sake. If there is something to eat, because the member thinks it is for him or her alone, fights and discord break out. You should heed that this is the very arrow of sin and Satan.</p>
<p>Therefore, today you should solve the problems of what to eat and what to wear. You should break down the mind that only desires your own individual benefit, namely, the condition of disharmony in the family. You should firmly step over such a historical contradiction. Similarly, you should not forget that you are standing in a position to emerge as a true victor before God, transcending all the problems of food, clothing and shelter.</p>
<p>What kind of position then was Jesus in when he exclaimed that we should first seek that kingdom and that righteousness? It would be a lamentable and sad thing if the minds of God and man were different over mere things. That is the reason, in the state where God&#8217;s mind and Jesus&#8217; mind had become one, Jesus wished the minds of men and his own mind to be united. However, because people disbelieved and betrayed him, Jesus could not be united with them. For that reason, he was placed in a position of indescribable sadness and grief.</p>
<p>Suppose you have something to eat. What should you be thinking of while eating it? You should eat it with a heart of love that longs for the essence of God and the essence of the kingdom. You should eat with a heart that you will sacrifice and serve for the sake of others. When you become a person who lives, bearing this kind of heart, even if you happen to acquire a large quantity of treasure at a stroke, you will not do with them as you please.</p>
<p>Thus, you should become the people who eat having the feeling of the Father&#8217;s heart, who wishes to give. This heart can be revealed even through a small piece of bread. You should eat with concern about God&#8217;s will being attained on this earth and the many pitiful people who are in difficult situations. When you become a person like this, you will not be subjected to material privation.</p>
<h3 align="center">The Blessing and the Curse Which Come According<br />
to Our Attitude about Material Things</h3>
<p>At any rate, you today are not in such a position. You are struggling in a battle centering on materials. By connecting yourselves to God, each of you can say, &#8220;Father, is there another son or daughter who can better manifest Your heart through this material, who wishes to give more than I do and can love this material more than I can? I know that this material does not belong to me, but to You. Please let that person use it!&#8221; You should also maintain such a humble attitude as this, that you would accept materials on behalf of him or her. When that happens, the original nature hidden in your mind can be revealed, and you can go forth into the realm of eternal hope. You should understand that Jesus talked about the proper attitude in using materials for this reason.</p>
<p>What is it then that you must treat as your enemy? It is the selfishness that thinks materials endowed upon you are only for your benefit. For that reason, if you have a piece of bread, you should be able to represent God&#8217;s heart, which desires to share it with all humankind. Before you eat something, you should have the mind to willingly offer it to your family, and to the society, the people, the nation and humankind throughout the world. Man can perfect himself through a normal process only if he possesses this kind of mind. However, most people today lead their lives having forgotten this. You should feel heartbroken about this and understand that this is the position of fallen man.</p>
<p>Through what then can an enemy invade? The enemy invades through material conditions. Yet God&#8217;s blessings also come through materials. You should clearly understand that through materials, God and our enemies can invade us simultaneously. We must become a person who knows how to establish the center of firm faith through materials.</p>
<p>Whatever a thing may be, once a center is established an object will naturally come into being. It is a principle of the universe that if there is a perfect plus, there will naturally occur a perfect minus. You must establish a core of faith, one standard that conforms to the principle. You should clearly understand that because Jesus knew such a principle, he declared we must first seek that kingdom and that righteousness.</p>
<p>What would be the next thing you should know about? The next thing you should know is that fights among family members regarding what to eat will take place. You should understand that because of things to eat, a fight between a mother-in-law and a daughter-in-law, an elder brother and a younger brother, will take place. A fight between relatives and between nations will also take place. To overcome that, Jesus lived in sorrow for the family, the society, the nation and the world, and expressed his heartbroken shimjung of not being able to build that kingdom and that righteousness. For that reason, you today should experience such a heart of Jesus and take after his character.</p>
<p>Next, fights over what to wear will break out in front of you. This means that during your life of faith, you must go over a course of having resolved the problem of what to wear. Therefore, today you should be able to freely resolve such problems, without being restricted by any of Satan&#8217;s accusations.</p>
<p>Similarly, you should understand that your problem of what to eat and what to wear will become Satan. At the same time, it will be the practice ground of activities through which Satan can act. Therefore, you should know that Satan always has an eye to invading everything you do. You must become the people who do not provide Satan with any condition for invasion. Thus, today you should not live only for yourself. You should live for a greater purpose.</p>
<p>Suppose you belong to a family. If you live for the family, it will be the same as living for your own sake. If you belong to a nation and you live for the sake of that nation, it will also be like living for your own sake. What is more, when you come to live for Heaven, you will be in a position of truly living for yourself. Thus, you should keep in mind that all facts of this kind are being realized and revealed through your own living environment.</p>
<p>Now if you have stepped forward for the sake of God&#8217;s will, for the sake of experiencing God&#8217;s shimjung, and for the sake of establishing that kingdom and that righteousness, what should you do? You should become a person with a heart such that if you have something to eat, you distribute it to people in a more difficult environment than you. If you have more things to eat, you should be a person who can give that to the person who presses you.</p>
<p>Thus, you should become a person who can reflect, Am I living a life where I am desperately wishing to give in a practical way? Am I living a life where living for the sake of serving strikes home or am I striving to realize the ideology of that kingdom only after having surmounted the realities of today? When you do that, you will be able to feel the shimjung of Paul who lamented, &#8220;O wretched man that I am!&#8221; (Romans 7:24)</p>
<h3 align="center">The Companion of Jesus&#8217; Grieving Heart</h3>
<p>You should understand that you are entrusted with the mission to establish the value of your entire life with a heart that in reality craves to give. The person who came to this earth as a substantial incarnation of hope to fulfill the mission was none other than Jesus of 2,000 years ago. Yet humankind today does not know that Jesus craved to give so much. You also are leading your lives not knowing that the bread you are eating is stained with God&#8217;s sorrowful tears, so is the clothing you are wearing. You should clearly understand that this is the very grief of God and the condition for His lamentation.</p>
<p>What kind of man would the man be who has to come again, the Lord? That man also will come to establish God&#8217;s kingdom, as a hero of the ideology for the sake of giving. Through the eternally unchanging heavenly principles, with a parental heart toward the children, he will come again to give that love to humankind.</p>
<p>For that reason, through that Lord who comes again, you should inherit the sorrowful heart of God, who has been leading the dispensation for 6,000 years until now to restore the lost value of human beings. By doing so, you can move forward to the seat of a companion with the same fretful shimjung as Jesus.</p>
<p>If the believers today cannot move forward to such a seat, even if there are tons of Christians on this earth, Christianity will not grow. Even if there are masses of such people in a nation, that nation will not prosper. Thus, by inheriting God&#8217;s will that He forewarned, you should experience that heart of Jesus who grieved concerning this earth in the realm of your life.</p>
<p>Even now God wishes to see a person emerge who lives with a heart that is anxious to give. Jesus longs for a person to emerge who can overcome all the power of evil on this earth, which killed him. If such a person appears, he will then truly be a hero of this society and this nation. However, the fact that no such person has yet appeared is the sadness of God and Jesus.</p>
<p>Although there were many prophets and sages who came to this earth to be such a hero, our ancestors throughout history consigned them to the grave, persecuting and ridiculing them. For that reason, it is God&#8217;s hope to cleanse all such historical wrongdoing by raising one person today.</p>
<p>What should you do now to fulfill such a will and God&#8217;s hope? First, you should become a person who follows Jesus Christ. He walked the bloody road of the cross with patience for the sake of God&#8217;s kingdom and His righteousness. Next, you should become a person who follows the road of the many prophets and sages who, having deserted their own glory, toiled during the 6,000-year history to fulfill the will of God.</p>
<p>In the meantime, if instead of walking such a road, you walk a road for the sake of some glory of your own, you will not be able to stand proudly before God or before the many prophets and sages. Furthermore, when you go to the spirit world after death, you will not be able to step forward before the Father, and you will not be able to be embraced in the bosom of the Father&#8217;s love. The man who has faith only for his own sake, who dies only for the sake of his own salvation, will not be able to stand in pride before the Father when he goes to the other side of the world. You should keep this in mind.</p>
<h3 align="center">The People Who Seek and Establish That Kingdom<br />
and That Righteousness</h3>
<p>For that reason, you should become people who deny themselves and live for the sake of that kingdom and that righteousness. No matter what kind of situation with which you are faced, you should win a victory after fighting with that environment, remembering that God has hope in you. Only when you become like that can you, for the first time, call yourselves God&#8217;s true sons and daughters.</p>
<p>What kind of people can build the kingdom of God? They are the ones who deny themselves and sacrifice themselves with an anxious heart for the sake of Heaven. The people who deny themselves and sacrifice themselves for the sake of the society, the people, the nation and the world are the people who can build the veritable kingdom of God. Furthermore, the person who will sacrifice himself for the sake of Heaven, even at the cost of having to deny the nation and the world, will be the one who can build the Kingdom of Heaven. Furthermore, even when faced with a sorrowful situation, without feeling sad for his own sake, he will feel sorrow for the sake of the society and nation, the world and Heaven. He will then be able to build the kingdom of God.</p>
<p>You thus should not attempt to satisfy your own desires. You should lead a life of faith in which you sacrifice and serve for a greater purpose. By doing so, you should go forward to the heartistic standard of Jesus, who toiled only for the sake of God&#8217;s will and humankind. You should go forward to the seat of God&#8217;s true children, who comfort the grieving heart of the toiling God.</p>
<p>For that reason, with a heart that becomes indignant over unrighteousness and with the heart of the love of God, who wishes to give more and more, you should toil to seek and establish God&#8217;s kingdom and God&#8217;s righteousness, even going to the ends of the earth. Furthermore, you could comfort the heart of God, who has toiled until now to save all humankind, even in the midst of sadness.</p>
<p>By not being defeated and winning a victory in the war against Satan in that process of seeking and establishing God&#8217;s kingdom and His righteousness, you should be able to connect the individual, the family, the society, the race, the state and the world into one. Whatever circumstances with which you may be faced, you should prevail in battle against Satan. When you go out to a society, you should win in a fight against Satan in any circumstance of that society. When you go out to a nation, you should become a person who will take the responsibility for the most difficult problems of that nation and win a victory in the battle against Satan.</p>
<p>If a person of this kind appears, although from our viewpoint that person may seem to perish for the time being, you should know that he will prosper in the end. A person of that kind is the master of any family, any workplace, any group and any nation. The person who fulfills the duty of filial piety toward the parents in the family at the risk of his or her own life, the person who fulfills the duty of fidelity as a husband or wife respectively, and fulfills the duty of a loyal subject toward his or her king will become the master of that very family and that kingdom.</p>
<p>Thus, by becoming such a person, you of today should represent the purpose of the 6,000 years of providential history until now. By representing the cosmic ideology that corresponds to today&#8217;s reality, even if any roads to Golgotha are blocked, you should be able to courageously overcome that, saying, &#8220;Father! Thank you.&#8221; Consequently, by having your commanding presence spring up from the bottom of your mind and transform into a body, when Satan comes to respect and follow you, you will finally be able to step forth as a member of the race who sought and established that kingdom and that righteousness.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html" title="Permalink to LET US RESTORE GOD&#8217;S KINGDOM AND HIS RIGHTEOUSNESS" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US ESTABLISH THE GLORIOUS ORIGINAL HOMELAND</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html" rel="next">LET US BECOME A TRUE MEMBER OF JESUS&#8217; FAMILY <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,252 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>LET US UNDERSTAND THE TRUE PATH AND DISCERN THE SIDE PATH &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-881 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-881" class="post-881 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">LET US UNDERSTAND THE TRUE PATH AND DISCERN THE SIDE PATH</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:30:35+01:00"> <a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:30:50+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p style="text-align: center;" align="center">REVEREND SUN MYUNG MOON<br />
November 1, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</p>
<p style="text-align: center;"><em>Genesis 4:1-8 </em></p>
<p class="chapter-1" style="text-align: center;"><em><span class="text Gen-4-1">Adam<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-81a" data-link="[&lt;a href=&quot;#fen-NIV-81a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Genesis+4:1-8#fen-NIV-81a">a</a>]</sup> made love to his wife Eve, and she became pregnant and gave birth to Cain.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-81b" data-link="[&lt;a href=&quot;#fen-NIV-81b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Genesis+4:1-8#fen-NIV-81b">b</a>]</sup> She said, “With the help of the <span class="small-caps">Lord</span> I have brought forth<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-81c" data-link="[&lt;a href=&quot;#fen-NIV-81c&quot; title=&quot;See footnote c&quot;&gt;c&lt;/a&gt;]">[<a title="See footnote c" href="https://www.biblegateway.com/passage/?search=Genesis+4:1-8#fen-NIV-81c">c</a>]</sup> a man.”</span> <span id="en-NIV-82" class="text Gen-4-2"><sup class="versenum">2 </sup>Later she gave birth to his brother Abel.</span></em></p>
<p style="text-align: center;"><em><span class="text Gen-4-2">Now Abel kept flocks, and Cain worked the soil.</span> <span id="en-NIV-83" class="text Gen-4-3"><sup class="versenum">3 </sup>In the course of time Cain brought some of the fruits of the soil as an offering to the <span class="small-caps">Lord</span>.</span> <span id="en-NIV-84" class="text Gen-4-4"><sup class="versenum">4 </sup>And Abel also brought an offering—fat portions from some of the firstborn of his flock. The <span class="small-caps">Lord</span>looked with favor on Abel and his offering,</span> <span id="en-NIV-85" class="text Gen-4-5"><sup class="versenum">5 </sup>but on Cain and his offering he did not look with favor. So Cain was very angry, and his face was downcast.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-86" class="text Gen-4-6"><sup class="versenum">6 </sup>Then the <span class="small-caps">Lord</span> said to Cain, “Why are you angry? Why is your face downcast?</span> <span id="en-NIV-87" class="text Gen-4-7"><sup class="versenum">7 </sup>If you do what is right, will you not be accepted? But if you do not do what is right, sin is crouching at your door; it desires to have you, but you must rule over it.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-88" class="text Gen-4-8"><sup class="versenum">8 </sup>Now Cain said to his brother Abel, “Lets go out to the field.”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-88d" data-link="[&lt;a href=&quot;#fen-NIV-88d&quot; title=&quot;See footnote d&quot;&gt;d&lt;/a&gt;]">[<a title="See footnote d" href="https://www.biblegateway.com/passage/?search=Genesis+4:1-8#fen-NIV-88d">d</a>]</sup> While they were in the field, Cain attacked his brother Abel and killed him.</span></em></p>
<p style="text-align: center;" align="center"><em>Matthew 13:24-31 </em></p>
<p style="text-align: center;"><em><span class="text Matt-13-24"><sup class="versenum">24 </sup>Jesus told them another parable: <span class="woj">“The kingdom of heaven is like a man who sowed good seed in his field.</span></span> <span id="en-NIV-23565" class="text Matt-13-25"><span class="woj"><sup class="versenum">25 </sup>But while everyone was sleeping, his enemy came and sowed weeds among the wheat, and went away.</span></span> <span id="en-NIV-23566" class="text Matt-13-26"><span class="woj"><sup class="versenum">26 </sup>When the wheat sprouted and formed heads, then the weeds also appeared.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23567" class="text Matt-13-27"><span class="woj"><sup class="versenum">27 </sup>“The owners servants came to him and said, Sir, didnt you sow good seed in your field? Where then did the weeds come from?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23568" class="text Matt-13-28"><span class="woj"><sup class="versenum">28 </sup>An enemy did this, he replied.</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-13-28"><span class="woj">“The servants asked him, Do you want us to go and pull them up?</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23569" class="text Matt-13-29"><span class="woj"><sup class="versenum">29 </sup>No, he answered, because while you are pulling the weeds, you may uproot the wheat with them.</span></span> <span id="en-NIV-23570" class="text Matt-13-30"><span class="woj"><sup class="versenum">30 </sup>Let both grow together until the harvest. At that time I will tell the harvesters: First collect the weeds and tie them in bundles to be burned; then gather the wheat and bring it into my barn.’”</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-13-31"><sup class="versenum">31 </sup>He told them another parable: <span class="woj">“The kingdom of heaven is like a mustard seed,which a man took and planted in his field.</span></span></em></p>
<p style="text-align: center;" align="center"><em>John 10:1-6</em><br />
<em><span class="text John-10-1"><span class="woj">“Very truly I tell you Pharisees, anyone who does not enter the sheep pen by the gate, but climbs in by some other way, is a thief and a robber.</span></span> <span id="en-NIV-26484" class="text John-10-2"><span class="woj"><sup class="versenum">2 </sup>The one who enters by the gate is the shepherd of the sheep.</span></span> <span id="en-NIV-26485" class="text John-10-3"><span class="woj"><sup class="versenum">3 </sup>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.</span></span> <span id="en-NIV-26486" class="text John-10-4"><span class="woj"><sup class="versenum">4 </sup>When he has brought out all his own, he goes on ahead of them, and his sheep follow him because they know his voice.</span></span> <span id="en-NIV-26487" class="text John-10-5"><span class="woj"><sup class="versenum">5 </sup>But they will never follow a stranger; in fact, they will run away from him because they do not recognize a strangers voice.”</span></span> <span id="en-NIV-26488" class="text John-10-6"><sup class="versenum">6 </sup>Jesus used this figure of speech, but the Pharisees did not understand what he was telling them.</span> </em></p>
<h2 style="text-align: center;" align="center">Prayer</h2>
<blockquote><p>Father, You have raised us up in this perilous land. Though we are inadequate, You protected us with concerns and worries! Please let us stand upright before You to wipe Your tears and experience Your anguished heart with our minds and bodies. Moreover, if there are such people, please seek them out in this hour, discussing with them the great feat You are attempting to bring to pass. Even if the darkness of the Last Days and waves of death are sweeping over this era, Father of love, we earnestly wish for You to give us Your wisdom and the ability to discern and overcome them.</p>
<p>We know that because we are people living in sin, it is easy for us to approach everything centered on ourselves and to establish what is not the will, as if it were the will, and move forward with it. Father, please thoroughly awaken us.</p>
<p>By doing so, please allow us to affix our complete center and march toward the path of the eternal life of the Father. We beg You to let us become the sons and daughters who can penetrate through everything for the sake of the desired will of the Father and carry on the battle with Satan.</p>
<p>Until now, we have not known where the standard of life lies which can guide the ignorant people. We only worried and prayed for our own sake. Father, please awaken our inadequate selves. Father, we earnestly hope You will guide our minds and bodies to go on to the position of ultimate victory according to the laws of the principle.</p>
<p>We know that, even at this moment, Satan is trying to confuse us with all kinds of conspiracies and schemes to block the grace You are about to give us. Father, please guide us to be able to clear out them all and fight with Satan. Furthermore, beloved Father, we sincerely wish You to allow us to become the sons and daughters who can build an intimate relationship with the Father inside the victorious boundary.</p>
<p>Please allow a new perspective with which we can discern all things to those of us who must usher in the Last Days. Please lead us to understand that our surrounding environment is the object of our tests. Moreover, please lead us not to become satanic entities. Father, we pray that You will guide and protect us so we can step over the environment and manifest the Father&#8217;s glory.</p>
<p>We know that, even in this moment, there are many lonely members, scattered across the countryside, who are praying before You. No matter what kind of situation they face and what kind of environment they live in, please personally protect them. By doing so, Father of love, please let them be able to cope with the heavenly mission bestowed upon them in the Last Days.</p>
<p>Please allow us, in this hour, to attain in our minds and bodies the power and the ability to fight with Satan with new resolve and determination for the sake of founding the one victorious day that can manifest the glory of God. Wishing that the Father&#8217;s hands of infinite love will appear before all people on this earth and the thirty million people of this nation, we offer all the words in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon I want to give to you today is <i>“Let Us Understand the True Path and Discern the Side Path.”</i></p>
<h3 align="center">Modern Man Cannot Distinguish the True from the False</h3>
<p>Countless people of this era today are living in a state of confusion, unable to distinguish true from false. Now I want to examine what true and false are through the words in the Bible.</p>
<p>You know that because of the fall of the human ancestors, the grief of Heaven has been dwelling deep inside human beings for the thousands of years of history until now. While this grief can be found in humanity of the present era, at the same time, Heaven will feel great lamentation about our future generations, too. You know that the path humankind has taken after betraying the heavenly principles has become a source of sorrow and grief for all things of these Last Days.</p>
<p>What then must people do to remove this grief? What kind of people should they become? This is an essential problem you must understand.</p>
<p>How are you going to cross over this hill? You must cross over the hill of the lamentation of all things, of humanity and of Heaven, which still remains. In other words, you must alleviate the grief of Heaven toward innumerable people during the passage of the 6,000-year history until now. You must liberate humanity from this grief. You must liberate all things from the grief they have had since the time of creation.</p>
<p>Because you learned the principles of restoration through indemnity, you probably understand what indemnity conditions are. For an individual to set indemnity conditions, it must not end with him. It must also become the indemnity condition that alleviates the grief of God, which is implanted deep inside the internal heart, the grief of Jesus and the Holy Spirit, and the grief of the many millions of believers, heavenly soldiers, and angels in Heaven. It must even alleviate the grief of the many spirits who are in hell. That indemnity condition must also alleviate the suffering of all humanity on earth now. You have to clearly understand this. Furthermore, you must keep in mind that, on your own, you have to climb up a hill of suffering unprecedented since the time of creation and walk toward the ultimate judgment stand of the Last Days.</p>
<p>Now you are on the forked road of climbing over the universal hill of suffering to head toward the path of life. If you do not climb over it, you head toward the path of death. Consequently, you must stand on that forked road of life and death and deeply contemplate whether you are going to cross over the hill, how you are going to vanquish Satan, and how you are going to climb over that hill to unveil the glory of Heaven.</p>
<p>If there is someone who has these kinds of thoughts, then their life will become serious. His gaze must look beyond himself to behold the heavenly principles. His feelings must not feel the realities of this sinful world. He must feel the true love of God, who is concerned about this world. His movement must not be only for his own sake; it must become a motion that removes the grief of all things.</p>
<p>If anybody stands in this kind of serious state of mind and leads their life for the sake of climbing over the historical hill of grief on behalf of Heaven, earth and humanity, then that life will be incredibly extraordinary. It will command indescribably great life force. No matter what others do, you must safeguard your own mind.</p>
<p>While making your way through the hill of all kinds of difficulties, hardships and suffering, you must battle with Satan.</p>
<p>Consequently, you have to realize that the responsibility to step over the hill of suffering is given to each of you today. You have to remember always to reflect in which direction the foundation you are standing on, the spirit you possess, and the hope and standard you cherish are heading toward. If you neglect this, then the day you neglect it will be the day of God&#8217;s sorrow. The moment you neglect it will be the moment that the infinite hopes and expectations that people and all things have had in you will all disappear. It will become an hour of sadness when you must climb over the hill of sorrows again. Today you have to sense this fact in your minds and bodies.</p>
<p>Today, then, what kind of hill must you climb over? You must, first, climb over the historical hill of lamentation and then defeat Satan, who is blocking you as the invisible force of fear in all your surroundings.</p>
<h3 align="center">The Way to Avoid the Judgment of the Last Days</h3>
<p>When you are trying to step over the historic hill of lamentation, if you are confronted with the forces of fear that originate from the enormous forces of Satan, you will not be able to continue in your path but will take the side path. Therefore, in order for you to cross over onto that path, even if your mind and body are to become the offering, even if the whole universe uses you as the condition of lamentation, you must offer your life and fight with Satan.</p>
<p>If you cannot do this, you will have no choice but to follow in the footsteps of Adam and Eve, who fell unintentionally. You will have to follow in the footsteps of Cain, who violated the will of God and betrayed the heavenly principles.</p>
<p>Because now is the time you must risk yourself and restore all the grief of the universe through indemnity, you do not have even one friend. Moreover, because now is like the moment before the fall of Adam and Eve when God could not intervene directly, He will not directly intervene in your affairs to let fallen men enter the new course of restoration on their own and climb over all the history of lamentation.</p>
<p>Consequently, various phenomena are appearing near you for the sake of pioneering all the conditions of lamentation. If there is some reality seen and felt, it is for the sake of helping you cross over the hill of lamentation on your own: in other words, to indemnify the hill of lamentation.</p>
<p>What then must you do to eliminate all grief? If you try to alleviate the grief of Heaven and earth, then all things will try to strike you. At that moment, even if you are struck and fall down, you must go forward with the determination to face death.</p>
<p>In the course you are traveling today, there will be material suffering. All things will strike you, and all people will strike you. When Jesus came to set the conditions of indemnity on the earth on behalf of humanity, all things and people struck and beat Jesus. When we reflect on that, we can understand that in your own course, there will come a time when people and all things will strike you. Moreover, when God strikes you in your course, if you lose hope and hold grudges against Heaven, then you will not be able to pass through the gate of judgment in the Last Days.</p>
<p>Therefore, Christianity teaches people to abandon everything. It teaches them to sacrifice all physical things. It is teaching them to disregard all humanistic things. At such a time, people can finally become good to freely enjoy the glory of the Father and be pulled into the realm of the Father&#8217;s infinite love. If you cannot become this kind of person, there is no way you can uproot the elements of lamentation that have come down, embedded in human bones, until now.</p>
<p>Through what course of history did that element of grief come? After the fall of Adam and Eve, through the course of the 6,000-year history, Satan has been guiding that element of sorrow until today. You have to understand this and understand that you are in a precarious position where you might have to pass the elements of grief to your descendants.</p>
<p>Accordingly, now you must learn to abandon all that you have. You have to submit yourself before Heaven in obedience and receive the arrows of Satan for Heaven in front of any other person. You must step forward in the fight against Satan before anyone else. Moreover, you must do the same for humankind, for the will of God and for all things. You must volunteer first to sacrifice yourself. You have to understand clearly that only by becoming this kind of person can you avoid the ultimate judgment of the Last Days.</p>
<h3 align="center">Neighbors Who Exist for the Sake of<br />
Raising You to Perfection</h3>
<p>When we divide biblical history into periods, we can understand that the Old Testament era is the period of symbolic offerings. Next is the period of the substantial offering. Next is the period of the offering of the heart. When we look at this vertically, what we see is God, humankind and all things. Because we cannot restore them all at once through indemnity, all the things that took part in the 6,000-year dispensation are all manifesting themselves to the whole world of the Last Days today.</p>
<p>In other words, the causes of God&#8217;s grief for 6,000 years are surfacing before the whole of humanity on the earth today. Consequently, no one living in this era can be at peace. Everyone is swept into the realm of lamentation.</p>
<p>What then must you, who are living in this kind of period, do today? You must not make a mistake in any affair. Transcending time and space, you must never fall under the accusation of Satan. You have to understand that because until now, the 6,000-year history of grief has swept across with you at stake, the waves of the big flood of 6,000 years are crossing the path on which you are walking. If you do not want to be swept away by the waves of that flood, you must not become someone who struggles because they are attached to the affairs of the earth. To put it another way, you must not become blind to the dispensation of God because you are bound to yourself.</p>
<p>After you have crossed over the historic hill of lamentation, what must you do? You who have taken charge of the mission of Cain must learn to attend the sons and daughters of God, who come as Abel. You should be able to represent them. Removing all the fallen elements of sorrow, you should move only according to the will that God demands of you.</p>
<p>When you are relating to ten people in your surroundings, you must learn to sanctify yourself to make those ten people completely your own, considering them the people who can remove the conditions of your sorrow. You should deal with them with this kind of attitude. In other words, countless people exist in your surroundings for the sake of raising you to perfection. If you ask the question for whom and for what reason they are in action, the answer is that they are in action to make you a complete human being.</p>
<p>Moreover, you might think that God took different positions as He received the offering of Abel but did not receive the offering of Cain. It would have been different if Cain and Abel had made an offering to God together. If Cain had even the slightest desire to go through Abel, who represented Heaven&#8217;s position, then God would have taken Cain&#8217;s offering. Even if there might be a difference in time, He wanted to relate with them from the same position.</p>
<p>What then must you do if you now want to climb over the universal hill of sorrow before God and emerge as the one offering because of whom God can rejoice and be glad? You are not to build the altar of Abel, whose purpose is to restore all things in the universe and offer the lamb as the Abel-type sacrifice. You are to offer your substantial embodiment of life.</p>
<p>You must not repeat the mistake of Abel, who prolonged the dispensation of God by not being able to cope with the mission Heaven gave to him and who shed his blood. You have to have the mind-set that all the realities unfolding around you are for the sake of raising you to perfection. You must nurture an unshakable faith so that no matter who drives you to the hostile environment, you will not take a path that violates Heaven. By doing so, you must forget all things in your surrounding environment. You must march forward determined even to face death solely for the sake of manifesting the glory of the Father.</p>
<p>After Cain and Abel made their offerings, Cain found out that God only received Abel&#8217;s offering. Cain then despised Abel and beat him to death. You have to understand, however, that from the time they had made the preparations to make the offerings, Cain already had hatred toward Abel. It was not that Cain beat Abel because he momentarily felt hatred when God did not receive his offering. Rather, even before that took place, Cain hated Abel and wanted to beat him to death.</p>
<h3 align="center">The Last Days: When True and False Will Be Unveiled</h3>
<p>What must you who have inherited the fallen lineage do to climb over the hill of universal lamentation? Now you are not to build the altar that sets the condition of faithlessness and conflict. You must introduce the glory of the Father and build the victorious altar of Abel that can bring joy and glory to the Father.</p>
<p>Consequently, your life is not limited to you as an individual. It represents the whole. The life you have lived, centering on the will, does not end the moment you prostrate before the Father. There the determination is made between the two branches of the road, the Cain position and the Abel position. In other words, you are standing on the incredibly precarious path of history where you might easily become either Abel or Cain.</p>
<p>When we examine the principles of restoration, we can understand that the history of the dispensation for which God exerted Himself for 6,000 years is inducing human beings to seek a more Abel-type person and attend him. Therefore, God sent one person to humanity as the Abel on the world level for the sake of restoring everything through indemnity. That person was none other than Jesus Christ himself.</p>
<p>The believers of Judaism and the Israelites of that time should not have taken the same position as Cain in the past, who envied and despised Abel. Rather, they should have demonstrated absolute obedience and served Jesus, who was in the position of Abel. They then could have climbed over the hill of universal lamentation. Moreover, from that point on, they could have built the altar of life on earth that God wanted, the Abel-type altar of glory. However, you have to understand that due to Jesus&#8217; death, caused by the jealousy and envy of the followers of Judaism and the Israelites, all those wills were undermined at once.</p>
<p>If you possess unlimited desire and long for the infinite and eternal world, you must not be limited to yourselves. You must climb over all hills of lamentation that are blocking your path. After rising above them, you must courageously fight against Satan.</p>
<p>Moreover, when you obey Heaven, you must not obey for a certain moment. When you persevere, you must not persevere for a moment. Until the moment your life is extinguished, you must remain obedient toward Heaven and overcome difficulties. You have to keep in mind that if you cannot do that, then you will not be able to climb over the hill of the last judgment.</p>
<p>What kind of time then is today? Now is the time that the will of God is manifesting itself on the earth. Today, on this earth, there are Cain and Abel. Just like the words written in Chapter 13 of Matthew, on this earth there are grains which are full of wheat and grains which have empty heads. Furthermore, like the words in Chapter 10 of the Gospel of John, while there are true shepherds who are entering the door, at the same time there are false shepherds who are crossing over to another place and do not go through the door. Consequently, you have to clearly understand that this kind of phenomenon can also easily take place in our church.</p>
<p>Being aware of this, you must now be able to discern who is Abel and who is Cain, centering on the church. If there are two people, one is always Cain and the other is always Abel. If there are three people, then two of them can be either Cain or Abel, but you must be able to clearly distinguish that there are the most central Cain and the most central Abel.</p>
<p>Cain and Abel must never become divided. One is the right hand and the other is the left. Therefore, everyone must stand in the position of faith that God is my God and the others&#8217; God, and that He not only loves me, He loves others as well. We must make the best efforts to seek and attend the Abel figure and avoid the position of Cain. If you cannot do that, then for sure, you will one time in the future fall under the judgment of Heaven.</p>
<h3 align="center">Human Beings Who Stand on the Forked Road<br />
of the True and the False</h3>
<p>When we look at our Unification Church, we can also see that here there are always Cain and Abel. Thus, God wants to reveal the words through Abel and hopes that everyone will become one with the Abel figure. However, there is someone who prevents people from becoming one with Abel, and that person is none other than Satan. Consequently, in order for you to live the correct life of faith, you must learn to discuss everything with that Abel person for the sake of becoming one with him.</p>
<p>In the Garden of Eden of the past, if Eve had gone to Adam and consulted with him about the tempting words of the archangel, Eve would not have fallen. Moreover, had Eve discussed it with God, she would not have fallen. After hearing the words of temptation, Eve did not consult with Adam or God, so she committed the mistake of the fall.</p>
<p>God set up the heavenly law &#8220;Do not eat,&#8221; but Satan, who denied this, said to Eve, &#8220;For God knows that when you eat of it your eyes will be opened, and you will be like God, knowing good and evil.&#8221; (Genesis 3:5) This kind of deceitful action and temptation of Satan is taking place today without you being aware of it.</p>
<p>Consequently, you must learn to discern the truth about all the things that are happening in your surroundings. In the same way a peasant must be able to distinguish grain from empty heads of grain and grain from the skin at the time of harvest, you must be able to distinguish the actions of God from those of Satan and can distinguish their results.</p>
<p>Now what kind of person must you become? You must be able to taste the joy of harvest. You must become people who can be raised before the Father with dignity. You are to bear the fruit, not of empty heads of grain, but the fruit of the true grain. Therefore, you must correctly receive the grace of Heaven that will help you grow up as the true grain.</p>
<p>You have to know the time Heaven gives the blessing. You have to understand the time of the new dispensation for the sake of the salvation of fallen human beings. You must not become like the empty heads of grain at the time of God&#8217;s new dispensation. Rather, you must be able to correctly discern everything so that you can become the fruit of the true grain.</p>
<p>However, in the 6,000-year history, people have not been able to correctly distinguish true from false until now. There has not been even one person who bore fruit as the true grain on behalf of human history. There was no one who bore the fruit for which countless people in history have hoped. You have to understand that if there was someone who lived for the sake of harvesting them, that person must be Jesus Christ. Today you have to be concerned about what form the fruit, which will be born anyway, will take. With a craving heart, you must head toward the path of life. By doing so, you must enter the path of life and give birth to the new, second life.</p>
<p>It is not the case that only true things are in your mind. In the field called your mind, at times true grains are planted, and at times grains with empty heads are planted. Grains with empty heads are not planted only in the environment in which you are dwelling. Fallen elements remain in your hearts. You have to clearly understand that the person who walked the path of sacrifice for the sake of removing them and rectifying their hearts is none other than Jesus Christ.</p>
<p>How is your daily life? When you make a movement in your daily life, that action is either good or false. It is either one of the two. What you see, hear, say and feel are all either good or false. Similarly, you must sense that you are standing on the forked road where every reality is divided into true and false.</p>
<p>There are Cain aspects and Abel aspects in your mind today. Moreover, in your mind, there are true grains and grains with empty heads. Therefore, when you carry out some action, you feel forced to reflect whether it was more Cain-type or Abel-type.</p>
<h3 align="center">The Standard of Distinction Between<br />
the True and the False</h3>
<p>Similarly, everything exists in the position of Cain and Abel or within the four directions of the vertical and horizontal. Accordingly, wherever you go today, you must be able to distinguish things, establishing Abel things as Abel-type and Cain things as Cain- type. Since even lower animals can determine whether the grass they are eating is poisonous or not, human beings, the lords of creation, must be able to correctly discern all the things they encounter. You have to distinguish clearly who is Abel and who is Cain.</p>
<p>If Eve, in the past, had been able to correctly discern the hands of temptation approaching her, she would not have fallen. If Eve had relied on the words of God and fought with Satan till the end, at the cost of her life, she would not have fallen. However, because she could not discern her immoral desire for something at an inappropriate time, she fell. You have to clearly understand this.</p>
<p>Now, before you there will probably be true grains and empty heads of grains. There will also be true shepherds and false shepherds. Therefore, you must now distinguish this clearly. A true shepherd does not call himself a true shepherd. He silently moves forward with the will of God and all things cherished in his heart. He does not make excuses for his own situation. You can look back and see that, consequently, when Jesus stood inside the court of Pilate, although the evil ones asserted that they were right, Jesus did not make excuses for himself.</p>
<p>However, there will come one time in the Last Days when you will not be able to distinguish the true things from the false. For this, God ordered that the people who are to receive that kind of time must pour oil on their heads and pray inside a secret chamber. If everyone makes the assertion that they are right, there will be great confusion and chaos. It will not be possible to determine who is the true shepherd, so God taught them to silently go into the secret chamber and make the judgment through prayer.</p>
<p>A true son does not boast about himself, unless the Father expresses pride in him. He does not give any excuses. Even if he is standing in the position of the Father&#8217;s glory, he does not boast. Rather, he tries to lower himself. Consequently, you must make undying efforts to become that kind of person.</p>
<p>When we look at the Unification Church today, you have to understand that although you are not aware of it, the Teacher is unfolding a fierce battle on the spiritual and substantial dimensions to pioneer this kind of path. At present, you possess the element that will force you down to the dark realm of death because of a small mistake you might make. You have more elements in you that lead you to live centering on yourself, to satisfy your own selfish greed, than you have elements of living for the sake of the whole. Consequently, today you have to deny your inadequate self and entrust everything to the Father with the internal heart, &#8220;Please rule over us as You will.&#8221; If you do not possess this kind of heart, you will be forced to take futile steps, and you will not be able to escape from the realm of death that Satan rules over.</p>
<p>Now in the course you are walking, you will face many temptations of Satan. Moreover, people who communicate with the spirit world will fall upon many tests. When human beings fall down in his test, Satan will accuse you, &#8220;How can you be like this?&#8221; and block your path. This is the reason that today you need a path through which you can avoid those kinds of accusations from Satan. You know this path very well through the Divine Principle.</p>
<p>What kind of shepherd then is the true shepherd? What should the true lambs who are following the true shepherd do? What are the seeds sown through the true words, the seeds that bear the true grains? What kind of lifestyle should you lead to stand in the position of true Abel? You must solve these kinds of questions and move forward. In this way, by attaining the qualifications of Abel, who can confidently go before Heaven and earth, humankind and all things, you can avoid the side path and walk on the true path. You must keep this in mind.</p>
<h3 align="center">The Fruit Which Can Enter the Storage<br />
of the True Shepherd</h3>
<p>You must not recklessly make a move when you are given a vague teaching. You must never make a move without the direction determined by a clear truth. Even if someone unmistakably teaches you a new fact, you must not simply believe in it. You should discuss it with someone who is more Abel than you. You have to understand that if you talk among yourselves and bring confusion, you will bring about the same phenomena as the spiritual fall of the angelic world.</p>
<p>You, who have ushered in the Last Days, now must stand in the position of Abel and possess one gift that you can offer to the Father. If you want to step forward as the true Abel, then you must first possess some gift that only you and the Father can recognize. You have to have some precious gift no one else has. If other people find out about it, then even if that gift is true grain, it will become an empty head of grain.</p>
<p>Therefore, you today must prepare a gift of true grain that no one else can recognize and offer it to the Father with all your heart. When you do that, you can finally emerge as the true filial son of the Father, the Abel of all people on this earth. You will be able to give birth to new life.</p>
<p>You, who have ushered in the Last Days, must not stop at just following the will of the Father. You must also become the leaders who guide all people. When the knigdom of the Father is built, you can rejoice as the leader who led all the people and the true shepherd. To do that, you must become a group of lambs who offer a gift of concealed heart to the Father without borrowing from other people&#8217;s efforts.</p>
<p>What kind of people are robbers and thieves? They are people who use what does not belong to them as their own possessions. Today there are many people of this kind. They are using our Divine Principle as if it is their own. A true person is someone who returns to Heaven what they have received as the possession of Heaven. You must never become robbers and thieves who use what belongs to Heaven as their own.</p>
<p>Thus, now you must obtain some condition on which to stand as an Abel figure. You must bear the true fruits that can enter the storage of the true shepherd. You must become the true fruit and true grain over which the true shepherd can be glad. Flowers that blossom in the spring season will bear fruit in the fall no matter what kind of flower it is. However, in order for those flowers to bear good fruits in the fall, they need appropriate amounts of temperature, humidity and nutrition in their growing process.</p>
<p>Similarly, in order for you to bear fruit as the Abel-type of people who can inherit the will of Heaven, then today, tomorrow, ten, twenty, thirty, sixty years from now, until the moment of your death, you must pour out all of your heart toward Heaven and demonstrate loyalty. Moreover, even if you are put in the position of death, you must fulfill all the obligations of faith toward the Father without changing.</p>
<p>However, it seems that when you face something in your life of faith that you cannot believe or do not understand because of your ignorance, you are easily swayed. You must not do that. If you are swayed by indefinite things and carry out actions based upon them, you will naturally end in the position of Satan. If that happens, you will surely stand on the ultimate judgment stand.</p>
<p>Enemies will certainly appear on the path you travel. Enemies with respect to faith and finances will emerge. Furthermore, some members of our Unification Church will become each other&#8217;s enemies. Satan will seize the moment when you make a small mistake and drive you to the path of Cain.</p>
<p>How must you lead your life to defeat these enemies and not stand in the position of Cain? You must not live for the sake of your own comfort, but live a life of sacrifice for the sake of the whole. Your mind must become a parental mind and your body must become the body of a servant to live for the sake of all people. More than anyone else, you must attend the Father with all of your heart and become a pure offering before the Father. By doing so, you must fulfill the obligations of loyalty toward Heaven to rise above the three realms of formation, growth and completion that were lost.</p>
<p>Even if you have remained loyal to the Father for several decades until now, that alone will not bring everything to a conclusion. No matter how loyal you have been until now, in your one generation you must demonstrate more loyalty than three generations combined. Only when you can accomplish that can you finally at once restore through indemnity the three realms of formation, growth and completion. If you cannot do that, you will eventually dwell within the satanic realms, and you will not be able to step forward as the true Abel before the Father.</p>
<p>Consequently, you must now complete the duties of loyalty and faith toward the Father, of which Satan is not aware and about which he cannot make accusations. In order for your loyalty to remain eternally, you must be able to discern the side path, which is the result of Satan. Following the true path of Heaven, you must move forward until the last moment to obey the Father and become a pure offering.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love, until now we have thought that only the front existed, but now we realize that there is also behind. We thought that there was only today, but we now realize that there is also tomorrow. We thought that there was only above, but now we realize that there is also below.</p>
<p>Moreover, we have also come to know that if it is a relationship centered on the eternal will, the right side can become the left side and the left side can become the right side. In other words, even if front, back, left and right were to change their positions, they could still stand before the Father. However, we also feel that because we could not uproot the original root of sin inside human beings, in this era today, front, back, left, right, above and below have all become mixed up and are not able to have give and take with each other properly.</p>
<p>Father of love! Please allow the imminent approach of a day of joy when front, back, left, right, above and below can all become completely one, centering on the eternal ideology of the Father. Now we earnestly wish that You will help us understand that if we do not have the desire to forsake ourselves, but want to elevate ourselves, we cannot escape from the judgment of the Father one day.</p>
<p>Beloved Father, we sincerely wish and pray You will allow us to become Your true and proud sons and daughters who can sing the glory of the Father by forming the relationship of inseparable oneness in which below can replace above, right can replace left, and left can replace right. Father, we know that in this era today, the invisible side path is crossing our path before us. Please allow us to become sons and daughters who can discern it and march toward Heaven in silence. By actualizing the will of the victorious day, let us comfort the Father.</p>
<p>Please let there emerge on the earth the day of the Father&#8217;s joy, when all that have upheld the one purpose until now can end at the one purpose and bear fruit there. Father of love, we pray that You will allow us to be moved by the joyful heart of the Father and be happy.</p>
<p>Hoping that the Father will take charge and govern the remaining time, we offer all the words in the name of the Lord.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html" title="Permalink to LET US UNDERSTAND THE TRUE PATH AND DISCERN THE SIDE PATH" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html" rel="prev"><span class="meta-nav">&laquo;</span> THE PROVIDENTIAL LIFE OF JESUS AND ITS VICTORIOUS PURPOSE</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html" rel="next">GOD&#8217;S POWER IS REVEALED WHERE ONE HEART AND ONE WILL HAVE BEEN REALIZED <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,243 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Let&#8217;s Be the Person Who Has the Heart of Jesus Christ &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-899 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-899" class="post-899 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Let&#8217;s Be the Person Who Has the Heart of Jesus Christ</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T16:06:03+01:00"> <a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T16:07:40+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
January 26, 1958</h3>
<p style="text-align: center;"><em>Philippians 1:1-11</em></p>
<p class="chapter-1" style="text-align: center;"><em><span id="en-NIV-29363" class="text Phil-1-1"><span class="chapternum"> </span>Paul and Timothy, servants of Christ Jesus,</span></em></p>
<p class="top-05" style="text-align: center;"><em><span class="text Phil-1-1">To all Gods holy people in Christ Jesus at Philippi, together with the overseers and deacons<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-29363a" data-link="[&lt;a href=&quot;#fen-NIV-29363a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Philippians%201%3A1-11&version=NIV#fen-NIV-29363a">a</a>]</sup>:</span></em></p>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-29364" class="text Phil-1-2"><sup class="versenum">2 </sup>Grace and peace to you from God our Father and the Lord Jesus Christ.</span></em></p>
<p style="text-align: center;"><em><span class="text Phil-1-3"><sup class="versenum">3 </sup>I thank my God every time I remember you.</span> <span id="en-NIV-29366" class="text Phil-1-4"><sup class="versenum">4 </sup>In all my prayers for all of you, I always pray with joy</span> <span id="en-NIV-29367" class="text Phil-1-5"><sup class="versenum">5 </sup>because of your partnership in the gospel from the first day until now,</span> <span id="en-NIV-29368" class="text Phil-1-6"><sup class="versenum">6 </sup>being confident of this, that he who began a good work in you will carry it on to completion until the day of Christ Jesus.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29369" class="text Phil-1-7"><sup class="versenum">7 </sup>It is right for me to feel this way about all of you, since I have you in my heart and, whether I am in chains or defending and confirming the gospel, all of you share in Gods grace with me.</span> <span id="en-NIV-29370" class="text Phil-1-8"><sup class="versenum">8 </sup>God can testify how I long for all of you with the affection of Christ Jesus.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29371" class="text Phil-1-9"><sup class="versenum">9 </sup>And this is my prayer: that your love may abound more and more in knowledge and depth of insight,</span> <span id="en-NIV-29372" class="text Phil-1-10"><sup class="versenum">10 </sup>so that you may be able to discern what is best and may be pure and blameless for the day of Christ,</span><span id="en-NIV-29373" class="text Phil-1-11"><sup class="versenum">11 </sup>filled with the fruit of righteousness that comes through Jesus Christ—to the glory and praise of God.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! Please forgive the minds and bodies of these sons and daughters gathered here knowing the Father&#8217;s will, and guide them to be the ones who are not looking the other way despite the fight for restoration yet to be concluded, take the Father&#8217;s command to heart and carry it out as was given; this I desire.</p>
<p>Please allow this hour to be the time when the depth of our heart can be filled with the Father&#8217;s original nature, and the time for which the Father&#8217;s nature can be longed. Please allow us to comprehend in this hour the shimjung of the Father, Who has wandered around looking for us for 6,000 years. Allow us to understand that the Father has toiled for us. I sincerely wish and desire for You to allow this hour to be the time when we can realize that the Father has fought, enduring the hardships and privations of the cross for us.</p>
<p>Although there are a great number of people living on this earth, there is no throng of people who can represent the cosmic shimjung. Neither is there anyone who can sing the praise of being the Father&#8217;s son and daughter, and can sing in praise of God&#8217;s glory. Please allow this hour to be the time when we can prostrate ourselves in awe and reverence before the Father, Who let us feel the Father&#8217;s love after having called for us who are unworthy, and allowed the grace that we can connect with the shimjung of the prophets and the shimjung of all creation.</p>
<p>We understand that the grace You commanded is a stroke of the lash, and that our heart which adores the Father must be grand. Yet, our ardent passion is not grand, so please forgive us and allow this hour to be the time when we can be sons and daughters who can be afraid of the Father&#8217;s sorrow. So, beloved Father, I sincerely wish and desire for You to bless us to have a true heart that can, by admitting to having made all kinds of mistakes, by repenting of our sins and evil and officially recognizing everything of ours, of our own accord, possess only the Father, love only the Father and trust the Father only.</p>
<p>Father, please take personal charge of this hour and govern. I sincerely wish and desire for You to guide this hour to not to be the time when Satan seizes an opportunity. Please allow this hour to be the time when our minds and bodies become one with the Father. Allow the altar we are building this hour to be a sanctified altar representing all living creatures in Heaven and on earth. This, beloved Father, I wish and desire to be done.</p>
<p>Since I feel that the won han (grief and bitter resentment) of the earth and Heaven is filled, beloved Father, I pray sincerely that You will allow our minds and bodies to become sacrifices specially offered before the Father. Please reveal Your words to us now, and allow, this hour, the hearts of the giving person and the receiving person not to be divided into two separate parts, but to be united. By so doing, beloved Father, I sincerely wish and desire that You allow this hour to be the time when we can feel the substantial entity of the Father, and feel ourselves to be the sacrifices offered as a substantial entity before the Father to strike the distrusting group of people.</p>
<p>Please console the sons and daughters who are gathered this hour in their sorrow, and ardently soliciting for You to govern according to your will. I pray all these words in the name of the Lord. Amen.</p></blockquote>
<p>Centered on the passage of Scripture reading, &#8220;God can testify how I long for all of you with the affection of Jesus Christ,&#8221; I will speak on the topic “<i>Let&#8217;s Be the Person Who Has the Heart of Jesus Christ.</i>” Starting from that day when Adam and Eve fell, what could have been God&#8217;s hope? It was finding the person who can represent God&#8217;s shimjung, who has reached the completion of being a holy temple where God can dwell, and has the shimjung that corresponds with God.</p>
<p>Jesus Christ, who came on this earth as God&#8217;s substantial entity holy temple representing God&#8217;s will, is God&#8217;s holy temple that appeared in place of the providential course in which God had toiled during 4,000 years of history. At the same time, today we should feel that he was a man who appeared with a living heart in a substantial body representing the internal shimjung of God who had carried out the dispensation for 4,000 years.</p>
<h3 align="center">Jesus&#8217; Shimjung</h3>
<p>The body of Jesus Christ knew how to feel and experience God&#8217;s shimjung, and Jesus&#8217; heart knew how to feel God&#8217;s shimjung. Therefore, Jesus&#8217; leaping heart, by adopting Heaven as the artery and humans as the vein, should have formed all relations whereby Jesus moves when Heaven moves and Jesus gets emotions when humans get emotions. That was the mission of Jesus Christ who came to this earth. However, there was no one who could understand the internal shimjung of Jesus Christ who felt God&#8217;s shimjung, who could understand the external heart of Jesus who felt God&#8217;s shimjung. For this reason, the heart of Jesus Christ was a heart that had experienced loneliness of which no one knew for thirty years of preparation period.</p>
<p>Why did Jesus feel such sorrow? The reason is that, due to the fall of human ancestral Adam and Eve, the will of God, Who wished to enjoy glory through the attainment of the ideology of creation, did not become realized and all created things came to stand in a position of having lost their master. God who was looking at this came to feel inexpressibly lonely, because Jesus knew of God&#8217;s shimjung, Jesus also felt loneliness. Accordingly, you too should become the people who feel that the world of creation has become a world that is indescribably desolate like Jesus did.</p>
<p>What kind of life did Jesus, who had passed through the thirty-year preparation period, live after that? When he came to appear upholding the will for God and preach the new Gospel before the Israelite people, whom God chose and raised after having toiled for 4,000 years, his heart must have been overflowing with the indescribable sense of mission. You should not forget the fact that Jesus who, after liquidating the sorrowful life of thirty years by eliminating Heaven&#8217;s sorrow and grief, bore the mission to restore again the hero of the lost Eden, appeared with a pulsating heart that was expressible to none.</p>
<p>Jesus came to deliver the new words on God&#8217;s behalf, after having appeared before the chosen people of Israel who had followed the will, who were called for in behalf of the will of providence. They had not prepared the environment in which they could attend Jesus as a man who represented the whole of an ideology, as a substantial entity of their hope, and as their glory itself. They instead emerged raising the standard of revolt before Jesus who had appeared with a full heart. In the same way that God felt sorrow because Adam and Eve, whom God had raised for His will, had fallen, when the raised, chosen Israelite people did not come to appear before Jesus venerating the will, Jesus could not but feel again the sorrowful shimjung that God felt after losing Adam and Eve. You should understand that.</p>
<p>Jesus&#8217; shimjung, who was looking over the distrusting Israelite people, might have been limitlessly sad. His sense of indignation might have been great, too. He might have felt eagerly like giving orders to judge them, making appeals and curses before Heaven. However, casting off such shimjung in entirety, pressing down the throbbing chest and pulsating heart, Jesus endured and forbore, thinking of the shimjung that God might have felt after Adam and Eve fell from Eden long ago, and harbored a sorrowful shimjung. Furthermore, you must understand that Jesus had placed his hope in the Israelite people who were putting up opposition.</p>
<p>John the Baptist, who should have built the altar of atonement for the Israelite people or even the family of Joseph, who had been guided by the hands of God as the blood relative of the chosen people for forty or so generations after Abraham, disappeared. Mary, who bore Jesus in pursuance of the will and then nurtured him after birth for thirty years, his brothers and sisters and the clans also, all disappeared.</p>
<p>Jesus&#8217; shimjung said, &#8220;Foxes have holes, and birds of the air have nests; but the son of man has nowhere to lay his head.&#8221; (Matthew. 8:20) You should be able to feel and experience the pulsating heart of Jesus who had to carry out the fight, clinging onto the will of Heaven in lonely circumstances this hour. The more he came to know of the huge effort God had made, the bigger the feeling of fretfulness and indignation must have been. The greater the hope and expectation of the chosen Israel, the more serious the cutting pain, pierced with bitter resentment, in the heart of Jesus Christ must have been. You must feel the state in which Jesus&#8217; heart might have been when he stepped out of the house, without uttering a word, bearing all this. You must understand that this is the very time when you must reflect, in a manner of awareness, to find out in what state is your heart pulsating today.</p>
<h3 align="center">True Friend of Jesus</h3>
<p>Although the time has passed, the pulse of Jesus Christ&#8217;s throbbing heart keeps its stroke through your heart and blood vessels, arteries and veins today. Therefore, you should become the people who can represent the pulse of heavenly heart. Jesus has been waiting eagerly for 2,000 years for a person, who can bear the responsibility, like this taking his place. You must know that God has been waiting for 6,000 years.</p>
<p>When you come to think of this, you should understand what the throbbing heart of Jesus would have been like, placed in a situation where there was nowhere to put his feet. He turned around and went out to the wilderness, leaving the chosen Israelite people behind. He left Judaism, said to believe in Heaven behind. He left behind even John the Baptist, who was preparing the Messiah&#8217;s path. He went eating locusts and wild honey, going through all kinds of hardships while toiling in the wilderness throughout thirty or so years of lifetime. He left behind the family of Joseph, transmitted as the chosen blood relative of Abraham, with his back to Heaven, withdrawing himself from home and denomination.</p>
<p>Jesus was in a situation where, if there had been bitter resentment in the footsteps of him who turned around and walked away, he could have blamed the people with the grief-soaked shimjung for Heaven. If that grief-soaked shimjung had given vent to its anger, he could have made the appeal of judgment asking for the flame of curse to be thrown over. Nevertheless, Jesus was anxious about the course that the people of the nation had to take, and felt concern about the people who betrayed and rejected him, and so he walked toward the wilderness to embrace them again. You should feel the lonely shimjung of Jesus in a situation like this. You must become the people who can inquire, in a manner of feeling, into the heart of Jesus Christ who, after burying all the fateful things that are historical and giving up everything to prepare for his mission in its entirety and to solve the current and eternal problem, stepped out toward the barren wilderness against which there was no place to lean.</p>
<p>Jesus went out to the wilderness, leaving behind the people of the nation and fasted for forty days. As Jesus thought about having to go out into the wilderness and wander around in solitude without being able to eat anything in this manner, he could have felt terribly mortified. However, having thought of God&#8217;s shimjung that had endured and forborne for 4,000 years, Jesus who still felt some lingering expectation toward this people of the nation made the sacrificial offering on the people&#8217;s level before God for forty days without eating anything in the wilderness to establish the foundation of the second life for these people. This you should be aware of.</p>
<p>You may know too, from your experience of fasting, that Jesus grew gaunt and his body wasted with hunger during the forty-day fast. Although Jesus felt his shimjung indescribably squeezed and his heart became weak during the forty-day fasting course, it was because he felt God&#8217;s shimjung deep in his heart that he crossed the hill of forty-day fast.</p>
<p>What then can we do today? We must become friends of Jesus&#8217; who can understand his situation and do something about it. At the same time, we must become friends who, holding onto Jesus Christ who could not eat, can be fearful listening to the sound of Jesus&#8217; heart, who was dying, and cry.</p>
<p>Though his body was without strength, to Jesus, fostering the boiling heart in a fighting course to break open the blockage that trapped the new ideology of chun ryun (heavenly principles) and, thinking of the lonely shimjung of God, was nursing the heart that was deeply touched, no friend ever appeared. Instead, Satan appeared and tested him. You should become the people who can feel the heart of Jesus Christ, who had to fulfill his own mission even in the situation like this.</p>
<p>We should feel the throbbing heart of Jesus who, at the time when Satan appeared and carried out the three great temptations to destroy Jesus&#8217; mind and body, stepped forward newly determined, representing God&#8217;s will, representing the people and representing the ancestors. Jesus, who had reaped a victory over Satan&#8217;s temptation, knew it would be difficult to restore the Israelite people who rejected him, and also that it would be difficult to restore Judaism which rejected and expelled him. You must know that he went out to the wilderness and had direct negotiations with God, after having stepped forward resolutely with burning loyalty, full of fighting spirit, to restore this sinful castle town.</p>
<p>From that day on, Jesus stepped forward risking his life. Even if he were to die for the sake of the Israelite people, he realized his body was not his own. Against the Satan who tempted him and toward the Israelite people who rejected him, Jesus launched the second offensive movement. You should feel again this hour the throbbing heart of Jesus Christ in this situation.</p>
<p>Anyway, people often say that his being Christ might have enabled him to handle such a situation with patience and to endure and forbear such tribulations and accusations. However, you should know that, because he is Christ, it is impossible for him to endure more. Because Jesus was more sensitive than other people, and his shimjung was hurt in a more extreme way than others, he had a grim shimjung that no one could have.</p>
<p>When Jesus Christ, who was standing in such a position, stepped forward to restore the lost castle town, people did not believe him. Even when standing in a position where he had passed through the life of such sadness, the life of being hard up for clothing and the life of starvation, there was no person, a friend, who would participate in Jesus&#8217; situation on the earth. That is why Jesus came to have the shimjung that felt that only God is his friend, only God is his father. Similarly, people at the time did not believe in Jesus.</p>
<h3 align="center">God Is with Me</h3>
<p>Even if the people of the nation betrayed, the denomination accused, relatives and kinfolks looked the other way, and all his belongings would become lost, the only thing that filled Jesus&#8217; welfare, his hope and his shimjung was that &#8220;God is with me indeed,&#8221; this one fact that &#8220;God is mine.&#8221; This one fact made Jesus feel concern about Heaven again, in the 4,000-year history, raise again God&#8217;s will, transmitted to the Israelite people, and keeps the thought of planting God&#8217;s shimjung in all humankind.</p>
<p>Before he went to the wilderness, Jesus thought of God as the God of love. He thought of God as the One who raised him and comes, looking in happiness, as the eternal God of love. However, when he came to step forward with a full shimjung like this, he was put into the difficult situation of God who, being on reciprocating relations in the old days, always brought him up, embraced him and comforted him, and came to feel God&#8217;s difficult position and sorrowful shimjung. At the same time, as he came to step forward with such shimjung making an appeal by saying, &#8220;I will fulfill the mission to accomplish&#8221; the will, he could step forth, starting from that day, before enemies with a new determination, along with God, not as a reciprocal God but as a directive God, as God who is with him. Therefore, Jesus, who started a new course of struggle after the forty-day fast and stepped forward at the risk of his life to dissolve God&#8217;s resentment of 4,000 years on behalf of the people of the nation and to destroy God&#8217;s enemy, Satan, appeared not as a representative of himself but as a figure who had been missed for 4,000 years, and who represented God&#8217;s shimjung.</p>
<p>The words that Jesus spoke after that were not the words of himself, and Jesus&#8217; actions also were not for Jesus&#8217; own sake. The words that Jesus spoke represented God&#8217;s words, and the actions of Jesus also represented God&#8217;s actions. Jesus truly felt that God dwellt alive in his mind and moved his heart.</p>
<p>Accordingly, Jesus entered, looking into an Israelite village again. Now, again you should think about the shimjung of Jesus Christ who, although he could step forth to the wilderness with a lonely shimjung when faced with the rejection from the people of the nation the first time, this time stepped forward with the resolution and determination to run against and fight out the suffering and persecution that are coming en masse, no matter how strong they may be.</p>
<p>Jesus who stepped forth to find and offer the lost Israel to God again. Who would have recognized Jesus, who could not suppress the throbbing heart that was beating faster as his burning firm belief that he could never retreat even if his body faded away got fierier? There was absolutely no one who could understand Jesus&#8217; throbbing heart in this world. Only God alone understood Jesus&#8217; situation.</p>
<p>In the midst of it, Jesus started walking the three-year course of public ministry. Initially, he chose and raised apostles from among disciples. However, whenever Jesus came to face the disciples, he returned God&#8217;s shimjung, grieved for 4,000 years over the loss of Adam, to them. Who were these disciples? They were disciples who had the mission to be God&#8217;s substantial holy temple. Besides, Jesus felt deep in his bone marrow that he would personally guide them to be God&#8217;s substantial holy temple.</p>
<p>Israelite people, opposing Jesus, were not Satan&#8217;s tribe but God&#8217;s sons and daughters who were to emerge as God&#8217;s substantial entities. They, nevertheless, put up opposition, not knowing of God&#8217;s will. Can you imagine how Jesus&#8217; heart, who felt God&#8217;s shimjung and grieved looking at them, must have felt? You should understand this.</p>
<p>As we look carefully over Jesus&#8217; three-year course of public ministry, we realize that Jesus did not live for his own sake, but he lived, first, for the sake of God, and next for the sake of disciples and humanity. Jesus did not live for his own sake, but lived representing God&#8217;s shimjung.</p>
<h3 align="center">The Distrust of the Israelite People<br />
and the Lack of Enlightenment of the Disciples</h3>
<p>What is more, Jesus&#8217; throbbing heart represented God and the Israelite people. Therefore, God&#8217;s sorrow is Jesus&#8217; sorrow and the grief of Israelite people became that of Jesus. Here, the disciples who represented God, Jesus and the Israelite people could have become not three, but one. Jesus felt deep in his heart that God, the people and he must become united into one. You should understand that Jesus treated and loved the disciples following him more dearly than his own children.</p>
<p>Jesus&#8217; three-year course of public ministry was the course of the life of true love he led with a parent&#8217;s shimjung who sacrifices for the sake of children. There was no one who understood Jesus, who represented God&#8217;s shimjung, feels pity for humankind struggling in the realm of sins and evil, and represented the shimjung of the people and disciples. There was absolutely no one who understood Jesus&#8217; situation on this earth.</p>
<p>Jesus tried to move on, fighting with the heartrending shimjung of Heaven in the midst of no one&#8217;s recognition. Can you imagine what Jesus&#8217; shimjung, rejected again by the people, who lost the people that had followed him and who had to pray alone at Gethsemane in the end, would have been like? You should think about this. Jesus&#8217; shimjung, which prayed all night at the Garden of Gethsemane, was indescribably heartrending. The three disciples following Jesus, nevertheless, could not harmonize with him in action but, instead, acted individually. Despite that all Jesus had to go through and all that had to appeal with a shimjung like that of Jesus, and despite the appeals Jesus made with a shimjung that cared for the beloved disciples and was concerned about them, they were ignorant of Jesus&#8217; shimjung and fell asleep.</p>
<p>The shimjung of Jesus, who stood in a circumstance that called for a showdown between life and death and stood at the crossroads of living and dying, was an unspeakably fretful shimjung that felt as if Heaven and earth were being melted away. God knew of Jesus&#8217; shimjung like this. However, the three disciples whom Jesus had brought up for three years like his own sons and daughters did not understand Jesus&#8217; shimjung and dozed off to sleep. That is why he came out three times to wake up the disciples with a burning, fretful shimjung. You should feel that pitiful shimjung of Jesus.</p>
<p>What kind of shimjung could Jesus feel at this time? He felt the sorrow God had felt at the time of losing Adam and Eve in the Garden of Eden. Although Jesus went through the course of the three-year public ministry because the Israelite people, who were chosen as the nation before Jesus, put up opposition and even Judaism itself raised objections, when he came to not be able to find one person who absolutely trusted him, he must have realized that the people could not be trusted.</p>
<p>There was no one who dealt with Jesus&#8217; feeling the sorrow God felt after Adam fell and that Jesus felt during his thirty-year private life and three-year public ministry and, further, that heartrending shimjung of Jesus who prayed at the garden of Gethsemane. No one felt God&#8217;s shimjung. Even those disciples, who shared his feelings during the three years of public ministry, did not know.</p>
<p>Despite the life of being one walked for God, despite the purpose of Jesus&#8217; having walked for the sake of the people, for the sake of the world and for the sake of humanity, the thing that was left after walking the 33-year life course was himself alone. On top of that, at the time Jesus finished fasting for forty days, the enemy Satan appeared to Jesus who was deeply agonizing with fretful shimjung and sorrowful circumstances.</p>
<p>In a time like this, what would Jesus&#8217; shimjung have been like, and what about his throbbing heart? Despite being placed in a fretful situation where there was nothing that could be trusted in the human world, no place to lean on and no place to settle down, the enemy Satan appeared and tried to tempt Jesus. That made Jesus&#8217; shimjung indescribably bitter. Nevertheless, he was anxious worrying about the well-being of the chosen people and humankind. You must understand the shimjung of such a Jesus.</p>
<p>Since we have the responsibility to walk the course of indemnity for the historical mission again, we should be able to represent Jesus&#8217; heartrending shimjung representing God&#8217;s shimjung, be able to fight for Jesus and feel concerned for Jesus&#8217; throbbing heart. Heaven is waiting eagerly for true sons and daughters such as these to appear.</p>
<h3 align="center">Jesus&#8217; Shimjung, Which Bears the Cross</h3>
<p>Although Jesus was victorious in the battle against Satan on the wilderness course, after having disconnected all conditions of hope, Jesus still had reasons to make a substantial sacrifice offering. You should understand this.</p>
<p>Accordingly, Jesus went into Jerusalem with the beloved disciples. He lost the chosen Israelite people and the denomination and walked the path of Golgotha all alone to be sad. You should understand such circumstances of Jesus, too. What is more, you should understand Jesus&#8217; shimjung walking along the path of Golgotha in desperation, bearing the cross in silence, looking at the chosen Israelite people who were hounding him with whips, yelling and howling, even though in this circumstance it was the Israelite people that are to be reproached, and the twelve disciples that are to be cursed.</p>
<p>Since Jesus was human, if he had humane emotion, he must have felt mortified. Curses and bitter feeling must have sunk deep in his mind and the feeling of great indignation must have overflowed his heart. However, Jesus understood that the will of God, Who wishes to restore this people and this world, is yet to be completed and closed his cursing mouth and changed his sorrowful shimjung.</p>
<p>Because Jesus realized that the providence of salvation that saves the latter generation humankind would be destroyed if he cursed at this people for Heaven and judged for God, he could establish one standard of salvation. If Jesus had expressed his feeling of being mortified according to how he felt, and stood in a position of cursing and feeling bitter as a substitution for God, this world would have its hope all disappear. This world would have seen its end then.</p>
<p>Because Jesus knew such things, Jesus&#8217; shimjung, who knew that there was God&#8217;s will yet to be attained even if he had to cross over the hill of death, said, &#8220;Father, forgive them; for know not what they do&#8221; (Luke 23:34) to the people whom he should have cursed and fretted, and to the enemies on whom he should have taken vengeance. Similarly, you must understand that it was the moment of anxiousness and seriousness when the second will of providential salvation had just been inherited and started its dispensation. That is how God could establish Jesus as the executor of the second salvation, and to command the grace of resurrection over the humankind.</p>
<p>Jesus, who was faced with such a situation as this, forgot the enemies&#8217; nailing him against the cross, worried about God&#8217;s shimjung reminiscing on the history, was concerned about the posterity of the future and forgot his blood and flesh being shed and torn apart. Further, bearing Heaven&#8217;s historical sorrowful shimjung on its behalf, taking on the historical God&#8217;s resentment and the responsibility for the historical salvation, Jesus made an appeal saying, &#8220;Heavenly God, please grant us redemption!&#8221; You should become the people who can think of the shimjung that was gradually stopping Jesus Christ, who was in such a situation.</p>
<p>The life of Jesus who, after having been born of a human for the sake of all humanity, not being able to find even one place of comfort, lamentably, being driven hither and thither, like a lonely orphan, walked the lonely path like a driven exile. As we think of this one fact that such a life ended as a death on a cross at the top of Calvary in the end, we have to try to imagine how God&#8217;s shimjung, looking at this, could have felt! God&#8217;s sorrow would have made Him wish to knock the bottom out of Heaven and earth. Since it is written in the Scripture that the whole Heaven and earth was dark for three hours at the time of Jesus&#8217; death, it is to indicate that God bore a suffocating shimjung looking at the scene of Jesus being offered as a sacrifice on the road of death at Golgotha, in spite of Jesus being the son whom God had waited trusting for 4,000 years, and Jesus being the second Adam raised by God to restore Adam who had been lost for 4,000 years. You should understand God&#8217;s sorrowful and agonizing shimjung in this manner.</p>
<p>Because Jesus who knew this understood that God&#8217;s sorrow is greater than his sorrow, God&#8217;s pain is greater than his pain and realized that God&#8217;s will to restore the people of the nation even if they were being distrustful is yet to be attained, Jesus in spite of all could become a sacrifice of tame submission saying, &#8220;My death is insignificant.&#8221; You must learn about Jesus who was filled with shimjung of this kind of tame obedience and filial piety.</p>
<p>Though Jesus died in this manner, there was absolutely no one who consoled Jesus in his death, and attended Jesus&#8217; dead body as God&#8217;s son. Furthermore, the Roman soldiers who treated Jesus as they pleased, held up their spears in the end and thrust them into Jesus&#8217; heart. You must learn about Jesus&#8217; heart that became the target of thrusting this way. You should stop to think about Jesus&#8217; heart, which stood before the cruel enemies who were determined not to leave even one drop of blood in Jesus&#8217; heart, even after all blood had been drained out.</p>
<h3 align="center">God&#8217;s and Jesus&#8217; Wish for the Faithful Believers<br />
in the Final Days</h3>
<p>What then was God&#8217;s won han and sorrow for? Who would be the one who can represent the life of Jesus Christ who had lived on the earth, who can feel the heart of Jesus Christ who had testified to God&#8217;s will like his own heart and can inherit Jesus&#8217; will in his place? God wishes to see such a person appear. Similarly, after losing the first chosen people of Israel, Jesus rose from the dead, pushing the grave open three days after his death and unfolding the gospel campaign for the sake of salvation of the second Israel. You should know that the people who were restored in this manner are the Christians scattered all over the world today.</p>
<p>Who are the Christians of the world today? They are the second Israel who is to restore the mistakes of the first Israel, and become the second chosen people.</p>
<p>In the meantime, because this one hope and the will of salvation are left to be fulfilled before these people and before the humanity, Jesus as well as God has unfolded the dispensation to attain the one will for which Jesus prayed on the cross. Now with who is this hope going to stop being a mere hope? You must realize that the stopping point is you who are the second Israel today.</p>
<p>We of today should restore the collapsed Israel that was to appear representing the 4,000-year-old history into a restored Israel, and the Israel that was rejecting Jesus into an Israel that welcomes Jesus. Although the Israel that proscribed Jesus who had represented God&#8217;s shimjung has collapsed, only when we who are the second Israel today can undo the ill feeling derived from the unjust treatment in place of God, will we be able to receive the returning Lord. Heaven is demanding this.</p>
<p>What then would be the greatest request directed to the faithful believers in the final days? Who would be the person that can receive the returning Messiah? It will be the son or daughter who feels and experiences the internal conditions of that throbbing heart of Jesus who bore fretful a shimjung. Only when such sons and daughters come into being on this earth can Jesus Christ&#8217;s han be resolved and God&#8217;s grief and resentment liquidated. Only then, you should realize, can humankind receive a single day of bliss.</p>
<p>Although Jesus regained the single day of resurrection, and he met, even after the resurrection, with the disciples who had proscribed, he did not rejoice. Even when Mary Magdalene, after the resurrection, tried to grab Jesus as she met him, he told her not to do so.</p>
<p>Though it was one blissful day, and one joyful moment, because they were ignorant of that background fact of historical sadness linked together, they were not able to establish one condition of bliss before Jesus for him. By understanding this, and by transcending Mary&#8217;s shimjung who tried to grab Jesus after the resurrection, you should fathom Jesus&#8217; internal shimjung and see through his heart. By doing so, you should cultivate the qualification of being a victor who, after developing the qualification of being one central character, takes Heaven and earth upon his shoulder. You should become the people who possess God&#8217;s shimjung and Jesus Christ&#8217;s shimjung, which can tread upon any kind of Satan in the human world and step forward before Heaven.</p>
<p>Since Jesus offered the sacrifice of blood to fulfill the mandate of Abel&#8217;s blood in history, what will we have to do after that? Without putting an end to the fact that Jesus shed blood, by repossessing our minds and bodies as the blood of God&#8217;s living beings, we must become the qualified people having the heavenly shimjung that can work through that blood.</p>
<p>You should understand Jesus&#8217; shimjung which bore the forgiving heart again, upon being faced with those who had proscribed. You should understand the shimjung that, when the disciples who had come forth with a determination to pin the faith upon each other&#8217;s sleeve and to go the road of life and death, being unified whether to die or to live, came forward proscribing him, treated them with a magnanimity right then and there and forgave them, rather than cursing, even if he himself had to go through the hill of death instead. You also should be able to feel Jesus&#8217; shimjung who, rather than ascending to Heaven directly in solitude with a heart of bliss after resurrecting, leaving behind all the disciples who proscribed him, came to see the disciples who had rejected him.</p>
<h3 align="center">The Starting Point of Dissolution<br />
of Historical Anguish of Resentment</h3>
<p>From where then should the dissolution of historical anguish of resentment start today? You should realize that it starts from the point where you console Jesus in his sorrowful shimjung and make him into a joyful shimjung. If there is a person who grieves on the earth today, you should become the ones who can grab him and feel sad.</p>
<p>As you come to look at the Christians scattered throughout the world who are in the position of the chosen, second Israel on the earth, you should realize that the heartrending situation of Jesus Christ, who, by winning the hearts of the chosen Israel again and building the God&#8217;s altar, had to offer a living sacrifice, remains being congested as the historical won han. Further, you should become the people who feel and experience the situation of Jesus Christ who became the protector of these people after mobilizing the second Israel who is scattered throughout the world today, who became the representative fighter for these people, and who battled with Satan for these people. Only when you become believers who feel and experience shimjung of this kind, can you inherit Jesus Christ&#8217;s mission.</p>
<p>By desperately defending the footsteps of Jesus Christ who stepped forth after giving up everything, you should become the people who can beat off Satan&#8217;s temptation, similar to that Jesus received in the wilderness, traps similar to that concerning what are Caesar&#8217;s or the spear hacking of the Roman soldiers, and reap the victory. There should have been one comrade who would fulfill the mission like this. At the same time there should have been one family, one tribe, one society, one nation and one world that could attend Jesus. Where were they?</p>
<p>Today, we should be united. The time has come when we have to climb, stepping over denominational divisions, and must unite in place of God&#8217;s shimjung. The time has arrived when you have to possess the substantial entity of Jesus Christ after passing through the words. The substantial entity of Jesus Christ was based on the foundation of the words of the Old Testament. Because the Israelite people did not know that Jesus was the gate of the substantial entity to be passed through, you should know that their foundation folded. Further, you should be aware that the era in which you must pass with the substantial entity of Jesus Christ is approaching, having exceeded the era when you pass through with the words of the New and Old Testaments.</p>
<p>What was the source of Eden&#8217;s won han? Although the fact that the words got lost surely served the purpose of being the condition of won han, the greater won han was the fact that the substantial entity was lost. Who then is going to climb, stepping onto the words, and open the gate for the passage through the substantial being? This is the problem. Since there is no gate, you must understand that today we carry the mission to become the stone of this gate and build this gate.</p>
<p>God does not attach importance only to the words. More than the Old and New Testaments, namely, the words of the Holy Bible that hundreds of millions of people are reading, the greater importance is given to the one son who passed through these words. What kind of man is that son? He is not a man who knows the words intellectually, but a man who knows by heart and body. The era of knowing intellectually has passed.</p>
<p>The time when the substantial sacrificial offering that knows the words by heart and body and can fight against Satan, even by himself, representing God is approaching.</p>
<p>Jesus passed through thirty years of life for one human being to be able to represent the words, even if he or she has to sweep aside the words of the Old Testament to dissolve God&#8217;s fretful shimjung. It was a life course in which he toiled, by being unified with God&#8217;s shimjung, to build on earth this one gate that no one could separate, and a course of struggle for the sake of finding one person who has the qualification like this. When he came to be faced with the fate of having to die because there was no person like this, Jesus left the words of won han by saying, &#8220;I am the bridegroom, you are the brides.&#8221;</p>
<p>Who is going to dissolve this won han today? Although Jesus strove and toiled to dissolve God&#8217;s han, he died without fulfilling this task.</p>
<p>Now, today facing the end of the 6,000-year history, who will be the bride on this earth who, after inheriting that work of dispensation, will strive to carry out this mission and dissolve the han of God and Jesus? That bride will not be the person who only knows of the Old and New Testament, nor some theologian of today either.</p>
<p>Jesus Christ endured hidden sorrow and received rejection that no one knew of for thirty years for the sake of God. Jesus, who had fought Satan without eating for forty days, stepped forward to embrace again the disciples who betrayed him, even after they had pledged to die together when it was time to die and to live together when it was time to live. It would not have occurred to humans to wish to see him even in dreams, but Jesus visited again to see the disciples after the resurrection. Such was Jesus Christ who represented God&#8217;s shimjung in this manner. You should not attempt to sell him away.</p>
<p>Where is the second Israel, the Christians, who are to represent him and are now scattered throughout the world, headed? Since all of the Sadducees and Pharisees, who had been setting up denominations, ended up not accepting Jesus, you of today should become the people who rise, and go beyond such denominational divisions.</p>
<h3 align="center">Let&#8217;s Be the True Son and Daughter<br />
Who Dissolve God&#8217;s Han</h3>
<p>You should become a substantial sacrificial being who rises, stepping beyond such denominations for the Father&#8217;s words, like the way God received Jesus&#8217; sacrificial offering. Despite it being time for a substantial entity of living sacrifice, unified with the shimjung of Jesus and God, whose hearts are contiguous to each other, to emerge above the denomination that represented this people of the nation, this people of the nation and humanity today are asleep.</p>
<p>The world has taken shape through the movement of a heart. History has unfolded through Heaven&#8217;s shimjung and Jesus&#8217; blood and flesh. So, today, you should realize that the one substantial entity that can bring forth fruit now is you yourselves.</p>
<p>Only when you become a reciprocating partner who has Jesus Christ&#8217;s fretful shimjung and realize that, can you remain as the third Israel. We can only become the forefathers of the third Israel when we have this kind of determination today. We will also become the children of original nature of the so-called Heaven on earth, namely, the Garden of Eden. Only when you go through all pain that is historical, by being equipped with a substantial entity of the grace of resurrection, and become able to step forth looking for Heaven by shaking free from periodical won han, you can then be found and raised as God&#8217;s son and daughter. Like the way Jesus&#8217; life of thirty years emerged as the substantial entity of sacrifice for God&#8217;s shimjung of 4,000-year history, today we too should become God&#8217;s children who can move if the Heaven moves and rest if it rests, representing God&#8217;s shimjung who has unfolded the restorational dispensation for 6,000 years and Jesus Christ&#8217;s shimjung.</p>
<p>By feeling sorrow then upon reminiscing over the history of 6,000 years, by feeling sad looking at the previously distrustful Israel, and by being concerned bearing the mission to build the garden of repose of the third Israel in the future, we should become sons and daughters who can vow before Heaven by saying, &#8220;I will bear this responsibility all by myself,&#8221; despite whether anyone is going or not going. What is more, we should fulfill the responsibility of a successor who can defend Jesus&#8217; footsteps to the last.</p>
<p>You should now understand what the words of New and Old Testament mean. By understanding what Jesus&#8217; shimjung is and how Jesus&#8217; heart is more than the words of New and Old Testament, in other words, by knowing the internal shimjung and the external heart&#8217;s movement of Jesus, when Heaven moves, you too should be able to move.</p>
<p>Only when you act in response to Heaven&#8217;s motion and rest, and offer yourselves as the sacrifice of victory before the Father for the heavenly principles, Jesus will dissolve the han on this earth. God too will be able to dissolve han on this earth, and all humankind and all creation, all can enjoy the glory of triumph before God in response to Him.</p>
<p>Please do not think that you are standing in this situation by accident. Please do not think that you have inherited the altar of an inevitable course for historical fate. Only now when you get up, stepping on the barrier of sorrow that Jesus built and crossed at the top of Golgotha, and go up from the garden of Gethsemane to the top of Golgotha and build an altar of triumph through offering the twelve disciples brought together as a living sacrifice, and become triumphant sons and daughters who can subjugate Satan and say, &#8220;Father, please receive the glory alone!&#8221; will you then be able to become victors who are qualified to be the brides before the Lord.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html" title="Permalink to Let&#8217;s Be the Person Who Has the Heart of Jesus Christ" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html" rel="prev"><span class="meta-nav">&laquo;</span> Let Us Climb over the Hill of Historical Misfortune</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html" rel="next">Let Us Be the People Who Attend God <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,156 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ON THE DAY OF RESURRECTION (SUMMARY OF SERMON) &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-816 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-816" class="post-816 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">ON THE DAY OF RESURRECTION (SUMMARY OF SERMON)</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:28:14+01:00"> <a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:28:28+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
April 17, 1957 (Easter)</h3>
<p style="text-align: center;"><em>Luke 23:50-56</em></p>
<p style="text-align: center;"><em><span class="text Luke-23-50"><sup class="versenum">50 </sup>Now there was a man named Joseph, a member of the Council, a good and upright man,</span> <span id="en-NIV-25987" class="text Luke-23-51"><sup class="versenum">51 </sup>who had not consented to their decision and action. He came from the Judean town of Arimathea, and he himself was waiting for the kingdom of God.</span> <span id="en-NIV-25988" class="text Luke-23-52"><sup class="versenum">52 </sup>Going to Pilate, he asked for Jesus body.</span> <span id="en-NIV-25989" class="text Luke-23-53"><sup class="versenum">53 </sup>Then he took it down, wrapped it in linen cloth and placed it in a tomb cut in the rock, one in which no one had yet been laid.</span> <span id="en-NIV-25990" class="text Luke-23-54"><sup class="versenum">54 </sup>It was Preparation Day, and the Sabbath was about to begin.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-25991" class="text Luke-23-55"><sup class="versenum">55 </sup>The women who had come with Jesus from Galilee followed Joseph and saw the tomb and how his body was laid in it.</span> <span id="en-NIV-25992" class="text Luke-23-56"><sup class="versenum">56 </sup>Then they went home and prepared spices and perfumes. But they rested on the Sabbath in obedience to the commandment.</span></em></p>
<p>The day of resurrection is the day that God has been longing for from the moment of man&#8217;s fall to the time of Jesus&#8217; coming. Moreover, the Jewish people, as well as the whole of humanity and all things, singularly long for the one day that they can be liberated from the state of the fall and resurrected; in other words, the day of resurrection. To put it another way, God has been yearning for the establishment of the day of substantial resurrection for 4,000 years, and Jesus also hoped to usher in the day of substantial resurrection.</p>
<p>However, because of the ignorance of the Israelite people, Jesus was hung on the cross, and as a result, he passed away without fulfilling the mission of substantial resurrection. Therefore, until today, after 2,000 years have passed, this day of substantial resurrection has remained as the hope of all humanity and all things.</p>
<p>How many people do you think there were who knew the historical fact that the entire responsibility and the universal mission of the 4,000 years during which God led the dispensation of restoration rested on Jesus? Was there even one person who realized the heart of Jesus, who had wishes centering not on himself, but wished to realize the historical and universal wishes of God? Was there even one person who knew Jesus&#8217; heart of hoping only for the day that all in Heaven and under Heaven could sing the song of resurrection before God? Jesus never forgot that wish for even one minute during the thirty years of his life and led a most distressful life. Although the Israelite people did not believe in Jesus because of their ignorance, Jesus sacrificed all of his life and walked his course to provide them with the historical and universal hope, the glory of resurrection. No one understood this fact.</p>
<p>If you do not understand how much Jesus has exerted himself and how many pains he has taken for this one hope, the resurrection, from the time of his birth to the time of his death, then the value of that resurrection of Jesus will have nothing to do with you. Furthermore, you will not be able to even offer gratitude for that grace of resurrection.</p>
<p>When Jesus looked upon ignorant humanity, he realized that because of their faithlessness, he would walk a difficult path from then on. Therefore, Jesus forgot all about his own difficulties and walked a path of hardships unknown to others, with a desperate and painful heart in an attempt to establish the time of resurrection before them. He hoped that the difficult path that humanity had to walk, the path of death, would ultimately not be passed down to succeeding generations, yet humanity did not understand this at all.</p>
<p>However, the friends that Jesus wanted were not friends of the kingdom in Heaven, but people on the earth. Yet why was it that rather than people, Heaven, became his friend? The Israelite people should have stood in the position of a friend who understands the heart of Jesus, but because they did not fulfill their obligation, Heaven had to take the position of friend, instead. You must understand this situation and become true people who represent the heart of Jesus, not in Heaven but on earth, realizing the hope of Jesus who wanted genuine friends on earth.</p>
<p>Because of the resurrection of Jesus, all things have been able to experience the joy of receiving a new master. Human beings could embark upon the path of a new beginning. Jesus could taste the joy of victory in the spiritual battle, and God, who has been accused by Satan for 4,000 years, has tasted the joy of being liberated from the accusations at least externally because of the resurrection of Jesus.</p>
<p>You have to understand that in this way, because of the resurrection of Jesus, joy flowed in and below Heaven. However, Jesus&#8217; bliss of victory toward Satan was something that he should have had during his life, not after he passed away. The delight of God due to the resurrection of Jesus should also have been joy over both internal and external victory over Satan. Consequently, because of the death on the cross, the greater joy that God, and all of humanity, is entitled to have, has been passed down as an unfulfilled hope until today. Accordingly, the mission rests upon you to return greater universal bliss to Heaven. Besides that, you must also be able to feel that joy.</p>
<p>The joy of the spiritual resurrection of Jesus could not become the joy that all things, human beings, Jesus and God should possess eternally, so that joy on the one hand was mingled with sorrow. It was joy of a lesser importance. Only when you establish this non-essential joy as the universal joy on this earth, and establish the joy as eternal joy that carries no trace of sorrow, can God rejoice in your resurrection, more than the joy He felt over the resurrection of Jesus.</p>
<p>Only by doing this, can you truly taste the bliss of God through the joy of Jesus&#8217; resurrection. Assuming this is the hope and duty of each of you, you must claim the hope that Jesus had toward the world as your own and claim the duty of Jesus as your own.</p>
<p>To do this, before you take delight in the day of resurrection, you must think about the toilsome course of Jesus and the 4,000-year long toilsome course of God. By walking this path of tribulation on your own, you should lead a life of faith that can realize the hope that remains before God and return eternal joy to God.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html" title="Permalink to ON THE DAY OF RESURRECTION (SUMMARY OF SERMON)" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME THE ELITE TROOPS OF HEAVEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html" rel="next">LET THE SLEEPING WORLD AWAKEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,202 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>The Meaning of the Trinity &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/the-meaning-of-the-trinity.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-890 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-890" class="post-890 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">The Meaning of the Trinity</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T15:34:01+01:00"> <a href="/blog/2018/06/05/the-meaning-of-the-trinity.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T15:34:01+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-meaning-of-the-trinity.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 align="center">Former Church Headquarters<br />
Seoul, Korea<br />
January 3, 1958</h3>
<p>I formed trinities, but you probably do not really understand their heavenly value. You understand the meaning of the word &#8220;restoration&#8221; through the Divine Principle. What are you going to restore? What did Jesus have to restore on the earth? What was the central responsibility of Jesus in the dispensation of restoration? It was restoring the number which was lost in Adam&#8217;s family. Jesus came to the earth with the mission to restore this.</p>
<h3 align="center">The Meaning of the Number Which Appeared<br />
in the History of the Dispensation of Restoration</h3>
<p>In Adam&#8217;s family there were three sons and their spouses, eight people in all. God had to carry on the dispensation for 1,600 years to restore these eight members of the family. Moreover, He chose Noah and raised eight members of Noah&#8217;s family to continue the will of the dispensation for 120 years.</p>
<p>God raised Noah through the ten generations after Adam. When Noah could no longer serve the will because of the mistake of Ham, God prolonged His will ten more generations and came upon Abraham. However, because Abraham made another mistake while making the offering, it was extended two more generations. In this way, in the time of Jacob, one stage of the 2,000-year dispensation was finally concluded. You must be aware of this.</p>
<p>The twelve sons of Jacob symbolized the time from Adam and Noah. They symbolized the number that restores this, the number that horizontally restores the vertical history. Jacob had to raise twelve children who possessed this kind of significance.</p>
<p>As you understand the history of restoration through indemnity, on the day the 6,000-year history of the dispensation comes to a conclusion, all the contents of God&#8217;s dispensation during the 6,000 years will be manifested horizontally. If the 66 books of the Bible are the records of the 6,000-year history of the dispensation of restoration, then the realities inside the 66 biblical books will be unfolded at once on the earth. Consequently, there are those who are responsible for indemnifying the first chapter of Genesis. There are other people who are responsible for indemnifying the second chapter. In this manner, many people are in charge of different parts of the 66 books of the Bible.</p>
<p>What kind of time then is the Last Days? It is when the whole dispensation that emerged during the vertical historical course manifests itself all at once and becomes completed on the earth. The dispensation of the restoration of God must be completed on the earth. Therefore, the vertical history of the dispensation must manifest itself throughout the world on the horizontal sphere.</p>
<p>What does this show? On the whole, it shows the conflict between Cain and Abel inside Adam&#8217;s family. Historically, it shows the entire history of conflict. What kind of person must you be if you want to become a victor by completing the will of the dispensation in the midst of this? You must find and establish the central standard for which Jesus hoped when he came to the earth. Otherwise, there is no way you can stand as the victorious bride before Jesus, the bridegroom, in the Last Days.</p>
<p>Jesus lived thirty-three years. He resolved the three stages of the historical course through the thirty-year preparation period, the three-year period of practice, and the three-day period of perfection. Moreover, when we look at his three-year public life, we see that, when he started to serve the will, he passed through three great tests. In the Garden of Gethsemane, he prayed three times before he bore the cross. When he was offering the three prayers, he did not pray alone but brought along three disciples: Peter, James and John.</p>
<p>While Jesus was desperately praying with his life on the line, the three disciples should have stayed up the whole night and prayed with the same mind-set as Jesus. Instead, they fell asleep. Therefore, their bond with Jesus was cut off. This is where heavenly sorrow was left behind. You have to understand this.</p>
<p>What then is the mission of each of us? We must make a breakthrough in our fate of restoration. What must we do? We must become Peter, James and John in the Garden of Gethsemane. Someone must cope with the responsibility. You have to keep in mind that you are in the position to take charge of this responsibility.</p>
<h3 align="center">God Is Trying to Establish the Will<br />
on the Unchanging Foundation</h3>
<p>The sorrow of Jesus is that the twelve disciples did not receive his will. The three disciples, who represented the twelve, did not understand Jesus&#8217; heart. You have to understand that Jesus&#8217; distress as he was facing death still remains today as a source of grief.</p>
<p>What then must you do today? You must become Peter, James and John. Based on unity before the Lord, you must form a model no one can divide. Only then can you finally stand qualified before the sorrowful heart of Jesus Christ, who was praying in the Garden of Gethsemane. Because we seek to restore this will, we must create this structure of trinities.</p>
<p>Why did Jesus bring the three disciples along? In respect to Adam&#8217;s family, Jesus represented Adam. His three disciples represented the three sons of Adam. Peter, James and John represented Cain, Abel and Seth. Jesus came to the earth, found three disciples and carried on the mission of restoring the form of the eight members of Adam&#8217;s and Noah&#8217;s families. He was to find a spouse and create a family with eight members, yet he died a bachelor without accomplishing that will.</p>
<p>Therefore, he has been toiling for 2,000 years with the idea of the bride and bridegroom left unfulfilled. From that time to the present, the last will of the dispensation on earth is to establish this basic standard on earth. In other words, the standard of the three sons centering on Adam in Adam&#8217;s family must be established.</p>
<p>In our church today, we have formed trinities with three men and three women. The reason is that those of us who must attend the Lord in the future need a model to represent the couple of Adam and Eve, the three sons and the three daughters-in-law in Adam&#8217;s family.</p>
<p>Therefore, if these three people do not become one, it might be shattered again. The three men especially must become one. Dead or alive, you must become one in spirit and body. In this way, you must build one subjective form that transcends time, a foundation that is not constrained by the limits of time. You have to understand that otherwise there is no way you can proudly stand before the Lord who is to come again.</p>
<p>If three people become one and make the foundation that can represent the will, if you form a trinity determined to remain unchanging even if Heaven changes, then on this foundation, God will accomplish His will.</p>
<p>I have formed trinities, centering on you, to fulfill this. In forming the trinities, ten of you must become united centering on three trinities. The reason is that the trinity represents the three disciples who prayed with the Lord in the Garden of Gethsemane. At the same time, it is the basic form that establishes the form of the three sons centering on Adam. Moreover, the meaning behind forming a group based on the trinities is that this vertically represents the ten generations from Adam to Noah. Because the leader of the group has the responsibility of two people, they can be seen as having completed the form of twelve people.</p>
<p>This is the form that can represent the twelve generations from Noah to Jacob. On the historical sphere and on the vertical sphere, they can represent ten and twelve generations. Because the horizontal twelve forms that can represent the 2,000 years of vertical history have been completed, as long as people who represent the twelve sons of Jacob become one, the family of Noah, which sought the purpose of God&#8217;s dispensation, and the family of Jacob can both be restored. In this manner, three groups combine to form one larger group. This larger group represents the number thirty-six, thirty-six people.</p>
<p>This represents the 12 sons of Jacob, the 12 tribes of Moses and the 12 apostles of Jesus. The number 36 symbolizes the combination of the representatives of the 6,000 year history.</p>
<p>This is the reason that if 36 men become one, we can complete the vertical and horizontal forms of the central figures God tried to find throughout the 6,000-year course of the dispensation. This important mission and responsibility rest with the 36 people. There is great significance in this.</p>
<p>If 36 men and 36 women join, they become 72 people. There were 70 followers centering on Jesus, 70 elders centering on Moses, and 70 members of Jacob&#8217;s family. Accordingly, if Jesus and his spouse and the 70 followers join, they number 72 people. The mission to match this number of Heaven and earth lies with us. We must climb over this hill.</p>
<h3 align="center">The Course of Faith in Which<br />
We must Be Tested More than Three Times</h3>
<p>The three people that belong to the trinity must become one in heart. If not, you cannot enter Heaven. The idea of unification begins from this point. If three people cannot become one in heart, they cannot enter Heaven. They cannot even go past the door. They cannot even catch sight of Heaven. Using the united three people as one unit, twelve people must become one in heart and unite. If the three groups come together to form a larger group, and the thirty-six people in this larger group become united, Satan will become powerless. No one can break it apart.</p>
<p>Even in the world, if three people come together, there is nothing they cannot do. In our church, eight members must move. No matter how much persecution the church might receive, if the leader and his wife and three men and three women, all together, eight members, become one, no one can break it apart. This is an ironclad rule. I have made the trinities because each of us has the mission to create this form of restoration.</p>
<p>Heaven&#8217;s work is also performed in this way. God does not work by raising one person. After raising more than three people, He strikes two. When the works of grace begin in Korea in the Last Days, God will base them upon this principle.</p>
<p>Heaven always raises three people and picks one person out to use him. Is not this the way the situation in Korea is unfolding? In the Last Days, there will emerge people who are like Peter, James and John, who are to fulfill the mission of the three disciples. If one is absent, the remaining two can easily be dismantled. However, if three become one, it cannot be shattered. This is the main reason spiritually-open people are easily shattered today.</p>
<p>We must eradicate Satan. To alleviate the grief of God, we must become united thoroughly, down to the new members. Satan cannot bear it. In the historical formation, this will match the operating number of Heaven and earth. The four directions come into being centering on one point: there are east, west, south, north. There are four seasons of spring, summer, fall and winter. If we divide the four directions into twelve directions again, then there will be three directions in the east, three in the south, three in the north, and three in the west. If the number twelve is established centering on Jesus, then we can complete the shape of the four directions of east, west, south and north as well as spring, summer, fall and winter.</p>
<p>Looking at it centering on Jesus, Peter, James and John symbolize the spring. They represent January, February and March. If they had passed through the twelve months and drawn an even circle centering on Jesus on one track, Jesus would not have died.</p>
<p>Behind the three disciples, corresponding to the spring, are October, November and December. This shows that there is space for Satan to invade. This is the ground for the three great tests.</p>
<p>When ten people try to become one, there will always be three people who interfere. There will be a group of people who hate and poke for no reason. Accordingly, you must be tested at least three times. Because this kind of phenomenon takes place in the Last Days, there will be this kind of test and trial in an individual&#8217;s faith. There will be this kind of test when one develops from individual faith to the family unit. When moving from the society to the nation and from the nation to the world, there will also be these three great tests. Therefore, in the worldwide Last Days today, humanity must step over the three tests of Heaven and Satan. These are the First, Second and Third World Wars. The same is true for individuals.</p>
<p>Today we each have the responsibility to develop our standard so that it will match this essential, central form. Even in the spirit world, there are 24 elders for spiritual beings and countless spirit men centered on the 12 apostles. When we examine the movement of the subdivisions of the seasons on earth, indeed in a year there are also 4 seasons, 12 months and the 24 solar terms. There are 3 months in each season. Similarly, Heaven and earth are revolving according to the laws of movement, but human beings are revolving in the opposite direction. This is the fall. Jesus came to the earth to fulfill this mission because he had the responsibility to rectify this. The people of faith today must also fulfill this mission. Because the people of faith have this mission, the history of Christianity shows that it also passed through the form of 3 stages.</p>
<p>For example, Protestantism came out of Catholicism. A new religion must come forth from Protestantism. When we examine the division of denominations, 3 denominations divided into 12, and they again expanded into 36 denominations. They will divide until they reach the number 360. You have to understand that when this takes place it is the Last Days.</p>
<p>Moreover, when we look at nations, the world is divided into three blocs centering on the three great nations. This is passing through and crossing over the end of history. This is not only true for the democratic camp; it is also true for the communist camp. It is divided into three blocs too.</p>
<h3 align="center">The Christian View of Ethics</h3>
<p>When we look at the way Christianity is divided into three denominations and is again divided into many more denominations, the most principled bridge at the present position is uniting the minds of twelve people centering on the trinity. The time has come when this work has to be done.</p>
<p>What did Jesus offer through the 33 years of his life? For 33 years, Jesus poured out all of his heart and energy and exerted himself to become the hero who can unite the hearts of 12 people.</p>
<p>Who then are the people qualified to alleviate the grief of Jesus now? It is the bride who can solve this by understanding the essence of what Jesus was trying to do. Obtaining the qualifications of this bride is the way of the truth in the Last Days. The course of the truth is becoming one in heart with more than twelve people. God cannot directly reveal this kind of principle. He simply taught without elaboration, &#8220;You must believe and worship Me without questioning; You must strike your body to comply with the truth; you must unconditionally serve and sacrifice.&#8221; This is the foundation for the Christian view of ethics.</p>
<p>The reason is that one must be able to wish blessing even upon one&#8217;s enemies. Only when this is done can one step over and rise above those enemies. Similarly, Christianity has set the standard of truth by which it can rise from January to December and rise above it.</p>
<p>People who have been searching for the truth have been ignorant of this until now. They only knew that persistence with patience was the way of the truth, so even on the path of suffering, they unconditionally obeyed, sacrificed and served. Beginning from January, they united with the hearts of all the other people and soon they could pass through all of the twelve months.</p>
<p>There are people who were born with the forms of the spring, summer, autumn and winter. Because of the principles of the heavenly way that require people to pass through many different forms of people, human beings whose fate it is to move forward on this foundation must begin in January. Passing through February and March, they must pass through the autumn and winter seasons. They then must pass through the judgment.</p>
<p>Consequently, the Christian truth is one of sacrifice and service. You have to understand that under this principle of crossing over infinite numbers of Heaven and earth, God has introduced this content to humankind.</p>
<p>If we have come searching for the direction of Heaven and earth with the right frame of mind, we must not see those opposing forces as our enemies. They are fulfilling the mission of driving you toward the right path. If you were left alone, you would deviate to the side path. You have to become the people who can welcome Satan. God has hope even for Satan.</p>
<p>Although today the Unification Church is being persecuted, I am grateful for it. If we did not receive opposition, where would the Unification Church be diverted to? Even when constructing a building, one must dig deep and lay down concrete. If one digs shallow and puts in the concrete, one cannot build a strong building. Because Jesus understood this situation, he could join his hands and pray for the sake of Satan.</p>
<p>Therefore, this year&#8217;s direction from Heaven to you is to train you rigorously. This year is a year of training, a year of hardships. It must become a year when you can courageously overcome suffering, and you must quickly find more than twelve people with whom you can become united in heart.</p>
<h3 align="center">The Life of Achieving Unity, Centering on the Trinity</h3>
<p>Those who can become members of Heaven on behalf of the ideology of Heaven will be great in number. Many billions of spirits are dwelling in the spirit world. The ideology that all of those spirits can raise their hands to welcome is the original ideology by which we must abide. You cannot enter Heaven if today ten people cannot become one on the earth.</p>
<p>From now on, let us become the historical representatives who can become united in heart with other people. Until now, God helped unite your hearts. God had the responsibility to serve you.</p>
<p>Knowing this principle, on this day of January 3, you must make an especially firm determination. When we change the trinity once every three months, you must become one with each other, regardless of with whom you are put together. You must think that it is a historical and fateful meeting: &#8220;Due to what karma in the long 6,000-year history do I meet you now?&#8221; In this manner, three people must become one, ten people must become one, and thirty-six and seventy people must become one.</p>
<p>Therefore, this organization must not deviate from the principles and rules. Organizations cannot exist outside rules. They are the life of an organization. The center of Heaven and earth and the center of our minds must become one and revolve according to the numbers of this form of Heaven and earth. We must revolve according to the laws of the revolution of the world of creation.</p>
<p>Each day our hearts must revolve around the heavenly principles. For a year or for a lifetime, we must revolve centering on the heavenly principles.</p>
<p>When we wake up in the morning, for whom must we circle around? Are we going to circle for the sake of the heavenly principles? Moreover, when leaving, you must ask yourself, &#8220;For whom did I move? Was it for the sake of the heavenly principles?&#8221; The foundation for that movement is the trinity and the trinity group. Outside these, there is no foundation of life. This is the reason that we formed the structure of the trinity anew this time. The question here is to what extent we think about the will of Heaven and act as if it were our life.</p>
<p>All the members of our church are equal and members of the same family. Therefore, all that is needed is that we set the condition of basic principles and become one according to the laws. From this year on, you must make a new determination and carry on a new movement.</p>
<p>We must begin an offensive. In this regard, you must march forward. The amazing fact is that as you lay down this kind of foundation through your actual life in the heavenly principles, the shape of one universal unit begins, centering on you. This is your source of joy. Please think that as you walk the path of the will during the 6,000- year history, you are the most tragic actor. We are trying to accomplish tasks no one else can do. We are trying to walk the path that others cannot walk. Satan cannot bear this.</p>
<blockquote><p>We have put together the manuscript kept inside the office for the compilation of history, but the number is not written on it.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-meaning-of-the-trinity.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/the-meaning-of-the-trinity.html" title="Permalink to The Meaning of the Trinity" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US CELEBRATE CHRISTMAS ON BEHALF OF HEAVEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/heaven-is-calling-us.html" rel="next">Heaven Is Calling Us <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,249 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>THE PATH, ITS PURPOSE AND ITS VALUE &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-858 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-858" class="post-858 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">THE PATH, ITS PURPOSE AND ITS VALUE</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:18:04+01:00"> <a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:18:14+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">September 29, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Psalms 23:1-6 </em></p>
<div class="poetry" style="text-align: center;">
<p class="line"><em><span class="text Ps-23-1"><sup class="versenum">1 </sup>The <span class="small-caps">Lord</span> is my shepherd, I lack nothing.</span></em><br />
<em><span class="indent-1"><span id="en-NIV-14238" class="text Ps-23-2"><sup class="versenum">2 </sup><span class="indent-1-breaks">    </span>He makes me lie down in green pastures,</span></span></em><br />
<em><span class="text Ps-23-2">he leads me beside quiet waters,</span></em><br />
<em><span class="indent-1"><span id="en-NIV-14239" class="text Ps-23-3"><sup class="versenum">3 </sup><span class="indent-1-breaks">    </span>he refreshes my soul.</span></span></em><br />
<em><span class="text Ps-23-3">He guides me along the right paths</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-3">for his names sake.</span></span></em><br />
<em><span id="en-NIV-14240" class="text Ps-23-4"><sup class="versenum">4 </sup>Even though I walk</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-4">through the darkest valley,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-14240a" data-link="[&lt;a href=&quot;#fen-NIV-14240a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Psalms+23:1-6#fen-NIV-14240a">a</a>]</sup></span></span></em><br />
<em><span class="text Ps-23-4">I will fear no evil,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-4">for you are with me;</span></span></em><br />
<em><span class="text Ps-23-4">your rod and your staff,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-4">they comfort me.</span></span></em></p>
</div>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span id="en-NIV-14241" class="text Ps-23-5"><sup class="versenum">5 </sup>You prepare a table before me</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-5">in the presence of my enemies.</span></span></em><br />
<em><span class="text Ps-23-5">You anoint my head with oil;</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-5">my cup overflows.</span></span></em><br />
<em><span id="en-NIV-14242" class="text Ps-23-6"><sup class="versenum">6 </sup>Surely your goodness and love will follow me</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-6">all the days of my life,</span></span></em><br />
<em><span class="text Ps-23-6">and I will dwell in the house of the <span class="small-caps">Lord</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Ps-23-6">forever.</span></span></em></p>
</div>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! We know that today is the day that all must come before You and cleanse their every aspect. We know that in the past week there were many things about us that were wrong in Your eyes. Therefore, Father of love, we sincerely wish that during this hour You will forgive all our inadequacies and allow us to have repentful hearts. By doing so, please guide this to be a moment when we can cleanse all of our wrong doings of the past week and unveil before You all the things that we have committed during our life course.</p>
<p>Father, please allow us to first feel the joy and bliss of having found the Father in this hour. Next, please allow us to give thanks for the Father&#8217;s grace. You made it possible for us to find our previously lost selves and to return the joy and glory of having found the Father. Beloved Father, we beseech You from the depths of our hearts to guide this hour to be a moment when we can sincerely rejoice and be grateful over the grace of the Father, who has led us to find the original self that the Father too has sought.</p>
<p>Before we seek and attend the Father within our hearts, there is no way we can realize the goal of our life or obtain the element of power with which we can fight against Satan. Therefore, Father, we sincerely wish that You can allow our center to be connected to You. Allow us to be the sons and daughters who can exert all of our strength for the sake of the will while our center remains unmoved.</p>
<p>Father, please look upon this nation with compassion. Please give blessing upon the countless altars which are gathered on behalf of these people. Since there are many children who are appealing to You out of desperation, Father, please be their friend and consoler. Beloved Father, we sincerely wish and desire for You to be the leader of all, to let them share in the eternal ideology of life, and for You to allow this to be a time when we can discuss the ideology of love.</p>
<p>Father, the sons and daughters who have gathered here prostrate themselves before the Father having unveiled themselves wholly. Please seek us with a loving and parental heart, and allow us to be equipped with the center of the eternally unchanging character. By achieving this, let us experience the Father&#8217;s heart and be the ones who can take responsibility for the will in the Father&#8217;s place. Beloved Father, we sincerely wish for You to allow us to become the children who can receive orders from the Father.</p>
<p>We have entrusted this hour only to You, so please govern it from beginning to end. Hoping that only the glory of victory will be allowed to descend upon all of our heads, beloved Father, we offer all these words in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech I want to share with you is &#8220;The Path, its Purpose and its Value.&#8221; I will speak to you briefly upon this topic.</p>
<p>Not only human beings, but all created things that exist on this earth have been seeking the one path. All of the created things we see have been working ceaselessly to realize their individual purposes. Human beings have been unconsciously seeking some central path during the long period of history. Accordingly, if the path you are walking at present is different from that central path, then you must find that central path.</p>
<h3 align="center">The Reason Fallen Men Could<br />
Not Comprehend the Purpose of Life</h3>
<p>For human beings, there is a path we must walk as individuals. At the same time, we also must walk a path as a group, a society, a nation and the world. Furthermore, you have to clearly understand that there is one path we must walk through the heavenly principles.</p>
<p>You might feel that you are living in this kind of reality today, and that even if you are the only one, this one self must walk toward the will of the original heavenly principles. Yet you will learn that while you proceed on that path, it is difficult to manage your responsibilities on your own.</p>
<p>If human beings can break out of this kind of situation, take responsibility for themselves for eternity and walk the path of which they can be eternally proud, then they will able to feel many new ideas and facts that others in history could not feel on the earth until now. However, you today probably feel that you are groping in the dark without knowing the destination of the path you are about to take. Similarly, from the fall until now, human beings have been wandering unaware on a path that does not have a purpose.</p>
<p>Seeking the one path, which has been pursued from the time of our ancestors in the past, did not come to a culmination with an individual. Individuals gathered to form families, families joined to form a society, societies came together to form nations, and nations came together to form a world. That world has also come together in search of a certain path it must take. You probably witness this clearly in your living environment.</p>
<p>When one of you tries to pursue an ideology of life, you will certainly have to pass through a path. That path is headed toward a certain point of conclusion which can connect you with the whole. Similarly, you will not be able to deny the fact that, until now, some people of the past have walked a complex path of conflict while heading toward the ideology of unification, which is the concluding point of that conflict.</p>
<p>On the day that the purpose of the conflict is fulfilled, as we become inseparable from that purpose, from a position of immutability, we will find the one great value that can penetrate from one to the whole. We can then finally arrive at the destination of the path humankind is walking on today.</p>
<p>Nonetheless, although each of you is pursuing this kind of universal value of the whole today, because there is no environment that will allow your mind and body to become one with it, conflicts are taking place in many directions. Therefore, only when our minds and bodies can develop a relationship of eternal oneness with the path which heads toward the heavenly principles can we behold that purpose and enjoy our present life. We can then cherish that value and rejoice within the ideology of life. Thus, you who are living in the environment of the end of the century today must reflect on your own initiative about the purpose of the path you are seeking and the distance which lies between you and that path.</p>
<p>Yet that path will come in many different forms. There will be paths that rely on religion; there will be paths that rely on science. In each field in which you find yourselves, politics, economics, philosophy, etc., there will be a different path each of you walk. Even if these paths are different from the eternal path of the whole, when their convergent destinations come together toward the unity that everyone can welcome, a desirable new path will emerge.</p>
<p>When you reflect upon whether you have found the eternal value that will allow you to embark upon a new path from the position you are in today, you will find that no one has yet found that kind of value and purpose. In other words, in religion, science, culture or any other field, we were not able to find the universal value that could establish our new ideology of life and form the power of new life. We were not able to set the one standard that can operate as the universal purpose itself.</p>
<p>Why are human beings still in a position of ignorance toward that kind of purpose and direction, not even aware of the purpose itself? The reason is that our minds and bodies have not been able to set the one standard that can bring them into oneness with the heavenly principles. In other words, before we human beings can set the one standard that can unite our minds and bodies with the heavenly principles, we cannot be in a relationship with the new ideology linked to the universal purpose. Moreover, no matter how much our mind and body become one, we cannot establish a place where we can rest in peace eternally and experience the ideology of unification.</p>
<p>You must be the ones who can connect themselves with the three- dimensional value of the one purpose. When you can center your minds and bodies on the one center that emerges as the ideology of the whole and as the power of life and you move centering on the spirit, you can finally fathom the whole value of God.</p>
<p>This course, which we are traveling through based on our minds and bodies today, is not merely the destination of some ideology. When it can transcend the mind and body to connect with the one subject who is dominating the eternal and all-encompassing value of the heavenly principles, our minds can finally find a resting place. Our bodies can dwell in it also.</p>
<p>Consequently, we human beings today have been seeking this kind of path through religion in an attempt to link the mind, body and the universal principles that stand divided. Furthermore, God has been seeking us through this path to save fallen humanity.</p>
<h3 align="center">The History of Humanity Moving<br />
Toward the Point of Unity</h3>
<p>Has scientific or religious truth pointed out the ultimate path that human beings were to travel originally? They have not been able to point the way. Until now, human beings have not been able to establish the one standard that can bring unity between mind and body and enable them to become one with the eternal heavenly principles or the absolute Deity, the Creator.</p>
<p>Therefore, you probably do not know with certainty yet which direction you are traveling toward and in which position you find yourself. You must understand that even if the Creator and the created things have some ideology, they have no relationship whatsoever apart from you. Therefore, you must prepare the one standard based upon which the highest ideology of the Creator and the creation can be manifested through you. Where the purpose of this ideology is realized, you can forget everything and rejoice. If you cannot prepare this kind of standard, you will not be able to break through the secular environment in your practical life. Therefore, in the course of your life, you must find the one being of purpose who can introduce this absolute value.</p>
<p>Many people today are prophesying that the present era is the Last Days. We also are well aware of this fact. We have arrived at the ultimate concluding era of history. Moreover, you must understand that all kinds of social customs and environments, natural phenomena like the weather and the seasons, etc. are being mobilized for the sake of fulfilling this one purpose.</p>
<p>Today, you will feel that you can never accomplish that purpose without the ideology that puts you in harmony with human principles. Moreover, you will also feel that you can never realize the value and purpose of the whole by relying on same processes on which countless people and many sages have relied until now.</p>
<p>If then there is something required of those of us who must stand firm in this kind of environment and position, what could that be? We have to free ourselves from the human principles of the past and reveal the one path which can link us eternally with the heavenly principles during this concluding period of human history. If you cannot achieve this, then your life course will begin and end in despair.</p>
<p>Because the purpose of history is to accomplish this kind of task, this immense universe began from an individual and is moving toward the purpose of the whole. In other words, it is moving toward the point of unity. This point of unity will surely appear in the concluding era of history. Because this point of unity cannot forge an eternal bond outside the one center, it will transcend humanistic standards and appear as the purpose of all power in connection with the heavenly principles or the purpose of the whole. This is the new revolution that will emerge during the concluding period of history.</p>
<h3 align="center">The Fundamental Problem of Human Beings<br />
and the Solution</h3>
<p>If we can set the conditions for the new revolution in the twentieth century cultural sphere in which we live or in each field you are in, then that condition can connect the human principles and the heavenly principles. Accordingly, if in your life course you cannot set this kind of revolutionary condition as the central purpose of your life, then you will not be able to forge bonds with the whole purpose of human beings.</p>
<p>Consequently, everything has come to the end today. Politics, philosophy and religion have all come to the very end. Until now religions have been struggling to fulfill their missions, but they have not yet been able to introduce the one standard they should have ultimately established. This is also true for politics, philosophy and for any cultural course of history.</p>
<p>Nonetheless, now is the time that the whole universe must operate centering on the ideology of unification connected to the one purpose. As long as the Creator of the universe still exists, this will remain as the inevitable task. Until the connection is made with the ideology of the Creator, there is no way to make a breakthrough in any of the problems with the beliefs held until now. No cultural conditions revered until now can achieve it.</p>
<p>To put it another way, through the long historical course until now, human beings have tried to solve problems centering on their consciences and their bodies, but they could not completely solve them. In other words, solving this fundamental problem of human beings can never be accomplished with religion, philosophy or science, either those of the past or of the present.</p>
<p>Therefore, even modern people who are proud of the twentieth century scientific culture have to seek some new science that can discover a new religious ideology. In regard to philosophy, they must seek a philosophy of a new ideology that is not limited to philosophy itself. As for religion, they must seek a religion that possesses a new idea that all the religions hitherto have not possessed. That time will arrive at your doorstep without fail.</p>
<p>Consequently, no matter what field you are working in, your heart will not find peace even for a moment. Moreover, you have not set the conditions in your living environment upon which basis you can confidently claim that you have lived for the sake of the whole purpose, the conditions of pride with which you can confidently go before God. This is the reason God did not have any other choice but to lament over people who have been leading this kind of life. This is the reason the course of history had to pass through a miserable course of conflict.</p>
<p>Because you have not arrived at your destination in the reality in which you are living, you have to battle everywhere you dwell. However, you have not been able to win victory in that environment of conflict to proudly step before the Father and other people, as well as before all things of creation. If you cannot deny that you are living amid lamentation, sorrow and grudges, then you should realize that before you remains a path through which you must still travel.</p>
<p>If God exists and He carries on the dispensation by putting forth heavenly principles, there must be one destination that can serve as both the purposes of God and humanity. There must be a point of unity where our minds and bodies can become one on earth. You must seek this.</p>
<p>You probably have certain desires, but those desires will not be limited to the individual. Those desires want to transcend the individual and the world to reach a place we cannot even imagine. When we ask the question whether that desire, revealed through our minds today, has any relationship with an ideology, the answer is that it does. The present living environment has formed a relationship with the ideology of the universe.</p>
<p>You probably feel that you cannot live fully content just centering on your individual self, based on the habits you have developed until now within the sphere of your awareness. This is not the original intent for human beings, and it is not the ideal purpose of pursuing the laws of human principles. Until now humans have transcended the laws of human principles and the laws of heavenly principles and have been demanding the one central figure who rules over all created things with the unifying ideology. Having arrived at today, this is how our mind-set and lifestyle are and how all the things are that we behold in our path. If your individual life ends on the individual level, then you will not be able to manifest your value before the whole. This is because although human beings are living in practical reality, it is the desire of the original mind that they not live alone but that the whole will live together. Moreover, although human beings have desires, they must not be only for their own sake, but for the sake of the whole.</p>
<h3 align="center">The Unifying Ideology and the Hero<br />
Who must Reach the Purpose of Life</h3>
<p>What are you walking toward today? Are you walking for your own individual sake? Are you walking to link with society? Are you walking to link with the nation? Or are you walking to link with the world? You must walk the steps which can be connected with the world.</p>
<p>For this reason, in the Last Days, which usher in the concluding period of history, everything must move in the direction where they can be linked to the world ideology. This is true for the business that we make plans for, for our lives and for our ideology.</p>
<p>However, the lives we have lived until now could not link with and introduce that kind of ideology. This kind of environment was not created in the reality in which we live. Furthermore, even if we possess what we consider to be most precious, we do not stand in the position to satisfy our eternal ideals. Therefore, we must understand that, for us today, there remains more course that we must cross.</p>
<p>Countless people who have examined this era with a historical perspective say that these are the Last Days. If, in these Last Days, humanistic demands come to an end, humans will lapse into despair. Accordingly, at such times, humanistic demands must forge a relationship with human history and there must emerge one center that can introduce the one purpose. When this is fulfilled, when that center emerges after linking with each of you and connecting with the new heavenly principles and new universal history, the ideology which will enable you to take a new path will finally be found.</p>
<p>Now you must re-examine the environment in which you live. You must reflect upon your environment. Are there people among you who are doing academic research? You are not to limit yourself to academics. Are there any who are researching religion? You are not to limit yourself to religion. You are to transcend them and endlessly pursue greater things on a new level.</p>
<p>This must be able to bond with everything from any direction. From any direction it must be able to emerge as the one with public value. In any direction it must be able to operate as the center of life or ideology. In this way it must be able to manifest direct power in the sphere of actual life. If it cannot manifest this kind of power, there is no way to recognize that there is a being who provides guidance to the all-encompassing destination of life for which humans long and seek.</p>
<p>When it rains according to natural phenomena, that rain flows down until it reaches the ocean. It passes through rivers to enter the ocean. The water that entered the ocean becomes one there and produces a new work of harmony. Ocean water evaporates and then descends upon the earth again as rain. It then allows all plants and trees to grow.</p>
<p>Similarly, it is the law of Heaven that any thing unites with the whole by passing through a certain path. It does not remain stagnant; it transcends itself to move in search of a new value.</p>
<h3 align="center">The Accomplishment of the Whole Purpose<br />
and Individual Efforts</h3>
<p>When we look back upon the history of humanity, we find that individuals have joined to form a whole. They gathered centering on one doctrine. We can understand that now two streams are surfacing. However, when the two streams join as one, we are not to feel content only in that joining. We should move toward some unifying destination. We should manifest something that can reach the whole by forming the environment of new value that is different from the old shape of the past.</p>
<p>Therefore, even if you have the highest skills in your own field today, you must not stop at just having those skills. Because you are in the process of seeking the whole purpose, you are to step over that and rise higher to make another step.</p>
<p>Consequently, no matter what you do, based on science now, you cannot produce the works of harmony which can link with the laws of the heavenly principles. Based on any philosophy of the past or present, you cannot produce a new work of harmony or create a world in which all things can rejoice and be grateful. Yet because human beings are in a position to pursue the center of the universal purpose, we must bring this world together with something that we can call the best. We must establish the new religious ideology that can forge relations with the universe.</p>
<p>Philosophers should understand that not everything can be brought to a conclusion with philosophy. Although human principles have been developed based on philosophy until now, because this is not enough, you must seek a religion that can coalesce with the heavenly principles. The same thing is true for science. Because science today cannot work for the sake of peace for humanity or bring happiness in place of the whole purpose, science must also forge a bond with the one purpose of the whole. If those relations are not formed, then this world cannot be united as one. In other words, if one cannot find and connect to the center that seeks to form one world, the whole purpose of this universe, then the value of that purpose will not have anything to do with that person.</p>
<p>Moreover, if everything ends in such a position, we will not be able to show that God exists. This is because if God exists, then He should be able to replace that purpose of whole value with an ideology on the world level in every field. He should be able to prove the purpose that each individual is pursuing. Therefore, when some great scientists, philosophers or religious men all center on this whole purpose, they will begin to come together.</p>
<p>However, these kinds of problems cannot be solved with the religions and philosophies of the present or the past. Human beings can act on behalf of the whole purpose, no matter who they are. They must one day receive the one center that can represent the value of the whole. Only then can the one standard, which can link with the heavenly principles through each person&#8217;s mind and body, emerge as the purpose of a certain path on the world level. It will be able to acknowledge the relative value. Through the rise of new laws of harmony in the path that human beings are traveling with respect to purpose and value, the glory of God will begin to be revealed.</p>
<p>Originally, when God was creating Adam and Eve, He created them with this kind of ideology. God who is infinite and absolute created Adam and Eve so they could experience and enjoy that infiniteness and absoluteness in every aspect of their lives.</p>
<p>Therefore, we human beings today must feel the infinite and absolute God through the course of restoration. In the practical realm of finiteness we must establish the infinite and absolute value that we felt in the world of the heart as the element of ideal power. When we do that, the harmony of Heaven and earth can finally begin to take place. When our minds and bodies dwell before the infinite and absolute God and live with Him, we can feel the purpose of the Creator as our own. When we feel joy in the place of dwelling, its value will emerge not relatively but in three dimensions. We must understand that the glory of God finally begins there.</p>
<p>Nonetheless, human beings today are not able to overcome this problem. Instead, they are filled with lamentation, despair and fear. When philosophy, religion and science exceed that limit, they will all sink into pitch darkness. Therefore, in that position, one must without fail build a relationship with some eternal and absolute force. The same holds true for philosophy, religion and science. Therefore, you must understand that all things are moving toward the point of unity. You have to understand that this trend does not just include the history leading up to the present; it also includes all things that exist in this world.</p>
<h3 align="center">The Place Where God&#8217;s Glory Begins</h3>
<p>We have to find the one base of relationship wherein the path we are traveling will not just stop with human principles, but will make a connection with the laws of the heavenly principles. Even if you might think that you are walking toward the purpose of the world, you are probably demanding to link not only with your own mind but with some absolute mind. You are probably wishing that you could feel the highest universal Being that transcends human relations.</p>
<p>This is the reason that people today say religion is precious. Religion is not just to remain in a certain state of mind that connects only with one&#8217;s own mind. It recognizes the real existence of a Deity who has transcended this and is pursuing the unlimited and absolute value that exists inside the Deity. Therefore, when our minds form a relationship with this infinite heart of heavenly principles, amazing value will surface.</p>
<p>What then should you do today, in the days that countless people prophesy are the Last Days? When you have pioneered the path that can represent the world ideology there, you can absorb everything of the past and put it forth before all things. Moreover, you are to establish your environment as the environment that can manifest itself as the substitute for the value of the whole.</p>
<p>How can you accomplish these tasks? You cannot do this with any of the academic fields, religions or philosophies of the past or present. This can be determined only through our hearts. Through each one&#8217;s heart and through the heart of God, this culminating point must manifest itself as the unified purpose. When it manifests itself, it must establish the value of life. You must keep in mind that when this is done, the glory of God can finally be revealed.</p>
<p>What then have human beings been laboriously seeking until now? They have been struggling to find the heart of the heavenly principles that can replace the human principles and connect our minds to that heart in oneness. Because the minds that have become one have secured a relationship with the absolute Heart, no one can carve that heart away. Therefore, in this way we have been searching until now for this Heart that cannot be invaded by any kind of ideology or assertion. Therefore, if you cannot find this, you will not be able to escape from sorrow and sadness.</p>
<p>You have to understand that such a forked path lies before us today. In accordance with the will of the dispensation that must find this, your mind must pursue the heart of a higher realm. By doing so, we must be able to demonstrate this as the eternal purpose in the sphere of our lives, the eternal purpose of all created things, and the substantial embodiment of eternal value. Furthermore, you should be able to show that you yourselves are the ones who possess this kind of value. You should be able to prove that you are the embodiment of the historical value. God&#8217;s glory will begin to reveal itself from the moment you become one and come out of a state of division.</p>
<p>Accordingly, in the same way that all created things, centered on God, move as one and not two purposes, your minds must not be limited to rejoicing in your own self during moments of happiness. You have to make the connection to have the value of the whole so that the whole can rejoice and be glad.</p>
<p>Similarly, you have to understand that you must walk the path which seeks to bring everyone&#8217;s hearts into oneness centering on your own heart. In other words, the right path is the one in which everyone can be in harmony and rejoice by making the connections with each other&#8217;s hearts.</p>
<h3 align="center">The Value of the Person Who Possesses True Love</h3>
<p>Until now, human beings have transcended history and possessed the laws of the unchanging heart. In other words, the original mind of humankind transcends time and remains unchanged both in the past and in the present. However, human beings have not been able to find the precious path on which people with unchanging hearts can travel.</p>
<p>Nonetheless, because my mind and your minds have become one today and established bonds with the universal whole value, you must, without fail, find the one point of unity that can link you with the heart of the heavenly principles. You have to understand that if you cannot find this, no matter what kind of idealism exists on the earth, it will be shattered.</p>
<p>Consequently, until now people have been searching for religion in an attempt to find this. Christianity emerged to take charge of this task. When Jesus, the center of Christianity, appeared on this earth, what did he bring with him? He came centering on love. You have to clearly realize how amazing a grace and gospel it is that Jesus established love as the uniting point that can bring together the hearts of humankind, unify humanity, and even unify the heavenly principles.</p>
<p>Consequently, this love which your hearts can enjoy and can move your hearts must, in these Last Days, passes through daily life and the world. Furthermore, it must reach the standard of manifesting itself as the one relationship of love with the heart of the heavenly principles. Moreover, if a religion has presented this kind of purpose in each field and has been gathering strength to make the move in that direction, then it will certainly require this kind of love.</p>
<p>What must you have to find that kind of love? It cannot be accomplished with the lifestyle, concepts, mindset and ideology we have had until now. You are to liquidate all of this and reflect about whether the heart of the heavenly principles exists within your minds. By doing so, you must liberate your heart and move it without limitation. You have to possess that kind of living environment. If you cannot do this, then you will never be able to possess the heart that can link with the heart of the heavenly principles.</p>
<p>If there is a person who can reach this state, though he is just an individual, as the person who has value connected with the whole universe, he will be able to stand as the central being who can digest all kinds of things any time. He will be able to easily manage that kind of mission. Accordingly, we have been leading our life of faith with this as our purpose.</p>
<p>However, if you cannot find this ultimate destination today, then for eternity you will not be able to free yourself from the eternal conflict on this earth, or from the history of lament, or from the history of sorrow. You have to keep this in mind.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html" title="Permalink to THE PATH, ITS PURPOSE AND ITS VALUE" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US JOIN IN THE PURSUIT OF THE HOMELAND</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html" rel="next">LET US BECOME THE BRIDES WHO RECLAIM WHAT WAS LOST TO JESUS <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,175 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>THE PERSON WHO IS TO REMAIN BEFORE GOD&#8217;S WILL &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-839 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-839" class="post-839 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">THE PERSON WHO IS TO REMAIN BEFORE GOD&#8217;S WILL</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:49:41+01:00"> <a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:49:41+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
July 7, 1957<br />
<em>Matthew 15:7-18</em></h3>
<p style="text-align: center;"><em><span id="en-NIV-23641" class="text Matt-15-7"><span class="woj"><sup class="versenum">7 </sup>You hypocrites! Isaiah was right when he prophesied about you:</span></span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span id="en-NIV-23642" class="text Matt-15-8"><span class="woj"><sup class="versenum">8 </sup>These people honor me with their lips,</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-15-8"><span class="woj">but their hearts are far from me.</span></span></span></em><br />
<em><span id="en-NIV-23643" class="text Matt-15-9"><span class="woj"><sup class="versenum">9 </sup>They worship me in vain;</span></span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-15-9"><span class="woj">their teachings are merely human rules.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23643a" data-link="[&lt;a href=&quot;#fen-NIV-23643a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+15:7-18#fen-NIV-23643a">a</a>]</sup></span></span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-23644" class="text Matt-15-10"><sup class="versenum">10 </sup>Jesus called the crowd to him and said, <span class="woj">“Listen and understand.</span></span> <span id="en-NIV-23645" class="text Matt-15-11"><span class="woj"><sup class="versenum">11 </sup>What goes into someones mouth does not defile them, but what comes out of their mouth, that is what defiles them.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23646" class="text Matt-15-12"><sup class="versenum">12 </sup>Then the disciples came to him and asked, “Do you know that the Pharisees were offended when they heard this?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23647" class="text Matt-15-13"><sup class="versenum">13 </sup>He replied, <span class="woj">“Every plant that my heavenly Father has not planted will be pulled up by the roots.</span></span> <span id="en-NIV-23648" class="text Matt-15-14"><span class="woj"><sup class="versenum">14 </sup>Leave them; they are blind guides.<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23648b" data-link="[&lt;a href=&quot;#fen-NIV-23648b&quot; title=&quot;See footnote b&quot;&gt;b&lt;/a&gt;]">[<a title="See footnote b" href="https://www.biblegateway.com/passage/?search=Matthew+15:7-18#fen-NIV-23648b">b</a>]</sup> If the blind lead the blind, both will fall into a pit.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23649" class="text Matt-15-15"><sup class="versenum">15 </sup>Peter said, “Explain the parable to us.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23650" class="text Matt-15-16"><span class="woj"><sup class="versenum">16 </sup>“Are you still so dull?”</span> Jesus asked them.</span> <span id="en-NIV-23651" class="text Matt-15-17"><span class="woj"><sup class="versenum">17 </sup>“Dont you see that whatever enters the mouth goes into the stomach and then out of the body?</span></span> <span id="en-NIV-23652" class="text Matt-15-18"><span class="woj"><sup class="versenum">18 </sup>But the things that come out of a persons mouth come from the heart, and these defile them.</span></span></em></p>
<p>The purpose of God&#8217;s constant toil and His leading the providence until the present day is only to achieve His will. The ultimate returning point is to share the same sufferings and joy with one another.</p>
<p>If we men achieve the will that God earnestly wishes for us and come to an eternal relationship through which we can share joy and sufferings together, then God will be the True Father, and we will be true children to Him. Then God&#8217;s will becomes human will, and man will be in a relationship of harmony with the creation. Thus, returning glory to Him, they will eternally praise the wisdom, love, and benign grace of God. God, man and the creation are looking forward to that day.</p>
<p>The will is God&#8217;s ideal for the creation and the eternal ideal for humans. Consequently, if the will is fulfilled, God and humans will be united in mind and body. Thus, when God rejoices, so will be humans, and vice versa. That is, God&#8217;s will becomes the will of men, and thus their wills become one, through which we will return eternal joy to God. They will also experience joy in so doing.</p>
<p>In order for God to establish such a will, He will look for one person who can perfectly communicate with Him and thus become one body. Through that person, He will realize the will. Therefore, if he can be totally united with God&#8217;s will, and can realize His will, he will also appear to the creation as one with the character of God&#8217;s wisdom and love. If in that manner, that person can manifest God&#8217;s wisdom, love, and character, wherever he goes, by taking after the eternal and absolute God, God&#8217;s will is realized through him and He will eternally rejoice with him.</p>
<p>From this perspective, heaven has been leading the dispensation of restoration for all of humankind and the dispensation has continued. Thus, if people cannot understand the situation of God, they will not be able to have any relationship with God. Because of the fall, we carry self-centered ideas that have nothing to do with God. As God&#8217;s ideas came from God, human ideas came from human wisdom.</p>
<p>Consequently, at some point, if the human ideas that have been governing human history cannot meet with the ideas of God, humans cannot receive an eternal ideal world. The role of religions is to bring the two different ideas together into one. If you do not understand this, you will not be able to transcend a humanistic viewpoint. Humanistic morality, doctrine, and views should return to the heavenly ones. The responsibility of religions is to unify them. Among them, the mission of Christianity is especially critical. Thus, if Christianity cannot fulfill this mission, the eternal ideal of creation centering on Christianity will not be accomplished.</p>
<p>If you cannot have the unchanging ideas for the fulfillment of the creation that can be eternally rejoiced in by God, you will become a betrayer of God at some point. Therefore, only when you actualize the ideal of creation from God&#8217;s viewpoint will the heavenly ideal be actualized and made substantial in reality. God has been leading the dispensation for 6,000 years for the fulfillment of this will. If you cannot accomplish the will of God, His providence will fail and will remain on the level of nothing but ideas. The person who came to fulfill the eternal and unchanging ideology is Jesus Christ. He came to this earth as the truth that substitutes for God&#8217;s wisdom and as universal compassion that substitutes for God&#8217;s love, with generosity that substitutes for God&#8217;s benign love. He pioneered the path to God&#8217;s will.</p>
<p>Jesus came to the earth to establish heavenly ideology. Jesus appeared with purity and noble character to substantially make the ideas of God in human life. Yet there was no one who recognized the character of Jesus, who came to earth with the internal character of God.</p>
<p>Furthermore, Jesus came with a heart of harmony to manifest the heavenly personality. The heart of harmony could harmonize not only good people but also evil people. Yet due to faithlessness, the harmony on earth was not realized. Jesus came with an unchanging integrity toward the will of God, but the people then did not understand the heart of Jesus and did not follow him. Therefore, unless we, the future generation, practice the heavenly ideology of purity, noble character, the heart of harmony and integrity that Jesus had toward God, to realize all these on earth on behalf of Jesus, the grievance of Jesus cannot be resolved.</p>
<p>By being freed from everything humanistic and by establishing heavenly ideology as the regulations in our daily life, if we cannot accord everything in human ethics with the heavenly ideology, we will not be able to keep the ideology of God and Jesus. Also, the original world of creation that God purposed and Jesus hoped for will not be able to be realized on earth.</p>
<p>Then what should you do? You should become the ones who can substitute all the ideas based on human ethics with heavenly principles and totally digest everything based on human ethics, transforming them into heavenly ones. Otherwise, you will not be able to lead a life of the Heavenly Kingdom on earth.</p>
<p>Jesus and the Holy Spirit have been making efforts for 2,000 years to spiritually connect human morals with the will of heavenly principles. If you believe in such a Jesus, you will have inherited the will and will do your best to fulfill the mission of unifying humanistic moral laws with the heavenly principles. To inherit the mission, we should first overcome all the evil conditions in our daily life. For this, we should carry out the ideology of Jesus&#8217; daily life. Believing in the cross was to sever the relationship with Satan spiritually, but you should now have the ideology of Jesus&#8217; life. Based upon it, you can sever the relationship with Satan both spiritually and physically.</p>
<p>Now the day of judgment is approaching. Then how will the judgment be done? It will be done, based on how an individual established the heavenly ideology during his or her earthly life. To avoid such judgment, before being afraid of God&#8217;s judgment, we should become the one who can take responsibility for the will of God and fulfill it. Otherwise, even before we are judged by God, Satan will take us.</p>
<p>Is there anyone with the disposition of God? Is there anyone with the pure disposition of Jesus? Find him, and make him your friend. Who is of noble character? Please follow him. Also, who is the one with the nature of God&#8217;s harmony? Follow him, and attend him. Then you will surely gain a path to life. Also, you will be freed from the judgment for the condition of having followed and attended him.</p>
<p>Have you had Jesus&#8217; heart of purity, nobleness, and harmony? If not, fight yourself. Satan is not far away from you. He is in yourself. Thus, you should discover the difference between the heavenly personality and the satanic one within you and lead a life of separating them.</p>
<p>Next, you should appear in a way that is immutable. The meaning of saying that Jesus did not change refers to his unchanging attitude from the perspective of heavenly ideology.</p>
<p>Fallen humans under the dominion of Satan are cunning. Satan in the Garden of Eden revealed his sin, but at the time of the judgment, he would not reveal it.</p>
<p>You should become the ones who can willingly abandon any attachment to your own environment and life with an unchanging heart. Then you will be one with Jesus&#8217; unchanging heart.</p>
<p>Please understand that the environment, including yourself, is an object against which you should fight. To Jesus, who came as an unchanging person, all things before him were objects and enemies to fight. Furthermore, even the spirit world attacked him. Since Jesus had to fight heaven and earth, what a pitiful person he was! Despite such a condition, we should understand that he remained unchanged. Now you should be the ones who can stand unchanged before God and can be proud of yourself.</p>
<p>All things will welcome us in joy only when the foundation is established on earth where such people gather on earth and manifest God&#8217;s wisdom. Then instead of the fact of man having been related to Satan in pain and suffering, they will receive a day of hope and sing a song of glory and joy to God.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html" title="Permalink to THE PERSON WHO IS TO REMAIN BEFORE GOD&#8217;S WILL" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-be-a-victor-for-god.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BE A VICTOR FOR GOD</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html" rel="next">LET US AVOID BEING PUNISHED FOR OUR SINS BY RESTORING THE ORIGINAL NATURE OF GOODNESS <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,232 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>THE PROVIDENTIAL LIFE OF JESUS AND ITS VICTORIOUS PURPOSE &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-878 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-878" class="post-878 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">THE PROVIDENTIAL LIFE OF JESUS AND ITS VICTORIOUS PURPOSE</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:28:12+01:00"> <a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:28:22+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">October 27, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>Matthew 12:18-37 </em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span id="en-NIV-23508" class="text Matt-12-18"><sup class="versenum">18 </sup>“Here is my servant whom I have chosen,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-12-18">the one I love, in whom I delight;</span></span></em><br />
<em><span class="text Matt-12-18">I will put my Spirit on him,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-12-18">and he will proclaim justice to the nations.</span></span></em><br />
<em><span id="en-NIV-23509" class="text Matt-12-19"><sup class="versenum">19 </sup>He will not quarrel or cry out;</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-12-19">no one will hear his voice in the streets.</span></span></em><br />
<em><span id="en-NIV-23510" class="text Matt-12-20"><sup class="versenum">20 </sup>A bruised reed he will not break,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text Matt-12-20">and a smoldering wick he will not snuff out,</span></span></em><br />
<em><span class="text Matt-12-20">till he has brought justice through to victory.</span></em><br />
<em><span class="indent-1"><span id="en-NIV-23511" class="text Matt-12-21"><sup class="versenum">21 </sup><span class="indent-1-breaks">    </span>In his name the nations will put their hope.”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-23511a" data-link="[&lt;a href=&quot;#fen-NIV-23511a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Matthew+12:18-37#fen-NIV-23511a">a</a>]</sup></span></span></em></p>
</div>
<h3 style="text-align: center;"><em><span id="en-NIV-23512" class="text Matt-12-22">Jesus and Beelzebul</span></em></h3>
<p style="text-align: center;"><em><span class="text Matt-12-22"><sup class="versenum">22 </sup>Then they brought him a demon-possessed man who was blind and mute, and Jesus healed him, so that he could both talk and see.</span> <span id="en-NIV-23513" class="text Matt-12-23"><sup class="versenum">23 </sup>All the people were astonished and said, “Could this be the Son of David?”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23514" class="text Matt-12-24"><sup class="versenum">24 </sup>But when the Pharisees heard this, they said, “It is only by Beelzebul, the prince of demons, that this fellow drives out demons.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23515" class="text Matt-12-25"><sup class="versenum">25 </sup>Jesus knew their thoughts and said to them, <span class="woj">“Every kingdom divided against itself will be ruined, and every city or household divided against itself will not stand.</span></span> <span id="en-NIV-23516" class="text Matt-12-26"><span class="woj"><sup class="versenum">26 </sup>If Satan drives out Satan, he is divided against himself. How then can his kingdom stand?</span></span> <span id="en-NIV-23517" class="text Matt-12-27"><span class="woj"><sup class="versenum">27 </sup>And if I drive out demons by Beelzebul, by whom do your people drive them out? So then, they will be your judges.</span></span> <span id="en-NIV-23518" class="text Matt-12-28"><span class="woj"><sup class="versenum">28 </sup>But if it is by the Spirit of God that I drive out demons, then the kingdom of God has come upon you.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23519" class="text Matt-12-29"><span class="woj"><sup class="versenum">29 </sup>“Or again, how can anyone enter a strong mans house and carry off his possessions unless he first ties up the strong man? Then he can plunder his house.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23520" class="text Matt-12-30"><span class="woj"><sup class="versenum">30 </sup>“Whoever is not with me is against me, and whoever does not gather with me scatters.</span></span> <span id="en-NIV-23521" class="text Matt-12-31"><span class="woj"><sup class="versenum">31 </sup>And so I tell you, every kind of sin and slander can be forgiven, but blasphemy against the Spirit will not be forgiven.</span></span> <span id="en-NIV-23522" class="text Matt-12-32"><span class="woj"><sup class="versenum">32 </sup>Anyone who speaks a word against the Son of Man will be forgiven, but anyone who speaks against the Holy Spirit will not be forgiven, either in this age or in the age to come.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23523" class="text Matt-12-33"><span class="woj"><sup class="versenum">33 </sup>“Make a tree good and its fruit will be good, or make a tree bad and its fruit will be bad, for a tree is recognized by its fruit.</span></span> <span id="en-NIV-23524" class="text Matt-12-34"><span class="woj"><sup class="versenum">34 </sup>You brood of vipers, how can you who are evil say anything good? For the mouth speaks what the heart is full of.</span></span><span id="en-NIV-23525" class="text Matt-12-35"><span class="woj"><sup class="versenum">35 </sup>A good man brings good things out of the good stored up in him, and an evil man brings evil things out of the evil stored up in him.</span></span> <span id="en-NIV-23526" class="text Matt-12-36"><span class="woj"><sup class="versenum">36 </sup>But I tell you that everyone will have to give account on the day of judgment for every empty word they have spoken.</span></span> <span id="en-NIV-23527" class="text Matt-12-37"><span class="woj"><sup class="versenum">37 </sup>For by your words you will be acquitted, and by your words you will be condemned.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>The history of conflict lies before those of us who are gathered here today. We must inherit Your unfinished feats even after our death. Father, we hope You will allow us to reflect and ask ourselves whether we have become the elite soldiers of Heaven who can fight on after putting our stagnant selves before You: the elite soldiers of Heaven who can fight and bring victory.</p>
<p>We understand that the enemy we must fight against now is not some person on the earth. It is Satan, who during the 6,000-long years of history raised the banner of opposition against God, accused God and snatched away power and authority. The responsibility and mission to subjugate this monstrous enemy rests upon us today. We realize that until now we have desired only a comfortable lifestyle and to be on the receiving end of the love of the Father, while being intoxicated in His grace. Father, please forgive us.</p>
<p>Until now we have neglected the fact that to bring the enemies to submission, our spirit and heart must never change, even in the midst of turmoil, conflicts and the ordeals of the cross. Father of love, we pray You will allow us to become the elite soldiers of Heaven who will have unchanging minds from now on and will fight alone with the many millions of satans.</p>
<p>Are there sons and daughters who have become exhausted while upholding this will? Father! Please grant us strength. Are there any who are hesitating? Please give them courage. On this foundation, Father of love, we earnestly wish that You will let us become the beloved sons and daughters who can dash toward the victorious purpose and goal of the conflict and march forward.</p>
<p>The responsibility to fight through the last battle and to victoriously cross over the pass of Golgotha rests upon our shoulders. Father of love, we sincerely hope You will let us become Your sons and daughters who can dash toward all battlefields with the power, heart, resolve and determination of the Father. Let us feel the bitter grief and be triumphant.</p>
<p>Although the sons and daughters who have gathered are small in number, please do not let them be content in the place in which they dwell. Let them learn to offer gratitude toward the grace given to them.</p>
<p>Beloved Father, we pray You will help us understand that the grace You give us today is not only for our own sakes. It is the blessing You have given us for the sake of all humanity, as representatives of the many millions of faithful believers who are in Heaven. It is for the sake of bestowing upon us the responsibility and mission to subjugate the many millions of satans.</p>
<p>Please guide us to reveal to You where our hearts are. They are the sons and daughters who have the mission to manifest the will of the Father as one purpose and are to manifest the standard of victory by contending with Satan. Are they in a state of weakness? Please give them strength. Are there those who cause sorrow to God while they are praying before the Father? Father! Please grant them happiness. Are there those who are trying their best to seek Heaven? Please appear before them with good and public works.</p>
<p>Father of love, we sincerely wish that by doing so, You will let them become the sons and daughters who do not become fatigued, even as they alone take responsibility for the will, grace and dispensation of the Father. Let them carry on the struggle.</p>
<p>This is a holy day, so please bless the countless religious groups who are gathering on behalf of the thirty million people. We know that there are many sons and daughters who have set up hidden altars and are shedding unknown tears, revealing to others that the time of the Father&#8217;s works has come to pass. Father, please appear before them with the same grace.</p>
<p>Since You have given the promise that in the Last Days You will pour down the blessing of the Holy Spirit as water is poured down, please quickly appear before us. Father, we sincerely wish for You to give us the consultation that will help us raise high the signal light of life and return glory as Your representatives, building the one garden of restoration.</p>
<p>Father, please allow the sons and daughters who were called upon first to offer gratitude before the Father&#8217;s Will. Let this be an hour when we can make the pledge that we will return glory to the Father by fulfilling our responsibility.</p>
<p>When we make an earnest appeal before the loving Father&#8217;s solemn presence, let there appear upon the whole audience in this hour the works of grace that will pay their indemnity with the blessing of the Father. Let them move toward one standard and purpose before the will of the whole that the Father desires. Now, even if barriers block our path in the course of conflict we must walk, please allow us to take responsibility for this and proceed on toward the will of the Father. Following the victorious example of Jesus, who overcame even while he was suffering infinite pain on the cross, please let us set the standard of sons and daughters of the Father who can win the victory even by offering the last ounce of our lives.</p>
<p>We have gathered here, so please allow our minds to be in harmony with one another. Allow us to move as one under the grace of the Father. Protect us so that we can be guarded by the many millions of angels in Heaven so that Satan cannot invade us. Father, this is our sincere wish.</p>
<p>We have entrusted all the remaining time to You, so earnestly beseeching that the Trinity will govern and that You will grant the glory of victory to us, we offer all the words in the name of the Lord. Amen.</p></blockquote>
<p>If God&#8217;s dispensation of restoration had not existed in the time between the fall and today, it would not be possible for the mouths of humankind, who belong to sin, to call God &#8220;Father.&#8221; As people with the lineage of death, you cannot even think about the grace of Heaven and the grace of love with respect to the Father. Moreover, you have to understand that it is due to the grace of God that we can dwell inside the realm of life today.</p>
<h3 align="center">God Tried to Embrace Humankind Through Jesus</h3>
<p>The quality of comprehensiveness is contained in the providential life of Jesus. God&#8217;s dispensation took 4,000 years of history, until the appearance of Jesus. Because Jesus came to the earth, God could embark upon a new dispensation centering on him. God cannot relate freely with people on the earth. Therefore, passing through the period of the Old Testament, God guided the dispensation by using angels as messengers. By establishing Christ with a substantial body, who could work directly on the earth, the dispensation of God to embrace fallen humanity could begin.</p>
<p>Since Jesus passed away, 2,000 years of history have passed. Thus, you have to understand that you are living in an era when, as you enter the realm of the Father&#8217;s grace today, you can attend Jesus Christ as the Lord and enjoy the protection and blessing of the Holy Spirit.</p>
<p>You have to understand that because God could not deal directly with human beings in the 4,000-year period before the coming of Jesus, He had to resort to the toilsome dispensation of seeking humankind through the errands of many angels. Moreover, you should understand that after dividing the spiritual world and the physical world, the Father sent Jesus Christ to establish the direct, horizontal dispensation with humankind.</p>
<p>Today, 2,000 years of history since the coming of Jesus, in order for you to be chosen before that grace, you must experience the heart of God, Who was seeking humankind on the spiritual plane for thousands of years before Jesus. Moreover, you must never forget that you are in the middle of a historic process dealing with the will of the dispensation. After coming to this earth, Jesus set the goals of his daily, earthly life and his eternal life and tried to let you accompany him.</p>
<p>Jesus fixed the will as the purpose of his daily life for thirty years. To accomplish this, in the 2,000 years since, he has been guiding your ancestors. Moreover, you should feel that the providential responsibility to lead your descendants in the future lies with Jesus.</p>
<p>You know very well that when Jesus deals with the will of the dispensation, he cannot usher in the day of peace based only on the daily life, earthly life and eternal life in which only he is joyful. At this time today then, when we have not found the day of the peace of Heaven or the day of hope that Heaven demands, what kind of position is the people on earth in? No matter how hard you try, you will not be able to find the day of peace. No matter how much you seek peace and no matter how ideal a world you dream of, your fate is such that you cannot guarantee that.</p>
<p>The reason is that the dispensation of God, the Creator of Heaven and earth, remains a sorrowful one. Jesus Christ, who came as the Lord of all things to accomplish the dispensation of salvation for the fallen people of this earth, also relates with the will of the dispensation with a sorrowful heart. Therefore, no one on earth can find peace, and we cannot boast that we have attained the glory of victory.</p>
<p>As long as the sorrowful heart of God, who must shoulder this dispensational fate and lead people forward remains, the garden of the love of God will not be attained. As long as the grieving heart of Jesus Christ remains, as well as the sorrow inside the many millions of people of faith who are connected to the providence, the garden of goodness and the love of God which humanity longs and yearns for will never be obtained.</p>
<p>It is not easy for Heaven, who is conducting this dispensation, to cling to human beings. Before the sorrowful heart of the Father, Satan is blocking the path and is making accusations, using people as the condition. You have to understand this.</p>
<p>When in your daily, earthly life or among the ideals you desire, there is some element that is not in accordance with the principles of the heavenly way or God&#8217;s ideology of creation, you have to realize that the Father, the Lord and the faithful believers are grieving, being beaten and fighting on our behalf while they are being mercilessly accused by Satan for every condition. Therefore, in the dispensational history of God, the sorrow of God, the sorrow of Jesus Christ and the sorrow of the many millions of people of faith who have been participating in the dispensation still remain. Yet what is the greatest anguish of God? It is the agony of having to battle with Satan while defending us. You have to understand that God is in this kind of position.</p>
<h3 align="center">Jesus Christ Bridged the Gap<br />
Between God and Humanity</h3>
<p>Now you have to reflect upon the birth and life of Jesus Christ. Before Jesus was born on the earth, there was a great distance between humanity and God. Accordingly, God hoped that human beings would pour out all of their hearts and exert all of their strength to trample upon all conditions of the satanic world. He hoped that they would penetrate through the dark forces of Satan that had seized power and reach up to Him. The dispensation of the Old Testament was such that only by doing so could humankind receive the grace of God. However, God understood that human effort and toil alone would not allow them to find Him. He had heard the people looking up to Heaven in sorrowful tears. Therefore, He sent Jesus to make it possible for them to attain the relative value from a horizontal position and associate with the one center who represented God. This is the condition of victory and pride against Satan in the 4,000-year history of the dispensation. However, because Jesus could not fully realize the purpose behind his coming to the earth due to the faithlessness of humanity, it has been our fate to pray to Heaven and exert our utmost.</p>
<p>Why is it that while human eyes are created to look straight out horizontally and move around, the human mind is supposed to be aligned with Heaven? When you achieve the will of God&#8217;s dispensation in the horizontal sphere, God, Jesus, the Holy Spirit and all people on the earth can be happy. Only after this has been realized can our wishes materialize. As the first step toward fulfilling this goal, God sent Jesus, but because faithless people killed him, you have the responsibility to receive the deceased Jesus Christ again.</p>
<p>After coming to this earth, Jesus took the first step of his daily life in accordance with the will of God&#8217;s dispensation. What was the center of this daily life? First, it was guiding the people to God and battling against Satan, who makes accusations against humankind. Jesus made his start from this kind of dual position.</p>
<p>Jesus alone grieved on behalf of the sorrow of God, who had conducted the dispensation for 4,000 years, and on behalf of the sadness of the heavenly principles. While he was being falsely accused by Satan in the invisible spirit world and opposed by all the faithless people in the physical world, Jesus grieved for God. With this kind of heart, his gaze was fixed on the Israelites. He dealt with the chosen faith of Judaism according to God&#8217;s heart of love.</p>
<p>However, the Israelites and the sect of Judaism who should have upheld the will of God and helped Jesus fulfill his mission did not appear before Jesus at all. Instead, they stood in opposition to him. The Christians today, who believe that this was inevitable, must understand that the time has come now when they must fathom the genuine heart of Jesus.</p>
<p>Jesus had to block off the forces of Satan invading spiritually. He had to block all the arrows of faithlessness shot from the hands of many people. However, Jesus alone cannot just be engaged in that kind of conflict. You have to stand in his shoes and feel sympathy for the way Jesus&#8217; life began, considering the fact that he was in a position to behold the greater and more distant will and wish of God and adjust his mind and body to them. The problem was how Jesus, who began from this kind of position, could accomplish the will of God and subjugate Satan. He had to restore all people who have fallen nature. Jesus stepped forward to find a solution to this.</p>
<h3 align="center">Why Jesus Taught the Way of Obedience</h3>
<p>Satan has acquired power and authority on this earth and enjoyed the glory of God, ruling over humanity as God should have ruled over them. Humankind has lived under the oppression of Satan. Therefore, when Jesus came to the earth, before he fought against the opposing people, he first had to battle against the spiritual Satan who caused them to oppose him. You have to understand that the history of Christianity began with this kind of conflict.</p>
<p>What did Jesus, who came to confront the original nature of Satan, give as a sign when he appeared in life? He had to do what Satan could not do. The Christian Gospels point out the actions that Jesus took for the sake of accomplishing this responsibility.</p>
<p>His words, his mind, his daily life, his physical life and even his death were all for the sake of setting conditions Satan was incapable of carrying out. You have to understand that such was the course of Jesus. Because the laws of the heavenly way exist, because God governs everything centering on those laws, Jesus Christ separated Satan according to those heavenly principles.</p>
<p>The basic nature of Satan is arrogance and fury. Although Satan dealt with the people of the earth with this kind of personality, Jesus came before the people of the world in meekness and humility.</p>
<p>Jesus did not stand in a position of meekness and humility because he was incapable and unworthy. He deserved to be higher and enjoy more glory than anyone else, but Jesus forsook all this and stood in a position of meekness and humility. Although Satan tried to fight with Jesus, because Jesus knew that Satan was bound to the condition that required him to submit before God, he could remain meek and humble to the end. A meek and humble nature like this is the opposite of Satan&#8217;s original nature of arrogance and fury.</p>
<p>Moreover, because Satan was aware of the existence of the laws of the heavenly way, eventually he had to recognize Jesus. In other words, if you move forward in meekness and humility, then even the satanic world will be brought to natural submission. Jesus understood this principle, and he took position of meekness and humility of which Satan was utterly incapable. Similarly, you have to understand that only when you stand in a position of meekness and humility can you pioneer the new path heading toward God, who works through the center.</p>
<p>Furthermore, Jesus demonstrated compliance and obedience. Compliance is following directions in an environment where it is possible to do so; obedience is following in an environment where it is not possible to do so. Jesus taught the ways of compliance and obedience to the faithless people. This was also meant to stop Satan&#8217;s original nature and all his elements of life.</p>
<p>Satan, who is centered on himself, does not care about what happens to other people. This is another original nature of Satan. This is why if you follow Satan, your future will be unfortunate. Thus, Jesus taught all people to believe in him and submit to him to follow Heaven. People did not understand this intention of Jesus. On the contrary, they thought of him as an unrighteous person with respect to the will of God. Jesus pioneered the path of obedience, even while he was suffering unspeakable persecution and mistreatment from this position. Moreover, Jesus came with the spirit of sacrifice and service. In truth, Jesus came to this earth as the only begotten son of God. As the representative of the glory of Heaven, Jesus should have ruled over all people, all things and even Satan. He should have received their sacrifices and service, but he stood in the completely opposite position. To make Satan comply with him, perform services and sacrifice for him, in other words, to bring all the forces of Satan to submission, Jesus made the offering of unlimited sacrifice and service. You have to understand this.</p>
<p>In the satanic world, people try to use and exploit other people and things to an infinite degree. Jesus stood in the opposite position. Jesus led a life of which Satan was incapable. Satan had to surrender because Jesus was meek and humble, compliant and obedient, and he led a life of sacrifice and service. If you measure yourself against the meekness, humility, compliance, obedience, sacrifice and service that Jesus taught and think that you cannot practice these teachings in your sphere of life, then you have to realize that you still belong to the tribe of Satan.</p>
<h3 align="center">The Path of Heaven<br />
on Which We Cannot Accompany Satan</h3>
<p>How has your life been so far? Are there still some people who live in fury and arrogance centered on themselves? You must quickly free yourself from this position. You must make an internal determination to struggle against the persecutors of Heaven, based on the standard Jesus Christ set. You must adopt his attitude of humility and meekness, compliance and obedience, sacrifice and service, which are the foundation to win victory in the final battle to conquer Satan.</p>
<p>Satan is the one who has opposed the will and stands in the position of rebellion against the will. Such has become Satan&#8217;s lifestyle. The reason that you unconsciously feel the desire to rebel against the will is not because that is your own mind&#8217;s desire; it is because the satanic forces are manifesting themselves unconsciously through you, since you are bound to that environment. Although Jesus&#8217; grief and sorrow are deeply rooted in the satanic world, he came forward to bring resolution to this path, determined to sacrifice and serve.</p>
<p>In the Last Days in which we are living, there remain two branches of the forked road. They are the path that Satan is walking and the path that Heaven is walking. The path that Satan is walking is different from the path that Heaven is walking. Satan cannot walk the path of Heaven. In other words, Satan cannot comply with and obey God, actualizing the will with meekness and humility. He cannot sacrifice and provide service on behalf of all humanity before the dispensational will like Jesus did. Therefore, you should understand that Jesus is the king of kings in regard to being good, meek, humble, compliant, obedient, sacrificial and performing services.</p>
<p>Many people on the earth do not know how to be meek or obedient. They do not know how to walk the path of an offering through sacrifice and service. Although countless people and sages had come and gone in the 4,000 years of history before Christ, because Jesus could do what none of them could do, he could step above everything and rise. He could set the highest standard of meekness, obedience and sacrifice before Heaven. Similarly, Jesus demonstrated to us the bloody course of bringing Satan to submission.</p>
<p>After Jesus came to the earth, he led such a life because he lived with the same heart as God, Who had toiled for the sake of the earth throughout the long history. Therefore, Satan had to surrender, and there came into being the historical beginning point that would cause fundamental change.</p>
<p>Satan is trying to prevent people from going to God and, instead, is trying to pull them toward himself, although he understands the heart of God. He is trying to elevate himself, rebel on his own initiative and use people. Although this is how Satan is, he cannot dare to raise his head when he goes before God and Jesus. You have to understand that this kind of condition was established in the sphere of Jesus&#8217; life. Therefore, if we follow Jesus, then Satan will be separated from us. The life of Jesus brought to pass this kind of historic beginning.</p>
<p>How did Jesus set this standard? First, Jesus set the standard that God and he were one, not two. He had the mind-set that if God lives forever, he would also live forever. If God is unchanging, then he would also be unchanging. If God is infinitely merciful, then he would also be infinitely merciful. In other words, because he could feel and unite with the internal heart of God more than anyone else, Jesus could set the standard of victory during the conflict against Satan.</p>
<p>However, from the time Jesus came until today, there has not been even one person in this satanic world who understood the words linked to the internal hearts of God and Jesus. There has been no one who understood what kind of situation existed between God and Satan.</p>
<h3 align="center">Meekness and Humility,<br />
Compliance and Obedience,<br />
Sacrifice and Service</h3>
<p>Jesus came to the earth 2,000 years ago. As a way to subjugate Satan, he taught human beings to be meek and humble, compliant and obedient, to sacrifice and serve. The people on the earth could not create an environment to live according to Jesus&#8217; teachings. They could not give thanks and remain meek and humble. They could not give thanks while complying and obeying, or sacrificing and serving. Without them being conscious of it, their heart of compliance became one of fury and arrogance, confrontation and rebellion. Sacrifice and service were twisted into abuse and exploitation.</p>
<p>The reason Jesus could resolve this kind of problem is that he had an indescribable relationship with God. He understood the situation between God and Satan that must be separated. Because he understood how he could separate from Satan, Jesus could walk this kind of path. Nonetheless, because human beings were not aware of this, they could not walk the same path as Jesus.</p>
<p>Accordingly, you must call out &#8220;Father!&#8221; toward Heaven and offer prayers to Jesus. Moreover, understanding the heart of God and Jesus, and the conspiracy of Satan, you must divulge the historical sins of Satan. You must subjugate Satan&#8217;s camp in actuality. By revealing the secrets of God&#8217;s dispensation, you must bring an end to this.</p>
<p>If you are not meek and humble, then you cannot experience the heart of Jesus. Moreover, if you do not lead a life of compliance, submission, sacrifice and service, you cannot go before Jesus. You have to understand this. At the present time, it is difficult for us to perfect this kind of life and seek God. Therefore, human beings are making the appeal, &#8220;Oh! God, please dwell with us! God! Please have compassion on us!&#8221; While doing so, they are waiting for the time, saying, &#8220;When will the time of God come? When will Jesus and the Holy Spirit appear before all people of this earth?&#8221; This has been left behind as the sad situation of history.</p>
<p>Because you have been faithless people who are ignorant of the situation that exists between God, Jesus and Satan, you have to understand the anxious heart of Jesus, who could not speak to the people even when he wanted. Become the obedient offering, the historical offering, and the offering of sacrifice and service, shouting out toward Satan, &#8220;Why have you not followed the will of God&#8217;s dispensation?&#8221; If you cannot discover the secret of Heaven that can bring Satan to submission, then you will not be able to substantially subjugate Satan over whom Jesus won spiritual victory. Therefore, you have to release the heart of Jesus, who could not reveal everything, saying, &#8220;I still have many things to say to you, but you cannot bear them now,&#8221; (John 16:12) and &#8220;If I have told you earthly things and you do not believe, how will you believe if I tell you heavenly things?&#8221; (John 3:12)</p>
<p>At this time, when the historic day of judgment is nearing our doorsteps, if you are then to feel sadness, what kind of sadness must you feel? You have to become believers who can feel the heart of sorrow that exceeds the sorrow of Jesus while he tried to subjugate Satan.</p>
<p>The moment Jesus went to the Garden of Gethsemane with the path of the cross lying before him is a moment of sorrow that exceeds your imagination. Although his own death was not a problem to him, he was sorrowful because it was an event that shook Heaven and earth. You have to feel the heart of Jesus, who prayed and cried in the Garden of Gethsemane with a heart that longed to liquidate the forces of evil with an electricity that ran throughout his body. You even have to feel the heart of God so that you can make Satan come before that heart and bring him to his knees. Otherwise, even if the Lord of the Second Advent comes to this earth, he will again become a Lord of sorrow.</p>
<p>What then must we do today? We must now determine to offer ourselves for the sake of God&#8217;s Will. If it is the will, then we must stand up as the spearhead of meekness and humility. If it is the will, then we must comply and obey so that no matter what kind of opposition is put upon the earth, just as Jesus walked a lonely path, you must also become the offerings of compliance and obedience for the sake of the will of God. Furthermore, with this determination, even if the whole world opposes you, you must become the offering of service and sacrifice to be offered up before the will of the Father.</p>
<p>What must be the extent of meekness, humility, sacrifice, service, compliance and obedience? As long as there is the dignity of God and the dignity of Jesus Christ, you must stand in a position to uphold that dignity. You must be meek and humble on behalf of the thirty million people. You must be able to fight the fury and arrogance of Satan. Representing the thirty million people, you must comply and obey to fight against Satan&#8217;s confrontation and rebellion.</p>
<p>By doing so, with a heart of sacrifice and service, you must come forward before Satan, who is trying to use and exploit people. You must be able to confront Satan with the indignant heart that Jesus had toward him. If you cannot become this kind of person of faith, then you will not be able to receive the returning Lord on the earth. Even if the Lord were to come, you would not have any relationship with him.</p>
<p>What then should be the ideology of life that Christians must possess today? It is the spirit to comply and submit first, be meek and humble first, and be the first to sacrifice and serve. You have to understand that the will of the Father is realized through this kind of path. Thus, the hearts of God and Jesus are liberated. God is longing for the emergence of great numbers of the faithful believers, among the thirty million people, who can show resoluteness and sacrifice and serve on behalf of the church and the people. He is looking for those who can comply and obey for the sake of the will of Heaven. These are the ones who can accompany the Lord of glory.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html" title="Permalink to THE PROVIDENTIAL LIFE OF JESUS AND ITS VICTORIOUS PURPOSE" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME THE ONES WHO CAN UNDERSTAND GOD&#8217;S SORROW</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html" rel="next">LET US UNDERSTAND THE TRUE PATH AND DISCERN THE SIDE PATH <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,218 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WE WHO ARE SEARCHING FOR THE HOMELAND, THE GARDEN OF EDEN &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-828 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-828" class="post-828 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">WE WHO ARE SEARCHING FOR THE HOMELAND, THE GARDEN OF EDEN</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:36:53+01:00"> <a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:37:05+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
June 9, 1957</h3>
<p style="text-align: center;"><em>1 Peter 4:7-19</em></p>
<p style="text-align: center;"><em><span id="en-NIV-30454" class="text 1Pet-4-7"><sup class="versenum">7 </sup>The end of all things is near. Therefore be alert and of sober mind so that you may pray.</span> <span id="en-NIV-30455" class="text 1Pet-4-8"><sup class="versenum">8 </sup>Above all, love each other deeply, because love covers over a multitude of sins.</span> <span id="en-NIV-30456" class="text 1Pet-4-9"><sup class="versenum">9 </sup>Offer hospitality to one another without grumbling.</span> <span id="en-NIV-30457" class="text 1Pet-4-10"><sup class="versenum">10 </sup>Each of you should use whatever gift you have received to serve others, as faithfulstewards of Gods grace in its various forms.</span> <span id="en-NIV-30458" class="text 1Pet-4-11"><sup class="versenum">11 </sup>If anyone speaks, they should do so as one who speaks the very words of God. If anyone serves, they should do so with the strength God provides, so that in all things God may be praised through Jesus Christ. To him be the glory and the power for ever and ever. Amen.</span></em></p>
<p style="text-align: center;"><em><span class="text 1Pet-4-12"><sup class="versenum">12 </sup>Dear friends, do not be surprised at the fiery ordeal that has come on you to test you, as though something strange were happening to you.</span> <span id="en-NIV-30460" class="text 1Pet-4-13"><sup class="versenum">13 </sup>But rejoice inasmuch as you participate in the sufferings of Christ, so that you may be overjoyed when his glory is revealed.</span> <span id="en-NIV-30461" class="text 1Pet-4-14"><sup class="versenum">14 </sup>If you are insulted because of the name of Christ, you are blessed, for the Spirit of glory and of God rests on you.</span> <span id="en-NIV-30462" class="text 1Pet-4-15"><sup class="versenum">15 </sup>If you suffer, it should not be as a murderer or thief or any other kind of criminal, or even as a meddler.</span><span id="en-NIV-30463" class="text 1Pet-4-16"><sup class="versenum">16 </sup>However, if you suffer as a Christian, do not be ashamed, but praise God that you bear that name.</span> <span id="en-NIV-30464" class="text 1Pet-4-17"><sup class="versenum">17 </sup>For it is time for judgment to begin with Gods household;and if it begins with us, what will the outcome be for those who do not obey the gospel of God?</span> <span id="en-NIV-30465" class="text 1Pet-4-18"><sup class="versenum">18 </sup>And,</span></em></p>
<div class="poetry top-05" style="text-align: center;">
<p class="line"><em><span class="text 1Pet-4-18">“If it is hard for the righteous to be saved,</span></em><br />
<em><span class="indent-1"><span class="indent-1-breaks">    </span><span class="text 1Pet-4-18">what will become of the ungodly and the sinner?”<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-30465a" data-link="[&lt;a href=&quot;#fen-NIV-30465a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=1+Peter+4:7-19#fen-NIV-30465a">a</a>]</sup></span></span></em></p>
</div>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-30466" class="text 1Pet-4-19"><sup class="versenum">19 </sup>So then, those who suffer according to Gods will should commit themselves to their faithful Creator and continue to do good.</span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Beloved Father! We understand that the sorrow of Adam who lost the Garden of Eden is our sorrow and the bitterness of heaven. Moreover, we also know that the fact that the human ancestors who should rejoice in the ideals of the Garden of Eden are not able to do so is the grief of Heaven.</p>
<p>Father, since the responsibility of us who are facing the adverse situation of the fall is heavy, if you do not put us in the position of having sanctified again and extend your hands of recreation, then there will be no one who is more miserable than we, so Father of love, please extend the hands of compassion! We wish to offer our minds and bodies to Father this hour, so please accept us. We earnestly hope that by molding us, according to Father&#8217;s sung sang, you will allow us to take charge of your will.</p>
<p>Father! Lonely sons and daughters have bowed their heads and are calling your name, so please be with them. We know that nothing can be done with human power alone, so Father, please govern the minds and bodies of us who have gathered here today.</p>
<p>Please do not allow them to become stragglers in the course that demands that they dash forward at full speed. Please lead them not to be defeated during conflict, and please allow us to become the sons and daughters who can sing your glory for eternity and boast of your love. Even if the environment is difficult, please allow us to overcome that environment, and even if we are to fall down during the fight, please allow us to listen to the voice of Father calling out to us and stand up.</p>
<p>Father, please bless the many altars who have gathered here on behalf of the people today, and please allow us to prepare the Abeltype altar on this earth and to gather. By doing so, we wish from the depth of our hearts that you will guide us to become the children of the Abel- type altar who can take responsibility and pay indemnity for the sins of the ancestors who were in discord even when they entered the Holy of Holies. Father. We know that in this hour the children of lonely altars who have spread in countryside are having pledge service, so even for this one hour please be with them, and guide them so that they can become the elite troops of heaven who can hold the shield of victory to fight strongly and win even if they belong to a lonely altar. Father, we earnestly entreat that you will manifest the same grace and work, guide these who have received the calling in the last days to be loyal, and allow them to become the sons and daughters who live truthful lives during ordinary times. Beloved Father, we hope that you will unite the members who have gathered here into one, and guide them to obey your commandments and bow before Father, and that you will allow this to be the hour when we can repent and be offered as the sanctified living sacrifice.</p>
<p>Are there sons and daughters who have been wounded by Satan during the past week? Father, please rule over their minds and bodies this moment and allow new joy and glory of heaven. Moreover, beloved Father, we sincerely wish that you will allow this to be a moment when they can build the altar of joy before Father and return joy and glory to Father.</p>
<p>We have gathered here now, so allow us to put down all of our character, thoughts, and concepts before Father and free ourselves from Satan&#8217;s conditions of accusation. Father! Millions of Satans are accusing us, so please protect them so that not even one of them will set the conditions for their accusations.</p>
<p>We only want to be give all of our bodies and minds as well as all of our sincere heart and be offered as the sacrifice of living livestock, so, hoping that you will rule over us and go visit all the members to manifest glory, we prayed all the words in the name of the Lord. Amen.</p>
<p>My sermon today will center on the words in the Bible verses, &#8220;But rejoice in so far as you share Christ&#8217;s sufferings, that you may also rejoice and be glad when his glory is revealed&#8221; (1 Peter 4:13). I will speak with the title, <em>&#8220;We Who Are Searching for the Homeland, the Garden of Eden.&#8221;</em></p></blockquote>
<h3 align="center">The Original Garden of Eden</h3>
<p>You probably know a lot about the original garden of creation, the Garden of Eden. Moreover, you also probably know well that before the fall, Adam and Eve related with God freely, consulting with each other. However, we also know that because of the fall of Adam and Eve, the Garden of Eden of hope, which the Creator God wanted to achieve through Adam, could not be realized at all. Consequently, the original Garden of Eden that we must pursue now has nothing to do with the fall, and that world is both our world of hope and the world of hope that God wanted and has sought since the creation of the world.</p>
<p>God, who tried to behold the glory of the ideal through human beings in the Garden of Eden, lost human beings, and as a result the hopeful will, the Garden of Eden, was also lost. Thus, even for God, that garden remains as the garden of hope until today.</p>
<p>Moreover, we human beings who have received the lineage of the fall have been seeking this garden as the eternal hope while we were going through the historical course. Nonetheless, you know very well that if we human beings cannot find this garden, then the true joy, the true life, and the true love that they should enjoy, and the true ideology that they should possess cannot develop any relationship with the heavenly ideology.</p>
<p>Then, what is the purpose of the unity that God has been working toward by raising us? It is none other than building the Garden of Eden again centering on you. You must feel this. You have to understand that God has been fighting against Satan for the long 6,000 years longing not for the Garden of Eden in which only He can rejoice, but for the Garden of Eden where He can obtain joy through you.</p>
<p>Because we have lost this garden of hope due to the fall, we are at the fateful road of having to yearn for that garden of hope and go in search of it again. This fateful path is the fateful road of the heavenly principles and of humanity, which must be traveled.</p>
<p>All of you want all of your movements and manners to be manifested only in relations linked to your individual selves, but all that is manifested must not just remain with you but make relations with the whole. This must also form relations with the laws of human ethics or laws of heavenly ethics and become connected to the ideology of the Creator.</p>
<p>Today, each individual has the responsibility to represent history and the universe and return infinite joy and glory to Father. At the same time, we have the responsibility to return glory to Father with infinite life and love. If you do not know this responsibility, then you will not have any relationship with the original Garden of Eden, and you cannot build any relationship with God. Then, that original garden, what kind of garden is the original garden that should manifest itself through human beings as the ideal of creation?</p>
<p>That garden is the place where both God and man can rejoice, and all things can also be glad together. So, that garden was the garden of joy.</p>
<p>What every person seeks today is happiness. Then, what can that happiness guarantee us? That happiness should be able to guarantee both eternal felicity and eternal gratitude.</p>
<p>What kind of garden is the original Garden of Eden? That garden was the garden of life. It also was not just the garden of life that simply stagnates in one time sphere, but it is the garden of life that emerges centering on eternity. Similarly, if that garden of life had been realized on this earth, then as beings of life, human beings would have felt gratitude toward God&#8217;s grace of life and toward the eternal joy. Moreover, next to the original Garden of Eden was the world where humans can stand in the position of the master of all lives and reveal the light of life. In other words, in that world, each individual&#8217;s life can manifest itself as the embodiment of the eternal hope before God and at the same time manifest the light as the beings of immeasurable value. Furthermore, that original garden is both the garden of love and the world of peace, and it is the world of unity where everyone harmonized with each other centering on the love of God and become one.</p>
<p>Accordingly, we must realize this kind of original garden and return the glory to God through our happiness, life, and love. That glory can be received by God with delight only when we pour all of our heart and efforts to emerge as the embodiment of beauty that is better than any other person who lived during the 6,000-year course of history. Therefore, in order for all human beings to return that kind of glory to God, we must emerge as this kind of embodiment of beauty.</p>
<p>Then, what kind of beauty is that beauty? That is the beauty that can be expressed through our laughter, songs, and dances, and it is the beauty of eternal value that we can return to God as glory. The original Garden of Eden was this kind of world of beauty.</p>
<h3 align="center">The Realistic World and Fallen Men</h3>
<p>As you can see, the original garden that we seek is the garden of happiness and the world in which we must offer praise and gratitude toward God. And, that world is the world of hope centered on life, and the world where the value of peace and unity centering on life and love has been materialized.</p>
<p>That also is the world where all of man&#8217;s values combine to appear as beauty, and it is the world where every individual offers praise for the life and eternal love of God through songs, laughter, and dances. Furthermore, it is the world of harmony where all created things will move according to every movement of human beings. God wanted to realize this original world of creation through human beings. This ideal world of God, this original garden, in which human beings should have lived, was blocked off and shattered into pieces because of the fall of the human ancestors.</p>
<p>Then, what kind of world do we who cannot escape from the yoke of the fall live in? We live not in the joyful world but in the miserable world, not in the world of delight but in the world of sorrow, and not in the world of living with gratitude but in the world of living in grudges. You must realize this now. If you cannot overcome this unfortunate world, then happiness will never find its way to you.</p>
<p>Then, how can you know that you are pitiful? You can understand this through your mind. In your mind, isn&#8217;t there grieving heart that you cannot get rid of? This is the very proof that Satan is our ancestor. Moreover, do you not have hatred and resentment toward other people? This is like Satan wrapping our minds in steel nets so that we cannot go toward the original Garden of Eden.</p>
<p>What kind of world is the world in which human beings are living? It is the world of death where there is no life, and the world of despair and pitch darkness. Although human beings should have lived while singing of the preciousness of life and should have become harmonized with the eternal ideal of God centering on life, human beings today have been cut off from the hope of standing before the ideal of God and are living in despair.</p>
<p>When men are in despair, God also lives in despair, and when human beings on earth are shackled down by Satan, then even in Heaven, there will exist the world of darkness that he rules over. Therefore, if you are ones who are searching for the ideology of the heavenly city by following the Lord, then you must fight against and separate within yourself the elements that surface in the evil world, in other words, the elements that counter the ideal nature of God. Without separating these out from yourself, you will not have any connection to the original garden. This earth is the fallen land, pitiful land, the land of Satan, land without hope, land where the eternal ideals of Father cannot be sung, and land where there is no light of life.</p>
<p>Among you are there any who have been caught inside the abyss of despair? If there is such a person among you then that person will have no relationship whatsoever with the ideal world. Are there any who cannot distinguish front-back, left-right, up-down in the darkness, and who, forgetting the center, violate the laws of heavenly principles amidst this disorderly turbulence of confusion? Such persons will also not be able to create any tie with the ideal garden of heavenly nature.</p>
<p>This world that is contrary to the ideal garden of God&#8217;s love is the world where substantial division and conflict never end. In other words, it is not the world of truth where the idea of peace centered on love is realized, but it is the world where Satan dwells and destroys the heavenly principles, and conflict and disunity are continually taking place due to jealousy and envy.</p>
<p>Are there jealousy and envy in your mind, you who are seeking the heavenly nature, in other words, pursuing the original ideal garden? Do you also have the heart of strife and division? If these things remain in you, then you will never be able to find the original ideal garden.</p>
<p>Next, what kind of world is this land? It is not the world where God&#8217;s glory is manifested, but a world where sighs of despair and lamentations as well as tears of pain and sorrow are overflowing. Originally, human beings are meant to praise the glory of God and live in harmony in the eternal ideal garden of God, but they are leading a life of sighs, without being able to sing the glory of God, and are not able to dance, laugh and sing with each other, but interfere with and afflict each other and lead a life of tears.</p>
<h3 align="center">The Purpose of the Coming of Jesus</h3>
<p>You must bear in mind that in this way the world of Satan has taken a form diametrically opposed to the original ideal garden, and orientating towards the original ideal garden you must create bonds with the heavenly happiness, and going one step further you must build relationship with the heavenly life, love, and glory. Otherwise, even if the original garden were to come before you, you would have nothing to do with that garden.</p>
<p>The person that came to bridge the gap between these two worlds, in other words, between the world of Satan and the original world of creation is none other than Jesus Christ. Then, for what did Jesus come to the earth and carry on the fight? Rather than saying that Jesus fought for the realization of the heavenly happiness, ideology, love, life and glory, you must understand that he fought with the evil entities that blocked them, and in that fight he took the responsibility as the spearheading leader and exerted himself. Moreover, you must understand that before seeking for his own happiness, to attack the castle of Satan and destroy that power, and furthermore to drag the pitiful humanity chained in that world to the world of God&#8217;s dominion of goodness, Jesus shouldered Heaven&#8217;s responsibility and fought in a lonely place.</p>
<p>Accordingly, Jesus came seeking the people who are drenched in misfortune, sorrow and grudges, gave them more lofty God&#8217;s heart of happiness, and set the condition so that, as long as they safeguard that heart of happiness, no matter how great misfortunes strike them, they can indemnify it and overcome it. Because this kind of condition could remain as the factor of heaven&#8217;s happiness, you can indemnify the misfortune and set the condition of happiness while you are connected to Jesus, and you can establish the condition of life, love, and glory within the eternal sovereignty of God.</p>
<p>Then, many people who are living on this earth today are immersed in misfortune, grief and grudges, but why were these debts owed? This is the result of living only for the sake of oneself. The fundamental nature of the satanic world is living only for one&#8217;s own sake rather than living for the sake of the people, nation, or world. So, every time fallen humans find themselves in unfortunate position, they grieve and blame others centering on themselves. However, when Jesus was in unfortunate position, he did not hold pity for himself, and by representing the heart of God and by worrying for this world, he overcame that unfortunate position. If Jesus had any grudge, then it is bitterness toward this evil world. Similarly, you must understand that the grudge of Jesus was fundamentally different from the grudges of human beings in its orientation. Accordingly, we, who must pass through the world of sorrow and bitterness and kick open the door of misfortune to go seeking the original garden of happiness, must first find Jesus and the Holy Spirit. In other words, since Jesus mourned on behalf of God, exerted himself on behalf of the will of God, and while holding grudges toward the satanic world he found himself in adverse situations, so if you truly understand this situation of Jesus, then you can be responsible for all of Jesus&#8217; will on behalf of all created things. Only when this can be achieved, you can enter the eternal, original garden of heaven of joy.</p>
<p>To save the world that is about to perish and to bring to pass on earth the hope of God, he prayed in desperate earnestness, &#8220;Father, if it is possible, let this cup pass from me&#8221; (Matthew 26:39), &#8220;My God, my God! Why have you forsaken me?&#8221; (Matthew 27:46) He expected blessing from God to be greater than to anyone else, but he was abandoned, and at the end of some thirty-odd years of his life when he held high hopes, he eventually confronted the hopeless circumstance of having to bear the cross. However, even in that hopeless circumstances, Jesus overcame that pain and ordeal by believing that it is not the result of his personal life, but ordeals and agony that he is receiving on behalf of the humanity of the world. Not only that, Jesus was concerned that God might lose hope because of him. Moreover, in order to pay indemnity for jealousy, envy, and other evil elements, in other words, to indemnify all the elements of Satan that run counter to the love which is the fundamental element of heaven, he prayed for the sake of the enemies while he became a boundless sacrificial offering. To put it another way, although Jesus felt the unimaginable urge at the corner of his heart to hold grudges against Satan and judge the enemies on the earth, he forgave them and stepped above and beyond the heart of grudges and judgment.</p>
<h3 align="center">The Attitude of the Heart as the<br />
Builder of the Original Garden of Eden</h3>
<p>Because Jesus was trying to liberate human beings, who have lapsed into sin and are groaning, from pain and sorrow, even at the cost of his death, he could overcome the agony of the cross and the mocking of men, and he could remove the conditions for Satan&#8217;s accusations toward the whole humanity. Not only that, you should understand that because Jesus overcame everything and triumphed with the heart of compassion that surpassed everyone in the satanic world, and because his heart of care for Heaven and universe was utmost, God resurrected Jesus who represented His own sorrow.</p>
<p>Now, if we are to follow the footsteps of this Jesus, and cross over the path of the hardship of the cross and go toward the original Garden of Eden, then you must shoulder responsibility not only for your own unfortunate environment, but also for the misfortune of the world. Therefore, even if you are offering yourself as sacrifice and are encountering a difficult path or adverse environment, you must never become constrained by sadness of that position or the interference of Satan.</p>
<p>Though you are to stand in unfortunate position, you must have the heart of happiness, joy, and gratitude. That heart of gratitude and joy must not be momentary or individual, but it must be eternal and of the whole. In other words, you must have the sacrificial mind-set that you will create the environment where you can be eternally be grateful and happy. In order for you to make God&#8217;s garden of joy into that of the whole, you must heed this fact.</p>
<p>If there appears on this earth one person who comforts the heart of Father and brings smile, joy, and delight to Father, then Father will be happy. Therefore, even in the environment of despair and sigh, you must be able to manifest the value of the heavenly victory, heavenly hope and of the light of heavenly life. On this earth where conflicts and divisions caused by jealousy and envy are rampant, you must become the standard-bearer of peace and unity centered on the love of God.</p>
<p>On this earth where resentment, lamentation, sigh, interference, and tears are deep rooted, you must be able to recite a poem with smile and joy to praise the glory of God on behalf of all things. You must realize that, if you cannot do this, you will never make your way out of this satanic world.</p>
<p>Among you participants here, is there anyone who still possesses evil elements in the heart, the nature of evil Satan opposed to the ideology of the new Eden? When we appear before Father, we must do so in joyful spirit. God longs for us to appear in the highest spirit of joy that no one else in history could experience. Now, in regards to having hopes, or in regards to realizing life, love, and glory and manifesting their value, the time has come when you must stand in the highest historical place that the people on the side of Satan cannot even dare to catch up. Therefore, when you bear the cross, you must bear the highest cross.</p>
<p>Moreover, even if you stand in the most adverse and unfortunate position, only when you go through the course in which you can sing the glory of heaven, Satan will not dare to make false charges. Instead, when you boldly stride toward Satan and mock Satan&#8217;s power and all the evil elements of this earth, you can be considered as a person who is linked to the love of God. Just like Peter who said, &#8220;Who will snatch me away from the love of God that dwells within Jesus Christ,&#8221; you should be able to laugh at all the evil entities on the earth. Furthermore, there must appear on earth one person who can represent the past of ordeals, present, and the future, can sing the original happiness, love, and glory as the original man, and be able to say, &#8220;God! Please forget your sorrow of the 6,000 years through me.&#8221; If such a person does not emerge, then Jesus&#8217; grief of the cross will never be uprooted from this earth, and there will be no way to liberate the heart of Jesus who came to the earth and mourned in grief.</p>
<h3 align="center">The True Life That Can Bring About<br />
the Work of Recreation</h3>
<p>What kind of life then should you who are seeking the original Eden live? You must follow the example of Jesus. You must follow the example of Jesus and discover the universal and heavenly elements of joy to emerge as the embodiment of glory before God. At the same time, everywhere you go, you must become a true person who can introduce the happiness, life, and glory of God, and you should educate many people to offer gratitude to God.</p>
<p>What do these appear as? They appear as the words. The fall came into being as the result of faithlessness, and the work of resurrection of life also manifested itself through the words. Therefore, you who are searching for the heavenly city, in other words, the original Garden of Eden, you must cherish the words that God gave at the time of the creation and with those words you can introduce heavenly joy and introduce heavenly love, life and glory.</p>
<p>As you live on this earth, there must have been many times when because you have said something wrongly you have made miserable people more miserable, made sad people more sad, and bitter people more bitter. Moreover, there must have been many times when you have driven people who were in despair into greater despair, and drive confused people into more confusion. Everyone in this world has many experiences of having played this role of Cain, and this is the evidence of Satan&#8217;s existence.</p>
<p>Therefore, you must push this world aside and stand on the opposite direction. Furthermore, you must live a true life to rectify this world. No matter whom you are dealing with, you must wish the best for that person, and when that person feels heavenly joy and is delighted, you must also be glad together. Not only should you also have the heart of gratitude and new hope, but you must also have the heart that can see the glory of the light and produce the heart of peace. Moreover, you must manifest through your life the heart that seeks to unite everything into one.</p>
<p>If you cannot manifest all these through your daily life for the rest of your life, then after you go to the next world, you will not be able to sing the glory of God. Thus, if you want to go to Heaven and sing the glory of God, then first, when you are on the earth, you must spread the words and put them into practice for the sake of God&#8217;s will.</p>
<p>Furthermore, you must love the people on the earth on behalf of God, and you must pull up into God&#8217;s realm of life the people who are being dragged down into the realm of death, and you must proclaim the truth for Jesus, and you must cooperate to realize the will of God&#8217;s hope. Otherwise, you will not be able to go to the next world and praise God&#8217;s glory, and you will not be able to inherit the natural unfinished work as the eternal task.</p>
<p>Therefore, you must live to introduce the original garden of God and sing the life, love, and glory of Heaven; besides, you must make all people to live that kind of life. In other words, you must carry out the work of recreation on behalf of the creator, God.</p>
<p>You must also demonstrate utmost loyalty to God by offering your life on earth, and on behalf of all the created things you must be able to love not only the world of goodness but also the world of evil and sing the original ideal. When you achieve these things, you can become the true sons and daughters who are realizing the ideals of God&#8217;s creation and live eternally with God in the realm of God&#8217;s love and glory. You must understand this clearly.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love! Please allow Your happiness to be implanted on the garden of our hearts! Please allow Your life to be implanted, allow Your love to be implanted, and allow Your glory to be implanted!</p>
<p>Please allow Father&#8217;s joy, life, love and glory to be the eternal base of our minds, so that we can step over all the misfortunes of the earth, step over the world of darkness, and step over this world where divisions and conflicts are severe. We must become sons and daughters who can stand above sighs, interference and tears, and we must become people who can bring abundant joy to others, so please guide us who are deficient.</p>
<p>Father, we must stand before Father as true children today, and we must never indulge in happiness from the position of evil or centering on ourselves. Moreover, we know that Jesus came and led his life on earth also not for his own sake. This being the case, Father, please let the brothers be happy before we are happy, and guide us to bring joy to brothers before we rejoice.</p>
<p>Beloved Father, we hope with great sincerity that You will let us have the heart that can enable us to step beyond ourselves and walk the cosmic life course, and that You will allow us to follow the example of Jesus&#8217; life course and relate with true brothers only with goodness and love. Allow us to take possession of God&#8217;s joy, life, love and glory, and that You will establish one center that will keep us undivided centering on the relationship of true brothers.</p>
<p>If there is someone who genuinely loves others, then the original garden will manifest its eternal value through that person, so the children who are participating here, please guide them to become sons and daughters of heaven that Father hoped for, inside the realm of God&#8217;s love, and can sing Father&#8217;s glory without any shame.</p>
<p>Entreating that You will allow us to reveal our individual value as the object of beauty before Father and bow to Father with gratitude and glory, and that you will allow us to become children of eternal victory, we entrust everything to You.</p>
<p>Offering gratitude for having governed over us this hour, we prayed in the name of the Lord. Amen.</p></blockquote>
<p>&nbsp;</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html" title="Permalink to WE WHO ARE SEARCHING FOR THE HOMELAND, THE GARDEN OF EDEN" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html" rel="prev"><span class="meta-nav">&laquo;</span> LET US BECOME THE CITIZENS WHO TAKE POSSESSION OF THE KINGDOM OF HEAVEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html" rel="next">LET US BECOME PEOPLE WHO PARTICIPATE IN THE GLORY OF THE LORD <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,251 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WHEN WILL WE STAND BEFORE GOD? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/when-will-we-stand-before-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-849 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-849" class="post-849 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">WHEN WILL WE STAND BEFORE GOD?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T11:13:56+01:00"> <a href="/blog/2018/06/05/when-will-we-stand-before-god.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T11:14:04+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/when-will-we-stand-before-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">September 8, 1957<br />
Chung Pa Dong Church<br />
Seoul, Korea</h3>
<p style="text-align: center;"><em>John 3:12</em></p>
<div class="version-NIV result-text-style-normal text-html ">
<p style="text-align: center;"><em><span id="en-NIV-26133" class="text John-3-12"><span class="woj"><sup class="versenum">12 </sup>I have spoken to you of earthly things and you do not believe; how then will you believe if I speak of heavenly things?</span></span></em></p>
</div>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of compassion! Please appear in this garden of death with the light of life. Father of love! Please manifest Yourself in this wilderness, which is like a barren land. Father of glory! Please appear in the spirits who are desiccated with hunger and thirst with the grace of glory. Father of capabilities, please gather the lives that have been in death, and let this be the hour they can kneel down before Your holy altar.</p>
<p>Allow us to awaken these people, who are fast asleep. Please let sons and daughters arise who can awaken humanity, which is fast asleep and deep in confusion. By doing so, we earnestly hope You will let the gathering sons and daughters raise the signal light of life high and lead the people to the Father. At the same time let the day of joy come when they can guide humanity to the Father.</p>
<p>We have come before Your knees, so please allow us to reflect upon ourselves and examine whether we are prostrating before You with purified hearts. If there is some flaw in us that is not in accordance with the Father&#8217;s will, then Father, please shine the light of life upon our minds and allow us to repent. Please command our bodies with the power of the sacred spirit to produce the work of resurrection so that we may be liberated from sin.</p>
<p>Father, please allow this to be a time when each of us can be responsible before You, as well as solidify the bond with You and inherit the eternal, unfinished work of the Father. On the basis of this, please allow us to understand all the situations that have penetrated deeply into the Father&#8217;s heart. Please impart an internal mission to each person who is gathered here.</p>
<p>Father, please forgive all the things we have done in the past week that are not acceptable to You. If we still have minds and hearts that do not please You as we prostrate before You, then please inspect us with fire-lit eyes. We hope that You will allow us to make frank reports to You in this hour. Understanding our own faults, let us repent before the Father.</p>
<p>Please work equally with the sons and daughters who are scattered all across the countryside today and are fighting to uphold the torch of truth. Let Your hands fall upon their heads and fill their minds and bodies that they may be guided to pioneer the dark environment.</p>
<p>Please do not let the words of life proclaimed under Your guidance merely fall upon the ground. Please allow the sons and daughters who were in darkness to receive the grace of resurrection based on the manifested words of the Father. We sincerely wish that You will elevate these sons and daughters to be the keepers of the life of this people. Allow them to lead exemplary lives amid the grace of joy.</p>
<p>We earnestly entreat that You will bestow equal grace upon the sons and daughters who are building lonely altars in the countryside, all the altars gathered in Your name. By doing this, please allow the immediate dawning of the day of happiness when we can unite in the sphere of Heaven&#8217;s ideology and move toward the one world, the one will and the one purpose.</p>
<p>Hoping that You will govern us completely from the beginning to the end of the hour, we pray in the name of the Lord. Amen.</p></blockquote>
<p>The title of the speech I want to contemplate upon with you is, <i>&#8220;When Will We Stand Before God?&#8221;</i> I will speak briefly upon this topic.</p>
<h3 align="center">The Attitude of the True Men and Women of Faith<br />
Who must Stand Before the Father</h3>
<p>No matter how great human beings on earth claim to be, they have been born into the fallen lineage. In other words, they have original sin. For this reason, humankind has been plagued by a history of crime until now. In this world or universe, humankind is undergoing a course of conflict waged against evil in which they do not have clear ideas about things. As we go forward, looking at the one day of hope, you must have experienced in your daily life that countless wilderness conditions are blocking the way.</p>
<p>This being the case, you probably all know clearly that the question of how to become free of this kind of environment is what good and conscientious people have been yearning for throughout the course of history. Nonetheless, in order for us to become better today than tomorrow, we must pull God into the sphere of our lives in absolute, substantial reality. In other words, we are not to conceptualize His Deity only in logic or concept. We must come to know Him as a real and tangible Deity in our lives. This is a crucial issue for us, the people of faith.</p>
<p>Because human beings fell, the path of having to liberate themselves from the fate of the fall lies before them. Although until now countless prophets and enlightened men have exhausted their sincere hearts, patience and utmost effort for the sake of the path mankind must walk, that path has not been traveled to the end yet. It remains as the fateful, universal path.</p>
<p>Moreover, the barriers of sin human beings have established is not just comprised of one or two. They are so many that they block our path endlessly. Yet we are in the position to dismantle and cross over them all.</p>
<p>Standing in this position, humankind has come forward adoring this subject of faith, the absolute Deity. Yet they have come to realize that there are many facts about this being that they do not know. Therefore, you are not to understand the substantial existence of the Deity in obscure concepts. Similarly, it would be unreasonable to fathom the actual existence of God only in logical terms. This is because the Deity does not dwell merely inside the realm of logic. Can faith based on logical understanding of the Deity guide our lives and help us to attain perfection as the eternal embodiment of life? We find that there are many problems with this.</p>
<p>What must we do, we who are living in this kind of environment, to go before the true Lord and Father? We must understand that our desire to go before the Father is the historical hope of humankind. At the same time, it is the purpose of God&#8217;s dispensation.</p>
<p>What then blocks our path as we go in search of God and seek the road of faith? First, without you being aware of the cause, doubt that springs from within will block the path before you. Moreover, the test of sin will block your way. The power of death that takes you by surprise will block the road. We must cross over this pass of doubt, the pass of sin, and the pass of death.</p>
<p>Humanity has harbored hope that each of them might be linked to the eternal ideal, and that this linked relationship will rule over their lives and govern their purpose. Furthermore, human beings have unconsciously been longing for the one standard that can forge this eternal relationship. Human beings must pass through this kind of course.</p>
<p>Moreover, you have been longing to experience the actual existence of God in the sphere of your life. You have been yearning to meet with the substantial embodiment of God. However, when you try to set yourself to following that embodiment of God as the subject of faith, many things will arise that provoke doubt. Even if this takes place, you must never fall victim to the conditions of doubt, and you must pass over it. You must feel that you are under the huge shadow of death.</p>
<p>What then are you to do after feeling this? You cannot walk a true path of faith if you only hold this in your hearts. That is no way to bring a solution to these problems. If you acknowledge that God exists, then you must remain as the object of faith who can honestly bring out all of your doubts and place them before God. Moreover, you must be able to frankly reveal all the hardships you suffer because of your own sinfulness. In other words, you should reveal everything from your personal sins to the sins of the lineage you have inherited.</p>
<p>Not only that, you must overcome the situation of stagnating in the realm of death where you are powerless. You have done this in spite of the fact that you have the fate to fight with everything that blocks your path, in spite of the fact that you must be taking steps forward toward the eternal world of hope, in spite of the fact that you must enter the promised Kingdom of Heaven where you can feel the eternal ideals of life.</p>
<h3 align="center">The Way to Remove Doubts &#8212; Courageous Faith</h3>
<p>If you now have the desire to find God the Father, then you must throw away all the internal contents of doubt, sin and death that you have kept in yourselves until now. You cannot build a relationship with God and goodness in the position you have continued in until now and in the fallen environment linked with the history of sin. The environment which will allow you to become good is not this kind of environment. It is a new environment.</p>
<p>What then must you do to get out of this environment? You must have an earnest heart that cries out, &#8220;Father, since I am this inadequate, please receive me.&#8221; If such a heart securely settles in your minds, then you can enter the world of eternal life.</p>
<p>You must be able to expose the doubt that you have attained from your surrounding environment and say, &#8220;Father, please remove this from my mind and body.&#8221; You must have the courage to fully entrust the Father with yourself, your enslavement by sin. You must at least establish that mind-set at the center of your heart. Otherwise, you cannot walk the path of faith.</p>
<p>When God comes seeking us, the condition He puts forward is faith. Humankind must use faith to forget all about themselves, destroy the environment that causes doubt, and create the environment that induces faith. We must bring order to the sinful environment, make an environment of goodness, demolish the environment of death, and build an environment of life.</p>
<p>After completing all these things in God&#8217;s place, you can sing of His limitless glory centered on His love. You can personally manifest the authority of God. Mankind&#8217;s minds have been moved while looking forward to that one day. No one can deny this fact.</p>
<p>We must today ruthlessly dissolve the sinful environment in which we dwell. Moreover, we must put forward all that we have, able to explain all the doubts that we had until now concerning the relationship we had with the Father. We must obliterate all the sinful elements we have possessed until now. We must possess the standard of faith that can bring liberation from the powers of death.</p>
<p>What must we do to achieve this? You must find the road that can explain the doubts you have. You must find the path that will lead you toward life. If such a path did not exist in the human world, God could not come to us. If God is an actual being who stimulates one&#8217;s mind so that one can recognize one&#8217;s mistakes and repent, then you must without fail set the standard of the ultimate hope, life and human ethics that God desires. The day this can be done, the concluding period of history, must inevitably come some day.</p>
<p>How much thought have you given to this fateful, universal road? In reality you live in an environment today where you can become doubtful about the universe, this society, the world, and even about yourselves.</p>
<p>The central being who can bring the solution to all these problems is God. Moreover, God is also the only person who knows everything about which you are curious. He is the only absolute being who can satisfy your curiosity.</p>
<p>Therefore, you must put all these universal doubts connected to you on your shoulders and have the bravery to hand them all over to God. You must say, &#8220;God. I have come with all doubts of the universe. If there is a heavenly relationship between You and me, then I trust that You will not abandon me. Please accept all these doubts and bring resolution to them.&#8221; If there is someone who is leading a life of difficult conflict to resolve this situation, thinking that doing so is the duty of his faith, then even if he is alone, in the end he can surpass the average people of faith.</p>
<p>When we are trying to cast away the meddling of Satan, who blocks the path of goodness and opens the path of evil, when we are trying to pioneer on the individual level toward the goal of victory, then we must truthfully divulge all of our doubts to the subject of our faith. The act of divulging is a sacred thing. When you possess the sincerity that can challenge the universal limits of the consciousness you encounter and call out, &#8220;Father! Father!&#8221; then the Father must face you. God has the responsibility to deal with people like that.</p>
<p>Truth never violates the heavenly principles, and God never forsakes truth. Therefore, to resolve all the things that bring doubt in your mind, you must have the determination to cling to God and appeal with a heart of devotion, loyalty and utmost sincerity.</p>
<p>If this doubt is not cast away, there is no way that we can destroy the road of sin. No matter how much you were moved and inspired, if explanations are not given to remove your doubts, you can fall down again.</p>
<h3 align="center">The Words of Jesus,<br />
Who Penetrated the Historical Barrier of Doubt</h3>
<p>When we reflect on the origin of the fall, Adam and Eve fell because of doubt. Accordingly, if there is doubt in us in the course of restoration, then we must remove it. You must become courageous and determined so that you can bravely go before God to clarify the question.</p>
<p>Humankind has been striving hard to find answers to many questions concerning life and the universe. However, until now they could not find complete answers to their questions. Now if someone appears on earth who challenges the questions and totally exerts himself to find the answers with loyalty toward Heaven, God will raise him up and provide explanations to his questions.</p>
<p>During the long history, many prophets have come to reveal the secrets of the heavenly principles. However, the questions that have aroused the curiosity of humanity have not been answered in full. Therefore, Jesus had to come to give explanations for these universal questions. He had to come to resolve the sins of men. He had to come to solve the question of death.</p>
<p>Jesus was the only person who could provide solutions to these questions, to death, and to the sins of humanity. Moreover, more than anyone else, Jesus lived a truthful life for the sake of God. He transcended himself and tried to put the universal doubts to rest. Transcending his own glory, he worked hard for the sake of the glory of the universe. Without looking after himself, he sacrificed endlessly to fulfill the will of God before passing away.</p>
<p>By virtue of this consistent heart and lifestyle, Jesus Christ was elevated before Heaven as the foremost vanguard, representing history. Jesus cast aside the historical walls of doubt and confidently cried out, &#8220;Believe in me.&#8221;</p>
<p>Why were the words of Jesus &#8220;Believe in me,&#8221; set as the standard of faith? Jesus understood that it would take time to give explanations to put all doubts to rest. He put it in simple terms and said those words with the plan to introduce the road that would naturally lead people to realization.</p>
<p>Jesus not only understood the affairs of the human world; he also understood about the world in Heaven. This is the reason he said, &#8220;If I have told you earthly things and you do not believe, how will you believe if I tell you heavenly things?&#8221; (John 3:12) There is no way to cross the pass of doubt only with the words of men. We can resolve all doubt only through the words of Heaven.</p>
<p>When can we listen to the words of Heaven? That will be in the Last Days, which humanity has sought, the day of ultimate judgment about which Christianity talks. God has been guiding the dispensation of restoration based upon that time. However, when new words appear on earth which can remove all conditions and elements of doubt, death and sin, the problem is whether you have become someone who can receive them.</p>
<p>If you want to receive the words, then you must display your utmost loyalty for the sake of Jesus, just as Jesus displayed his utmost loyalty for the sake of Heaven. Moreover, you should understand that in the same way you need some vessel to hold the gift you are about to receive, when the valuable words which can explain all the doubts appear, you must have already become people who can receive them.</p>
<h3 align="center">The Path to Connect to God</h3>
<p>With what then can we receive these words? It is nothing other than with your devotion and loyalty. As Jesus practiced the utmost loyalty toward Heaven, you must also be loyal to Heaven and Jesus on behalf of the 6,000-year history. If you cannot become like this, then you can never step forward into the era when comprehensive explanations are given.</p>
<p>What kind of words then are these words of explanation? They will emerge as new words you have never heard before. These words will appear as the words that can explain away all doubt on the individual level and provide explanations for the questions concerning the world and the universe.</p>
<p>Moreover, what kind of system do these words have? It is difficult to express this in a few words, but to speak generally, they are the words that have the detailed contents which can explain the history of doubt passed down for 6,000 years.</p>
<p>In reality, such specific words will emerge in the future era. When we apply those future words to individuals, they will emerge as the words that can dominate our living environment. Furthermore, through those words, our lives can develop a close relationship with the governing authority of the Absolute Being of the eternal world. Those words must contain these specific contents. When we become united with the words which are in oneness with God, then no doubt, death or sin can infiltrate that place of unity.</p>
<p>Moreover, those words must become the absolute words that can bring our faith to perfection. They must be words which can enable us to pursue absolute goodness and feel eternal life.</p>
<p>When we examine the history of mankind&#8217;s search for truth, the universe was the first object of their investigation. In other words, humankind has been groping with the question, &#8220;What is this universe?&#8221; Next, they have been making inquiries centered on human beings. In other words, they have been groping with the question, &#8220;What is a human being?&#8221; Similarly, until now, humankind has been searching for the truth centering on reason. Yet is human rationality perfect? It is not. Rationality alone cannot achieve completeness. Furthermore, that rationality cannot help humankind raise the standard of absolute values. It cannot become the eternal ideology of human life.</p>
<p>Humankind had no choice but to recognize the Absolute Being, the Divinity, in religious terms. However, that was a humanistic Divinity whose purpose was to allow humankind to beg for forgiveness of their sins. It could not become a Divinity who transcends logic and makes a relationship with each human being. Strictly speaking, it was a Divinity based on human thought. Such a perspective on Divinity cannot be a perfect one.</p>
<p>True believers leaped a step beyond this position and came to recognize the Absolute Divinity. However, even as they recognized the Absolute Divinity, they could not make any actual relationship with the Deity in their life of faith. They merely remained in a state of logic. They could not solve the problems of how to feel the actual existence of the transcendent Divinity, and how the substantial existence of the Divinity could develop a relationship with them.</p>
<p>We must possess the ideology that can solve these problems. Moreover, this ideology must be able to represent the ideology of the universe, the value of human reason, human life, and finally, the ideology of the Absolute Being, the Divinity. That ideology must become linked to us. This cannot be achieved through some expression by human beings. This cannot be achieved by the cultivation of human character alone.</p>
<h3 align="center">The Standard of the Faith<br />
Through Which One Can Meet God</h3>
<p>Since we have been born within the realm of the new ideology of the heavenly principles, we have to find the universal ideology during our life. We must understand that Jesus passed through the ideology of the Divinity. We must believe and understand as a matter of course that Jesus stands on the highest standard of conscience and goodness, and that he is the representative of the entire character of God.</p>
<p>Why have we not become like Jesus? It is because, no matter what we do now, the environment we are in is rushing toward us powerfully. It is the force that oppresses our minds, which wants to accomplish something. People are ignorant of this fact. Moreover, even if our conscience is heading toward the highest good, in other words, toward the substantial existence of the Absolute Being, our mind cannot carry actions out smoothly. Why is that? It is because, as a ramification of the fall, this world has become a world of sinfulness.</p>
<p>The power of darkness, which is more powerful than the power of our minds, is oppressing our original minds and forcing us down. In Christian churches, they call this power of darkness &#8220;Satan.&#8221; We cannot but think about how to break through this power of darkness.</p>
<p>The power of darkness and the evil elements in our bodies are dragging us to the world of death by causing doubt and by causing us to carry out sinful actions. We must cultivate an environment that can obstruct them and push them away. The religion that is trying to achieve this is Christianity.</p>
<p>Thus, Jesus told us, &#8220;Believe in me,&#8221; in the same manner as he had a firm belief in God. Although that &#8220;me&#8221; was something only Jesus accomplished, who can produce such individuals and initiate a movement to multiply this in the human world? This cannot be done with human power. God must do it. Nonetheless, this is where man&#8217;s faith is needed. In other words, we must believe in God and march forward in the same way that Jesus chased the forces of darkness out of his surroundings by belief in God. Then, although Satan appears momentarily in the place where we are moving, eventually Heaven will come forward and defeat Satan. Jesus set the conditions of faith to determine this one standard.</p>
<p>To set the conditions of faith, to what level must we believe? You must not be content with just believing to the extent of your imagination. You are not just to believe to the extent that your thoughts can reach. People do not have the exemplary level of faith in this world today. If you believe for the sake of the substantial embodiment of the Divinity, then you have to set the standard of faith that can compare with the value of the great and lofty God.</p>
<p>To what extent then does the faith of the human beings of the present age reach? The extent of that faith is very low, as shown by the words of Jesus: &#8220;If I have told you earthly things and you do not believe, how will you believe if I tell you heavenly things?&#8221; (John 3:12) Similarly, Jesus spoke in very pessimistic terms about the faith of men. Can the people who are of the faith today set the absolute standard of faith? This is the problem.</p>
<p>Until today, Christianity believed in God only as a being inside the Bible. However, even within God, there is faith. As long as God has the infinite idea of creation, He has the conviction to fulfill this idea. That is something in which even God believes. Therefore, we must pursue infinite faith. If we possess such faith, then we can believe in all the words in the Bible.</p>
<p>Moreover, only when you can believe in all the words in the Bible can you think about the words of truth that even Jesus could not reveal while he was on the earth. Only by discovering in this way the parts that Jesus could not talk about, can you climb over the hill of universal doubt. You can then comfort the ancestors who have passed through universal death, tribulation and the universal history of sin.</p>
<p>Although you believe in the Lord, the subject of faith, you must not stop at just believing in Jesus. Based on the condition of believing in Jesus, you are to put your eternal life at stake and develop a relationship of faith with Jesus. On the foundation of having developed a relationship of faith with Jesus, you are to feel the substantial existence of God. If you genuinely believe in Jesus, then you can accomplish these things.</p>
<p>This will bring infinite progress to people who are searching for the course of limitless faith. The average Christians of today are not aware of this. Similarly, you must understand that God is waiting for true men of faith who are captivated by this idea of infinite faith. They are the hope for the realization of the Kingdom of Heaven.</p>
<h3 align="center">True People of Faith Are Not Influenced<br />
by the Evil Environment</h3>
<p>Now you must understand that you should be able to meet the conditions of life in your course of faith. You have to solidly pave such a path, because you must become connected to Heaven&#8217;s secrets. After passing through that, you have to cross the pass of doubt, the pass of sin, the pass of death, and the pass of all desires based on evil.</p>
<p>After crossing over all these passes, what is then to be done? We must then attend God. We must invite Him into our hearts, He who is the subject of goodness and life. This is the same state as that which Jesus spoke about, &#8220;At that day you will know that I am in my Father, and you in me, and I in you.&#8221; (John 14:20)</p>
<p>How wonderful it is to believe in the Creator, who has infinite desires, and to be at ease after inviting Him into our hearts. You must understand that this is what God wants from us.</p>
<p>The facts of spirit world are so many that you cannot record them all, even in many thousands of volumes of books. Because only a small part of spirit world has been shown to humankind until now, there is no way to explain spirit world with the books that are available now.</p>
<p>When you ask the question whether the words recorded in the Bible include the entire course of faith and have the content to restore the entire value, although some people might curse me for this, I would say no. God has taught men to believe in Jesus as a condition of faith and performed all kinds of works to make it possible for them to believe in him as the most valuable person.</p>
<p>As we believe in Jesus and build a relationship with him, God can more directly govern our lives. By being dominated by God, we can become connected to His value in the position of His object, and we can develop a relationship of heart with Him. Similarly, we can manifest the truth of God in our lives, and we can possess the elements that are reciprocal to the truth of God.</p>
<p>Eventually, we must build the living environment that can unite all doctrines, ideologies and all peoples. We can have the hope of goodness, the life of goodness, and the absolute value of goodness only after entering that sphere of life. If humanity stands in this position, then God can appear not only as the God of some specially chosen people, but as the God of all humanity. If you do not achieve this while you are alive, then you cannot become children of God&#8217;s direct lineage.</p>
<p>You have already embarked upon a road that does not categorize you as strangers. You are already walking this road. You are conducting your life of faith by placing your standard of faith in the personality of the universal Creator, Lord. When you reach this standard of faith, all evil elements will disappear from you. When that happens, you can digest everything in this world.</p>
<p>A true thing is not influenced by evil, even when it coexists with it. Therefore, no matter how evil the environment is, if you become the true sons and daughters of God, you will not be dominated by that environment. If you do not become such true people of faith, then you will not be able to face the heavenly principles, and you will not be able to go before God.</p>
<p>Why did Jesus call himself the only begotten son of God? Jesus put forth such difficult conditions of faith so that he could give people the benefit of being able to instantaneously make the leap once they believed. If humankind believes in Jesus with infinite faith and calls out toward Heaven with a sincere heart, then its faith can grow by leaps and bounds.</p>
<p>The higher the faith of you who are headed toward the center of Heaven, the more spirit world can work through you. If you possess the heart of infinite faith, you will be able to instantaneously feel the reality of the world that transcends the senses, as well as the facts of this universe, beyond your imagination. Yet humankind has lost all these amazing things.</p>
<p>When we believe that the attitude of faith is to progress infinitely, in the Last Days we must conduct the great universal battle to prevail over those who are asserting a faith that remains only within some limited sphere.</p>
<h3 align="center">To Become the True Sons and Daughters<br />
Who Can Stand Before God</h3>
<p>When we examine the course of history until now, we find that almost all of the many prophets and sages who came to introduce the new age were driven out. Our ancestors were the ones who drove them out. When Jesus came, the people of Israel disliked and opposed him. They did not know. They thought what they believed in was best. The chosen people at that time judged the dispensation of salvation that represented the universe and the cosmos according to their own whims. Similarly, our ancestors violated the road of heavenly principles. They have committed the mistakes that countless times undermine the works of the heavenly laws.</p>
<p>In the Last Days today, who can then possess one hundred percent faith? You who have embarked upon the battle to chase out sin must stand in that position. With a clear sense of responsibility, standing on that foundation of faith, you must make ceaseless effort to put your faith into action. If you cannot stand in that kind of position, then you cannot stand as the qualified object before the one who comes in the name of the bridegroom with the ideology of infinite love. You will not be able to develop a relationship with God, who commanded that you multiply limitlessly.</p>
<p>When we look at this, sin is the failure to believe. It is sin to not believe in the person whom God has sent. It is sin not to believe his words. Therefore, you must accept the universal ideology of God. You must march forward with unswerving conviction and faith. When you try to go out with such faith, there will arise doubts in your minds that will counter the faith.</p>
<p>This is because the forces of evil are at work in your mind. These forces of evil cause you to feel fear and anxiety. Therefore, you must not conduct a life of faith that gets engulfed by those forces of evil. You have to have the magnanimity that can digest and overcome those things. Because Jesus stood in that position, he did not even try to avoid the burden of the cross. How can anyone criticize Jesus? If someone genuinely believes in God, there is no way he can reproach Jesus.</p>
<p>We must stand in the same position as Jesus to find a new course of faith and travel through it. If we truly travel through a new course of faith, then we can find demonstrative fact in it, facts connected to God and related to God. When that takes place, we can find the road that will bring about the manifestation of the ideals of the Creator, who yearns for unification.</p>
<p>You who have come forward to follow the new path of faith with the determination to risk even your life, if you walk toward the hope of God with absolute belief, then through that course of faith, you can find value on the level of God. You must feel a sense of responsibility while possessing this kind of faith. You must become true apostles who act with this kind of faith. Without becoming like that, there is no way you can stand before the Father. You cannot stand before the Absolute Father as true sons and daughters or as loyal subjects.</p>
<p>Now, with new faith, we must hurdle this world of doubt, this world of death, this world of fear, to stand before the Absolute Father as true sons and daughters. If we understand the content of the faith that Heaven demands, then we must demonstrate this standard and go before Heaven. Without doing that, you can never become the true sons and daughters of God.</p>
<p>You must keep in mind that when you step forward with this kind of faith, you can build an eternal relationship with God. You will enjoy eternal goodness and life, and be eternally liberated from suffering and live in the eternal realm of Heaven.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>At one time, this world was entrusted to the faith that relies only upon God, but all that has fallen down. After that, the assertion was made that the earth must be claimed back through human reason. However, when we reflect now, it has become an established fact that the will cannot be accomplished through that either. Thus, we cannot but realize that we must rely on both Heaven and men. Heaven and humankind must cooperate.</p>
<p>Father, please do not leave us to be just what we are. We know that in this environment, humanity has had repeated failures as it traveled through the historical course. It cannot be done only with faith, and it cannot be done only by our own effort. We hope that You will give us the universal ideology and truth that can help us transcend ourselves and find the origin of our lives.</p>
<p>We know that while we possess the truth, we must simultaneously also set the standard through which Heaven can descend upon us. Please guide us to enter the position where we can call You &#8220;Father&#8221; from the position of a sound realization throughout a course of absolute faith.</p>
<p>Jesus told us to seek him in the relationship of a bride and bridegroom. Shimjung (heart) allows us to fathom the situation on the internal level. The words of truth also allow us to fathom the situation on the internal level. Please allow us to become connected to the words, and through those words, please allow us to understand truth and heart. Through the ideology of the heart, please guide us to the position where we can understand God&#8217;s heart. We earnestly make this request.</p>
<p>Father, please allow us to not remain in this extremely narrow environment today. Please allow us not to become so foolish as to become obsessed by trifling matters and lose our comprehensive value as a result.</p>
<p>Father, we wish from the depth of our hearts that You will allow us to adore the great grace of the Father and to behold the heavenly character of the Father. Since that character has not been manifested on earth until now, and since Heaven wants that character to be manifested through us, we hope that You will allow us to move toward You with a greater standard of faith, sincerity and loyalty that agree with that ideology. Please guide us to complete that responsibility.</p>
<p>Father, please bestow the last grace that You planned to allow at this time. Guide us to be victorious and proud before all humanity as the glorious sons and daughters of the Father. Let us receive in our daily lives the Father&#8217;s entire eternal ideology of faith and let it govern our lives today.</p>
<p>Hoping that You will implant all the words in their minds as the fountain of life, and that You will help these words have an impact on their minds, we prayed in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/when-will-we-stand-before-god.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/when-will-we-stand-before-god.html" title="Permalink to WHEN WILL WE STAND BEFORE GOD?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/jesus-true-heart-for-god.html" rel="prev"><span class="meta-nav">&laquo;</span> JESUS&#8217; TRUE HEART FOR GOD</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html" rel="next">LET US BECOME THE TRUE SONS AND DAUGHTERS OF THE TRUE FATHER <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,245 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Where Is the Refuge in Which Heaven Can Dwell? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-894 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-894" class="post-894 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1958">
<h1 class="entry-title">Where Is the Refuge in Which Heaven Can Dwell?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T15:50:28+01:00"> <a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T15:51:49+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1958.html" rel="tag">Speeches of Rev Sun Myung Moon 1958</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Former Church Headquarters<br />
Seoul, Korea<br />
January 12, 1958</h3>
<p style="text-align: center;"><em>Matthew 8:18-22</em></p>
<p style="text-align: center;"><em><span class="text Matt-8-18"><sup class="versenum">18 </sup>When Jesus saw the crowd around him, he gave orders to cross to the other side of the lake.</span> <span id="en-NIV-23365" class="text Matt-8-19"><sup class="versenum">19 </sup>Then a teacher of the law came to him and said, “Teacher, I will follow you wherever you go.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23366" class="text Matt-8-20"><sup class="versenum">20 </sup>Jesus replied, <span class="woj">“Foxes have dens and birds have nests, but the Son of Man has no place to lay his head.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23367" class="text Matt-8-21"><sup class="versenum">21 </sup>Another disciple said to him, “Lord, first let me go and bury my father.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23368" class="text Matt-8-22"><sup class="versenum">22 </sup>But Jesus told him, <span class="woj">“Follow me, and let the dead bury their own dead.”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father of love, I have come with words of truth in this hour. Please let the heart of the giver and the hearts of the receivers become one. Father, we wish for You to allow us to become one in heart and will so that when the Father stops, we stop. When the Father moves, we move.</p>
<p>Please allow us to feel the heart of Jesus, who was concerned about the faithless land of that time, comforted the sorrowful heart of God and felt heartbroken himself. On that foundation, please let our minds not stagnate in this hour. Let us act after connecting with the heart of the Father and the historical heart of Jesus.</p>
<p>Please allow us to feel the distressed heart of the Father. Let us experience the heart of Jesus Christ, who felt distressed for the salvation of humanity, so that the beloved brothers and sisters who have gathered here can cleanse all the sins of darkness that remain inside their hearts. Beloved Father, we ardently wish and hope for this.</p>
<p>We know that the work of Satan, who is trying to block the grace of the Father, is ahead us. Father, please allow us to escape from the invasion of Satan and be embraced in Your bosom of eternal love by understanding when and from what position comes the grace of the Father. Beloved Father, we sincerely desire and want that even just for this hour You will allow us to feel Your hands of compassion that have not forsaken foolish and inadequate us. You have sought for us while You were leading the dispensation for 6,000 years.</p>
<p>We have entrusted everything in this hour. Wishing earnestly that the Father will personally govern from the very beginning to the very end, I pray in the name of the Lord. Amen.</p></blockquote>
<p>You know very well that when God was creating all things of Heaven and earth, He began with the intention of finding eternal, peaceful rest in the created world. However, you also know well that this foundation God created was handed over to Satan because of the fall of man.</p>
<p>Consequently, although a long period of 6,000 years has passed, you must clearly understand that in not even one small corner of this earth has a nest, a place of rest, been secured. You have to fathom the aching heart of God that came into existence because of this.</p>
<h3 align="center">The Will of God Toward Adam and Eve</h3>
<p>What did God use then as the basis to create all things? He began to create all things through the eternal and unique words of truth. The purpose of God&#8217;s creation of Adam and Eve was His hope that they would perfect the purpose of those words and become the substantial bodies in which He could substantially dwell. Furthermore, when God blew in the breath of life, He tried to create a place of rest in their minds by dwelling there as the eternal subject of life. God created Adam and Eve after establishing this great purpose of the heavenly principles.</p>
<p>To put it another way, after creating Adam and Eve, God tried to establish the laws of life in the Kingdom of Heaven with words. Through their bodies, He tried to form the altar in which He could personally dwell. In their minds, God tried to build the holy temple where He could directly settle down.</p>
<p>However, the laws of the heavenly principles, which can act on behalf of the words of truth, also disappeared from human beings due to the fall of Adam. Adam was created as the body of God. When he fell, the temple in which God could live also disappeared from the human world. The basis of the mind where the invisible God could dwell, sitting on the eternal throne as the substantial hero, also disappeared.</p>
<p>The laws which represent the words, the ideology of creation and the body (the holy temple of all things) all went out of line with the original will due to the fall, so did the mind that can represent the holy of the holies in the invisible world. The sorrow of God began from there. Therefore, the minds of men, who were created for the sake of Heaven, also became sorrowful. The body that must relate with that mind also became sorrowful. The result was that the laws which represent the words of truth, based upon which the mind and body could move, also disappeared from human beings.</p>
<p>When we examine the standard and content of the basic principles of Heaven, where, among the innumerable people on this earth, would the laws of the words of truth that Heaven is seeking emerge? Where would the substantial temple, where God can dwell, emerge among those who were born of the sinful lineage due to the fall? Where on this earth would the temple that will become the holy of the holies, where God can dwell, instead of the infinite invisible world, emerge? Countless people throughout the course of history have tried to solve these things. Today, in this hour, you must realize that countless prophets and patriots have walked through a course of shedding blood and tears while offering many sacrifices, all to accomplish this purpose.</p>
<p>Therefore, there must now appear on this earth the person who possesses the words that can be considered the best in Heaven and on earth. A person must appear who can build the substantial temple of the invisible God to bring Him joy and give Him support. He must possess the cosmic value that represents Heaven and earth. The basis of one power which can represent the spirit world and the throne of the Father, which can also attain the substantial ideology to be able to move the world of creation, is the hope of God, the hope of humanity and the hope of all people of faith who must receive salvation today.</p>
<p>What have we humans lost? Looking at it centering on ourselves, we have lost the laws of the words based upon which we can stand before Heaven. We have lost our bodies where God can dwell and the temple of the mind that can represent the center of the throne of eternal life. Similarly, because people have lost all right of possession, they are endlessly struggling in search of something. Consequently, today you must consider the search for the words of God that can represent the heavenly principles as your own hope. Today and tomorrow, you must dash forward at full speed.</p>
<h3 align="center">The Words of Truth for the Sake of Building the Kingdom of<br />
Heaven and the Restoration of the Substantial Body</h3>
<p>After passing through the era of words, what kind of era will come? The era when we must pass through the substantial body will come. Consequently, the greatest purpose in twentieth century civilization today is actualizing the substantial realm, connected to the words of the basic principles. You have to understand that this is the reason that people in the Last Days today long for the appearance of the embodiment of the laws of the heavenly and human principles which God originally proclaimed to humankind.</p>
<p>If the words and the embodiment become one, people no longer remain at the level of materialistic animals, but are put in the position where they can perform the duties of the heavenly principles as the beings who possess the internal heart. You have to realize that their heart is stimulated by actions which can transcend the living environment and head toward the eternal ideology. When you think about this, if you do not set the standard with which the forces of your minds and bodies can relate, you can only recognize the existence of God as some conceptual deity. You cannot feel Him as a substantial deity.</p>
<p>Therefore, after connecting with the words and the substantial embodiment now, you must end the period of history centering on the will of the invisible sin that you have adored. If you cannot do that, there is no way for you to be in accordance with the purpose of the great dispensation of the heavenly principles. Furthermore, you will fall into a miserable situation where you cannot exist in this substantial world that we call the realm of the ideology of the creation.</p>
<p>You must realize that this kind of historical fate lies before you. Therefore, you must now connect with the words and move forward to connect with the one embodiment which can stand as living proof of the words. You must search vigorously for the place where you can solve all the problems.</p>
<p>If God were to come seeking us in the midst of all things of Heaven and earth, with what is He going to come? God will come with the laws of the words He spoke. This is the word of God for which all of humanity has hoped, the words that are greater than any other thought or words of any individual on this earth. Accordingly, it is your fate to restore the words established at the time of creation as the words that can govern your life. In other words, you must restore them as the words that can save your life.</p>
<p>Only after crossing over this can you form the one family, society, tribe and build the Kingdom of Heaven on this earth, using God- centered individuals as the foundation. Therefore, until the time that you fully digest the words as your own, you must overcome any kind of hardship and sorrow. You must feel that the course of conflict still lies before you.</p>
<p>When we look at reality today, religion represents the field of metaphysical truth and the natural sciences represent the field of physical truth. Where would all these go? We have lost the word due to the fall of Adam and Eve. By losing the words, we have lost the substantial embodiment. By losing the substantial embodiment, we have lost the ideology. Therefore, in the Last Days, we must restore this centering on some person. Therefore, one person who stands on the cutting edge of scientific civilization must appear today, in the concluding era of human history, as the embodiment who represents all physical ideologies.</p>
<p>When we look at ourselves, where must humanity head? Our bodies must be in a position to connect to the ideology of the natural sciences. Our minds must be in a position to connect with the world of the metaphysical and supernatural sciences.</p>
<p>However, although our minds try to perform goodness and live for Heaven, our bodies try to carry out evil and head toward the world. Living in this confused situation, divided into two, is the reality of human beings today. Therefore, people have been seeking endlessly, until now, for the master who possesses the words of Heaven that can unite these two and the laws of heavenly truth. People have been longing until now for the emergence of the new words, which can truly transcend the world of our minds and connect with the spirit world, but can also connect to the field of natural science.</p>
<p>Accordingly, if you possess these words today, you will live with more confidence than anyone else in the world. You will be overwhelmed by the joy of possessing the highest ideology that no one else in history could possess. Therefore, today you must at any cost find the laws of God&#8217;s words lost in the Garden of Eden.</p>
<h3 align="center">Jesus Came to Restore the<br />
Laws of the Heavenly Principles</h3>
<p>The history of Christianity, up to now, has been establishing the words. Christianity has been trying to find and install the words of Heaven&#8217;s laws through the one substantial being who represents the heart of Heaven. It has not been able to establish that completely. Therefore, in this era of the end of history today, you have the mission to build the nation of God by finding and establishing the new words of truth that can penetrate into the infinite spirit world and the natural sciences.</p>
<p>God must help people cope with that kind of mission to establish His own victorious will on this earth. This is the reason that God sent the one subject figure who can claim back the words that He gave to Adam in the Garden of Eden, &#8220;. . . of the tree of the knowledge of good and evil you shall not eat, for in the day that you eat of it you shall die.&#8221; (Genesis 2:17) God sent one person to the earth who could represent the heavenly principles, the hope of the universe and the hope of humanity. Not only that, he could also represent the internal heart and the external substantial body of God. That person was Jesus, whom you believe in today.</p>
<p>Jesus came with this kind of will. What were his mind and body like? Jesus&#8217; mind was not his own. His mind was the mind of the Father. Jesus&#8217; body was not his own; it was the body of the Father. Moreover, the words Jesus wanted to speak were not his own words; they were the laws of the heavenly way that represent the will of God. They were the words of hope for all humankind. Through those words, Jesus appeared on this earth as the substantial temple of Heaven, the representative of the throne of the substantial God.</p>
<p>Jesus had the mission to restore all people and raise the people with the words which included both the heavenly and the human principles. This was so God could recognize them as the substantial beings who possessed the value of the words. Possessing the 4,000-year-old will of the internal dispensation of God, Jesus felt irrepressible pain in his heart as he watched the people of this earth. The heart of Jesus was incredibly sorrowful as he watched the people who were living according to the laws of the fall based on bodily enjoyment, the people with fallen minds and bodies in which Satan could reside.</p>
<p>Because Jesus had the mission to achieve the orderly purpose centering on the laws of the heavenly principles, every one of his words, steps and actions was concentrated on testifying to the heavenly principles. On the contrary, because people who live within the realm of Satan are moving according to laws which are not in line with the heavenly principles, they do whatever they please.</p>
<p>Therefore, Jesus had to fulfill the mission to make these disorderly people live according to the conditional words of Heaven and to expand that from the level of the individual to the levels of a society, a people, a nation and the world. However, before he could do that, he died on the cross. The people of that time should have revered the words of Jesus as the unique and unchanging words of truth, the words of God the whole universe had been awaiting for 4,000 years. If they all had become the embodiment of those words, then Jesus could have created a place of rest where he could dwell in place of God. However, because their ignorance led them to become faithless toward the words of Jesus, Jesus could not create that kind of environment.</p>
<h3 align="center">The Mission of the People of Faith<br />
Who Are Living in the Last Days</h3>
<p>In the original Bible verses, a scribe came before Jesus and said, &#8220;I will follow wherever the teacher goes.&#8221; Jesus replied, &#8220;Foxes have their holes and birds in the air have their nests, but the son of man does not have a place where he can lay his head.&#8221; What Jesus meant by those words was that because there was no one who could receive his words as the words of hope, he could not find a place of rest for his heart.</p>
<p>Furthermore, only when a person comes forward who can understand the words of God and represent the heart of God centering on those words can Jesus establish the heavenly laws, live a heavenly life, and discuss the heavenly ideology. There was not even one such person. Accordingly, the heart of Jesus in looking at this world was indescribably distressed and sad. You must learn to feel the heart of Jesus, who was mourning because he could not find a place where the precious words of Heaven could rest.</p>
<p>In the Last Days today, what kind of mission then must you shoulder? You must become people who can possess the words of God in your minds and bodies. In other words, you must come to possess the words of God, which no one else could possess until now, completely in your minds and bodies.</p>
<p>Moreover, when we consider it from this position, what was the fall in the Garden of Eden? It was the failure to unite the mind and body as the place where the words of God could dwell. Therefore, now your minds and bodies must become the resting place for God. You are living in this kind of time. Therefore, you who are living in the Last Days must clearly understand that Jesus left without finding a person who could inherit his words on this earth.</p>
<p>What did Jesus then leave behind on this earth? Jesus left behind the words that came through his mind and body. Therefore, your first mission today is to alleviate the grief of God that came about because of the fallen people in the Garden of Eden, and also the sorrow of Jesus, who was pleading desperately to awaken the ignorant people 2,000 years ago.</p>
<p>If the words that produced the miraculous works of creation were to appear on the earth again, human minds would have to move according to those words. Although humankind has fallen, this must be so because they still have the original heart. Therefore, in this historical, concluding era, you must now find, during your life, the words that can move your original hearts and bodies. You have to clearly understand that if you cannot find these words, there is no way for you to form an eternal relationship with God. You will be enslaved by lamentation and grief.</p>
<p>What must you do for Heaven now? You must mitigate the sorrow of Jesus, who said, &#8220;Foxes have holes, and birds of the air have nests; but the son of man has nowhere to lay his head.&#8221; (Matthew 8:20) You shoulder the historical mission to alleviate this grief of Jesus today.</p>
<p>You must realize the words Jesus spoke then were not meant only for one young scribe. Those words apply to everyone in any period during the thousands of years of history. Therefore, the desperate voice of Jesus calling out to you is still heard in your ears today, in this moment. You have to clearly understand this.</p>
<p>What then is the central purpose of God doing away with the mistakes of the first Israel and unfolding a new movement by raising the Christians, the second Israel? He was trying to establish the temple of the words that Jesus was trying to build. Therefore, you must now recognize the words that God is conveying to you as the words of the eternal laws. You must think, These are the words of life for me. You must not only receive those words; you must also see them as the words with which He created humankind at the time of the creation. If you do not possess these words and cannot substantially feel these words of God through your flesh, you cannot become the sons of God.</p>
<h3 align="center">The Human Mind and Body must Become<br />
the Resting Place for God</h3>
<p>Consequently, God has been leading men to sacrifice their bodies and cultivate their minds to pursue goodness. Moreover, when the minds of people are near truthfulness, if the words which fulfill the purpose of that truthfulness emerge, God made it so that people will be pulled by those words. In this way, God hoped people&#8217;s bodies would also move harmoniously with their minds. You have to understand that God had this earnest and desperate heart that longed to reveal the words people could understand through their minds and bodies.</p>
<p>If in your course of seeking Heaven in your life of faith, you have not experienced your minds and bodies being governed by the words, then you can never escape from the realm of sorrow and mourning. You have no other choice but to remain in that state forever.</p>
<p>If, on the contrary, you have felt or experienced that the laws of the heavenly principles that represent your body and life, and your substantial and mental self has become one, you will not fade away from this earth for eternity when you go to the spirit world. Therefore, you must secure the one nucleus that will never disappear in your minds and bodies. You must establish the laws of the heavenly principles that can never be separated from your minds and bodies so that you can create the place of rest where God can dwell in person.</p>
<p>Thus, you must now reflect upon yourself as to whether you are capable of receiving the words of the laws of the heavenly principles. Now that the Last Days have come, everything will come to a conclusion. Philosophy will come to a conclusion, science will come to a conclusion, and the world economic system based on material will also come to a culmination point. At one point in the future, due to infinite progress in science, scientific research will invent improved food.</p>
<p>Furthermore, you who are living in the last concluding era today must repent about your faith until now and try your best to live according to the words Jesus gave us. Therefore, you must find the words of the Heavenly Father. If there is someone who is not trying to seek these words but instead forsakes them, they will surely be judged. Those who are avoiding or blocking the words that seek them to realize the holy of the holies of Heaven will surely perish. Because Jesus understood this, he could not speak all the words he wanted.</p>
<p>The more you feel a sense of mission to establish the laws of the heavenly principles, the more you must make your best effort. You must liberate the grieving heart of Jesus, who said, &#8220;If I have told you earthly things and you do not believe, how can you believe if I tell you heavenly things?&#8221; (John 3:12) You must understand that in the concluding era of human history today, the historical sorrow is implanted deeply inside Heaven and the earth. Accordingly, even in this moment, God is watching over all human beings today with concern for how they are living and how the faithful believers are conducting their life of faith.</p>
<p>Therefore, you must have room in your heart to cherish the words which represent the infinite universe, the words which represent the eternal laws. It will not be acceptable for you merely to have the vulgar hearts and vulgar emotions with which you have lived on the earth until now. You must come to possess a new heart that can receive the new words. Therefore, in this concluding era, when the temple of the words is sought, it is a great fear that you might become the heir of Adam, who betrayed the words of the heavenly principles.</p>
<p>Where did sin begin? It began from the point of not being able to receive the words of God. It was human responsibility to receive the infinite words, but that responsibility was not fulfilled. Therefore, the place of rest where you must welcome the words now must be your mind. In this manner, you must realize the substantial body centered on the words.</p>
<p>Those words are linked to the sphere of your character. In other words, your words must become the words which represent the laws of God&#8217;s heavenly principles. Your actions must become one with the words of those laws. Just as you come to know things through the Principle, when the substantial being who represents the words appears, God&#8217;s heart will dwell there. Therefore, those in whom God&#8217;s heart dwells move toward the direction where they can be connected to the eternal ideology. Their minds and bodies can live a life on behalf of the ideology of the Father in the actual sphere of life.</p>
<p>It is our hope to enjoy that kind of life. The place where the will is actualized is the ideal garden of Canaan and the lost original Eden. You have to clearly understand this.</p>
<h3 align="center">The People of Faith must Become the Brides of Jesus</h3>
<p>What was the grief of Jesus? It was the sorrow of not having a place of rest. Moreover, his sorrow was not having even one believer who could inherit the will of his mind and body. Not only did he have no one who could inherit his words, it was Jesus&#8217; sorrow that he did not have even one person who could attend his body as the body of God. This was the sorrow of God and the sorrow of all humanity.</p>
<p>Consequently, God and Jesus have been saying in the 2,000-year course of history since then, &#8220;I am your bridegroom and you are my bride,&#8221; and he has been entrusting his body to you who are like the bride. Jesus is hoping to usher in the one day of peaceful rest. You have to understand that, to found this one day, God and Jesus have been fighting from the background with concern.</p>
<p>If you live by the words of God, what must you do? First, you must create an environment in which you can become intoxicated with the words of God. You must then attain the qualifications of the bride who can relate with Jesus, the bridegroom. Even in this moment, right now, God is longing for the appearance of someone who can become Jesus&#8217; spouse.</p>
<p>God is trying to entrust Jesus to you, the prince of Heaven, the master of all things, and the Savior of all humankind. At that moment, you must stand in the position of the bride who can attend Jesus as the bridegroom. Only if you connect with the ideology of Jesus, the life of Jesus and the historical will of Jesus in this way can you become completely one with him.</p>
<p>Moreover, if you now shoulder the historical mission to realize the substantial being through the words, you must possess the words of Jesus as your own. You must consider the body of Jesus as your own. Not only that, the desperate heart of Jesus, who lived for all the humanity of the world, must rise in your minds and bodies. This is why for 2,000 years until now Jesus has been looking for the bride who can represent his ideology and attend him as the bridegroom. You have to understand that, even in this hour, Jesus is searching to find the true brides who, as the substantial beings who represent his will, can overcome everything about which he is concerned and can comfort Jesus.</p>
<p>Are you aware of the fact that Jesus, who lived the thirty years of his life to give everything he had, shouldered the cross and traveled the path of Golgotha from a position of being betrayed by the nation, the people, his tribe, his family and even by his beloved disciples? Do you understand Jesus&#8217; heart? Do you understand that situation? Moreover, do you understand the hope of Jesus? Who understands?</p>
<p>Jesus remained unchanged toward Heaven, even in the position of death. Bearing the cross on his back, he crossed over the path of the world Golgotha for the sake of the people. If you are ignorant of this Jesus, you cannot meet the one who is coming again with the ideology of world salvation.</p>
<p>Jesus went the path of Golgotha on behalf of the people. Jesus should have lived peacefully in the environment of the people, but because they were faithless, he had to walk the way of the cross for their sake, instead. Jesus should have reaped the victory of Heaven, but because the people betrayed him and he was driven out from the sect, the society and the family, he did not have any place to turn. He came with the hope of Heaven toward the earth, but all of that was undermined, and he was in a sorrowful situation. The result was that he had to walk the way of the cross alone on behalf of the people.</p>
<p>Therefore, you must understand now that the fate of the 2,000-year history since Jesus was to pioneer the path of Golgotha on the level of the world. You must also understand that Jesus has been struggling to cross over the path of Golgotha on the level of the world through the second Israel on the world level, as the bridegroom whom you long to meet.</p>
<p>The Qualifications of the Bride and the Mission of Christians</p>
<p>Where do your hearts lie today? Where is your body today? The position that you are in is the environment of the cross. You are facing the course of Golgotha on the level of the world on behalf of Jesus Christ. Because we have inherited the path of Golgotha on the world level, when Christianity today goes forward with the Gospels, no people or environment can avoid the path of Golgotha. The conflict of Golgotha on the world level centering on the Christian nation will take place. You have to understand that such a time is the Last Days.</p>
<p>Now you who are living in the end of the 6,000-year history must learn to fathom the heart of Jesus, who has walked the path of Golgotha on the world level until now. You must experience the heart which allowed Jesus to sacrifice his own body and mind and forgive his enemies. In this way, many true believers must emerge on this earth who can truly attend Jesus, who set the standard of loving his enemies.</p>
<p>At such a moment, the substantial foundation where Jesus can rest in peace will finally be realized on this earth. Where are you dwelling now? Just because there is individual persecution or the persecution of the family, have you tried to make preparations to leave? Because the people and the nation persecuted you, have you made preparations to leave? If there are such people, how would the heart of Jesus feel as he looks down upon them? You must have the mind-set, I will go forward toward Heaven even if the whole world, Heaven and earth were to oppose me. Although it is not clear how many people can be found on the earth who have such determination, which is the qualification of Jesus&#8217; bride, you must clearly understand that Heaven is looking for precisely this kind of person.</p>
<p>Because Jesus understood this heart of God, he could give up everything and sacrifice. Accordingly, now you must reflect upon the footsteps you are leaving behind. You must look back and see where are your footsteps. In doing so, you have to understand that the place of rest for Jesus, who is walking the path of Golgotha on the world level, is nowhere other than with you.</p>
<p>What mission did Jesus have while he sought his resting place on the earth? He had the mission to become the bride of God. If there was a disciple on the earth who attended him, then it was his mission to become one with him and become the bride of God. However, Christians today do not really understand this.</p>
<p>Christians in the world today are looking for Jesus, the bridegroom. Searching for Jesus, the bridegroom is to search for the Father, who is the master of that bridegroom. If you look at Revelation 14:1, it is written, &#8220;Then I looked, and lo, on Mount Zion stood the Lamb, and with him 144,000 who had his name and his Father&#8217;s name written on their foreheads.&#8221; In other words, to become the chosen child of the Father, it is not enough just to have the name of the lamb. The name of the Father must also be included.</p>
<p>Who are the 144,000 who will enter? Jesus&#8217; seal alone is not enough. Even if Jesus the bridegroom calls you the bride, the Father must bless you. Therefore, only when the Father can raise His hands and bless you as the eternal hero of humanity who has not fallen in the Garden of Eden can you be part of the 144,000. At that time, you can usher in the one day when you can set the eternal ideology of God as the center and feel the infinite love of the Father.</p>
<p>Moreover, because you have to become the holy of holies and the resting place of God, you must become the bride who can serve the body of Jesus and at the same time inherit his heart. Only when you enter the last stage where you can take charge of the heart of God through this process can God finally find peace through you. Not only that, Jesus, the Holy Spirit and we ourselves can also find peace. Yet people today are not well aware of this.</p>
<h3 align="center">The Mission of the New, Young Believers</h3>
<p>Among the people of faith today, there are those who are seeking a place to rest because they have received the blessing of God and are happy, but they must not do that. They still have the path of Golgotha before them. Therefore, you must now make the effort to follow the example of the life of Jesus, who crossed over the path of Golgotha. You have to clearly understand that in you lies the will of the heavenly principles by which you must stand in the reciprocal position to fulfill the will of Jesus and bring him peace and comfort.</p>
<p>Furthermore, when the words of Heaven and the embodiment of those words, Jesus and the Holy Spirit, as well as God, the subject of the words, can dwell in you, the purpose of the dispensation is finally realized. Only when you stand before Heaven as the representative of the value of the creation can God finally entrust all of His remaining tasks to you and rest.</p>
<p>When we think about how it is the course of the Christians to shoulder this amazing and gigantic universal mission, the people of faith must not just remain sitting down today. They must bring a movement of new life on the earth. However, you must understand that if in your progress on that path there is someone who tramples upon the holy of the holies of the words, in other words, the resting place for the words, then that person is your enemy.</p>
<p>Now you young people must go forward to fulfill what the ministers of the Christian churches are not able to accomplish. Many ministers today are guiding their flock to the wrong place. I am not saying this just to criticize the ministers and elders of the Christian churches.</p>
<p>This is the truth. Since they have misunderstood the will of God and have been trampling upon the flock of sheep, now the sheep are not to follow them. They are to seek other flocks of sheep and unite with them. You have to understand that it is the Unificationist ideology that has understood this mission and has been conducting this kind of gathering and movement.</p>
<p>Are there young men and women among you in whom life is throbbing? If there are, then you must attain the qualifications to go before the Christian ministers and elders today to testify to the heavenly principles. You must criticize their characters and judge them before the heavenly value. When you do that, Christianity today will be revived. You must have the uncompromising mind-set that whatever violates the heart of God, whether it is someone on earth or in Heaven, you will not tolerate it.</p>
<p>If you have entered the Unification Church today, you must transcend the religious concepts of Christianity. You must step above the skeptical concepts of the Christian faith. The position of the concepts of faith until now could not provide a place where God could rest nor a place where the substantial body of Jesus could be attended. You must have the audacity to step over them mercilessly and go beyond them.</p>
<p>You must not become like the young scribe in the Bible who came with some worldly conditions and tried to satisfy his own ambitions and greed. The position of Jesus who said, &#8220;Foxes have holes, and birds of the air have nests; but the son of man has nowhere to lay his head,&#8221; (Matthew 8:20) is the way that Heaven takes and the path that the heavenly principles move along. You must abandon everything and follow that path. Only if you take these steps can you become the sons and daughters of the Father who can inherit the unfinished task, the representatives of the heavenly will.</p>
<p>When you look back at all the ancestors during the historical course, Noah suffered for 120 years, Jacob suffered for 21 years, and Moses wandered for 120 years. Moreover, Jesus wandered for the entire 33 years of his life. If you are already trying to rest and enjoy yourselves, you are robbers and thieves of Heaven. If we rest before Heaven does, we are thieves. Therefore, you must sympathize with the heart that cried out, &#8220;Foxes have holes, and birds of the air have nests; but the son of man has nowhere to lay his head.&#8221; (Matthew 8:20) When you do that, Heaven will sympathize with you.</p>
<p>Moreover, you must feel the heart of Jesus who stayed up at night to pray for the sake of the Israelites and cried out that only God was his resting place. You have to feel deep in your bosom the heart of the bone-melting and blood-boiling pain of Heaven, which cannot be described in words. You must feel the heart that looked at the people and the world and shed silent tears.</p>
<h3 align="center">The Eternal Resting-Place of God</h3>
<p>If there are those among you who have been chased out as members of a cult and were derided as doomed, you will never perish. Jesus has been searching for this kind of person until now. Jesus has been looking for this kind of person as his resting place. Therefore, you must understand that before fallen humanity now is the fateful course in which they must find the subject of the words and the substantial bride and stand as the substantial body of God.</p>
<p>In setting the laws of the words, what must you do with your body? You are to reflect the unlimited light of God. When we examine this from the standpoint of the ideology of the creation, if our minds symbolize the sun, our bodies symbolize the earth. All things symbolize the laws of God&#8217;s words. In other words, all things symbolize the words of God. The earth symbolizes the human body. The sun symbolizes the human mind.</p>
<p>In this way, the creative powers of the eternal God form the sun. Centering on the sun, the earth circles. According to the movement of the earth, all things grow through the one set of orderly laws. They are passing through this kind of process without contradiction. Likewise, centering on the love of God, you must move when God moves and halt when God halts. You must maintain a relationship of the heart which will make it impossible for God to leave you behind, wherever He goes. By establishing the eternal ideology of God, Jesus and the Holy Spirit, when you stand in that position as the resting place through which the laws of the words can pass, then you can finally emerge as the representative of God, the lord of all things.</p>
<p>However, you have failed to become dignified before God, the earth and all things. You who have failed to cope with this historic mission cannot dare to open your mouth and utter any words. Accordingly, you must make note that this kind of universal mission lies with you.</p>
<p>Jesus knew that if someone interfered with him in the course he was traveling, it was not simple interference. He knew that even the enemies who blocked his way were, as it turns out later, in the position of doing it for his sake. This is why Jesus could forgive and love them, and in the end, even wish them blessing.</p>
<p>Therefore, you must realize that when enemies appear in the middle of the path you are walking, their purpose is to set you straight on the course from the deviation you have made to the side path. Thus, you must have the attitude to wish blessings for those enemies, and pioneer the path of Golgotha on the world level. In this way, you must cross the path of Golgotha on the world level and build, in your minds and bodies, the garden of rest where God, Jesus and the Holy Spirit can dwell. By winning all the battles with Satan, you must become someone whom even Satan can bless as the son of God.</p>
<p>Furthermore, only if you can become someone who can drag Satan before God and request a trial, saying that this Satan is the enemy that has been trampling upon humankind for 6,000 years, can you stand as the ruler who can govern the universe. For 6,000 years humans have been dragged before God, where accusations and charges were made. Now you must drag Satan before God and press charges against him.</p>
<p>Now you must possess the heart that can connect with the heart of God and the body that can connect with the laws of God. If this takes place, there cannot be any mistake or friction there. There will only be the unification of the ideology, action and life. Moreover, when this is done, God can dwell on the earth to find the eternal resting place and rejoice for eternity with humankind. You must keep this in mind.</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html" title="Permalink to Where Is the Refuge in Which Heaven Can Dwell?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/heaven-is-calling-us.html" rel="prev"><span class="meta-nav">&laquo;</span> Heaven Is Calling Us</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html" rel="next">Let Us Climb over the Hill of Historical Misfortune <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

View file

@ -1,248 +0,0 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WHY DOES THE LORD HAVE TO COME BACK? &#8211; FFWPU Ireland</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='stylesheet' id="content-blocks-css" href='/css/block-library.css?ver=6.6.5' type='text/css' media='all' />
<link rel='stylesheet' id='pdfprnt_frontend-css' href='/assets/vendor/pdf/css/frontend.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<link rel="canonical" href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head>
<body class="post-template-default single single-post postid-822 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button>
<div id="wrapper" class="hfeed">
<div id="header-full">
<header id="header">
<div id="masthead">
<div id="branding" role="banner" >
<picture class="site-banner">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding -->
<a id="nav-toggle"><span>&nbsp;</span></a>
<nav id="access" class="jssafe" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul id="prime_nav" class="menu"><li class="menu-item menu-item-1"><a href="/index.html"><span>Home</span></a></li>
<li class="menu-item menu-item-has-children menu-item-2"><a href="/about.html"><span>About Us</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-2-1"><a href="/the-founders.html"><span>The Founders</span></a></li>
<li class="menu-item menu-item-2-2"><a href="/about-us-organizations.html"><span>Organizations</span></a></li>
</ul></li>
<li class="menu-item menu-item-3"><a href="/videos.html"><span>Videos</span></a></li>
<li class="menu-item menu-item-has-children menu-item-4"><a href="/events.html"><span>Events</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-4-1"><a href="/services.html"><span>Sunday Services</span></a></li>
</ul></li>
<li class="menu-item menu-item-5"><a href="/speeches/"><span>Speeches</span></a></li>
<li class="menu-item menu-item-6"><a href="/contact.html"><span>Contact</span></a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;height:1px;width:1px;"> </div>
</header><!-- #header -->
</div><!-- #header-full -->
<div id="main">
<div id="forbottom" >
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<div id="post-822" class="post-822 post type-post status-publish format-standard hentry category-speeches-of-rev-sun-myung-moon-1957">
<h1 class="entry-title">WHY DOES THE LORD HAVE TO COME BACK?</h1>
<div class="entry-meta">
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2018-06-05T10:32:19+01:00"> <a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html" rel="bookmark">June 5, 2018</a> </time></span><time class="updated" datetime="2018-06-05T10:32:39+01:00">June 5, 2018</time> <span class="bl_categ"> <a href="/speeches/categories/rev-sun-myung-moon-1957.html" rel="tag">Speeches of Rev Sun Myung Moon 1957</a> </span> </div><!-- .entry-meta -->
<div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><h2 align="center">REVEREND SUN MYUNG MOON</h2>
<h3 style="text-align: center;" align="center">Chung Pa Dong Church<br />
Seoul, Korea<br />
May 26, 1957</h3>
<p style="text-align: center;"><em>Matthew 12:38-50 </em></p>
<p style="text-align: center;"><em><span class="text Matt-12-38"><sup class="versenum">38 </sup>Then some of the Pharisees and teachers of the law said to him, “Teacher, we want to see a sign from you.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23529" class="text Matt-12-39"><sup class="versenum">39 </sup>He answered, <span class="woj">“A wicked and adulterous generation asks for a sign! But none will be given it except the sign of the prophet Jonah.</span></span> <span id="en-NIV-23530" class="text Matt-12-40"><span class="woj"><sup class="versenum">40 </sup>For as Jonah was three days and three nights in the belly of a huge fish, so the Son of Man will be three days and three nights in the heart of the earth.</span></span> <span id="en-NIV-23531" class="text Matt-12-41"><span class="woj"><sup class="versenum">41 </sup>The men of Nineveh will stand up at the judgment with this generation and condemn it; for they repented at the preaching of Jonah, and now something greater than Jonah is here.</span></span> <span id="en-NIV-23532" class="text Matt-12-42"><span class="woj"><sup class="versenum">42 </sup>The Queen of the South will rise at the judgment with this generation and condemn it; for she came from the ends of the earth to listen to Solomons wisdom, and now something greater than Solomon is here.</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23533" class="text Matt-12-43"><span class="woj"><sup class="versenum">43 </sup>“When an impure spirit comes out of a person, it goes through arid places seeking rest and does not find it.</span></span> <span id="en-NIV-23534" class="text Matt-12-44"><span class="woj"><sup class="versenum">44 </sup>Then it says, I will return to the house I left. When it arrives, it finds the house unoccupied, swept clean and put in order.</span></span><span id="en-NIV-23535" class="text Matt-12-45"><span class="woj"><sup class="versenum">45 </sup>Then it goes and takes with it seven other spirits more wicked than itself, and they go in and live there. And the final condition of that person is worse than the first. That is how it will be with this wicked generation.”</span></span></em></p>
<p style="text-align: center;"><em><span class="text Matt-12-46"><sup class="versenum">46 </sup>While Jesus was still talking to the crowd, his mother and brothers stood outside, wanting to speak to him.</span> <span id="en-NIV-23537" class="text Matt-12-47"><sup class="versenum">47 </sup>Someone told him, “Your mother and brothers are standing outside, wanting to speak to you.”</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-23538" class="text Matt-12-48"><sup class="versenum">48 </sup>He replied to him, <span class="woj">“Who is my mother, and who are my brothers?”</span></span> <span id="en-NIV-23539" class="text Matt-12-49"><sup class="versenum">49 </sup>Pointing to his disciples, he said, <span class="woj">“Here are my mother and my brothers.</span></span> <span id="en-NIV-23540" class="text Matt-12-50"><span class="woj"><sup class="versenum">50 </sup>For whoever does the will of my Father in heaven is my brother and sister and mother.”</span></span></em></p>
<h3 style="text-align: center;" align="center"><em>Mark 14:32-42 </em></h3>
<p style="text-align: center;"><em><span class="text Mark-14-32"><sup class="versenum">32 </sup>They went to a place called Gethsemane, and Jesus said to his disciples, <span class="woj">“Sit here while I pray.”</span></span> <span id="en-NIV-24788" class="text Mark-14-33"><sup class="versenum">33 </sup>He took Peter, James and John along with him, and he began to be deeply distressed and troubled.</span> <span id="en-NIV-24789" class="text Mark-14-34"><span class="woj"><sup class="versenum">34 </sup>“My soul is overwhelmed with sorrow to the point of death,”</span> he said to them. <span class="woj">“Stay here and keep watch.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24790" class="text Mark-14-35"><sup class="versenum">35 </sup>Going a little farther, he fell to the ground and prayed that if possible the hourmight pass from him.</span> <span id="en-NIV-24791" class="text Mark-14-36"><span class="woj"><sup class="versenum">36 </sup>“Abba,<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-24791a" data-link="[&lt;a href=&quot;#fen-NIV-24791a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Mark+14:32-42#fen-NIV-24791a">a</a>]</sup> Father,”</span> he said, <span class="woj">“everything is possible for you. Take this cup from me. Yet not what I will, but what you will.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24792" class="text Mark-14-37"><sup class="versenum">37 </sup>Then he returned to his disciples and found them sleeping. <span class="woj">“Simon,”</span> he said to Peter, <span class="woj">“are you asleep? Couldnt you keep watch for one hour?</span></span> <span id="en-NIV-24793" class="text Mark-14-38"><span class="woj"><sup class="versenum">38 </sup>Watch and pray so that you will not fall into temptation. The spirit is willing, but the flesh is weak.”</span></span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24794" class="text Mark-14-39"><sup class="versenum">39 </sup>Once more he went away and prayed the same thing.</span> <span id="en-NIV-24795" class="text Mark-14-40"><sup class="versenum">40 </sup>When he came back, he again found them sleeping, because their eyes were heavy. They did not know what to say to him.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-24796" class="text Mark-14-41"><sup class="versenum">41 </sup>Returning the third time, he said to them, <span class="woj">“Are you still sleeping and resting? Enough! The hour has come. Look, the Son of Man is delivered into the hands of sinners.</span></span> <span id="en-NIV-24797" class="text Mark-14-42"><span class="woj"><sup class="versenum">42 </sup>Rise! Let us go! Here comes my betrayer!”</span></span></em></p>
<h3 align="center">Prayer</h3>
<blockquote><p>Today we have arrived at the time when, on behalf of this era, we must look toward the gaunt hyung sang of Jesus Christ who appeared with Your permission before Your will to save all people. Father of compassion, Father of love, Father of mercy, Father of capability! Although the 4,000 years spent to prepare for the sending of Jesus was a long time, the 2,000-year history since the death of Jesus is also a long time. Please allow us to realize that we face embarrassment today and have no way to save our face before You.</p>
<p>Please allow us to understand the heart of Father who is gazing upon human beings today with hope after spending 6,000 long years for the sake of calling upon insignificant people, clinging to, working through and finding insignificant people. Father, we wish most earnestly that You will allow us to become sons who can show concern for the mournful heart of the Father on behalf of Jesus&#8217; gaunt appearance.</p>
<p>We know that, although there are many people who believe and are chosen, the sons and daughters whom You can personally love are extremely few. Father of compassion, please allow Your sons and daughters who have gathered here now to discover within themselves the heart that is concerned about the Father. We hope that You will allow them to become loyal sons and daughters who can expose their own shamefulness and abandon everything to follow the will that You desire.</p>
<p>Please manifest the granted divine favor centering on the sons and daughters gathered here. We who bear the mission to forecast the last days know that the time has come when we must take on the universal mission that You plan to entrust to us in the last days. Father, we entreat from the depth of our hearts that You will lead us not to prolong the great undertaking of the universal principles. Lead us not to carry out actions that will cause grief among people because of us.</p>
<p>Father, we earnestly pray that in this hour only the Holy Trinity will govern us and everything in ourselves. Let only the workings of the Father&#8217;s original nature, which represents all characters, to manifest through each one&#8217;s heart.</p>
<p>Now we have come forward with the words that You want to spread, so please let there be no gap between the heart of the conveyer and the heart of the receiver. Please lead us not to use human knowledge as the criterion to make judgments. We sincerely hope that You will allow this to be an hour when, having entrusted everything in the Father, we can be in harmony with Your commanding words and be offered as the one sacrifice before the Father. Please accept us and rule over us. We prayed in the name of the Lord. Amen.</p></blockquote>
<p>The title of the sermon I want to reflect upon with you is <em>&#8220;Why Does the Lord Have to Come Back?&#8221;</em> I will speak on this topic.</p>
<h3 align="center">Jesus Who Was Distrusted by the Israelites</h3>
<p>Jesus faces the dispensational fate to come back, because when he came to this earth he died hanging on the cross and after the resurrection he ascended to Heaven. Among the Israelite people who have been abiding by God&#8217;s dispensational will for a long time, Judaism had the mission to fulfill the will of God and lay the foundation of victory. This was the desire of God who chose them and was also their own hope.</p>
<p>Wishing for this one time when this will might be realized, God sent His only begotten son whom He could trust to execute the entire task of materializing the ideals of creation. Therefore, God had to realize the historical blessing through Israel by bringing Jesus before the human beings as their master, and bring a conclusion to the will of God&#8217;s dispensation of salvation.</p>
<p>However, why did Jesus pass away without being able to accomplish the dispensational will on this earth and build the ideal garden where he could sing the song of God&#8217;s glory? This must be the content that provokes sorrow in us today.</p>
<p>The course of Jesus, from the time he came to the earth to the time that he passed away, is not the same life course of the human beings who are living on earth today. He passed through the life course that is more difficult and lonely than anyone else&#8217;s. Moreover, Jesus emerged as the one person of the one sphere of the generation and sphere of time, holding the will of God and ideals of human beings in himself. There was not even one person on earth who recognized the value of Jesus with the same value that heaven attributed to him. Not only that, human beings could not serve Jesus as the central being of love who can connect all humanity with the love of God.</p>
<p>Consequently, Jesus led an unspeakably miserable life. Jesus did not have anyone to consider as a friend and discuss his own sorrow. Similarly, today you have to understand that he lived a more pitiful life than anyone else.</p>
<p>Jesus&#8217; coming to fulfill the will of God and for the sake of God&#8217;s glory should have been the joy of the Israelite people, the joy of Judaism and humanity. He, the only son of God, should have emerged as the master of all humanity. Yet, why did Jesus lead such a miserable life of hunger and sadness?</p>
<p>Although the time has changed and history has passed, you should be able to experience the sorrow and loneliness that Jesus felt while he was alive, and take to heart his misery. However, if you cannot become the sons and daughters who can return glory to God by vanquishing Satan on behalf of heaven and earth, then there is no way that you can alleviate the deep-rooted sorrow and loneliness of Jesus.</p>
<p>Jesus&#8217; hope was not in satisfying his own desires, but even by sacrificing himself to actualize God&#8217;s ideals of creation. Because human beings who were raised as the central beings of the created world fell, God has been guiding the dispensation of restoration for 4,000 years to realize the ideals of creation. Jesus, taking responsibility for the errors of the fallen human ancestor, appeared with this will of God as his own ideology and purpose.</p>
<p>However, the Israelite people did not understand this Jesus. This is not all. The Jewish people also did not know that, while Jesus represented the historical hope, at the same time he represented the entire will of God.</p>
<p>Although Jesus was an individual who stood in lofty solitude, he could represent history, and, while representing the present reality, he also possessed the eternal ideal of God that can represent the will of the heavenly laws. However, the Israelite people and the Judaism who had been faithful to the will of God did not realize that he was such a figure. So, rather than helping him in his path, they obstructed his way and persecuted him.</p>
<h3 align="center">The Heart of Jesus, Who Died on the Cross</h3>
<p>Then, what is the sorrow of Jesus who was looking down upon the Israelite people and humanity? That was not the sorrow that mourned over the environment that he could see. The sorrow of Jesus represented the painful heart of God who has been leading the dispensation of restoration for 4,000 years since the fall of Adam, and represented the countless prophets and sages who exerted themselves while upholding the will of God and passing through the long 4,000-year historical course. You today must feel that Jesus was this kind of man.</p>
<p>Then, what was the depth of Jesus&#8217; sadness? Because Jesus came while bearing the sorrow of God&#8217;s 4,000 years and the sorrow of many millions of prophets and sages in heaven, God, the many millions of believers, and the heavenly soldiers and angels understood the anguish of Jesus.</p>
<p>Jesus&#8217; grief was not for his own sake, but was for the sake of the Israelite people who killed him, and was the sorrow that carried concern for the Jewish faith and the path of the will. Although the Israelite people and the leaders of Judaism should have learned about this heart of Jesus, reflected upon it and repented, among them there was not even one person who understood the grief of Jesus.</p>
<p>Since the Jewish people could not attend Jesus as Messiah, who came with the historical heart of grief and the yearning for human beings, his sadness was magnified. In addition, we must know that because the Israelite people and the Jewish faith who should have fulfilled the will of God centering on Jesus completely forgot the desired will of God and betrayed Jesus, Jesus had to live a life of shedding infinite tears of grief on behalf of God&#8217;s tears for some thirty-odd years of his life. You must know that to complete his mission to introduce the situation and heart of the Father who held high hopes full of desires, he endured through the gushing forth of grief during the toilsome three years of public life, and had to suffer through the miserable and wretched anguish of being chased through the Garden of Gethsemane to the hill of Golgotha.</p>
<p>Then why did Jesus offer the prayer in the Garden of Gethsemane, &#8220;My Father, if it is possible, please let this cup pass from me. However, do not as I will, but as thou will&#8221; (Matthew 26:39)? That was because he was concerned who would take responsibility for the grief of God, countless believers and all human beings. It was because he knew that if he died on the cross, then the many believers who followed him would also walk the path of death. So, he was filled with a mournful heart and made that appeal to Heaven.</p>
<p>Jesus who acted on behalf of the sorrow of God and human beings, who sadly died on the cross on behalf of the sorrow of the countless living things of the future generations.E You are not to see this Jesus only as an historical Jesus, but you must find Jesus who might be in the same situation in the present reality of today, and become the heirs of Jesus who can reveal him to the world. Otherwise, there is no way to resolve the bitter grief and sorrow that have been tightly intertwined in history. The believers who have believed in Heaven until now have been striving to become the heirs of Jesus. Furthermore, we must remove Jesus&#8217; deep sorrow, and even remove the sadness that will be passed down to the descendants.</p>
<p>This era right now is the last days, which everyone is talking about and many prophets have predicted, and the time of the second coming, which Jesus referred to as the time when he will come back after he was rejected by the people and the religion and passed away. Then, living in this kind of time, what should you do? You should be able to comfort Jesus who is to come, and be more sincerely concerned about the will of heaven than Judaism and the Jewish people at the time of Jesus.</p>
<h3 align="center">The Believers of the Last Days<br />
Who must Be Responsible<br />
for the Historical Grief</h3>
<p>To comfort Jesus who is to come, in his place you must be responsible for the grief of the 4,000-year history of which Jesus took responsibility. Adding the 2,000 years after the death of Jesus, when even the Holy Spirit came and suffered in anguish, you must also be responsible for the historical grief of 6,000 years, so that you can inherit the great remaining feat of the heavenly principles which had been cut off because of Jesus&#8217; death.</p>
<p>We who are accountable to heaven cannot abandon the historical connection and lead a personal life. We must become the people of heart, which can feel responsible for the universe and the future, and, on behalf of the grief of heaven, heavenly soldiers and angels, and all people of this earth, can feel deep concern and sorrow for the fact that human beings are looking toward the judgment day of God and are dwelling in the realm of the fall.</p>
<p>Moreover, we must be able to say to Jesus, &#8220;We understand your grief and the reason you had to die.&#8221; We must experience the same desperate heart and situation of Jesus who came to this earth and suffered great anxiety to complete his mission of redeeming many people.</p>
<p>Unless you can become this kind of person, no matter how much you desire, you cannot serve Jesus who is the master of history, master of the universe, and master of the ideals of the future. You cannot relieve such grief of Jesus.</p>
<p>What you must understand today is the fact that Jesus has been locked up inside the sorrow of 4,000 years, and has walked the path of death on behalf of all people and descendants for some thirty-odd years of his life. Therefore, you must cry out to heaven, based on this historical situation. To climb over this and reach the realm of ideals of creation, you must set a new standard of faith and lead a testimonial life, in which you can even offer your life. Otherwise, you cannot become a person who possesses eternal value.</p>
<p>Then, as people of faith, what kind of mind-set must we have? In the same way that among the Israelite people there was the sect of Judaism that had the central mission, there must also be some central religious group for the fulfillment of the mission of world level Israelites centering on Christ.</p>
<p>In other words, because history unfolds itself with time-identity, God must conclude the dispensational history by establishing one religion that takes charge of the mission of the last days. We who have arrived at this last days must find that representative religion. When we try to find that religion, as a historical lesson we must reflect upon the mistakes of Judaism committed at the time of Jesus.</p>
<p>What we who are living in the concluding era of the world must understand is that, because the Lord who is to come again will follow the same path as Jesus, he will cross over the sorrowful pass on the world level to come to this earth again. Just as Jesus walked the path of hardships and was eventually chased to the hills of Calvary through the Garden of Gethsemane because of the opposition of the Israelite people and Jewish sects, the returning Lord will also suffer through the opposition of Israel and Judaism of the world level and climb over the road of Golgotha on the world level.</p>
<p>You today must experience the grief of God from many angles. You must experience the sorrow that God felt when looking at the Israelite people and the sects of Judaism, experience the sorrow that God felt when looking at history and concerned about future. When you become this kind of person, Jesus who is filled with grief can come seeking you. Furthermore, you must be able to eliminate all sorrows of the 6,000-year history, which includes the 2,000 years of history since Jesus. Otherwise, you cannot climb over the path of the world Golgotha with the Lord who is to come.</p>
<p>Until today the believers who follow Jesus do not realize that the three disciples falling asleep and not heeding the voice of Jesus when he was appealing to Heaven in the Garden of Gethsemane, and the disciples mocking and persecuting Mary Magdalene who, understanding the heavenly value of Jesus poured aromatic oil on his feet and wiped them with her hair to affirm the glory of the Lord who was to resurrect, all remained a source of Jesus&#8217; bitter grief. While walking that lonely path that no one recognized, Jesus felt the sorrowful heart. However, because only Mary Magdalene comforted Jesus, was concerned about him and could feel the heavenly, internal heart of Jesus that represented past, present and future, Jesus blessed her and, with the grace of joy, he could elevate her before the will of God.</p>
<h3 align="center">The Heart and Situation of Jesus<br />
That We Must Experience</h3>
<p>What kind of heart then must we, who live in the last days, go forward with? In the same way as Mary Magdalene who, longing for the Christ, who traveled the heartbreaking and exhausting course of toils, and forgetting all about her own position, prestige and dignity, went in search of the tomb with an anxious heart and finally was granted the glory to behold the resurrected Jesus; we must have the earnest and aching heart that surpasses Mary&#8217;s. If we cannot achieve this, then even if we find the Lord, we cannot attend him eternally.</p>
<p>Thus, in order for you to meet the Lord, to be embraced in his bosom of abundant love, and sing the glory of God in the garden of love, you must comfort God&#8217;s sorrowful heart of 6,000 years, comfort the sorrowful heart of Jesus Christ, and comfort the hearts of the countless believers who are in the spirit world. When you become such people, God and the believers of heaven will welcome you, Jesus and all people will also welcome you, and you will surpass the position of Mary Magdalene to create the ideal environment of life within the realm of God&#8217;s glory.</p>
<p>Then, what you have to understand today is that, your physical bodies which must restore the sad history of 6,000 years are not in the position of being separated from outside. God transcends history and carries on the dispensation. Therefore, you are also connected to the past, present and the future. Not only that, you as individuals have relationships of the front-back, left-right and up-down. You must understand this fact on your own and not make a careless judgment or act without deliberation.</p>
<p>You must never forget that you must accomplish, based on your individual selves, the will of God who is trying to set the eternal value that transcends history. Then, in order for humanity to welcome the Lord who is coming again with the grief of Jesus having suffered pain and sorrow in his heart, you must be able to substitute that pain and grief. In order for you to fulfill this mission, you must first understand the cause that forced Jesus to walk the path of ordeals. That took place because the chosen John the Baptist and even Jesus&#8217; own family abandoned Jesus. You must experience this situation of Jesus. Thus, in order for you to act on behalf of Jesus&#8217; hardships and relieve him of the deeply entrenched grief, you must complete your responsibility of attending Jesus for the central religion, Judaism, which had forsaken Jesus at that time.</p>
<p>For the sake of Jesus who was betrayed on the world level, even if you are alone, you would be able to fight against the world and step forward to thwart any kind of betrayal for the sake of Jesus who was betrayed by the leaders of Judaism. You must understand that this is the path of restoration.</p>
<p>In addition, in your generation you must single-handedly pay indemnity for and set the condition of victory for the whole condition of infidelity set by the family and tribe of Joseph, who prophesied the day of victory and prepared for the birth of Jesus. You must realize that, if you cannot do this, there is no way that the returning Lord can possess the ideal people, religious group and family.</p>
<p>Moreover, we must understand that Jesus did not just walk that path of sorrow. He also walked a path of infinite loneliness. Although Jesus wanted to reveal the whole will to the human beings on earth, but because there was no one who could receive it he could not reveal it, so he felt unspeakable loneliness.</p>
<p>You must understand that Jesus was distressed because he could not get rid of his loneliness, as he moved from this city because that city opposed him, and moved to this village because another village opposed him, and that in search of someone who can comprehend his mournful situation he wandered around. At least you have to understand Jesus&#8217; situation that although he came to this earth with the love of heaven and the relationship of heavenly principles, in the historical course his heart suffered the sorrow and loneliness that are not surpassed before or after him, and you must comfort him.</p>
<p>If there is someone who feels this heart of Jesus and lives in the position of having become one with this situation of Jesus, then with just few words, &#8220;Oh! Lord, Father!&#8221; he can connect with the heart of Jesus. However, there was no such person until now. Therefore, you must be this kind of person. To do that, you must transcend history and environment to experience the lonely heart of Jesus.</p>
<h3 align="center">The New Religious Group,<br />
Disciples and Family<br />
Serving the Lord</h3>
<p>Jesus was a lonely person, the master of sorrow and prince of grief. He was incredibly pitiful. No matter how miserable and lonely a person there might be on this land, you must realize that there is no one who is more pitiful and lonely than Jesus.</p>
<p>God has been frustrated because He did not have one person who could mourn on Jesus&#8217; behalf, share the anxiety on his behalf, and genuinely believe in Jesus. Therefore, you must bear in mind that we have the mission to represent the Heavenly heart and experience the bitter heart of Jesus, who came to find the people who can connect with the heavenly heart and be bonded to the original nature to return the glory of victory before Heaven, but could not fulfill that will.</p>
<p>You must imagine the appearance of Jesus who exerted himself to fulfill the will of God, and learn to sympathize with the pitiful Jesus. Until now we thought that after the ascension, Jesus stood on the right side of God as the lord of glory, but what we find now is that because Jesus could not fully accomplish the purpose for which he came to the earth, even after he went to the spirit world, he is in the pitiful position to pray for our sake, in the shoes of a penitent who takes charge of the sins of all people.</p>
<p>We must trust, follow and attend this Jesus in our actual life. Therefore, you must live to substitute for pitiful Jesus who has suffered sorrow on the world level and universal level and has suffered loneliness on the world and universal level, and you should live to share joy and suffering with Jesus. You should understand that now is the time that you must ask yourself whether you have become this kind of person.</p>
<p>Then, what must we, who have to inherit as a great undertaking the eternal will that Jesus tried to realize on earth and accomplish God&#8217;s ideals of creation, do in the future? What is the prerequisite demanded for this?</p>
<p>There must emerge a religious group, disciples and family who can serve the Lord who is coming to bring a conclusion to the 6,000-year history soaked throughout with infidelity and sin. Thus, if we are truly concerned about the will of God, we must transcend the relationships within the religious groups and set the new standard of religious order that can replace the historical faith in the practical reality of today. By forming the standard of disciples and family who can take charge of the future mission of the gospel and by laying the foundation for eternal victory, we can create the eternal garden of God.</p>
<p>Although the world, the people, the religious sects, family and even the chosen disciples betrayed Jesus who came for the sake of the humanity and the world, at least you today must become friends of Jesus and give consolation for his situation. For Jesus who mourned while looking at the betraying world, religious group and tribe, there should have been parents who can connect to his heart, but such was not the case.</p>
<p>As in the Bible verses recited earlier, when someone told Jesus that his mother and younger brothers had come, Jesus replied, &#8220;Who is my mother and my brothers? Whoever acts according to the will of my Father in heaven is my brothers, sisters and mother.&#8221; As we can see from these words, Jesus did not have parents and brothers who can sincerely comfort him.</p>
<p>Jesus found himself in such a sad, lonely and miserable situation and was forsaken by the tribe because he did not have true parents and brothers. Since he was betrayed even by John the Baptist who should have prepared the path of the Lord, he felt such enormous grief and bitterness. You must become connected to the situation of Jesus by feeling his heart, and, going one step further, you must be able to inherit all of his teachings.</p>
<p>Although Jesus&#8217; family and tribe were amazed by the miracles that took place from the time of Jesus&#8217; birth, because they were ignorant about the dispensation of God, they could not receive him as Messiah. Originally they should have understood the heavenly mission of Jesus and prepared the future path and environment of Jesus to become the stepping stone for Jesus who will be fulfilling the dispensational will. If they did that, then there would have been no need for Jesus to find the disciples. Because Jesus was raised through the relationship of lineage during some sixty odd generations from Adam to Joseph, if his family and tribe had guarded him and formed the tribal sphere that could confront and fight against the religious sects, people and world that turned against him, Jesus would have never stood in the position of grief.</p>
<h3 align="center">The Family Environment Which the<br />
Lord of the Second Advent Will Seek</h3>
<p>Then, when Jesus returns to this land, what will he seek? Because Jesus lost the family environment that can fight against the satanic world with him, when he returns, he will first seek the foundation of a family that can ward off the sources of his sorrow and pain.</p>
<p>Therefore, you must form one heart with Jesus and act as that family fence. The reason is that not having such a protective family enclosure was the cause of very bitter grief of Jesus. If at that time Jesus&#8217; family had become his fences and there appeared true children of God who could represent the heart of Jesus and testify, &#8220;Jesus is my true lord,&#8221; then there would have been no cause for Jesus&#8217; resentment. Therefore, you must become the protective family fence for the Lord who is coming again.</p>
<p>If there were brothers who can give consolation for Jesus&#8217; sorrow, then centering on them Jesus&#8217; grief could have been uprooted. Not only that, if the Jewish people became the disciples and collaborators of Jesus centering on his tribe, then his gospels would have gone beyond the boundaries of Judaism and spread to the world. If that had happened, the gospels of Jesus would not have been spread from the foreign soils; but, Jesus did not have such a tribe and people.</p>
<p>When the Lord, who passed away in such great sorrow, returns, what must we do? No matter what kind of difficulty we encounter, we must put our lives on the line and become his family level foundation and tribal level foundation when he returns and fulfills the will of God. This is the mission of the believers who are living in the last days. However, unfortunately, the believers of today are not aware of this.</p>
<p>Now, you must be able to pray, &#8220;Heaven, please entrust in me to resolve the bitterness of the 6,000 years. Please entrust the sorrow of Jesus and the sorrow of Heaven!&#8221;</p>
<p>By doing so, just like Jesus who, even as he passed through the Garden of Gethsemane and walked the path of sacrifice, the path of death, on behalf of the people, did not hold grudges against the unfaithful people who forced him to walk that path, we must possess the heart of parents and stand in the position of parents. Not only that, you must also experience the position of bride and bridegroom, and experience the position of heavenly family and tribe.</p>
<p>When this is accomplished, Jesus will return to this earth and, centering on you, build ideal family and tribe. That time is the last days. The family of hope God desired since the creation of the world, the ideal family that He sought as the ideal of creation did not appear on earth yet. Only when someone who can experience the aching heart of God and Jesus one hundred percent appears on this land, God and Jesus&#8217; bitter grief will be resolved.</p>
<p>Then, you who have gathered here are unlike other people! What is the mission that you must do? You must take charge of the mission to turn away from the position of the Israelite leaders, priests and John the Baptist who betrayed Jesus when he came 2,000 years ago and caused him to die on the cross, and to believe in and attend him. Jesus at the time of his death on the cross was a pitiful and sad person. We who are living in the concluding period of the 6,000-year history can serve the coming Lord properly only when we are connected to the heart of Jesus.</p>
<h3 align="center">The Standard of Life Which Jesus Set</h3>
<p>What kind of standard of life did Jesus, who came to fulfill the will of God, set? Jesus set the standard of life that abandons everything that was not the will. Therefore, you must also set the standard of faith, that can give up all of your ideals and desires or any condition of the world that is not in accordance with the will.</p>
<p>Today, what do you have that you think are the best? However, if that is not proven in heaven as something good for eternity, then it cannot truly become a good thing. Therefore, to possess things that will also remain valuable in heaven, on earth you must give up all that is not a part of the will.</p>
<p>You should be able to relinquish any habit that is not in line with heavenly principles. Even if everyone calls you a bad name and curses at you, you should become sons and daughters who put their life on the line and walk the path of God&#8217;s will, just like Jesus who walked the road of Golgotha on his own. You, who are walking the road of the will, one day will experience being abandoned. You must be ready for that. Because the world is a world of sin, and it is the principle that in the place where this world of sin agrees the relations of heavenly principle can never begin, you who are walking the path of the will must forsake this world of sin. Similarly, while traveling the short cut to Heaven after agreeing with the laws of heaven, there is the historical pass of tears, the historical road of Golgotha, and the world level road of Golgotha.</p>
<p>We who have embarked upon this road, must be able to maintain a hopeful heart, and even if we are rejected by the world, church and family we should think that it is persecution and mockery that substitute the 6,000-year history.</p>
<p>You who have gathered here unlike others, please do not mourn over the fact that there is persecution. Even when you are crying, you should not cry while you are thinking only about yourself. Instead, you should be able to pray, &#8220;To alleviate the resentment of Jesus and resolve the sorrow of Jesus on the world level, I will not hesitate to go toward any kind of position of suffering.&#8221; You also should be able to pray, &#8220;I will not hesitate even to embrace a miserable position on the world level, or even death! For this task, I will forsake all of my desires!&#8221;</p>
<p>If you cannot discover a new self who can cross over the pass of human ethics and connect with the laws of heavenly principles, in other words, if you cannot become people who can faithfully manifest, through your body and mind, the heart of God which represents the glory of resurrection, and put it into action, then you cannot be restored as the people who have perfected God&#8217;s ideals of creation, the original people who have nurtured the original nature. The greater the mission you have received from heaven, the greater the fight against the evil world that you must take on. You, who have gathered here today, should not try to fathom the eternal heavenly laws with your current concepts of faith. In the same way that the Jewish people, who longed so earnestly for the Messiah that comes in place of the heavenly laws, could not receive Jesus who came as Messiah, if you set the standard of eternal ideal with the Judaic-type of faith and the Jewish doctrinal perspectives centered on the Pentateuch of Moses, and become rigid, then without you being conscious of it, you will fall into the abyss of death. Therefore, you must take to heart the words of Jesus, &#8220;Those who love their father and mother more than me are not acceptable, and those who love their sons and daughters more than me are not acceptable&#8221; (Matthew 10:37).</p>
<p>If Jesus did not walk the road of Golgotha during some thirty-odd years of his life course, but only took care of himself, then the dispensation of restoration of God could not be carried out. Then, what kind of time is today, the time of the judgment of the last days? The period today is the same type of period as that of Sodom and Gomorrah in which Lot lived. Therefore, today when we are at the last period of history, you must entrust everything in heaven and live according to the commands of heaven. Otherwise, you will find yourself in the same position as the wife of Lot who has been washed away by the judgment on Sodom and Gomorrah.</p>
<p>Moreover, you must not take the same position as the believers of Judaism or those Jewish people who turned against Jesus. You also must not yield to Satan, even for one moment, and never forget that even in this moment the decisive fight over life and death is unfolding.</p>
<h3 align="center">The True Life of Faith That Receives<br />
the Lord of the Second Advent</h3>
<p>Then, in this kind of fight with Satan, what must you do to get rid of any room for Satan to attack from up-down, front-back and left-right? You must be able to stand in the position of parents and brothers who can fathom the sorrowful heart of Jesus and shed tears together and offer consolation, and you must become a comrade who can be moved by the grace of heaven that melts flesh and bones.</p>
<p>If there is some difficulty, then you should take it as your own. If there is joy, then you should offer it as that of parents, brothers and friends. Just as Jesus loved humanity, you should be understanding toward the difficult situations of brothers.</p>
<p>Great forgiveness is also possible only when you have understood the situation of that person one hundred percent. Because God understands the situation of human beings, He forgives them.</p>
<p>Thus, you must understand well, not only the situation of brothers, but also of Jesus. By forming the heavenly family and tribe in which members love and care for each other, you must build on this earth the world of goodness that Jesus was trying to restore.</p>
<p>If the believers of the earth who have been chosen today become one to form a Heavenly family, Heavenly tribe and Heavenly people, and if they step beyond the level of the people and emerge on behalf of the world and the 6,000-year history in the same way that Jesus represented the people and the 4,000-year history, then the execution of God&#8217;s judgment will be discontinued. When this takes place and your family and tribe becomes one with the whole, Jesus who passed away can manifest himself amid glory. To achieve this standard today, we have put up the door plate of the Holy Spirit Association for the Unification of World Christianity. We are also calling each other members of the family. As is evident, we are members of the same family. As brothers who are not actually brothers, and tribe who are not actually the same tribe, we have become brothers and a tribe of oneness and are forming Israel, which is responsible for the will of the heavenly principles.</p>
<p>For the sake of this task, we must walk the path of a pioneer while experiencing the sorrow of Jesus, and we must pass through the course of conflict with Satan and reach the position of perfecting the will of God. Only then, in joy we can receive Jesus who has passed away in sorrow. You must bear this in your mind.</p>
<h3 align="center">Prayer</h3>
<blockquote><p>Father! Through the words that you have taught us after you have come seeking us, we have understood that the root that we must ultimately seek is brothers and parents. We have realized that the emergence on earth of a family and tribe, centering on heaven, is the hope of God and Father. So we, who have embarked upon the lonely path unlike others, wish with the utmost earnestness that you guide us to become the sons and daughters of heaven who, representing the sorrow of Jesus, in the position of parents, friends, brothers and the tribe, cross over the pass of conflict that obliterates the powers of Satan, who is rebelling against the will of God on the world level.</p>
<p>We pray with sincerity, so the sons and daughters who are participating here, please fulfill the hope of the will through us, and please allow the ideal family and tribe of the will to be materialized through us! So, hoping earnestly that you will guide us to develop our minds and bodies into a place where Jesus can personally come and rejoice, sing and rest, so that we can become the brothers and members of the family centered on Heaven, we prayed all these words in the name of the Lord. Amen.</p></blockquote>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
<div class="entry-utility">
<span class="bl_bookmark">Bookmark the <a href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html" title="Permalink to WHY DOES THE LORD HAVE TO COME BACK?" rel="bookmark">permalink</a>. </span> </div><!-- .entry-utility -->
</div><!-- #post-## -->
<div id="nav-below" class="navigation">
<div class="nav-previous"><a href="/blog/2018/06/05/let-the-sleeping-world-awaken.html" rel="prev"><span class="meta-nav">&laquo;</span> LET THE SLEEPING WORLD AWAKEN</a></div>
<div class="nav-next"><a href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html" rel="next">LET US BECOME THE CITIZENS WHO TAKE POSSESSION OF THE KINGDOM OF HEAVEN <span class="meta-nav">&raquo;</span></a></div>
</div><!-- #nav-below -->
</div><!-- #content -->
<div id="secondary" class="widget-area sidey" role="complementary">
<ul class="xoxo">
<li id="nav_menu-2" class="widget-container widget_nav_menu"><div class="menu-menu-3-side-bar-menu-container"><ul id="menu-menu-3-side-bar-menu" class="menu"><li class="menu-item menu-item-1"><a href="/the-founders.html">The Founders</a></li>
<li class="menu-item menu-item-2"><a href="/services.html">Sunday Services</a></li>
<li class="menu-item menu-item-3"><a href="/contact.html">Contact</a></li>
<li class="menu-item menu-item-4"><a href="/speeches/">Speeches</a></li>
</ul></div></li> </ul>
</div></section><!-- #container -->
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="footer2-inner">
<div id="site-copyright"><b>Family Federation for World Peace and Unification (FFWPU) Ireland</b>
<br>Charity no. CHY 6071 All Rights Reserved 2013</b> <br>
<a href="/speeches/" target="_blank">Speeches</a></div> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:12px;margin:1em auto 0;">
Family Federation for World Peace and Unification Ireland
</div><!-- #site-info -->
</div>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show more