diff --git a/.env.example b/.env.example deleted file mode 100644 index 427b9616..00000000 --- a/.env.example +++ /dev/null @@ -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 diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 86ffca93..434f8d38 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -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." diff --git a/AGENTS.md b/AGENTS.md index cc02b214..c0efa389 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -14,9 +14,6 @@ migration continues. ## Working Rules - 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 @@ -24,8 +21,6 @@ migration continues. - 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 diff --git a/README.md b/README.md index d06b59f3..8f6dd6e3 100644 --- a/README.md +++ b/README.md @@ -110,18 +110,13 @@ 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: +This project deploys as a static Astro build. A deployment job should install +dependencies, run the build, and publish the generated `dist/` directory: ```bash npm ci -npm run check +npm run build ``` + +Use `npm run start` only when you intentionally want Astro to serve the built +output in an environment such as a local or Nomad preview job. diff --git a/archive-source/2013-sunday-service-archive.html b/archive-source/2013-sunday-service-archive.html index 173a666e..9ffa191c 100644 --- a/archive-source/2013-sunday-service-archive.html +++ b/archive-source/2013-sunday-service-archive.html @@ -7,11 +7,8 @@ 2013 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2013/.

- diff --git a/archive-source/2014-sunday-services.html b/archive-source/2014-sunday-services.html index a00f2bde..baccc921 100644 --- a/archive-source/2014-sunday-services.html +++ b/archive-source/2014-sunday-services.html @@ -7,11 +7,8 @@ 2014 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2014/.

- diff --git a/archive-source/2015-sunday-services-archive.html b/archive-source/2015-sunday-services-archive.html index f90db0e2..5687ddc5 100644 --- a/archive-source/2015-sunday-services-archive.html +++ b/archive-source/2015-sunday-services-archive.html @@ -7,11 +7,8 @@ 2015 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2015/.

- diff --git a/archive-source/2016-sunday-service-archive.html b/archive-source/2016-sunday-service-archive.html index 8ebda636..6bbcf1ac 100644 --- a/archive-source/2016-sunday-service-archive.html +++ b/archive-source/2016-sunday-service-archive.html @@ -7,11 +7,8 @@ 2016 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2016/.

- diff --git a/archive-source/2017-sunday-service-archive.html b/archive-source/2017-sunday-service-archive.html index 6c5f8823..e51f9133 100644 --- a/archive-source/2017-sunday-service-archive.html +++ b/archive-source/2017-sunday-service-archive.html @@ -7,11 +7,8 @@ 2017 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2017/.

- diff --git a/archive-source/2018-sunday-service-archive.html b/archive-source/2018-sunday-service-archive.html index 99ae810e..9c78b8be 100644 --- a/archive-source/2018-sunday-service-archive.html +++ b/archive-source/2018-sunday-service-archive.html @@ -7,11 +7,8 @@ 2018 Sunday Services Archive - FFWPU Ireland - -

This page has moved to /archive/sunday-services/2018/.

- diff --git a/archive-source/about-us-organizations.html b/archive-source/about-us-organizations.html index f22cc488..89788bf8 100644 --- a/archive-source/about-us-organizations.html +++ b/archive-source/about-us-organizations.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@
@@ -137,6 +138,12 @@ The following are just a few of the logos and links to these organizations’ - + + diff --git a/archive-source/about.html b/archive-source/about.html index 04c06ab2..ba007a23 100644 --- a/archive-source/about.html +++ b/archive-source/about.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2013.html b/archive-source/archive-sunday-services-2013.html index 8517daeb..12bcd8ee 100644 --- a/archive-source/archive-sunday-services-2013.html +++ b/archive-source/archive-sunday-services-2013.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2014.html b/archive-source/archive-sunday-services-2014.html index b3625f44..0bf93c24 100644 --- a/archive-source/archive-sunday-services-2014.html +++ b/archive-source/archive-sunday-services-2014.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2015.html b/archive-source/archive-sunday-services-2015.html index 0bd67752..dd04be57 100644 --- a/archive-source/archive-sunday-services-2015.html +++ b/archive-source/archive-sunday-services-2015.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2016.html b/archive-source/archive-sunday-services-2016.html index b2edb2da..9c43bc0d 100644 --- a/archive-source/archive-sunday-services-2016.html +++ b/archive-source/archive-sunday-services-2016.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2017.html b/archive-source/archive-sunday-services-2017.html index 6516d5cc..c6785588 100644 --- a/archive-source/archive-sunday-services-2017.html +++ b/archive-source/archive-sunday-services-2017.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/archive-sunday-services-2018.html b/archive-source/archive-sunday-services-2018.html index a57fb110..ff27592f 100644 --- a/archive-source/archive-sunday-services-2018.html +++ b/archive-source/archive-sunday-services-2018.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2013/08/03/news.html b/archive-source/blog/2013/08/03/news.html index f713bdca..7ea814d5 100644 --- a/archive-source/blog/2013/08/03/news.html +++ b/archive-source/blog/2013/08/03/news.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2013/10/25/add-event.html b/archive-source/blog/2013/10/25/add-event.html index 0cb648c0..624360ac 100644 --- a/archive-source/blog/2013/10/25/add-event.html +++ b/archive-source/blog/2013/10/25/add-event.html @@ -12,15 +12,20 @@ - + + + + - - - +
@@ -33,11 +38,7 @@ - + + + + + + + + + diff --git a/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html b/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html index 6df9f730..9caabb8b 100644 --- a/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html +++ b/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html b/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html index 82bc35c1..98e5f5a0 100644 --- a/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html +++ b/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html b/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html index ebec24d6..6a7d2ab8 100644 --- a/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html +++ b/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ @@ -137,6 +138,12 @@
- + + diff --git a/archive-source/blog/2016/01/03/happy-new-year.html b/archive-source/blog/2016/01/03/happy-new-year.html index 36431eb4..09780d85 100644 --- a/archive-source/blog/2016/01/03/happy-new-year.html +++ b/archive-source/blog/2016/01/03/happy-new-year.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@
-
image_pdf
Happy New Year 2016 greeting

Happy New Year 2016!

-

Let go of the past year and bring on the new.

-

2015 Wasn’t What I Thought It Would Be

-

…and That’s Okay.

+
image_pdf

Happy New Year 2016!

+

Let go of the past year and bring on the new! Check out this article by Dplife.info:

+

2015 Wasn’t What I Thought It Would Be 

+

…and That’s Okay.

image_pdf
@@ -137,6 +138,12 @@
- + + diff --git a/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html b/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html index d83b183d..1459ae98 100644 --- a/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html +++ b/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html b/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html index beb0093f..70dd24a9 100644 --- a/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html +++ b/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html b/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html index 379c3fc1..999573f6 100644 --- a/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html +++ b/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html b/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html index fc3e2a43..bbccf3a5 100644 --- a/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html +++ b/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html b/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html index e75903b8..7dee6317 100644 --- a/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html +++ b/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html b/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html index 9c1d37c8..06f93d87 100644 --- a/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html +++ b/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html b/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html index 056eb295..7e42b6e0 100644 --- a/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html +++ b/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html b/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html index f926e7cc..55efebeb 100644 --- a/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html +++ b/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html b/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html index 298d4b21..7924dd46 100644 --- a/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html +++ b/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html b/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html index 92f543f3..18b7cce1 100644 --- a/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html +++ b/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html b/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html index 362799b2..249f5b55 100644 --- a/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html +++ b/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html b/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html index bd67335d..20212759 100644 --- a/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html +++ b/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html b/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html index 63dfaf9e..318e3827 100644 --- a/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html +++ b/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html b/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html index a70072cb..6b2b517e 100644 --- a/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html +++ b/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html b/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html index 36bcfa96..a5a49c65 100644 --- a/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html +++ b/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html b/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html index 394db27d..b3e6d1d0 100644 --- a/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html +++ b/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html index d224c909..ccdebdd2 100644 --- a/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html b/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html index 68edd77b..0d22d69a 100644 --- a/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html +++ b/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html b/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html index 7116ec0f..dbdba104 100644 --- a/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html +++ b/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html b/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html index e98e0633..b45d672f 100644 --- a/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html +++ b/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html b/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html index f9a38d9d..71e3e490 100644 --- a/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html +++ b/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html b/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html index f687736e..4e0f9335 100644 --- a/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html +++ b/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html b/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html index 602f818c..3b344d1d 100644 --- a/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html +++ b/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html b/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html index 29d11fc5..1b462d82 100644 --- a/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html +++ b/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/for-whom-are-we-living.html b/archive-source/blog/2018/06/04/for-whom-are-we-living.html index d3aaa772..e223c8d1 100644 --- a/archive-source/blog/2018/06/04/for-whom-are-we-living.html +++ b/archive-source/blog/2018/06/04/for-whom-are-we-living.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html b/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html index 6ae3f48d..b7d1b8f8 100644 --- a/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html +++ b/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html b/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html index 040db65a..2a7987c7 100644 --- a/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html +++ b/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html b/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html index 4cf2e6dc..7f775f8c 100644 --- a/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html +++ b/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/let-us-untie-the-knot.html b/archive-source/blog/2018/06/04/let-us-untie-the-knot.html index e93ea1dd..32b453f5 100644 --- a/archive-source/blog/2018/06/04/let-us-untie-the-knot.html +++ b/archive-source/blog/2018/06/04/let-us-untie-the-knot.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html b/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html index 5ef8d622..e078f967 100644 --- a/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html +++ b/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html index 97f8f7e7..383aa390 100644 --- a/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html b/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html index 76d47aa7..5f40ae35 100644 --- a/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html +++ b/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html b/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html index 6bdea76b..e6df622c 100644 --- a/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html +++ b/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/heaven-is-calling-us.html b/archive-source/blog/2018/06/05/heaven-is-calling-us.html index ad24a4de..46271960 100644 --- a/archive-source/blog/2018/06/05/heaven-is-calling-us.html +++ b/archive-source/blog/2018/06/05/heaven-is-calling-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html b/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html index e04c1fc1..47d8e0df 100644 --- a/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html +++ b/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html b/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html index 68df3c2c..f4acbf78 100644 --- a/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html +++ b/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html b/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html index c0565424..f0501d9a 100644 --- a/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html +++ b/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html b/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html index 2b5ea5ed..d379ff01 100644 --- a/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html b/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html index a79040f2..e5cacc63 100644 --- a/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html b/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html index 93def44e..abc0f1d4 100644 --- a/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html +++ b/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html b/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html index d8f83a20..8ba37530 100644 --- a/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html b/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html index 722b1ec6..230002c7 100644 --- a/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html +++ b/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html b/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html index cab96ee9..fad2e98e 100644 --- a/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html +++ b/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html b/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html index 66176f3d..47b0af0e 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html index 073888ff..42db8e01 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html b/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html index 26f0c52a..4a64c4bb 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html b/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html index f7a75b23..04dd457e 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html b/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html index 3ed92884..88513e04 100644 --- a/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html +++ b/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html b/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html index 7a43cde0..4739cdb1 100644 --- a/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html +++ b/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html b/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html index ff0fdd4c..10f876f4 100644 --- a/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html +++ b/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html b/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html index 82a199e2..1a524cb5 100644 --- a/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html +++ b/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html b/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html index 2e480eb4..cdaf89a6 100644 --- a/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html +++ b/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html b/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html index cdd4006d..8a1c6411 100644 --- a/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html +++ b/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html b/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html index 36c962bc..14aa4796 100644 --- a/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html +++ b/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html b/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html index eb83b7fc..62e4fd68 100644 --- a/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html +++ b/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html b/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html index 5a4f86a3..23f3c7a1 100644 --- a/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html +++ b/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html b/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html index 5d4d500c..511b2d59 100644 --- a/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html +++ b/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html b/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html index 7b64a1ca..d6ed9b58 100644 --- a/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html +++ b/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html b/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html index 4fc5f2fc..866d843a 100644 --- a/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html +++ b/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html b/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html index 0c39a2d6..719d0349 100644 --- a/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html +++ b/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html b/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html index 1d20da7d..989ac2a3 100644 --- a/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html +++ b/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html b/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html index 3262bc8d..27a4e6eb 100644 --- a/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html +++ b/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html b/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html index 577fab10..8701fef5 100644 --- a/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html +++ b/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html b/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html index 68ea29e5..c90e75ac 100644 --- a/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html +++ b/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html b/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html index 7531438c..c1859599 100644 --- a/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html +++ b/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html b/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html index fefc609d..4df33dbf 100644 --- a/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html +++ b/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html b/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html index a8f71c4e..6d43a954 100644 --- a/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html +++ b/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html b/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html index d6fe96b3..366421c6 100644 --- a/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html +++ b/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html b/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html index a92670d9..8344dbf8 100644 --- a/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html +++ b/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html b/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html index 9f795478..fa717282 100644 --- a/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html +++ b/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/to-whom-do-you-belong.html b/archive-source/blog/2018/06/06/to-whom-do-you-belong.html index 58a810c9..d9a0161c 100644 --- a/archive-source/blog/2018/06/06/to-whom-do-you-belong.html +++ b/archive-source/blog/2018/06/06/to-whom-do-you-belong.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html b/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html index 325fd399..56bf1623 100644 --- a/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html +++ b/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/at-a-field-service.html b/archive-source/blog/2018/06/07/at-a-field-service.html index 7eef1a55..9b03ade3 100644 --- a/archive-source/blog/2018/06/07/at-a-field-service.html +++ b/archive-source/blog/2018/06/07/at-a-field-service.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html b/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html index 4d976e8a..f2ccaf67 100644 --- a/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html +++ b/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html b/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html index 854a7f34..d0f3a2dc 100644 --- a/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html +++ b/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html b/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html index 15d219ba..37826fe2 100644 --- a/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html +++ b/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html b/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html index b0729024..8807ec44 100644 --- a/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html +++ b/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html b/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html index 2b682c25..7686aa90 100644 --- a/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html +++ b/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html b/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html index 1b98460a..818b2afa 100644 --- a/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html +++ b/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-become-survivors.html b/archive-source/blog/2018/06/07/let-us-become-survivors.html index 6777b538..6dba014e 100644 --- a/archive-source/blog/2018/06/07/let-us-become-survivors.html +++ b/archive-source/blog/2018/06/07/let-us-become-survivors.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html b/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html index 13752b12..844e9e44 100644 --- a/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html +++ b/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html b/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html index 4e8f7798..e67c81c2 100644 --- a/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html +++ b/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html b/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html index 586cdc7a..2e4e8af3 100644 --- a/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html +++ b/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html b/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html index f860e819..3382f211 100644 --- a/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html +++ b/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/the-forsaken-jesus.html b/archive-source/blog/2018/06/07/the-forsaken-jesus.html index 10b07f33..ada58243 100644 --- a/archive-source/blog/2018/06/07/the-forsaken-jesus.html +++ b/archive-source/blog/2018/06/07/the-forsaken-jesus.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html b/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html index 0239804a..cce5164d 100644 --- a/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html +++ b/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html b/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html index 9d962d1e..9ca5c7e1 100644 --- a/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html +++ b/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html b/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html index 6e954ca9..e777e768 100644 --- a/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html +++ b/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html b/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html index 51f794e4..06bc6cdb 100644 --- a/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html +++ b/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html b/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html index 56705fd6..1f0e6035 100644 --- a/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html +++ b/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html b/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html index 1ad31f27..aee9634e 100644 --- a/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html +++ b/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html b/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html index 063ba223..65e81833 100644 --- a/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html +++ b/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html b/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html index 5840de16..a586e7ee 100644 --- a/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html +++ b/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html b/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html index 09189c6b..7945e2f1 100644 --- a/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html +++ b/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html b/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html index 16686c1d..fa7f1eea 100644 --- a/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html +++ b/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/inside-gods-stadium.html b/archive-source/blog/2018/06/10/inside-gods-stadium.html index 761ea69b..e4b203db 100644 --- a/archive-source/blog/2018/06/10/inside-gods-stadium.html +++ b/archive-source/blog/2018/06/10/inside-gods-stadium.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html b/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html index 6e5fc2d4..abf9b4ba 100644 --- a/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html +++ b/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html b/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html index e81f7826..96e533c0 100644 --- a/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html +++ b/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html b/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html index 3617041f..0d9d0ced 100644 --- a/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html +++ b/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html b/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html index d8dbd947..c75a8561 100644 --- a/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html +++ b/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html b/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html index 7008933d..84374321 100644 --- a/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html +++ b/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html b/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html index 172620e9..0311f1c7 100644 --- a/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html +++ b/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html b/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html index 5eb8cb78..f774492c 100644 --- a/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html +++ b/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/longing-for-eden.html b/archive-source/blog/2018/06/10/longing-for-eden.html index 203982e7..7f89c012 100644 --- a/archive-source/blog/2018/06/10/longing-for-eden.html +++ b/archive-source/blog/2018/06/10/longing-for-eden.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html b/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html index 50d5c3c7..bce28c43 100644 --- a/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html +++ b/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html b/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html index 0a3e76ed..0003308e 100644 --- a/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html +++ b/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html b/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html index b9909b46..8ff62391 100644 --- a/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html +++ b/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html b/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html index aed712a7..f12a2b4b 100644 --- a/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html +++ b/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/oh-where-shall-i-go.html b/archive-source/blog/2018/06/10/oh-where-shall-i-go.html index 1e439b99..94eeabce 100644 --- a/archive-source/blog/2018/06/10/oh-where-shall-i-go.html +++ b/archive-source/blog/2018/06/10/oh-where-shall-i-go.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/parents-day.html b/archive-source/blog/2018/06/10/parents-day.html index c6ef8a05..f68797fd 100644 --- a/archive-source/blog/2018/06/10/parents-day.html +++ b/archive-source/blog/2018/06/10/parents-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/process-of-restoration.html b/archive-source/blog/2018/06/10/process-of-restoration.html index dfc06d13..2e89547a 100644 --- a/archive-source/blog/2018/06/10/process-of-restoration.html +++ b/archive-source/blog/2018/06/10/process-of-restoration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-father-and-i.html b/archive-source/blog/2018/06/10/the-father-and-i.html index ad26b4b9..1f1534dc 100644 --- a/archive-source/blog/2018/06/10/the-father-and-i.html +++ b/archive-source/blog/2018/06/10/the-father-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html index a83b8107..7cad5fa3 100644 --- a/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html b/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html index 46cc19c0..005250e5 100644 --- a/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html +++ b/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html b/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html index 0588e82e..e20c616e 100644 --- a/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html +++ b/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html b/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html index 6cb0ea92..f102e5f4 100644 --- a/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html +++ b/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html b/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html index 20e2123d..d1ed5a2d 100644 --- a/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html +++ b/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html b/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html index 0aec3342..24fe14b0 100644 --- a/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html +++ b/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html b/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html index 6069cef7..9aa958b4 100644 --- a/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html +++ b/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html b/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html index 3f30edb7..2773c242 100644 --- a/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html +++ b/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-religious-persons-attitude.html b/archive-source/blog/2018/06/10/the-religious-persons-attitude.html index 7d58dcd6..dbdfbd8e 100644 --- a/archive-source/blog/2018/06/10/the-religious-persons-attitude.html +++ b/archive-source/blog/2018/06/10/the-religious-persons-attitude.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html b/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html index 3fa1b2a5..f3755a76 100644 --- a/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html +++ b/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html b/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html index 25c39ab0..1d8a81d0 100644 --- a/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html +++ b/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html b/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html index 98eaf612..725619f3 100644 --- a/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html +++ b/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/untitled-leaders-address.html b/archive-source/blog/2018/06/10/untitled-leaders-address.html index 6e3bdf24..e8a02732 100644 --- a/archive-source/blog/2018/06/10/untitled-leaders-address.html +++ b/archive-source/blog/2018/06/10/untitled-leaders-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html b/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html index e731a0e7..7e193248 100644 --- a/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html +++ b/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html b/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html index 39e62cf0..6ff894bb 100644 --- a/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html +++ b/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html b/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html index 950638bc..85e47d3f 100644 --- a/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html +++ b/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html b/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html index 53398483..4c5d4af3 100644 --- a/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html +++ b/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/america-and-gods-will.html b/archive-source/blog/2018/06/11/america-and-gods-will.html index e89930ae..0861cceb 100644 --- a/archive-source/blog/2018/06/11/america-and-gods-will.html +++ b/archive-source/blog/2018/06/11/america-and-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/boundary-line.html b/archive-source/blog/2018/06/11/boundary-line.html index 837e2af1..551f6e88 100644 --- a/archive-source/blog/2018/06/11/boundary-line.html +++ b/archive-source/blog/2018/06/11/boundary-line.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/childrens-day.html b/archive-source/blog/2018/06/11/childrens-day.html index 6958a572..05bcd612 100644 --- a/archive-source/blog/2018/06/11/childrens-day.html +++ b/archive-source/blog/2018/06/11/childrens-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html b/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html index b81a98ef..dfd5cb69 100644 --- a/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html +++ b/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/gods-hope-for-america.html b/archive-source/blog/2018/06/11/gods-hope-for-america.html index 484f245c..b24df6dd 100644 --- a/archive-source/blog/2018/06/11/gods-hope-for-america.html +++ b/archive-source/blog/2018/06/11/gods-hope-for-america.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/gods-will-and-christmas.html b/archive-source/blog/2018/06/11/gods-will-and-christmas.html index c80dac72..96478ee8 100644 --- a/archive-source/blog/2018/06/11/gods-will-and-christmas.html +++ b/archive-source/blog/2018/06/11/gods-will-and-christmas.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html index d203f1f1..ecd76fe3 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html index 64874bb6..7940f239 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html index 42515203..6a106d5c 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html b/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html index d22ae1a8..c3f76a5f 100644 --- a/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html +++ b/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html b/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html index 3e4530e2..951f071b 100644 --- a/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html +++ b/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/on-jesus-family.html b/archive-source/blog/2018/06/11/on-jesus-family.html index 6f9febdf..1eb8ff5f 100644 --- a/archive-source/blog/2018/06/11/on-jesus-family.html +++ b/archive-source/blog/2018/06/11/on-jesus-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/one-god-one-world-religion.html b/archive-source/blog/2018/06/11/one-god-one-world-religion.html index e7a0b6a8..90cf5087 100644 --- a/archive-source/blog/2018/06/11/one-god-one-world-religion.html +++ b/archive-source/blog/2018/06/11/one-god-one-world-religion.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/past-and-future-generations.html b/archive-source/blog/2018/06/11/past-and-future-generations.html index 2172d6fd..41b32e3f 100644 --- a/archive-source/blog/2018/06/11/past-and-future-generations.html +++ b/archive-source/blog/2018/06/11/past-and-future-generations.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/perfection-and-gratitude.html b/archive-source/blog/2018/06/11/perfection-and-gratitude.html index ee708be6..962ef122 100644 --- a/archive-source/blog/2018/06/11/perfection-and-gratitude.html +++ b/archive-source/blog/2018/06/11/perfection-and-gratitude.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/questions-and-answers.html b/archive-source/blog/2018/06/11/questions-and-answers.html index e2df6c7f..2ec7b76d 100644 --- a/archive-source/blog/2018/06/11/questions-and-answers.html +++ b/archive-source/blog/2018/06/11/questions-and-answers.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/safeguard-the-unified-front.html b/archive-source/blog/2018/06/11/safeguard-the-unified-front.html index 4c041b4f..cc1c54d2 100644 --- a/archive-source/blog/2018/06/11/safeguard-the-unified-front.html +++ b/archive-source/blog/2018/06/11/safeguard-the-unified-front.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/self-reflection.html b/archive-source/blog/2018/06/11/self-reflection.html index 329a8e18..3a46498a 100644 --- a/archive-source/blog/2018/06/11/self-reflection.html +++ b/archive-source/blog/2018/06/11/self-reflection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html b/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html index 6c90a4bb..bb700731 100644 --- a/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html +++ b/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html b/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html index f01e5942..7e52c64f 100644 --- a/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html +++ b/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html b/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html index 8a0af29e..63bc5190 100644 --- a/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html +++ b/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html b/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html index f3e6f117..5e52e2c5 100644 --- a/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html +++ b/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html b/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html index cb92b35b..00cceae8 100644 --- a/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html +++ b/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html b/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html index 7759727d..0147f65c 100644 --- a/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html +++ b/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-ideal-world.html b/archive-source/blog/2018/06/11/the-ideal-world.html index 7de68e9a..90193fac 100644 --- a/archive-source/blog/2018/06/11/the-ideal-world.html +++ b/archive-source/blog/2018/06/11/the-ideal-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html b/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html index 790cbb2f..4ee394f4 100644 --- a/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html +++ b/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html b/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html index cc1c6bc0..00b20ea0 100644 --- a/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html +++ b/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html b/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html index ed674798..d2be37c3 100644 --- a/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html +++ b/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html b/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html index cece42f6..4a3c8fa8 100644 --- a/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html +++ b/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html b/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html index c7ef04c7..6d572aee 100644 --- a/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html +++ b/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html b/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html index 173456cb..024d4639 100644 --- a/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html +++ b/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html b/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html index 4df430cf..59cb43da 100644 --- a/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html +++ b/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/gods-day.html b/archive-source/blog/2018/06/12/gods-day.html index 46be7753..9be769b3 100644 --- a/archive-source/blog/2018/06/12/gods-day.html +++ b/archive-source/blog/2018/06/12/gods-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html b/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html index cef8ba73..f0864e67 100644 --- a/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html +++ b/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/leadership-to-mft-captains.html b/archive-source/blog/2018/06/12/leadership-to-mft-captains.html index e48b8126..8c02951d 100644 --- a/archive-source/blog/2018/06/12/leadership-to-mft-captains.html +++ b/archive-source/blog/2018/06/12/leadership-to-mft-captains.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html b/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html index 682588b8..be4ade29 100644 --- a/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html +++ b/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html b/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html index 022009d5..2bc5ba8a 100644 --- a/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html +++ b/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html b/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html index 3160379a..5eb16769 100644 --- a/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html +++ b/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-blessing.html b/archive-source/blog/2018/06/12/the-blessing.html index 09a77bb2..915a8928 100644 --- a/archive-source/blog/2018/06/12/the-blessing.html +++ b/archive-source/blog/2018/06/12/the-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html b/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html index eeec65e3..9ce4d16e 100644 --- a/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html +++ b/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html b/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html index 273f7705..fd7d36ca 100644 --- a/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html +++ b/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html b/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html index d5f5c91f..af88fb9e 100644 --- a/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html +++ b/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html b/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html index 1cba6337..0e8d477d 100644 --- a/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html +++ b/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-realm-of-resurrection.html b/archive-source/blog/2018/06/12/the-realm-of-resurrection.html index 9dacf643..94c53002 100644 --- a/archive-source/blog/2018/06/12/the-realm-of-resurrection.html +++ b/archive-source/blog/2018/06/12/the-realm-of-resurrection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html b/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html index 07dbaea2..e381d414 100644 --- a/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html +++ b/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html b/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html index e9e25df6..e7727c80 100644 --- a/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html +++ b/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html b/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html index d2f47c59..57b5ddd1 100644 --- a/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html +++ b/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/to-whom-do-i-belong.html b/archive-source/blog/2018/06/12/to-whom-do-i-belong.html index 81b708aa..8d359821 100644 --- a/archive-source/blog/2018/06/12/to-whom-do-i-belong.html +++ b/archive-source/blog/2018/06/12/to-whom-do-i-belong.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html b/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html index 7aff3911..27a0d498 100644 --- a/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html +++ b/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/who-am-i.html b/archive-source/blog/2018/06/12/who-am-i.html index b5b4b07d..80c73936 100644 --- a/archive-source/blog/2018/06/12/who-am-i.html +++ b/archive-source/blog/2018/06/12/who-am-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/who-was-i.html b/archive-source/blog/2018/06/12/who-was-i.html index 700b02c8..cf64e8e3 100644 --- a/archive-source/blog/2018/06/12/who-was-i.html +++ b/archive-source/blog/2018/06/12/who-was-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/12/word-and-deed.html b/archive-source/blog/2018/06/12/word-and-deed.html index c669dcda..a4444fb9 100644 --- a/archive-source/blog/2018/06/12/word-and-deed.html +++ b/archive-source/blog/2018/06/12/word-and-deed.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/core-of-unification.html b/archive-source/blog/2018/06/13/core-of-unification.html index 26566966..47aa91d7 100644 --- a/archive-source/blog/2018/06/13/core-of-unification.html +++ b/archive-source/blog/2018/06/13/core-of-unification.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html b/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html index fafd65c3..c1f2a78e 100644 --- a/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html +++ b/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/god-depends-on-us-alone.html b/archive-source/blog/2018/06/13/god-depends-on-us-alone.html index 0b601b88..847fdb01 100644 --- a/archive-source/blog/2018/06/13/god-depends-on-us-alone.html +++ b/archive-source/blog/2018/06/13/god-depends-on-us-alone.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/good-day.html b/archive-source/blog/2018/06/13/good-day.html index d3f4a9b7..6fa57019 100644 --- a/archive-source/blog/2018/06/13/good-day.html +++ b/archive-source/blog/2018/06/13/good-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/happy-unification-church-members.html b/archive-source/blog/2018/06/13/happy-unification-church-members.html index 6aaf3198..770cb7da 100644 --- a/archive-source/blog/2018/06/13/happy-unification-church-members.html +++ b/archive-source/blog/2018/06/13/happy-unification-church-members.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/host-of-the-future.html b/archive-source/blog/2018/06/13/host-of-the-future.html index c875f6ad..7ce3b181 100644 --- a/archive-source/blog/2018/06/13/host-of-the-future.html +++ b/archive-source/blog/2018/06/13/host-of-the-future.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html b/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html index 58626b99..5ea7d4c2 100644 --- a/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html +++ b/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/let-us-thank-god.html b/archive-source/blog/2018/06/13/let-us-thank-god.html index b5fba0a8..a1500173 100644 --- a/archive-source/blog/2018/06/13/let-us-thank-god.html +++ b/archive-source/blog/2018/06/13/let-us-thank-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/let-us-think-once-more.html b/archive-source/blog/2018/06/13/let-us-think-once-more.html index 938bc240..e65fe66d 100644 --- a/archive-source/blog/2018/06/13/let-us-think-once-more.html +++ b/archive-source/blog/2018/06/13/let-us-think-once-more.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/living-sacrifice.html b/archive-source/blog/2018/06/13/living-sacrifice.html index 7d4a8f87..413d3293 100644 --- a/archive-source/blog/2018/06/13/living-sacrifice.html +++ b/archive-source/blog/2018/06/13/living-sacrifice.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/men-of-justice-rise-up.html b/archive-source/blog/2018/06/13/men-of-justice-rise-up.html index 116cd30c..ce7c2190 100644 --- a/archive-source/blog/2018/06/13/men-of-justice-rise-up.html +++ b/archive-source/blog/2018/06/13/men-of-justice-rise-up.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/our-destined-relationship.html b/archive-source/blog/2018/06/13/our-destined-relationship.html index cd01aa9a..606818c4 100644 --- a/archive-source/blog/2018/06/13/our-destined-relationship.html +++ b/archive-source/blog/2018/06/13/our-destined-relationship.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/our-newborn-selves.html b/archive-source/blog/2018/06/13/our-newborn-selves.html index 9ec9accc..3eecd8a5 100644 --- a/archive-source/blog/2018/06/13/our-newborn-selves.html +++ b/archive-source/blog/2018/06/13/our-newborn-selves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/our-pride.html b/archive-source/blog/2018/06/13/our-pride.html index 42a0f8f7..4f398f7d 100644 --- a/archive-source/blog/2018/06/13/our-pride.html +++ b/archive-source/blog/2018/06/13/our-pride.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/renewed-pride.html b/archive-source/blog/2018/06/13/renewed-pride.html index 3a0a5669..a8834d10 100644 --- a/archive-source/blog/2018/06/13/renewed-pride.html +++ b/archive-source/blog/2018/06/13/renewed-pride.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html b/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html index 4172344d..7991f358 100644 --- a/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html +++ b/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html b/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html index 4aa07b04..b690f850 100644 --- a/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html +++ b/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-desire-of-all-things.html b/archive-source/blog/2018/06/13/the-desire-of-all-things.html index d823d73f..3102ca27 100644 --- a/archive-source/blog/2018/06/13/the-desire-of-all-things.html +++ b/archive-source/blog/2018/06/13/the-desire-of-all-things.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-desire-of-god.html b/archive-source/blog/2018/06/13/the-desire-of-god.html index 9702b06e..287d0174 100644 --- a/archive-source/blog/2018/06/13/the-desire-of-god.html +++ b/archive-source/blog/2018/06/13/the-desire-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-heart-of-reunion.html b/archive-source/blog/2018/06/13/the-heart-of-reunion.html index 5f4657e4..109ffd4c 100644 --- a/archive-source/blog/2018/06/13/the-heart-of-reunion.html +++ b/archive-source/blog/2018/06/13/the-heart-of-reunion.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html b/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html index 9d55ef70..ef2c534a 100644 --- a/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html +++ b/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html b/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html index 58e3fb34..e49bb358 100644 --- a/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html +++ b/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html b/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html index 84b1bd1a..e1bc89eb 100644 --- a/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html +++ b/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-return-to-tears.html b/archive-source/blog/2018/06/13/the-return-to-tears.html index 064eabbe..7f3db8d3 100644 --- a/archive-source/blog/2018/06/13/the-return-to-tears.html +++ b/archive-source/blog/2018/06/13/the-return-to-tears.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html b/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html index e0c40396..085f24b8 100644 --- a/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html +++ b/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html b/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html index 2cde9202..ac49ba14 100644 --- a/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html +++ b/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html b/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html index 945246b7..98c3b2b3 100644 --- a/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html +++ b/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html b/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html index 119818a4..39a2ef3c 100644 --- a/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html +++ b/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/all-things-depend-on-us.html b/archive-source/blog/2018/06/14/all-things-depend-on-us.html index 5603d87e..93a458af 100644 --- a/archive-source/blog/2018/06/14/all-things-depend-on-us.html +++ b/archive-source/blog/2018/06/14/all-things-depend-on-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/gods-day-1978.html b/archive-source/blog/2018/06/14/gods-day-1978.html index cbaebecb..3581fc2d 100644 --- a/archive-source/blog/2018/06/14/gods-day-1978.html +++ b/archive-source/blog/2018/06/14/gods-day-1978.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/new-morning-of-glory.html b/archive-source/blog/2018/06/14/new-morning-of-glory.html index 0d5a35ec..cf3dfd6d 100644 --- a/archive-source/blog/2018/06/14/new-morning-of-glory.html +++ b/archive-source/blog/2018/06/14/new-morning-of-glory.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/sorrow-and-tears.html b/archive-source/blog/2018/06/14/sorrow-and-tears.html index a9974667..cd27657b 100644 --- a/archive-source/blog/2018/06/14/sorrow-and-tears.html +++ b/archive-source/blog/2018/06/14/sorrow-and-tears.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html b/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html index 3ef3f8ac..3134da2b 100644 --- a/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html +++ b/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/the-burden-of-destiny.html b/archive-source/blog/2018/06/14/the-burden-of-destiny.html index 413a94ea..ace4e58b 100644 --- a/archive-source/blog/2018/06/14/the-burden-of-destiny.html +++ b/archive-source/blog/2018/06/14/the-burden-of-destiny.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html b/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html index 480501f7..156f3726 100644 --- a/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html +++ b/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html b/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html index 8c179c43..7d0a66b8 100644 --- a/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html +++ b/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html b/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html index 5153beb1..5791e469 100644 --- a/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html +++ b/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html b/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html index 9290bbfd..81160cf2 100644 --- a/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html +++ b/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/breaking-the-barrier.html b/archive-source/blog/2018/06/16/breaking-the-barrier.html index 0dd22a9d..2d9cb4cd 100644 --- a/archive-source/blog/2018/06/16/breaking-the-barrier.html +++ b/archive-source/blog/2018/06/16/breaking-the-barrier.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html b/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html index 1804cbf2..a64f7111 100644 --- a/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html +++ b/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/for-the-future.html b/archive-source/blog/2018/06/16/for-the-future.html index c9817168..ffb7a795 100644 --- a/archive-source/blog/2018/06/16/for-the-future.html +++ b/archive-source/blog/2018/06/16/for-the-future.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/heavy-burden.html b/archive-source/blog/2018/06/16/heavy-burden.html index ab197f67..8ac5df3e 100644 --- a/archive-source/blog/2018/06/16/heavy-burden.html +++ b/archive-source/blog/2018/06/16/heavy-burden.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/history-and-our-responsibility.html b/archive-source/blog/2018/06/16/history-and-our-responsibility.html index 67eff9d3..d44f115f 100644 --- a/archive-source/blog/2018/06/16/history-and-our-responsibility.html +++ b/archive-source/blog/2018/06/16/history-and-our-responsibility.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html b/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html index 8cce58ef..ab07d301 100644 --- a/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html +++ b/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/how-we-are-born-again.html b/archive-source/blog/2018/06/16/how-we-are-born-again.html index 6f137e45..a0395e96 100644 --- a/archive-source/blog/2018/06/16/how-we-are-born-again.html +++ b/archive-source/blog/2018/06/16/how-we-are-born-again.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html b/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html index b18387d4..c8e9cb3e 100644 --- a/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html +++ b/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/let-us-be-grateful.html b/archive-source/blog/2018/06/16/let-us-be-grateful.html index 2bd86385..03a10b4e 100644 --- a/archive-source/blog/2018/06/16/let-us-be-grateful.html +++ b/archive-source/blog/2018/06/16/let-us-be-grateful.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html b/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html index 41b62b1a..3a651fa9 100644 --- a/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html +++ b/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html b/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html index e52418d1..46882b6d 100644 --- a/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html +++ b/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/my-life.html b/archive-source/blog/2018/06/16/my-life.html index 327524e7..2ab19008 100644 --- a/archive-source/blog/2018/06/16/my-life.html +++ b/archive-source/blog/2018/06/16/my-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/one-age-one-generation.html b/archive-source/blog/2018/06/16/one-age-one-generation.html index e756cdd3..4819a05c 100644 --- a/archive-source/blog/2018/06/16/one-age-one-generation.html +++ b/archive-source/blog/2018/06/16/one-age-one-generation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/parents-day-2.html b/archive-source/blog/2018/06/16/parents-day-2.html index 8e1498dd..139459f9 100644 --- a/archive-source/blog/2018/06/16/parents-day-2.html +++ b/archive-source/blog/2018/06/16/parents-day-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/perseverance-and-contemplation.html b/archive-source/blog/2018/06/16/perseverance-and-contemplation.html index a3d27c6a..43a8ea6e 100644 --- a/archive-source/blog/2018/06/16/perseverance-and-contemplation.html +++ b/archive-source/blog/2018/06/16/perseverance-and-contemplation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/preparation-for-blessing-i.html b/archive-source/blog/2018/06/16/preparation-for-blessing-i.html index 8e0fcfb9..2bbff6a3 100644 --- a/archive-source/blog/2018/06/16/preparation-for-blessing-i.html +++ b/archive-source/blog/2018/06/16/preparation-for-blessing-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html b/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html index 6760d2f3..f11d8078 100644 --- a/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html +++ b/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html b/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html index b2f9cbce..f506c605 100644 --- a/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html +++ b/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html b/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html index 24ee3196..81949ee5 100644 --- a/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html +++ b/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/spring.html b/archive-source/blog/2018/06/16/spring.html index 35ea29c5..6f8d8288 100644 --- a/archive-source/blog/2018/06/16/spring.html +++ b/archive-source/blog/2018/06/16/spring.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html b/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html index 6ad826f6..5c95e3fc 100644 --- a/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html +++ b/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html b/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html index db41c54d..01393d84 100644 --- a/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html +++ b/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-age-of-repentance.html b/archive-source/blog/2018/06/16/the-age-of-repentance.html index 0d5106e1..33db184c 100644 --- a/archive-source/blog/2018/06/16/the-age-of-repentance.html +++ b/archive-source/blog/2018/06/16/the-age-of-repentance.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html b/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html index 1a848fc2..29512bae 100644 --- a/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html +++ b/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html b/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html index a6723f37..6722339d 100644 --- a/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html +++ b/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html b/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html index 6c072cb4..91d471c7 100644 --- a/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html +++ b/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-day-of-all-things.html b/archive-source/blog/2018/06/16/the-day-of-all-things.html index cf9f4d66..ae47b3af 100644 --- a/archive-source/blog/2018/06/16/the-day-of-all-things.html +++ b/archive-source/blog/2018/06/16/the-day-of-all-things.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-glorious-sortie.html b/archive-source/blog/2018/06/16/the-glorious-sortie.html index 7f092e3f..3550dc93 100644 --- a/archive-source/blog/2018/06/16/the-glorious-sortie.html +++ b/archive-source/blog/2018/06/16/the-glorious-sortie.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-go-world-brass-band.html b/archive-source/blog/2018/06/16/the-go-world-brass-band.html index 140ce560..4f02e14c 100644 --- a/archive-source/blog/2018/06/16/the-go-world-brass-band.html +++ b/archive-source/blog/2018/06/16/the-go-world-brass-band.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-inheritance-of-love.html b/archive-source/blog/2018/06/16/the-inheritance-of-love.html index b7b5bd95..a0172a7b 100644 --- a/archive-source/blog/2018/06/16/the-inheritance-of-love.html +++ b/archive-source/blog/2018/06/16/the-inheritance-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-path-of-the-chosen.html b/archive-source/blog/2018/06/16/the-path-of-the-chosen.html index ea4558dc..856b922e 100644 --- a/archive-source/blog/2018/06/16/the-path-of-the-chosen.html +++ b/archive-source/blog/2018/06/16/the-path-of-the-chosen.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html b/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html index 529bce01..5ed056ff 100644 --- a/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html +++ b/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html b/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html index efbc1dac..561ecfa9 100644 --- a/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html +++ b/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/to-the-crusade.html b/archive-source/blog/2018/06/16/to-the-crusade.html index 28b79ada..b2597e8d 100644 --- a/archive-source/blog/2018/06/16/to-the-crusade.html +++ b/archive-source/blog/2018/06/16/to-the-crusade.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/to-the-departing-seminarians.html b/archive-source/blog/2018/06/16/to-the-departing-seminarians.html index 879f1a3c..dbed663a 100644 --- a/archive-source/blog/2018/06/16/to-the-departing-seminarians.html +++ b/archive-source/blog/2018/06/16/to-the-departing-seminarians.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/to-the-matching-candidates.html b/archive-source/blog/2018/06/16/to-the-matching-candidates.html index 67b4531b..6cb33ed3 100644 --- a/archive-source/blog/2018/06/16/to-the-matching-candidates.html +++ b/archive-source/blog/2018/06/16/to-the-matching-candidates.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html b/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html index 70c6e835..d43321af 100644 --- a/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html +++ b/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/washington-monument.html b/archive-source/blog/2018/06/16/washington-monument.html index 4a0ae1f4..711ee3ad 100644 --- a/archive-source/blog/2018/06/16/washington-monument.html +++ b/archive-source/blog/2018/06/16/washington-monument.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html b/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html index 2ae8117a..8b5930ca 100644 --- a/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html +++ b/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/when-are-we-satisfied.html b/archive-source/blog/2018/06/16/when-are-we-satisfied.html index d78a2bad..c4a4fd69 100644 --- a/archive-source/blog/2018/06/16/when-are-we-satisfied.html +++ b/archive-source/blog/2018/06/16/when-are-we-satisfied.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/where-do-we-go.html b/archive-source/blog/2018/06/16/where-do-we-go.html index 1282ebb4..99de9a2a 100644 --- a/archive-source/blog/2018/06/16/where-do-we-go.html +++ b/archive-source/blog/2018/06/16/where-do-we-go.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html b/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html index b3683d1e..3b980dc3 100644 --- a/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html +++ b/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/16/yesterdays-and-today.html b/archive-source/blog/2018/06/16/yesterdays-and-today.html index 719d6ad7..25307aec 100644 --- a/archive-source/blog/2018/06/16/yesterdays-and-today.html +++ b/archive-source/blog/2018/06/16/yesterdays-and-today.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/eternal-happiness.html b/archive-source/blog/2018/06/18/eternal-happiness.html index 2ad221f3..5aad874a 100644 --- a/archive-source/blog/2018/06/18/eternal-happiness.html +++ b/archive-source/blog/2018/06/18/eternal-happiness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html b/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html index af2e80a9..79954f2d 100644 --- a/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html +++ b/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html index a278a99d..9516df90 100644 --- a/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html b/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html index 39d319d0..1e877950 100644 --- a/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html +++ b/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/our-position.html b/archive-source/blog/2018/06/18/our-position.html index 18b13416..088b495e 100644 --- a/archive-source/blog/2018/06/18/our-position.html +++ b/archive-source/blog/2018/06/18/our-position.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/restored-family.html b/archive-source/blog/2018/06/18/restored-family.html index 1c277e95..2d467e04 100644 --- a/archive-source/blog/2018/06/18/restored-family.html +++ b/archive-source/blog/2018/06/18/restored-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html b/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html index 7310f83c..77b15e11 100644 --- a/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html +++ b/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/the-present-time.html b/archive-source/blog/2018/06/18/the-present-time.html index 5465120c..03e0b6c8 100644 --- a/archive-source/blog/2018/06/18/the-present-time.html +++ b/archive-source/blog/2018/06/18/the-present-time.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html b/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html index 19808af0..36f07ce3 100644 --- a/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html +++ b/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html b/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html index 91aa9d24..2ee518e9 100644 --- a/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html +++ b/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/18/what-shall-we-do.html b/archive-source/blog/2018/06/18/what-shall-we-do.html index f9b89ad9..f715d2ff 100644 --- a/archive-source/blog/2018/06/18/what-shall-we-do.html +++ b/archive-source/blog/2018/06/18/what-shall-we-do.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html index 24a3c062..d871fd46 100644 --- a/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html b/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html index d08cff58..3d06e4a2 100644 --- a/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html +++ b/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/childrens-day-and-tradition.html b/archive-source/blog/2018/06/19/childrens-day-and-tradition.html index 37e1b5c1..192e7b2d 100644 --- a/archive-source/blog/2018/06/19/childrens-day-and-tradition.html +++ b/archive-source/blog/2018/06/19/childrens-day-and-tradition.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/day-of-all-things.html b/archive-source/blog/2018/06/19/day-of-all-things.html index 9ba9babe..dd7f2a73 100644 --- a/archive-source/blog/2018/06/19/day-of-all-things.html +++ b/archive-source/blog/2018/06/19/day-of-all-things.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html b/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html index e7077c42..48914414 100644 --- a/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html +++ b/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/do-not-be-discouraged.html b/archive-source/blog/2018/06/19/do-not-be-discouraged.html index 77f73a9c..054ddad2 100644 --- a/archive-source/blog/2018/06/19/do-not-be-discouraged.html +++ b/archive-source/blog/2018/06/19/do-not-be-discouraged.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/god-of-lamentation.html b/archive-source/blog/2018/06/19/god-of-lamentation.html index 0c2df42d..4f7fe9a4 100644 --- a/archive-source/blog/2018/06/19/god-of-lamentation.html +++ b/archive-source/blog/2018/06/19/god-of-lamentation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/heaven-and-us.html b/archive-source/blog/2018/06/19/heaven-and-us.html index a4249700..e263583e 100644 --- a/archive-source/blog/2018/06/19/heaven-and-us.html +++ b/archive-source/blog/2018/06/19/heaven-and-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html b/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html index e96601bb..f2845e57 100644 --- a/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html +++ b/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/house-of-providence.html b/archive-source/blog/2018/06/19/house-of-providence.html index 347f6401..2cda3f6a 100644 --- a/archive-source/blog/2018/06/19/house-of-providence.html +++ b/archive-source/blog/2018/06/19/house-of-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/ideal-home.html b/archive-source/blog/2018/06/19/ideal-home.html index 184829da..409e71ec 100644 --- a/archive-source/blog/2018/06/19/ideal-home.html +++ b/archive-source/blog/2018/06/19/ideal-home.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html b/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html index 93b15942..2fb4bc9a 100644 --- a/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html +++ b/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/let-us-know-ourselves.html b/archive-source/blog/2018/06/19/let-us-know-ourselves.html index eb59dc51..6b606388 100644 --- a/archive-source/blog/2018/06/19/let-us-know-ourselves.html +++ b/archive-source/blog/2018/06/19/let-us-know-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/let-us-think.html b/archive-source/blog/2018/06/19/let-us-think.html index 4537c6d1..7badf6c1 100644 --- a/archive-source/blog/2018/06/19/let-us-think.html +++ b/archive-source/blog/2018/06/19/let-us-think.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html b/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html index 39756861..c721a690 100644 --- a/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html +++ b/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/men-of-god.html b/archive-source/blog/2018/06/19/men-of-god.html index 90e73773..1188a59f 100644 --- a/archive-source/blog/2018/06/19/men-of-god.html +++ b/archive-source/blog/2018/06/19/men-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/our-one-life.html b/archive-source/blog/2018/06/19/our-one-life.html index 822dc260..21945fd8 100644 --- a/archive-source/blog/2018/06/19/our-one-life.html +++ b/archive-source/blog/2018/06/19/our-one-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/our-present-position.html b/archive-source/blog/2018/06/19/our-present-position.html index 35c0e30d..1e32e2a2 100644 --- a/archive-source/blog/2018/06/19/our-present-position.html +++ b/archive-source/blog/2018/06/19/our-present-position.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/record-setter-of-history.html b/archive-source/blog/2018/06/19/record-setter-of-history.html index 290b2fd3..c340564b 100644 --- a/archive-source/blog/2018/06/19/record-setter-of-history.html +++ b/archive-source/blog/2018/06/19/record-setter-of-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/reflection-upon-life.html b/archive-source/blog/2018/06/19/reflection-upon-life.html index 063942bf..476ac9a0 100644 --- a/archive-source/blog/2018/06/19/reflection-upon-life.html +++ b/archive-source/blog/2018/06/19/reflection-upon-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/return-to-hometown.html b/archive-source/blog/2018/06/19/return-to-hometown.html index ed3983f5..689ea383 100644 --- a/archive-source/blog/2018/06/19/return-to-hometown.html +++ b/archive-source/blog/2018/06/19/return-to-hometown.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/spring-season-of-the-providence.html b/archive-source/blog/2018/06/19/spring-season-of-the-providence.html index 3e9fcf7f..08014cd0 100644 --- a/archive-source/blog/2018/06/19/spring-season-of-the-providence.html +++ b/archive-source/blog/2018/06/19/spring-season-of-the-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/territory-of-goodness.html b/archive-source/blog/2018/06/19/territory-of-goodness.html index ec5278da..bbad2ba6 100644 --- a/archive-source/blog/2018/06/19/territory-of-goodness.html +++ b/archive-source/blog/2018/06/19/territory-of-goodness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html b/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html index 738bb384..bb146171 100644 --- a/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html +++ b/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html b/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html index a3cbbe55..366edb2a 100644 --- a/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html +++ b/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-importance-of-prayer.html b/archive-source/blog/2018/06/19/the-importance-of-prayer.html index b6011e76..d47bd97e 100644 --- a/archive-source/blog/2018/06/19/the-importance-of-prayer.html +++ b/archive-source/blog/2018/06/19/the-importance-of-prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-mission-of-our-life.html b/archive-source/blog/2018/06/19/the-mission-of-our-life.html index c80f5c55..4ed09ec2 100644 --- a/archive-source/blog/2018/06/19/the-mission-of-our-life.html +++ b/archive-source/blog/2018/06/19/the-mission-of-our-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html b/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html index aa5ca297..bcfc0555 100644 --- a/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html +++ b/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html b/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html index c7030811..33cafc4c 100644 --- a/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html +++ b/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-trust-placed-in-us.html b/archive-source/blog/2018/06/19/the-trust-placed-in-us.html index 9749396a..1a9188c1 100644 --- a/archive-source/blog/2018/06/19/the-trust-placed-in-us.html +++ b/archive-source/blog/2018/06/19/the-trust-placed-in-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html b/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html index b6befe6d..c0ff77d5 100644 --- a/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html +++ b/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/true-couple.html b/archive-source/blog/2018/06/19/true-couple.html index 5fc04c2e..8237362f 100644 --- a/archive-source/blog/2018/06/19/true-couple.html +++ b/archive-source/blog/2018/06/19/true-couple.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html b/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html index 35661549..4024ab29 100644 --- a/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html +++ b/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html b/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html index a8849b6b..67818cc2 100644 --- a/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html +++ b/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html b/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html index 83c06143..e1cfac48 100644 --- a/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html +++ b/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/core-love-and-indemnity.html b/archive-source/blog/2018/06/20/core-love-and-indemnity.html index e0196572..13469076 100644 --- a/archive-source/blog/2018/06/20/core-love-and-indemnity.html +++ b/archive-source/blog/2018/06/20/core-love-and-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/cross-over-the-boundary.html b/archive-source/blog/2018/06/20/cross-over-the-boundary.html index 0f2074c2..3f1fb361 100644 --- a/archive-source/blog/2018/06/20/cross-over-the-boundary.html +++ b/archive-source/blog/2018/06/20/cross-over-the-boundary.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/day-of-all-things-2.html b/archive-source/blog/2018/06/20/day-of-all-things-2.html index 10dc505b..1840c79e 100644 --- a/archive-source/blog/2018/06/20/day-of-all-things-2.html +++ b/archive-source/blog/2018/06/20/day-of-all-things-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html b/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html index 32e13f61..ce6dc4d9 100644 --- a/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html +++ b/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/grateful-gods-day.html b/archive-source/blog/2018/06/20/grateful-gods-day.html index 643ce3e9..a0919845 100644 --- a/archive-source/blog/2018/06/20/grateful-gods-day.html +++ b/archive-source/blog/2018/06/20/grateful-gods-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/historical-childrens-day.html b/archive-source/blog/2018/06/20/historical-childrens-day.html index 02d1f228..fe11e79a 100644 --- a/archive-source/blog/2018/06/20/historical-childrens-day.html +++ b/archive-source/blog/2018/06/20/historical-childrens-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html b/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html index 8a5ce150..a989ee13 100644 --- a/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html +++ b/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html b/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html index 54745ff4..fd46dfba 100644 --- a/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html +++ b/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/home-church-and-myself.html b/archive-source/blog/2018/06/20/home-church-and-myself.html index c8121fd3..ab62a91a 100644 --- a/archive-source/blog/2018/06/20/home-church-and-myself.html +++ b/archive-source/blog/2018/06/20/home-church-and-myself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html index 66677e25..b69088e8 100644 --- a/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html index 60f6bb0a..4764c148 100644 --- a/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html b/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html index ab989ad2..34af1382 100644 --- a/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html +++ b/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/ideal-nation-of-god.html b/archive-source/blog/2018/06/20/ideal-nation-of-god.html index 8c4a7fcb..b4a856f5 100644 --- a/archive-source/blog/2018/06/20/ideal-nation-of-god.html +++ b/archive-source/blog/2018/06/20/ideal-nation-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/individual-course-of-life.html b/archive-source/blog/2018/06/20/individual-course-of-life.html index a2e089ce..1ea38b7b 100644 --- a/archive-source/blog/2018/06/20/individual-course-of-life.html +++ b/archive-source/blog/2018/06/20/individual-course-of-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/let-us-give-thanks.html b/archive-source/blog/2018/06/20/let-us-give-thanks.html index 96ec705e..662f17a1 100644 --- a/archive-source/blog/2018/06/20/let-us-give-thanks.html +++ b/archive-source/blog/2018/06/20/let-us-give-thanks.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/let-us-set-the-record.html b/archive-source/blog/2018/06/20/let-us-set-the-record.html index 14eb121a..fd8623f2 100644 --- a/archive-source/blog/2018/06/20/let-us-set-the-record.html +++ b/archive-source/blog/2018/06/20/let-us-set-the-record.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html b/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html index 3ae3629d..a3ca17c7 100644 --- a/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html +++ b/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/line-of-limitation.html b/archive-source/blog/2018/06/20/line-of-limitation.html index 749e0ce5..828db1c5 100644 --- a/archive-source/blog/2018/06/20/line-of-limitation.html +++ b/archive-source/blog/2018/06/20/line-of-limitation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/liquidation-and-blessing.html b/archive-source/blog/2018/06/20/liquidation-and-blessing.html index 35f2cf2c..ac11dcd3 100644 --- a/archive-source/blog/2018/06/20/liquidation-and-blessing.html +++ b/archive-source/blog/2018/06/20/liquidation-and-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/myself.html b/archive-source/blog/2018/06/20/myself.html index 57701c92..ac288e30 100644 --- a/archive-source/blog/2018/06/20/myself.html +++ b/archive-source/blog/2018/06/20/myself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/noble-dream.html b/archive-source/blog/2018/06/20/noble-dream.html index 5f3c4a5e..22d57830 100644 --- a/archive-source/blog/2018/06/20/noble-dream.html +++ b/archive-source/blog/2018/06/20/noble-dream.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/our-duty-our-mission.html b/archive-source/blog/2018/06/20/our-duty-our-mission.html index 876bd297..80bd6469 100644 --- a/archive-source/blog/2018/06/20/our-duty-our-mission.html +++ b/archive-source/blog/2018/06/20/our-duty-our-mission.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/our-identity.html b/archive-source/blog/2018/06/20/our-identity.html index 6c774c4b..cb52089e 100644 --- a/archive-source/blog/2018/06/20/our-identity.html +++ b/archive-source/blog/2018/06/20/our-identity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/our-pride-2.html b/archive-source/blog/2018/06/20/our-pride-2.html index e4311064..e6a75dca 100644 --- a/archive-source/blog/2018/06/20/our-pride-2.html +++ b/archive-source/blog/2018/06/20/our-pride-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/our-standard.html b/archive-source/blog/2018/06/20/our-standard.html index 847fd876..c324dd54 100644 --- a/archive-source/blog/2018/06/20/our-standard.html +++ b/archive-source/blog/2018/06/20/our-standard.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/our-tradition.html b/archive-source/blog/2018/06/20/our-tradition.html index 9d475fcb..687fb5d0 100644 --- a/archive-source/blog/2018/06/20/our-tradition.html +++ b/archive-source/blog/2018/06/20/our-tradition.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/parents-day-and-this-age.html b/archive-source/blog/2018/06/20/parents-day-and-this-age.html index 39963550..bada5955 100644 --- a/archive-source/blog/2018/06/20/parents-day-and-this-age.html +++ b/archive-source/blog/2018/06/20/parents-day-and-this-age.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/persecution-and-blessing.html b/archive-source/blog/2018/06/20/persecution-and-blessing.html index 5535ca9b..88c4bdf2 100644 --- a/archive-source/blog/2018/06/20/persecution-and-blessing.html +++ b/archive-source/blog/2018/06/20/persecution-and-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/prayer.html b/archive-source/blog/2018/06/20/prayer.html index 10ddfa03..8d5a6f40 100644 --- a/archive-source/blog/2018/06/20/prayer.html +++ b/archive-source/blog/2018/06/20/prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/searching-after-true-parents.html b/archive-source/blog/2018/06/20/searching-after-true-parents.html index 35664184..56e2a325 100644 --- a/archive-source/blog/2018/06/20/searching-after-true-parents.html +++ b/archive-source/blog/2018/06/20/searching-after-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/seeking-the-true-master.html b/archive-source/blog/2018/06/20/seeking-the-true-master.html index 9e6cc130..7f4ca342 100644 --- a/archive-source/blog/2018/06/20/seeking-the-true-master.html +++ b/archive-source/blog/2018/06/20/seeking-the-true-master.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/stony-path-of-death.html b/archive-source/blog/2018/06/20/stony-path-of-death.html index e29a9d72..b13b4918 100644 --- a/archive-source/blog/2018/06/20/stony-path-of-death.html +++ b/archive-source/blog/2018/06/20/stony-path-of-death.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-best-thing.html b/archive-source/blog/2018/06/20/the-best-thing.html index 95fc407a..1caf537f 100644 --- a/archive-source/blog/2018/06/20/the-best-thing.html +++ b/archive-source/blog/2018/06/20/the-best-thing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-center-and-my-position.html b/archive-source/blog/2018/06/20/the-center-and-my-position.html index 131ef834..3fc2a835 100644 --- a/archive-source/blog/2018/06/20/the-center-and-my-position.html +++ b/archive-source/blog/2018/06/20/the-center-and-my-position.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html b/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html index 78ab39b6..1d8e4a4a 100644 --- a/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html +++ b/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html b/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html index 263242b1..4b0533ba 100644 --- a/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html +++ b/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html b/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html index 36fcdec8..126c0e39 100644 --- a/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html +++ b/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-necessity-of-prayer.html b/archive-source/blog/2018/06/20/the-necessity-of-prayer.html index 46f2380e..a2043d57 100644 --- a/archive-source/blog/2018/06/20/the-necessity-of-prayer.html +++ b/archive-source/blog/2018/06/20/the-necessity-of-prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-public-and-private-way.html b/archive-source/blog/2018/06/20/the-public-and-private-way.html index a35d38fb..fd13fdbb 100644 --- a/archive-source/blog/2018/06/20/the-public-and-private-way.html +++ b/archive-source/blog/2018/06/20/the-public-and-private-way.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-realm-of-existence.html b/archive-source/blog/2018/06/20/the-realm-of-existence.html index cff70637..d24f8958 100644 --- a/archive-source/blog/2018/06/20/the-realm-of-existence.html +++ b/archive-source/blog/2018/06/20/the-realm-of-existence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html b/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html index cfce240a..38802f34 100644 --- a/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html +++ b/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html b/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html index 86f366c6..11c309b8 100644 --- a/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html +++ b/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-victorious-day.html b/archive-source/blog/2018/06/20/the-victorious-day.html index c06b2a66..39a5cbd0 100644 --- a/archive-source/blog/2018/06/20/the-victorious-day.html +++ b/archive-source/blog/2018/06/20/the-victorious-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-way-of-original-form.html b/archive-source/blog/2018/06/20/the-way-of-original-form.html index 2e600587..8e5220b5 100644 --- a/archive-source/blog/2018/06/20/the-way-of-original-form.html +++ b/archive-source/blog/2018/06/20/the-way-of-original-form.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-way-of-tuna.html b/archive-source/blog/2018/06/20/the-way-of-tuna.html index 8dac950d..8e385ba9 100644 --- a/archive-source/blog/2018/06/20/the-way-of-tuna.html +++ b/archive-source/blog/2018/06/20/the-way-of-tuna.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html b/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html index aec69c3b..8aff5b45 100644 --- a/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html +++ b/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/things-that-are-important-to-you.html b/archive-source/blog/2018/06/20/things-that-are-important-to-you.html index 8898e159..6ac8893f 100644 --- a/archive-source/blog/2018/06/20/things-that-are-important-to-you.html +++ b/archive-source/blog/2018/06/20/things-that-are-important-to-you.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/thinking-back-historically.html b/archive-source/blog/2018/06/20/thinking-back-historically.html index 450c96b5..b6428848 100644 --- a/archive-source/blog/2018/06/20/thinking-back-historically.html +++ b/archive-source/blog/2018/06/20/thinking-back-historically.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/to-the-mft.html b/archive-source/blog/2018/06/20/to-the-mft.html index 921b75c0..9d43f89c 100644 --- a/archive-source/blog/2018/06/20/to-the-mft.html +++ b/archive-source/blog/2018/06/20/to-the-mft.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/total-self-reevaluation.html b/archive-source/blog/2018/06/20/total-self-reevaluation.html index 966cc407..7c3a0295 100644 --- a/archive-source/blog/2018/06/20/total-self-reevaluation.html +++ b/archive-source/blog/2018/06/20/total-self-reevaluation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html b/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html index 03a7fea6..6a7c0c77 100644 --- a/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html +++ b/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/true-parents-mission.html b/archive-source/blog/2018/06/20/true-parents-mission.html index 91ace206..ccbf9f1b 100644 --- a/archive-source/blog/2018/06/20/true-parents-mission.html +++ b/archive-source/blog/2018/06/20/true-parents-mission.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html index 48fe2c50..c23561a8 100644 --- a/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html b/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html index b489c555..c4edc7ba 100644 --- a/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html +++ b/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/destiny-and-judgment.html b/archive-source/blog/2018/06/22/destiny-and-judgment.html index 171ae39c..606fbd0b 100644 --- a/archive-source/blog/2018/06/22/destiny-and-judgment.html +++ b/archive-source/blog/2018/06/22/destiny-and-judgment.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html b/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html index f94b4d2d..5121d3da 100644 --- a/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html +++ b/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/god-and-my-home.html b/archive-source/blog/2018/06/22/god-and-my-home.html index 7b8f89f2..777a6412 100644 --- a/archive-source/blog/2018/06/22/god-and-my-home.html +++ b/archive-source/blog/2018/06/22/god-and-my-home.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/god-and-us.html b/archive-source/blog/2018/06/22/god-and-us.html index af256e9c..9956dfe6 100644 --- a/archive-source/blog/2018/06/22/god-and-us.html +++ b/archive-source/blog/2018/06/22/god-and-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html b/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html index 31733f40..8819b26e 100644 --- a/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html +++ b/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/in-the-presence-of-god.html b/archive-source/blog/2018/06/22/in-the-presence-of-god.html index bdffda15..ece84ea1 100644 --- a/archive-source/blog/2018/06/22/in-the-presence-of-god.html +++ b/archive-source/blog/2018/06/22/in-the-presence-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/let-us-protect-ourselves.html b/archive-source/blog/2018/06/22/let-us-protect-ourselves.html index 748ef35e..24f38745 100644 --- a/archive-source/blog/2018/06/22/let-us-protect-ourselves.html +++ b/archive-source/blog/2018/06/22/let-us-protect-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/public-life.html b/archive-source/blog/2018/06/22/public-life.html index 09369d2a..256cae70 100644 --- a/archive-source/blog/2018/06/22/public-life.html +++ b/archive-source/blog/2018/06/22/public-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html b/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html index 6397869b..03ce482a 100644 --- a/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html +++ b/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html b/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html index caa2e0ef..df496d8e 100644 --- a/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html +++ b/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html b/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html index c6e028fe..51eda951 100644 --- a/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html +++ b/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-road-of-gods-will.html b/archive-source/blog/2018/06/22/the-road-of-gods-will.html index 72bf366d..d1791309 100644 --- a/archive-source/blog/2018/06/22/the-road-of-gods-will.html +++ b/archive-source/blog/2018/06/22/the-road-of-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html b/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html index bd854366..154f8213 100644 --- a/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html +++ b/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-vibration-of-true-love.html b/archive-source/blog/2018/06/22/the-vibration-of-true-love.html index ebb7a219..6c60500e 100644 --- a/archive-source/blog/2018/06/22/the-vibration-of-true-love.html +++ b/archive-source/blog/2018/06/22/the-vibration-of-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html b/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html index 732826ca..ce1f27bb 100644 --- a/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html +++ b/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html b/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html index 6388b389..4efef079 100644 --- a/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html +++ b/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/true-parents-day.html b/archive-source/blog/2018/06/22/true-parents-day.html index 19587a9f..dbfbe40e 100644 --- a/archive-source/blog/2018/06/22/true-parents-day.html +++ b/archive-source/blog/2018/06/22/true-parents-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/victory-and-peace.html b/archive-source/blog/2018/06/22/victory-and-peace.html index e53655f6..69a85e0e 100644 --- a/archive-source/blog/2018/06/22/victory-and-peace.html +++ b/archive-source/blog/2018/06/22/victory-and-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/victory-of-god.html b/archive-source/blog/2018/06/22/victory-of-god.html index 2a9f0ac1..47b46e01 100644 --- a/archive-source/blog/2018/06/22/victory-of-god.html +++ b/archive-source/blog/2018/06/22/victory-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html b/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html index e50bcaf7..e09b00dd 100644 --- a/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html +++ b/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html b/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html index fea66156..69dd2690 100644 --- a/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html +++ b/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/about-myself.html b/archive-source/blog/2018/06/23/about-myself.html index d9e78790..c2a9fa63 100644 --- a/archive-source/blog/2018/06/23/about-myself.html +++ b/archive-source/blog/2018/06/23/about-myself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html b/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html index 14585179..48ca13c0 100644 --- a/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html +++ b/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html b/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html index f03564b2..1278b132 100644 --- a/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html +++ b/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/before-and-after-the-blessing.html b/archive-source/blog/2018/06/23/before-and-after-the-blessing.html index e1328009..91b6230d 100644 --- a/archive-source/blog/2018/06/23/before-and-after-the-blessing.html +++ b/archive-source/blog/2018/06/23/before-and-after-the-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/blessed-family.html b/archive-source/blog/2018/06/23/blessed-family.html index 61a2c73c..a25a999b 100644 --- a/archive-source/blog/2018/06/23/blessed-family.html +++ b/archive-source/blog/2018/06/23/blessed-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/childrens-day-1982.html b/archive-source/blog/2018/06/23/childrens-day-1982.html index 8fea805e..2237a70c 100644 --- a/archive-source/blog/2018/06/23/childrens-day-1982.html +++ b/archive-source/blog/2018/06/23/childrens-day-1982.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/childrens-day-2.html b/archive-source/blog/2018/06/23/childrens-day-2.html index c79eac8d..cd8d636f 100644 --- a/archive-source/blog/2018/06/23/childrens-day-2.html +++ b/archive-source/blog/2018/06/23/childrens-day-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/creation-of-the-fatherland.html b/archive-source/blog/2018/06/23/creation-of-the-fatherland.html index d939fad9..6deb570b 100644 --- a/archive-source/blog/2018/06/23/creation-of-the-fatherland.html +++ b/archive-source/blog/2018/06/23/creation-of-the-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/day-of-all-things-1984.html b/archive-source/blog/2018/06/23/day-of-all-things-1984.html index 19e0c150..7e7441e8 100644 --- a/archive-source/blog/2018/06/23/day-of-all-things-1984.html +++ b/archive-source/blog/2018/06/23/day-of-all-things-1984.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/day-of-heavenly-victory.html b/archive-source/blog/2018/06/23/day-of-heavenly-victory.html index 6a58d124..cd275125 100644 --- a/archive-source/blog/2018/06/23/day-of-heavenly-victory.html +++ b/archive-source/blog/2018/06/23/day-of-heavenly-victory.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/emergency-time-period.html b/archive-source/blog/2018/06/23/emergency-time-period.html index 0510076e..34820e2f 100644 --- a/archive-source/blog/2018/06/23/emergency-time-period.html +++ b/archive-source/blog/2018/06/23/emergency-time-period.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/farewell-speech.html b/archive-source/blog/2018/06/23/farewell-speech.html index f61b0d37..e1f57fac 100644 --- a/archive-source/blog/2018/06/23/farewell-speech.html +++ b/archive-source/blog/2018/06/23/farewell-speech.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html b/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html index 173e0ff0..8aafbcf5 100644 --- a/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html +++ b/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html b/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html index 1915cb6a..c138ba60 100644 --- a/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html +++ b/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html b/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html index ed894fb1..2ded0d50 100644 --- a/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html +++ b/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/gods-day-1983.html b/archive-source/blog/2018/06/23/gods-day-1983.html index daa2a714..4b5b6178 100644 --- a/archive-source/blog/2018/06/23/gods-day-1983.html +++ b/archive-source/blog/2018/06/23/gods-day-1983.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/gods-day-1984.html b/archive-source/blog/2018/06/23/gods-day-1984.html index 0995b72b..770cff8b 100644 --- a/archive-source/blog/2018/06/23/gods-day-1984.html +++ b/archive-source/blog/2018/06/23/gods-day-1984.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/heavenly-life.html b/archive-source/blog/2018/06/23/heavenly-life.html index 767c2c43..4e0538fe 100644 --- a/archive-source/blog/2018/06/23/heavenly-life.html +++ b/archive-source/blog/2018/06/23/heavenly-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html b/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html index a1a84371..17029242 100644 --- a/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html +++ b/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html b/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html index 9bb66494..46cffcb1 100644 --- a/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html +++ b/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/in-search-of-our-home.html b/archive-source/blog/2018/06/23/in-search-of-our-home.html index 63a700d7..38457210 100644 --- a/archive-source/blog/2018/06/23/in-search-of-our-home.html +++ b/archive-source/blog/2018/06/23/in-search-of-our-home.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/let-this-be-a-good-year.html b/archive-source/blog/2018/06/23/let-this-be-a-good-year.html index 3e92bcb4..6f031c34 100644 --- a/archive-source/blog/2018/06/23/let-this-be-a-good-year.html +++ b/archive-source/blog/2018/06/23/let-this-be-a-good-year.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html b/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html index cb9c12c5..064332db 100644 --- a/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html +++ b/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/love-forever.html b/archive-source/blog/2018/06/23/love-forever.html index 987e85d5..c95ec245 100644 --- a/archive-source/blog/2018/06/23/love-forever.html +++ b/archive-source/blog/2018/06/23/love-forever.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/master-guests-and-others.html b/archive-source/blog/2018/06/23/master-guests-and-others.html index 7f9a7473..63356b66 100644 --- a/archive-source/blog/2018/06/23/master-guests-and-others.html +++ b/archive-source/blog/2018/06/23/master-guests-and-others.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/mission-and-prayer.html b/archive-source/blog/2018/06/23/mission-and-prayer.html index 11511f88..94c6c0e3 100644 --- a/archive-source/blog/2018/06/23/mission-and-prayer.html +++ b/archive-source/blog/2018/06/23/mission-and-prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/my-new-self.html b/archive-source/blog/2018/06/23/my-new-self.html index 8b67538a..6e6b094f 100644 --- a/archive-source/blog/2018/06/23/my-new-self.html +++ b/archive-source/blog/2018/06/23/my-new-self.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/myself-part-two.html b/archive-source/blog/2018/06/23/myself-part-two.html index 2dcf6765..9f57f5e3 100644 --- a/archive-source/blog/2018/06/23/myself-part-two.html +++ b/archive-source/blog/2018/06/23/myself-part-two.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/new-family-given-by-god.html b/archive-source/blog/2018/06/23/new-family-given-by-god.html index 58258abf..af1a8beb 100644 --- a/archive-source/blog/2018/06/23/new-family-given-by-god.html +++ b/archive-source/blog/2018/06/23/new-family-given-by-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html b/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html index af7a1e87..46d8c654 100644 --- a/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html +++ b/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html b/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html index 3786c197..e14fb861 100644 --- a/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html +++ b/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-race-from-one-lineage.html b/archive-source/blog/2018/06/23/original-race-from-one-lineage.html index 9fa5b808..8f489ab5 100644 --- a/archive-source/blog/2018/06/23/original-race-from-one-lineage.html +++ b/archive-source/blog/2018/06/23/original-race-from-one-lineage.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-root-and-self.html b/archive-source/blog/2018/06/23/original-root-and-self.html index ee217f91..78aa498a 100644 --- a/archive-source/blog/2018/06/23/original-root-and-self.html +++ b/archive-source/blog/2018/06/23/original-root-and-self.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-way-of-gods-will.html b/archive-source/blog/2018/06/23/original-way-of-gods-will.html index bf1b18c2..d1b32ddd 100644 --- a/archive-source/blog/2018/06/23/original-way-of-gods-will.html +++ b/archive-source/blog/2018/06/23/original-way-of-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/original-world-and-present-world.html b/archive-source/blog/2018/06/23/original-world-and-present-world.html index 9682ad83..31b75062 100644 --- a/archive-source/blog/2018/06/23/original-world-and-present-world.html +++ b/archive-source/blog/2018/06/23/original-world-and-present-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-basic-attitude.html b/archive-source/blog/2018/06/23/our-basic-attitude.html index 37c7f4a2..97603688 100644 --- a/archive-source/blog/2018/06/23/our-basic-attitude.html +++ b/archive-source/blog/2018/06/23/our-basic-attitude.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-fatherland.html b/archive-source/blog/2018/06/23/our-fatherland.html index 1b77e409..3e859c22 100644 --- a/archive-source/blog/2018/06/23/our-fatherland.html +++ b/archive-source/blog/2018/06/23/our-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-front-line.html b/archive-source/blog/2018/06/23/our-front-line.html index 6bc82cb1..133d180d 100644 --- a/archive-source/blog/2018/06/23/our-front-line.html +++ b/archive-source/blog/2018/06/23/our-front-line.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-one.html b/archive-source/blog/2018/06/23/our-ideal-home-part-one.html index 1c17a21a..9d71d6bc 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-one.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-one.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-three.html b/archive-source/blog/2018/06/23/our-ideal-home-part-three.html index 2a9648cf..37b2a2cc 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-three.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-three.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-two.html b/archive-source/blog/2018/06/23/our-ideal-home-part-two.html index a090158e..16ec0cf1 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-two.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-two.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-pledge.html b/archive-source/blog/2018/06/23/our-pledge.html index a897fa6d..f8da114f 100644 --- a/archive-source/blog/2018/06/23/our-pledge.html +++ b/archive-source/blog/2018/06/23/our-pledge.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/our-position-from-now-on.html b/archive-source/blog/2018/06/23/our-position-from-now-on.html index b44f83f4..fff8239b 100644 --- a/archive-source/blog/2018/06/23/our-position-from-now-on.html +++ b/archive-source/blog/2018/06/23/our-position-from-now-on.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html b/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html index 2f6b8307..a326eef4 100644 --- a/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html +++ b/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/parents-day-1984.html b/archive-source/blog/2018/06/23/parents-day-1984.html index c2912bc3..afffcbaf 100644 --- a/archive-source/blog/2018/06/23/parents-day-1984.html +++ b/archive-source/blog/2018/06/23/parents-day-1984.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html b/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html index 352a43a9..9b94b624 100644 --- a/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html +++ b/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html b/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html index ca48ed56..fda46f3b 100644 --- a/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html +++ b/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html b/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html index 9036b075..05d50a5b 100644 --- a/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html +++ b/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html b/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html index 4c0c1506..6824fa58 100644 --- a/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html +++ b/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html b/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html index 4a502196..b1e02a91 100644 --- a/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html +++ b/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/textbook-of-love.html b/archive-source/blog/2018/06/23/textbook-of-love.html index 66ebe53c..ffb77f66 100644 --- a/archive-source/blog/2018/06/23/textbook-of-love.html +++ b/archive-source/blog/2018/06/23/textbook-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html b/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html index 5eec202d..56a62fba 100644 --- a/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html +++ b/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html b/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html index 4b4be33b..bf224606 100644 --- a/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html +++ b/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html b/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html index 415dd662..4034cb99 100644 --- a/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html +++ b/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html b/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html index c23d86c4..91afb3ca 100644 --- a/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html +++ b/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html b/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html index 19e28fb0..dba792c4 100644 --- a/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html +++ b/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html b/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html index 1d0503fb..710c672a 100644 --- a/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html +++ b/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-heavenly-possession.html b/archive-source/blog/2018/06/23/the-heavenly-possession.html index 28b57b08..125c46a7 100644 --- a/archive-source/blog/2018/06/23/the-heavenly-possession.html +++ b/archive-source/blog/2018/06/23/the-heavenly-possession.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html b/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html index da35b750..6511faa2 100644 --- a/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html +++ b/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html b/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html index 2d7e89d7..b8018dc2 100644 --- a/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html b/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html index 0c8d3fe7..e44c28ed 100644 --- a/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html +++ b/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html b/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html index c5a08ee2..d4bf587a 100644 --- a/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html +++ b/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-secret-of-total-success.html b/archive-source/blog/2018/06/23/the-secret-of-total-success.html index fdc761b2..011cdf5d 100644 --- a/archive-source/blog/2018/06/23/the-secret-of-total-success.html +++ b/archive-source/blog/2018/06/23/the-secret-of-total-success.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html b/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html index e17ab973..e6f2dbf3 100644 --- a/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html +++ b/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html index 84b7e30e..37a9296d 100644 --- a/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/true-man-true-church-true-country.html b/archive-source/blog/2018/06/23/true-man-true-church-true-country.html index d67af90a..e1e797d4 100644 --- a/archive-source/blog/2018/06/23/true-man-true-church-true-country.html +++ b/archive-source/blog/2018/06/23/true-man-true-church-true-country.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/true-way-of-life.html b/archive-source/blog/2018/06/23/true-way-of-life.html index b68efff6..0d0a113d 100644 --- a/archive-source/blog/2018/06/23/true-way-of-life.html +++ b/archive-source/blog/2018/06/23/true-way-of-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/universality.html b/archive-source/blog/2018/06/23/universality.html index 2c610265..8be61f54 100644 --- a/archive-source/blog/2018/06/23/universality.html +++ b/archive-source/blog/2018/06/23/universality.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/victor-throughout-three-ages.html b/archive-source/blog/2018/06/23/victor-throughout-three-ages.html index f7b733e4..5bbbab0b 100644 --- a/archive-source/blog/2018/06/23/victor-throughout-three-ages.html +++ b/archive-source/blog/2018/06/23/victor-throughout-three-ages.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html b/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html index bccbe834..4d0d357c 100644 --- a/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html +++ b/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/23/with-whom-shall-i-live.html b/archive-source/blog/2018/06/23/with-whom-shall-i-live.html index 07543324..2c68faa4 100644 --- a/archive-source/blog/2018/06/23/with-whom-shall-i-live.html +++ b/archive-source/blog/2018/06/23/with-whom-shall-i-live.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html b/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html index d675460d..8cbdadbd 100644 --- a/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html +++ b/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/causa-seminar-speech.html b/archive-source/blog/2018/06/24/causa-seminar-speech.html index 427b91ea..5540dcff 100644 --- a/archive-source/blog/2018/06/24/causa-seminar-speech.html +++ b/archive-source/blog/2018/06/24/causa-seminar-speech.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html b/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html index 54897788..8c52460a 100644 --- a/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html +++ b/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/highest-ownership.html b/archive-source/blog/2018/06/24/highest-ownership.html index c64858bc..1a70e139 100644 --- a/archive-source/blog/2018/06/24/highest-ownership.html +++ b/archive-source/blog/2018/06/24/highest-ownership.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/holy-water-ceremony.html b/archive-source/blog/2018/06/24/holy-water-ceremony.html index bccee9f9..7331500b 100644 --- a/archive-source/blog/2018/06/24/holy-water-ceremony.html +++ b/archive-source/blog/2018/06/24/holy-water-ceremony.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/ideal-home-church.html b/archive-source/blog/2018/06/24/ideal-home-church.html index 8c00f408..c177ddb4 100644 --- a/archive-source/blog/2018/06/24/ideal-home-church.html +++ b/archive-source/blog/2018/06/24/ideal-home-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html b/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html index ecaac15d..25ccf78e 100644 --- a/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html +++ b/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/parents-day-3.html b/archive-source/blog/2018/06/24/parents-day-3.html index b66221d5..b51fe019 100644 --- a/archive-source/blog/2018/06/24/parents-day-3.html +++ b/archive-source/blog/2018/06/24/parents-day-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/reflection-of-1986.html b/archive-source/blog/2018/06/24/reflection-of-1986.html index 75bfc179..9979bdfb 100644 --- a/archive-source/blog/2018/06/24/reflection-of-1986.html +++ b/archive-source/blog/2018/06/24/reflection-of-1986.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/road-toward-the-ideal.html b/archive-source/blog/2018/06/24/road-toward-the-ideal.html index adc77996..346b438d 100644 --- a/archive-source/blog/2018/06/24/road-toward-the-ideal.html +++ b/archive-source/blog/2018/06/24/road-toward-the-ideal.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html b/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html index efe3c40a..59496934 100644 --- a/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html +++ b/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-day-of-all-things-2.html b/archive-source/blog/2018/06/24/the-day-of-all-things-2.html index d93e30af..89d943ae 100644 --- a/archive-source/blog/2018/06/24/the-day-of-all-things-2.html +++ b/archive-source/blog/2018/06/24/the-day-of-all-things-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html b/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html index 0edc5ad3..b5fec8e5 100644 --- a/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html +++ b/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html b/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html index 98d127c4..367af0f7 100644 --- a/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html +++ b/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-globe-is-our-home.html b/archive-source/blog/2018/06/24/the-globe-is-our-home.html index a4445202..6930f282 100644 --- a/archive-source/blog/2018/06/24/the-globe-is-our-home.html +++ b/archive-source/blog/2018/06/24/the-globe-is-our-home.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-glory-of-the-victor.html b/archive-source/blog/2018/06/24/the-glory-of-the-victor.html index 0c483dc9..880299a9 100644 --- a/archive-source/blog/2018/06/24/the-glory-of-the-victor.html +++ b/archive-source/blog/2018/06/24/the-glory-of-the-victor.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html b/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html index 0ef98491..22a1d3ec 100644 --- a/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html +++ b/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-last-frontier.html b/archive-source/blog/2018/06/24/the-last-frontier.html index 846ade2d..85e4f5a8 100644 --- a/archive-source/blog/2018/06/24/the-last-frontier.html +++ b/archive-source/blog/2018/06/24/the-last-frontier.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html b/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html index f57084b5..23656a4a 100644 --- a/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html +++ b/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/true-parents-and-i.html b/archive-source/blog/2018/06/24/true-parents-and-i.html index 68f77e40..beee4942 100644 --- a/archive-source/blog/2018/06/24/true-parents-and-i.html +++ b/archive-source/blog/2018/06/24/true-parents-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/true-parents-birthday.html b/archive-source/blog/2018/06/24/true-parents-birthday.html index b399e2d0..3ceca956 100644 --- a/archive-source/blog/2018/06/24/true-parents-birthday.html +++ b/archive-source/blog/2018/06/24/true-parents-birthday.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/24/victory-celebration.html b/archive-source/blog/2018/06/24/victory-celebration.html index ab12e38a..6342725d 100644 --- a/archive-source/blog/2018/06/24/victory-celebration.html +++ b/archive-source/blog/2018/06/24/victory-celebration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html b/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html index 70e737c5..ee3741f6 100644 --- a/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html +++ b/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html b/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html index e139e547..4d034ff7 100644 --- a/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html +++ b/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html b/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html index 7ad2c406..f23f89bd 100644 --- a/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html +++ b/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html b/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html index 67a34555..3fa930fa 100644 --- a/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html +++ b/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html b/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html index 957e367c..665a2552 100644 --- a/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html +++ b/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html b/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html index 6d36997c..bb5aab1f 100644 --- a/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html +++ b/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/declaration-of-true-parents.html b/archive-source/blog/2018/06/25/declaration-of-true-parents.html index 3e7ef5ae..cb9c30dc 100644 --- a/archive-source/blog/2018/06/25/declaration-of-true-parents.html +++ b/archive-source/blog/2018/06/25/declaration-of-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/early-spring-of-life.html b/archive-source/blog/2018/06/25/early-spring-of-life.html index cddcc8a2..50a37146 100644 --- a/archive-source/blog/2018/06/25/early-spring-of-life.html +++ b/archive-source/blog/2018/06/25/early-spring-of-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html b/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html index 076c49e3..62c92cc1 100644 --- a/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html +++ b/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html b/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html index 5d9694c2..9facc897 100644 --- a/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html +++ b/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html b/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html index a3e16a49..a69dd9f1 100644 --- a/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html +++ b/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/god-and-i.html b/archive-source/blog/2018/06/25/god-and-i.html index 30dcfab9..fd06ce34 100644 --- a/archive-source/blog/2018/06/25/god-and-i.html +++ b/archive-source/blog/2018/06/25/god-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/gods-and-our-decision.html b/archive-source/blog/2018/06/25/gods-and-our-decision.html index 3fc17b2f..814ded8e 100644 --- a/archive-source/blog/2018/06/25/gods-and-our-decision.html +++ b/archive-source/blog/2018/06/25/gods-and-our-decision.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html b/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html index f96e584b..6d756e01 100644 --- a/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html +++ b/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html b/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html index 4e5126ea..3a1ace0f 100644 --- a/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html +++ b/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/gods-day-2.html b/archive-source/blog/2018/06/25/gods-day-2.html index ea6d4d21..0c7695ea 100644 --- a/archive-source/blog/2018/06/25/gods-day-2.html +++ b/archive-source/blog/2018/06/25/gods-day-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html b/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html index dcd738c8..3a54780e 100644 --- a/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html +++ b/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/harvest-time.html b/archive-source/blog/2018/06/25/harvest-time.html index 22d0cfc4..520da3c4 100644 --- a/archive-source/blog/2018/06/25/harvest-time.html +++ b/archive-source/blog/2018/06/25/harvest-time.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html b/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html index 7e7125d4..da0df567 100644 --- a/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html +++ b/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/heavenly-fatherism.html b/archive-source/blog/2018/06/25/heavenly-fatherism.html index 17abafba..e07faaf7 100644 --- a/archive-source/blog/2018/06/25/heavenly-fatherism.html +++ b/archive-source/blog/2018/06/25/heavenly-fatherism.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/hometown.html b/archive-source/blog/2018/06/25/hometown.html index 9c289c0c..533307c3 100644 --- a/archive-source/blog/2018/06/25/hometown.html +++ b/archive-source/blog/2018/06/25/hometown.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html b/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html index a3be4b4a..231f20d4 100644 --- a/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html +++ b/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/in-yun-and-encounter.html b/archive-source/blog/2018/06/25/in-yun-and-encounter.html index 2aa13067..f36f59c9 100644 --- a/archive-source/blog/2018/06/25/in-yun-and-encounter.html +++ b/archive-source/blog/2018/06/25/in-yun-and-encounter.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/isolation-and-liberation.html b/archive-source/blog/2018/06/25/isolation-and-liberation.html index 140848f6..3881dfad 100644 --- a/archive-source/blog/2018/06/25/isolation-and-liberation.html +++ b/archive-source/blog/2018/06/25/isolation-and-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/leaders-meeting.html b/archive-source/blog/2018/06/25/leaders-meeting.html index 28b4ee84..a6350723 100644 --- a/archive-source/blog/2018/06/25/leaders-meeting.html +++ b/archive-source/blog/2018/06/25/leaders-meeting.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html b/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html index 98ca4c10..7a70f197 100644 --- a/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html +++ b/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/let-us-liberate-god.html b/archive-source/blog/2018/06/25/let-us-liberate-god.html index d37966c7..ff9d8d2b 100644 --- a/archive-source/blog/2018/06/25/let-us-liberate-god.html +++ b/archive-source/blog/2018/06/25/let-us-liberate-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/let-us-live-well.html b/archive-source/blog/2018/06/25/let-us-live-well.html index 225217b5..3d1e3def 100644 --- a/archive-source/blog/2018/06/25/let-us-live-well.html +++ b/archive-source/blog/2018/06/25/let-us-live-well.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html b/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html index 49acb8b8..0ccaa1db 100644 --- a/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html +++ b/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html b/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html index a057984b..d4eee3b0 100644 --- a/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html +++ b/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/lifestyle-of-prayer.html b/archive-source/blog/2018/06/25/lifestyle-of-prayer.html index 0fc5c820..62b892e3 100644 --- a/archive-source/blog/2018/06/25/lifestyle-of-prayer.html +++ b/archive-source/blog/2018/06/25/lifestyle-of-prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html b/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html index bbfe279c..e961ca84 100644 --- a/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html +++ b/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html b/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html index 086d9d6f..929f46c6 100644 --- a/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html +++ b/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html b/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html index 39b2c4ac..f71c15fe 100644 --- a/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html +++ b/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html b/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html index 898e4176..a7000375 100644 --- a/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html +++ b/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html b/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html index 4eacbfbe..d3e25467 100644 --- a/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html +++ b/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/our-pride-3.html b/archive-source/blog/2018/06/25/our-pride-3.html index 37a0f0fa..cd5d66ae 100644 --- a/archive-source/blog/2018/06/25/our-pride-3.html +++ b/archive-source/blog/2018/06/25/our-pride-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/parents-day-and-i.html b/archive-source/blog/2018/06/25/parents-day-and-i.html index e739431f..e352c1ef 100644 --- a/archive-source/blog/2018/06/25/parents-day-and-i.html +++ b/archive-source/blog/2018/06/25/parents-day-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/parents-day-and-our-path.html b/archive-source/blog/2018/06/25/parents-day-and-our-path.html index 9fc4b758..1a9cd4ae 100644 --- a/archive-source/blog/2018/06/25/parents-day-and-our-path.html +++ b/archive-source/blog/2018/06/25/parents-day-and-our-path.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html b/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html index ae33e343..dfd9d04f 100644 --- a/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html +++ b/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html b/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html index add9ff18..05c5fe80 100644 --- a/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html +++ b/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html b/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html index 3ca4a4ee..2d3acc22 100644 --- a/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html +++ b/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/precious-existence.html b/archive-source/blog/2018/06/25/precious-existence.html index e90d656a..59553604 100644 --- a/archive-source/blog/2018/06/25/precious-existence.html +++ b/archive-source/blog/2018/06/25/precious-existence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/proclamation-of-true-parents.html b/archive-source/blog/2018/06/25/proclamation-of-true-parents.html index d8ffcb36..7fcf90ed 100644 --- a/archive-source/blog/2018/06/25/proclamation-of-true-parents.html +++ b/archive-source/blog/2018/06/25/proclamation-of-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html b/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html index 7c6f9a6f..c8abbc8c 100644 --- a/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html +++ b/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html b/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html index 584ac2c4..0ad31778 100644 --- a/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html +++ b/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html b/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html index 11b78615..b0274059 100644 --- a/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html +++ b/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html b/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html index 5094693f..ab2de654 100644 --- a/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html +++ b/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-11th-world-media-conference.html b/archive-source/blog/2018/06/25/the-11th-world-media-conference.html index 8c9cd809..d36faf7b 100644 --- a/archive-source/blog/2018/06/25/the-11th-world-media-conference.html +++ b/archive-source/blog/2018/06/25/the-11th-world-media-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html b/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html index 9ad1e1af..f1465d13 100644 --- a/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html +++ b/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html b/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html index 4ae38865..f8d07cc3 100644 --- a/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html +++ b/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html b/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html index cde4b613..495f097c 100644 --- a/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html +++ b/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html b/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html index 17ceee85..58487160 100644 --- a/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html +++ b/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html b/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html index 96241b42..65133d10 100644 --- a/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html +++ b/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html b/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html index 4afa01c5..b1f4bea6 100644 --- a/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html +++ b/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html b/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html index fd44eea3..e1824ae7 100644 --- a/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html +++ b/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html b/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html index 949f72f0..12d21707 100644 --- a/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html +++ b/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html b/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html index 9b9568f5..a692a626 100644 --- a/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html +++ b/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-tide-of-the-heart.html b/archive-source/blog/2018/06/25/the-tide-of-the-heart.html index ef6366a5..1512efb0 100644 --- a/archive-source/blog/2018/06/25/the-tide-of-the-heart.html +++ b/archive-source/blog/2018/06/25/the-tide-of-the-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-tribal-messiah.html b/archive-source/blog/2018/06/25/the-tribal-messiah.html index c25fafba..f582eeeb 100644 --- a/archive-source/blog/2018/06/25/the-tribal-messiah.html +++ b/archive-source/blog/2018/06/25/the-tribal-messiah.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html b/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html index 64283ffe..82bddba0 100644 --- a/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html +++ b/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-way-to-grow.html b/archive-source/blog/2018/06/25/the-way-to-grow.html index 0992003d..25bfa1d0 100644 --- a/archive-source/blog/2018/06/25/the-way-to-grow.html +++ b/archive-source/blog/2018/06/25/the-way-to-grow.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/the-will-and-i.html b/archive-source/blog/2018/06/25/the-will-and-i.html index 03f9fcf1..aee149a0 100644 --- a/archive-source/blog/2018/06/25/the-will-and-i.html +++ b/archive-source/blog/2018/06/25/the-will-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/this-is-the-time-of-change.html b/archive-source/blog/2018/06/25/this-is-the-time-of-change.html index d1d50168..3f281d4f 100644 --- a/archive-source/blog/2018/06/25/this-is-the-time-of-change.html +++ b/archive-source/blog/2018/06/25/this-is-the-time-of-change.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html b/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html index 97e654d3..53f9e399 100644 --- a/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html +++ b/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/unification-church-national-conference.html b/archive-source/blog/2018/06/25/unification-church-national-conference.html index ec1e3c0c..9180f532 100644 --- a/archive-source/blog/2018/06/25/unification-church-national-conference.html +++ b/archive-source/blog/2018/06/25/unification-church-national-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html b/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html index 5b1e523b..cb1cde30 100644 --- a/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html +++ b/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/unification-of-the-fatherland.html b/archive-source/blog/2018/06/25/unification-of-the-fatherland.html index 4dc84e76..59da86ac 100644 --- a/archive-source/blog/2018/06/25/unification-of-the-fatherland.html +++ b/archive-source/blog/2018/06/25/unification-of-the-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html b/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html index 1298768e..9f5aab16 100644 --- a/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html +++ b/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/wake-up-america.html b/archive-source/blog/2018/06/25/wake-up-america.html index e87c37e4..2c65309e 100644 --- a/archive-source/blog/2018/06/25/wake-up-america.html +++ b/archive-source/blog/2018/06/25/wake-up-america.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html b/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html index f731ef7c..08ac676d 100644 --- a/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html +++ b/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html b/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html index 930ab04f..62657c0c 100644 --- a/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html +++ b/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/25/where-god-and-man-meet.html b/archive-source/blog/2018/06/25/where-god-and-man-meet.html index 67810d2e..4439a7aa 100644 --- a/archive-source/blog/2018/06/25/where-god-and-man-meet.html +++ b/archive-source/blog/2018/06/25/where-god-and-man-meet.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html b/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html index d78168f1..35a87d5f 100644 --- a/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html +++ b/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html b/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html index 74156ae8..c87f5dcc 100644 --- a/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html +++ b/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html b/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html index a95f3a49..63e36144 100644 --- a/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html +++ b/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html b/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html index 7e3858d7..41c4d0f0 100644 --- a/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html +++ b/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html b/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html index 7b209a95..65a4502e 100644 --- a/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html +++ b/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/blessing-and-resurrection.html b/archive-source/blog/2018/06/26/blessing-and-resurrection.html index c5796631..8a75455f 100644 --- a/archive-source/blog/2018/06/26/blessing-and-resurrection.html +++ b/archive-source/blog/2018/06/26/blessing-and-resurrection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html b/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html index 51b9005a..f2a70ec0 100644 --- a/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html +++ b/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/day-of-victory-of-love.html b/archive-source/blog/2018/06/26/day-of-victory-of-love.html index 230fbf2d..a1beed54 100644 --- a/archive-source/blog/2018/06/26/day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/26/day-of-victory-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/founders-address.html b/archive-source/blog/2018/06/26/founders-address.html index b78d060c..4562d797 100644 --- a/archive-source/blog/2018/06/26/founders-address.html +++ b/archive-source/blog/2018/06/26/founders-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html b/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html index ef71d120..6e600343 100644 --- a/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html +++ b/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/gods-day-midnight-address.html b/archive-source/blog/2018/06/26/gods-day-midnight-address.html index ec7abe4e..45619fa4 100644 --- a/archive-source/blog/2018/06/26/gods-day-midnight-address.html +++ b/archive-source/blog/2018/06/26/gods-day-midnight-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/gods-day-morning-address.html b/archive-source/blog/2018/06/26/gods-day-morning-address.html index c39cafd9..55ff9ca3 100644 --- a/archive-source/blog/2018/06/26/gods-day-morning-address.html +++ b/archive-source/blog/2018/06/26/gods-day-morning-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html b/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html index d823430f..69c06a0e 100644 --- a/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html +++ b/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html b/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html index d515f3de..8d9eed4f 100644 --- a/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html +++ b/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/international-leaders-conference.html b/archive-source/blog/2018/06/26/international-leaders-conference.html index 2b08c5da..c69443f3 100644 --- a/archive-source/blog/2018/06/26/international-leaders-conference.html +++ b/archive-source/blog/2018/06/26/international-leaders-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html b/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html index 1126184e..d87c0867 100644 --- a/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html +++ b/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html b/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html index d60087d7..7d5058f2 100644 --- a/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html +++ b/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/leaders-meeting-2.html b/archive-source/blog/2018/06/26/leaders-meeting-2.html index 5512d4a8..aa7a5747 100644 --- a/archive-source/blog/2018/06/26/leaders-meeting-2.html +++ b/archive-source/blog/2018/06/26/leaders-meeting-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html b/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html index 7bfcc3e3..da7e4ace 100644 --- a/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html +++ b/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html b/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html index 58cb2023..13e95839 100644 --- a/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html +++ b/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/liberation-and-my-ownership.html b/archive-source/blog/2018/06/26/liberation-and-my-ownership.html index 0be35bef..27bee731 100644 --- a/archive-source/blog/2018/06/26/liberation-and-my-ownership.html +++ b/archive-source/blog/2018/06/26/liberation-and-my-ownership.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html b/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html index ca584b20..12006fc4 100644 --- a/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html +++ b/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/my-whole-life.html b/archive-source/blog/2018/06/26/my-whole-life.html index 10a63ebf..8a99574c 100644 --- a/archive-source/blog/2018/06/26/my-whole-life.html +++ b/archive-source/blog/2018/06/26/my-whole-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html b/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html index c1eb4d12..4f38ff6e 100644 --- a/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html +++ b/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html index a53b012a..58d4f363 100644 --- a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html +++ b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html index 8baae7a8..53fe9d33 100644 --- a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html +++ b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/new-nation-and-new-family.html b/archive-source/blog/2018/06/26/new-nation-and-new-family.html index 5639515c..b81465bc 100644 --- a/archive-source/blog/2018/06/26/new-nation-and-new-family.html +++ b/archive-source/blog/2018/06/26/new-nation-and-new-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html b/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html index 18e7a340..92e81e56 100644 --- a/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html +++ b/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html b/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html index 79d9469c..44e4bb65 100644 --- a/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html +++ b/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html b/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html index 87a3ed24..ee3f088f 100644 --- a/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html +++ b/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html b/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html index 7bd1e00b..ff080049 100644 --- a/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html +++ b/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html b/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html index 02f3988a..0692ff17 100644 --- a/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html +++ b/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html index 60e5e0de..ffcb9db5 100644 --- a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html +++ b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html index ae7f0985..bd4bceab 100644 --- a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html +++ b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/returning-to-the-home-country.html b/archive-source/blog/2018/06/26/returning-to-the-home-country.html index 30bbeae5..ab224e6e 100644 --- a/archive-source/blog/2018/06/26/returning-to-the-home-country.html +++ b/archive-source/blog/2018/06/26/returning-to-the-home-country.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/royal-family-of-true-love.html b/archive-source/blog/2018/06/26/royal-family-of-true-love.html index 935c1537..340f0f31 100644 --- a/archive-source/blog/2018/06/26/royal-family-of-true-love.html +++ b/archive-source/blog/2018/06/26/royal-family-of-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html b/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html index dfbbe3d3..ac0fec4c 100644 --- a/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html +++ b/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/sunday-service.html b/archive-source/blog/2018/06/26/sunday-service.html index cd08f3f3..067c1e65 100644 --- a/archive-source/blog/2018/06/26/sunday-service.html +++ b/archive-source/blog/2018/06/26/sunday-service.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html index a593a962..c9b5f90b 100644 --- a/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html b/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html index 82a9fb97..c9011fc2 100644 --- a/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html +++ b/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html b/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html index 513da285..e1b8637f 100644 --- a/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html +++ b/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html b/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html index 0400753c..f37681f4 100644 --- a/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html +++ b/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html b/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html index f1fd6c1d..49e37d7d 100644 --- a/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html +++ b/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html b/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html index 852b3a19..89a52f90 100644 --- a/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html +++ b/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html b/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html index 744e4813..4448f4ef 100644 --- a/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html +++ b/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html b/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html index 19d012a6..226a5ee3 100644 --- a/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html +++ b/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html index 94cd595e..b2618412 100644 --- a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html +++ b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html index aa1f69f6..987718a1 100644 --- a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html +++ b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html b/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html index 3d8d3da8..b550a8b6 100644 --- a/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html +++ b/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html b/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html index 3bce269a..1d3da4ec 100644 --- a/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html +++ b/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html b/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html index 282072fd..eea14a20 100644 --- a/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html +++ b/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html b/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html index 52d4c09e..966712d7 100644 --- a/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html +++ b/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html b/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html index 7e2336cb..9b577281 100644 --- a/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html +++ b/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html b/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html index 79bf99de..ad1e12b5 100644 --- a/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html +++ b/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html b/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html index 75108433..7da62a73 100644 --- a/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html +++ b/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html b/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html index f8bcec9f..df19ade6 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html +++ b/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html b/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html index 13bc5f0a..2d2cb3f9 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html +++ b/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-unification-church-our-pride.html b/archive-source/blog/2018/06/26/the-unification-church-our-pride.html index 8ce2e134..a062be22 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-our-pride.html +++ b/archive-source/blog/2018/06/26/the-unification-church-our-pride.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/the-way-to-world-peace.html b/archive-source/blog/2018/06/26/the-way-to-world-peace.html index 177234f4..8165f9a6 100644 --- a/archive-source/blog/2018/06/26/the-way-to-world-peace.html +++ b/archive-source/blog/2018/06/26/the-way-to-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/tribal-messiahship.html b/archive-source/blog/2018/06/26/tribal-messiahship.html index 3ef07563..40372d35 100644 --- a/archive-source/blog/2018/06/26/tribal-messiahship.html +++ b/archive-source/blog/2018/06/26/tribal-messiahship.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html b/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html index 2be5db20..b9d05562 100644 --- a/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html +++ b/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html index 8c349d53..892770a9 100644 --- a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html +++ b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html index da7e5baa..4e5801d0 100644 --- a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html +++ b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html b/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html index 865012df..785b42e2 100644 --- a/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html +++ b/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html b/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html index 1c93a5d9..30f492ec 100644 --- a/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html +++ b/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-2.html b/archive-source/blog/2018/06/26/true-parents-birthday-2.html index fae8b674..61c1a939 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-2.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html b/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html index 0f908e7b..028dcc22 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html b/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html index fc4645d7..511101ca 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html b/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html index f1d0d770..47bfd3e3 100644 --- a/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html +++ b/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html b/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html index 2f46b20b..86d25e65 100644 --- a/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html +++ b/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/address-to-the-blessed-children.html b/archive-source/blog/2018/06/27/address-to-the-blessed-children.html index 2e9443c5..e25c9114 100644 --- a/archive-source/blog/2018/06/27/address-to-the-blessed-children.html +++ b/archive-source/blog/2018/06/27/address-to-the-blessed-children.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html b/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html index c10292e2..0a709adf 100644 --- a/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html +++ b/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html b/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html index 3963bae0..e2526811 100644 --- a/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html +++ b/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/everybody-wants-true-love.html b/archive-source/blog/2018/06/27/everybody-wants-true-love.html index 05621c20..e520d898 100644 --- a/archive-source/blog/2018/06/27/everybody-wants-true-love.html +++ b/archive-source/blog/2018/06/27/everybody-wants-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html b/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html index 9d84a6ed..62a138ff 100644 --- a/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html +++ b/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/find-your-true-self.html b/archive-source/blog/2018/06/27/find-your-true-self.html index 07517bdc..40f3748d 100644 --- a/archive-source/blog/2018/06/27/find-your-true-self.html +++ b/archive-source/blog/2018/06/27/find-your-true-self.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html b/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html index 4dfb7f1a..4c24d30b 100644 --- a/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html +++ b/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html b/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html index 97bd49c9..3a861269 100644 --- a/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html +++ b/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/gods-fatherland.html b/archive-source/blog/2018/06/27/gods-fatherland.html index fffd925f..0fbddc32 100644 --- a/archive-source/blog/2018/06/27/gods-fatherland.html +++ b/archive-source/blog/2018/06/27/gods-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html b/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html index f2480d75..588bf6fe 100644 --- a/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html +++ b/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html b/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html index e71859c8..3b47599c 100644 --- a/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html +++ b/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leaders-conference.html b/archive-source/blog/2018/06/27/leaders-conference.html index ffa4dd33..458819c0 100644 --- a/archive-source/blog/2018/06/27/leaders-conference.html +++ b/archive-source/blog/2018/06/27/leaders-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leaders-meeting-3.html b/archive-source/blog/2018/06/27/leaders-meeting-3.html index e58f51e3..75838a18 100644 --- a/archive-source/blog/2018/06/27/leaders-meeting-3.html +++ b/archive-source/blog/2018/06/27/leaders-meeting-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leaders-meeting-4.html b/archive-source/blog/2018/06/27/leaders-meeting-4.html index 8cfafcf5..92c77440 100644 --- a/archive-source/blog/2018/06/27/leaders-meeting-4.html +++ b/archive-source/blog/2018/06/27/leaders-meeting-4.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leadership-conference-2.html b/archive-source/blog/2018/06/27/leadership-conference-2.html index 1c848c1c..86fa7617 100644 --- a/archive-source/blog/2018/06/27/leadership-conference-2.html +++ b/archive-source/blog/2018/06/27/leadership-conference-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leadership-conference.html b/archive-source/blog/2018/06/27/leadership-conference.html index 1bfab240..8e4c7db9 100644 --- a/archive-source/blog/2018/06/27/leadership-conference.html +++ b/archive-source/blog/2018/06/27/leadership-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/leadership-meeting.html b/archive-source/blog/2018/06/27/leadership-meeting.html index 86d17508..8e0860d2 100644 --- a/archive-source/blog/2018/06/27/leadership-meeting.html +++ b/archive-source/blog/2018/06/27/leadership-meeting.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/let-us-find-our-true-self.html b/archive-source/blog/2018/06/27/let-us-find-our-true-self.html index 6527a9d0..29f9ddf5 100644 --- a/archive-source/blog/2018/06/27/let-us-find-our-true-self.html +++ b/archive-source/blog/2018/06/27/let-us-find-our-true-self.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html b/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html index a42fe398..c6b09821 100644 --- a/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html +++ b/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html b/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html index fded7dbe..0913057d 100644 --- a/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html +++ b/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/my-life-of-faith.html b/archive-source/blog/2018/06/27/my-life-of-faith.html index 90465235..e3a532f0 100644 --- a/archive-source/blog/2018/06/27/my-life-of-faith.html +++ b/archive-source/blog/2018/06/27/my-life-of-faith.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html b/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html index 4921da07..04b2c8e0 100644 --- a/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html +++ b/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/original-family-and-blessed-family.html b/archive-source/blog/2018/06/27/original-family-and-blessed-family.html index 539a526b..1ed4ab09 100644 --- a/archive-source/blog/2018/06/27/original-family-and-blessed-family.html +++ b/archive-source/blog/2018/06/27/original-family-and-blessed-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html b/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html index 4c4d296d..6c703d12 100644 --- a/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html +++ b/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html b/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html index ddd6e931..f4bc0ec8 100644 --- a/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html +++ b/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html b/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html index f8684a2c..36c97228 100644 --- a/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html +++ b/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/restoration-of-true-sonship.html b/archive-source/blog/2018/06/27/restoration-of-true-sonship.html index 7607ca68..cbcf464c 100644 --- a/archive-source/blog/2018/06/27/restoration-of-true-sonship.html +++ b/archive-source/blog/2018/06/27/restoration-of-true-sonship.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html b/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html index 1ac6fc6e..93bd0da0 100644 --- a/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html +++ b/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html b/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html index 1a5a466c..78eb366b 100644 --- a/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html +++ b/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html b/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html index a76aa297..d452bf24 100644 --- a/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html +++ b/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html b/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html index b1f515bd..54caa3cc 100644 --- a/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html +++ b/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html b/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html index 47c7c14f..bc8f9bdf 100644 --- a/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html +++ b/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html b/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html index 5751309a..5b050580 100644 --- a/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html +++ b/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-leaders-conference.html b/archive-source/blog/2018/06/27/the-leaders-conference.html index 48618980..963ddd1b 100644 --- a/archive-source/blog/2018/06/27/the-leaders-conference.html +++ b/archive-source/blog/2018/06/27/the-leaders-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting-2.html b/archive-source/blog/2018/06/27/the-leaders-meeting-2.html index 2da04434..1144eb0b 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting-2.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting-3.html b/archive-source/blog/2018/06/27/the-leaders-meeting-3.html index cd79474f..99317fe8 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting-3.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting.html b/archive-source/blog/2018/06/27/the-leaders-meeting.html index d13a7767..2e2cfb98 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-leadership-conference.html b/archive-source/blog/2018/06/27/the-leadership-conference.html index 78f684ba..863458d5 100644 --- a/archive-source/blog/2018/06/27/the-leadership-conference.html +++ b/archive-source/blog/2018/06/27/the-leadership-conference.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html b/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html index c5c5eb90..6d4a4fc0 100644 --- a/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-new-family-pledge.html b/archive-source/blog/2018/06/27/the-new-family-pledge.html index b79b9d1c..1045603d 100644 --- a/archive-source/blog/2018/06/27/the-new-family-pledge.html +++ b/archive-source/blog/2018/06/27/the-new-family-pledge.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html b/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html index efb96108..0cd6ee17 100644 --- a/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html +++ b/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html b/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html index b989b350..e78615c5 100644 --- a/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html +++ b/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html b/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html index d0417084..473bb595 100644 --- a/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html +++ b/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html b/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html index f0c18f4d..ed582264 100644 --- a/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html +++ b/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html b/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html index 3886f94e..7552704e 100644 --- a/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html +++ b/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-time-of-youth.html b/archive-source/blog/2018/06/27/the-time-of-youth.html index 9224d0e1..eecb3723 100644 --- a/archive-source/blog/2018/06/27/the-time-of-youth.html +++ b/archive-source/blog/2018/06/27/the-time-of-youth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-true-family-and-i.html b/archive-source/blog/2018/06/27/the-true-family-and-i.html index 2e1adcd4..4528a35c 100644 --- a/archive-source/blog/2018/06/27/the-true-family-and-i.html +++ b/archive-source/blog/2018/06/27/the-true-family-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html b/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html index eb1d6805..f5843f72 100644 --- a/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html +++ b/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html b/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html index 7965f5d6..70fbe74b 100644 --- a/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html +++ b/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html b/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html index a17147b6..5db453dd 100644 --- a/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html +++ b/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html b/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html index fb945844..7bd01897 100644 --- a/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html +++ b/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html b/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html index 01d3d44c..30f2dd2a 100644 --- a/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html +++ b/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html b/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html index 2f6a6bb4..291d72d7 100644 --- a/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html +++ b/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-family-and-world-peace.html b/archive-source/blog/2018/06/27/true-family-and-world-peace.html index ef122bd2..4250af6b 100644 --- a/archive-source/blog/2018/06/27/true-family-and-world-peace.html +++ b/archive-source/blog/2018/06/27/true-family-and-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html b/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html index 96fbbcc4..a7dad143 100644 --- a/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html +++ b/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-gods-day-2.html b/archive-source/blog/2018/06/27/true-gods-day-2.html index 12dedf8e..d1ee440a 100644 --- a/archive-source/blog/2018/06/27/true-gods-day-2.html +++ b/archive-source/blog/2018/06/27/true-gods-day-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html b/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html index f1faa6a6..df7ed342 100644 --- a/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html +++ b/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-gods-day.html b/archive-source/blog/2018/06/27/true-gods-day.html index 60985951..284e6e5c 100644 --- a/archive-source/blog/2018/06/27/true-gods-day.html +++ b/archive-source/blog/2018/06/27/true-gods-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html b/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html index c11637df..d9ea7f9d 100644 --- a/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html +++ b/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-and-true-family.html b/archive-source/blog/2018/06/27/true-parents-and-true-family.html index fde1fb9b..a3db7181 100644 --- a/archive-source/blog/2018/06/27/true-parents-and-true-family.html +++ b/archive-source/blog/2018/06/27/true-parents-and-true-family.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-birthday-3.html b/archive-source/blog/2018/06/27/true-parents-birthday-3.html index 0118d643..345aa8f3 100644 --- a/archive-source/blog/2018/06/27/true-parents-birthday-3.html +++ b/archive-source/blog/2018/06/27/true-parents-birthday-3.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-birthday-4.html b/archive-source/blog/2018/06/27/true-parents-birthday-4.html index 37d065c6..39cb86ff 100644 --- a/archive-source/blog/2018/06/27/true-parents-birthday-4.html +++ b/archive-source/blog/2018/06/27/true-parents-birthday-4.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html b/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html index 21823896..aede1bcd 100644 --- a/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html +++ b/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html b/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html index 6c775dbb..808819e3 100644 --- a/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html +++ b/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/true-world-peace.html b/archive-source/blog/2018/06/27/true-world-peace.html index 073ce4b9..7460c50d 100644 --- a/archive-source/blog/2018/06/27/true-world-peace.html +++ b/archive-source/blog/2018/06/27/true-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html b/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html index 593db83d..0467d247 100644 --- a/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html +++ b/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html b/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html index 9fc39280..de8ae426 100644 --- a/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html +++ b/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html b/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html index 4adaaa1b..97cb65ca 100644 --- a/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html +++ b/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html b/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html index de8b2e5a..e6cfc616 100644 --- a/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html +++ b/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html b/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html index fc9a17ca..5dd3d72a 100644 --- a/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html +++ b/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html b/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html index 3195cd50..76170711 100644 --- a/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html +++ b/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/who-was-i-2.html b/archive-source/blog/2018/06/27/who-was-i-2.html index 6ed014a4..95c01a47 100644 --- a/archive-source/blog/2018/06/27/who-was-i-2.html +++ b/archive-source/blog/2018/06/27/who-was-i-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/with-jungsung-and-love.html b/archive-source/blog/2018/06/27/with-jungsung-and-love.html index 8b9850f8..791d4126 100644 --- a/archive-source/blog/2018/06/27/with-jungsung-and-love.html +++ b/archive-source/blog/2018/06/27/with-jungsung-and-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html b/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html index aa13cd1b..b9dd408f 100644 --- a/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html +++ b/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html b/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html index a8541d89..ac843614 100644 --- a/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html +++ b/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html b/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html index 62e68249..5a18f221 100644 --- a/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html +++ b/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html b/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html index 898dd7c1..2f49563a 100644 --- a/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html +++ b/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html b/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html index 86a037d3..f07dd9eb 100644 --- a/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html +++ b/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html b/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html index 8d981183..e4728f3c 100644 --- a/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html +++ b/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html b/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html index 955d0ede..d044e60d 100644 --- a/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html +++ b/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html b/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html index 2289eb25..2bc11d33 100644 --- a/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html +++ b/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html b/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html index f31a98bc..ab440d5f 100644 --- a/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html +++ b/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html b/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html index 3610fe64..e554ea80 100644 --- a/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html +++ b/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html b/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html index 9d34cd26..ff6174b1 100644 --- a/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html +++ b/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html b/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html index bf94cd25..75c2d47b 100644 --- a/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html +++ b/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html b/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html index 8bb85feb..bde01c5c 100644 --- a/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html +++ b/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html b/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html index d60ab127..29bd08e1 100644 --- a/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html +++ b/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html b/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html index 79047e25..138d5182 100644 --- a/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html b/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html index 0bb6c78a..f82ef269 100644 --- a/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html +++ b/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html b/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html index 2f2918ce..45561963 100644 --- a/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html +++ b/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html b/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html index c1e3c617..dffd1e1f 100644 --- a/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html +++ b/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html b/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html index 76416588..58a7e203 100644 --- a/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html +++ b/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html b/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html index 9819110d..441f60b3 100644 --- a/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html b/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html index 63a7ef6f..0b876556 100644 --- a/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html +++ b/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html b/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html index 91582f76..4141c0ee 100644 --- a/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html +++ b/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html b/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html index a59815e3..d1770402 100644 --- a/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html +++ b/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html b/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html index 721f0ad0..14c41bf2 100644 --- a/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html +++ b/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html index ef6b97b5..d28d9948 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html index 6cb77f2f..d9aea894 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html index 92d4365f..186c0770 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html index f7fe14a0..5d9eeb5d 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html b/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html index 8a369e70..98cecee1 100644 --- a/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html +++ b/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html b/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html index ecec0fda..23578ded 100644 --- a/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html +++ b/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html b/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html index 20d7e71d..e382ca45 100644 --- a/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html +++ b/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html b/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html index 55313e3f..43eeef20 100644 --- a/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html +++ b/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html b/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html index a9b01412..18d742f2 100644 --- a/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html +++ b/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html b/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html index 16339178..f16a5203 100644 --- a/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html +++ b/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html b/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html index 74f88c70..6b8c9a7b 100644 --- a/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html +++ b/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/hoon-dok-hae.html b/archive-source/blog/2018/06/30/hoon-dok-hae.html index 5b0cf158..4d25466d 100644 --- a/archive-source/blog/2018/06/30/hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/hoon-dok-hae.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html b/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html index 35c13dde..8073c29d 100644 --- a/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html +++ b/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html b/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html index 590590df..3c13ae27 100644 --- a/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html +++ b/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html b/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html index 1b82b26c..804ac8f4 100644 --- a/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html +++ b/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html b/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html index bb161eb0..b4875210 100644 --- a/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html +++ b/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html b/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html index 098f6b92..df6513c8 100644 --- a/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html +++ b/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/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 b/archive-source/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 index 7a15a427..eb389b9e 100644 --- a/archive-source/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 +++ b/archive-source/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 @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/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 b/archive-source/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 index b6aa7888..35a0ddc9 100644 --- a/archive-source/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 +++ b/archive-source/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 @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html b/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html index 19cbd4b4..f6c0f3f6 100644 --- a/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html +++ b/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html b/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html index 5a8889b5..192c8f39 100644 --- a/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html +++ b/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html b/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html index c8b4fcf6..9e572da1 100644 --- a/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html +++ b/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-owner-of-re-creation.html b/archive-source/blog/2018/06/30/the-owner-of-re-creation.html index 0affbd4f..2fe9c8b4 100644 --- a/archive-source/blog/2018/06/30/the-owner-of-re-creation.html +++ b/archive-source/blog/2018/06/30/the-owner-of-re-creation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-owners-of-re-creation.html b/archive-source/blog/2018/06/30/the-owners-of-re-creation.html index d5c25de9..6ad14cea 100644 --- a/archive-source/blog/2018/06/30/the-owners-of-re-creation.html +++ b/archive-source/blog/2018/06/30/the-owners-of-re-creation.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html b/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html index 635affe0..49278ae4 100644 --- a/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html +++ b/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html b/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html index 88031029..4ec06598 100644 --- a/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html +++ b/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html b/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html index df356bec..04ab82ba 100644 --- a/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html +++ b/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html b/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html index 845958b1..9c5c1fa1 100644 --- a/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html b/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html index 4f0c40a0..4c294e0d 100644 --- a/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html b/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html index 46002683..f185b30f 100644 --- a/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html +++ b/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html b/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html index 064baedd..7c8b0057 100644 --- a/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html +++ b/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html b/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html index 8dba43d5..705f2b78 100644 --- a/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html +++ b/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html b/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html index b87705f0..9378c34a 100644 --- a/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html +++ b/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html b/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html index 35c95c81..57c6bcd4 100644 --- a/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html +++ b/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html b/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html index 8a7345ca..299f6f55 100644 --- a/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html +++ b/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html b/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html index 23f546b7..7ab90804 100644 --- a/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html +++ b/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html b/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html index 8b56d964..97dcc1f2 100644 --- a/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html +++ b/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html b/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html index 27a670ae..b6a31a18 100644 --- a/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html +++ b/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html b/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html index 932b6fe9..06c18d0d 100644 --- a/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html +++ b/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html b/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html index 52fe2c53..9ff13f0f 100644 --- a/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html +++ b/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ - + + diff --git a/archive-source/blog/categories/announcements.html b/archive-source/blog/categories/announcements.html index 4b55ac69..159b4c4f 100644 --- a/archive-source/blog/categories/announcements.html +++ b/archive-source/blog/categories/announcements.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/blog/categories/events.html b/archive-source/blog/categories/events.html index 0ef340d8..6e40e6a6 100644 --- a/archive-source/blog/categories/events.html +++ b/archive-source/blog/categories/events.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@
@@ -214,6 +215,12 @@
- + + diff --git a/archive-source/blog/categories/news.html b/archive-source/blog/categories/news.html index a0a39aa6..2c4079ce 100644 --- a/archive-source/blog/categories/news.html +++ b/archive-source/blog/categories/news.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/blog/categories/uncategorized.html b/archive-source/blog/categories/uncategorized.html index 724da8e9..1813ed4b 100644 --- a/archive-source/blog/categories/uncategorized.html +++ b/archive-source/blog/categories/uncategorized.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + + + + + + + + diff --git a/archive-source/blog/tags/blessing.html b/archive-source/blog/tags/blessing.html index 98ec5436..e45b8d8b 100644 --- a/archive-source/blog/tags/blessing.html +++ b/archive-source/blog/tags/blessing.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/blog/tags/god.html b/archive-source/blog/tags/god.html index cba1456e..642b1843 100644 --- a/archive-source/blog/tags/god.html +++ b/archive-source/blog/tags/god.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/blog/tags/marriage.html b/archive-source/blog/tags/marriage.html index b7f5a9c2..2d937bb2 100644 --- a/archive-source/blog/tags/marriage.html +++ b/archive-source/blog/tags/marriage.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/blog/tags/relationships.html b/archive-source/blog/tags/relationships.html index 1f33c3b5..15caef93 100644 --- a/archive-source/blog/tags/relationships.html +++ b/archive-source/blog/tags/relationships.html @@ -10,14 +10,19 @@ - + - - + + + - +
@@ -30,11 +35,7 @@ - + + diff --git a/archive-source/contact.html b/archive-source/contact.html index 2471ce29..7f0abe9b 100644 --- a/archive-source/contact.html +++ b/archive-source/contact.html @@ -10,15 +10,20 @@ - + + + + - - - +
@@ -31,11 +36,7 @@ + + - + diff --git a/archive-source/events.html b/archive-source/events.html index 446c231a..696d4ef8 100644 --- a/archive-source/events.html +++ b/archive-source/events.html @@ -22,14 +22,21 @@ - + - - + + + + + - +
@@ -42,11 +49,7 @@ - + + + + + + + + + + + + + + + + + + + + + diff --git a/archive-source/index.html b/archive-source/index.html index 7dd0d3f5..5d62e8b7 100644 --- a/archive-source/index.html +++ b/archive-source/index.html @@ -10,14 +10,20 @@ - + - - + + + + - +
@@ -30,11 +36,7 @@