diff --git a/benchmarks/sn-en - Copy/jw300-baseline/Mchechesi_reverse_training_Shona_to_English.ipynb b/benchmarks/sn-en - Copy/jw300-baseline/Mchechesi_reverse_training_Shona_to_English.ipynb new file mode 100644 index 0000000..03342c4 --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/Mchechesi_reverse_training_Shona_to_English.ipynb @@ -0,0 +1 @@ +{"nbformat":4,"nbformat_minor":0,"metadata":{"accelerator":"GPU","colab":{"name":"Copy of starter_notebook_reverse_training_Shona_to_English.ipynb","provenance":[{"file_id":"https://github.com/masakhane-io/masakhane-mt/blob/master/starter_notebook_into_English_training.ipynb","timestamp":1633786229212}],"collapsed_sections":[]},"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.7.3"}},"cells":[{"cell_type":"markdown","metadata":{"id":"Igc5itf-xMGj"},"source":["# Masakhane - Reverse Machine Translation for African Languages (Using JoeyNMT)"]},{"cell_type":"markdown","metadata":{"id":"zoaaPVMcYktO"},"source":["> ## NB\n",">### - The purpose of this Notebook is to build models that translate African languages(target language) *into* English(source language). This will allow us to in future be able to make translations from one African language to the other. If you'd like to translate *from* English, please use [this](https://github.com/masakhane-io/masakhane-mt/blob/master/starter_notebook.ipynb) starter notebook instead.\n","\n",">### - We call this reverse training because normally we build models that make translations from the source language(English) to the target language. But in this case we are doing the reverse; building models that make translations from the target language to the source(English)"]},{"cell_type":"markdown","metadata":{"id":"x4fXCKCf36IK"},"source":["## Note before beginning:\n","### - The idea is that you should be able to make minimal changes to this in order to get SOME result for your own translation corpus. \n","\n","### - The tl;dr: Go to the **\"TODO\"** comments which will tell you what to update to get up and running\n","\n","### - If you actually want to have a clue what you're doing, read the text and peek at the links\n","\n","### - With 100 epochs, it should take around 7 hours to run in Google Colab\n","\n","### - Once you've gotten a result for your language, please attach and email your notebook that generated it to masakhanetranslation@gmail.com\n","\n","### - If you care enough and get a chance, doing a brief background on your language would be amazing. See examples in [(Martinus, 2019)](https://arxiv.org/abs/1906.05685)"]},{"cell_type":"markdown","metadata":{"id":"l929HimrxS0a"},"source":["## Retrieve your data & make a parallel corpus\n","\n","If you are wanting to use the JW300 data referenced on the Masakhane website or in our GitHub repo, you can use `opus-tools` to convert the data into a convenient format. `opus_read` from that package provides a convenient tool for reading the native aligned XML files and to convert them to TMX format. The tool can also be used to fetch relevant files from OPUS on the fly and to filter the data as necessary. [Read the documentation](https://pypi.org/project/opustools-pkg/) for more details.\n","\n","Once you have your corpus files in TMX format (an xml structure which will include the sentences in your target language and your source language in a single file), we recommend reading them into a pandas dataframe. Thankfully, Jade wrote a silly `tmx2dataframe` package which converts your tmx file to a pandas dataframe. "]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"oGRmDELn7Az0","executionInfo":{"status":"ok","timestamp":1633771799308,"user_tz":-120,"elapsed":34692,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"69bd94cc-a738-493c-b690-383af5490467"},"source":["from google.colab import drive\n","drive.mount('/content/drive')"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Mounted at /content/drive\n"]}]},{"cell_type":"code","metadata":{"id":"Cn3tgQLzUxwn"},"source":["# TODO: Set your source and target languages. Keep in mind, these traditionally use language codes as found here:\n","# These will also become the suffix's of all vocab and corpus files used throughout\n","import os\n","source_language = \"en\"\n","target_language = \"sn\" \n","lc = False # If True, lowercase the data.\n","seed = 42 # Random seed for shuffling.\n","tag = \"baseline\" # Give a unique name to your folder - this is to ensure you don't rewrite any models you've already submitted\n","\n","os.environ[\"src\"] = source_language # Sets them in bash as well, since we often use bash scripts\n","os.environ[\"tgt\"] = target_language\n","os.environ[\"tag\"] = tag\n","\n","# This will save it to a folder in our gdrive instead!\n","!mkdir -p \"/content/drive/My Drive/masakhane/$tgt-$src-$tag\"\n","os.environ[\"gdrive_path\"] = \"/content/drive/My Drive/masakhane/%s-%s-%s\" % (target_language, source_language, tag)"],"execution_count":null,"outputs":[]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"kBSgJHEw7Nvx","executionInfo":{"status":"ok","timestamp":1633771818439,"user_tz":-120,"elapsed":359,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"931a4655-4e2f-4e6a-a53d-3c7bdac3adf7"},"source":["!echo $gdrive_path"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["/content/drive/My Drive/masakhane/sn-en-baseline\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"gA75Fs9ys8Y9","executionInfo":{"status":"ok","timestamp":1633771827706,"user_tz":-120,"elapsed":4675,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"b7b2f07d-9a1e-44a8-a348-b75029fd8aa1"},"source":["# Install opus-tools\n","! pip install opustools-pkg"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Collecting opustools-pkg\n"," Downloading opustools_pkg-0.0.52-py3-none-any.whl (80 kB)\n","\u001b[?25l\r\u001b[K |████ | 10 kB 19.0 MB/s eta 0:00:01\r\u001b[K |████████ | 20 kB 25.2 MB/s eta 0:00:01\r\u001b[K |████████████▏ | 30 kB 13.2 MB/s eta 0:00:01\r\u001b[K |████████████████▏ | 40 kB 9.9 MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 51 kB 5.3 MB/s eta 0:00:01\r\u001b[K |████████████████████████▎ | 61 kB 5.7 MB/s eta 0:00:01\r\u001b[K |████████████████████████████▎ | 71 kB 6.2 MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 80 kB 4.1 MB/s \n","\u001b[?25hInstalling collected packages: opustools-pkg\n","Successfully installed opustools-pkg-0.0.52\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"xq-tDZVks7ZD","executionInfo":{"status":"ok","timestamp":1633772142432,"user_tz":-120,"elapsed":309218,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"8e20ea90-b68b-43c8-9f2c-94eee2c5f4d6"},"source":["# Downloading our corpus\n","! opus_read -d JW300 -s $src -t $tgt -wm moses -w jw300.$src jw300.$tgt -q\n","\n","# extract the corpus file\n","! gunzip JW300_latest_xml_$src-$tgt.xml.gz"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["\n","Alignment file /proj/nlpl/data/OPUS/JW300/latest/xml/en-sn.xml.gz not found. The following files are available for downloading:\n","\n"," 8 MB https://object.pouta.csc.fi/OPUS-JW300/v1c/xml/en-sn.xml.gz\n"," 274 MB https://object.pouta.csc.fi/OPUS-JW300/v1c/xml/en.zip\n"," 73 MB https://object.pouta.csc.fi/OPUS-JW300/v1c/xml/sn.zip\n","\n"," 355 MB Total size\n","./JW300_latest_xml_en-sn.xml.gz ... 100% of 8 MB\n","./JW300_latest_xml_en.zip ... 100% of 274 MB\n","./JW300_latest_xml_sn.zip ... 100% of 73 MB\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"n48GDRnP8y2G","executionInfo":{"status":"ok","timestamp":1633772149744,"user_tz":-120,"elapsed":1640,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"38bec94c-f892-4979-fc03-ed9d13945fb5"},"source":["# Download the global test set.\n","! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-any.en\n"," \n","# And the specific test set for this language pair.\n","os.environ[\"trg\"] = target_language \n","os.environ[\"src\"] = source_language \n","\n","! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-$trg.en \n","! mv test.en-$trg.en test.en\n","! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-$trg.$trg \n","! mv test.en-$trg.$trg test.$trg"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["--2021-10-09 09:35:47-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-any.en\n","Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.108.133, ...\n","Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.\n","HTTP request sent, awaiting response... 200 OK\n","Length: 277791 (271K) [text/plain]\n","Saving to: ‘test.en-any.en’\n","\n","test.en-any.en 100%[===================>] 271.28K --.-KB/s in 0.03s \n","\n","2021-10-09 09:35:47 (8.62 MB/s) - ‘test.en-any.en’ saved [277791/277791]\n","\n","--2021-10-09 09:35:47-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-sn.en\n","Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.108.133, ...\n","Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.\n","HTTP request sent, awaiting response... 200 OK\n","Length: 206539 (202K) [text/plain]\n","Saving to: ‘test.en-sn.en’\n","\n","test.en-sn.en 100%[===================>] 201.70K --.-KB/s in 0.02s \n","\n","2021-10-09 09:35:47 (8.21 MB/s) - ‘test.en-sn.en’ saved [206539/206539]\n","\n","--2021-10-09 09:35:48-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-sn.sn\n","Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ...\n","Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected.\n","HTTP request sent, awaiting response... 200 OK\n","Length: 215910 (211K) [text/plain]\n","Saving to: ‘test.en-sn.sn’\n","\n","test.en-sn.sn 100%[===================>] 210.85K --.-KB/s in 0.03s \n","\n","2021-10-09 09:35:48 (8.13 MB/s) - ‘test.en-sn.sn’ saved [215910/215910]\n","\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"NqDG-CI28y2L","executionInfo":{"status":"ok","timestamp":1633772161605,"user_tz":-120,"elapsed":508,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"4420ce3e-9823-44e3-ddb8-30e23f548caf"},"source":["# Read the test data to filter from train and dev splits.\n","# Store english portion in set for quick filtering checks.\n","en_test_sents = set()\n","filter_test_sents = \"test.en-any.en\"\n","j = 0\n","with open(filter_test_sents) as f:\n"," for line in f:\n"," en_test_sents.add(line.strip())\n"," j += 1\n","print('Loaded {} global test sentences to filter from the training/dev data.'.format(j))"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Loaded 3571 global test sentences to filter from the training/dev data.\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/","height":162},"id":"3CNdwLBCfSIl","executionInfo":{"status":"ok","timestamp":1633772222709,"user_tz":-120,"elapsed":53675,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"0f9f55ca-c2a4-4101-a240-473fa5318596"},"source":["import pandas as pd\n","\n","# TMX file to dataframe\n","source_file = 'jw300.' + source_language\n","target_file = 'jw300.' + target_language\n","\n","source = []\n","target = []\n","skip_lines = [] # Collect the line numbers of the source portion to skip the same lines for the target portion.\n","with open(source_file) as f:\n"," for i, line in enumerate(f):\n"," # Skip sentences that are contained in the test set.\n"," if line.strip() not in en_test_sents:\n"," source.append(line.strip())\n"," else:\n"," skip_lines.append(i) \n","with open(target_file) as f:\n"," for j, line in enumerate(f):\n"," # Only add to corpus if corresponding source was not skipped.\n"," if j not in skip_lines:\n"," target.append(line.strip())\n"," \n","print('Loaded data and skipped {}/{} lines since contained in test set.'.format(len(skip_lines), i))\n"," \n","df = pd.DataFrame(zip(source, target), columns=['source_sentence', 'target_sentence'])\n","# if you get TypeError: data argument can't be an iterator is because of your zip version run this below\n","#df = pd.DataFrame(list(zip(source, target)), columns=['source_sentence', 'target_sentence'])\n","df.head(3)"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Loaded data and skipped 4624/777752 lines since contained in test set.\n"]},{"output_type":"execute_result","data":{"text/html":["
\n","\n","\n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n","
source_sentencetarget_sentence
0Young People Ask . . .Vechiduku Vanobvunza Kuti . . .
1Why Do I Lose My Temper ?Neiko Ndichitsamwa ?
2“ When I ’ m angry , I ’ m furious , and you w...“ Apo ndinoshatirwa , ndinotyisa , uye haungad...
\n","
"],"text/plain":[" source_sentence target_sentence\n","0 Young People Ask . . . Vechiduku Vanobvunza Kuti . . .\n","1 Why Do I Lose My Temper ? Neiko Ndichitsamwa ?\n","2 “ When I ’ m angry , I ’ m furious , and you w... “ Apo ndinoshatirwa , ndinotyisa , uye haungad..."]},"metadata":{},"execution_count":8}]},{"cell_type":"markdown","metadata":{"id":"YkuK3B4p2AkN"},"source":["## Pre-processing and export\n","\n","It is generally a good idea to remove duplicate translations and conflicting translations from the corpus. In practice, these public corpora include some number of these that need to be cleaned.\n","\n","In addition we will split our data into dev/test/train and export to the filesystem."]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"M_2ouEOH1_1q","executionInfo":{"status":"ok","timestamp":1633772247963,"user_tz":-120,"elapsed":2566,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"2f6af30e-6dac-42ad-d299-830d58e5bf3f"},"source":["# drop duplicate translations\n","df_pp = df.drop_duplicates()\n","\n","# drop conflicting translations\n","# (this is optional and something that you might want to comment out \n","# depending on the size of your corpus)\n","df_pp.drop_duplicates(subset='source_sentence', inplace=True)\n","df_pp.drop_duplicates(subset='target_sentence', inplace=True)\n","\n","# Shuffle the data to remove bias in dev set selection.\n","df_pp = df_pp.sample(frac=1, random_state=seed).reset_index(drop=True)"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stderr","text":["/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:7: SettingWithCopyWarning: \n","A value is trying to be set on a copy of a slice from a DataFrame\n","\n","See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n"," import sys\n","/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:8: SettingWithCopyWarning: \n","A value is trying to be set on a copy of a slice from a DataFrame\n","\n","See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n"," \n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"Z_1BwAApEtMk","executionInfo":{"status":"ok","timestamp":1633772275398,"user_tz":-120,"elapsed":11111,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"2ead7233-cbf9-41b7-89b5-03c8b37d4d6d"},"source":["# Install fuzzy wuzzy to remove \"almost duplicate\" sentences in the\n","# test and training sets.\n","! pip install fuzzywuzzy\n","! pip install python-Levenshtein\n","import time\n","from fuzzywuzzy import process\n","import numpy as np\n","from os import cpu_count\n","from functools import partial\n","from multiprocessing import Pool\n","\n","\n","# reset the index of the training set after previous filtering\n","df_pp.reset_index(drop=False, inplace=True)\n","\n","# Remove samples from the training data set if they \"almost overlap\" with the\n","# samples in the test set.\n","\n","# Filtering function. Adjust pad to narrow down the candidate matches to\n","# within a certain length of characters of the given sample.\n","def fuzzfilter(sample, candidates, pad):\n"," candidates = [x for x in candidates if len(x) <= len(sample)+pad and len(x) >= len(sample)-pad] \n"," if len(candidates) > 0:\n"," return process.extractOne(sample, candidates)[1]\n"," else:\n"," return np.nan"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Collecting fuzzywuzzy\n"," Downloading fuzzywuzzy-0.18.0-py2.py3-none-any.whl (18 kB)\n","Installing collected packages: fuzzywuzzy\n","Successfully installed fuzzywuzzy-0.18.0\n","Collecting python-Levenshtein\n"," Downloading python-Levenshtein-0.12.2.tar.gz (50 kB)\n","\u001b[K |████████████████████████████████| 50 kB 3.2 MB/s \n","\u001b[?25hRequirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from python-Levenshtein) (57.4.0)\n","Building wheels for collected packages: python-Levenshtein\n"," Building wheel for python-Levenshtein (setup.py) ... \u001b[?25l\u001b[?25hdone\n"," Created wheel for python-Levenshtein: filename=python_Levenshtein-0.12.2-cp37-cp37m-linux_x86_64.whl size=149861 sha256=88f4eb789daf780763f6713337422936d0433289189d5355d2fb6fbec04654d9\n"," Stored in directory: /root/.cache/pip/wheels/05/5f/ca/7c4367734892581bb5ff896f15027a932c551080b2abd3e00d\n","Successfully built python-Levenshtein\n","Installing collected packages: python-Levenshtein\n","Successfully installed python-Levenshtein-0.12.2\n"]}]},{"cell_type":"code","metadata":{"id":"92EsgTaY3B4H"},"source":["# start_time = time.time()\n","# ### iterating over pandas dataframe rows is not recomended, let use multi processing to apply the function\n","\n","# with Pool(cpu_count()-1) as pool:\n","# scores = pool.map(partial(fuzzfilter, candidates=list(en_test_sents), pad=5), df_pp['source_sentence'])\n","# hours, rem = divmod(time.time() - start_time, 3600)\n","# minutes, seconds = divmod(rem, 60)\n","# print(\"done in {}h:{}min:{}seconds\".format(hours, minutes, seconds))\n","\n","# # Filter out \"almost overlapping samples\"\n","# df_pp = df_pp.assign(scores=scores)\n","# df_pp = df_pp[df_pp['scores'] < 95]"],"execution_count":null,"outputs":[]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"hxxBOCA-xXhy","executionInfo":{"status":"ok","timestamp":1633772377849,"user_tz":-120,"elapsed":86840,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"9a7238b9-187b-405f-caef-ee55b2169963"},"source":["# This section does the split between train/dev for the parallel corpora then saves them as separate files\n","# We use 1000 dev test and the given test set.\n","import csv\n","\n","# Do the split between dev/train and create parallel corpora\n","num_dev_patterns = 1000\n","\n","# Optional: lower case the corpora - this will make it easier to generalize, but without proper casing.\n","if lc: # Julia: making lowercasing optional\n"," df_pp[\"source_sentence\"] = df_pp[\"source_sentence\"].str.lower()\n"," df_pp[\"target_sentence\"] = df_pp[\"target_sentence\"].str.lower()\n","\n","# Julia: test sets are already generated\n","dev = df_pp.tail(num_dev_patterns) # Herman: Error in original\n","stripped = df_pp.drop(df_pp.tail(num_dev_patterns).index)\n","\n","with open(\"train.\"+source_language, \"w\") as src_file, open(\"train.\"+target_language, \"w\") as trg_file:\n"," for index, row in stripped.iterrows():\n"," src_file.write(row[\"source_sentence\"]+\"\\n\")\n"," trg_file.write(row[\"target_sentence\"]+\"\\n\")\n"," \n","with open(\"dev.\"+source_language, \"w\") as src_file, open(\"dev.\"+target_language, \"w\") as trg_file:\n"," for index, row in dev.iterrows():\n"," src_file.write(row[\"source_sentence\"]+\"\\n\")\n"," trg_file.write(row[\"target_sentence\"]+\"\\n\")\n","\n","#stripped[[\"source_sentence\"]].to_csv(\"train.\"+source_language, header=False, index=False) # Herman: Added `header=False` everywhere\n","#stripped[[\"target_sentence\"]].to_csv(\"train.\"+target_language, header=False, index=False) # Julia: Problematic handling of quotation marks.\n","\n","#dev[[\"source_sentence\"]].to_csv(\"dev.\"+source_language, header=False, index=False)\n","#dev[[\"target_sentence\"]].to_csv(\"dev.\"+target_language, header=False, index=False)\n","\n","# Doublecheck the format below. There should be no extra quotation marks or weird characters.\n","! head train.*\n","! head dev.*"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["==> train.en <==\n","Junji and I have long been enjoying Bethel service , now working with a family of some 600 members .\n","She did not need to consult her parents to turn down the job .\n","16 A Letter From South Africa\n","Appropriately , the priests were to keep themselves holy .\n","( John 5 : 28 , 29 ; 11 : 23 ) Proving that Jehovah is capable of resurrecting the dead , Jesus once said that Abraham , Isaac , and Jacob “ are all living to him . ”\n","You may still have many years of schooling ahead of you .\n","The water flowed into the Dead Sea , healing even its lifeless waters. — Ezekiel 47 : 1-12 ; Isaiah 35 : 1 , 6 , 7 .\n","Or some may suggest that the child would be psychologically damaged by accompanying the parent in talking to others about the Bible .\n","There will be famines , pestilences , and earthquakes .\n","From a very young age , he was convinced that the Bible is the inspired revelation from God .\n","\n","==> train.sn <==\n","Ini naJunji tave tiri kuita basa repaBheteri , iye zvino tichishanda nemhuri ine nhengo 600 .\n","Haana kumboswerobvunza vabereki kuti arambe basa racho .\n","16 Tsamba Inobva kuSouth Africa\n","Saka vapristi vaifanira kuramba vari vatsvene .\n","( Joh . 5 : 28 , 29 ; 11 : 23 ) Achiratidza kuti Jehovha anokwanisa kumutsa vakafa , Jesu akambotaura kuti Abrahamu , Isaka uye Jakobho “ kwaari vose vapenyu . ”\n","Ungave uchine makore mazhinji okudzidza mberi kwako .\n","Mvura yakayerera ichipinda muGungwa Rakafa , ichiporesa kunyange mvura dzarwo dzisina upenyu . — Ezekieri 47 : 1 - 12 ; Isaya 35 : 1 , 6 , 7 .\n","Kana kuti vamwe vangakarakadza kuti mwana angakuvadzwa mumurangariro nokuperekedza mubereki mukutaura kuvamwe pamusoro peBhaibheri .\n","Kuchava nenzara , nhenda , uye kudengenyeka kwapasi .\n","Kubva pazera duku zvikuru , aipwiswa kuti Bhaibheri chizaruro chakafuridzirwa chakabva kuna Mwari .\n","==> dev.en <==\n","When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","34 : 10 .\n","We returned to the United States .\n","12 What if a minor who lives with his parents gets involved in serious wrongdoing and because of his unrepentant attitude is expelled from the congregation ?\n","“ The blessing of Jehovah — that is what makes rich ”\n","Help Your Child Cope With Grief\n","What happened then ?\n","The belief that oppression and poverty justify stealing is quite popular .\n","Even when on earth as the man Jesus , God ’ s Son was given reassurance of his Father ’ s deep love .\n","\n","==> dev.sn <==\n","Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","34 : 10 .\n","Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","12 Zvakadini kana mwana asati ayaruka ari kugara nevabereki akabatanidzwa muchivi chakakomba uye nokuda kwokusapfidza kwake odzingwa muungano ?\n","“ Chikomborero chaJehovha — ndicho chinopfumisa ”\n","Batsira Mwana Wako Kuti Atsungirire Kusuruvara\n","Chii chakaitika panguva iyoyo ?\n","Kudavira kuti udzvinyiriri nourombo zvinoruramisa kuba kwakakurumbira zvikuru .\n","Kunyange paaiva pasi pano ari munhu , Jesu Mwanakomana waMwari akavimbiswazve naBaba vake kuti vaimuda kwazvo .\n"]}]},{"cell_type":"markdown","metadata":{"id":"epeCydmCyS8X"},"source":["\n","\n","---\n","\n","\n","## Installation of JoeyNMT\n","\n","JoeyNMT is a simple, minimalist NMT package which is useful for learning and teaching. Check out the documentation for JoeyNMT [here](https://joeynmt.readthedocs.io) "]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"iBRMm4kMxZ8L","executionInfo":{"status":"ok","timestamp":1633772415707,"user_tz":-120,"elapsed":22158,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"76332613-271b-4e70-f64e-2f227e96bac9"},"source":["# Install JoeyNMT\n","! git clone https://github.com/joeynmt/joeynmt.git\n","! cd joeynmt; pip3 install .\n","# Install Pytorch with GPU support v1.7.1.\n","! pip install torch==1.9.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Cloning into 'joeynmt'...\n","remote: Enumerating objects: 3224, done.\u001b[K\n","remote: Counting objects: 100% (273/273), done.\u001b[K\n","remote: Compressing objects: 100% (139/139), done.\u001b[K\n","remote: Total 3224 (delta 157), reused 206 (delta 134), pack-reused 2951\u001b[K\n","Receiving objects: 100% (3224/3224), 8.17 MiB | 15.52 MiB/s, done.\n","Resolving deltas: 100% (2185/2185), done.\n","Processing /content/joeynmt\n","\u001b[33m DEPRECATION: A future pip version will change local packages to be built in-place without first copying to a temporary directory. We recommend you use --use-feature=in-tree-build to test your packages with this new behavior before it becomes the default.\n"," pip 21.3 will remove support for this functionality. You can find discussion regarding this at https://github.com/pypa/pip/issues/7555.\u001b[0m\n","Requirement already satisfied: future in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (0.16.0)\n","Requirement already satisfied: pillow in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (7.1.2)\n","Requirement already satisfied: numpy>=1.19.5 in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (1.19.5)\n","Requirement already satisfied: setuptools>=41.0.0 in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (57.4.0)\n","Requirement already satisfied: torch>=1.9.0 in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (1.9.0+cu111)\n","Requirement already satisfied: tensorboard>=1.15 in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (2.6.0)\n","Requirement already satisfied: torchtext>=0.10.0 in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (0.10.0)\n","Collecting sacrebleu>=2.0.0\n"," Downloading sacrebleu-2.0.0-py3-none-any.whl (90 kB)\n","\u001b[K |████████████████████████████████| 90 kB 3.9 MB/s \n","\u001b[?25hCollecting subword-nmt\n"," Downloading subword_nmt-0.3.7-py2.py3-none-any.whl (26 kB)\n","Requirement already satisfied: matplotlib in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (3.2.2)\n","Requirement already satisfied: seaborn in /usr/local/lib/python3.7/dist-packages (from joeynmt==1.3) (0.11.2)\n","Collecting pyyaml>=5.1\n"," Downloading PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl (636 kB)\n","\u001b[K |████████████████████████████████| 636 kB 18.1 MB/s \n","\u001b[?25hCollecting pylint>=2.9.6\n"," Downloading pylint-2.11.1-py3-none-any.whl (392 kB)\n","\u001b[K |████████████████████████████████| 392 kB 34.6 MB/s \n","\u001b[?25hCollecting six==1.12\n"," Downloading six-1.12.0-py2.py3-none-any.whl (10 kB)\n","Collecting wrapt==1.11.1\n"," Downloading wrapt-1.11.1.tar.gz (27 kB)\n","Collecting isort<6,>=4.2.5\n"," Downloading isort-5.9.3-py3-none-any.whl (106 kB)\n","\u001b[K |████████████████████████████████| 106 kB 41.7 MB/s \n","\u001b[?25hCollecting mccabe<0.7,>=0.6\n"," Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)\n","Collecting astroid<2.9,>=2.8.0\n"," Downloading astroid-2.8.2-py3-none-any.whl (246 kB)\n","\u001b[K |████████████████████████████████| 246 kB 47.0 MB/s \n","\u001b[?25hRequirement already satisfied: toml>=0.7.1 in /usr/local/lib/python3.7/dist-packages (from pylint>=2.9.6->joeynmt==1.3) (0.10.2)\n","Collecting platformdirs>=2.2.0\n"," Downloading platformdirs-2.4.0-py3-none-any.whl (14 kB)\n","Collecting typing-extensions>=3.10.0\n"," Downloading typing_extensions-3.10.0.2-py3-none-any.whl (26 kB)\n","Collecting typed-ast<1.5,>=1.4.0\n"," Downloading typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl (743 kB)\n","\u001b[K |████████████████████████████████| 743 kB 40.0 MB/s \n","\u001b[?25hCollecting lazy-object-proxy>=1.4.0\n"," Downloading lazy_object_proxy-1.6.0-cp37-cp37m-manylinux1_x86_64.whl (55 kB)\n","\u001b[K |████████████████████████████████| 55 kB 3.7 MB/s \n","\u001b[?25hCollecting portalocker\n"," Downloading portalocker-2.3.2-py2.py3-none-any.whl (15 kB)\n","Collecting colorama\n"," Downloading colorama-0.4.4-py2.py3-none-any.whl (16 kB)\n","Requirement already satisfied: tabulate>=0.8.9 in /usr/local/lib/python3.7/dist-packages (from sacrebleu>=2.0.0->joeynmt==1.3) (0.8.9)\n","Requirement already satisfied: regex in /usr/local/lib/python3.7/dist-packages (from sacrebleu>=2.0.0->joeynmt==1.3) (2019.12.20)\n","Requirement already satisfied: werkzeug>=0.11.15 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (1.0.1)\n","Requirement already satisfied: wheel>=0.26 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (0.37.0)\n","Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (1.8.0)\n","Requirement already satisfied: markdown>=2.6.8 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (3.3.4)\n","Requirement already satisfied: absl-py>=0.4 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (0.12.0)\n","Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (0.4.6)\n","Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (0.6.1)\n","Requirement already satisfied: grpcio>=1.24.3 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (1.41.0)\n","Requirement already satisfied: protobuf>=3.6.0 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (3.17.3)\n","Requirement already satisfied: requests<3,>=2.21.0 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (2.23.0)\n","Requirement already satisfied: google-auth<2,>=1.6.3 in /usr/local/lib/python3.7/dist-packages (from tensorboard>=1.15->joeynmt==1.3) (1.35.0)\n","Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.7/dist-packages (from google-auth<2,>=1.6.3->tensorboard>=1.15->joeynmt==1.3) (4.7.2)\n","Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.7/dist-packages (from google-auth<2,>=1.6.3->tensorboard>=1.15->joeynmt==1.3) (0.2.8)\n","Requirement already satisfied: cachetools<5.0,>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from google-auth<2,>=1.6.3->tensorboard>=1.15->joeynmt==1.3) (4.2.4)\n","Requirement already satisfied: requests-oauthlib>=0.7.0 in /usr/local/lib/python3.7/dist-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard>=1.15->joeynmt==1.3) (1.3.0)\n","Requirement already satisfied: importlib-metadata in /usr/local/lib/python3.7/dist-packages (from markdown>=2.6.8->tensorboard>=1.15->joeynmt==1.3) (4.8.1)\n","Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.7/dist-packages (from pyasn1-modules>=0.2.1->google-auth<2,>=1.6.3->tensorboard>=1.15->joeynmt==1.3) (0.4.8)\n","Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests<3,>=2.21.0->tensorboard>=1.15->joeynmt==1.3) (2021.5.30)\n","Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests<3,>=2.21.0->tensorboard>=1.15->joeynmt==1.3) (2.10)\n","Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests<3,>=2.21.0->tensorboard>=1.15->joeynmt==1.3) (1.24.3)\n","Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests<3,>=2.21.0->tensorboard>=1.15->joeynmt==1.3) (3.0.4)\n","Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard>=1.15->joeynmt==1.3) (3.1.1)\n","Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from torchtext>=0.10.0->joeynmt==1.3) (4.62.3)\n","Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata->markdown>=2.6.8->tensorboard>=1.15->joeynmt==1.3) (3.6.0)\n","Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->joeynmt==1.3) (1.3.2)\n","Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->joeynmt==1.3) (2.4.7)\n","Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->joeynmt==1.3) (2.8.2)\n","Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib->joeynmt==1.3) (0.10.0)\n","Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.7/dist-packages (from seaborn->joeynmt==1.3) (1.4.1)\n","Requirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.7/dist-packages (from seaborn->joeynmt==1.3) (1.1.5)\n","Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.23->seaborn->joeynmt==1.3) (2018.9)\n","Building wheels for collected packages: joeynmt, wrapt\n"," Building wheel for joeynmt (setup.py) ... \u001b[?25l\u001b[?25hdone\n"," Created wheel for joeynmt: filename=joeynmt-1.3-py3-none-any.whl size=86029 sha256=b0b9cb542eed1e177f4f23cca19719853c36cfd2657ebca72127c9ccf548a387\n"," Stored in directory: /tmp/pip-ephem-wheel-cache-m8jxwklh/wheels/0a/f4/bf/6c9d3b8efbfece6cd209f865be37382b02e7c3584df2e28ca4\n"," Building wheel for wrapt (setup.py) ... \u001b[?25l\u001b[?25hdone\n"," Created wheel for wrapt: filename=wrapt-1.11.1-cp37-cp37m-linux_x86_64.whl size=68446 sha256=87d8d7368693df55161361763041017e586c0338dca2b73287da0bdb1e8f665f\n"," Stored in directory: /root/.cache/pip/wheels/4e/58/9d/da8bad4545585ca52311498ff677647c95c7b690b3040171f8\n","Successfully built joeynmt wrapt\n","Installing collected packages: typing-extensions, six, wrapt, typed-ast, lazy-object-proxy, portalocker, platformdirs, mccabe, isort, colorama, astroid, subword-nmt, sacrebleu, pyyaml, pylint, joeynmt\n"," Attempting uninstall: typing-extensions\n"," Found existing installation: typing-extensions 3.7.4.3\n"," Uninstalling typing-extensions-3.7.4.3:\n"," Successfully uninstalled typing-extensions-3.7.4.3\n"," Attempting uninstall: six\n"," Found existing installation: six 1.15.0\n"," Uninstalling six-1.15.0:\n"," Successfully uninstalled six-1.15.0\n"," Attempting uninstall: wrapt\n"," Found existing installation: wrapt 1.12.1\n"," Uninstalling wrapt-1.12.1:\n"," Successfully uninstalled wrapt-1.12.1\n"," Attempting uninstall: pyyaml\n"," Found existing installation: PyYAML 3.13\n"," Uninstalling PyYAML-3.13:\n"," Successfully uninstalled PyYAML-3.13\n","\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n","tensorflow 2.6.0 requires six~=1.15.0, but you have six 1.12.0 which is incompatible.\n","tensorflow 2.6.0 requires typing-extensions~=3.7.4, but you have typing-extensions 3.10.0.2 which is incompatible.\n","tensorflow 2.6.0 requires wrapt~=1.12.1, but you have wrapt 1.11.1 which is incompatible.\n","google-colab 1.0.0 requires six~=1.15.0, but you have six 1.12.0 which is incompatible.\n","google-api-python-client 1.12.8 requires six<2dev,>=1.13.0, but you have six 1.12.0 which is incompatible.\n","google-api-core 1.26.3 requires six>=1.13.0, but you have six 1.12.0 which is incompatible.\n","datascience 0.10.6 requires folium==0.2.1, but you have folium 0.8.3 which is incompatible.\n","albumentations 0.1.12 requires imgaug<0.2.7,>=0.2.5, but you have imgaug 0.2.9 which is incompatible.\u001b[0m\n","Successfully installed astroid-2.8.2 colorama-0.4.4 isort-5.9.3 joeynmt-1.3 lazy-object-proxy-1.6.0 mccabe-0.6.1 platformdirs-2.4.0 portalocker-2.3.2 pylint-2.11.1 pyyaml-5.4.1 sacrebleu-2.0.0 six-1.12.0 subword-nmt-0.3.7 typed-ast-1.4.3 typing-extensions-3.10.0.2 wrapt-1.11.1\n","Looking in links: https://download.pytorch.org/whl/torch_stable.html\n","\u001b[31mERROR: Could not find a version that satisfies the requirement torch==1.9.0+cu101 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2, 0.4.1, 0.4.1.post2, 1.0.0, 1.0.1, 1.0.1.post2, 1.1.0, 1.2.0, 1.2.0+cpu, 1.2.0+cu92, 1.3.0, 1.3.0+cpu, 1.3.0+cu100, 1.3.0+cu92, 1.3.1, 1.3.1+cpu, 1.3.1+cu100, 1.3.1+cu92, 1.4.0, 1.4.0+cpu, 1.4.0+cu100, 1.4.0+cu92, 1.5.0, 1.5.0+cpu, 1.5.0+cu101, 1.5.0+cu92, 1.5.1, 1.5.1+cpu, 1.5.1+cu101, 1.5.1+cu92, 1.6.0, 1.6.0+cpu, 1.6.0+cu101, 1.6.0+cu92, 1.7.0, 1.7.0+cpu, 1.7.0+cu101, 1.7.0+cu110, 1.7.0+cu92, 1.7.1, 1.7.1+cpu, 1.7.1+cu101, 1.7.1+cu110, 1.7.1+cu92, 1.7.1+rocm3.7, 1.7.1+rocm3.8, 1.8.0, 1.8.0+cpu, 1.8.0+cu101, 1.8.0+cu111, 1.8.0+rocm3.10, 1.8.0+rocm4.0.1, 1.8.1, 1.8.1+cpu, 1.8.1+cu101, 1.8.1+cu102, 1.8.1+cu111, 1.8.1+rocm3.10, 1.8.1+rocm4.0.1, 1.9.0, 1.9.0+cpu, 1.9.0+cu102, 1.9.0+cu111, 1.9.0+rocm4.0.1, 1.9.0+rocm4.1, 1.9.0+rocm4.2, 1.9.1, 1.9.1+cpu, 1.9.1+cu102, 1.9.1+cu111, 1.9.1+rocm4.0.1, 1.9.1+rocm4.1, 1.9.1+rocm4.2)\u001b[0m\n","\u001b[31mERROR: No matching distribution found for torch==1.9.0+cu101\u001b[0m\n"]}]},{"cell_type":"markdown","metadata":{"id":"AaE77Tcppex9"},"source":["# Preprocessing the Data into Subword BPE Tokens\n","\n","- One of the most powerful improvements for agglutinative languages (a feature of most Bantu languages) is using BPE tokenization [ (Sennrich, 2015) ](https://arxiv.org/abs/1508.07909).\n","\n","- It was also shown that by optimizing the umber of BPE codes we significantly improve results for low-resourced languages [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021) [(Martinus, 2019)](https://arxiv.org/abs/1906.05685)\n","\n","- Below we have the scripts for doing BPE tokenization of our data. We use 4000 tokens as recommended by [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021). You do not need to change anything. Simply running the below will be suitable. "]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"H-TyjtmXB1mL","executionInfo":{"status":"ok","timestamp":1633772762140,"user_tz":-120,"elapsed":329356,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"7c09a616-b3a0-43bf-8c43-52820212ab11"},"source":["# One of the huge boosts in NMT performance was to use a different method of tokenizing. \n","# Usually, NMT would tokenize by words. However, using a method called BPE gave amazing boosts to performance\n","\n","# Do subword NMT\n","from os import path\n","os.environ[\"src\"] = source_language # Sets them in bash as well, since we often use bash scripts\n","os.environ[\"tgt\"] = target_language\n","\n","# Learn BPEs on the training data.\n","os.environ[\"data_path\"] = path.join(\"joeynmt\", \"data\",target_language + source_language ) # Herman! \n","! subword-nmt learn-joint-bpe-and-vocab --input train.$src train.$tgt -s 4000 -o bpe.codes.4000 --write-vocabulary vocab.$src vocab.$tgt\n","\n","# Apply BPE splits to the development and test data.\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < train.$src > train.bpe.$src\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < train.$tgt > train.bpe.$tgt\n","\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < dev.$src > dev.bpe.$src\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < dev.$tgt > dev.bpe.$tgt\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < test.$src > test.bpe.$src\n","! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < test.$tgt > test.bpe.$tgt\n","\n","# Create directory, move everyone we care about to the correct location\n","! mkdir -p $data_path\n","! cp train.* $data_path\n","! cp test.* $data_path\n","! cp dev.* $data_path\n","! cp bpe.codes.4000 $data_path\n","! ls $data_path\n","\n","# Also move everything we care about to a mounted location in google drive (relevant if running in colab) at gdrive_path\n","! cp train.* \"$gdrive_path\"\n","! cp test.* \"$gdrive_path\"\n","! cp dev.* \"$gdrive_path\"\n","! cp bpe.codes.4000 \"$gdrive_path\"\n","! ls \"$gdrive_path\"\n","\n","# Create that vocab using build_vocab\n","! sudo chmod 777 joeynmt/scripts/build_vocab.py\n","! joeynmt/scripts/build_vocab.py joeynmt/data/$tgt$src/train.bpe.$src joeynmt/data/$tgt$src/train.bpe.$tgt --output_path joeynmt/data/$tgt$src/vocab.txt\n","\n","# Some output\n","! echo \"BPE Swahili Sentences\"\n","! tail -n 5 test.bpe.$tgt\n","! echo \"Combined BPE Vocab\"\n","! tail -n 10 joeynmt/data/$tgt$src/vocab.txt # Herman"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["bpe.codes.4000\tdev.en\t test.bpe.sn test.sn\t train.en\n","dev.bpe.en\tdev.sn\t test.en\t train.bpe.en train.sn\n","dev.bpe.sn\ttest.bpe.en test.en-any.en train.bpe.sn\n","bpe.codes.4000\tdev.en\t test.bpe.sn test.sn\t train.en\n","dev.bpe.en\tdev.sn\t test.en\t train.bpe.en train.sn\n","dev.bpe.sn\ttest.bpe.en test.en-any.en train.bpe.sn\n","BPE Swahili Sentences\n","N@@ ho@@ o huru yo@@ kutenda ( Ona nd@@ ima 12 - 14 )\n","N@@ go@@ wan@@ i yor@@ up@@ on@@ eso ( Ona nd@@ ima 15 - 18 )\n","Ndaka@@ ona kuti vanhu vano@@ wan@@ zot@@ eerera kana vaka@@ ona kuti un@@ ony@@ ats@@ ot@@ aura zviri muBhaibheri nechi@@ do uye kuti uri ku@@ edza zv@@ ese zva@@ unogona kuti u@@ va@@ bats@@ ire . ”\n","B@@ akat@@ wa rem@@ weya ( Ona nd@@ ima 19 - 20 )\n","T@@ ichi@@ batsirwa naJehovha tinogona kum@@ ira t@@ akasimba pa@@ kur@@ wisana naye .\n","Combined BPE Vocab\n","ḥ\n","▲\n","×\n","ι\n","α\n","❍\n","›\n","‐@@\n","̆\n","⁄@@\n"]}]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"IlMitUHR8Qy-","executionInfo":{"status":"ok","timestamp":1633772774574,"user_tz":-120,"elapsed":5584,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"d916d2b2-36b6-4d94-c354-cff0c4b23eac"},"source":["# Also move everything we care about to a mounted location in google drive (relevant if running in colab) at gdrive_path\n","! cp train.* \"$gdrive_path\"\n","! cp test.* \"$gdrive_path\"\n","! cp dev.* \"$gdrive_path\"\n","! cp bpe.codes.4000 \"$gdrive_path\"\n","! ls \"$gdrive_path\""],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["bpe.codes.4000\tdev.en\t test.bpe.sn test.sn\t train.en\n","dev.bpe.en\tdev.sn\t test.en\t train.bpe.en train.sn\n","dev.bpe.sn\ttest.bpe.en test.en-any.en train.bpe.sn\n"]}]},{"cell_type":"markdown","metadata":{"id":"Ixmzi60WsUZ8"},"source":["# Creating the JoeyNMT Config\n","\n","JoeyNMT requires a yaml config. We provide a template below. We've also set a number of defaults with it, that you may play with!\n","\n","- We used Transformer architecture \n","- We set our dropout to reasonably high: 0.3 (recommended in [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021))\n","\n","Things worth playing with:\n","- The batch size (also recommended to change for low-resourced languages)\n","- The number of epochs (we've set it at 30 just so it runs in about an hour, for testing purposes)\n","- The decoder options (beam_size, alpha)\n","- Evaluation metrics (BLEU versus Crhf4)"]},{"cell_type":"code","metadata":{"id":"h8TMgv1p3L1z"},"source":["# This creates the config file for our JoeyNMT system. It might seem overwhelming so we've provided a couple of useful parameters you'll need to update\n","# (You can of course play with all the parameters if you'd like!)\n","\n","name = '%s%s' % (target_language, source_language)\n","# gdrive_path = os.environ[\"gdrive_path\"]\n","\n","# Create the config\n","config = \"\"\"\n","name: \"{target_language}{source_language}_reverse_transformer\"\n","\n","data:\n"," src: \"{target_language}\"\n"," trg: \"{source_language}\"\n"," train: \"data/{name}/train.bpe\"\n"," dev: \"data/{name}/dev.bpe\"\n"," test: \"data/{name}/test.bpe\"\n"," level: \"bpe\"\n"," lowercase: False\n"," max_sent_length: 100\n"," src_vocab: \"data/{name}/vocab.txt\"\n"," trg_vocab: \"data/{name}/vocab.txt\"\n","\n","testing:\n"," beam_size: 5\n"," alpha: 1.0\n","\n","training:\n"," #load_model: \"{gdrive_path}/models/{name}_transformer/1.ckpt\" # if uncommented, load a pre-trained model from this checkpoint\n"," random_seed: 42\n"," optimizer: \"adam\"\n"," normalization: \"tokens\"\n"," adam_betas: [0.9, 0.999] \n"," scheduling: \"plateau\" # TODO: try switching from plateau to Noam scheduling\n"," patience: 5 # For plateau: decrease learning rate by decrease_factor if validation score has not improved for this many validation rounds.\n"," learning_rate_factor: 0.5 # factor for Noam scheduler (used with Transformer)\n"," learning_rate_warmup: 1000 # warmup steps for Noam scheduler (used with Transformer)\n"," decrease_factor: 0.7\n"," loss: \"crossentropy\"\n"," learning_rate: 0.0003\n"," learning_rate_min: 0.00000001\n"," weight_decay: 0.0\n"," label_smoothing: 0.1\n"," batch_size: 4096\n"," batch_type: \"token\"\n"," eval_batch_size: 3600\n"," eval_batch_type: \"token\"\n"," batch_multiplier: 1\n"," early_stopping_metric: \"ppl\"\n"," epochs: 2 # TODO: Decrease for when playing around and checking of working. Around 30 is sufficient to check if its working at all\n"," validation_freq: 1000 # TODO: Set to at least once per epoch.\n"," logging_freq: 100\n"," eval_metric: \"bleu\"\n"," model_dir: \"models/{name}_reverse_transformer\"\n"," overwrite: True # TODO: Set to True if you want to overwrite possibly existing models. \n"," shuffle: True\n"," use_cuda: True\n"," max_output_length: 100\n"," print_valid_sents: [0, 1, 2, 3]\n"," keep_last_ckpts: 3\n","\n","model:\n"," initializer: \"xavier\"\n"," bias_initializer: \"zeros\"\n"," init_gain: 1.0\n"," embed_initializer: \"xavier\"\n"," embed_init_gain: 1.0\n"," tied_embeddings: True\n"," tied_softmax: True\n"," encoder:\n"," type: \"transformer\"\n"," num_layers: 6\n"," num_heads: 4 # TODO: Increase to 8 for larger data.\n"," embeddings:\n"," embedding_dim: 256 # TODO: Increase to 512 for larger data.\n"," scale: True\n"," dropout: 0.2\n"," # typically ff_size = 4 x hidden_size\n"," hidden_size: 256 # TODO: Increase to 512 for larger data.\n"," ff_size: 1024 # TODO: Increase to 2048 for larger data.\n"," dropout: 0.3\n"," decoder:\n"," type: \"transformer\"\n"," num_layers: 6\n"," num_heads: 4 # TODO: Increase to 8 for larger data.\n"," embeddings:\n"," embedding_dim: 256 # TODO: Increase to 512 for larger data.\n"," scale: True\n"," dropout: 0.2\n"," # typically ff_size = 4 x hidden_size\n"," hidden_size: 256 # TODO: Increase to 512 for larger data.\n"," ff_size: 1024 # TODO: Increase to 2048 for larger data.\n"," dropout: 0.3\n","\"\"\".format(name=name, gdrive_path=os.environ[\"gdrive_path\"], source_language=source_language, target_language=target_language)\n","with open(\"joeynmt/configs/transformer_reverse_{name}.yaml\".format(name=name),'w') as f:\n"," f.write(config)"],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"oEzoJtV2MIpt"},"source":["# Train the Model\n","\n","This single line of joeynmt runs the training using the config we made above"]},{"cell_type":"code","metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"WzbNYNdjLgNb","executionInfo":{"status":"ok","timestamp":1633784304334,"user_tz":-120,"elapsed":187872,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"d357084d-1d27-441c-c110-f90be39d9507"},"source":["# Train the model\n","# You can press Ctrl-C to stop. And then run the next cell to save your checkpoints! \n","!cd joeynmt; python3 -m joeynmt train configs/transformer_reverse_$tgt$src.yaml"],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["2021-10-09 09:47:51,303 - INFO - root - Hello! This is Joey-NMT (version 1.3).\n","2021-10-09 09:47:51,377 - INFO - joeynmt.data - Loading training data...\n","2021-10-09 09:48:06,092 - INFO - joeynmt.data - Building vocabulary...\n","2021-10-09 09:48:06,432 - INFO - joeynmt.data - Loading dev data...\n","2021-10-09 09:48:06,487 - INFO - joeynmt.data - Loading test data...\n","2021-10-09 09:48:06,563 - INFO - joeynmt.data - Data loaded.\n","2021-10-09 09:48:06,563 - INFO - joeynmt.model - Building an encoder-decoder model...\n","2021-10-09 09:48:07,030 - INFO - joeynmt.model - Enc-dec model built.\n","2021-10-09 09:48:10,463 - INFO - joeynmt.training - Total params: 12196352\n","2021-10-09 09:48:10,466 - WARNING - joeynmt.training - `keep_last_ckpts` option is outdated. Please use `keep_best_ckpts`, instead.\n","2021-10-09 09:48:29,827 - INFO - joeynmt.helpers - cfg.name : snen_reverse_transformer\n","2021-10-09 09:48:29,827 - INFO - joeynmt.helpers - cfg.data.src : sn\n","2021-10-09 09:48:29,827 - INFO - joeynmt.helpers - cfg.data.trg : en\n","2021-10-09 09:48:29,827 - INFO - joeynmt.helpers - cfg.data.train : data/snen/train.bpe\n","2021-10-09 09:48:29,827 - INFO - joeynmt.helpers - cfg.data.dev : data/snen/dev.bpe\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.test : data/snen/test.bpe\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.level : bpe\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.lowercase : False\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.max_sent_length : 100\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.src_vocab : data/snen/vocab.txt\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.data.trg_vocab : data/snen/vocab.txt\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.testing.beam_size : 5\n","2021-10-09 09:48:29,828 - INFO - joeynmt.helpers - cfg.testing.alpha : 1.0\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.random_seed : 42\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.optimizer : adam\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.normalization : tokens\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.adam_betas : [0.9, 0.999]\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.scheduling : plateau\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.patience : 5\n","2021-10-09 09:48:29,829 - INFO - joeynmt.helpers - cfg.training.learning_rate_factor : 0.5\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.learning_rate_warmup : 1000\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.decrease_factor : 0.7\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.loss : crossentropy\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.learning_rate : 0.0003\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.learning_rate_min : 1e-08\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.weight_decay : 0.0\n","2021-10-09 09:48:29,830 - INFO - joeynmt.helpers - cfg.training.label_smoothing : 0.1\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.batch_size : 4096\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.batch_type : token\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.eval_batch_size : 3600\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.eval_batch_type : token\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.batch_multiplier : 1\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.early_stopping_metric : ppl\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.epochs : 2\n","2021-10-09 09:48:29,831 - INFO - joeynmt.helpers - cfg.training.validation_freq : 1000\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.logging_freq : 100\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.eval_metric : bleu\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.model_dir : models/snen_reverse_transformer\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.overwrite : True\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.shuffle : True\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.use_cuda : True\n","2021-10-09 09:48:29,832 - INFO - joeynmt.helpers - cfg.training.max_output_length : 100\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.training.print_valid_sents : [0, 1, 2, 3]\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.training.keep_last_ckpts : 3\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.initializer : xavier\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.bias_initializer : zeros\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.init_gain : 1.0\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.embed_initializer : xavier\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.embed_init_gain : 1.0\n","2021-10-09 09:48:29,833 - INFO - joeynmt.helpers - cfg.model.tied_embeddings : True\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.tied_softmax : True\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.encoder.type : transformer\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.encoder.num_layers : 6\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.encoder.num_heads : 4\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.encoder.embeddings.embedding_dim : 256\n","2021-10-09 09:48:29,834 - INFO - joeynmt.helpers - cfg.model.encoder.embeddings.scale : True\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.encoder.embeddings.dropout : 0.2\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.encoder.hidden_size : 256\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.encoder.ff_size : 1024\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.encoder.dropout : 0.3\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.decoder.type : transformer\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.decoder.num_layers : 6\n","2021-10-09 09:48:29,835 - INFO - joeynmt.helpers - cfg.model.decoder.num_heads : 4\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.embeddings.embedding_dim : 256\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.embeddings.scale : True\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.embeddings.dropout : 0.2\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.hidden_size : 256\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.ff_size : 1024\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - cfg.model.decoder.dropout : 0.3\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - Data set sizes: \n","\ttrain 695525,\n","\tvalid 1000,\n","\ttest 2723\n","2021-10-09 09:48:29,836 - INFO - joeynmt.helpers - First training example:\n","\t[SRC] In@@ i na@@ J@@ un@@ ji ta@@ ve tiri kuita basa re@@ pa@@ Bh@@ et@@ eri , iye zvino ti@@ chis@@ handa nem@@ huri ine nh@@ engo 6@@ 00 .\n","\t[TRG] J@@ un@@ ji and I have long been enjo@@ ying Be@@ the@@ l service , now working with a family of some 6@@ 00 members .\n","2021-10-09 09:48:29,837 - INFO - joeynmt.helpers - First 10 words (src): (0) (1) (2) (3) (4) , (5) . (6) the (7) : (8) to (9) of\n","2021-10-09 09:48:29,837 - INFO - joeynmt.helpers - First 10 words (trg): (0) (1) (2) (3) (4) , (5) . (6) the (7) : (8) to (9) of\n","2021-10-09 09:48:29,837 - INFO - joeynmt.helpers - Number of Src words (types): 4438\n","2021-10-09 09:48:29,837 - INFO - joeynmt.helpers - Number of Trg words (types): 4438\n","2021-10-09 09:48:29,837 - INFO - joeynmt.training - Model(\n","\tencoder=TransformerEncoder(num_layers=6, num_heads=4),\n","\tdecoder=TransformerDecoder(num_layers=6, num_heads=4),\n","\tsrc_embed=Embeddings(embedding_dim=256, vocab_size=4438),\n","\ttrg_embed=Embeddings(embedding_dim=256, vocab_size=4438))\n","2021-10-09 09:48:29,844 - INFO - joeynmt.training - Train stats:\n","\tdevice: cuda\n","\tn_gpu: 1\n","\t16-bits training: False\n","\tgradient accumulation: 1\n","\tbatch size per device: 4096\n","\ttotal batch size (w. parallel & accumulation): 4096\n","2021-10-09 09:48:29,844 - INFO - joeynmt.training - EPOCH 1\n","2021-10-09 09:49:06,827 - INFO - joeynmt.training - Epoch 1, Step: 100, Batch Loss: 5.557726, Tokens per Sec: 3929, Lr: 0.000300\n","2021-10-09 09:49:42,506 - INFO - joeynmt.training - Epoch 1, Step: 200, Batch Loss: 5.391581, Tokens per Sec: 4181, Lr: 0.000300\n","2021-10-09 09:50:18,249 - INFO - joeynmt.training - Epoch 1, Step: 300, Batch Loss: 5.260218, Tokens per Sec: 4219, Lr: 0.000300\n","2021-10-09 09:50:53,717 - INFO - joeynmt.training - Epoch 1, Step: 400, Batch Loss: 4.961993, Tokens per Sec: 4270, Lr: 0.000300\n","2021-10-09 09:51:29,469 - INFO - joeynmt.training - Epoch 1, Step: 500, Batch Loss: 4.692557, Tokens per Sec: 4162, Lr: 0.000300\n","2021-10-09 09:52:05,291 - INFO - joeynmt.training - Epoch 1, Step: 600, Batch Loss: 4.692550, Tokens per Sec: 4228, Lr: 0.000300\n","2021-10-09 09:52:40,981 - INFO - joeynmt.training - Epoch 1, Step: 700, Batch Loss: 4.560956, Tokens per Sec: 4246, Lr: 0.000300\n","2021-10-09 09:53:16,721 - INFO - joeynmt.training - Epoch 1, Step: 800, Batch Loss: 4.495804, Tokens per Sec: 4218, Lr: 0.000300\n","2021-10-09 09:53:52,206 - INFO - joeynmt.training - Epoch 1, Step: 900, Batch Loss: 4.426282, Tokens per Sec: 4225, Lr: 0.000300\n","2021-10-09 09:54:27,690 - INFO - joeynmt.training - Epoch 1, Step: 1000, Batch Loss: 4.420076, Tokens per Sec: 4197, Lr: 0.000300\n","2021-10-09 09:55:54,485 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 09:55:54,485 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 09:55:54,485 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 09:55:54,497 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 09:55:54,954 - INFO - joeynmt.training - Example #0\n","2021-10-09 09:55:54,954 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - \tHypothesis: The Bible is a feping of the Bible and the Bible and the Bible and and the Bible and and a feping of the Bible and and the Bible .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - Example #1\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - \tHypothesis: The Bible : “ The apostle Paul ’ s Witnesses of Jehovah ’ s Witnesses and the Bible is to be be be be be be be be to be be be be to be to be to be be be be to be to be to be be be be be be to be be be be to the earth . ” — 1 : 2 .\n","2021-10-09 09:55:54,955 - INFO - joeynmt.training - Example #2\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - \tHypothesis: ( Psalm 5 : 3 .\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - Example #3\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 09:55:54,956 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 09:55:54,957 - INFO - joeynmt.training - \tHypothesis: However , the Bible was a Bible of the Bible , and the Bible ’ s Witnesses , and the Bible was be be be be be be the Bible .\n","2021-10-09 09:55:54,957 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 1000: bleu: 1.29, loss: 124557.2109, ppl: 75.3544, duration: 87.2659s\n","2021-10-09 09:56:30,646 - INFO - joeynmt.training - Epoch 1, Step: 1100, Batch Loss: 4.353485, Tokens per Sec: 4239, Lr: 0.000300\n","2021-10-09 09:57:06,173 - INFO - joeynmt.training - Epoch 1, Step: 1200, Batch Loss: 4.215487, Tokens per Sec: 4213, Lr: 0.000300\n","2021-10-09 09:57:41,950 - INFO - joeynmt.training - Epoch 1, Step: 1300, Batch Loss: 4.316395, Tokens per Sec: 4258, Lr: 0.000300\n","2021-10-09 09:58:17,654 - INFO - joeynmt.training - Epoch 1, Step: 1400, Batch Loss: 4.351279, Tokens per Sec: 4140, Lr: 0.000300\n","2021-10-09 09:58:53,327 - INFO - joeynmt.training - Epoch 1, Step: 1500, Batch Loss: 3.974628, Tokens per Sec: 4171, Lr: 0.000300\n","2021-10-09 09:59:28,611 - INFO - joeynmt.training - Epoch 1, Step: 1600, Batch Loss: 4.153322, Tokens per Sec: 4171, Lr: 0.000300\n","2021-10-09 10:00:04,477 - INFO - joeynmt.training - Epoch 1, Step: 1700, Batch Loss: 4.094271, Tokens per Sec: 4205, Lr: 0.000300\n","2021-10-09 10:00:40,203 - INFO - joeynmt.training - Epoch 1, Step: 1800, Batch Loss: 4.038539, Tokens per Sec: 4240, Lr: 0.000300\n","2021-10-09 10:01:15,780 - INFO - joeynmt.training - Epoch 1, Step: 1900, Batch Loss: 4.041115, Tokens per Sec: 4240, Lr: 0.000300\n","2021-10-09 10:01:51,719 - INFO - joeynmt.training - Epoch 1, Step: 2000, Batch Loss: 3.854773, Tokens per Sec: 4141, Lr: 0.000300\n","2021-10-09 10:02:54,470 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:02:54,470 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:02:54,470 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:02:54,477 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:02:55,006 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tHypothesis: The first time , the first days of the congregation were been been been been been been been been been been been been been been been been been been in their children .\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:02:55,007 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ The Bible is a good news of God ’ s people to be a good news of his own own own own own own own own own own own own own . ” ( 1 Peter 1 : 1 ) We will be a good news of Jehovah ’ s Word .\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - \tHypothesis: He said : 18 .\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:02:55,008 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:02:55,009 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:02:55,009 - INFO - joeynmt.training - \tHypothesis: However , the first years of the first years , we have been been been been been been been been been in the Bible .\n","2021-10-09 10:02:55,009 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 2000: bleu: 3.56, loss: 109178.8906, ppl: 44.1930, duration: 63.2898s\n","2021-10-09 10:03:31,146 - INFO - joeynmt.training - Epoch 1, Step: 2100, Batch Loss: 3.773889, Tokens per Sec: 4146, Lr: 0.000300\n","2021-10-09 10:04:07,421 - INFO - joeynmt.training - Epoch 1, Step: 2200, Batch Loss: 3.688772, Tokens per Sec: 4274, Lr: 0.000300\n","2021-10-09 10:04:43,179 - INFO - joeynmt.training - Epoch 1, Step: 2300, Batch Loss: 3.739187, Tokens per Sec: 4086, Lr: 0.000300\n","2021-10-09 10:05:18,925 - INFO - joeynmt.training - Epoch 1, Step: 2400, Batch Loss: 3.638913, Tokens per Sec: 4135, Lr: 0.000300\n","2021-10-09 10:05:54,828 - INFO - joeynmt.training - Epoch 1, Step: 2500, Batch Loss: 3.855489, Tokens per Sec: 4085, Lr: 0.000300\n","2021-10-09 10:06:30,692 - INFO - joeynmt.training - Epoch 1, Step: 2600, Batch Loss: 3.613226, Tokens per Sec: 4115, Lr: 0.000300\n","2021-10-09 10:07:06,738 - INFO - joeynmt.training - Epoch 1, Step: 2700, Batch Loss: 3.739955, Tokens per Sec: 4116, Lr: 0.000300\n","2021-10-09 10:07:42,552 - INFO - joeynmt.training - Epoch 1, Step: 2800, Batch Loss: 3.618894, Tokens per Sec: 4173, Lr: 0.000300\n","2021-10-09 10:08:18,167 - INFO - joeynmt.training - Epoch 1, Step: 2900, Batch Loss: 3.643038, Tokens per Sec: 4261, Lr: 0.000300\n","2021-10-09 10:08:53,875 - INFO - joeynmt.training - Epoch 1, Step: 3000, Batch Loss: 3.613904, Tokens per Sec: 4131, Lr: 0.000300\n","2021-10-09 10:09:37,628 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:09:37,628 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:09:37,628 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:09:37,636 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:09:38,178 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:09:38,178 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - \tHypothesis: The first time , the woman ’ s family and a few family were not to be a boud of the cinding of their children .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ Jehovah is the earth of the earth ” of his death and his Son will be to be the true of his own and to be the good news of the Devil . ” ( 1 : 8 ) We can be a person .\n","2021-10-09 10:09:38,179 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - \tHypothesis: 18 : 10 .\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:09:38,180 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:09:38,181 - INFO - joeynmt.training - \tHypothesis: However , the years of the days of the United States , we were not to be a full-time family .\n","2021-10-09 10:09:38,181 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 3000: bleu: 8.24, loss: 98195.4453, ppl: 30.1877, duration: 44.3051s\n","2021-10-09 10:10:14,101 - INFO - joeynmt.training - Epoch 1, Step: 3100, Batch Loss: 3.535892, Tokens per Sec: 4166, Lr: 0.000300\n","2021-10-09 10:10:49,876 - INFO - joeynmt.training - Epoch 1, Step: 3200, Batch Loss: 3.466662, Tokens per Sec: 4126, Lr: 0.000300\n","2021-10-09 10:11:25,690 - INFO - joeynmt.training - Epoch 1, Step: 3300, Batch Loss: 3.313402, Tokens per Sec: 4175, Lr: 0.000300\n","2021-10-09 10:12:01,452 - INFO - joeynmt.training - Epoch 1, Step: 3400, Batch Loss: 3.474641, Tokens per Sec: 4186, Lr: 0.000300\n","2021-10-09 10:12:37,111 - INFO - joeynmt.training - Epoch 1, Step: 3500, Batch Loss: 3.401573, Tokens per Sec: 4212, Lr: 0.000300\n","2021-10-09 10:13:12,814 - INFO - joeynmt.training - Epoch 1, Step: 3600, Batch Loss: 3.634565, Tokens per Sec: 4183, Lr: 0.000300\n","2021-10-09 10:13:48,813 - INFO - joeynmt.training - Epoch 1, Step: 3700, Batch Loss: 3.329251, Tokens per Sec: 4226, Lr: 0.000300\n","2021-10-09 10:14:24,305 - INFO - joeynmt.training - Epoch 1, Step: 3800, Batch Loss: 3.459329, Tokens per Sec: 4269, Lr: 0.000300\n","2021-10-09 10:14:59,693 - INFO - joeynmt.training - Epoch 1, Step: 3900, Batch Loss: 3.335132, Tokens per Sec: 4154, Lr: 0.000300\n","2021-10-09 10:15:35,276 - INFO - joeynmt.training - Epoch 1, Step: 4000, Batch Loss: 3.340950, Tokens per Sec: 4133, Lr: 0.000300\n","2021-10-09 10:16:29,532 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:16:29,533 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:16:29,533 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:16:29,539 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:16:30,070 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/1000.ckpt\n","2021-10-09 10:16:30,092 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:16:30,092 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:16:30,092 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:16:30,092 - INFO - joeynmt.training - \tHypothesis: The woman or woman or a family in the family and children may be a few of the flobal of the crager of their children .\n","2021-10-09 10:16:30,092 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ Jehovah is the wicked of the earth ” of the earth will be a earth to be a righteous of his eyes to be the wicked ones . ” ( 2 Thessalalalty 16 : 9 ) We can be “ Jehovah ’ s will be a way to be a way to be a way of Jehovah . ” — 1 Cor . 1 : 1 ; 1 : 1 .\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:16:30,093 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - \tHypothesis: However , after the years of Africa , we were not to be in the United States , we were able to be a family .\n","2021-10-09 10:16:30,094 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 4000: bleu: 10.16, loss: 90816.2578, ppl: 23.3681, duration: 54.8182s\n","2021-10-09 10:17:06,138 - INFO - joeynmt.training - Epoch 1, Step: 4100, Batch Loss: 3.313997, Tokens per Sec: 4157, Lr: 0.000300\n","2021-10-09 10:17:41,926 - INFO - joeynmt.training - Epoch 1, Step: 4200, Batch Loss: 3.270284, Tokens per Sec: 4188, Lr: 0.000300\n","2021-10-09 10:18:17,949 - INFO - joeynmt.training - Epoch 1, Step: 4300, Batch Loss: 3.041924, Tokens per Sec: 4183, Lr: 0.000300\n","2021-10-09 10:18:53,759 - INFO - joeynmt.training - Epoch 1, Step: 4400, Batch Loss: 3.211808, Tokens per Sec: 4143, Lr: 0.000300\n","2021-10-09 10:19:29,447 - INFO - joeynmt.training - Epoch 1, Step: 4500, Batch Loss: 3.252639, Tokens per Sec: 4271, Lr: 0.000300\n","2021-10-09 10:20:05,149 - INFO - joeynmt.training - Epoch 1, Step: 4600, Batch Loss: 3.192389, Tokens per Sec: 4215, Lr: 0.000300\n","2021-10-09 10:20:40,785 - INFO - joeynmt.training - Epoch 1, Step: 4700, Batch Loss: 3.289861, Tokens per Sec: 4184, Lr: 0.000300\n","2021-10-09 10:21:16,574 - INFO - joeynmt.training - Epoch 1, Step: 4800, Batch Loss: 2.920255, Tokens per Sec: 4223, Lr: 0.000300\n","2021-10-09 10:21:52,219 - INFO - joeynmt.training - Epoch 1, Step: 4900, Batch Loss: 3.272861, Tokens per Sec: 4087, Lr: 0.000300\n","2021-10-09 10:22:28,134 - INFO - joeynmt.training - Epoch 1, Step: 5000, Batch Loss: 3.024771, Tokens per Sec: 4183, Lr: 0.000300\n","2021-10-09 10:23:25,358 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:23:25,358 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:23:25,358 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:23:25,364 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:23:25,829 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/2000.ckpt\n","2021-10-09 10:23:25,851 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:23:25,851 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:23:25,851 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:23:25,851 - INFO - joeynmt.training - \tHypothesis: The man or a woman or a family in a family family and children may have been a few of their children and the children .\n","2021-10-09 10:23:25,851 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ All of his ] [ Jehovah ] is the earth to be the earth to be the earth that his own heart is to know that he is the love of the love of the heart . ” ( 2 Thessal. 2 : 9 ) So we can be “ the heart of Jehovah . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:23:25,852 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - \tHypothesis: However , when the three years were not in Africa , we have been serving in the United States , we have to serve the family .\n","2021-10-09 10:23:25,853 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 5000: bleu: 12.28, loss: 85376.8750, ppl: 19.3487, duration: 57.7186s\n","2021-10-09 10:24:01,508 - INFO - joeynmt.training - Epoch 1, Step: 5100, Batch Loss: 3.298420, Tokens per Sec: 4192, Lr: 0.000300\n","2021-10-09 10:24:37,062 - INFO - joeynmt.training - Epoch 1, Step: 5200, Batch Loss: 3.204476, Tokens per Sec: 4156, Lr: 0.000300\n","2021-10-09 10:25:12,868 - INFO - joeynmt.training - Epoch 1, Step: 5300, Batch Loss: 3.257857, Tokens per Sec: 4192, Lr: 0.000300\n","2021-10-09 10:25:48,688 - INFO - joeynmt.training - Epoch 1, Step: 5400, Batch Loss: 3.165296, Tokens per Sec: 4238, Lr: 0.000300\n","2021-10-09 10:26:24,507 - INFO - joeynmt.training - Epoch 1, Step: 5500, Batch Loss: 3.225231, Tokens per Sec: 4214, Lr: 0.000300\n","2021-10-09 10:27:00,061 - INFO - joeynmt.training - Epoch 1, Step: 5600, Batch Loss: 3.196930, Tokens per Sec: 4206, Lr: 0.000300\n","2021-10-09 10:27:35,551 - INFO - joeynmt.training - Epoch 1, Step: 5700, Batch Loss: 3.057162, Tokens per Sec: 4118, Lr: 0.000300\n","2021-10-09 10:28:11,277 - INFO - joeynmt.training - Epoch 1, Step: 5800, Batch Loss: 3.223629, Tokens per Sec: 4223, Lr: 0.000300\n","2021-10-09 10:28:47,060 - INFO - joeynmt.training - Epoch 1, Step: 5900, Batch Loss: 2.980030, Tokens per Sec: 4295, Lr: 0.000300\n","2021-10-09 10:29:22,769 - INFO - joeynmt.training - Epoch 1, Step: 6000, Batch Loss: 3.038493, Tokens per Sec: 4063, Lr: 0.000300\n","2021-10-09 10:30:20,760 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:30:20,760 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:30:20,761 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:30:20,767 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:30:21,238 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/3000.ckpt\n","2021-10-09 10:30:21,260 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:30:21,260 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:30:21,260 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:30:21,260 - INFO - joeynmt.training - \tHypothesis: The man or a woman or a family in the family and the two children can be a billion of the flower of their children .\n","2021-10-09 10:30:21,260 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] [ Jehovah ] ] will be in the earth that he is the earth and his heart is the righteous for those who are the righteous . ” ( 2 Thessalonians 2 : 16 ) So we can be the heart of Jehovah ’ s heart and will be no one of the heart . ’ ” — 1 Tim . 1 Tim . 5 : 15 ; 1 : 1 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:30:21,261 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:30:21,262 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:30:21,262 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:30:21,262 - INFO - joeynmt.training - \tHypothesis: However , when three years are not in Africa , we were invited to the United States to be a family .\n","2021-10-09 10:30:21,262 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 6000: bleu: 13.52, loss: 81222.7578, ppl: 16.7513, duration: 58.4927s\n","2021-10-09 10:30:56,731 - INFO - joeynmt.training - Epoch 1, Step: 6100, Batch Loss: 3.104648, Tokens per Sec: 4285, Lr: 0.000300\n","2021-10-09 10:31:32,387 - INFO - joeynmt.training - Epoch 1, Step: 6200, Batch Loss: 3.156380, Tokens per Sec: 4218, Lr: 0.000300\n","2021-10-09 10:32:07,892 - INFO - joeynmt.training - Epoch 1, Step: 6300, Batch Loss: 2.920718, Tokens per Sec: 4144, Lr: 0.000300\n","2021-10-09 10:32:43,462 - INFO - joeynmt.training - Epoch 1, Step: 6400, Batch Loss: 3.134663, Tokens per Sec: 4147, Lr: 0.000300\n","2021-10-09 10:33:19,067 - INFO - joeynmt.training - Epoch 1, Step: 6500, Batch Loss: 2.988347, Tokens per Sec: 4221, Lr: 0.000300\n","2021-10-09 10:33:54,771 - INFO - joeynmt.training - Epoch 1, Step: 6600, Batch Loss: 2.860916, Tokens per Sec: 4219, Lr: 0.000300\n","2021-10-09 10:34:30,349 - INFO - joeynmt.training - Epoch 1, Step: 6700, Batch Loss: 3.065227, Tokens per Sec: 4152, Lr: 0.000300\n","2021-10-09 10:35:05,651 - INFO - joeynmt.training - Epoch 1, Step: 6800, Batch Loss: 2.847749, Tokens per Sec: 4283, Lr: 0.000300\n","2021-10-09 10:35:41,139 - INFO - joeynmt.training - Epoch 1, Step: 6900, Batch Loss: 3.038732, Tokens per Sec: 4172, Lr: 0.000300\n","2021-10-09 10:36:16,655 - INFO - joeynmt.training - Epoch 1, Step: 7000, Batch Loss: 2.902141, Tokens per Sec: 4189, Lr: 0.000300\n","2021-10-09 10:37:10,337 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:37:10,337 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:37:10,337 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:37:10,343 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:37:10,833 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/4000.ckpt\n","2021-10-09 10:37:10,854 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:37:10,854 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:37:10,854 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:37:10,854 - INFO - joeynmt.training - \tHypothesis: The husband or a woman who attended a family to the same family and the other children may be a balancer of their children .\n","2021-10-09 10:37:10,854 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ The Bible is the [ Jehovah ] of the earth that we are in heaven for his power for those who are faithful and his heart . ” ( 2 Keep . 2 : 16 ) So we can be a wise to know that Jehovah is “ the heart of all the heart of the heart of the heart of Jehovah . ” — 1 Cor . 1 Cor . 1 Cor . 1 : 1 ; 1 : 1 ; 1 : 1 , 58 .\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:37:10,855 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:37:10,856 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:37:10,856 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:37:10,856 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:37:10,856 - INFO - joeynmt.training - \tHypothesis: However , when three years of Africa , we returned to the United States to do the family .\n","2021-10-09 10:37:10,856 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 7000: bleu: 16.05, loss: 77519.0469, ppl: 14.7310, duration: 54.2011s\n","2021-10-09 10:37:46,448 - INFO - joeynmt.training - Epoch 1, Step: 7100, Batch Loss: 2.934619, Tokens per Sec: 4211, Lr: 0.000300\n","2021-10-09 10:38:21,801 - INFO - joeynmt.training - Epoch 1, Step: 7200, Batch Loss: 2.835705, Tokens per Sec: 4205, Lr: 0.000300\n","2021-10-09 10:38:57,561 - INFO - joeynmt.training - Epoch 1, Step: 7300, Batch Loss: 2.913401, Tokens per Sec: 4198, Lr: 0.000300\n","2021-10-09 10:39:33,158 - INFO - joeynmt.training - Epoch 1, Step: 7400, Batch Loss: 3.137300, Tokens per Sec: 4182, Lr: 0.000300\n","2021-10-09 10:40:08,490 - INFO - joeynmt.training - Epoch 1, Step: 7500, Batch Loss: 2.959057, Tokens per Sec: 4224, Lr: 0.000300\n","2021-10-09 10:40:44,188 - INFO - joeynmt.training - Epoch 1, Step: 7600, Batch Loss: 2.920555, Tokens per Sec: 4178, Lr: 0.000300\n","2021-10-09 10:41:19,481 - INFO - joeynmt.training - Epoch 1, Step: 7700, Batch Loss: 2.873863, Tokens per Sec: 4228, Lr: 0.000300\n","2021-10-09 10:41:54,939 - INFO - joeynmt.training - Epoch 1, Step: 7800, Batch Loss: 2.773733, Tokens per Sec: 4243, Lr: 0.000300\n","2021-10-09 10:42:30,209 - INFO - joeynmt.training - Epoch 1, Step: 7900, Batch Loss: 2.782769, Tokens per Sec: 4182, Lr: 0.000300\n","2021-10-09 10:43:05,513 - INFO - joeynmt.training - Epoch 1, Step: 8000, Batch Loss: 2.851981, Tokens per Sec: 4222, Lr: 0.000300\n","2021-10-09 10:44:03,198 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:44:03,198 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:44:03,198 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:44:03,203 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:44:03,666 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/5000.ckpt\n","2021-10-09 10:44:03,688 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:44:03,688 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:44:03,688 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:44:03,688 - INFO - joeynmt.training - \tHypothesis: A man or woman who attended a family to the other children and the first time to be a brain from the brain of their children .\n","2021-10-09 10:44:03,688 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is to be in the earth to show his power for those who are perfect and hearts . ” ( 2 Chronicy 16 : 9 ) So we can be a strong way that we can be “ the heart of Jehovah is not a heart of the heart of Jehovah . ” — 1 Cor . 1 Cor . 1 Cor . 1 : 1 ; 1 : 1 : 1 .\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:44:03,689 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - \tHypothesis: However , when three years are not in Africa , we continued to attend the United States to be a family .\n","2021-10-09 10:44:03,690 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 8000: bleu: 17.14, loss: 74685.2891, ppl: 13.3514, duration: 58.1771s\n","2021-10-09 10:44:39,240 - INFO - joeynmt.training - Epoch 1, Step: 8100, Batch Loss: 2.820710, Tokens per Sec: 4265, Lr: 0.000300\n","2021-10-09 10:45:14,714 - INFO - joeynmt.training - Epoch 1, Step: 8200, Batch Loss: 2.730217, Tokens per Sec: 4161, Lr: 0.000300\n","2021-10-09 10:45:50,344 - INFO - joeynmt.training - Epoch 1, Step: 8300, Batch Loss: 2.929572, Tokens per Sec: 4278, Lr: 0.000300\n","2021-10-09 10:46:25,888 - INFO - joeynmt.training - Epoch 1, Step: 8400, Batch Loss: 2.774928, Tokens per Sec: 4279, Lr: 0.000300\n","2021-10-09 10:47:01,141 - INFO - joeynmt.training - Epoch 1, Step: 8500, Batch Loss: 2.723565, Tokens per Sec: 4204, Lr: 0.000300\n","2021-10-09 10:47:36,556 - INFO - joeynmt.training - Epoch 1, Step: 8600, Batch Loss: 2.746917, Tokens per Sec: 4322, Lr: 0.000300\n","2021-10-09 10:48:12,062 - INFO - joeynmt.training - Epoch 1, Step: 8700, Batch Loss: 2.934317, Tokens per Sec: 4189, Lr: 0.000300\n","2021-10-09 10:48:47,427 - INFO - joeynmt.training - Epoch 1, Step: 8800, Batch Loss: 2.552260, Tokens per Sec: 4229, Lr: 0.000300\n","2021-10-09 10:49:23,181 - INFO - joeynmt.training - Epoch 1, Step: 8900, Batch Loss: 2.892314, Tokens per Sec: 4194, Lr: 0.000300\n","2021-10-09 10:49:58,873 - INFO - joeynmt.training - Epoch 1, Step: 9000, Batch Loss: 2.819710, Tokens per Sec: 4177, Lr: 0.000300\n","2021-10-09 10:50:47,935 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:50:47,935 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:50:47,935 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:50:47,941 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:50:48,363 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/6000.ckpt\n","2021-10-09 10:50:48,385 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:50:48,385 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:50:48,385 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:50:48,385 - INFO - joeynmt.training - \tHypothesis: A man or woman in the family to attend a few children and the flock from the baby of their children .\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is in the earth that he is in the earth to show his power for those who are perfect to him . ” ( 2 Chronicy 16 : 9 ) So we can be confident that we are ‘ Jehovah ’ s heart is not a heart of the heart of the heart of the heart of Jehovah . ’ — 1 Cor . 5 : 1 .\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:50:48,386 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - \tHypothesis: However , when three years are not in Africa , we went to the United States to do the family .\n","2021-10-09 10:50:48,387 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 9000: bleu: 18.98, loss: 72094.2578, ppl: 12.2033, duration: 49.5140s\n","2021-10-09 10:51:23,738 - INFO - joeynmt.training - Epoch 1, Step: 9100, Batch Loss: 2.568132, Tokens per Sec: 4247, Lr: 0.000300\n","2021-10-09 10:51:59,340 - INFO - joeynmt.training - Epoch 1, Step: 9200, Batch Loss: 2.815051, Tokens per Sec: 4156, Lr: 0.000300\n","2021-10-09 10:52:35,080 - INFO - joeynmt.training - Epoch 1, Step: 9300, Batch Loss: 2.699066, Tokens per Sec: 4239, Lr: 0.000300\n","2021-10-09 10:53:10,246 - INFO - joeynmt.training - Epoch 1, Step: 9400, Batch Loss: 2.589821, Tokens per Sec: 4325, Lr: 0.000300\n","2021-10-09 10:53:45,752 - INFO - joeynmt.training - Epoch 1, Step: 9500, Batch Loss: 2.630875, Tokens per Sec: 4292, Lr: 0.000300\n","2021-10-09 10:54:21,086 - INFO - joeynmt.training - Epoch 1, Step: 9600, Batch Loss: 2.719279, Tokens per Sec: 4211, Lr: 0.000300\n","2021-10-09 10:54:56,536 - INFO - joeynmt.training - Epoch 1, Step: 9700, Batch Loss: 2.722626, Tokens per Sec: 4219, Lr: 0.000300\n","2021-10-09 10:55:31,789 - INFO - joeynmt.training - Epoch 1, Step: 9800, Batch Loss: 2.681427, Tokens per Sec: 4274, Lr: 0.000300\n","2021-10-09 10:56:07,145 - INFO - joeynmt.training - Epoch 1, Step: 9900, Batch Loss: 2.854496, Tokens per Sec: 4227, Lr: 0.000300\n","2021-10-09 10:56:42,524 - INFO - joeynmt.training - Epoch 1, Step: 10000, Batch Loss: 2.789971, Tokens per Sec: 4227, Lr: 0.000300\n","2021-10-09 10:57:34,267 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 10:57:34,268 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 10:57:34,268 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 10:57:34,273 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 10:57:34,701 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/7000.ckpt\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - Example #0\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - \tHypothesis: A man or woman in the family has a group of the children and the flot from the baby of the baby and their children .\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - Example #1\n","2021-10-09 10:57:34,722 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is in the earth that he has a power to be a powerful of those who are perfect and to him . ” ( 2 Chronicle 16 : 9 ) So we can be confident that we can be confident that we can be “ the heart of Jehovah is not a heart of the heart . ” — 1 Cor . 1 : 55 ; 1 : 15 .\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - Example #2\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 10:57:34,723 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 10:57:34,724 - INFO - joeynmt.training - Example #3\n","2021-10-09 10:57:34,724 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 10:57:34,724 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 10:57:34,724 - INFO - joeynmt.training - \tHypothesis: However , when three years of Africa , we returned to the United States to make a family .\n","2021-10-09 10:57:34,724 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 10000: bleu: 20.38, loss: 70140.5000, ppl: 11.4034, duration: 52.2001s\n","2021-10-09 10:58:10,043 - INFO - joeynmt.training - Epoch 1, Step: 10100, Batch Loss: 2.816211, Tokens per Sec: 4255, Lr: 0.000300\n","2021-10-09 10:58:45,605 - INFO - joeynmt.training - Epoch 1, Step: 10200, Batch Loss: 2.644353, Tokens per Sec: 4217, Lr: 0.000300\n","2021-10-09 10:59:21,340 - INFO - joeynmt.training - Epoch 1, Step: 10300, Batch Loss: 2.763965, Tokens per Sec: 4278, Lr: 0.000300\n","2021-10-09 10:59:56,711 - INFO - joeynmt.training - Epoch 1, Step: 10400, Batch Loss: 2.769538, Tokens per Sec: 4249, Lr: 0.000300\n","2021-10-09 11:00:32,350 - INFO - joeynmt.training - Epoch 1, Step: 10500, Batch Loss: 2.452230, Tokens per Sec: 4239, Lr: 0.000300\n","2021-10-09 11:01:07,991 - INFO - joeynmt.training - Epoch 1, Step: 10600, Batch Loss: 2.690310, Tokens per Sec: 4186, Lr: 0.000300\n","2021-10-09 11:01:43,738 - INFO - joeynmt.training - Epoch 1, Step: 10700, Batch Loss: 2.597077, Tokens per Sec: 4080, Lr: 0.000300\n","2021-10-09 11:02:19,254 - INFO - joeynmt.training - Epoch 1, Step: 10800, Batch Loss: 2.486094, Tokens per Sec: 4281, Lr: 0.000300\n","2021-10-09 11:02:54,697 - INFO - joeynmt.training - Epoch 1, Step: 10900, Batch Loss: 2.810500, Tokens per Sec: 4162, Lr: 0.000300\n","2021-10-09 11:03:29,987 - INFO - joeynmt.training - Epoch 1, Step: 11000, Batch Loss: 2.381602, Tokens per Sec: 4360, Lr: 0.000300\n","2021-10-09 11:04:22,836 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:04:22,836 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:04:22,837 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:04:22,842 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:04:23,258 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/8000.ckpt\n","2021-10-09 11:04:23,280 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tHypothesis: The husband or woman in the family has been a few children in a brain from the brain of the bultery and their children .\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:04:23,281 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is the seeking of the earth to show his power for those who are perfect . ” ( 2 Knote . 16 : 9 ) So we can be confident that we can trust in Jehovah is ‘ the heart of the heart of Jehovah is not clean . ’ — 1 Cor . 5 : 15 .\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:04:23,282 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:04:23,283 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:04:23,283 - INFO - joeynmt.training - \tHypothesis: However , the three years of Africa , we were not return to the United States to do the family .\n","2021-10-09 11:04:23,283 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 11000: bleu: 21.26, loss: 68007.1406, ppl: 10.5897, duration: 53.2950s\n","2021-10-09 11:04:58,497 - INFO - joeynmt.training - Epoch 1, Step: 11100, Batch Loss: 2.691037, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 11:05:33,876 - INFO - joeynmt.training - Epoch 1, Step: 11200, Batch Loss: 2.559852, Tokens per Sec: 4242, Lr: 0.000300\n","2021-10-09 11:06:09,171 - INFO - joeynmt.training - Epoch 1, Step: 11300, Batch Loss: 2.570990, Tokens per Sec: 4281, Lr: 0.000300\n","2021-10-09 11:06:44,865 - INFO - joeynmt.training - Epoch 1, Step: 11400, Batch Loss: 2.640743, Tokens per Sec: 4189, Lr: 0.000300\n","2021-10-09 11:07:20,385 - INFO - joeynmt.training - Epoch 1, Step: 11500, Batch Loss: 2.676978, Tokens per Sec: 4226, Lr: 0.000300\n","2021-10-09 11:07:56,068 - INFO - joeynmt.training - Epoch 1, Step: 11600, Batch Loss: 2.358019, Tokens per Sec: 4194, Lr: 0.000300\n","2021-10-09 11:08:31,282 - INFO - joeynmt.training - Epoch 1, Step: 11700, Batch Loss: 2.582325, Tokens per Sec: 4239, Lr: 0.000300\n","2021-10-09 11:09:06,479 - INFO - joeynmt.training - Epoch 1, Step: 11800, Batch Loss: 2.513417, Tokens per Sec: 4189, Lr: 0.000300\n","2021-10-09 11:09:41,766 - INFO - joeynmt.training - Epoch 1, Step: 11900, Batch Loss: 2.608644, Tokens per Sec: 4290, Lr: 0.000300\n","2021-10-09 11:10:17,156 - INFO - joeynmt.training - Epoch 1, Step: 12000, Batch Loss: 2.488807, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 11:11:02,846 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:11:02,846 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:11:02,846 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:11:02,850 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:11:03,260 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/9000.ckpt\n","2021-10-09 11:11:03,279 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - \tHypothesis: A husband or woman who attend the family with a young children in a baby from a baby and their children .\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:11:03,280 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is in the earth that seems to show his power for those who are perfect to him . ” ( 2 Chronicles 16 : 9 ) So we can be confidence that we are confidence in Jehovah is ‘ the heart of the heart of the unclean . ’ — 1 Cor . 5 : 15 ; 1 .\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:11:03,281 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:11:03,282 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:11:03,282 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:11:03,282 - INFO - joeynmt.training - \tHypothesis: However , though , three years of the Africa , we returned to the United States to do the family .\n","2021-10-09 11:11:03,282 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 12000: bleu: 22.92, loss: 66288.5703, ppl: 9.9767, duration: 46.1255s\n","2021-10-09 11:11:38,728 - INFO - joeynmt.training - Epoch 1, Step: 12100, Batch Loss: 2.396185, Tokens per Sec: 4259, Lr: 0.000300\n","2021-10-09 11:12:14,036 - INFO - joeynmt.training - Epoch 1, Step: 12200, Batch Loss: 2.628723, Tokens per Sec: 4167, Lr: 0.000300\n","2021-10-09 11:12:49,312 - INFO - joeynmt.training - Epoch 1, Step: 12300, Batch Loss: 2.550407, Tokens per Sec: 4279, Lr: 0.000300\n","2021-10-09 11:13:25,083 - INFO - joeynmt.training - Epoch 1, Step: 12400, Batch Loss: 2.388645, Tokens per Sec: 4255, Lr: 0.000300\n","2021-10-09 11:14:00,424 - INFO - joeynmt.training - Epoch 1, Step: 12500, Batch Loss: 2.538008, Tokens per Sec: 4302, Lr: 0.000300\n","2021-10-09 11:14:35,514 - INFO - joeynmt.training - Epoch 1, Step: 12600, Batch Loss: 2.508315, Tokens per Sec: 4216, Lr: 0.000300\n","2021-10-09 11:15:11,004 - INFO - joeynmt.training - Epoch 1, Step: 12700, Batch Loss: 2.400717, Tokens per Sec: 4205, Lr: 0.000300\n","2021-10-09 11:15:46,717 - INFO - joeynmt.training - Epoch 1, Step: 12800, Batch Loss: 2.515658, Tokens per Sec: 4168, Lr: 0.000300\n","2021-10-09 11:16:22,004 - INFO - joeynmt.training - Epoch 1, Step: 12900, Batch Loss: 2.490448, Tokens per Sec: 4255, Lr: 0.000300\n","2021-10-09 11:16:57,182 - INFO - joeynmt.training - Epoch 1, Step: 13000, Batch Loss: 2.562559, Tokens per Sec: 4269, Lr: 0.000300\n","2021-10-09 11:17:44,048 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:17:44,049 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:17:44,049 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:17:44,055 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:17:44,489 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/10000.ckpt\n","2021-10-09 11:17:44,510 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:17:44,511 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:17:44,511 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:17:44,511 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended a family in a few children may have been sudden from a baby and their children .\n","2021-10-09 11:17:44,511 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:17:44,511 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] sees the earth to show his strength for those who are perfect and heart . ” ( 2 Ket . 16 : 9 ) So we can be confidence that we are confidence in Jehovah ’ s “ the heart of the heart of the heart of Jehovah is not clean ” — 1 Cor . 5 : 15 ; 1 Cor .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:17:44,512 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:17:44,513 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:17:44,513 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:17:44,513 - INFO - joeynmt.training - \tHypothesis: However , at three years and half years in Africa , we returned to the United States to do the family .\n","2021-10-09 11:17:44,513 - INFO - joeynmt.training - Validation result (greedy) at epoch 1, step 13000: bleu: 23.56, loss: 64858.7227, ppl: 9.4937, duration: 47.3303s\n","2021-10-09 11:18:20,090 - INFO - joeynmt.training - Epoch 1, Step: 13100, Batch Loss: 2.504785, Tokens per Sec: 4315, Lr: 0.000300\n","2021-10-09 11:18:55,710 - INFO - joeynmt.training - Epoch 1, Step: 13200, Batch Loss: 2.592704, Tokens per Sec: 4196, Lr: 0.000300\n","2021-10-09 11:19:30,879 - INFO - joeynmt.training - Epoch 1, Step: 13300, Batch Loss: 2.501250, Tokens per Sec: 4312, Lr: 0.000300\n","2021-10-09 11:20:06,201 - INFO - joeynmt.training - Epoch 1, Step: 13400, Batch Loss: 2.562129, Tokens per Sec: 4255, Lr: 0.000300\n","2021-10-09 11:20:41,624 - INFO - joeynmt.training - Epoch 1, Step: 13500, Batch Loss: 2.414219, Tokens per Sec: 4188, Lr: 0.000300\n","2021-10-09 11:21:16,904 - INFO - joeynmt.training - Epoch 1, Step: 13600, Batch Loss: 2.511906, Tokens per Sec: 4159, Lr: 0.000300\n","2021-10-09 11:21:29,487 - INFO - joeynmt.training - Epoch 1: total training loss 43251.08\n","2021-10-09 11:21:29,487 - INFO - joeynmt.training - EPOCH 2\n","2021-10-09 11:21:53,346 - INFO - joeynmt.training - Epoch 2, Step: 13700, Batch Loss: 2.622968, Tokens per Sec: 4083, Lr: 0.000300\n","2021-10-09 11:22:28,700 - INFO - joeynmt.training - Epoch 2, Step: 13800, Batch Loss: 2.278796, Tokens per Sec: 4216, Lr: 0.000300\n","2021-10-09 11:23:04,368 - INFO - joeynmt.training - Epoch 2, Step: 13900, Batch Loss: 2.510063, Tokens per Sec: 4199, Lr: 0.000300\n","2021-10-09 11:23:39,502 - INFO - joeynmt.training - Epoch 2, Step: 14000, Batch Loss: 2.330262, Tokens per Sec: 4220, Lr: 0.000300\n","2021-10-09 11:24:27,132 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:24:27,133 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:24:27,133 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:24:27,138 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:24:27,555 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/11000.ckpt\n","2021-10-09 11:24:27,577 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:24:27,577 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:24:27,577 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:24:27,577 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended a family with a young children and the baby of the baby of their children .\n","2021-10-09 11:24:27,577 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] reminds the earth to see his strength for those who have a perfect heart . ” ( 2 Chron . 16 : 9 ) So we can be confidence that we can have the heart of Jehovah ‘ the heart of the heart ’ is not clean . — 1 Cor . 5 : 15 .\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:24:27,578 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - \tHypothesis: However , three years and half of our in Africa , we returned to the United States to make a family .\n","2021-10-09 11:24:27,579 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 14000: bleu: 24.37, loss: 63373.3906, ppl: 9.0168, duration: 48.0768s\n","2021-10-09 11:25:03,344 - INFO - joeynmt.training - Epoch 2, Step: 14100, Batch Loss: 2.570100, Tokens per Sec: 4231, Lr: 0.000300\n","2021-10-09 11:25:38,612 - INFO - joeynmt.training - Epoch 2, Step: 14200, Batch Loss: 2.214810, Tokens per Sec: 4212, Lr: 0.000300\n","2021-10-09 11:26:13,956 - INFO - joeynmt.training - Epoch 2, Step: 14300, Batch Loss: 2.393334, Tokens per Sec: 4199, Lr: 0.000300\n","2021-10-09 11:26:49,367 - INFO - joeynmt.training - Epoch 2, Step: 14400, Batch Loss: 2.349936, Tokens per Sec: 4259, Lr: 0.000300\n","2021-10-09 11:27:25,047 - INFO - joeynmt.training - Epoch 2, Step: 14500, Batch Loss: 2.428552, Tokens per Sec: 4232, Lr: 0.000300\n","2021-10-09 11:28:00,124 - INFO - joeynmt.training - Epoch 2, Step: 14600, Batch Loss: 2.608544, Tokens per Sec: 4220, Lr: 0.000300\n","2021-10-09 11:28:35,771 - INFO - joeynmt.training - Epoch 2, Step: 14700, Batch Loss: 2.360325, Tokens per Sec: 4183, Lr: 0.000300\n","2021-10-09 11:29:11,159 - INFO - joeynmt.training - Epoch 2, Step: 14800, Batch Loss: 2.426021, Tokens per Sec: 4097, Lr: 0.000300\n","2021-10-09 11:29:47,045 - INFO - joeynmt.training - Epoch 2, Step: 14900, Batch Loss: 2.490202, Tokens per Sec: 4142, Lr: 0.000300\n","2021-10-09 11:30:23,067 - INFO - joeynmt.training - Epoch 2, Step: 15000, Batch Loss: 2.350137, Tokens per Sec: 4158, Lr: 0.000300\n","2021-10-09 11:31:12,593 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:31:12,593 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:31:12,593 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:31:12,599 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:31:13,003 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/12000.ckpt\n","2021-10-09 11:31:13,024 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:31:13,024 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:31:13,024 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:31:13,024 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended in the family with the old children may be a brain from a brain and their children .\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] reminds the earth to show his power for those who have perfect heart . ” ( 2 Chron . 16 : 9 ) So we can be confident that we are confident that Jehovah is “ the heart of the heart of the heart of the earth ” is not unclean . — 1 Cor . 5 : 15 .\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:31:13,025 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - \tHypothesis: However , for three years and half years in Africa , we returned to the United States to do the family .\n","2021-10-09 11:31:13,026 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 15000: bleu: 24.98, loss: 62393.1953, ppl: 8.7153, duration: 49.9587s\n","2021-10-09 11:31:48,307 - INFO - joeynmt.training - Epoch 2, Step: 15100, Batch Loss: 2.382398, Tokens per Sec: 4271, Lr: 0.000300\n","2021-10-09 11:32:23,739 - INFO - joeynmt.training - Epoch 2, Step: 15200, Batch Loss: 2.362772, Tokens per Sec: 4282, Lr: 0.000300\n","2021-10-09 11:32:59,212 - INFO - joeynmt.training - Epoch 2, Step: 15300, Batch Loss: 2.189385, Tokens per Sec: 4315, Lr: 0.000300\n","2021-10-09 11:33:34,500 - INFO - joeynmt.training - Epoch 2, Step: 15400, Batch Loss: 2.344784, Tokens per Sec: 4219, Lr: 0.000300\n","2021-10-09 11:34:10,069 - INFO - joeynmt.training - Epoch 2, Step: 15500, Batch Loss: 2.268941, Tokens per Sec: 4274, Lr: 0.000300\n","2021-10-09 11:34:45,364 - INFO - joeynmt.training - Epoch 2, Step: 15600, Batch Loss: 2.291121, Tokens per Sec: 4283, Lr: 0.000300\n","2021-10-09 11:35:21,076 - INFO - joeynmt.training - Epoch 2, Step: 15700, Batch Loss: 2.334087, Tokens per Sec: 4189, Lr: 0.000300\n","2021-10-09 11:35:56,503 - INFO - joeynmt.training - Epoch 2, Step: 15800, Batch Loss: 2.420855, Tokens per Sec: 4233, Lr: 0.000300\n","2021-10-09 11:36:32,037 - INFO - joeynmt.training - Epoch 2, Step: 15900, Batch Loss: 2.657078, Tokens per Sec: 4120, Lr: 0.000300\n","2021-10-09 11:37:07,157 - INFO - joeynmt.training - Epoch 2, Step: 16000, Batch Loss: 2.397602, Tokens per Sec: 4206, Lr: 0.000300\n","2021-10-09 11:38:04,442 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:38:04,443 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:38:04,443 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:38:04,448 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:38:04,868 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/13000.ckpt\n","2021-10-09 11:38:04,888 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:38:04,888 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:38:04,888 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - \tHypothesis: A husband or woman who attends in the family has been a young children who may not be a brain from the brain and their children .\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his strength for those who have perfect heart . ” ( 2 Chron . 16 : 9 ) So we can be confident that we are confident that Jehovah is ‘ the heart of the heart ’ is not clean ” without any means of his own own strength. 1 Tim . 1 : 5 ; 1 Cor . 5 : 15 .\n","2021-10-09 11:38:04,889 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:38:04,890 - INFO - joeynmt.training - \tHypothesis: However , three years and half years in Africa , we returned to the United States to do family .\n","2021-10-09 11:38:04,891 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 16000: bleu: 25.47, loss: 61200.8359, ppl: 8.3620, duration: 57.7335s\n","2021-10-09 11:38:40,371 - INFO - joeynmt.training - Epoch 2, Step: 16100, Batch Loss: 2.308406, Tokens per Sec: 4275, Lr: 0.000300\n","2021-10-09 11:39:15,663 - INFO - joeynmt.training - Epoch 2, Step: 16200, Batch Loss: 2.438536, Tokens per Sec: 4274, Lr: 0.000300\n","2021-10-09 11:39:51,038 - INFO - joeynmt.training - Epoch 2, Step: 16300, Batch Loss: 2.214139, Tokens per Sec: 4276, Lr: 0.000300\n","2021-10-09 11:40:26,274 - INFO - joeynmt.training - Epoch 2, Step: 16400, Batch Loss: 2.414347, Tokens per Sec: 4262, Lr: 0.000300\n","2021-10-09 11:41:01,522 - INFO - joeynmt.training - Epoch 2, Step: 16500, Batch Loss: 2.239269, Tokens per Sec: 4186, Lr: 0.000300\n","2021-10-09 11:41:36,689 - INFO - joeynmt.training - Epoch 2, Step: 16600, Batch Loss: 2.480150, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 11:42:12,242 - INFO - joeynmt.training - Epoch 2, Step: 16700, Batch Loss: 2.269525, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 11:42:48,012 - INFO - joeynmt.training - Epoch 2, Step: 16800, Batch Loss: 2.303315, Tokens per Sec: 4221, Lr: 0.000300\n","2021-10-09 11:43:23,684 - INFO - joeynmt.training - Epoch 2, Step: 16900, Batch Loss: 2.242643, Tokens per Sec: 4287, Lr: 0.000300\n","2021-10-09 11:43:59,268 - INFO - joeynmt.training - Epoch 2, Step: 17000, Batch Loss: 2.385422, Tokens per Sec: 4270, Lr: 0.000300\n","2021-10-09 11:44:53,485 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:44:53,485 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:44:53,485 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:44:53,493 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:44:53,926 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/14000.ckpt\n","2021-10-09 11:44:53,949 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:44:53,949 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended a family in a few children may be a brain from a baby of their children .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] search on earth to show his strength for those who have perfect heart . ” ( 2 Chr. 16 : 9 ) So we can be confident that we are confident that Jehovah is ‘ clean and clean ’ is not . — 1 Tim . 5 : 15 ; 1 Cor . 5 : 58 .\n","2021-10-09 11:44:53,950 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:44:53,951 - INFO - joeynmt.training - \tHypothesis: However , three years and half years in Africa , we returned to the United States to make family family .\n","2021-10-09 11:44:53,952 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 17000: bleu: 26.07, loss: 60173.8359, ppl: 8.0693, duration: 54.6831s\n","2021-10-09 11:45:29,593 - INFO - joeynmt.training - Epoch 2, Step: 17100, Batch Loss: 2.374931, Tokens per Sec: 4202, Lr: 0.000300\n","2021-10-09 11:46:05,282 - INFO - joeynmt.training - Epoch 2, Step: 17200, Batch Loss: 2.388737, Tokens per Sec: 4232, Lr: 0.000300\n","2021-10-09 11:46:40,676 - INFO - joeynmt.training - Epoch 2, Step: 17300, Batch Loss: 2.383684, Tokens per Sec: 4272, Lr: 0.000300\n","2021-10-09 11:47:16,280 - INFO - joeynmt.training - Epoch 2, Step: 17400, Batch Loss: 2.313962, Tokens per Sec: 4174, Lr: 0.000300\n","2021-10-09 11:47:51,853 - INFO - joeynmt.training - Epoch 2, Step: 17500, Batch Loss: 2.296621, Tokens per Sec: 4286, Lr: 0.000300\n","2021-10-09 11:48:27,481 - INFO - joeynmt.training - Epoch 2, Step: 17600, Batch Loss: 2.151507, Tokens per Sec: 4185, Lr: 0.000300\n","2021-10-09 11:49:03,167 - INFO - joeynmt.training - Epoch 2, Step: 17700, Batch Loss: 2.334860, Tokens per Sec: 4253, Lr: 0.000300\n","2021-10-09 11:49:38,864 - INFO - joeynmt.training - Epoch 2, Step: 17800, Batch Loss: 2.391614, Tokens per Sec: 4224, Lr: 0.000300\n","2021-10-09 11:50:14,661 - INFO - joeynmt.training - Epoch 2, Step: 17900, Batch Loss: 2.275092, Tokens per Sec: 4179, Lr: 0.000300\n","2021-10-09 11:50:50,387 - INFO - joeynmt.training - Epoch 2, Step: 18000, Batch Loss: 2.521597, Tokens per Sec: 4181, Lr: 0.000300\n","2021-10-09 11:51:48,254 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:51:48,255 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:51:48,255 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:51:48,262 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:51:48,718 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/15000.ckpt\n","2021-10-09 11:51:48,738 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:51:48,738 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended a family in a long time may be a brain from a brain and their children .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] seeks us in the earth to show his strength for those who have perfect heart . ” ( 2 Chron . 16 : 9 ) So we can be confident that we are confident that Jehovah is ‘ the heart of the heart of the heart of Jehovah is not clean . ’ — 1 Tim . 1 : 5 ; 1 Cor . 5 : 15 .\n","2021-10-09 11:51:48,739 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:51:48,740 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:51:48,740 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:51:48,740 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:51:48,740 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:51:48,740 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:51:48,741 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:51:48,741 - INFO - joeynmt.training - \tHypothesis: However , three years of us in Africa , we returned to the United States to make family members .\n","2021-10-09 11:51:48,741 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 18000: bleu: 26.65, loss: 59267.0586, ppl: 7.8193, duration: 58.3538s\n","2021-10-09 11:52:24,429 - INFO - joeynmt.training - Epoch 2, Step: 18100, Batch Loss: 2.419678, Tokens per Sec: 4072, Lr: 0.000300\n","2021-10-09 11:53:00,630 - INFO - joeynmt.training - Epoch 2, Step: 18200, Batch Loss: 2.324923, Tokens per Sec: 4085, Lr: 0.000300\n","2021-10-09 11:53:36,111 - INFO - joeynmt.training - Epoch 2, Step: 18300, Batch Loss: 2.371382, Tokens per Sec: 4124, Lr: 0.000300\n","2021-10-09 11:54:11,851 - INFO - joeynmt.training - Epoch 2, Step: 18400, Batch Loss: 2.188168, Tokens per Sec: 4122, Lr: 0.000300\n","2021-10-09 11:54:47,470 - INFO - joeynmt.training - Epoch 2, Step: 18500, Batch Loss: 2.136163, Tokens per Sec: 4205, Lr: 0.000300\n","2021-10-09 11:55:22,714 - INFO - joeynmt.training - Epoch 2, Step: 18600, Batch Loss: 2.261730, Tokens per Sec: 4182, Lr: 0.000300\n","2021-10-09 11:55:58,477 - INFO - joeynmt.training - Epoch 2, Step: 18700, Batch Loss: 2.282278, Tokens per Sec: 4256, Lr: 0.000300\n","2021-10-09 11:56:34,182 - INFO - joeynmt.training - Epoch 2, Step: 18800, Batch Loss: 2.231699, Tokens per Sec: 4171, Lr: 0.000300\n","2021-10-09 11:57:09,675 - INFO - joeynmt.training - Epoch 2, Step: 18900, Batch Loss: 2.245538, Tokens per Sec: 4237, Lr: 0.000300\n","2021-10-09 11:57:45,526 - INFO - joeynmt.training - Epoch 2, Step: 19000, Batch Loss: 2.290506, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 11:58:36,768 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 11:58:36,769 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 11:58:36,769 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 11:58:36,777 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 11:58:37,217 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/16000.ckpt\n","2021-10-09 11:58:37,239 - INFO - joeynmt.training - Example #0\n","2021-10-09 11:58:37,239 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 11:58:37,239 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 11:58:37,239 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attended a family with a young child may be in a baby of the baby and their children .\n","2021-10-09 11:58:37,239 - INFO - joeynmt.training - Example #1\n","2021-10-09 11:58:37,240 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 11:58:37,240 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 11:58:37,240 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his strength for those who have perfect heart . ” ( 2 Chron . 16 : 9 ) So we can be confident that we are in all things we are “ the heart of Jehovah . ” — 1 Tim . 1 : 5 ; 1 Cor . 58 : 58 .\n","2021-10-09 11:58:37,240 - INFO - joeynmt.training - Example #2\n","2021-10-09 11:58:37,240 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - Example #3\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - \tHypothesis: However , at three years and half years in Africa , we returned to the United States to make family .\n","2021-10-09 11:58:37,241 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 19000: bleu: 26.55, loss: 58393.3867, ppl: 7.5858, duration: 51.7150s\n","2021-10-09 11:59:12,795 - INFO - joeynmt.training - Epoch 2, Step: 19100, Batch Loss: 2.195588, Tokens per Sec: 4295, Lr: 0.000300\n","2021-10-09 11:59:48,520 - INFO - joeynmt.training - Epoch 2, Step: 19200, Batch Loss: 2.233423, Tokens per Sec: 4172, Lr: 0.000300\n","2021-10-09 12:00:24,015 - INFO - joeynmt.training - Epoch 2, Step: 19300, Batch Loss: 2.379931, Tokens per Sec: 4098, Lr: 0.000300\n","2021-10-09 12:00:59,740 - INFO - joeynmt.training - Epoch 2, Step: 19400, Batch Loss: 2.214389, Tokens per Sec: 4298, Lr: 0.000300\n","2021-10-09 12:01:35,257 - INFO - joeynmt.training - Epoch 2, Step: 19500, Batch Loss: 2.230909, Tokens per Sec: 4152, Lr: 0.000300\n","2021-10-09 12:02:10,939 - INFO - joeynmt.training - Epoch 2, Step: 19600, Batch Loss: 2.074640, Tokens per Sec: 4237, Lr: 0.000300\n","2021-10-09 12:02:46,377 - INFO - joeynmt.training - Epoch 2, Step: 19700, Batch Loss: 2.008759, Tokens per Sec: 4284, Lr: 0.000300\n","2021-10-09 12:03:22,066 - INFO - joeynmt.training - Epoch 2, Step: 19800, Batch Loss: 2.226596, Tokens per Sec: 4099, Lr: 0.000300\n","2021-10-09 12:03:57,147 - INFO - joeynmt.training - Epoch 2, Step: 19900, Batch Loss: 2.356472, Tokens per Sec: 4208, Lr: 0.000300\n","2021-10-09 12:04:32,710 - INFO - joeynmt.training - Epoch 2, Step: 20000, Batch Loss: 2.240407, Tokens per Sec: 4196, Lr: 0.000300\n","2021-10-09 12:05:24,538 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:05:24,538 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:05:24,538 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:05:24,545 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:05:24,976 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/17000.ckpt\n","2021-10-09 12:05:24,997 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:05:24,997 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:05:24,997 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:05:24,997 - INFO - joeynmt.training - \tHypothesis: A husband or woman who attends a family with a young children can be a baby from the baby of their children .\n","2021-10-09 12:05:24,998 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:05:24,998 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:05:24,998 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:05:24,998 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his power for those who are perfect . ” ( 2 Chronicles 16 : 9 ) So we can be confidence that we are doing all “ clean ” to Jehovah . — 1 Tim . 1 : 5 ; 1 Cor . 5 : 15 .\n","2021-10-09 12:05:24,998 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:05:24,999 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:05:25,000 - INFO - joeynmt.training - \tHypothesis: However , at three years of us in Africa , we returned to the United States to make family members .\n","2021-10-09 12:05:25,000 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 20000: bleu: 27.61, loss: 57597.9609, ppl: 7.3793, duration: 52.2888s\n","2021-10-09 12:06:00,698 - INFO - joeynmt.training - Epoch 2, Step: 20100, Batch Loss: 2.258240, Tokens per Sec: 4178, Lr: 0.000300\n","2021-10-09 12:06:36,300 - INFO - joeynmt.training - Epoch 2, Step: 20200, Batch Loss: 2.128119, Tokens per Sec: 4176, Lr: 0.000300\n","2021-10-09 12:07:12,032 - INFO - joeynmt.training - Epoch 2, Step: 20300, Batch Loss: 2.260543, Tokens per Sec: 4192, Lr: 0.000300\n","2021-10-09 12:07:47,367 - INFO - joeynmt.training - Epoch 2, Step: 20400, Batch Loss: 2.390133, Tokens per Sec: 4278, Lr: 0.000300\n","2021-10-09 12:08:22,655 - INFO - joeynmt.training - Epoch 2, Step: 20500, Batch Loss: 2.176854, Tokens per Sec: 4213, Lr: 0.000300\n","2021-10-09 12:08:58,148 - INFO - joeynmt.training - Epoch 2, Step: 20600, Batch Loss: 2.149851, Tokens per Sec: 4227, Lr: 0.000300\n","2021-10-09 12:09:33,833 - INFO - joeynmt.training - Epoch 2, Step: 20700, Batch Loss: 2.048210, Tokens per Sec: 4163, Lr: 0.000300\n","2021-10-09 12:10:09,723 - INFO - joeynmt.training - Epoch 2, Step: 20800, Batch Loss: 2.200344, Tokens per Sec: 4186, Lr: 0.000300\n","2021-10-09 12:10:45,115 - INFO - joeynmt.training - Epoch 2, Step: 20900, Batch Loss: 2.397590, Tokens per Sec: 4263, Lr: 0.000300\n","2021-10-09 12:11:20,197 - INFO - joeynmt.training - Epoch 2, Step: 21000, Batch Loss: 2.357592, Tokens per Sec: 4256, Lr: 0.000300\n","2021-10-09 12:12:18,212 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:12:18,212 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:12:18,212 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:12:18,219 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:12:18,655 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/18000.ckpt\n","2021-10-09 12:12:18,677 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:12:18,678 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:12:18,678 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:12:18,678 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends in the family is a long time with the early children may be in a bark of a baby and their children .\n","2021-10-09 12:12:18,678 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:12:18,679 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:12:18,679 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:12:18,679 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] reminds us to look forward to the earth to show his power for those who have perfect heart to him . ” ( 2 Chr. 16 : 9 ) So we can be confident that we have Jehovah ’ s holy spirit ‘ clean ’ without a clean heart . — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:12:18,679 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:12:18,680 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:12:18,681 - INFO - joeynmt.training - \tHypothesis: However , after three years and half years in Africa , we returned to the United States to make family interests .\n","2021-10-09 12:12:18,681 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 21000: bleu: 27.63, loss: 56684.1562, ppl: 7.1490, duration: 58.4828s\n","2021-10-09 12:12:54,059 - INFO - joeynmt.training - Epoch 2, Step: 21100, Batch Loss: 2.373966, Tokens per Sec: 4158, Lr: 0.000300\n","2021-10-09 12:13:29,727 - INFO - joeynmt.training - Epoch 2, Step: 21200, Batch Loss: 2.331592, Tokens per Sec: 4156, Lr: 0.000300\n","2021-10-09 12:14:05,226 - INFO - joeynmt.training - Epoch 2, Step: 21300, Batch Loss: 2.100357, Tokens per Sec: 4245, Lr: 0.000300\n","2021-10-09 12:14:41,048 - INFO - joeynmt.training - Epoch 2, Step: 21400, Batch Loss: 2.124656, Tokens per Sec: 4245, Lr: 0.000300\n","2021-10-09 12:15:16,652 - INFO - joeynmt.training - Epoch 2, Step: 21500, Batch Loss: 2.248663, Tokens per Sec: 4212, Lr: 0.000300\n","2021-10-09 12:15:52,309 - INFO - joeynmt.training - Epoch 2, Step: 21600, Batch Loss: 2.144690, Tokens per Sec: 4233, Lr: 0.000300\n","2021-10-09 12:16:27,776 - INFO - joeynmt.training - Epoch 2, Step: 21700, Batch Loss: 2.101830, Tokens per Sec: 4344, Lr: 0.000300\n","2021-10-09 12:17:03,304 - INFO - joeynmt.training - Epoch 2, Step: 21800, Batch Loss: 2.125421, Tokens per Sec: 4192, Lr: 0.000300\n","2021-10-09 12:17:38,913 - INFO - joeynmt.training - Epoch 2, Step: 21900, Batch Loss: 1.994488, Tokens per Sec: 4276, Lr: 0.000300\n","2021-10-09 12:18:14,361 - INFO - joeynmt.training - Epoch 2, Step: 22000, Batch Loss: 2.045489, Tokens per Sec: 4209, Lr: 0.000300\n","2021-10-09 12:19:05,775 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:19:05,775 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:19:05,776 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:19:05,783 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:19:06,216 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/19000.ckpt\n","2021-10-09 12:19:06,244 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:19:06,245 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:19:06,245 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:19:06,245 - INFO - joeynmt.training - \tHypothesis: A husband or woman who attends in the family is a child who is a child who may be in a baby of the balance and their children .\n","2021-10-09 12:19:06,245 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:19:06,245 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] sees to look forward to the earth to show his power for those who have perfect heart . ” ( 2 Chr. 16 : 9 ) So we can be confident that all of us are “ the heart of the heart ” without . — 1 Tim . 1 : 5 ; 1 Cor . 1 : 58 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:19:06,246 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:19:06,247 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:19:06,247 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:19:06,247 - INFO - joeynmt.training - \tHypothesis: However , three years and half years in Africa , we returned to the United States to make family .\n","2021-10-09 12:19:06,247 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 22000: bleu: 28.40, loss: 56058.7109, ppl: 6.9955, duration: 51.8857s\n","2021-10-09 12:19:41,687 - INFO - joeynmt.training - Epoch 2, Step: 22100, Batch Loss: 2.274513, Tokens per Sec: 4224, Lr: 0.000300\n","2021-10-09 12:20:17,289 - INFO - joeynmt.training - Epoch 2, Step: 22200, Batch Loss: 2.308294, Tokens per Sec: 4148, Lr: 0.000300\n","2021-10-09 12:20:52,594 - INFO - joeynmt.training - Epoch 2, Step: 22300, Batch Loss: 2.041547, Tokens per Sec: 4267, Lr: 0.000300\n","2021-10-09 12:21:27,782 - INFO - joeynmt.training - Epoch 2, Step: 22400, Batch Loss: 2.320153, Tokens per Sec: 4231, Lr: 0.000300\n","2021-10-09 12:22:03,517 - INFO - joeynmt.training - Epoch 2, Step: 22500, Batch Loss: 2.170676, Tokens per Sec: 4263, Lr: 0.000300\n","2021-10-09 12:22:39,251 - INFO - joeynmt.training - Epoch 2, Step: 22600, Batch Loss: 2.102079, Tokens per Sec: 4175, Lr: 0.000300\n","2021-10-09 12:23:14,750 - INFO - joeynmt.training - Epoch 2, Step: 22700, Batch Loss: 2.164946, Tokens per Sec: 4207, Lr: 0.000300\n","2021-10-09 12:23:50,208 - INFO - joeynmt.training - Epoch 2, Step: 22800, Batch Loss: 2.131416, Tokens per Sec: 4243, Lr: 0.000300\n","2021-10-09 12:24:25,588 - INFO - joeynmt.training - Epoch 2, Step: 22900, Batch Loss: 2.172361, Tokens per Sec: 4235, Lr: 0.000300\n","2021-10-09 12:25:01,061 - INFO - joeynmt.training - Epoch 2, Step: 23000, Batch Loss: 2.103007, Tokens per Sec: 4162, Lr: 0.000300\n","2021-10-09 12:25:50,259 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:25:50,260 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:25:50,260 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:25:50,267 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:25:50,700 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/20000.ckpt\n","2021-10-09 12:25:50,720 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:25:50,721 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:25:50,721 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:25:50,721 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends a family with a child and old age may be a brain from a brain and their children .\n","2021-10-09 12:25:50,721 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:25:50,721 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] sees to look forward to the earth to show his strength for those who have perfect heart to him . ” ( 2 Chron . 16 : 9 ) So we can be confidence that all we are doing Jehovah ’ s ‘ clean and heart ’ is not clean . — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:25:50,722 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:25:50,723 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:25:50,723 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:25:50,723 - INFO - joeynmt.training - \tHypothesis: However , at three years of us in Africa , we returned to the United States to make family .\n","2021-10-09 12:25:50,723 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 23000: bleu: 28.74, loss: 55747.7695, ppl: 6.9204, duration: 49.6613s\n","2021-10-09 12:26:26,154 - INFO - joeynmt.training - Epoch 2, Step: 23100, Batch Loss: 2.221299, Tokens per Sec: 4204, Lr: 0.000300\n","2021-10-09 12:27:01,542 - INFO - joeynmt.training - Epoch 2, Step: 23200, Batch Loss: 2.227796, Tokens per Sec: 4227, Lr: 0.000300\n","2021-10-09 12:27:37,131 - INFO - joeynmt.training - Epoch 2, Step: 23300, Batch Loss: 2.029258, Tokens per Sec: 4272, Lr: 0.000300\n","2021-10-09 12:28:12,817 - INFO - joeynmt.training - Epoch 2, Step: 23400, Batch Loss: 2.059539, Tokens per Sec: 4208, Lr: 0.000300\n","2021-10-09 12:28:48,028 - INFO - joeynmt.training - Epoch 2, Step: 23500, Batch Loss: 2.159852, Tokens per Sec: 4140, Lr: 0.000300\n","2021-10-09 12:29:23,483 - INFO - joeynmt.training - Epoch 2, Step: 23600, Batch Loss: 2.255528, Tokens per Sec: 4216, Lr: 0.000300\n","2021-10-09 12:29:59,075 - INFO - joeynmt.training - Epoch 2, Step: 23700, Batch Loss: 2.145902, Tokens per Sec: 4212, Lr: 0.000300\n","2021-10-09 12:30:34,538 - INFO - joeynmt.training - Epoch 2, Step: 23800, Batch Loss: 2.129929, Tokens per Sec: 4194, Lr: 0.000300\n","2021-10-09 12:31:10,140 - INFO - joeynmt.training - Epoch 2, Step: 23900, Batch Loss: 2.049297, Tokens per Sec: 4180, Lr: 0.000300\n","2021-10-09 12:31:45,781 - INFO - joeynmt.training - Epoch 2, Step: 24000, Batch Loss: 2.161825, Tokens per Sec: 4255, Lr: 0.000300\n","2021-10-09 12:32:36,142 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:32:36,142 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:32:36,142 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:32:36,149 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:32:36,650 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/21000.ckpt\n","2021-10-09 12:32:36,671 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:32:36,671 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends a family is a child who is a child who may have a child ’ s brain from a balanced balanced and their children .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] is looking for the earth to show his power for those who are perfect in him . ” ( 2 Chron . 16 : 9 ) So we can be confident that we are “ the heart of Jehovah and heart ” that we are not ‘ unclean ’ . — 1 Tim . 1 : 5 ; 1 Cor . 1 Cor . 15 : 58 .\n","2021-10-09 12:32:36,672 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:32:36,673 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:32:36,674 - INFO - joeynmt.training - \tHypothesis: However , three years and half years in Africa , we returned to the United States to make family .\n","2021-10-09 12:32:36,674 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 24000: bleu: 28.87, loss: 54921.5977, ppl: 6.7248, duration: 50.8919s\n","2021-10-09 12:33:12,010 - INFO - joeynmt.training - Epoch 2, Step: 24100, Batch Loss: 2.284033, Tokens per Sec: 4237, Lr: 0.000300\n","2021-10-09 12:33:47,707 - INFO - joeynmt.training - Epoch 2, Step: 24200, Batch Loss: 1.890547, Tokens per Sec: 4206, Lr: 0.000300\n","2021-10-09 12:34:23,445 - INFO - joeynmt.training - Epoch 2, Step: 24300, Batch Loss: 2.189394, Tokens per Sec: 4213, Lr: 0.000300\n","2021-10-09 12:34:59,030 - INFO - joeynmt.training - Epoch 2, Step: 24400, Batch Loss: 2.144276, Tokens per Sec: 4130, Lr: 0.000300\n","2021-10-09 12:35:34,530 - INFO - joeynmt.training - Epoch 2, Step: 24500, Batch Loss: 2.233475, Tokens per Sec: 4199, Lr: 0.000300\n","2021-10-09 12:36:10,081 - INFO - joeynmt.training - Epoch 2, Step: 24600, Batch Loss: 2.155679, Tokens per Sec: 4271, Lr: 0.000300\n","2021-10-09 12:36:45,336 - INFO - joeynmt.training - Epoch 2, Step: 24700, Batch Loss: 2.107477, Tokens per Sec: 4244, Lr: 0.000300\n","2021-10-09 12:37:20,849 - INFO - joeynmt.training - Epoch 2, Step: 24800, Batch Loss: 2.301207, Tokens per Sec: 4163, Lr: 0.000300\n","2021-10-09 12:37:56,468 - INFO - joeynmt.training - Epoch 2, Step: 24900, Batch Loss: 2.172254, Tokens per Sec: 4258, Lr: 0.000300\n","2021-10-09 12:38:32,007 - INFO - joeynmt.training - Epoch 2, Step: 25000, Batch Loss: 2.194245, Tokens per Sec: 4156, Lr: 0.000300\n","2021-10-09 12:39:20,695 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:39:20,695 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:39:20,696 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:39:20,703 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:39:21,189 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/22000.ckpt\n","2021-10-09 12:39:21,211 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends a family is a child with old age may be a brain from a balanced and their children .\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:39:21,212 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his strength for those who are perfect to him . ” ( 2 Chron . 16 : 9 ) So we can be confident that all of Jehovah is ‘ clean ’ without the heart . — 1 Tim . 1 : 5 ; 1 Cor . 5 : 15 .\n","2021-10-09 12:39:21,213 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:39:21,213 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:39:21,213 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:39:21,213 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:39:21,213 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:39:21,214 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:39:21,214 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:39:21,214 - INFO - joeynmt.training - \tHypothesis: However , three and half years in Africa , we returned to the United States to make family .\n","2021-10-09 12:39:21,214 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 25000: bleu: 29.51, loss: 54217.1758, ppl: 6.5625, duration: 49.2065s\n","2021-10-09 12:39:56,885 - INFO - joeynmt.training - Epoch 2, Step: 25100, Batch Loss: 2.041139, Tokens per Sec: 4176, Lr: 0.000300\n","2021-10-09 12:40:32,439 - INFO - joeynmt.training - Epoch 2, Step: 25200, Batch Loss: 2.050301, Tokens per Sec: 4224, Lr: 0.000300\n","2021-10-09 12:41:08,053 - INFO - joeynmt.training - Epoch 2, Step: 25300, Batch Loss: 2.265297, Tokens per Sec: 4214, Lr: 0.000300\n","2021-10-09 12:41:43,376 - INFO - joeynmt.training - Epoch 2, Step: 25400, Batch Loss: 2.134143, Tokens per Sec: 4222, Lr: 0.000300\n","2021-10-09 12:42:18,850 - INFO - joeynmt.training - Epoch 2, Step: 25500, Batch Loss: 2.076121, Tokens per Sec: 4233, Lr: 0.000300\n","2021-10-09 12:42:54,319 - INFO - joeynmt.training - Epoch 2, Step: 25600, Batch Loss: 1.979700, Tokens per Sec: 4201, Lr: 0.000300\n","2021-10-09 12:43:29,819 - INFO - joeynmt.training - Epoch 2, Step: 25700, Batch Loss: 2.212246, Tokens per Sec: 4275, Lr: 0.000300\n","2021-10-09 12:44:05,551 - INFO - joeynmt.training - Epoch 2, Step: 25800, Batch Loss: 2.046979, Tokens per Sec: 4209, Lr: 0.000300\n","2021-10-09 12:44:41,260 - INFO - joeynmt.training - Epoch 2, Step: 25900, Batch Loss: 2.275557, Tokens per Sec: 4232, Lr: 0.000300\n","2021-10-09 12:45:16,934 - INFO - joeynmt.training - Epoch 2, Step: 26000, Batch Loss: 1.996147, Tokens per Sec: 4210, Lr: 0.000300\n","2021-10-09 12:46:07,861 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:46:07,861 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:46:07,861 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:46:07,869 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:46:08,348 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/23000.ckpt\n","2021-10-09 12:46:08,370 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:46:08,370 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends in the family is a child and old age may be swept from the baby and their children .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] look forward to all the earth to show his strength for those who have perfect heart to him . ” ( 2 Chron . 16 : 9 ) So we can be confident that all of us are doing Jehovah with ‘ the heart and heart ’ without a clean heart . — 1 Tim . 1 : 5 ; 1 Cor . 15 : 8 .\n","2021-10-09 12:46:08,371 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:46:08,372 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:46:08,373 - INFO - joeynmt.training - \tHypothesis: However , three years of us in Africa , we returned to the United States to make family interests .\n","2021-10-09 12:46:08,373 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 26000: bleu: 29.94, loss: 53581.7266, ppl: 6.4193, duration: 51.4379s\n","2021-10-09 12:46:44,123 - INFO - joeynmt.training - Epoch 2, Step: 26100, Batch Loss: 2.180938, Tokens per Sec: 4231, Lr: 0.000300\n","2021-10-09 12:47:19,747 - INFO - joeynmt.training - Epoch 2, Step: 26200, Batch Loss: 1.894832, Tokens per Sec: 4221, Lr: 0.000300\n","2021-10-09 12:47:55,194 - INFO - joeynmt.training - Epoch 2, Step: 26300, Batch Loss: 2.317798, Tokens per Sec: 4264, Lr: 0.000300\n","2021-10-09 12:48:30,481 - INFO - joeynmt.training - Epoch 2, Step: 26400, Batch Loss: 2.192912, Tokens per Sec: 4238, Lr: 0.000300\n","2021-10-09 12:49:05,858 - INFO - joeynmt.training - Epoch 2, Step: 26500, Batch Loss: 2.175118, Tokens per Sec: 4171, Lr: 0.000300\n","2021-10-09 12:49:41,292 - INFO - joeynmt.training - Epoch 2, Step: 26600, Batch Loss: 2.157015, Tokens per Sec: 4282, Lr: 0.000300\n","2021-10-09 12:50:17,039 - INFO - joeynmt.training - Epoch 2, Step: 26700, Batch Loss: 2.067853, Tokens per Sec: 4293, Lr: 0.000300\n","2021-10-09 12:50:52,578 - INFO - joeynmt.training - Epoch 2, Step: 26800, Batch Loss: 2.334381, Tokens per Sec: 4214, Lr: 0.000300\n","2021-10-09 12:51:28,237 - INFO - joeynmt.training - Epoch 2, Step: 26900, Batch Loss: 1.985084, Tokens per Sec: 4212, Lr: 0.000300\n","2021-10-09 12:52:03,785 - INFO - joeynmt.training - Epoch 2, Step: 27000, Batch Loss: 2.046078, Tokens per Sec: 4159, Lr: 0.000300\n","2021-10-09 12:52:55,726 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:52:55,726 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:52:55,727 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:52:55,735 - INFO - joeynmt.training - Hooray! New best validation result [ppl]!\n","2021-10-09 12:52:56,213 - INFO - joeynmt.helpers - delete models/snen_reverse_transformer/24000.ckpt\n","2021-10-09 12:52:56,234 - INFO - joeynmt.training - Example #0\n","2021-10-09 12:52:56,234 - INFO - joeynmt.training - \tSource: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - \tReference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - \tHypothesis: A husband or a woman who attends in the family is a child with old age may be able to be a baby from the baby and their children .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - Example #1\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - \tSource: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - \tReference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - \tHypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his strength for those who are perfect to him . ” ( 2 Chron . 16 : 9 ) So we can be confident that all we are doing Jehovah ’ s ‘ clean ’ s heart ’ without . — 1 Tim . 1 : 5 ; 1 Cor . 1 : 58 .\n","2021-10-09 12:52:56,235 - INFO - joeynmt.training - Example #2\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tSource: 34 : 10 .\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tReference: 34 : 10 .\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tHypothesis: 34 : 10 .\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - Example #3\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tSource: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri .\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tReference: We returned to the United States .\n","2021-10-09 12:52:56,236 - INFO - joeynmt.training - \tHypothesis: However , three years of us in Africa , we returned to the United States to make family interests .\n","2021-10-09 12:52:56,237 - INFO - joeynmt.training - Validation result (greedy) at epoch 2, step 27000: bleu: 30.32, loss: 53129.0273, ppl: 6.3193, duration: 52.4515s\n","2021-10-09 12:53:31,615 - INFO - joeynmt.training - Epoch 2, Step: 27100, Batch Loss: 2.085071, Tokens per Sec: 4193, Lr: 0.000300\n","2021-10-09 12:54:07,113 - INFO - joeynmt.training - Epoch 2, Step: 27200, Batch Loss: 2.061354, Tokens per Sec: 4278, Lr: 0.000300\n","2021-10-09 12:54:30,577 - INFO - joeynmt.training - Epoch 2: total training loss 30356.50\n","2021-10-09 12:54:30,577 - INFO - joeynmt.training - Training ended after 2 epochs.\n","2021-10-09 12:54:30,577 - INFO - joeynmt.training - Best validation result (greedy) at step 27000: 6.32 ppl.\n","2021-10-09 12:54:30,600 - INFO - joeynmt.prediction - Process device: cuda, n_gpu: 1, batch_size per device: 3600\n","2021-10-09 12:54:30,600 - INFO - joeynmt.prediction - Loading model from models/snen_reverse_transformer/27000.ckpt\n","2021-10-09 12:54:30,811 - INFO - joeynmt.model - Building an encoder-decoder model...\n","2021-10-09 12:54:31,066 - INFO - joeynmt.model - Enc-dec model built.\n","2021-10-09 12:54:31,133 - INFO - joeynmt.prediction - Decoding on dev set (data/snen/dev.bpe.en)...\n","2021-10-09 12:55:57,931 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:55:57,931 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:55:57,931 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:55:57,938 - INFO - joeynmt.prediction - dev bleu[13a]: 28.69 [Beam search decoding with beam size = 5 and alpha = 1.0]\n","2021-10-09 12:55:57,939 - INFO - joeynmt.prediction - Translations saved to: models/snen_reverse_transformer/00027000.hyps.dev\n","2021-10-09 12:55:57,939 - INFO - joeynmt.prediction - Decoding on test set (data/snen/test.bpe.en)...\n","2021-10-09 12:58:19,438 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 12:58:19,438 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 12:58:19,438 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 12:58:19,452 - INFO - joeynmt.prediction - test bleu[13a]: 32.31 [Beam search decoding with beam size = 5 and alpha = 1.0]\n","2021-10-09 12:58:19,454 - INFO - joeynmt.prediction - Translations saved to: models/snen_reverse_transformer/00027000.hyps.test\n"]}]},{"cell_type":"code","metadata":{"id":"MBoDS09JM807"},"source":["# Copy the created models from the notebook storage to google drive for persistant storage \n","!cp -r joeynmt/models/${tgt}${src}_reverse_transformer/* \"/content/drive/MyDrive/masakhane/sn-en-baseline\""],"execution_count":null,"outputs":[]},{"cell_type":"code","metadata":{"id":"n94wlrCjVc17","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1633785823784,"user_tz":-120,"elapsed":426,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"d8a2049f-53af-4bd0-b8ee-64b10667d00a"},"source":["# Output our validation accuracy\n","! cat \"/content/drive/MyDrive/masakhane/sn-en-baseline/validations.txt\""],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Steps: 1000\tLoss: 124557.21094\tPPL: 75.35435\tbleu: 1.29052\tLR: 0.00030000\t*\n","Steps: 2000\tLoss: 109178.89062\tPPL: 44.19297\tbleu: 3.56178\tLR: 0.00030000\t*\n","Steps: 3000\tLoss: 98195.44531\tPPL: 30.18769\tbleu: 8.23560\tLR: 0.00030000\t*\n","Steps: 4000\tLoss: 90816.25781\tPPL: 23.36812\tbleu: 10.16057\tLR: 0.00030000\t*\n","Steps: 5000\tLoss: 85376.87500\tPPL: 19.34866\tbleu: 12.27505\tLR: 0.00030000\t*\n","Steps: 6000\tLoss: 81222.75781\tPPL: 16.75126\tbleu: 13.51794\tLR: 0.00030000\t*\n","Steps: 7000\tLoss: 77519.04688\tPPL: 14.73097\tbleu: 16.05029\tLR: 0.00030000\t*\n","Steps: 8000\tLoss: 74685.28906\tPPL: 13.35137\tbleu: 17.13591\tLR: 0.00030000\t*\n","Steps: 9000\tLoss: 72094.25781\tPPL: 12.20333\tbleu: 18.98226\tLR: 0.00030000\t*\n","Steps: 10000\tLoss: 70140.50000\tPPL: 11.40341\tbleu: 20.38207\tLR: 0.00030000\t*\n","Steps: 11000\tLoss: 68007.14062\tPPL: 10.58972\tbleu: 21.25755\tLR: 0.00030000\t*\n","Steps: 12000\tLoss: 66288.57031\tPPL: 9.97667\tbleu: 22.91710\tLR: 0.00030000\t*\n","Steps: 13000\tLoss: 64858.72266\tPPL: 9.49374\tbleu: 23.56431\tLR: 0.00030000\t*\n","Steps: 14000\tLoss: 63373.39062\tPPL: 9.01681\tbleu: 24.37476\tLR: 0.00030000\t*\n","Steps: 15000\tLoss: 62393.19531\tPPL: 8.71527\tbleu: 24.98249\tLR: 0.00030000\t*\n","Steps: 16000\tLoss: 61200.83594\tPPL: 8.36203\tbleu: 25.47115\tLR: 0.00030000\t*\n","Steps: 17000\tLoss: 60173.83594\tPPL: 8.06928\tbleu: 26.07269\tLR: 0.00030000\t*\n","Steps: 18000\tLoss: 59267.05859\tPPL: 7.81933\tbleu: 26.64978\tLR: 0.00030000\t*\n","Steps: 19000\tLoss: 58393.38672\tPPL: 7.58583\tbleu: 26.54915\tLR: 0.00030000\t*\n","Steps: 20000\tLoss: 57597.96094\tPPL: 7.37931\tbleu: 27.60620\tLR: 0.00030000\t*\n","Steps: 21000\tLoss: 56684.15625\tPPL: 7.14899\tbleu: 27.62866\tLR: 0.00030000\t*\n","Steps: 22000\tLoss: 56058.71094\tPPL: 6.99550\tbleu: 28.40451\tLR: 0.00030000\t*\n","Steps: 23000\tLoss: 55747.76953\tPPL: 6.92043\tbleu: 28.74283\tLR: 0.00030000\t*\n","Steps: 24000\tLoss: 54921.59766\tPPL: 6.72484\tbleu: 28.86502\tLR: 0.00030000\t*\n","Steps: 25000\tLoss: 54217.17578\tPPL: 6.56246\tbleu: 29.50662\tLR: 0.00030000\t*\n","Steps: 26000\tLoss: 53581.72656\tPPL: 6.41933\tbleu: 29.94442\tLR: 0.00030000\t*\n","Steps: 27000\tLoss: 53129.02734\tPPL: 6.31928\tbleu: 30.31836\tLR: 0.00030000\t*\n"]}]},{"cell_type":"code","metadata":{"id":"66WhRE9lIhoD","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1633786082817,"user_tz":-120,"elapsed":238216,"user":{"displayName":"","photoUrl":"","userId":""}},"outputId":"025eae1c-1c49-47c4-b4ec-9f4ff5df7c1a"},"source":["# Test our model\n","! cd joeynmt; python3 -m joeynmt test \"/content/drive/MyDrive/masakhane/sn-en-baseline/config.yaml\""],"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["2021-10-09 13:24:11,483 - INFO - root - Hello! This is Joey-NMT (version 1.3).\n","2021-10-09 13:24:11,484 - INFO - joeynmt.data - Building vocabulary...\n","2021-10-09 13:24:11,792 - INFO - joeynmt.data - Loading dev data...\n","2021-10-09 13:24:11,818 - INFO - joeynmt.data - Loading test data...\n","2021-10-09 13:24:11,881 - INFO - joeynmt.data - Data loaded.\n","2021-10-09 13:24:11,906 - INFO - joeynmt.prediction - Process device: cuda, n_gpu: 1, batch_size per device: 3600\n","2021-10-09 13:24:11,906 - INFO - joeynmt.prediction - Loading model from models/snen_reverse_transformer/latest.ckpt\n","2021-10-09 13:24:14,409 - INFO - joeynmt.model - Building an encoder-decoder model...\n","2021-10-09 13:24:14,670 - INFO - joeynmt.model - Enc-dec model built.\n","2021-10-09 13:24:14,757 - INFO - joeynmt.prediction - Decoding on dev set (data/snen/dev.bpe.en)...\n","2021-10-09 13:25:40,874 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 13:25:40,875 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 13:25:40,875 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 13:25:40,879 - INFO - joeynmt.prediction - dev bleu[13a]: 28.69 [Beam search decoding with beam size = 5 and alpha = 1.0]\n","2021-10-09 13:25:40,880 - INFO - joeynmt.prediction - Decoding on test set (data/snen/test.bpe.en)...\n","2021-10-09 13:28:01,562 - WARNING - sacrebleu - That's 100 lines that end in a tokenized period ('.')\n","2021-10-09 13:28:01,563 - WARNING - sacrebleu - It looks like you forgot to detokenize your test data, which may hurt your score.\n","2021-10-09 13:28:01,563 - WARNING - sacrebleu - If you insist your data is detokenized, or don't care, you can suppress this message with the `force` parameter.\n","2021-10-09 13:28:01,576 - INFO - joeynmt.prediction - test bleu[13a]: 32.31 [Beam search decoding with beam size = 5 and alpha = 1.0]\n"]}]},{"cell_type":"code","metadata":{"id":"zfvjPGSGHAEP"},"source":[""],"execution_count":null,"outputs":[]}]} \ No newline at end of file diff --git a/benchmarks/sn-en - Copy/jw300-baseline/README.md b/benchmarks/sn-en - Copy/jw300-baseline/README.md new file mode 100644 index 0000000..6ab47ae --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/README.md @@ -0,0 +1,39 @@ +# Shona to English + +Author: Mchechesi Innocent Amos + +## Data + + - The JW300 English - Shona. + +## Model + + - Default Masakhane Transformer translation model. + - The model https://drive.google.com/drive/folders/1ZUTwx7hnPZGb3DCrVQsEOPsXOChVD1Jz?usp=sharing + +## Analysis + +Example #0 +Source: Murume kana kuti mukadzi paanopinda mumhuri inotova nevana nechekare zvingamuomera kubva angoti gedye - gedye nevana ivavo . +Reference: When a stepparent joins the family , the emotional attachment to the children may not be fully formed . +Hypothesis: A husband or a woman who attends in the family is a child with old age may be able to be a baby from the baby and their children . + +Example #1 +Source: Bhaibheri rinoti : “ Maziso ake [ Jehovha ] anotarira - tarira panyika pose kuti aratidze simba rake nokuda kwevaya vane mwoyo wakakwana kwaari . ” ( 2 Mak . 16 : 9 ) Saka tinogona kuva nechivimbo chokuti zvose zvatinoitira Jehovha ‘ nemwoyo wakachena ’ hazvisi pasina . — 1 Tim . 1 : 5 ; 1 VaK . 15 : 58 . +Reference: The Bible says : “ The eyes of Jehovah are roving about through all the earth to show his strength in behalf of those whose heart is complete toward him . ” ( 2 Chron . 16 : 9 ) Therefore , we can have absolute confidence that what we do for Jehovah “ out of a clean heart ” is never in vain. — 1 Tim . 1 : 5 ; 1 Cor . 15 : 58 . +Hypothesis: The Bible says : “ His eyes [ Jehovah ] looks to the earth to show his strength for those who are perfect to him . ” ( 2 Chron . 16 : 9 ) So we can be confident that all we are doing Jehovah ’ s ‘ clean ’ s heart ’ without . — 1 Tim . 1 : 5 ; 1 Cor . 1 : 58 . + +Example #2 +Source: 34 : 10 . +Reference: 34 : 10 . +Hypothesis: 34 : 10 . + +Example #3 +Source: Zvisinei , papera makore matatu nehafu tiri muAfrica , takadzokera kuUnited States kuti tinoita zvemhuri . +Reference: We returned to the United States . +Hypothesis: However , three years of us in Africa , we returned to the United States to make family interests . + + +# Results + - BLEU dev : 28.69 + - BLEU test : 32.31 diff --git a/benchmarks/sn-en - Copy/jw300-baseline/bpe.codes.4000 b/benchmarks/sn-en - Copy/jw300-baseline/bpe.codes.4000 new file mode 100644 index 0000000..a9942f6 --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/bpe.codes.4000 @@ -0,0 +1,4001 @@ +#version: 0.2 +a n +k u +i n +t h +a k +a r +e r +i r +c h +d z +z v +a t +e n +i s +o n +i t +m u +o r +th e +a m +u r +e s +e d +a s +ku t +o u +t o +ak a +v a +w a +h a +o f +r e +in g +n o +i m +h o +w a +ir a +i k +kut i +e r +an g +v a +an d +e s +u n +n e +o s +an a +i s +o n +i n +w e +o m +a l +i dz +r o +a t +t i +e m +i l +e l +in o +v an +v e +d a +ku r +a n +o r +y e +J e +h u +u m +p a +e t +ar i +e n +Je ho +th at +u s +l e +ch i +in g +w e +a i +h e +l y +a p +d i +a b +y o +am b +th e +it a +ir i +a c +i b +s e +u ye +ku n +at i +h a +is a +er e +e v +t r +en g +m a +e c +ik a +i c +un g +os e +ak e +k w +er a +ang a +y a +i g +a l +ar e +o d +w h +mu n +r a +r is +i v +an d +y e +s h +o k +u s +ur a +a v +w ari +er i +p e +o ku +f or +l d +im b +u k +n d +an o +it h +i p +a g +l o +a dz +h is +u t +c on +u va +u dz +u p +t s +i d +C h +s t +y o +J es +i t +M wari +w an +er s +ak at +a ch +v ha +idz a +zv in +o p +e k +b e +Jeho va +Jeho vha +Jehova h +ir o +ou r +or e +zv o +u d +b e +ak a +wa s +on a +G od +w ith +a s +h e +en t +l e +en d +f u +w or +w o +ha t +no t +c e +zv i +f an +a d +n a +ati on +ak anga +an o +e x +o l +r es +T he +ar o +yo u +v aka +k ana +p ar +on g +ak an +th er +k wa +p ro +il l +en y +e dz +van hu +zv a +ha ve +o t +as i +im we +ar a +v er +kur u +no ku +ou ld +l i +d o +c om +on e +mu s +w ill +s a +on s +n es +ou t +b at +Z v +d o +am a +r i +b y +d a +i r +p er +am we +t ed +mu m +w o +ro m +ou n +g o +in e +zv aka +t o +ir wa +an s +s u +ris t +ig h +s p +in a +ib le +y a +u t +f rom +s o +h ur +ak as +c h +the ir +er o +t a +or o +f or +s i +van o +n g +f ung +zv ino +amb a +e d +the y +al l +d e +fan ira +ak ar +w ere +B ha +imb a +or a +it y +en z +k o +u l +d i +Jes u +Jes us +zv o +h an +ch in +wh o +u no +p l +d is +ch a +K rist +as a +P a +m an +t s +h eri +en t +c an +th is +Ch ris +B ible +h i +Bha ib +Bhaib heri +Krist u +ho ko +eny u +s o +V a +ku p +a r +f f +om e +e i +t im +d aro +ti on +g ona +t h +t er +is o +J o +a z +zvin hu +e p +q u +y aka +ne m +mun hu +wan da +i va +ing s +at e +b v +ou g +ok wa +an e +ku s +s e +h ere +w hat +r u +h w +h and +1 0 +k we +1 5 +ha d +1 2 +v o +m e +I s +amb o +av o +1 9 +n di +v er +w ana +al ly +1 1 +a d +uk u +W h +s er +s el +p r +b h +ne zv +kun y +c o +z o +a ura +y our +ur o +z i +op le +c l +akan aka +1 4 +W hat +i y +in d +okwa di +ir ira +va p +c i +f e +it i +t er +a i +is wa +ou s +p o +mu r +I n +ur e +y s +v as +t e +the m +H o +h um +se i +en da +em b +g e +pe ople +1 3 +m as +ang e +ak o +b va +e ar +w is +b ec +am e +ch o +m b +ha s +ku va +at i +e l +akat i +Chris ti +s i +mum we +p re +en ce +ir e +hi m +ch okwadi +g re +ku no +en ts +igh t +e t +ek a +us e +ang u +y ika +edz a +m y +ak ore +sp ir +mu dz +d u +v e +ab out +M at +et e +an i +f e +m e +ku ita +h el +ch o +uk a +wh en +w ould +1 7 +K u +ik o +p or +zvi kuru +ag e +1 6 +b asa +tim e +da y +M u +es s +w ar +ku dz +h ar +es s +em a +fu l +m o +w n +ch it +ma y +um b +b ut +s tr +c r +at idz +at idza +i z +om b +eng e +m at +eng a +t ing +zv i +eng et +ach o +p as +d s +ng uva +a va +at ed +in d +ur wa +a in +p res +ha p +v amwe +s es +nes s +ch ai +z iva +oug h +1 9 +N d +wo yo +w s +di d +fu ura +on g +en e +b l +v ar +mus oro +is h +er ek +imb o +r ino +d es +a h +bat s +li fe +ho w +on i +s t +2 0 +k no +i ve +r w +m ar +mu t +ab le +is ira +1 8 +j i +es e +udz a +e f +un z +z uva +Ho w +T h +u c +A si +un d +up u +th ers +wa y +m ore +b o +os t +ch en +el y +t ur +re c +il l +dz i +v at +man y +adz a +zv is +th ose +ec t +Is ra +re l +g a +ak ak +do m +s ome +a f +ku sh +p a +mudz im +N e +on z +z iv +a y +j o +ch e +il d +es t +u e +h am +H e +is i +m ent +ai va +mu k +er era +f a +ar iro +h er +al so +zv imbo +udz i +0 0 +a wo +i a +I t +kun a +is e +it wa +ik e +um e +dz idz +g a +W it +be en +an ce +ar s +p os +ac e +akan y +at a +ap ost +un y +ar ira +i es +i wa +su ch +il y +ic e +ati ons +m is +enz an +p an +a use +it u +g r +o k +kw aka +an t +it ika +v ana +h in +nes ses +b et +2 4 +n o +om a +s ai +r in +p h +h wa +v ari +n h +kut anga +ac c +A n +H e +ch ir +an y +ch ik +os ha +ing a +us t +ch ino +2 1 +l l +u g +fung a +u p +up enyu +ar y +o f +m an +p o +t i +v ed +th ere +hur i +f ir +2 2 +a chi +ch ete +T he +o mu +um a +w ake +u l +v i +it s +ong a +l es +in ei +o ther +Z vap +p le +i on +v es +it e +Zvap upu +pa musoro +t ino +Wit nesses +P et +d e +ip a +yo ku +mas hoko +K ana +v ake +per s +ic h +al l +is t +ev er +g adz +co ur +noku da +K ut +m ambo +he ar +go od +zvo zvo +mu ts +idz o +ac h +th an +dz aka +am ir +it i +eny ika +w er +kur a +i f +wor k +os t +W e +ti c +at s +dz era +ok a +hel p +bats ira +b r +p asi +id e +Pa ul +N o +con t +wor ld +i c +d h +ang an +sai d +w i +y ing +sh ould +m in +v ika +v h +ev en +B ut +oun d +f am +or d +th ing +mudzim u +ar ema +ung ano +ch is +enzan iso +hin ji +i f +g ara +th ings +at t +en d +b el +w aka +i d +ed u +Jo h +pe dz +Pa uro +i ans +b erek +e p +n ed +i p +dz ino +J er +S e +n z +re n +v iri +on d +k ing +Joh n +er wa +Christi an +do es +t e +th ese +M ar +in to +lo ve +v ing +f ur +ild ren +in i +fu l +sel f +adz i +or wa +ik i +eng uva +a ya +ex am +ing dom +an s +le ar +i ch +T his +el l +wh ich +J ud +on y +re as +kun z +k ed +m ake +c c +s al +at es +mu ch +2 3 +ye ars +no kuti +A k +k osha +mun a +ur i +Wh en +ou s +s ig +m ak +T im +zv e +zv iri +c er +ap o +c ould +dz e +m woyo +ti v +The y +re m +ti ons +W or +es a +sh ip +S at +re f +an y +d uku +b ro +at er +ur ama +n ing +ik an +in c +em o +ch ildren +n y +n or +p f +s he +ud o +p ra +va chi +i ous +kur u +g iv +a ve +Chris t +con s +ku mb +ff er +enz ira +lo w +i ye +oug h +zva Jehovha +idz wa +it ed +ip i +d ec +com m +w i +K uny +an da +res p +Christi ans +am ata +ear th +on do +r aka +zv oku +chin hu +zv ose +ab asa +idz i +ku d +di c +v ak +o d +spir itu +ma g +v akanga +U mambo +on al +M un +p ane +h i +h aka +F or +ho m +G en +s ur +O n +on ly +re g +ch aka +n am +dis c +bec ause +th r +ab a +iy i +o ver +hand isa +ku f +om ana +at ino +zv e +t en +th er +or in +fung wa +o thers +b ud +th en +sa ys +h we +ne w +kut aura +y acho +fir st +I f +w r +in da +mu g +on zi +i al +gre g +2 5 +K ingdom +nd oku +Mat the +con greg +Matthe w +chi Kristu +fam ily +2 8 +va i +v ose +kuny ange +A s +hur e +fan ana +Mat e +ch oku +com e +ou p +Jo han +l iv +f ac +iti es +nd e +be ing +si on +S t +c oun +p am +we ver +h ama +Y o +as t +van e +ut s +m on +kut s +zv ir +i ya +idz ira +k e +zvin o +tr y +v o +Wh y +lo w +y ake +l ike +P ro +A f +chi p +Zv is +b u +Kuny ange +is arema +p ur +al s +ev era +R e +ik ana +mus t +t y +ma de +I n +amb udz +c ar +h u +zv akanaka +re e +at h +b re +U n +or e +st ud +ic al +ne ed +f ol +ang ano +pa ku +mun yika +kut enda +ev el +vaka wanda +ya ya +spir it +fa ith +e m +v akat +ut a +chen a +i zvi +w oku +hap p +Yo u +o b +i zvo +ur ira +s ho +s om +o ver +f l +exam ple +Zvis inei +he av +v id +van ot +ch enget +ur u +or atidza +ab h +mu f +w ho +en c +dz ose +th ough +v is +j ust +ev er +o dz +a u +0 00 +at u +Isra eri +v aka +ok o +is h +kun e +ak omana +or y +ang uva +or i +cr ip +us ed +in o +ach ing +il e +bel i +kur udz +t ake +wa cho +bv unz +ar ama +s imba +g are +a y +A b +in ter +w aro +Gen es +por t +el l +m it +ch imwe +se e +no w +aka p +rel ig +p fungwa +kwa zvo +m ost +o wn +berek i +s up +3 0 +S aka +i yo +Ch i +on es +na Mwari +af ter +m en +ch iri +zv it +chin j +ac k +ik idza +S a +chai zvo +per i +we dzera +spiritu al +k s +be g +kno w +V an +s in +ir ana +zv ip +M os +f o +h us +An d +be f +kw em +ta in +th y +pr om +y ose +sel ves +a in +P sal +ver y +aka ita +z a +iti on +an ya +ik ira +as hoko +s va +f el +for m +congreg ation +as e +tr ue +p akati +A l +kun amata +at ing +va Kristu +P isarema +u yo +va vo +ti ve +in v +e erera +A r +zva zvo +ku m +z ana +n enzira +ku par +wor ds +Psal m +wa ys +n yika +in os +bef ore +edz era +bec ome +ut h +apost ora +r wa +ra Mwari +c re +mur ume +ha u +d uc +Z vaka +r ake +kush and +ikan wa +p u +ta ura +par ents +po in +akar urama +vi e +P as +u ch +s pe +er ed +t is +nezv e +s y +en ti +g u +R oma +M um +nz ira +und er +ku k +w om +dz a +ur ing +g ive +da i +1 - +d ya +2 6 +g uva +wh ere +re ad +dz imwe +l a +kur um +v imb +T ino +f a +r o +C . +de ath +t ak +y oun +f ai +es t +aka wanda +chen j +ta in +p amwe +v en +w ell +som e +2 9 +Va K +bet s +Tim o +an c +Pet er +wis isa +J os +ul t +z ita +in y +be dzi +kup fuura +c ent +a ther +ough t +ku va +ga much +or s +A no +Jer us +D z +r igh +2 7 +cl ud +emb er +f u +uk o +z hinji +pe d +iy ana +war d +pedz isira +st and +to o +m er +A N +bat an +hear t +Zv ir +N oku +il d +un e +ano ther +ing ap +zv imwe +er u +M us +s ed +thr ough +M ag +Ne w +i yo +2 0 +kw o +S hoko +t wo +fan an +ar is +e k +v ene +mu ch +yo kuti +an isa +ti chi +cons id +v i +C ho +no mu +o ff +em ent +a m +an ang +ar udza +Jud ha +U ye +fur ikidza +ik wa +ho p +p ri +C on +han da +va dzidz +S o +i ed +hel p +Pet ro +gre at +R om +bh o +k ind +ic a +o va +im a +c all +ku daro +al ity +p fuura +va bereki +ai zo +bv um +ye du +g an +z wa +wi th +wan akomana +3 3 +T hat +tim es +C orin +h ou +i l +pers on +va ch +to day +n ame +g et +A c +ch i +nd aka +kun g +p ec +l and +min is +zvaka wanda +ev o +un ung +I sa +crip tur +19 9 +b s +kw ake +kurum idza +g e +mu kuru +s im +r we +ped yo +uk e +ang ariro +zv ik +tr uth +u ally +na Jehovha +et s +3 1 +u ya +m akore +cont in +hum iri +m ap +kno w +f ound +n er +m ight +f ara +y em +disc ip +v ang +bo ok +iyo yo +qu es +G re +ku bva +mar ri +v ice +o ld +hum an +S omu +On e +S o +h im +pra y +ti ll +ai zvozvo +m il +e ach +f ri +fai th +dz a +ent ly +m or +fol low +mun e +l ed +oup enyu +end e +sa y +it ira +di wa +end eka +Chi i +par t +kus v +z ar +atidz wa +w ose +ne ed +ku da +ang wa +nem haka +f in +Corin th +ung am +l it +p ose +ain st +y u +N di +om o +t ly +akat anga +r y +th in +cent ur +t al +ex peri +youn g +jo y +up i +bh uku +ib v +en h +Corinth ians +o l +so ci +f un +stud y +and s +ou t +akas iyana +pos s +p anguva +cho kuti +M a +go ver +em s +hom a +es o +edz o +z ano +N W +He bre +e g +ug h +fe el +Kut i +re ad +ang o +zvi chi +v ura +v akar +um o +sh am +com pl +He bh +t ers +Hebh eru +f ind +kur amba +ag ainst +B aba +D av +kurudz ira +i chi +pa po +udz idz +at so +pl ace +ok u +va kuru +Wor d +ec tion +ang u +chinj a +apost le +T o +le d +va ya +ac t +S criptur +l ess +el d +is ina +h uno +et y +rec e +h ondo +L uke +onz ero +Van hu +ot i +T o +h er +Isra el +et so +us tr +R uka +lo c +N ei +ver bs +im port +g en +ai ah +g ar +bro thers +zvaka daro +Dav id +resp on +na ye +os h +ex pl +Isa ya +ar d +Sat ani +r ed +t em +se c +a ff +Is aiah +ful ly +a urwa +th s +him self +y avo +D o +Zvir evo +adz o +Ho wever +we du +mun y +3 2 +H a +kup furikidza +i ons +Pro verbs +Ac ts +wor d +az hinji +g o +en ed +ho me +V amwe +Ab ra +ar isira +Cho kwa +r udo +es i +m ir +pa chena +ke ep +r ight +adz wa +er er +r imwe +ku ona +v akas +is t +righ te +s ame +ingap eri +S he +end ero +s on +en i +w angu +g um +ip o +W at +Sat an +it es +gadz ir +il ity +omb or +ne ver +bat a +ar ly +p ly +c le +of ten +as ina +Somu enzaniso +g l +Mag waro +M ut +omb o +ang arira +am u +th em +akat aura +in clud +d ing +up on +kur i +su b +y akanga +me ans +pas hure +va l +S ome +ro te +at ur +ir e +p le +n av +U no +u al +t le +n zvimbo +w rote +ar udz +gamuch ira +ever y +kun ge +know led +tr ib +ti c +no mumwe +dz o +f adza +sp ec +vh id +u r +A t +a k +b oka +l ar +ong or +ar e +s ac +T here +cour se +an zvi +en s +tr ans +ot h +w ira +as ing +wh y +m i +c ame +akas imba +pre ci +d em +Johan i +vas ina +3 4 +ambudz iko +f amba +d el +kudz idza +b as +I zvi +ish ed +r am +va iva +o cc +h wo +3 5 +K us +p ut +bec ame +M abasa +4 0 +hop e +I ye +und er +kw ete +D ha +y ou +op e +rel ati +ser ve +le t +nd o +iv ed +Timo thy +acc ep +Mate u +se t +v en +p ana +da ys +P ar +m h +kusv ikira +do wn +ano t +am ong +ser van +b ha +vadzidz i +zv ai +anang ura +n ou +I N +re at +mu enzaniso +udzidz iso +lo g +ik irwa +ap pro +o ur +end s +us a +Af ter +call ed +ir o +cour ag +dz idza +Mate o +in or +vie w +me et +ra cho +s how +bv uma +as s +p at +b ur +ano ti +vas ing +zvoku dya +enz i +d enga +zvo kuti +pu bl +b en +p oku +Dha vhid +Dhavhid hi +ung amir +or d +g ore +faith ful +on om +u chi +d et +b ack +imb isa +ku ziva +wor ship +zar urwa +v amba +p i +in ess +si y +i ah +lear n +s l +na yo +Chokwa di +wi fe +ku ch +akak wana +F ather +is isa +on e +ne vanhu +bets era +re qu +r iri +centur y +d ir +R evel +Revel ation +muts a +I s +ku re +wan t +ong wa +3 7 +ou nd +ne ws +ore va +Un ited +zv iv +ye ar +a it +Zvaka zarurwa +giv en +vap o +d uring +Mum we +ef ore +import ant +pro p +an enge +ec ted +s en +mu viri +hw ake +z ira +s till +st and +m ari +sh and +ri f +abh uku +bv ira +a way +iz ed +per f +amir iro +con f +kw oku +E . +kushand isa +pro f +ma in +ay iro +i zvozvo +di ffer +li ve +mun guva +tiv i +ma zuva +p ol +mu chi +nh asi +to ld +akany ora +ungam irira +ziv o +n avo +ben ef +r it +w ako +wis e +b a +mu p +on ed +an h +w em +mut emo +l ater +o m +Johan e +do ing +ung wa +dz wa +e as +kwa vo +an os +k azhinji +mudzim ai +knowled ge +wr it +y i +C om +A s +w it +Rom ans +ap pe +ar r +t aka +ro w +fanan idzo +han ya +m ind +beg an +ex pres +in enge +o dzera +a is +a ita +V er +zv id +p ano +he al +5 0 +e ad +por t +ing e +h on +wh ile +B y +ha ana +them selves +g ra +f ill +l d +ku z +ad d +k are +bl ess +ho ly +ibv unz +e ve +ny ore +edz wa +u yu +ap a +wa Mwari +r an +e zvinhu +P ane +Af r +zv em +b ap +ino t +o be +erer ano +ip p +y ai +muf aro +inv ol +ziv isa +pe ace +am ene +N aizvozvo +ch ar +l ong +fe el +K up +pr ac +enget era +K ur +w ir +Jer em +pre aching +h or +p ris +ne ma +ch ild +K U +s hoko +minis try +mag az +ul ar +kwe du +w er +sham wari +pedz a +iv irira +L o +ser vice +idz isa +ga ve +po wer +ord ing +str uc +with out +ti ce +wa vo +liv ing +in di +Genes is +tur n +E x +s m +c a +lo y +is ed +is ing +im i +kus vika +ho wever +y p +th or +es wa +c or +am es +mus ha +oun t +ch ose +ch ap +v angu +ur am +un da +en ly +iv er +W ith +cho ol +i an +ano fanira +noku s +vano fanira +st ar +dz oku +idz irwa +C. E. +siy ana +in t +mb eri +te ach +O n +kumb ira +hwa Mwari +w ara +i el +ham wari +an or +k a +pro ph +g ir +Va Roma +z ara +ord er +yo ur +kunz wisisa +n yaya +hou se +ano gona +l ik +hand iswa +ts ika +F ir +tino fanira +ku wana +bud irira +Nd aka +un hu +ff ic +b lo +Scriptur es +VaK or +ne i +fa ther +th ree +1 4 +mu upenyu +A R +as t +ab v +e f +dz iri +Zv ino +B h +wa l +chi i +n umb +mu Bhaibheri +Th en +hur u +m wana +ung u +s ou +enget ero +w at +f t +t ariro +I m +t ik +w ed +muk adzi +G er +l angu +ang ana +var ume +g es +ne zva +s ol +fac t +s ing +d ini +van os +cr ib +emb a +b or +ch ake +hus b +zvaka ipa +kur arama +chenget a +bvunz a +b oth +h il +g n +relig ious +zvis ina +muk ati +va Israeri +sel f +cha va +um ende +at ong +H is +y s +r wo +iz e +fu urira +M any +it ud +discip les +ne vamwe +K ing +m ents +we en +str eng +d y +zv at +ati ve +s ure +B e +b er +akany orwa +1 0 +mak ing +g uru +E z +atidz ira +amb eri +St ates +ti z +H ere +vimb ika +kup a +in st +ag es +sig n +it o +a zve +id ence +pas ina +az uva +E R +fan iri +es ts +um ira +en ing +b le +iv o +amb ira +di v +, 000 +ous ly +D e +M ambo +Y et +ati onal +G ir +Sa mu +ak o +T H +no kut +d evel +d en +M es +ano da +aka daro +mu ku +H ap +M y +Mos esi +ind e +su cc +ndi ye +Y es +A d +ever y +kun d +Jerus al +al ways +van enge +ro ku +zvo izvo +kur umb +p iwa +mo ther +et s +ind ura +nes imba +zv ar +M wanakomana +t ure +em p +zv akanga +to ok +Jerusal em +amb ura +c ity +i eri +ver enga +ha ving +stand ing +e ff +Hebre ws +sac rif +va chit +ur aya +enc es +as ked +an ci +zv adzi +ch ang +m huri +j eka +lo ok +f ut +ir c +Z va +bet ween +wa dz +s itu +Pas hure +O ur +van or +ne chi +amb e +J ames +ge ther +w ic +for t +emb eri +ex t +i wo +c an +su ffer +who m +chik onzero +ye uka +Nd ino +some thing +expl ain +on aka +ung a +dz ake +d er +Wor ld +zv ing +m abasa +ap preci +ut e +kw enguva +j ud +U ye +iv isa +as h +re ally +F r +we dzi +J ako +reas on +r uno +Jako bho +atidz o +it iro +pro vid +a th +mu sh +kw anisa +h wo +or gan +chik oro +zv atino +t iri +mu zana +f ar +u m +batan idza +v eng +we ya +wom an +marri age +v ic +con cer +ta urwa +T r +hum ans +it al +Se zvo +le ad +fel t +ang ar +zvaka ita +l ong +se zvo +Mun hu +h and +Isra el +servan ts +bl ems +us humiri +m amwe +o ga +ku batsira +pr inc +poss ible +a ir +re al +orin te +Jo b +wan isa +ut er +lit tle +in ted +rin onzi +chenj era +t or +Va Hebheru +omb a +ne c +pers onal +is v +indi vid +A po +end i +ur rec +e z +end ed +man kind +tr u +to gether +okwa zvo +akat s +Afr ica +C ol +zv ib +am ai +ziv ikanwa +se l +gen er +A mer +nd ino +p amberi +is iro +l ist +kur usa +ra Jehovha +w ond +dz avo +hap ana +dzaka wanda +en tion +19 8 +uter onom +l as +kur urama +A I +ano ita +ing ly +c irc +kunz wa +at ure +S on +kuru kura +for m +I k +E ven +va Mwari +a va +d ra +ai da +en courag +sig ira +fel low +r ose +u tion +it sva +iy oni +v era +e chi +v imba +numb er +Jerus arema +i ally +pro blems +chenj eri +thin k +fe w +y es +k ind +d ikanwa +to ward +ev edzera +mu ungano +fo od +E ur +res ult +am ira +Zv in +f i +mil li +L et +beli ev +ad h +ach it +P hil +A ll +consid er +ku ro +bo dy +sy st +M up +m ess +res urrec +S in +fut ure +ya Mwari +n er +ac tiv +ig h +vano da +hur umende +Th ese +relati on +f ace +poin t +han zvadzi +3 6 +ku enda +va viri +kur atidza +wom en +onz wa +y or +d u +it iko +P er +Mos es +ur ch +zvin etso +is m +ats ira +van op +husb and +chip i +liv es +di ffic +br ing +ik oku +ve chi +kno wn +ver eng +j us +relig ion +on ek +itud e +E f +princ ip +ich i +c are +3 9 +B ec +c lo +au thor +pro t +M ur +y am +Mun a +to wer +N o +d ev +at is +uno gona +ex p +ru tivi +angan isira +zvin e +sin ce +si on +pa p +ch ing +ec ts +E ng +g uma +akar atidza +pi one +ag ain +S u +zv ake +ro kuti +s in +con duc +wa yo +av ira +giv ing +r us +kunz e +e ep +ibvunz o +experi ence +mu ta +C. E +ne va +o or +ai z +N g +E ph +ex c +C H +as ati +as k +akak odzera +as ha +s or +ho ld +Wat ch +blo od +bu da +ik oko +chin angwa +pray er +h ist +n ations +av o +ach iti +perf ect +pr iv +kush anda +happ y +D o +respon s +akas h +ak ing +i papo +el s +amb o +c ul +F rom +mur i +er e +di ed +zo va +re p +ong o +differ ent +ha l +eld ers +4 5 +kw akanga +y ed +righte ous +of f +l ast +che chi +E n +ch ange +w ater +ham isa +bvunz o +VaK orinte +t in +cont ro +r ul +M uk +d one +meet ings +em ek +ino ti +read y +chit endero +ro pa +3 8 +i o +na Jesu +isv onaka +pur pose +ongor ora +contin u +ar udzi +iz ation +kuru kur +akar amba +le ft +e y +A K +y angu +need ed +heav en +er ing +y aiva +Watch tower +si a +pro b +zv idz +bet ter +ong i +n s +lear ned +Jo bho +ku mu +emb ers +mat er +w ent +Eph es +is ts +c ol +v oku +kut eerera +kw am +r on +ne chokwadi +5 - +ku chi +Ef eso +mun zvimbo +s ha +e ge +ye chiKristu +ic ation +r udzi +st o +v ako +zvino ita +yaka wanda +ham u +zvin os +E g +hw aka +ug are +ev il +um i +l ine +I R +coun sel +M ashoko +muts vene +muk a +L a +t re +no r +batan idzwa +iro zi +dz in +lo ving +O N +B . +sh ip +wa i +in ip +hap s +l et +mu no +fe ar +ref u +So ci +wis dom +L ord +f ine +udz wa +li c +os i +w ing +u fu +dec is +v edu +of ita +disc us +va ve +prac tic +e ful +can not +D Z +ph ys +ho man +chai zvoizvo +qu al +g ed +Y our +ques tions +R us +ous ness +choku ita +ir awo +pro v +pl ac +des crib +ind uro +T ho +pres ent +1 8 +ku funga +a wa +ok or +Gre ek +ear ly +kwa ari +ku itira +zv ak +l ing +dz edu +Th us +te aching +s chool +heav enly +va va +us ing +ugh t +at ely +s c +w isa +ham o +vano gona +o log +anc es +akan di +ti l +bap tiz +har a +v ir +A T +l ess +3 - +un a +zvin inip +syst em +wic ked +prop he +ma viri +tic le +as soci +a da +in es +E N +ung irira +wir irana +some one +N h +zv am +arudz o +kuno ita +se zva +kupar idza +D an +mat ter +20 0 +zv avo +vi ol +zo dzwa +ndi chi +f arira +Genes i +chin y +ha m +f re +h em +wa wo +ful fill +P e +ig n +fri ends +si ve +las ting +ai gona +y ako +re chi +wa r +we d +n ani +in fl +ro w +har d +help ed +va zhinji +ano inted +rino ti +ou th +uts a +det er +langu age +Gir iki +ungamir iri +hwe du +follow ing +dzidz isa +ar adza +Israel ites +pf uma +go ing +bha bh +t ro +p are +sh are +Y or +la w +tino gona +ar ticle +self - +b ad +a im +do c +relation ship +bro ther +Ez ek +y akati +4 4 +id ent +b aba +beli eve +az i +i cha +b ir +Noku daro +wis h +go vera +cer tain +end ing +U ng +wh e +ple as +zv and +en ted +contin ue +kud enga +in ed +ru gare +bat ira +zvininip isa +h wa +V aka +s k +i ther +it si +th ought +kur e +sp ok +ic k +your self +on eka +hw oku +anci ent +ok era +b est +kup inda +at o +ep t +dis i +akat endeka +ai fanira +Ch rist +s id +com pan +n e +situ ation +m embers +mu basa +mo ved +ch acho +Bec ause +N em +f al +Wh o +con d +requ ir +l ight +p inda +baptiz ed +ombor ero +y ira +ti f +Je ws +I S +B ro +go zi +sa ying +muta uro +kwaka ita +s em +kuno gona +proph ec +pa f +in dic +berek wa +Soci ety +mon ey +2 - +va it +im iro +i cho +pa in +n en +th us +he ad +an z +un til +me an +pan zvimbo +mu apostora +ye t +di a +ir wo +pos ition +r un +U N +O R +mess age +sup port +d ly +ser ving +va g +ye chi +ku zvi +kuru kuru +i m +p em +un ity +c ent +VaKor inde +re co +e yes +cl ose +Mar k +z or +vaka dzi +zvip ira +w ill +ne t +es pec +Z V +kut onga +dzidz iso +m vura +ma ererano +bat ana +j ect +vano ita +n ation +p and +6 0 +ek are +me an +w ero +ne x +inc reas +ano taura +v imbo +ma in +S h +c ase +ou b +Tim oti +Sin ce +y l +g uta +f ar +trans l +ab ly +ar ound +we chi +ch es +c e +ap fuura +en joy +or era +m wari +g if +espec ially +Abra ham +spe ak +in de +prof ita +sim il +A cc +com mun +d er +Ephes ians +im o +ndi zvo +va cha +ku sa +re du +ir ano +er c +em o +da m +di es +ach ir +ang o +er edza +m abhuku +pro duc +bats irwa +t ir +h igh +es ted +K w +4 2 +y isa +van y +r up +ku itwa +ang er +7 0 +ha b +c ause +lo ok +b lic +resp ect +al ong +w ers +p ic +br ought +ar iri +a yo +uk ama +ond edzera +tur ned +gover n +ye Bhaibheri +v ara +id e +c ap +Dan iel +sen se +in di +nex t +et i +angan isa +f ree +ans wer +mb iri +B rit +feel ings +va Jehovha +Yor k +ram akore +under stand +ser ved +att ention +kwa i +mu bvunzo +bor n +m s +ir ing +pan yika +I papo +akar e +tal k +V ano +Ger many +de ad +R ev +devel op +Eur ope +kw ose +Ch in +rece ived +k u +eng o +ir oro +ti on +des ire +zve chokwadi +em ents +Va Efeso +reg ar +A M +hi z +op a +le ad +infl u +on d +l ands +kwa Mwari +ir ai +wan e +tr av +ar ing +e chokwadi +l im +ent al +ch all +t or +our selves +el ess +mu ma +z os +tak en +a ur +ch at +avo id +kurumb ira +re ve +r ine +p ati +aka va +Mut emo +nd akanga +b ayiro +zvir okwazvo +need s +akak omba +par tic +ill ustr +zvi kurusa +h at +hwa vo +6 - +so on +kun go +mis angano +end er +zv okwadi +res s +aka pa +ku it +4 3 +sm all +inga ira +Al though +ist ers +y akat +sa w +priv il +con tr +st ates +it ing +dz em +an ts +O f +diffic ult +read ing +no mwoyo +B ab +mu duku +mun zira +w ell +va Judha +cer tain +su e +i we +y akanaka +heal th +nezv oku +ik u +Tho se +va cho +chip iri +tak ing +ha vana +com ing +akas vika +le g +pr os +iti ons +Hap ana +lear ly +enc ed +Re ad +i wayo +unung uko +pers on +gadz irira +u kur +cons ci +H ungu +t ing +7 - +pro ve +i ye +os s +A dam +en ess +o ffer +in spir +re al +ev eri +lik ely +r akanga +N enzira +ach ed +it s +im u +s ide +ru fu +ai ita +ag ona +n ight +tr ain +si ons +p ut +includ ing +ap poin +form ation +z e +wan zo +s aka +ro kutanga +iv ing +ques tion +ic an +kw at +G ar +C ath +mis sion +ap ar +La w +ol ic +ir iro +N guva +N yika +va duku +h igh +f ru +er n +or ig +ear th +adh iso +is ati +c ou +acc ount +C reat +marri ed +lit er +zvi kurukuru +ch et +wr ong +pl es +dz ine +z adz +l s +ch em +kun da +mu ra +kw ana +Su ch +G al +et ting +amir iyoni +S ol +imb o +fal se +et im +Zv ino +H ama +ku kuru +gum i +Ar e +atidz ika +n hau +fung o +conduc t +bh ir +Jos ep +se en +Wh ile +p li +contro l +ul arly +cl aim +C an +suffer ing +wan ted +m wanakomana +Creat or +de dic +tem ple +w and +ong o +ab l +im ambo +fung iro +To day +M e +tr ust +ad van +ad ise +spec ial +le m +it ical +Mus iki +zvaka itika +s ent +we dz +fol low +A m +noku kurumidza +va is +ti o +enti f +an n +sh or +an ok +T ru +b us +han u +fam il +c y +ar ds +obe di +H O +kur ira +op port +r ing +bud iswa +benef it +ku gara +hara unda +so kuti +mak es +vaka fa +4 1 +in s +Uye zve +No kuti +w ide +ach is +mor al +Ver enga +en jo +n ational +kudz a +ish am +zvino kosha +con ven +va l +s ing +el d +who le +ku chinja +ou p +ho sva +k new +Ch ir +Timo tio +kw and +in struc +pf upi +ter n +e ji +thin king +th ous +princip les +z ot +rece ive +no thing +um we +Ik oku +sim ply +an im +val u +ta ught +ic k +pas inei +cour age +P an +o ondo +invol ved +circ um +att itude +D han +nd iri +kuf amba +str ong +v em +t ine +respons ib +r a +kind ness +prov ide +bhabh atidzwa +kuts vaka +rem akore +bu ild +an wa +res ul +chi vi +er g +bv isa +gr oup +righte ousness +n enguva +mar udzi +il ed +ul ation +f av +S im +em era +Bab yl +ed uc +Con sid +war ira +Im we +B ib +div ine +L e +ib atsira +ay ira +van d +na zvo +Mu apostora +I no +Do es +ma j +TH E +Dhan ieri +m y +d oub +No w +f our +wis ana +wor ks +e qu +c al +en tr +jud g +m weya +ab erek +t able +r ai +prophe t +osh esa +zvin or +zvi cha +kun aka +is es +id ed +ach a +fun disi +wor ld +hu a +pos ed +d ar +wa g +v omu +en em +cl os +as ikana +U . +gre at +whe ther +occ as +ch ero +No t +Jos hua +u als +bets ero +akan zwa +Eg yp +van z +nokus ingaperi +hear d +amb iro +J ap +O r +L i +akan ak +B e +or osi +uno fanira +il li +zvino gona +Kut aura +Je wish +ig n +nec ess +Phil ipp +enh ema +ac t +s ons +follow ers +ex erc +S or +ony anya +k ingdom +as s +Bha bhir +va dz +prob lem +l y +acc ording +re por +pa ge +kudz idzisa +ab ility +ukur o +we wo +On a +C an +K un +Hebre w +mu Kristu +mat ters +um iri +ot a +wor k +sou l +r ap +hand i +ch akanga +certain ly +ar am +tr uc +ex pec +bat wa +kut ambudz +ha va +er y +Bhabhir oni +iv es +t a +d en +Wat ch +s atis +Jerem iah +b i +19 5 +ku g +P anguva +on ce +pa kutanga +aris ana +h un +ic es +reco gn +U p +mug umo +hal f +Sol om +se ka +am at +R u +ac tion +simil ar +ic s +dis tr +ot e +s vaka +I I +it ate +Consid er +mus i +ti es +s is +tr ies +com es +E S +rw oku +giv es +zv edu +d r +par adz +Solom on +us es +ever lasting +Zv i +pe ji +unz a +p es +ne zuva +lar ge +In ter +ne Zvapupu +N a +u cha +ne zvinhu +rw aka +bud isa +ref l +mo ve +bec om +p et +muny ori +in h +mater ial +kw ou +Zvin hu +In st +yaka zara +vakat endeka +p op +uk ira +prom ise +mb a +m enti +v iny +gadzir iro +deter min +az iv +sacrif ice +pa ch +W A +mas imba +bvum ira +Acc ording +zvino t +fung idzira +v ol +ts anangura +vh iki +ku ma +as ikirwa +kut arisira +D uring +v am +ts itsi +vas humiri +organ ization +zvaka dini +paf adzo +d on +atong er +fu ll +dze Bhaibheri +van a +magaz ini +coun try +ziv i +te ach +d om +c es +bas ed +B o +g ura +K ud +D he +ya Jehovha +resurrec tion +U R +se con +ye wo +ho l +To wer +apost les +Sor om +in j +ino gona +aka ona +Sorom oni +se ver +zvis homa +M ay +ther efore +dz i +G od +individ uals +sho ws +is ika +c row +I T +us h +inter est +th o +r i +wan ikwa +fl es +comm and +E c +ing i +al e +Samu el +d ambudziko +phys ical +R ather +w akanga +st u +in za +ref er +ev idence +o kuti +m ig +ag o +w in +pra y +v ation +re main +mur indi +ic ally +zv akat +t ell +re main +nezv em +zv av +we chokwadi +d rin +on esa +se x +wag wa +ou ya +muny engetero +he ad +an onzi +o ve +vaka ita +u chenjeri +ur s +onek wa +on ero +end e +Se e +s av +zvaka dai +fung isisa +edz i +da ugh +re li +aka dz +C ha +zvino diwa +Tino fanira +ne igh +menti oned +ut ed +al ready +hum ira +hi y +19 14 +hist ory +etim es +A n +sup er +ne Bhaibheri +M ak +author ity +Ne iko +I nde +Ch ik +ng a +m ab +t om +star ted +c as +o v +yaka daro +ho s +ful l +The ir +ets ika +iv er +for ts +y akarurama +es i +chi kuru +S er +i ana +g g +N har +pas t +I ndi +cle ar +veng i +Amer ica +paku vamba +wa Jehovha +tru ly +prophec y +p ite +lo ved +e er +han yira +ku wedzera +sh eep +an di +p fuurira +ne ar +ir ei +ano daro +ed ly +pu blic +fri end +arr ang +va ig +M udz +c op +reas on +ing a +any one +hel d +ra ther +secon d +fun do +ver s +iti ve +ad i +nem akore +K uno +c am +t ell +p en +kwaka daro +ber eka +s ight +gadz ira +des ir +chino kosha +Y e +o t +as vika +re turn +a w +ny anzvi +st ances +long er +d avira +Fir ipi +Dz imwe +p ed +4 6 +po wer +sho wed +ra vo +le ave +ung an +onz era +mum woyo +comm on +ex t +y ar +di e +ap upu +mo der +form ed +an ony +ha kuna +vaka zodzwa +over se +oor ana +et a +vat everi +inspir ed +ag oni +Ch e +spiritu ally +bo ok +m ibvunzo +ire yo +c ur +ev edz +mu kana +m amiriro +des tro +abh orosi +Josep h +mit emo +hou se +mean ing +Nhar ireyo +zvis ing +lo v +k ept +happ iness +cle an +e dom +b an +Nharireyo murindi +F ar +in formation +l ost +n gozi +er ful +e - +sl ave +per haps +in z +Wit ness +ga in +enz a +d ed +writ ten +ik in +y at +s ch +loc al +ir ire +chin etso +A ustr +pro ved +er ation +ne zvo +i als +ru g +wit ness +u yewo +w id +he yo +rwo munhu +p ot +ik isa +S am +ru le +Cath olic +- time +en se +ar ed +or udzidziso +G o +4 8 +tak es +ser ious +Rom an +4 - +W ill +Nem haka +odz a +ec tive +mum huri +em or +pre par +cr im +under standing +ang eri +n aizvozvo +hus ingaperi +rw ake +mu ushumiri +hur ukuro +ch urch +va wo +akash ata +van am +for et +ch ed +h ana +ango bva +ye uch +go t +coun tries +accep t +F e +zv ach +al one +Mat t +D evil +wor king +S outh +us ina diff --git a/benchmarks/sn-en - Copy/jw300-baseline/config.yaml b/benchmarks/sn-en - Copy/jw300-baseline/config.yaml new file mode 100644 index 0000000..3869a3a --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/config.yaml @@ -0,0 +1,85 @@ + +name: "snen_reverse_transformer" + +data: + src: "sn" + trg: "en" + train: "data/snen/train.bpe" + dev: "data/snen/dev.bpe" + test: "data/snen/test.bpe" + level: "bpe" + lowercase: False + max_sent_length: 100 + src_vocab: "data/snen/vocab.txt" + trg_vocab: "data/snen/vocab.txt" + +testing: + beam_size: 5 + alpha: 1.0 + +training: + #load_model: "/content/drive/My Drive/masakhane/sn-en-baseline/models/snen_transformer/1.ckpt" # if uncommented, load a pre-trained model from this checkpoint + random_seed: 42 + optimizer: "adam" + normalization: "tokens" + adam_betas: [0.9, 0.999] + scheduling: "plateau" # TODO: try switching from plateau to Noam scheduling + patience: 5 # For plateau: decrease learning rate by decrease_factor if validation score has not improved for this many validation rounds. + learning_rate_factor: 0.5 # factor for Noam scheduler (used with Transformer) + learning_rate_warmup: 1000 # warmup steps for Noam scheduler (used with Transformer) + decrease_factor: 0.7 + loss: "crossentropy" + learning_rate: 0.0003 + learning_rate_min: 0.00000001 + weight_decay: 0.0 + label_smoothing: 0.1 + batch_size: 4096 + batch_type: "token" + eval_batch_size: 3600 + eval_batch_type: "token" + batch_multiplier: 1 + early_stopping_metric: "ppl" + epochs: 2 # TODO: Decrease for when playing around and checking of working. Around 30 is sufficient to check if its working at all + validation_freq: 1000 # TODO: Set to at least once per epoch. + logging_freq: 100 + eval_metric: "bleu" + model_dir: "models/snen_reverse_transformer" + overwrite: True # TODO: Set to True if you want to overwrite possibly existing models. + shuffle: True + use_cuda: True + max_output_length: 100 + print_valid_sents: [0, 1, 2, 3] + keep_last_ckpts: 3 + +model: + initializer: "xavier" + bias_initializer: "zeros" + init_gain: 1.0 + embed_initializer: "xavier" + embed_init_gain: 1.0 + tied_embeddings: True + tied_softmax: True + encoder: + type: "transformer" + num_layers: 6 + num_heads: 4 # TODO: Increase to 8 for larger data. + embeddings: + embedding_dim: 256 # TODO: Increase to 512 for larger data. + scale: True + dropout: 0.2 + # typically ff_size = 4 x hidden_size + hidden_size: 256 # TODO: Increase to 512 for larger data. + ff_size: 1024 # TODO: Increase to 2048 for larger data. + dropout: 0.3 + decoder: + type: "transformer" + num_layers: 6 + num_heads: 4 # TODO: Increase to 8 for larger data. + embeddings: + embedding_dim: 256 # TODO: Increase to 512 for larger data. + scale: True + dropout: 0.2 + # typically ff_size = 4 x hidden_size + hidden_size: 256 # TODO: Increase to 512 for larger data. + ff_size: 1024 # TODO: Increase to 2048 for larger data. + dropout: 0.3 diff --git a/benchmarks/sn-en - Copy/jw300-baseline/results.txt b/benchmarks/sn-en - Copy/jw300-baseline/results.txt new file mode 100644 index 0000000..917fbdd --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/results.txt @@ -0,0 +1,2 @@ +2021-10-09 13:25:40,879 - INFO - joeynmt.prediction - dev bleu[13a]: 28.69 [Beam search decoding with beam size = 5 and alpha = 1.0] +2021-10-09 13:28:01,576 - INFO - joeynmt.prediction - test bleu[13a]: 32.31 [Beam search decoding with beam size = 5 and alpha = 1.0] diff --git a/benchmarks/sn-en - Copy/jw300-baseline/src_vocab.txt b/benchmarks/sn-en - Copy/jw300-baseline/src_vocab.txt new file mode 100644 index 0000000..202486a --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/src_vocab.txt @@ -0,0 +1,4438 @@ + + + + +, +. +the +: +to +of +“ +” +a +and +kuti +in +? +ku@@ +s +) +( +’ +that +— +mu@@ +ed +uye +is +ne@@ +t@@ +ing +pa@@ +a@@ +y@@ +M@@ +ar@@ +for +s@@ +m@@ +we +; +1 +i +va@@ +f@@ +e@@ +r@@ +p@@ +re@@ +in@@ +aka@@ +be +es +are +Jehovah +on +was +o@@ +God +S@@ +i@@ +with +his +as +I +ch@@ +at@@ +u@@ +it +dz@@ +an@@ +as@@ +not +or@@ +2 +w@@ +d@@ +v@@ +b@@ +wa +e +The +you +A@@ +h@@ +ur@@ +n@@ +g@@ +kana +it@@ +zv@@ +P@@ +E@@ +or +er +is@@ +he +er@@ +o +T@@ +y +H@@ +c@@ +have +t +l@@ +k@@ +R@@ +on@@ +3 +iri +will +ir@@ +vanhu +se@@ +un@@ +ita +by +5 +an +4 +K@@ +us +I@@ +Jehovha +ha@@ +N@@ +al@@ +am@@ +V@@ +al +no@@ +ye@@ +es@@ +from +we@@ +en@@ +their +Mwari +-@@ +ano@@ +B@@ +one +at +im@@ +! +D@@ +- +nd@@ +they +ap@@ +6 +ak@@ +were +ti@@ +Jesus +kut@@ +our +z@@ +ro@@ +who +C@@ +va +all +ma@@ +ers +ad@@ +can +this +wa@@ +Bible +isa +‘ +chi@@ +ana +W@@ +Jesu +G@@ +ira +ari +7 +asi +ab@@ +vaka@@ +do +st@@ +na@@ +da +8 +9 +irwa +ino@@ +L@@ +what +kwa@@ +akanga +10 +ra@@ +kur@@ +munhu +par@@ +noku@@ +us@@ +ai@@ +ac@@ +15 +had +12 +ation +kw@@ +O@@ +yo@@ +ate +ts +ang@@ +U@@ +ine +end@@ +11 +ag@@ +era +zvino@@ +ya@@ +your +ly +A +What +ted +zva@@ +ing@@ +ic@@ +idz@@ +el@@ +In +vano@@ +zvinhu +them +ik@@ +F@@ +sei +iro +here +people +13 +kwe@@ +om@@ +yaka@@ +os@@ +14 +zvi@@ +op@@ +ya +has +kuva +Bhaibheri +ona +ev@@ +th@@ +em@@ +tr@@ +him +ot@@ +il@@ +amb@@ +ika +nem@@ +u +de@@ +j@@ +ve +my +about +cha@@ +ent +kuita +av@@ +ora +when +con@@ +ep@@ +17 +would +wo +Ku@@ +ach@@ +et@@ +zvikuru +16 +sh@@ +ose +pe@@ +and@@ +m +ri@@ +id@@ +dis@@ +ou@@ +ol@@ +may +for@@ +but +Ch@@ +imwe +ara +edza +1@@ +idza +ig@@ +adz@@ +uno@@ +kus@@ +ano +iswa +time +nguva +ava +ated +um@@ +hw@@ +ati@@ +ire +Mu@@ +di@@ +J@@ +ent@@ +out +19 +did +kun@@ +basa +van@@ +life +mumwe +so +20 +fanira +eng@@ +18 +akas@@ +k +How +ec@@ +[ +] +Asi +ho@@ +l +more +kuno@@ +so@@ +b +amba +wan@@ +n +en +Zv@@ +sa@@ +zvaka@@ +ut@@ +akat@@ +kuny@@ +those +ndi@@ +ity +ve@@ +some +me +mun@@ +Va@@ +bva +ence +th +ong@@ +res@@ +He +isi +ment +ina +ung@@ +Y@@ +able +ek@@ +mum@@ +her +also +le@@ +rino@@ +per@@ +ia +It +ai +qu@@ +been +ance +vat@@ +ane +d +wo@@ +anga +wana +vamwe +akar@@ +ed@@ +such +nezv@@ +be@@ +oku@@ +var@@ +many +akanaka +kup@@ +24 +Kristu +no +imba +ting +le +ex@@ +vari +ati +yo +ako +chir@@ +ziva +19@@ +zvin@@ +21 +iv@@ +pro@@ +h +up +ary +man +ani +tion +there +pl@@ +22 +achi@@ +chete +kuna +az@@ +wake +its +chit@@ +mut@@ +vas@@ +ts@@ +other +how +pamusoro +ip@@ +Witnesses +oro +ere +yoku@@ +ar +mashoko +ok@@ +ter@@ +chokwadi +Kana +ter +vake +che@@ +ib@@ +up@@ +har@@ +nokuda +mus@@ +mur@@ +ies +way +akati +me@@ +itwa +enyu +good +aiva +ru@@ +hand@@ +si@@ +than +he@@ +uka +awo +gr@@ +enyika +li@@ +if +work +We +day +enda +ind@@ +umb@@ +com@@ +ero +help +pasi +Paul +itika +ul@@ +pre@@ +world +dh@@ +any@@ +ings +rw@@ +said +/ +vana +cl@@ +should +chino@@ +zvo@@ +even +But +ely +eri +po@@ +mudzimu +chis@@ +ga +cho@@ +things +zo@@ +5@@ +mat@@ +waka@@ +ations +avo +Pauro +pres@@ +war@@ +dzino@@ +se +inga@@ +ous +Z@@ +John +ite +erwa +Christian +does +lo@@ +est +kudz@@ +Zvapupu +these +into +love +ei +aro +iwa +ish@@ +ura +iko +ise +su@@ +zuva +ure +Nd@@ +udza +pa +man@@ +ful +This +go@@ +which +funga +te@@ +onga +make +zi +23 +years +Ak@@ +nokuti +muna +uri +When +zviri +wor@@ +apo +could +imb@@ +to@@ +They +ally +ver@@ +sp@@ +ama +uk@@ +ning +6@@ +children +nor@@ +ion +ake +ng@@ +age +she +co@@ +ness +vachi@@ +kwaka@@ +mo@@ +mis@@ +ant +ud@@ +Christ +angu +iye +zvaJehovha +2@@ +end +ic +upenyu +wi +kutanga +Christians +nh@@ +gona +earth +raka@@ +p +chinhu +zvose +idzi +str@@ +vak@@ +Pa@@ +gara +ay@@ +mar@@ +vakanga +Umambo +iti +ying +ce +pane +akore +For +sur@@ +only +chin@@ +oun@@ +chaka@@ +nam@@ +ds +ch +because +iyi +over +dzaka@@ +handisa +ipa +iso +et +if@@ +des@@ +aura +zvis@@ +others +kura +then +ats@@ +says +kutaura +yacho +first +If +adza +ha +ents +oni +25 +Kingdom +ndoku@@ +rin@@ +Matthew +family +28 +vai@@ +kunyange +vose +batsira +As +fanana +come +ities +being +sion +pam@@ +ef@@ +hama +dze@@ +Mar@@ +vane +S +iya +zvino +Why +vo@@ +like +yake +ungano +Kunyange +daro +evera +ect +must +ty +ive +made +car@@ +zvakanaka +af@@ +rem@@ +mas@@ +eka +iz@@ +idzo +E +ear@@ +need +uro +huri +zve@@ +mwoyo +munyika +kutenda +vakawanda +rec@@ +erera +spirit +ambo +od +faith +ah +irira +ipi +kuru +jo@@ +ge +izvi +woku@@ +amwe +You +ob@@ +ess@@ +example +Zvisinei +vanot@@ +oratidza +chai@@ +ich@@ +* +vo +hwa@@ +dzose +vis@@ +just +ever +atu +g +ill@@ +ish +kune +od@@ +tions +Ne@@ +used +take +wacho +ene +7@@ +simba +Th@@ +r +king +aya +chimwe +edz@@ +udzi +see +now +nes@@ +akap@@ +pfungwa +kwazvo +most +own +30 +Saka +orwa +iyo +ones +naMwari +after +men +oka +chiri +ons +zvit@@ +ther@@ +chaizvo +spiritual +know +hum@@ +w +udz@@ +emb@@ +ta@@ +vap@@ +And +att@@ +kwem@@ +kuf@@ +enge +ain@@ +yose +O +arira +mug@@ +ony@@ +idzwa +chik@@ +very +dec@@ +bat@@ +oma +akaita +use +00 +reg@@ +kud@@ +congregation +zvo +true +pan@@ +pakati +kunamata +ating +nde@@ +vaKristu +new +akany@@ +Pisarema +uyo +vavo +zvazvo +kum@@ +nenzira +words +Psalm +nyika +inos@@ +before +anda +become +kosha +rwa@@ +raMwari +cre@@ +x +murume +rake +ice +ris@@ +ther +idzira +parents +acho +x@@ +ered +tis@@ +nezve@@ +gu@@ +any +br@@ +hur@@ +nzira +tino@@ +kuk@@ +dza@@ +angan@@ +give +por@@ +1-@@ +26 +kuts@@ +where +4@@ +igh@@ +do@@ +akak@@ +dzimwe +ikana +ave +paku@@ +death +esa +est@@ +hwe@@ +akawanda +hu@@ +pamwe +well +29 +enga +8@@ +Peter +An@@ +thing +zita +zvir@@ +bedzi +kupfuura +pas@@ +kuva@@ +el +ors +Ano@@ +Re@@ +27 +ember +Se@@ +pedzisira +ci@@ +too +ned +AN@@ +heart +9@@ +comm@@ +une +over@@ +another +mon@@ +vakat@@ +bo@@ +zvimwe +bl@@ +sed +through +kumb@@ +New +chiKristu +kwo@@ +Shoko +odz@@ +two +choku@@ +uts@@ +much +yokuti +iva +tichi@@ +kush@@ +nomu@@ +ike +ess +off@@ +am +ement +angano +arudza +Uye +ore +ser@@ +ws +pri@@ +omb@@ +No@@ +handa +ye +fe@@ +ory +ied +atino@@ +Petro +great +hi@@ +ova +ima +cr@@ +ast +kudaro +ality +onz@@ +pfuura +□ +uva +vabereki +aizo@@ +duku +han@@ +yedu +ond@@ +ori +ema +33 +That +mit@@ +times +person +vach@@ +ans +today +cho +ay +name +inter@@ +iy@@ +get +pur@@ +pr@@ +akan@@ +ide +ndaka@@ +kung@@ +land +zvakawanda +ves +ue +ariro +199@@ +kwake +c +3@@ +mukuru +rwe@@ +pedyo +angariro +uta +zvik@@ +• +truth +ually +naJehovha +31 +mag@@ +les +uya +makore +map@@ +found +ner@@ +enguva +might +ited +fara +yem@@ +vang@@ +ini +urwa +book +iyoyo +kubva +old +though +human +wedzera +One +So +omu@@ +ino +da@@ +each +woyo +dza +ently +muts@@ +mune +aka +und@@ +led +oupenyu +say +Chii +ug@@ +part +wose +kuda +nemhaka +fin@@ +uku +pf@@ +Ndi@@ +omo +akatanga +tly +ily +ry +eny@@ +prom@@ +Kut@@ +young +ks +bhuku +tive +vh@@ +Corinthians +mudz@@ +Is@@ +muk@@ +za +study +out@@ +akasiyana +St@@ +panguva +chokuti +Ma@@ +zvoku@@ +edzo +acc@@ +zano +NW +eg@@ +feel +fac@@ +Kuti +zvimbo +read +zvichi@@ +anya +vakar@@ +compl@@ +uch@@ +find +kuramba +against +Baba +kurudzira +ichi@@ +gare +atso@@ +place +vakuru +Word +ection +hi +apostle +vaya +act +less +ial +mak@@ +akarurama +isina +huno@@ +hondo +Luke +Vanhu +To +dic@@ +tain@@ +her@@ +po +atidza +Israel +udo +Ruka +Nei +ates +gar@@ +brothers +wis@@ +zvakadaro +David +naye +Isaya +ard +Satani +red +sec@@ +fu@@ +aff@@ +Isaiah +ach +fully +als +aurwa +ths +himself +yavo +Do +fung@@ +Zvirevo +However +wedu +fur@@ +dai +32 +pos@@ +Ha@@ +kupfurikidza +ions +Proverbs +Acts +0@@ +word +oko +ened +go +home +Vamwe +rudo +mir@@ +au@@ +pachena +keep +right +zvip@@ +adzwa +Ar@@ +rimwe +Tino@@ +kuona +vakas@@ +Al@@ +ist +same +.@@ +She +son +eni +wangu +ipo +In@@ +Satan +ked +never +bata +ious +often +asina +hau +Somuenzaniso +gl@@ +mb@@ +uny@@ +Magwaro +ombo +angarira +gre@@ +amu +akataura +ding +kuri +upon +tim@@ +sub@@ +yakanga +means +ase +pashure +Some +atur@@ +Dz@@ +irana +ition +nav@@ +Uno@@ +musoro +ual +nzvimbo +wrote +gamuchira +every +kunge +ight +izvo +Jud@@ +ad +trib@@ +tic +nomumwe +dzo@@ +fadza +At +iny@@ +ph@@ +boka +tic@@ +are@@ +inc@@ +There +course +hu +fa +ens +wira +nz@@ +ist@@ +asing@@ +why +mi@@ +came +atidz@@ +akasimba +tur@@ +iti@@ +dem@@ +Johani +vasina +sho@@ +34 +ical +famba +del@@ +kudzidza +Izvi +ished +yaya +vaiva +hwo@@ +35 +ven@@ +all@@ +urira +Kus@@ +put +taura +became +40 +Mabasa +iki +hope +wn +Iye +kwete +under +spe@@ +you@@ +serve +let +ndo@@ +Timothy +uru +Mateu +set +Par@@ +days +pana +mh@@ +kusvikira +down +anot@@ +sin@@ +among +vadzidzi +zvai@@ +ny@@ +the@@ +nou@@ +IN@@ +muenzaniso +ashoko +appro@@ +000 +chenget@@ +After +called +kupar@@ +Mateo +dzidza +inor@@ +view +racho +show +bvuma +de +ass@@ +pat@@ +bur@@ +anoti +vasing@@ +zvokudya +denga +enzi +edu +zvokuti +publ@@ +low@@ +poku@@ +Dhavhidhi +aris@@ +ikwa +ume +dzi +gore +ain +faithful +uchi@@ +fo@@ +Un@@ +back +imbisa +kuziva +worship +much@@ +Israeri +eerera +N +ord@@ +hap@@ +learn +fir@@ +id +Chokwadi +nayo +wife +hear@@ +ore@@ +kuch@@ +akakwana +Father +uko +erek@@ +nevanhu +min@@ +betsera +riri +Mus@@ +century +dir@@ +Revelation +Is +mutsa +kure@@ +want +37 +ongwa +ound@@ +news +vika +oreva +vi +United +year +ait@@ +zviv@@ +Zvakazarurwa +given +inda +vapo +during +Mumwe +sig@@ +important +anenge +ected +hom@@ +onzi +hwake +muviri +still +la@@ +mari +shand@@ +bvira +arama +away +ized +conf@@ +bvum@@ +kwoku@@ +kushandisa +izvozvo +Con@@ +live +munguva +mazuva +pol@@ +muchi@@ +adzi +nhasi +akanyora +told +ungamirira +zivo +navo +bv@@ +wako +wise +ba +mup@@ +ga@@ +anh@@ +wem@@ +mutemo +later +tain +rel@@ +om +Johane +doing +ungwa +eas@@ +kwavo +anos@@ +ref@@ +kazhinji +mudzimai +knowledge +muf@@ +yi +Com@@ +As@@ +Romans +appe@@ +ets@@ +ans@@ +taka@@ +enz@@ +ses +fananidzo +hanya +mind +began +zwa +expres@@ +inenge +Sa@@ +ais@@ +aita +zvid@@ +pano +gadz@@ +50 +ead +inge +hon@@ +while +By +ars +haana +gra@@ +themselves +kuz@@ +add@@ +kare +bless@@ +holy +vaka +nyore +edzwa +uyu +apa +waMwari +ran@@ +Judha +Pane +ezvinhu +zvem@@ +bh@@ +inot@@ +yai@@ +mufaro +zivisa +peace +Naizvozvo +amene +char@@ +long +anc@@ +Kup@@ +engetera +Kur@@ +preaching +hor@@ +fan@@ +pris@@ +nema@@ +child +KU@@ +shoko +ministry +zhinji +ular +kwedu +shamwari +pedza +Noku@@ +ivirira +Lo@@ +ough +service +gave +power +tice +without +wavo +living +dzidz@@ +bel@@ +Genesis +D +sy@@ +Ex@@ +ca@@ +loy@@ +ised +ising@@ +imi +diwa +kusvika +however +bu@@ +eswa +cor@@ +musha +chose +zana +chap@@ +vangu +uram@@ +ke@@ +iver@@ +vi@@ +With +ian +anofanira +ound +vanofanira +dzoku@@ +ians +idzirwa +C.E. +siyana +zve +int@@ +kurumidza +mberi +teach@@ +On +kumbira +hwaMwari +wara +Pro@@ +hamwari +anor@@ +T +gir@@ +VaRoma +order +kunzwisisa +nyaya +house +anogona +handiswa +tsika +tinofanira +kuwana +budirira +Ndaka@@ +unhu +fl@@ +ti +ust +Scriptures +ell@@ +nei +father +three +unung@@ +14@@ +muupenyu +AR@@ +ast@@ +abv@@ +ep +ef +Zvino@@ +Bh@@ +dziri +20@@ +wal@@ +chii +muBhaibheri +Then +huru +mwana +R +wat@@ +tariro +tik@@ +mukadzi +Jo@@ +ill +ango@@ +angana +varume +ges +ham@@ +nezva@@ +sol@@ +fact +sing +vanos@@ +emba +chake +ways +happ@@ +kurarama +zvakaipa +bvunza +chengeta +sal@@ +low +both +self +religious +ek +zvisina +mukati +vaIsraeri +Pas@@ +chava +His +ize +mor@@ +ship +Many +disciples +nevamwe +chip@@ +King +atidzwa +ments +streng@@ +cont@@ +zvat@@ +ative +sure +Be@@ +10@@ +akanyorwa +making +guru +homa +vene +atidzira +States +Here +0 +vimbika +kupa +help@@ +ages +inst@@ +enh@@ +sign@@ +,@@ +ito +azve +pasina +azuva +ER@@ +faniri +reas@@ +ests +umira +ening +ble +ivo +ambira +ough@@ +unz@@ +,000 +ously +De@@ +tiv@@ +Mambo +Yet +nokut@@ +Mes@@ +den +akadaro +anoda +muku@@ +My +Mosesi +Mun@@ +succ@@ +ndiye +uma +Yes +Ad@@ +every@@ +kund@@ +loc@@ +always +vanenge +sel@@ +roku@@ +piwa +mother +ets +ater +indura +nesimba +upi +beg@@ +zvar@@ +Mwanakomana +ture +emp@@ +zvakanga +took +ome +ward +Jerusalem +ambura +city +So@@ +fa@@ +verenga +having +ys +eff@@ +umo +Hebrews +vachit@@ +uraya +ences +asked +te +chang@@ +wh@@ +mhuri +jeka +ikan@@ +look +oup@@ +sup@@ +asa +Zva@@ +between +wadz@@ +ters +Pashure +Our +He@@ +vanor@@ +nechi@@ +ete +ambe +ata +James +fort +emberi +form@@ +mer@@ +ext@@ +iwo +whom +chikonzero +yeuka +Ndino@@ +explain@@ +something +unga +dzake +World +zving@@ +appreci@@ +mabasa +ute +kwenguva +ivisa +ash@@ +really +Fr@@ +wedzi +ver +reason +Jakobho +runo@@ +atidzo +itiro +provid@@ +kwanisa +mush@@ +hwo +chikoro +zvatino@@ +far@@ +tiri +muzana +um +batanidza +woman +bre@@ +marriage +concer@@ +vic@@ +ved +taurwa +Tr@@ +humans +ital +Sezvo +lead@@ +il +felt +chena +rist@@ +angar@@ +adzo +zvakaita +sezvo +vimb@@ +Munhu +hand +consid@@ +servants +mamwe +oga +kubatsira +of@@ +possible +air@@ +real@@ +Job +wanisa +little +rinonzi +tal@@ +chenjera +tor@@ +VaHebheru +personal +arisira +ack +Apo +endi +ez@@ +ended +mankind +together +akats@@ +Africa +inv@@ +chinja +Col@@ +zvib@@ +amai +zivikanwa +gener@@ +ands +ndino@@ +Roma +pamberi +isiro +list@@ +raJehovha +fuura +wond@@ +ll +dzavo +thr@@ +hapana +dzakawanda +bats@@ +198@@ +uteronom@@ +ff@@ +kururama +AI@@ +anoita +ingly +kunzwa +osh@@ +ature +Son +kurukura +form +Even +mambo +vaMwari +ava@@ +dra@@ +aida +encourag@@ +sigira +fellow +stud@@ +joy +inei +rose +chi +ong +ution +ire@@ +itsva +echi@@ +vimba +stand@@ +number +Jerusarema +problems +try +think +few +Gre@@ +dikanwa +toward +evedzera +ible +food +muungano +result +amira +ost +fi@@ +ind +milli@@ +Let +believ@@ +achit@@ +All +consider +body +gadzir@@ +kuro@@ +enget@@ +Mup@@ +gover@@ +future +ner +yaMwari +activ@@ +vanoda +These +hurumende +face +point +hanzvadzi +36 +kuenda +vaviri +kuratidza +women +onzwa +anisa +yor@@ +du@@ +itiko +Per@@ +di +Moses +ism +zvinetso +ese +vanop@@ +husband +chipi +lives +bring +ple +ikoku +vechi@@ +onal +isira +known +vereng@@ +jus@@ +wr@@ +Y +religion +ichi +care +39 +clo@@ +tem@@ +prot@@ +osha +Mur@@ +yam@@ +itira +Muna +ility +No +dev@@ +enti@@ +unogona +exp@@ +rutivi +anganisira +zvine +since +anzvi +pap@@ +ching@@ +Eng@@ +ects +guma +exam@@ +akaratidza +pione@@ +again +zvake +rokuti +sin +giving +rus@@ +kunze +experience +C.E +neva@@ +aiz@@ +kind +waro +Ng@@ +exc@@ +CH@@ +asati +’@@ +ask +akakodzera +asha +sor@@ +hold +blood +buda +ikoko +chinangwa +prayer +nations +achiti +perfect +accep@@ +kushanda +happy +under@@ +aking +ipapo +vura +els +ambo@@ +From +cul@@ +ame +st +si +ere@@ +muri +died +zova +rep@@ +thy +ziv@@ +ongo@@ +different +45 +elders +kwakanga +yed +righteous +off +last +chechi +En@@ +wisisa +change +hamisa +water +VaKorinte +H +tin@@ +rul@@ +ply +Muk@@ +lar@@ +done +pray@@ +emek@@ +meetings +inoti +chitendero +udzidziso +ropa +38 +io +kushand@@ +naJesu +isvonaka +purpose +arudzi +ongorora +continu@@ +kurukur@@ +fe +akaramba +ever@@ +left +ambudziko +soci@@ +AK@@ +yangu +needed +heaven +ering +yaiva +Watchtower +zvozvo +sia +zvidz@@ +better +ns +ongi +Jobho +learned +kumu@@ +gum@@ +Zvaka@@ +went +ists +col@@ +ten +voku@@ +kuteerera +f +bas@@ +kwam@@ +ron@@ +5-@@ +nechokwadi +kuchi@@ +ange +munzvimbo +sha@@ +ege +yechiKristu +ication +rudzi +sto@@ +val@@ +oti +vako +yakawanda +zvinoita +hamu +zvinos@@ +gan@@ +arly +hwaka@@ +ugare +umi +cer@@ +line +IR@@ +Ab@@ +counsel +bro@@ +Mashoko +mutsvene +muka +pose +tre@@ +nor +batanidzwa +dzin@@ +irozi +loving +ON@@ +B.@@ +ship@@ +ving +wai +let@@ +ikira +fear +muno@@ +refu +wisdom +Lord +fine +udzwa +wing +ufu +decis@@ +ofita +vedu +discus@@ +vave +enzan@@ +practic@@ +eful +cannot +ety +DZ@@ +homan@@ +chaizvoizvo +qual@@ +Your +ged +Rus@@ +questions +U +chokuita +irawo +plac@@ +describ@@ +induro +present +18@@ +awa +kufunga +Greek +okor@@ +angwa +coun@@ +early +kwaari +kuitira +zvak@@ +ling +dzedu +Thus +ace +teaching +school +heavenly +vava +anangura +using +Mum@@ +ately +sc@@ +hamo +wisa +vanogona +olog@@ +akandi@@ +AT@@ +vir@@ +amata +less@@ +3-@@ +V +ell +pra@@ +includ@@ +una +who@@ +system +wicked +mil@@ +Abra@@ +maviri +ikirwa +associ@@ +ada +ines +EN@@ +heav@@ +ungirira +wirirana +Nh@@ +someone +zvam@@ +arudzo +kunoita +sezva@@ +kuparidza +matter +200@@ +zvavo +viol@@ +ndichi@@ +farira +spec@@ +iness +Genesi +ondo +chiny@@ +fre@@ +hem@@ +wawo +fulfill@@ +Pe@@ +occ@@ +sl@@ +ign +friends +sive +aigona +rechi@@ +yako +war +wed@@ +eso +nani +hard +row +Mut@@ +helped +kurudz@@ +ko +vazhinji +anointed +ous@@ +rinoti +ree +vamba +utsa +experi@@ +▪ +language +Giriki +ungamiriri +hwedu +aradza +following +dzidzisa +Israelites +pfuma +going +apostora +pare +share +law +tinogona +article +bad +self-@@ +doc@@ +relationship +Ezek@@ +brother +yakati +44 +baba +ident +believe +azi +icha@@ +bir@@ +thers +Nokudaro +govera +certain +ending +Ung@@ +pleas@@ +continue +zvand@@ +ented +kudenga +ined +rugare +batira +ge@@ +hwa +zvininipisa +Vaka@@ +sk@@ +ither +ild +thought +kure +ick@@ +spok@@ +yourself +oneka +hwoku@@ +ancient +okera +best +kupinda +ato +akatendeka +Christ@@ +aifanira +isisa +compan@@ +ne +members +situation +mubasa +moved +chacho +Because +vie@@ +Who +cond@@ +requir@@ +light +pinda +baptized +omborero +ould +tif@@ +Jews +IS@@ +Bro@@ +Jos@@ +hin@@ +kwakaita +saying +mutauro +kunogona +sem@@ +indic@@ +berekwa +amiriro +Society +2-@@ +money +imiro +icho +vait@@ +ld +pain +nen@@ +head +thus +anz@@ +until +enzaniso +panzvimbo +muapostora +dia +yet +irwo +position +run@@ +OR@@ +ild@@ +UN@@ +message +support +dly +serving +vag@@ +kuzvi@@ +yechi@@ +im +pem@@ +VaKorinde +unity +cent +resp@@ +eyes +close +enc@@ +Mark +vakadzi +zor@@ +zvipira +will@@ +net@@ +ZV@@ +kutonga +dzidziso +mvura +maererano +batana +ject +vanoita +nation +60 +pand@@ +ekare +mean +anotaura +wero +increas@@ +vimbo +Sh@@ +ombor@@ +case +Timoti +Since +guta +far +dya +ably +transl@@ +around +wechi@@ +ce@@ +ches +apfuura +wit@@ +enjoy +writ@@ +efore +iah +orera +mwari +Abraham +especially +gif@@ +speak +inde@@ +profita +commun@@ +der +Ephesians +imo +ndizvo +vacha@@ +main@@ +kusa@@ +redu +haka +irano +emo@@ +dies +achir@@ +ango +eredza +mabhuku +produc@@ +batsirwa +tir@@ +high@@ +ested +42 +Kw@@ +yisa +vany@@ +rup@@ +kuitwa +70 +anger +cause +hab@@ +look@@ +eld@@ +respect +along +wers +pic@@ +ir +brought +ut +ariri +ayo +ukama +ondedzera +oned +govern@@ +reat@@ +turned +cap@@ +vara +yeBhaibheri +ide@@ +Daniel +sense +anganisa +next +eti +free +answer +mbiri +ites +arr@@ +Brit@@ +feelings +vaJehovha +York +ramakore +understand +served +attention +kwai@@ +born +mubvunzo +ak +ms +iring@@ +panyika +chinj@@ +Ipapo +akare@@ +Germany +Vano@@ +talk +Rev@@ +dead +develop@@ +Europe +Chin@@ +kwose +ku +received +engo +iroro +tion@@ +Van@@ +desire +zvechokwadi +ements +VaEfeso +regar@@ +AM@@ +hiz@@ +opa +lead +influ@@ +lands +ond +kwaMwari +uc@@ +irai +wane +trav@@ +aring +echokwadi +chall@@ +ental +lim@@ +tor +ourselves +eless +wanda +muma@@ +zos@@ +taken +aur@@ +chat@@ +avoid +kurumbira +reve@@ +rine +pati@@ +akava +Mutemo +bayiro +ndakanga +ram@@ +zvirokwazvo +akakomba +needs +illustr@@ +partic@@ +zvikurusa +hat@@ +hwavo +6-@@ +soon +kungo@@ +misangano +ender@@ +akapa +ress +zvokwadi +trans@@ +43 +kuit@@ +small +ingaira +Although +fanan@@ +beli@@ +ple@@ +isters +yakat@@ +saw +contr@@ +row@@ +privil@@ +states +dzem@@ +iting +Of +ants +difficult +reading +nomwoyo +muduku +munzira +ope +well@@ +vaJudha +iwe +sue +respon@@ +health +yakanaka +z +ived +nezvoku@@ +iku +em +Those +chipiri +vacho +taking +akasvika +havana +coming +leg@@ +pros@@ +itions +Hapana +learly +enced +Read +iwayo +gadzirira +ununguko +person@@ +consci@@ +Hungu +ting@@ +7-@@ +iye@@ +prove +Adam +oss +eness +offer@@ +real +likely +rakanga +Nenzira +discip@@ +ached +its@@ +poss@@ +imu +emo +agona +side +aiita +rufu +our@@ +night +train@@ +sions +appoin@@ +put@@ +including +ze@@ +saka +wanzo@@ +rokutanga +iving +question +ican +Gar@@ +kwat@@ +mission@@ +wer@@ +apar@@ +Law +iriro +Nguva +Nyika +vaduku +fru@@ +high +ern@@ +orig@@ +earth@@ +adhiso +cou@@ +isati +account +married +Je@@ +abh@@ +liter@@ +zvikurukuru +ems +chet@@ +wrong +dzine +ples +zadz@@ +ls +chem@@ +kunda +mura@@ +kwana +Gal@@ +Such +etting +amiriyoni +imbo@@ +Hama +Zvino +false +with@@ +kukuru +gumi +Are +atidzika +nhau +fungo +conduct +While +seen +turn +control +pli@@ +claim@@ +ularly +Can +hus@@ +arudz@@ +suffering +wanted +mwanakomana +Creator +dedic@@ +temple +wand@@ +ongo +endero +abl@@ +imambo +liv@@ +fungiro +Today +Me@@ +trust +advan@@ +adise +ambudz@@ +special +itical +Musiki +zvakaitika +sent +wedz@@ +follow +Am@@ +nokukurumidza +entif@@ +ann@@ +vais@@ +upu +shor@@ +Hebheru +Tru@@ +anok@@ +bus@@ +hanu +cy@@ +ards +famil@@ +obedi@@ +HO@@ +kurira +opport@@ +sva +budiswa +benefit +ring +haraunda +kugara +sokuti +makes +vakafa +41 +Nokuti +ins +Uyezve +K +wide +achis@@ +moral +Verenga +enjo@@ +isham@@ +kudza +national +zvinokosha +conven@@ +val +sing@@ +magaz@@ +ost@@ +eld +whole +kuchinja +hosva +knew +Chir@@ +Timotio +kwand@@ +instruc@@ +pfupi +tern +eji +thous@@ +principles +thinking +zot@@ +receive +nothing +umwe +Wor@@ +Ikoku +benef@@ +simply +anim@@ +taught +valu@@ +ick +pasinei +courage +Pan@@ +ld@@ +circum@@ +oondo +involved +attitude +ndiri +kufamba +strong +responsib@@ +tine +vem@@ +ra +kindness +provide +bhabhatidzwa +kutsvaka +remakore +ende +build@@ +anwa +resul@@ +chivi +erg@@ +star@@ +bvisa +group +marudzi +righteousness +nenguva +iled +ulation +fav@@ +Sim@@ +emera +Babyl@@ +educ@@ +Jerem@@ +warira +Bib@@ +Imwe +Le@@ +divine +ibatsira +ayira +Muapostora +ipp@@ +nazvo +vand@@ +Fir@@ +minis@@ +Ino@@ +Does +maj@@ +THE +Dhanieri +my@@ +Now +doub@@ +four +wisana +works +cal@@ +equ@@ +entr@@ +peri@@ +judg@@ +aberek@@ +mweya +table +‘@@ +rai@@ +prophet +oshesa +zvicha@@ +zvinor@@ +kunaka +ises +ided +acha@@ +fundisi +world@@ +dar@@ +posed +enem@@ +clos@@ +vomu@@ +asikana +U.@@ +great@@ +gen@@ +sai@@ +crip@@ +whether +occas@@ +Not +chero +Joshua +Egyp@@ +betsero +akanzwa +nokusingaperi +vanz@@ +heard +ambiro +Jap@@ +Or@@ +Li@@ +Ver@@ +Be +akanak@@ +unofanira +illi@@ +zvinogona +Jewish +Kutaura +zira +chen@@ +ign@@ +necess@@ +Philipp@@ +enhema +act@@ +followers +sons +exerc@@ +onyanya +ass +kingdom +vadz@@ +according +ly@@ +problem +kudzidzisa +repor@@ +page +ability +bha@@ +idzisa +wewo +wed +Ona +Can@@ +Kun@@ +Hebrew +muKristu +matters +umiri +ota +rap@@ +soul +work@@ +handi +Ho@@ +Chi@@ +certainly +aram@@ +chakanga +expec@@ +truc@@ +batwa +kutambudz@@ +hava@@ +ery +Bhabhironi +ich +ives +ok +invol@@ +ta +Watch +den@@ +satis@@ +Jeremiah +bi@@ +195@@ +kug@@ +rwo@@ +Panguva +once +pakutanga +arisana +hun@@ +ices +abasa +recogn@@ +Up@@ +half +mugumo +amat@@ +seka +Ru@@ +ayiro +akomana +action +distr@@ +ics +similar +ote +svaka +II +itate +zara +Consider +musi +ties +sis@@ +comes +ES@@ +rwoku@@ +gives +dr@@ +zvedu +paradz@@ +ath +Solomon +ongor@@ +everlasting +Zvi@@ +uses +On@@ +peji +pes@@ +unza +obe@@ +yp@@ +engetero +nezuva +Inter@@ +large +Na@@ +neZvapupu +nezvinhu +ucha@@ +congreg@@ +ends +stand +rwaka@@ +budisa +refl@@ +becom@@ +move +pet@@ +munyori +inh@@ +Inst@@ +kwou@@ +material +sen@@ +Zvinhu +vice +yakazara +vakatendeka +pop@@ +mba +ukira +promise +viny@@ +gadziriro +determin@@ +aziv@@ +ka +WA +sacrifice +pach@@ +masimba +bvumira +According +onzero +fungidzira +zvinot@@ +tsanangura +vol@@ +asikirwa +vhiki +kuma@@ +During +kutarisira +tsitsi +vam@@ +organization +vashumiri +atonger@@ +don +zvakadini +pafadzo +full +dzeBhaibheri +vana@@ +country +magazini +L +amir@@ +zivi +teach +fuurira +log@@ +dom@@ +ces +based +Bo@@ +Kud@@ +gura +nokus@@ +Dhe@@ +resurrection +UR@@ +yaJehovha +Tower +hol@@ +apostles +ber@@ +inj@@ +akaona +inogona +Soromoni +sever@@ +zvishoma +Tim@@ +abhuku +May +dzi@@ +therefore +God@@ +individuals +isika +struc@@ +crow@@ +shows +IT@@ +interest +ush@@ +ri +tho@@ +fles@@ +command@@ +wanikwa +Ec@@ +ingi +ale +Samuel +dambudziko +heal@@ +Rather +physical +wakanga +stu@@ +Gen@@ +inza +refer@@ +evidence +okuti +ago +mig@@ +pray +win@@ +vation +remain +ungamir@@ +ically +rit@@ +remain@@ +zvakat@@ +nezvem@@ +tell@@ +zvav@@ +wechokwadi +dini +drin@@ +onesa +wi@@ +sex@@ +ouya +anonzi +head@@ +munyengetero +wagwa +ove +vakaita +gamuch@@ +requ@@ +prof@@ +uchenjeri +urs +onero +ende@@ +See +onekwa +sav@@ +fungisisa +zvakadai +daugh@@ +kuru@@ +edzi +reli@@ +expl@@ +akadz@@ +Cha@@ +zvinodiwa +Tinofanira +mentioned +neigh@@ +already +uted +humira +1914 +hiy@@ +ful@@ +history +etimes +det@@ +An +Mak@@ +super@@ +neBhaibheri +Neiko +Chik@@ +Inde@@ +authority +mab@@ +nga@@ +tom@@ +cas@@ +started +ov@@ +hos@@ +Their +yakadaro +full@@ +etsika +forts +iver +yakarurama +esi@@ +Ser@@ +chikuru +gg@@ +iana +Indi@@ +past +clear +vengi +America +pakuvamba +atong@@ +loved +prophecy +eer@@ +truly +pite +waJehovha +hanyira +poin@@ +kuwedzera +sheep +andi@@ +pfuurira +near +irei +anodaro +edly +public +friend +arrang@@ +unda +vaig@@ +Mudz@@ +cop@@ +reason@@ +anyone +inga +held +rather +lear@@ +second +fundo +vers@@ +sou@@ +itive +adi +nemakore +Kuno@@ +cam@@ +kwakadaro +bereka +tell +pen@@ +sight +standing +Ye@@ +gadzira +desir@@ +chinokosha +asvika +ot +return +aw@@ +nyanzvi +anang@@ +fungwa +stances +davira +Firipi +longer +Dzimwe +Q@@ +46 +ped +iro@@ +power@@ +showed +leave +ravo +ungan@@ +onzera +mumwoyo +common +ext +fun@@ +yar@@ +die +apupu +moder@@ +anony@@ +formed +duc@@ +idence +hakuna +vakazodzwa +overse@@ +oorana +eta +vateveri +agoni +gn@@ +inspired +Che@@ +book@@ +spiritually +mibvunzo +G +cur@@ +evedz@@ +Joseph +mamiriro +mukana +destro@@ +F +abhorosi +mitemo +house@@ +meaning +lov@@ +happiness +kept +zvising@@ +clean +read@@ +edom +ban@@ +Nharireyomurindi +Far@@ +information +lost +ngozi +erful +․ +e-@@ +perhaps +slave +inz@@ +Witness +gain +enza +ded +written +ikin@@ +ile +sch@@ +yat@@ +chinetso +irire +local +Austr@@ +eration +proved +ials +nezvo@@ +rug@@ +witness +uyewo +heyo +wid@@ +pot@@ +Sam@@ +ikisa +rwomunhu +rule +-time +Catholic +ought +ount +ared +ense +orudzidziso +48 +Go@@ +clud@@ +takes +Roman +serious +4-@@ +Samu@@ +ord +cour@@ +Will +Nemhaka +ective +odza +mumhuri +emor@@ +prepar@@ +crim@@ +angeri +understanding +naizvozvo +husingaperi +muushumiri +church +rwake +hurukuro +vawo +akashata +vid@@ +ched +vanam@@ +foret@@ +hana +angobva +edzera +yeuch@@ +countries +got +Im@@ +accept +Fe@@ +alone +Matt +zvach@@ +Devil +working +South +usina +aba +cons@@ +ol +vadzidz@@ +ji +viri +hop@@ +Mat@@ +feel@@ +meet@@ +bud@@ +sm@@ +fu +isarema +call@@ +ople +der@@ +port +tle +wari +angu@@ +prop@@ +righ@@ +berek@@ +pec@@ +pers@@ +ushumiri +esi +bereki +ererano +yu +lik@@ +du +yika +till +sacrif@@ +vha +relati@@ +som@@ +hoko +veng@@ +long@@ +Scriptur@@ +div@@ +Mag@@ +bet@@ +dzwa +TH@@ +ibv@@ +omana +ungu +eve +ingap@@ +ungam@@ +– +iel +sim@@ +v +cle@@ +ven +wer +organ@@ +fill@@ +tru@@ +ational +itu@@ +muny@@ +ieri +sham@@ +pi@@ +Amer@@ +ur +Zvir@@ +bvunz@@ +courag@@ +individ@@ +kno@@ +one@@ +Ger@@ +urch +fri@@ +usa +Wh@@ +$ +preci@@ +zvi +ikidza +M +bap@@ +ʹ@@ +Krist@@ +sac@@ +ingaperi +bor@@ +differ@@ +faith@@ +perf@@ +servan@@ +wir@@ +jud@@ +pedz@@ +chenjeri +proph@@ +ult +Genes@@ +zar@@ +To@@ +weya +endeka +VaKor@@ +aching +Hap@@ +centur@@ +onom@@ +Cho@@ +nec@@ +prac@@ +spir@@ +your@@ +Uye@@ +akash@@ +uth +ibvunzo +youn@@ +resurrec@@ +tivi +avira +Christi@@ +oor@@ +Zvin@@ +onek@@ +author@@ +ustr@@ +suffer@@ +ul +Kuny@@ +eep +devel@@ +kurumb@@ +enly +kunz@@ +ica +chool +odzera +furikidza +nesses +follow@@ +ith +hist@@ +C +giv@@ +evil +kusv@@ +Phil@@ +ip +ath@@ +ibvunz@@ +eru +iyana +langu@@ +W +circ@@ +Jer@@ +Ik@@ +know@@ +é@@ +ready +self@@ +· +·@@ +hel@@ +cent@@ +kind@@ +haps +oth +atis@@ +The@@ +fai@@ +disc@@ +inde +erer@@ +relig@@ +selves +atsira +Ez@@ +ildren +● +ization +Mos@@ +azhinji +crib@@ +hal@@ +itude +iyoni +outh +ances +princip@@ +omba +B +mater@@ +◆ +zodzwa +import@@ +fel@@ +phys@@ +Gir@@ +Ac@@ +okwazvo +ys@@ +ugh@@ +adh@@ +thor@@ +tiz@@ +kurum@@ +ques@@ +Somu@@ +tro@@ +Do@@ +hure +kurusa +igh +anci@@ +ft +prob@@ +situ@@ +pu@@ +evo +respons@@ +é +Nem@@ +blo@@ +them@@ +Afr@@ +rece@@ +ept +Isa@@ +rif@@ +fam@@ +ention +conduc@@ +Eg@@ +Su@@ +gozi +enzira +uring +ikanwa +heri +sion@@ +bs +mean@@ +diffic@@ +Eur@@ +udzidz@@ +fol@@ +osi +humiri +dzera +dom +zvoizvo +yira +ffic@@ +apost@@ +deter@@ +prophec@@ +Chokwa@@ +lasting +P +wayo +contro@@ +Yo@@ +indi@@ +criptur@@ +some@@ +ially +wic@@ +itsi +uke +Zvis@@ +ousness +evel@@ +prov@@ +J +knowled@@ +him@@ +prophe@@ +Israel@@ +ped@@ +Jeho@@ +priv@@ +yes +husb@@ +Sin@@ +paf@@ +ro +can@@ +ught +main +inted +blic +avo@@ +X@@ +numb@@ +itud@@ +wish +mess@@ +wom@@ +anguva +hara@@ +umende +ʹ +La@@ +whe@@ +iyo@@ +í@@ +hil@@ +Bha@@ +æ@@ +hou@@ +bhabh@@ +tak@@ +indi +siy@@ +spiritu@@ +vera +Acc@@ +port@@ +reco@@ +Jes@@ +disi +need@@ +dy +bvunzo +okwadi +las@@ +ames +Cath@@ +á@@ +olic +sid@@ +inspir@@ +cc@@ +everi +simil@@ +Sat@@ +formation +onaka +wanakomana +relation@@ +Tho@@ +Efeso +led@@ +guva +Bec@@ +Jehova@@ +etso +ü@@ +batan@@ +ather +contin@@ +muta@@ +Josep@@ +aim@@ +okwa@@ +Corin@@ +erc@@ +ffer@@ +Pet@@ +thin@@ +& +oub@@ +Ephes@@ +amberi +syst@@ +sel +E. +chenj@@ +yl@@ +ã@@ +© +etim@@ +orinte +⁠ +isv@@ +bets@@ +lic +Af@@ +zvadzi +fal@@ +Rom@@ +marri@@ +ey +vhid@@ +bef@@ +fut@@ +urama +ó@@ +certain@@ +infl@@ +Dan@@ +kurukuru +ukuro +% +ainst +embers +ren +ö@@ +Z +hinji +ben@@ +ukur@@ +Johan@@ +orosi +irc@@ +Sol@@ +Yor@@ +Soci@@ +X +è@@ +tries +Joh@@ +princ@@ +—@@ +ham +oug@@ +Bab@@ +q +Psal@@ +Ef@@ +ween +▫ +lit@@ +ako@@ +wag@@ +til +bhir@@ +oku +ú@@ +ô@@ +imbo +° +baptiz@@ +dam +hat +Dha@@ +gether +Wit@@ +Dav@@ +ñ@@ +lem +tower +uals +ʼ@@ +yewo +ause +blems +| +orin@@ +urrec@@ +ä@@ +Sor@@ +Eph@@ +ł@@ +Consid@@ +:@@ +ç@@ +zarurwa +q@@ +zvininip@@ +Wat@@ +ā@@ +á +murindi +aizvozvo +❑ +Corinth@@ +Watch@@ +secon@@ +✔ +ḥ@@ +bec@@ +⁠@@ +ording +inip@@ +Á@@ +verbs +VaK@@ +righte@@ +menti@@ +ticle +uter@@ +○ +_@@ +nex@@ +ë@@ +É@@ +◯ +í +ë +ê@@ +> +▶ +ʽ@@ +à +papo +j +Nhar@@ +❏ +ה@@ +■ +Zvap@@ +י@@ +ו@@ +ה +# +oup += +espec@@ +▸ +Creat@@ +® +rote +❖ +aiah +â@@ +Q +Bhaib@@ +č@@ +tio +Dhan@@ +C.@@ +Jerusal@@ +→ +‛ +ī +ð@@ +Chris@@ +greg@@ +ū@@ +↓ +ʼ +⇩ +ï@@ +ś@@ +è +Bhabhir@@ +ø@@ +Mate@@ +Hebre@@ +š@@ +å@@ +ş@@ +ž@@ +ł +← ++ +↑ +Š@@ +ī@@ +◇ +Solom@@ +É +bho +Í@@ +ē@@ +ē +arema +ä +ü +− +ą@@ +rom +ā +_ +Ã@@ +£ +Matthe@@ +ń@@ +ý@@ +Ö@@ +ö +ŏ@@ +ň +̆@@ +Timo@@ +î@@ +ę@@ +― +ý +⇨ +­@@ +ó +ō@@ +hua +ã +̩@@ +Ś@@ +mudzim@@ +û@@ +š +Ó@@ +Ž@@ +ú +Ü@@ +­ +ō +œ@@ +ε@@ +\ +Ḥ@@ +Ż@@ +ß@@ +ş +ě@@ +ι@@ +õ@@ +΄ +Revel@@ +Ú@@ +▾ +ẹ@@ +ū +ṣ@@ +È@@ +ć +ż@@ +σ@@ +⁄ +Ł@@ +Æ@@ +ׁ +ש@@ +ς +Ṭ@@ +ν@@ +פ@@ +נ@@ +Jerus@@ +æ +γ@@ +☞ +ß +κ@@ +ν +ἰ@@ +¡ +Ô@@ +à@@ +Ä@@ +Ō@@ +Ş@@ +◗ +Á +Α@@ +Å@@ +€ +ireyo@@ +Isra@@ +Nharireyo@@ +™ +ʺ +ř@@ +Ñ@@ +ő@@ +ʽ +ı@@ +י +ύ@@ +ο@@ +Å +ְ@@ +ֹ +א +ṭ@@ +å +Jako@@ +Â@@ +̗@@ +ò@@ +ẹ +Î@@ +ă@@ +ù +÷ +μ@@ +Ō +ώ@@ +@ +ω +₦ +π@@ +➊ +‐ +Sorom@@ +Hebh@@ +Dhavhid@@ +;@@ +◀ +¢ +È +ê +¿ +ḍ@@ +Ë@@ +υ +ό@@ +ᾶ@@ +ę +Ç@@ +ć@@ +ï +ǒ +À +Ò +ů@@ +đ@@ +ś +Í +Ω +Ρ@@ +Υ@@ +Ε@@ +ì +ọ +Ọ@@ +< +נ +ט +ש +Ä +ç +ă +ρ@@ +ĕ@@ +ֹ@@ +ָ@@ +ź +ė@@ +â +̧@@ +ì@@ +ţ@@ +λ@@ +δ@@ +ά@@ +ò +α@@ +τ@@ +ל@@ +Ẹ@@ +ẓ@@ +̇@@ +Κ@@ +ŭ@@ +û +ק@@ +ד +ń +Ø@@ +Ā@@ +̀@@ +”@@ +☒ +ḥ +▲ +× +ι +α +❍ +› +‐@@ +̆ +⁄@@ diff --git a/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.en b/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.en new file mode 100644 index 0000000..4657dce --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.en @@ -0,0 +1,2724 @@ +For day and night your hand was heav@@ y upon me . ” +Some of the nam@@ es in this article have been chang@@ ed . +Some nam@@ es in this article have been chang@@ ed . +This is the great@@ est and first command@@ ment . ” +It does not bel@@ ong to man who is wal@@ king even to dir@@ ect his st@@ ep . ” +“ The whole world is l@@ ying in the power of the wicked one . ” +P@@ u@@ bl@@ ished by Jehova@@ h@@ ’@@ s Witnesses but now out of pr@@ in@@ t . +I am going to make a help@@ er for him , as a compl@@ ement of him . ” +( Lo@@ ok under B@@ I@@ B@@ L@@ E T@@ E@@ A@@ CH@@ IN@@ G@@ S > B@@ I@@ B@@ L@@ E Q@@ U@@ ES@@ T@@ I@@ ON@@ S AN@@ S@@ W@@ ER@@ E@@ D ) +Let your will take place , as in heaven , also on earth . ” +© 20@@ 16 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +Un@@ less o@@ ther@@ wise indic@@ ated , S@@ crip@@ ture qu@@ ot@@ ations are from the moder@@ n - language New World Tr@@ ans@@ l@@ ation of the Ho@@ ly Scriptures . +“ An@@ x@@ i@@ ety in a man@@ ’@@ s heart we@@ igh@@ s it down , but a good word che@@ ers it up . ” +Do not be an@@ x@@ ious , for I am your God . +© 20@@ 17 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +“ The righteous will poss@@ ess the earth , and they will live for@@ ever on it . ” ​ — Psalm 37 : 29 . +© 20@@ 18 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +I am with you all the days until the con@@ cl@@ us@@ ion of the system of things . ” +You cannot slave for God and for R@@ ich@@ es . ” +W@@ ell , see if you can answer the following questions : +( b ) What will we discus@@ s in the next article ? +M@@ ore@@ over , do not c@@ all anyone your father on earth , for one is your Father , the heavenly One . +En@@ ter into the joy of your mas@@ ter . ” +( b ) What questions will we consider ? +( b ) What will be discus@@ sed in the next article ? +They wanted to make sure I knew how serious my decis@@ ion was . +Jesus said : “ No man can come to me un@@ less the Father , who sent me , dra@@ ws him . ” +What will be discus@@ sed in the next article ? +I love to be at the Kingdom H@@ all among the first , and leave among the last , if possible . +I feel an in@@ ward joy when tal@@ king with God@@ ’@@ s people . +( b ) What will we consider in the next article ? +What will we consider in the following article ? +He cur@@ ed the bl@@ ind , the l@@ ame , the le@@ p@@ ers , and the de@@ a@@ f . +As the ter@@ m “ char@@ it@@ able pl@@ an@@ ning ” im@@ pli@@ es , these t@@ yp@@ es of d@@ on@@ ations t@@ yp@@ ically requ@@ ire some pl@@ an@@ ning on the part of the d@@ on@@ or . +( b ) What questions will we consider in this article ? +But the great@@ est one among you must be your minis@@ ter . +What will we consider in the next article ? +And the support of my spiritual brothers and s@@ isters has brought me much com@@ fort . +If so , you are to be comm@@ ended . +For I am con@@ v@@ inc@@ ed that ne@@ ither death nor life nor ang@@ els nor govern@@ ments nor things now here nor things to come nor po@@ wers nor he@@ ight nor de@@ p@@ th nor any other cre@@ ation will be able to se@@ par@@ ate us from God@@ ’@@ s love that is in Christ Jesus our Lord . ” +( b ) What will we consider in the following article ? +( b ) What will we consider in this article ? +But another sc@@ ro@@ ll was op@@ ened ; it is the sc@@ ro@@ ll of life . +□ What happ@@ ens to us when we die ? +What questions will we consider in the next article ? +( b ) What questions will we now consider ? +What will we discus@@ s in the next article ? +Jesus said : “ You must love your neigh@@ b@@ or as yourself . ” +( Read Matthew 24 : 37 - 39 . ) +We need to act in har@@ mon@@ y with our pray@@ ers . +( Read 2 Timothy 3 : 1 - 5 , 13 . ) +( Read Psalm 40 : 8 - 10 . ) +( b ) What are you determin@@ ed to do ? +( b ) What questions will be consid@@ ered in this article ? +( Read Psalm 19 : 7 - 11 . ) +( Read Ephesians 5 : 15 , 16 . ) +The spirit it@@ self be@@ ars witness with our spirit that we are God@@ ’@@ s children . ” +( Read 1 Corinthians 10 : 13 . ) +( Read 2 Ch@@ ron@@ ic@@ les 34 : 1 - 3 . ) +• What is God@@ ’@@ s purpose for the earth ? +( Read 1 Timothy 6 : 17 - 19 . ) +( Read James 1 : 5 - 8 . ) +( Read 2 Corinthians 5 : 14 , 15 . ) +( Read Romans 13 : 1 , 2 . ) +( Read 1 Corinthians 2 : 10 . ) +( Read 1 Corinthians 6 : 9 - 11 . ) +Jehovah is the name of God as reve@@ al@@ ed in the Bible . +( Read 2 Corinthians 13 : 5 . ) +( Read 1 Corinthians 15 : 5@@ 8 . ) +D@@ or@@ c@@ as “ ab@@ ound@@ ed in good de@@ ed@@ s and gif@@ ts of mer@@ c@@ y . ” +What will be consid@@ ered in this article , and why ? +( Read Proverbs 3 : 5 , 6 . ) +( Read Hebrews 11 : 24 - 27 . ) +“ The word of God is al@@ ive and ex@@ er@@ ts power . ” ​ — H@@ E@@ B . +Those ver@@ ses lik@@ en God@@ ’@@ s Word to a mir@@ ro@@ r in which we can see ourselves the way Jehovah se@@ es us . +I began to wond@@ er if what I saw in my@@ self was different from what Jehovah saw . +At first , I res@@ is@@ ted this new ide@@ a . +I still felt that loving me was too much to exp@@ ect of Jehovah . +I still doub@@ ted that Jehovah could love me , but I began thinking about Jesus ’ ran@@ so@@ m sacrifice . +All of a s@@ ud@@ den , it da@@ w@@ ned on me that Jehovah had been pati@@ ent with me for so long , sho@@ wing me that he loved me in so many ways . +It was as if I had been th@@ row@@ ing the ran@@ so@@ m back at Jehovah . +H@@ ave you car@@ e@@ fully read the rec@@ ent is@@ su@@ es of The Watchtower ? +( Read 2 Corinthians 1 : 3 , 4 . ) +( Read T@@ it@@ us 2 : 3 - 5 . ) +( Read Romans 7 : 21 - 23 . ) +( Read Isaiah 6@@ 3 : 11 - 14 . ) +( Read Psalm 1 : 1 - 3 . ) +( Read Romans 7 : 21 - 25 . ) +( Read 2 Peter 2 : 5 . ) +( Read Isaiah 48 : 17 , 18 . ) +( Read Ephesians 4 : 1 - 3 . ) +( Read Hebrews 13 : 7 , 17 . ) +In@@ clud@@ e a let@@ ter st@@ ating that the d@@ on@@ ation is cond@@ iti@@ onal . +Since leg@@ al requir@@ ements and ta@@ x la@@ ws var@@ y , it is important to con@@ su@@ l@@ t qual@@ if@@ ied ta@@ x and leg@@ al ad@@ vis@@ ers before cho@@ os@@ ing the best way to d@@ on@@ ate . +Re@@ al E@@ st@@ ate : S@@ al@@ able real est@@ ate d@@ on@@ ated to an ent@@ ity used by Jehova@@ h@@ ’@@ s Witnesses , e@@ ither by making an ou@@ tr@@ ight gif@@ t or , in the case of res@@ id@@ enti@@ al pro@@ per@@ ty , by res@@ er@@ ving a life est@@ ate to the d@@ on@@ or , who can continue to live in the res@@ idence during his or her li@@ f@@ etim@@ e . +W@@ ill@@ s and Tr@@ us@@ ts : Pro@@ per@@ ty or money may be be@@ qu@@ e@@ ath@@ ed to an ent@@ ity used by Jehova@@ h@@ ’@@ s Witnesses by means of a leg@@ ally ex@@ ec@@ uted will or by spec@@ if@@ ying the ent@@ ity as the benef@@ ic@@ i@@ ary of a trust ag@@ re@@ ement . +( Read Hebrews 11 : 17 - 19 . ) +In the Bible , m@@ oun@@ tain@@ s can re@@ present k@@ ing@@ dom@@ s , or govern@@ ments . +You fa@@ thers , do not be ex@@ as@@ per@@ ating your children , so that they do not become do@@ w@@ n@@ hear@@ ted . ” +For more information , see chap@@ ter 3 of this book , What Does the Bible Re@@ ally T@@ each ? , publ@@ ished by Jehova@@ h@@ ’@@ s Witnesses +( Read 2 Timothy 1 : 7 . ) +For more information , see chap@@ ter 8 of this book , What Does the Bible Re@@ ally T@@ each ? , publ@@ ished by Jehova@@ h@@ ’@@ s Witnesses +( Read 1 Th@@ ess@@ al@@ on@@ ians 5 : 1 - 6 . ) +( Read Luke 21 : 1 - 4 . ) +( b ) What questions will we consider in the next article ? +Then let those in Jud@@ e@@ a beg@@ in f@@ le@@ e@@ ing to the m@@ oun@@ tain@@ s , let those in the m@@ id@@ st of her leave , and let those in the coun@@ tr@@ ys@@ ide not ent@@ er into her . ” +I my@@ self , Jehovah , will spe@@ ed it up in its own time . ” +( Read Luke 10 : 29 - 37 . ) +What questions will we consider in this article ? +But as for the t@@ ree of the knowledge of good and bad , you must not e@@ at from it , for in the day you e@@ at from it you will certainly die . ” +( Read Revelation 14 : 6 , 7 . ) +( Read 1 Th@@ ess@@ al@@ on@@ ians 2 : 13 . ) +He will jud@@ ge the low@@ ly with fa@@ ir@@ ness , and with up@@ righ@@ t@@ ness he will give re@@ pro@@ of in be@@ half of the me@@ ek ones of the earth . ” +For more information , see chap@@ ter 10 of this book , What Does the Bible Re@@ ally T@@ each ? , publ@@ ished by Jehova@@ h@@ ’@@ s Witnesses +“ F@@ a@@ ith is the as@@ sur@@ ed expec@@ t@@ ation of what is hop@@ ed for . ” ​ — H@@ E@@ B . +Jesus said : “ W@@ here your t@@ reas@@ ure is , there your heart will be also . ” +“ Hap@@ p@@ y is the people who@@ se God is Jehovah ! ” ​ — P@@ S . +( Read James 5 : 14 - 16 . ) +He wrote : “ I am fles@@ h@@ ly , so@@ ld under sin . +( Read Hebrews 10 : 24 , 25 . ) +( Read 2 Corinthians 8 : 13 - 15 . ) +No@@ ah wal@@ ked with the true God . ” ​ — G@@ en . +Proverbs 14 : 15 says : “ The n@@ ai@@ ve person believ@@ es every word , but the sh@@ re@@ w@@ d one p@@ ond@@ ers each st@@ ep . ” +For my yo@@ k@@ e is kind@@ ly , and my lo@@ ad is light . ” +Con@@ tin@@ ue put@@ ting up with one another and for@@ giving one another fre@@ ely even if anyone has a cause for compl@@ ain@@ t against another . +J@@ ust as Jehovah fre@@ ely for@@ gave you , you must also do the same . +If , now , your right e@@ ye is making you st@@ umb@@ le , te@@ ar it out and th@@ row it away from you . ” +I will for@@ tif@@ y you , yes , I will help you , I will really hold on to you with my right hand of righteousness . ” +W@@ H@@ A@@ T E@@ L@@ S@@ E C@@ A@@ N W@@ E L@@ E@@ AR@@ N F@@ R@@ O@@ M THE B@@ I@@ B@@ L@@ E ? +Why is it so important to continue to show bro@@ ther@@ ly love ? +Why did Paul wr@@ ite a let@@ ter to the Hebrew Christians ? +( Read Hebrews 10 : 36 - 39 . ) +Why should we be inter@@ ested in the book of Hebrews ? +What is the ye@@ ar@@ t@@ ext for 20@@ 16 , and why is it appro@@ pri@@ ate ? +That ver@@ se has been sel@@ ected to be the ye@@ ar@@ t@@ ext for 20@@ 16 . +Our ye@@ ar@@ t@@ ext for 20@@ 16 : “ Let your bro@@ ther@@ ly love continue . ” ​ — Hebrews 13 : 1 +How do true Christians understand the meaning of bro@@ ther@@ ly love ? +( a ) What is the most important reason for us to show bro@@ ther@@ ly love ? +( b ) G@@ ive another reason why it is important to streng@@ then our aff@@ ection for one another . +Jesus had describ@@ ed how difficult that time would be . +What do we need to do now before the star@@ t of the great trib@@ ulation ? +( a ) What opport@@ un@@ ities do we have to show bro@@ ther@@ ly love today ? +( b ) G@@ ive exam@@ ples of how Jehova@@ h@@ ’@@ s people have sho@@ wn bro@@ ther@@ ly love . +How can we “ keep in mind those in pris@@ on ” ? +“ K@@ eep in mind those in pris@@ on . ” +“ Let marriage be hon@@ or@@ able among all . ” +How does cont@@ ent@@ ment help us to show bro@@ ther@@ ly love ? +Be “ cont@@ ent with the present things . ” +How does being “ of good courage ” help us to show bro@@ ther@@ ly love ? +How can we streng@@ then our bro@@ ther@@ ly love for our elders ? +“ R@@ em@@ ember those who are taking the lead . ” +How can we continue to show bro@@ ther@@ ly love in a gre@@ ater way ? +What does Christ@@ ’@@ s love mo@@ tiv@@ ate us to do ? +How does God@@ ’@@ s love mo@@ tiv@@ ate us to love our brothers ? +Why should God@@ ’@@ s for@@ giv@@ eness mo@@ tiv@@ ate us to for@@ give our brothers ? +1 , 2 . ( a ) What does God@@ ’@@ s “ ind@@ es@@ crib@@ able free gif@@ t ” includ@@ e ? +( Read 2 Corinthians 1 : 20 . ) +3 , 4 . ( a ) How do you feel when someone gives you a gif@@ t ? +( b ) How might a special gif@@ t change your life ? +How is God@@ ’@@ s gif@@ t of the ran@@ so@@ m much gre@@ ater than any other gif@@ t ? +( a ) What bless@@ ings of Jehova@@ h@@ ’@@ s gif@@ t do you look for@@ ward to ? +( b ) N@@ ame three things God@@ ’@@ s gif@@ t will mo@@ tiv@@ ate us to do . +How should we feel about the love of Christ , and what should it mo@@ tiv@@ ate us to do ? +In turn , who@@ ever lo@@ ves me will be loved by my Father , and I will love him and will c@@ learly show my@@ self to him . ” ​ — John 14 : 21 ; 1 John 5 : 3 . +What questions can we ask ourselves during this M@@ emor@@ ial se@@ as@@ on , and what may the ans@@ wers mo@@ tiv@@ ate us to do ? +( Read 1 Timothy 2 : 9 , 10 . ) +( a ) How does our love for Jehovah and Jesus mo@@ tiv@@ ate us in the preaching work ? +( b ) How can our love mo@@ tiv@@ ate us to help others in the congregation ? +What el@@ se will God@@ ’@@ s love move us to do ? +What example did Jesus set in loving others ? +Can you help an ol@@ der brother or sis@@ ter in the ministry ? +What can you do to show love for your brothers ? +( Read Luke 14 : 12 - 14 . ) +16 , 17 . ( a ) What should we learn from Jesus ’ illustr@@ ation of the king and the sl@@ av@@ es ? +( b ) After m@@ ed@@ it@@ ating on Jesus ’ illustr@@ ation , what are you determin@@ ed to do ? +How did God@@ ’@@ s love help one sis@@ ter to put up with the im@@ perf@@ ec@@ tions of another sis@@ ter ? +I want to know her when she is perfect . ” +How will God@@ ’@@ s “ ind@@ es@@ crib@@ able free gif@@ t ” mo@@ tiv@@ ate you ? +[ 1 ] ( par@@ ag@@ rap@@ h 18 ) Some nam@@ es in this article have been chang@@ ed . +What ev@@ ents made P@@ ent@@ ec@@ ost a special day , and how did those ev@@ ents ful@@ f@@ ill what the Scriptures had foret@@ old ? +( a ) Why should we be inter@@ ested in what happ@@ ened at P@@ ent@@ ec@@ ost ? +( b ) What other important ev@@ ent may have happ@@ ened on the same day many years ear@@ li@@ er ? +How do we know that not all those who are anointed receive their ano@@ in@@ ting in ex@@ ac@@ tly the same way ? +What do all anointed ones receive , and how does this aff@@ ect them ? +What must each anointed Christian do to receive his re@@ ward in heaven ? +Peter explain@@ ed it this way : “ Th@@ er@@ efore , brothers , be all the more d@@ il@@ ig@@ ent to make your call@@ ing and cho@@ os@@ ing sure for your@@ selves , for if you keep on doing these things , you will by no means ever fai@@ l . +In fact , in this way you will be ri@@ ch@@ ly gr@@ an@@ ted entr@@ ance into the everlasting Kingdom of our Lord and S@@ av@@ i@@ or Jesus Christ . ” +8 , 9 . ( a ) Why is it difficult for most people to understand what happ@@ ens when someone is anointed ? +( b ) How does a person know that he has been inv@@ ited to go to heaven ? +He told them : “ You did not receive a spirit of sl@@ av@@ ery ca@@ using fear again , but you received a spirit of ad@@ op@@ tion as sons , by which spirit we cr@@ y out : ‘ Ab@@ ba , Father ! ’ +What does 1 John 2 : 27 mean when it says that an anointed Christian does not need someone el@@ se to teach him ? +What might an anointed Christian wond@@ er , but what does he never doub@@ t ? +How does the way a person thin@@ ks change when he is anointed by holy spirit , and what ca@@ uses this change ? +How do anointed ones feel about their life here on earth ? +What does not prove that a person has been anointed by holy spirit ? +How do we know that not all those who have received God@@ ’@@ s spirit have been inv@@ ited to go to heaven ? +17 , 18 . ( a ) What re@@ ward do most of God@@ ’@@ s servants look for@@ ward to today ? +How is Z@@ e@@ char@@ iah 8 : 23 being fulfill@@ ed ? +1 , 2 . ( a ) What did Jehovah say would happ@@ en in our time ? +( b ) What questions will be ans@@ w@@ ered in this article ? +Why is it not possible for us to know for sure who will be part of the 14@@ 4@@ ,000 ? +What war@@ ning should anointed ones think ser@@ i@@ ously about , and why ? +What do anointed Christians not exp@@ ect , and why ? +Why do you need to be car@@ eful about the way you tre@@ at those who e@@ at the bre@@ ad and drin@@ k the w@@ ine at the M@@ emor@@ ial ? +( See the bo@@ x “ Lo@@ ve ‘ Does Not Be@@ have I@@ nd@@ ec@@ ently . ’ ” ) +Jesus told his disciples : “ All of you are brothers . ” +How can you show that you respect anointed Christians ? +How do we prot@@ ect ourselves if we avoid “ ad@@ mir@@ ing person@@ al@@ ities ” ? +Why should we not wor@@ ry about the number of those who e@@ at the bre@@ ad and drin@@ k the w@@ ine at the M@@ emor@@ ial ? +“ Jehovah kno@@ ws those who bel@@ ong to him . ” +What does the Bible say about the number of anointed ones who will be on earth when the great trib@@ ulation star@@ ts ? +What do we need to understand about the 14@@ 4@@ ,000 ch@@ os@@ en by Jehovah ? +On@@ ly a few anointed Christians in the first century were used to wr@@ ite the Christian Greek Scriptures . +dra@@ ws us clos@@ er to God and to others ? +Even though Jehovah is the S@@ up@@ re@@ me One , what has he inv@@ ited others to do ? +What important work did Jehovah inv@@ ite Jesus to do ? +What did Jehovah inv@@ ite Adam to do , and why ? +For example , he al@@ low@@ ed Adam to name the anim@@ als . +How did others work with God to ac@@ compl@@ ish his will ? +In what work can we share , and did Jehovah need to invol@@ ve us in this work ? +The apostle Paul wrote : “ Wor@@ king together with him , we also ur@@ ge you not to accept the un@@ des@@ er@@ ved kindness of God and mis@@ s its purpose . ” +How did God@@ ’@@ s fir@@ st@@ born Son describ@@ e how he felt about working b@@ es@@ ide his Father ? +Why does the preaching work bring us joy ? +What have some said about the joy of working with Jehovah ? +Sim@@ il@@ arly , Fr@@ anc@@ o , who also ser@@ ves in I@@ tal@@ y , says : “ By means of his Word and his spiritual pro@@ vis@@ ions , Jehovah rem@@ ind@@ s us every day that he lo@@ ves us and that every@@ thing we do for him is important , even though our ef@@ forts may se@@ em like nothing to us . +This is why working along with God makes me happy and gives my life meaning . ” +What relationship ex@@ is@@ ted between Jehovah and Jesus , and why ? +Why does preaching dra@@ w us clos@@ er to God and to others ? +We learn why it is wise to trust in him and to follow his dir@@ ection . +Why will we dra@@ w even clos@@ er to Jehovah and to our brothers in the new world ? +How does one Witness in Austr@@ al@@ ia feel about preaching ? +Jo@@ el , who lives in Austr@@ al@@ ia , says : “ The preaching work help@@ s me not to l@@ ose t@@ ou@@ ch with re@@ ality . +It rem@@ ind@@ s me of the chall@@ eng@@ es people are fac@@ ing and of the benef@@ its I have experi@@ enced by ap@@ pl@@ ying Bible principles in my life . +The preaching work help@@ s me to try to st@@ ay hum@@ ble ; it gives me an opport@@ unity to re@@ ly on Jehovah and on my brothers and s@@ isters . ” +Why does our per@@ sever@@ ance in preaching show that God@@ ’@@ s spirit is with us ? +How long would you continue to work at such a jo@@ b ? +How is the preaching of the good news con@@ nec@@ ted with God@@ ’@@ s purpose for hum@@ an@@ kind ? +How is our preaching l@@ in@@ ked to God@@ ’@@ s great@@ est command@@ ments ? +The second , like it , is this : ‘ You must love your neigh@@ b@@ or as yourself . ’ ” +How do you feel about the hon@@ or to pre@@ ach the good news ? +I give you my streng@@ th , my Word the Bible , heavenly support , earth@@ ly compan@@ ions , pro@@ g@@ res@@ sive train@@ ing , and pre@@ c@@ ise instruc@@ tions at the appro@@ pri@@ ate time . ’ +What an im@@ m@@ ense privil@@ ege it is to do what Jehovah as@@ ks of us and to work together with our God ! ” +TH@@ I@@ S M@@ A@@ G@@ A@@ Z@@ IN@@ E , The Watchtower , hon@@ ors Jehovah God , the R@@ ul@@ er of the un@@ iver@@ se . +It com@@ forts people with the good news that God@@ ’@@ s heavenly Kingdom will soon end all wic@@ k@@ ed@@ ness and trans@@ form the earth into a par@@ adise . +It prom@@ ot@@ es faith in Jesus Christ , who died so that we might gain everlasting life and who is now rul@@ ing as King of God@@ ’@@ s Kingdom . +This magaz@@ ine has been publ@@ ished continu@@ ously since 18@@ 7@@ 9 and is n@@ on@@ pol@@ itical . +It ad@@ her@@ es to the Bible as its authority . +Be@@ be had been very close to her father . +The re@@ mar@@ k came from a well - meaning family friend , but Be@@ be found it more c@@ ut@@ ting than com@@ for@@ ting . +“ His death w@@ as@@ n@@ ’@@ t for the best , ” she kept re@@ pe@@ ating to her@@ self . +It was clear that when Be@@ be rec@@ oun@@ ted the inc@@ ident in a book years later , she was still g@@ ri@@ ev@@ ing . +As Be@@ be came to see , it can take a long time for someone to over@@ come g@@ ri@@ ef , especially when the ber@@ e@@ av@@ ed person was very close to the dec@@ eas@@ ed . +In the Bible , death is ap@@ tly describ@@ ed as “ the last enem@@ y . ” +It bre@@ ak@@ s into our lives with ir@@ res@@ is@@ ti@@ ble for@@ ce , often when we are compl@@ et@@ ely un@@ prepar@@ ed , and it ro@@ bs us of those we hold de@@ ar . +N@@ one of us are im@@ mune to its ra@@ va@@ ges . +So it is not sur@@ pris@@ ing if we feel at a l@@ oss when it comes to cop@@ ing with death and its af@@ ter@@ mat@@ h . +Per@@ haps you have wond@@ ered : ‘ How long does it take to get over g@@ ri@@ ef ? +How can I com@@ fort others who have been ber@@ e@@ av@@ ed ? +Is there any hope for our loved ones who have died ? ’ +H@@ ave you ever had a b@@ ri@@ ef b@@ out with ill@@ ness ? +As an example , consider how the pat@@ ri@@ ar@@ ch Abraham re@@ ac@@ ted when his wife died . +The Bible says that “ Abraham began to mo@@ ur@@ n and to we@@ ep over S@@ ar@@ ah . ” +The expres@@ sion “ began to ” su@@ gg@@ ests that it took some time for him to c@@ ope with his l@@ oss . +He g@@ ri@@ ev@@ ed for “ many days , ” and his family members were un@@ able to com@@ fort him . +S@@ ever@@ al years later , the death of Joseph still we@@ igh@@ ed heav@@ ily on his mind . ​ — Genesis 23 : 2 ; 37 : 34 , 35 ; 42 : 36 ; 45 : 28 . +“ My husband , R@@ ob@@ er@@ t , died on J@@ u@@ ly 9 , 200@@ 8 . +S@@ i@@ x years later the pain in my heart is still there . +I d@@ on@@ ’@@ t think I will ever get over my l@@ oss of R@@ o@@ b . ” ​ — G@@ ai@@ l , ag@@ ed 60 . +“ Although I have been without my de@@ ar wife for more than 18 years , I still mis@@ s her and g@@ ri@@ eve over my l@@ oss . +Wh@@ en@@ ever I see something in n@@ ature that is at@@ tr@@ ac@@ tive , my th@@ ough@@ ts go to her , and I cannot help wond@@ ering how she would have enjo@@ yed se@@ e@@ ing what I am se@@ e@@ ing . ” ​ — E@@ ti@@ en@@ ne , ag@@ ed 8@@ 4 . +C@@ learly , such pa@@ in@@ ful and long - lasting feelings are only n@@ atur@@ al . +E@@ ach person g@@ ri@@ ev@@ es in his or her own way , and it would be un@@ wise to jud@@ ge the way another person respon@@ ds to tr@@ ag@@ ed@@ y . +At the same time , we may need to hold off from con@@ dem@@ ning ourselves if our re@@ action to l@@ oss se@@ ems exc@@ es@@ sive . +As we no@@ te in the “ I@@ mit@@ ate Their F@@ a@@ ith ” article in this is@@ sue , Isa@@ a@@ c was still g@@ ri@@ ev@@ ing over the l@@ oss of his mother , S@@ ar@@ ah , three years after her death . ​ — Genesis 24 : 6@@ 7 . +For inst@@ ance , you may find that some will ad@@ v@@ ise you not to cr@@ y or show your feelings in any way . +O@@ thers may p@@ us@@ h you to do the op@@ pos@@ ite and ex@@ pose all your feelings . +The Bible pres@@ ents a more b@@ al@@ anc@@ ed view , one that is sup@@ por@@ ted by moder@@ n res@@ ear@@ ch . +In some cul@@ tur@@ es it is consid@@ ered un@@ man@@ ly for a m@@ ale to cr@@ y . +But is there a real need to feel as@@ ham@@ ed about sh@@ ed@@ ding te@@ ars , even in public ? +M@@ ental - health ex@@ per@@ ts ac@@ knowledge that te@@ ar@@ ful@@ ness is a nor@@ ma@@ l part of g@@ ri@@ ev@@ ing . +And g@@ ri@@ ev@@ ing may , in time , help you to move on des@@ pite the en@@ or@@ m@@ ity of your l@@ oss . +S@@ up@@ pres@@ sing g@@ ri@@ ef , however , may do more har@@ m than good . +The Bible l@@ ends no support to the no@@ tion that it is wrong or un@@ man@@ ly to sh@@ ed te@@ ars of g@@ ri@@ ef . +At the death of his de@@ ar friend L@@ az@@ ar@@ us , Jesus op@@ enly we@@ p@@ t , even though he had the power to bring the dead back to life ! ​ — John 11 : 33 - 35 . +B@@ ou@@ ts of anger are often part of g@@ ri@@ ev@@ ing , especially in cas@@ es of s@@ ud@@ den , un@@ expec@@ ted death . +There are many reas@@ ons why a ber@@ e@@ av@@ ed person may feel ang@@ ry , such as when th@@ ough@@ t@@ less and un@@ f@@ ound@@ ed comm@@ ents are made by a resp@@ ected person . +“ I was only 14 years old when my father died , ” explain@@ s a South Afr@@ ican man nam@@ ed M@@ ike . +“ At the fun@@ er@@ al , the A@@ ng@@ l@@ ican minis@@ ter said that God needs good people and takes them early . +* This ang@@ ered me because we des@@ per@@ ately needed our father . +E@@ spec@@ ially in the case of un@@ expec@@ ted death , the ber@@ e@@ av@@ ed person may re@@ pe@@ at@@ edly think , ‘ It might not have happ@@ ened if only I had done this or that . ’ +If you are being pl@@ ag@@ u@@ ed by such feelings of gu@@ il@@ t and anger , it is important not to b@@ ot@@ tle up these emo@@ tions . +Rather , speak to a friend who will list@@ en and reas@@ sure you that such ir@@ r@@ ational feelings are common to many ber@@ e@@ av@@ ed ones . +The Bible rem@@ ind@@ s us : “ A true friend shows love at all times , and is a brother who is born for times of distr@@ ess . ” ​ — Proverbs 17 : 17 . +The best F@@ ri@@ end a ber@@ e@@ av@@ ed person can have is our Creator , Jehovah God . +P@@ our out your heart to him in prayer because “ he car@@ es for you . ” +M@@ ore@@ over , he prom@@ ises that all who do so will have their th@@ ough@@ ts and feelings so@@ o@@ th@@ ed by “ the peace of God that sur@@ pas@@ ses all understanding . ” +Al@@ so , al@@ low God to help you he@@ al by means of his cons@@ ol@@ ing Word , the Bible . +H@@ av@@ ing such th@@ ough@@ ts to p@@ ond@@ er over may be especially help@@ ful at night when you are alone and find it hard to s@@ le@@ ep . ​ — Isaiah 5@@ 7 : 15 . +R@@ ec@@ ently , a 40 - year - old man , whom we will c@@ all J@@ ack , lost his bel@@ o@@ ved wife to c@@ anc@@ er . +“ When I pray to Jehovah , ” he explain@@ s , “ I never feel alone . +I often wake up during the night and cannot get back to s@@ le@@ ep . +After reading and m@@ ed@@ it@@ ating on com@@ for@@ ting th@@ ough@@ ts from the Scriptures and then po@@ uring out the feelings of my heart in prayer , I sense a cal@@ m@@ ness and a trans@@ c@@ ending peace come over me , put@@ ting my mind and heart at res@@ t and en@@ ab@@ ling me to s@@ le@@ ep . ” +A young woman nam@@ ed Van@@ ess@@ a lost her mother to ill@@ ness . +She too has experi@@ enced the power of prayer . +“ In my most difficult times , ” she says , “ I would just c@@ all on God@@ ’@@ s name and bre@@ ak down in te@@ ars . +Jehovah list@@ ened to my pray@@ ers and always gave me the streng@@ th I needed . ” +Some ber@@ e@@ av@@ ement coun@@ sel@@ ors ad@@ v@@ ise those who are str@@ ug@@ gl@@ ing with g@@ ri@@ ef to get involved in help@@ ing others or to vol@@ un@@ te@@ er their time in some commun@@ ity service . +Do@@ ing so can bring joy and may e@@ ase a person@@ ’@@ s g@@ ri@@ ef . +Many ber@@ e@@ av@@ ed Christians have found that working to help others has brought them great com@@ fort . ​ — 2 Corinthians 1 : 3 , 4 . +God feel@@ s for you in your pain . ​ — Psalm 5@@ 5 : 22 ; 1 Peter 5 : 7 . +God pati@@ ently list@@ ens to the pray@@ ers of his servants . ​ — Psalm 8@@ 6 : 5 ; 1 Th@@ ess@@ al@@ on@@ ians 5 : 17 . +God mis@@ ses people who have died . ​ — Job 14 : 13 - 15 . +God prom@@ ises to resurrec@@ t the dead . ​ — Isaiah 26 : 19 ; John 5 : 28 , 29 . +H@@ ave you ever felt hel@@ pl@@ ess when someone near to you was g@@ ri@@ ev@@ ing over the l@@ oss of a loved one ? +S@@ om@@ etimes we may feel un@@ sure of what to say or do ​ — so we w@@ ind up saying and doing nothing . +But there are practic@@ al , help@@ ful things that we can do . +O@@ f@@ ten , all that is needed is your pres@@ ence along with a sim@@ ple expres@@ sion , such as “ I am so sor@@ ry . ” +In many cul@@ tur@@ es , giving the person a hu@@ g or a g@@ ent@@ le s@@ qu@@ e@@ ez@@ e of the ar@@ m is an eff@@ ective way to show you care . +If the ber@@ e@@ av@@ ed one wan@@ ts to talk , list@@ en sy@@ m@@ pa@@ the@@ tic@@ ally . +B@@ est of all , do something for the ber@@ e@@ av@@ ed family , perhaps per@@ form@@ ing a ch@@ ore the g@@ ri@@ ev@@ ing one has not been able to care for , such as co@@ ok@@ ing a me@@ al , car@@ ing for the children , or help@@ ing with fun@@ er@@ al arrang@@ ements if that is desir@@ ed . +Such ac@@ tions may speak l@@ ou@@ der than the most el@@ o@@ qu@@ ent words . +In time , you may be moved to talk about the dec@@ eas@@ ed , perhaps fo@@ c@@ using on some good qual@@ ities or happy experi@@ ences . +Such con@@ vers@@ ation may even bring a sm@@ ile to the ber@@ e@@ av@@ ed person@@ ’@@ s face . +For example , Pa@@ m ​ — who lost her husband , I@@ an , si@@ x years ago — ​ says : “ Pe@@ ople som@@ etimes tell me good things that I@@ an did that I never knew about , and that makes my heart feel good . ” +R@@ es@@ ear@@ ch@@ ers re@@ port that many ber@@ e@@ av@@ ed people receive a lo@@ t of in@@ iti@@ al help but that their needs are soon for@@ g@@ ot@@ ten as friends get bus@@ y again with their own lives . +Th@@ er@@ efore , make a point of cont@@ ac@@ ting a ber@@ e@@ av@@ ed friend on a reg@@ ular bas@@ is after the l@@ oss . +* Many g@@ ri@@ ev@@ ing ones de@@ ep@@ ly appreci@@ ate this opport@@ unity to reli@@ eve themselves of pro@@ long@@ ed feelings of g@@ ri@@ ef . +Consider the example of K@@ a@@ ori , a young Jap@@ an@@ ese woman who was dev@@ ast@@ ated by the l@@ oss of her mother follow@@ ed by the l@@ oss of her ol@@ der sis@@ ter 15 mon@@ ths later . +T@@ han@@ k@@ fully , she received ongo@@ ing support from loy@@ al friends . +One nam@@ ed R@@ its@@ uko is much ol@@ der than K@@ a@@ ori and offer@@ ed to be her close friend . +“ To be hon@@ est , ” says K@@ a@@ ori , “ I w@@ as@@ n@@ ’@@ t happy about that . +I di@@ d@@ n@@ ’@@ t want anyone to take the place of my mother , and I di@@ d@@ n@@ ’@@ t think that anyone could . +However , because of the way M@@ ama R@@ its@@ uko tre@@ ated me , I came to feel close to her . +E@@ very we@@ ek , we went out in the ev@@ ang@@ el@@ iz@@ ing work together and went to Christian meetings together . +She inv@@ ited me to have te@@ a with her , brought me me@@ als , and wrote me let@@ ters and car@@ ds many times . +M@@ ama R@@ its@@ uk@@ o@@ ’@@ s pos@@ itive attitude had a good influ@@ ence on me . ” +T@@ w@@ el@@ ve years have pas@@ sed since K@@ a@@ or@@ i@@ ’@@ s mother died , and today she and her husband are full - time ev@@ ang@@ el@@ iz@@ ers . +“ M@@ ama R@@ its@@ uko , ” K@@ a@@ ori says , “ continu@@ es to show her concer@@ n . +When I go back home , I always vis@@ it her and enjoy her up@@ build@@ ing associ@@ ation . ” +Ano@@ ther example of someone who benef@@ ited from ongo@@ ing support is P@@ ol@@ i , one of Jehova@@ h@@ ’@@ s Witnesses in C@@ y@@ pr@@ us . +P@@ ol@@ i had a kind husband , So@@ zo@@ s , who set a good example as a Christian sh@@ ep@@ her@@ d by often inv@@ iting or@@ ph@@ ans and wid@@ o@@ ws to their home for associ@@ ation and a me@@ al . +S@@ ad@@ ly , at the age of 5@@ 3 , So@@ zo@@ s died of a b@@ ra@@ in t@@ um@@ or . +There , they began associ@@ ating with a congregation of Jehova@@ h@@ ’@@ s Witnesses . +“ The friends in my new congregation , ” rec@@ all@@ s P@@ ol@@ i , “ did not know any@@ thing about our past and our difficult circum@@ stances . +But that did not sto@@ p them from appro@@ aching us and emb@@ r@@ ac@@ ing us with their kind words and practic@@ al help . +How preci@@ ous that help was , especially at that time , when my son needed his father most ! +Those taking the lead in the congregation showed a great de@@ al of personal interest in Daniel . +One in partic@@ ular made sure to includ@@ e Daniel when enjo@@ ying associ@@ ation with friends or when going out to pl@@ ay b@@ all . ” +B@@ oth mother and son are doing well today . +To be sure , there are many ways we can off@@ er practic@@ al help and com@@ fort to those who mo@@ ur@@ n . +The Bible also com@@ forts us by means of a thr@@ ill@@ ing hope for the future . +Some have even mar@@ ked the d@@ ate of the death on their cal@@ end@@ ar as a rem@@ ind@@ er to off@@ er com@@ fort when it may be most needed ​ — on or near the d@@ ate of the l@@ oss . +You may rec@@ all that G@@ ai@@ l , mentioned ear@@ li@@ er in this ser@@ ies , doub@@ ts whether she will ever get over the death of her husband , R@@ o@@ b . +However , she is look@@ ing for@@ ward to se@@ e@@ ing him again in God@@ ’@@ s prom@@ ised new world . +My feelings really go out to people who have lost someone they love but who are not aw@@ are of this hope of se@@ e@@ ing their loved one again . ” +So@@ on , God will do just that ​ — for Job and coun@@ t@@ less others — ​ when this earth is trans@@ formed into a par@@ adise . +“ There is going to be a resurrection , ” the Bible con@@ fir@@ ms at Acts 24 : 15 . +“ Do not be am@@ az@@ ed at this , ” Jesus as@@ sur@@ es us , “ for the h@@ our is coming in which all those in the m@@ emor@@ ial t@@ omb@@ s will he@@ ar his vo@@ ice and come out . ” +He will have the pros@@ p@@ ect of reg@@ ain@@ ing “ his you@@ th@@ ful v@@ ig@@ or , ” and his fles@@ h will for@@ ever remain “ f@@ res@@ her than in you@@ th . ” +The same will happ@@ en to all who respon@@ d with appreci@@ ation to God@@ ’@@ s mer@@ ci@@ ful pro@@ vis@@ ion of a resurrection to life on earth . +If you have suffer@@ ed the l@@ oss of someone de@@ ar to you , the information we have discus@@ sed may not compl@@ et@@ ely take away your g@@ ri@@ ef . +But by m@@ ed@@ it@@ ating on God@@ ’@@ s prom@@ ises found in the Bible , you can find real hope and the streng@@ th to keep going . ​ — 1 Th@@ ess@@ al@@ on@@ ians 4 : 13 . +W@@ ould you like to learn more about how to c@@ ope with g@@ ri@@ ef ? +O@@ r do you have rel@@ ated questions , such as “ Why does God al@@ low evil and suffering ? ” +P@@ le@@ ase vis@@ it our we@@ b@@ s@@ ite , j@@ w@@ .@@ or@@ g , to see how the Bible gives com@@ for@@ ting , practic@@ al ans@@ wers . +“ God . . . will w@@ ip@@ e out every te@@ ar from their eyes , and death will be no more . ” ​ — Revelation 21 : 3 , 4 . +This is@@ sue of The Watchtower discus@@ ses how God will ful@@ f@@ ill that promise and what it can mean for you . +I told the off@@ ic@@ er that I had already been in pris@@ on because I would not f@@ ight . +I W@@ A@@ S born in 19@@ 26 in C@@ ro@@ ok@@ s@@ v@@ il@@ le , O@@ hi@@ o , in the United States . +Father and M@@ other were not religious , but they told us e@@ ight children to go to church . +Mar@@ gar@@ et W@@ al@@ k@@ er ( second sis@@ ter from the left ) helped me learn the truth +Ab@@ out that time , a neigh@@ b@@ or nam@@ ed Mar@@ gar@@ et W@@ al@@ k@@ er , one of Jehova@@ h@@ ’@@ s Witnesses , began vis@@ iting my mother and tal@@ king to her about the Bible . +But I kept tr@@ ying to list@@ en to their discus@@ sions . +After a cou@@ ple more vis@@ its , Mar@@ gar@@ et asked me , “ Do you know what God@@ ’@@ s name is ? ” +I said , “ E@@ ver@@ y@@ one kno@@ ws that ​ — it@@ ’@@ s God . ” +She said , “ G@@ et your Bible and look up Psalm 8@@ 3 : 18 . ” +I did , and I dis@@ co@@ ver@@ ed that God@@ ’@@ s name is Jehovah . +I r@@ an out to my friends and told them , “ When you get home t@@ on@@ ight , look up Psalm 8@@ 3 : 18 in the Bible and see what God@@ ’@@ s name is . ” +You might say I started wit@@ nes@@ sing right away . +I stu@@ died the Bible and got baptized in 19@@ 41 . +So@@ on af@@ ter@@ ward , I was as@@ sig@@ ned to conduct a congregation book study . +I encourag@@ ed my mother and s@@ ib@@ l@@ ings to come , and they all began att@@ ending the book study that I conduc@@ ted . +S@@ om@@ etimes when she was on her way , he ch@@ as@@ ed after her and p@@ ul@@ led her back into the house . +But she would just ru@@ n out the other do@@ or and go to the meet@@ ing . +I also told the off@@ ic@@ ials that I would not become a sol@@ di@@ er . +In cour@@ t two we@@ ek@@ s later , the jud@@ ge said : “ If it were up to me , I@@ ’@@ d give you a life s@@ ent@@ ence . +I rep@@ li@@ ed : “ Your H@@ on@@ or , I should have been cl@@ as@@ si@@ f@@ ied as a minis@@ ter . +E@@ ver@@ y@@ one@@ ’@@ s do@@ or@@ st@@ ep is my p@@ ul@@ p@@ it , and I have pre@@ ached the good news of the Kingdom to many people . ” +The jud@@ ge told the j@@ ur@@ y : “ You are not here to dec@@ ide whether this young man is a minis@@ ter or not . +You are here to dec@@ ide whether he repor@@ ted for ind@@ uc@@ tion into the ar@@ my or not . ” +I pray@@ ed to Jehovah : “ I cannot st@@ ay in a c@@ ell for f@@ ive years . +The next day , the gu@@ ards let me out . +I wal@@ ked over to a t@@ all , bro@@ ad - sh@@ ou@@ ld@@ ered pris@@ on@@ er , and we sto@@ od there look@@ ing out a win@@ do@@ w . +He asked me , “ What are you in for , S@@ hor@@ ty ? ” +I said , “ I am one of Jehova@@ h@@ ’@@ s Witnesses . ” +I said , “ Jehova@@ h@@ ’@@ s Witnesses d@@ on@@ ’@@ t go to war and k@@ ill people . ” +I said , “ No , it do@@ es@@ n@@ ’@@ t . ” +Then he said , “ For 15 years I was in another pris@@ on , where I read some of your liter@@ ature . ” +I was among the Witnesses im@@ pris@@ oned for ne@@ u@@ tr@@ ality at A@@ sh@@ land , K@@ ent@@ uc@@ k@@ y +That is how we pre@@ ached in an organ@@ ized way . +I wor@@ ri@@ ed about my family because D@@ ad had told me , “ If I can get ri@@ d of you , I can hand@@ le the res@@ t . ” +After my re@@ le@@ ase , I had a pleas@@ ant sur@@ pris@@ e . +I said , “ Th@@ at@@ ’@@ s fine , but I am not going into the ar@@ my . ” +I qu@@ ot@@ ed 2 Timothy 2 : 3 and said , “ I am already a sol@@ di@@ er of Christ . ” +After a long s@@ il@@ ence , he said , “ You can leave . ” +So@@ on af@@ ter@@ ward , I att@@ ended the Be@@ the@@ l meet@@ ing at a conven@@ tion in C@@ inc@@ in@@ n@@ ati , O@@ hi@@ o . +I also wor@@ ked at As@@ s@@ emb@@ ly H@@ all@@ s in New York C@@ ity . +I have made many friends at Be@@ the@@ l and in the congregation . +I have learned a little M@@ and@@ ar@@ in Chin@@ ese and enjoy appro@@ aching Chin@@ ese people on the st@@ re@@ et . +Some mor@@ n@@ ings I place 30 or 40 magaz@@ ines with inter@@ ested ones . +P@@ re@@ aching to the Chin@@ ese people in Bro@@ ok@@ ly@@ n , New York +I have even made a return vis@@ it in Ch@@ ina ! +She took them and told me that her name was K@@ ati@@ e . +After that , wh@@ en@@ ever she saw me , K@@ ati@@ e came over to talk to me . +I taught her the nam@@ es of fru@@ its and ve@@ g@@ et@@ ab@@ les in Eng@@ l@@ ish , and she re@@ pe@@ ated the words after me . +I also explain@@ ed Bible t@@ ex@@ ts to her , and she accep@@ ted the Bible T@@ each book . +After some we@@ ek@@ s , though , she dis@@ appe@@ ared . +The next we@@ ek , she hand@@ ed me her c@@ ell ph@@ one and said , “ You talk to Ch@@ ina . ” +I said , “ I d@@ on@@ ’@@ t know any@@ body in Ch@@ ina . ” +But she in@@ sis@@ ted , so I took the ph@@ one and said , “ H@@ ell@@ o , this is R@@ ob@@ is@@ on . ” +The vo@@ ice at the other end said , “ R@@ ob@@ by , this is K@@ ati@@ e . +P@@ le@@ ase teach her the way you taught me . ” +I said , “ K@@ ati@@ e , I will do the best I can . +T@@ han@@ ks for let@@ ting me know where you are . ” +So@@ on af@@ ter@@ ward , I spok@@ e to K@@ ati@@ e@@ ’@@ s sis@@ ter for the last time . +If it is God@@ ’@@ s will , my family members and friends who have died will return to life in the new world . +While this article was being prepar@@ ed for publ@@ ication , C@@ or@@ w@@ in R@@ ob@@ is@@ on died faithful to Jehovah . +How did knowledge and experience streng@@ then Abra@@ ham@@ ’@@ s faith ? +What did Abraham do to streng@@ then his fri@@ end@@ ship with God ? +How can you im@@ itate Abraham in build@@ ing a fri@@ end@@ ship with Jehovah ? +1 , 2 . ( a ) How do we know that humans can become God@@ ’@@ s friends ? +3 , 4 . ( a ) D@@ es@@ crib@@ e what was likely Abra@@ ham@@ ’@@ s great@@ est t@@ est of faith . ( b ) Why was Abraham will@@ ing to sacrifice Isa@@ a@@ c ? +How may Abraham have learned about Jehovah , and how did that knowledge make him feel ? +How can we gain knowledge and experience that will streng@@ then our fri@@ end@@ ship with Jehovah ? +9 , 10 . ( a ) What is needed for a fri@@ end@@ ship to become str@@ ong@@ er ? +( b ) What shows that Abraham ch@@ er@@ ished and streng@@ th@@ ened his fri@@ end@@ ship with Jehovah ? +Abraham ch@@ er@@ ished and main@@ tain@@ ed his fri@@ end@@ ship with Jehovah . +Why was Abraham concer@@ ned about So@@ dom and G@@ om@@ or@@ ra@@ h , and how did Jehovah help him ? +12 , 13 . ( a ) How did Abra@@ ham@@ ’@@ s knowledge and experience help him later ? +( b ) What shows that Abraham had conf@@ idence in Jehovah ? +What chall@@ eng@@ es do you face in serving Jehovah , and how may Abra@@ ham@@ ’@@ s example help you ? +Abraham and S@@ ar@@ ah come to know and worship Jehovah +Abraham dies “ at a good old age , old and satis@@ f@@ ied ” +Why may we be sure that Abraham never re@@ gre@@ t@@ ted his loy@@ al obedi@@ ence to Jehovah ? +What is your determin@@ ation , and what will we consider in the following article ? +May each of us be determin@@ ed to im@@ itate the faith of Abraham . +( Read Hebrews 6 : 10 - 12 . ) +In the following article , we will consider three more exam@@ ples of faithful ones who became close friends of God . +What can we learn from the fri@@ end@@ ship with God that R@@ uth enjo@@ yed ? +Why was King He@@ z@@ ek@@ iah a close friend of Jehovah ? +What qual@@ ities made Jesus ’ mother , M@@ ary , a friend of Jehovah God ? +1 - 3 . ( a ) Why can we be sure that we can become God@@ ’@@ s friends ? +( b ) What individuals will we consider in this article ? +What difficult decis@@ ion did R@@ uth have to make , and why was making it so hard ? +( a ) What wise cho@@ ice did R@@ uth make ? +( b ) Why did Bo@@ a@@ z speak of R@@ uth as se@@ ek@@ ing re@@ fu@@ ge under Jehova@@ h@@ ’@@ s w@@ ings ? +What might help those who h@@ es@@ itate to dedic@@ ate their lives to Jehovah ? +9 , 10 . ( a ) Why might He@@ z@@ ek@@ iah eas@@ ily have become b@@ it@@ ter ? +( b ) Why should we not become b@@ it@@ ter against God ? +( c ) Why should we not think that our b@@ ac@@ k@@ gr@@ ound determin@@ es the t@@ yp@@ e of person we will become ? +Many young people accept the truth des@@ pite their family b@@ ac@@ k@@ gr@@ ound ( See par@@ ag@@ rap@@ h@@ s 9 , 10 ) +What made He@@ z@@ ek@@ iah one of Jud@@ a@@ h@@ ’@@ s best k@@ ings ? +( Read 2 K@@ ings 18 : 5 , 6 . ) +L@@ ike He@@ z@@ ek@@ iah , how have many today proved to be Jehova@@ h@@ ’@@ s friends ? +Why might Mar@@ y@@ ’@@ s as@@ sign@@ ment have se@@ em@@ ed too difficult , yet how did she respon@@ d to G@@ ab@@ ri@@ el@@ ’@@ s words ? +What shows that M@@ ary was a good list@@ en@@ er ? +In both cas@@ es , M@@ ary list@@ ened , rem@@ emb@@ ered , and thought car@@ e@@ fully about what she had heard . ​ — Read Luke 2 : 16 - 19 , 4@@ 9 , 5@@ 1 . +What can we learn about M@@ ary from the way she spok@@ e ? +In what ways can we im@@ itate Mar@@ y@@ ’@@ s faith ? +As we im@@ itate the Bib@@ le@@ ’@@ s out@@ standing exam@@ ples of faith , of what may we be as@@ sur@@ ed ? +TH@@ IN@@ K about the happ@@ i@@ est day of your life . +W@@ as it when you got married or when your first child was born ? +Ver@@ y likely , you have experi@@ enced much joy in serving Jehovah since your bap@@ tis@@ m . +What reas@@ ons do we have for continu@@ ing to serve Jehovah with joy ? +R@@ em@@ ember that Jesus said : “ C@@ ome to me , all you who are to@@ il@@ ing and lo@@ ad@@ ed down , and I will ref@@ res@@ h you . +T@@ ake my yo@@ k@@ e upon you and learn from me , for I am m@@ ild - tem@@ per@@ ed and low@@ ly in heart , and you will find ref@@ res@@ h@@ ment for your@@ selves . +We serve our Li@@ fe - G@@ iver , the happy God . +Consider H@@ é@@ c@@ tor , who served Jehovah as a trav@@ el@@ ing overse@@ er for 40 years . +He says : “ Although it is sa@@ d to see my wi@@ fe@@ ’@@ s health gra@@ d@@ ually deter@@ i@@ or@@ ate and it has been chall@@ eng@@ ing to care for her , I have not al@@ low@@ ed this to ro@@ b me of my joy in serving the true God . +K@@ no@@ wing that I o@@ we my life to Jehovah , who cre@@ ated man for a purpose , is reason en@@ ough to love him de@@ ep@@ ly and serve him who@@ le@@ hear@@ t@@ edly . +I str@@ ive to st@@ ay ac@@ tive in the preaching work , and I try to keep the Kingdom hope for@@ em@@ ost in my mind so as not to l@@ ose my joy . ” +Jehovah has provid@@ ed the ran@@ so@@ m sacrifice , making it possible for us to have a jo@@ y@@ ful life . +Inde@@ ed , “ God loved the world so much that he gave his only - beg@@ ot@@ ten Son , so that every@@ one exerc@@ is@@ ing faith in him might not be destro@@ yed but have everlasting life . ” +Jes@@ ú@@ s sim@@ pli@@ f@@ ied his life and served Jehovah jo@@ y@@ fully for years +I did it just to make more money . +Then I learned about Jehovah and how he had given his de@@ ar Son for mankind . +I had an int@@ ense desire to serve him . +So I dedic@@ ated my life to Jehovah , and after having wor@@ ked for the compan@@ y for 28 years , I dec@@ ided to qu@@ it and take up the full - time ministry . ” +Do you rem@@ ember what your life was like before you came to know Jehovah ? +The apostle Paul rem@@ ind@@ ed Christians in R@@ ome that they “ were once the sl@@ av@@ es of sin ” but had become “ sl@@ av@@ es to righteousness . ” +“ The happ@@ i@@ est years of my life have been those sp@@ ent serving Jehovah . ” ​ — J@@ aim@@ e +“ L@@ it@@ tle by little , I dis@@ co@@ ver@@ ed the ex@@ ist@@ ence of a loving Father and mer@@ ci@@ ful God , ” J@@ aim@@ e says . +“ K@@ e@@ ep@@ ing Jehova@@ h@@ ’@@ s righteous stand@@ ards has been a prot@@ ection for me . +H@@ ad I not chang@@ ed , I might have been k@@ ill@@ ed , as some of my form@@ er bo@@ x@@ ing friends were . +The happ@@ i@@ est years of my life have been those sp@@ ent serving Jehovah . ” +How was King Sa@@ ul@@ ’@@ s son J@@ on@@ a@@ than loy@@ al to Jehovah ? +How can we be loy@@ al to God when we feel that someone who has authority does not des@@ er@@ ve our respect ? +How can we be loy@@ al to Jehovah if others mis@@ understand us or tre@@ at us un@@ fa@@ ir@@ ly ? +Why is J@@ on@@ ath@@ an@@ ’@@ s fri@@ end@@ ship with David a re@@ mar@@ k@@ able example of loy@@ al@@ ty ? +What was more important to J@@ on@@ a@@ than than being loy@@ al to David , and how do we know ? +( a ) What will make us truly happy and satis@@ f@@ ied ? +Why was it difficult for the people of Israel to be loy@@ al to God while Sa@@ ul was king ? +What shows that J@@ on@@ a@@ than st@@ ay@@ ed loy@@ al to Jehovah ? +How are we being loy@@ al to God when we respect those who have authority ? +How did J@@ on@@ a@@ than know to whom he should be loy@@ al ? +How does our love for God help us dec@@ ide to be loy@@ al to him ? +How can loy@@ al@@ ty to God help us to c@@ ope with family problems ? +If a brother t@@ reat@@ s us un@@ fa@@ ir@@ ly , how should we re@@ act ? +In what situ@@ ations must we be loy@@ al to God and not be self@@ ish ? +[ 1 ] ( par@@ ag@@ rap@@ h 9 ) Some nam@@ es have been chang@@ ed . +Why was J@@ on@@ ath@@ an@@ ’@@ s re@@ action to David so different from Ab@@ ner@@ ’@@ s ? +What qual@@ ities will help us to be loy@@ al to God , and how ? +How did David show that he was loy@@ al to God ? +( a ) How was David an example of loy@@ al@@ ty to God ? +( b ) What other exam@@ ples will we consider ? +What less@@ on do we learn from Ab@@ is@@ ha@@ i@@ ’@@ s mis@@ take ? +Although it is n@@ atur@@ al to be loy@@ al to our family and friends , why must we be car@@ eful ? +How did one sis@@ ter st@@ ay loy@@ al to God in a difficult situation ? +What qual@@ ities will help us to be loy@@ al to God ? +How can we benefit from Bible acc@@ oun@@ ts about Ab@@ ner , Ab@@ sal@@ om , and B@@ ar@@ u@@ ch ? +But you are se@@ ek@@ ing great things for yourself . +S@@ how why we cannot be loy@@ al to God when we are self@@ ish . +After many pray@@ ers and te@@ ars , that is what I did . +How did Na@@ than st@@ ay loy@@ al to both God and David when David sin@@ ned ? +How can you be loy@@ al to both Jehovah and your friend or relati@@ ve ? +Why did H@@ us@@ ha@@ i need courage to be loy@@ al to God ? +Why do we need courage to be loy@@ al ? +I pray@@ ed for courage to s@@ tic@@ k to my decis@@ ion . +Now their attitude has so@@ f@@ t@@ ened , and I can vis@@ it them reg@@ ularly . ” ​ — Read Proverbs 29 : 25 . +[ 1 ] ( par@@ ag@@ rap@@ h 7 ) Some nam@@ es have been chang@@ ed . +C@@ O@@ V@@ E@@ R S@@ U@@ B@@ J@@ E@@ C@@ T | W@@ H@@ Y D@@ I@@ D J@@ ES@@ U@@ S S@@ U@@ F@@ F@@ E@@ R AN@@ D D@@ I@@ E ? +In the sp@@ ring of 33 C.E . , Jesus the N@@ az@@ ar@@ ene was ex@@ ec@@ uted . +He had been fal@@ sel@@ y char@@ ged with se@@ d@@ ition , sa@@ vag@@ ely be@@ at@@ en , and na@@ iled to a st@@ ake . +But God ra@@ ised him back to life , and 40 days later , Jesus as@@ c@@ ended to heaven . +This ex@@ tr@@ a@@ ord@@ in@@ ary account comes to us from the four G@@ os@@ p@@ els of the Christian Greek Scriptures , comm@@ only called the New T@@ est@@ am@@ ent . +On the other hand , if those ev@@ ents really did happ@@ en , then there is a br@@ ight future for mankind , one in which you can share . +So , are the G@@ os@@ pe@@ l acc@@ oun@@ ts fact or f@@ ic@@ tion ? +Un@@ like fan@@ ci@@ ful leg@@ ends , the G@@ os@@ pe@@ l writ@@ ings refl@@ ect pa@@ inst@@ aking acc@@ ur@@ ac@@ y and attention to det@@ ai@@ l . +For example , they ab@@ ound with nam@@ es of real plac@@ es , many of which can be vis@@ ited today . +They tell about real people , who@@ se ex@@ ist@@ ence has been cor@@ ro@@ bor@@ ated by sec@@ ular hist@@ or@@ ians . ​ — Luke 3 : 1 , 2 , 23 . +Jesus himself is mentioned by sec@@ ular writ@@ ers of the first and second centur@@ ies . +* His man@@ ner of death , as describ@@ ed in the G@@ os@@ p@@ els , ag@@ re@@ es with Roman ex@@ ec@@ u@@ ti@@ onal me@@ tho@@ ds of the time . +M@@ ore@@ over , ev@@ ents are rel@@ ated in a fac@@ t@@ ual and can@@ did man@@ ner ​ — even por@@ tr@@ ay@@ ing some of Jesus ’ disciples un@@ fav@@ or@@ ably . +All these fac@@ t@@ ors str@@ ong@@ ly indic@@ ate that the G@@ os@@ pe@@ l writ@@ ers were hon@@ est and acc@@ ur@@ ate in what they wrote about Jesus . +While it is gener@@ ally accep@@ ted that Jesus liv@@ ed and died , some would question his resurrection . +Even his apostles did not believe the in@@ iti@@ al re@@ port of his having re@@ turned to life . +All doub@@ t was re@@ moved , however , when they and other disciples saw the resurrec@@ ted Jesus on se@@ par@@ ate occas@@ ions . +In fact , in one case , there were more than 5@@ 00 e@@ ye@@ wit@@ nesses present . ​ — 1 Corinthians 15 : 6 . +At the ris@@ k of being ar@@ res@@ ted and k@@ ill@@ ed , the disciples courag@@ e@@ ously pro@@ claim@@ ed Jesus ’ resurrection to all ​ — even to the very ones who had ex@@ ec@@ uted him . +W@@ ould so many disciples have been so bo@@ ld if they were not ab@@ sol@@ ut@@ ely sure that Jesus had really been resurrec@@ ted ? +In fact , the re@@ ality of the resurrection of Jesus is the dr@@ iving for@@ ce be@@ h@@ ind the im@@ pa@@ c@@ t that Christi@@ an@@ ity has had on the world both then and now . +The G@@ os@@ pe@@ l acc@@ oun@@ ts of Jesus ’ death and resurrection be@@ ar all the necess@@ ary mar@@ ks of an au@@ th@@ enti@@ c hist@@ or@@ ical rec@@ ord . +C@@ are@@ fully reading them will con@@ v@@ in@@ ce you that these ev@@ ents really happ@@ ened . +Your con@@ vic@@ tion can be fur@@ ther streng@@ th@@ ened when you understand why they took place . +T@@ ac@@ it@@ us , born about 5@@ 5 C.E . , wrote that “ Christ@@ us , from whom the name [ Christians ] had its orig@@ in , suffer@@ ed the ext@@ re@@ me pen@@ al@@ ty during the re@@ ign of T@@ ib@@ er@@ i@@ us at the hand@@ s of one of our pro@@ cur@@ at@@ ors , P@@ on@@ ti@@ us P@@ il@@ at@@ us . ” +Jesus is also refer@@ red to by Su@@ et@@ on@@ i@@ us ( first century ) ; Jewish hist@@ or@@ ian Josep@@ h@@ us ( first century ) ; and P@@ l@@ in@@ y the Y@@ oun@@ g@@ er , gover@@ nor of B@@ i@@ th@@ y@@ n@@ ia ( early second century ) . +Then , too , it is un@@ likely that Jesus ’ many op@@ pos@@ ers would wr@@ ite any@@ thing that would l@@ end cre@@ di@@ b@@ ility to the repor@@ ts about him . +Re@@ gar@@ ding Jesus ’ resurrection , Peter , one of his apostles , explain@@ ed : “ God ra@@ ised this one up on the th@@ ir@@ d day and al@@ low@@ ed him to become man@@ if@@ est , not to all the people , but to wit@@ nesses appoin@@ ted be@@ for@@ e@@ hand by God , to us , who ate and d@@ ran@@ k with him after his ris@@ ing from the dead . ” +Matthe@@ w@@ ’@@ s G@@ os@@ pe@@ l tell@@ s us that when the religious enem@@ ies heard repor@@ ts of Jesus ’ resurrection , they s@@ chem@@ ed to sup@@ pres@@ s them . ​ — Matthew 28 : 11 - 15 . +Does this mean that Jesus wanted his resurrection to be kept se@@ cre@@ t ? +No , for Peter went on to say : “ He ord@@ ered us to pre@@ ach to the people and to give a thor@@ ough witness that this is the one dec@@ re@@ ed by God to be jud@@ ge of the living and the dead . ” +Tru@@ e Christians have done and are doing just that . ​ — Acts 10 : 42 . +“ Th@@ r@@ ough one man [ Adam ] sin ent@@ ered into the world and death through sin . ” ​ — Romans 5 : 12 +What would you say if you were asked , “ Do you want to live for@@ ever ? ” +M@@ ost people would prob@@ ably say that they want to but that they feel it is un@@ real@@ is@@ tic to consider it . +De@@ ath is a nor@@ ma@@ l part of life , they say , the n@@ atur@@ al out@@ come of our ex@@ ist@@ ence . +S@@ up@@ pose , though , that the question were turned around and you were asked , “ Are you ready to die ? ” +U@@ nd@@ er nor@@ ma@@ l circum@@ stances , most people would answer no . +The Bible shows that God cre@@ ated humans with the desire and the will to live . +In fact , it says that “ he has even put et@@ ern@@ ity in their heart . ” ​ — Ec@@ cl@@ esi@@ ast@@ es 3 : 11 . +The re@@ ality , though , is that humans do not live for@@ ever . +F@@ ur@@ ther@@ more , has God done any@@ thing to rem@@ ed@@ y the situation ? +The Bib@@ le@@ ’@@ s ans@@ wers are hear@@ t@@ ening , and they have a dir@@ ect be@@ aring on why Jesus suffer@@ ed and died . +The first three chap@@ ters of the Bible book of Genesis tell us that God set before the first human cou@@ ple , Adam and E@@ ve , the pros@@ p@@ ect of un@@ ending life and told them what they would have to do to gain it . +Then the account describ@@ es how they fa@@ iled to obe@@ y God and lost that pros@@ p@@ ect . +The st@@ ory is told simply ​ — so simply that some are qu@@ ick to dis@@ mis@@ s it as fol@@ k@@ l@@ ore . +But Genesis , like the G@@ os@@ p@@ els , gives every indic@@ ation of being a fac@@ t@@ ual , hist@@ or@@ ical rec@@ ord . +What has been the result of Ad@@ am@@ ’@@ s fa@@ il@@ ure to obe@@ y ? +The Bible ans@@ wers this way : “ Th@@ r@@ ough one man [ Adam ] sin ent@@ ered into the world and death through sin , and so death sp@@ read to all men because they had all sin@@ ned . ” +He thus lost the pros@@ p@@ ect of end@@ less life and ev@@ ent@@ ually died . +Be@@ ing his des@@ c@@ end@@ ants , we have in@@ her@@ ited his sin@@ ful cond@@ ition . +But has God done any@@ thing to rem@@ ed@@ y the situation ? +Yes , God made arrang@@ ements to re@@ de@@ em , or bu@@ y back , what Adam had lost for his des@@ c@@ end@@ ants , nam@@ ely , the pros@@ p@@ ect of end@@ less life . +“ The wa@@ ges sin pa@@ ys is death , ” says the Bible at Romans 6 : 23 . +This means that death is the con@@ se@@ qu@@ ence of sin . +L@@ ik@@ e@@ wise , we sin and are therefore sub@@ ject to sin@@ ’@@ s wa@@ ges , death . +But we were born in this sin@@ ful cond@@ ition through no fa@@ ult of our own . +So God lov@@ ingly sent his Son , Jesus , to accept ‘ the wa@@ ges of sin ’ for us . +Jesus ’ death op@@ ens the way to a happy , end@@ less life +Since one man , the perfect man Adam , brought sin and death on us through dis@@ obedi@@ ence , a perfect man obedi@@ ent even till death was needed to re@@ le@@ ase us from that bur@@ den . +The Bible explain@@ s it this way : “ J@@ ust as through the dis@@ obedi@@ ence of the one man many were made sin@@ n@@ ers , so also through the obedi@@ ence of the one person many will be made righteous . ” +He left heaven , became a perfect man * , and died in our be@@ half . +As a result , it is possible for us to have a righteous standing with God and gain the pros@@ p@@ ect of end@@ less life . +Why , though , was it necess@@ ary for Jesus to die to ac@@ compl@@ ish this ? +C@@ ould not Al@@ m@@ igh@@ ty God have simply is@@ su@@ ed a dec@@ ree that Ad@@ am@@ ’@@ s des@@ c@@ end@@ ants be al@@ low@@ ed to live for@@ ever ? +H@@ ad God set jus@@ tice as@@ ide in this inst@@ ance , people might have wond@@ ered whether he would do so in other matters as well . +For example , would he be fai@@ r in determin@@ ing who among Ad@@ am@@ ’@@ s off@@ sp@@ ring qual@@ if@@ y for et@@ ern@@ al life ? +C@@ ould he be tr@@ us@@ ted to keep his prom@@ ises ? +God@@ ’@@ s ad@@ her@@ ence to jus@@ tice in working out our sal@@ vation is as@@ sur@@ ance to us that he will always do what is right . +By Jesus ’ sacrif@@ ic@@ ial death , God op@@ ened the way to end@@ less life in Par@@ adise on earth . +N@@ ote Jesus ’ words as rec@@ ord@@ ed at John 3 : 16 : “ God loved the world so much that he gave his only - beg@@ ot@@ ten Son , so that every@@ one exerc@@ is@@ ing faith in him might not be destro@@ yed but have everlasting life . ” +Jesus ’ death is thus an expres@@ sion not only of God@@ ’@@ s un@@ fa@@ il@@ ing jus@@ tice but , more spec@@ ially , of his great love for humans . +However , why did Jesus have to su@@ ff@@ er and die in the pa@@ in@@ ful way that was describ@@ ed in the G@@ os@@ p@@ els ? +By sub@@ j@@ ec@@ ting himself to the ext@@ re@@ me t@@ est and remain@@ ing faithful , Jesus ref@@ uted once and for all the D@@ ev@@ il@@ ’@@ s cl@@ ai@@ m that humans would not remain loy@@ al to God when under tr@@ ial . +That cl@@ ai@@ m might have se@@ em@@ ed va@@ li@@ d after Satan ind@@ uc@@ ed perfect Adam to sin . +But Jesus ​ — who was Ad@@ am@@ ’@@ s perfect equ@@ i@@ val@@ ent — ​ remain@@ ed obedi@@ ent des@@ pite se@@ v@@ ere suffering . +He thus proved that Adam too could have obe@@ yed God if he had ch@@ os@@ en to do so . +By end@@ uring under tr@@ ial , Jesus left us a mo@@ de@@ l to follow . +God re@@ war@@ ded his S@@ on@@ ’@@ s perfect obedi@@ ence , gr@@ an@@ ting Jesus im@@ mor@@ t@@ al life in heaven . +Jesus indic@@ ated what we need to do when he said : “ This means everlasting life , their coming to know you , the only true God , and the one whom you sent , Jesus Christ . ” ​ — John 17 : 3 . +The publ@@ ish@@ ers of this magaz@@ ine inv@@ ite you to learn more about Jehovah , the true God , and about his Son , Jesus Christ . +Jehova@@ h@@ ’@@ s Witnesses in your commun@@ ity will be happy to ass@@ ist you . +You can also receive help@@ ful information by vis@@ iting our we@@ b@@ s@@ ite , w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g . +See “ The H@@ ist@@ or@@ ical Ch@@ ar@@ ac@@ ter of Genesis , ” in In@@ sight on the Scriptures , V@@ ol@@ ume 1 , page 9@@ 22 , publ@@ ished by Jehova@@ h@@ ’@@ s Witnesses . +God@@ ’@@ s trans@@ f@@ er of his S@@ on@@ ’@@ s life from heaven to the wom@@ b of M@@ ary ca@@ used con@@ c@@ ep@@ tion , and God@@ ’@@ s holy spirit sh@@ i@@ eld@@ ed Jesus from in@@ her@@ iting im@@ perf@@ ection from M@@ ary . ​ — Luke 1 : 31 , 35 . +On the night before he sur@@ r@@ end@@ ered his life , Jesus ga@@ ther@@ ed with his faithful apostles and inst@@ it@@ uted the M@@ emor@@ ial of his death . +He said to them : “ K@@ eep doing this in rem@@ emb@@ r@@ ance of me . ” +In obedi@@ ence to that comm@@ and , Jehova@@ h@@ ’@@ s Witnesses world@@ wide ga@@ ther ann@@ ually on the ann@@ iver@@ s@@ ary of Jesus ’ death . +This year , the M@@ emor@@ ial of Jesus ’ death f@@ all@@ s on W@@ ed@@ nes@@ day , Mar@@ ch 23 , after s@@ un@@ down . +A@@ t@@ t@@ end@@ ance is free ; no col@@ l@@ ec@@ tions will be taken . +P@@ le@@ ase ask Jehova@@ h@@ ’@@ s Witnesses in your are@@ a for the time and loc@@ ation . +O@@ r you may con@@ su@@ l@@ t our we@@ b@@ s@@ ite , w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g . +W@@ O@@ U@@ L@@ D Y@@ O@@ U S@@ A@@ Y that the Devil is . . . +A sy@@ mb@@ ol of the evil in@@ side a person ? +The Devil con@@ ver@@ sed with and “ tem@@ p@@ ted ” Jesus . +The Devil was orig@@ in@@ ally a holy ang@@ el , but “ he did not stand f@@ ast in the truth . ” +He became a li@@ ar and re@@ bel@@ led against God . +O@@ ther ang@@ els jo@@ ined Sat@@ an@@ ’@@ s re@@ bel@@ li@@ on . ​ — Revelation 12 : 9 . +The Devil bl@@ ind@@ s many people to his ex@@ ist@@ ence . ​ — 2 Corinthians 4 : 4 . +S@@ O@@ M@@ E P@@ E@@ O@@ P@@ L@@ E S@@ A@@ Y that control by the Devil is a ho@@ a@@ x , while others d@@ read being poss@@ ess@@ ed by evil spir@@ its . +The Devil ex@@ er@@ ts great influ@@ ence over mankind , but he does not control every human . +The Devil uses dec@@ ep@@ tion to increas@@ e his influ@@ ence . ​ — 2 Corinthians 11 : 14 . +W@@ ic@@ ked spir@@ its can in some cas@@ es take control of people . ​ — Matthew 12 : 22 . +With God@@ ’@@ s help , you can succ@@ ess@@ fully “ op@@ pose the Devil . ” ​ — James 4 : 7 . +“ Who of you wan@@ ting to bu@@ ild a tower does not first s@@ it down and cal@@ cul@@ ate the exp@@ ense to see if he has en@@ ough to compl@@ ete it ? ” ​ — L@@ U@@ K@@ E 14 : 28 . +What is mat@@ ur@@ ity , and how did Daniel dis@@ pl@@ ay that qu@@ ality ? +How can you tell if the decis@@ ion to get baptized comes from your heart ? +What is dedic@@ ation , and how is it rel@@ ated to bap@@ tis@@ m ? +1 , 2 . ( a ) What gives God@@ ’@@ s people joy today ? +( b ) How can Christian parents and elders help young ones to understand the meaning of bap@@ tis@@ m ? +I would like to ask you , ‘ Why do you want to take that st@@ ep ? ’ ” +( Read Luke 14 : 27 - 30 . ) +( a ) What do the words of Jesus and Peter teach us about the import@@ ance of bap@@ tis@@ m ? +( b ) What questions will we consider , and why ? +( 2 ) Do I have a personal desire to do so ? +( 3 ) Do I understand what it means to be dedic@@ ated to Jehovah ? +4 , 5 . ( a ) Why is bap@@ tis@@ m not for ol@@ der people only ? +( b ) What does it mean for a Christian to be mat@@ ure ? +We read at Proverbs 20 : 11 : “ Even a child is known by his ac@@ tions , whether his be@@ ha@@ vi@@ or is p@@ ure and right . ” +6 , 7 . ( a ) D@@ es@@ crib@@ e the chall@@ eng@@ es Daniel had when he was in Babyl@@ on . ( b ) How did Daniel prove to be mat@@ ure ? +A mat@@ ure young person does not act like a friend of God at the Kingdom H@@ all but a friend of the world at school ( See par@@ ag@@ rap@@ h 8 ) +He does not act like a friend of God at the Kingdom H@@ all but a friend of the world at school . +9 , 10 . ( a ) How might a young person benefit from thinking about how he or she has re@@ ac@@ ted to rec@@ ent t@@ ests of faith ? +11 , 12 . ( a ) A person who is thinking about g@@ etting baptized needs to be sure of what ? +( b ) What will help you to keep the right view of Jehova@@ h@@ ’@@ s arrang@@ ement of bap@@ tis@@ m ? +How can you tell whether the decis@@ ion to get baptized comes from your heart ? +He hand@@ s you the t@@ it@@ le and says : “ The c@@ ar is your@@ s . ” +18 , 19 . ( a ) How do the expres@@ sions of R@@ ose and Christ@@ op@@ her illustr@@ ate that being baptized is a privil@@ ege that lead@@ s to bless@@ ings ? +( b ) How do you feel about the privil@@ ege of bap@@ tis@@ m ? +My life is fill@@ ed with satis@@ f@@ ying work for Jehovah and his organization . ” +What does it mean to be “ per@@ su@@ ad@@ ed to believe ” ? +What are “ holy ac@@ ts of conduct ” and “ de@@ ed@@ s of go@@ dly dev@@ o@@ tion ” ? +How can m@@ ed@@ it@@ ating on the ran@@ so@@ m help you bu@@ ild your appreci@@ ation for Jehovah ? +1 , 2 . ( a ) Ex@@ pl@@ ain why bap@@ tis@@ m is a serious st@@ ep . ( b ) What should a person be sure of before g@@ etting baptized , and why ? +What less@@ on can young ones learn from the example of Timothy ? +D@@ es@@ crib@@ e how the on@@ line ser@@ ies of study gu@@ id@@ es , “ What Does the Bible Re@@ ally T@@ each ? , ” can help you streng@@ then your con@@ vic@@ tion . +One te@@ en@@ age sis@@ ter said : “ B@@ efore I dec@@ ided to get baptized , I stu@@ died the Bible and saw that this is the true religion . +And each day that I live , that con@@ vic@@ tion g@@ ets str@@ ong@@ er . ” +Why is it reason@@ able to exp@@ ect that a baptized Christian would have ac@@ tions in line with his faith ? +The Bible says : “ F@@ a@@ ith by it@@ self , without works , is dead . ” +Ex@@ pl@@ ain the expres@@ sion “ holy ac@@ ts of conduct . ” +For example , think about the past si@@ x mon@@ ths . +What are some “ de@@ ed@@ s of go@@ dly dev@@ o@@ tion , ” and how should you view them ? +What pro@@ vis@@ ion can help you to per@@ form “ de@@ ed@@ s of go@@ dly dev@@ o@@ tion , ” and how have some young ones benef@@ ited from this pro@@ vis@@ ion ? +“ What do you includ@@ e in your personal study ? ” +“ Do you eng@@ age in the ministry even if your parents do not ? ” +A young sis@@ ter nam@@ ed T@@ il@@ da said : “ I used the work@@ sh@@ e@@ et to set go@@ als . +One by one I re@@ ached those go@@ als , and I was ready for bap@@ tis@@ m about a year later . ” +W@@ ould you continue to serve Jehovah even if your parents did not ? +Ex@@ pl@@ ain why dedic@@ ation should be a personal decis@@ ion . +16 , 17 . ( a ) What should mo@@ tiv@@ ate a person to become a Christian ? +( b ) How can appreci@@ ation for the ran@@ so@@ m be illustr@@ ated ? +Jesus ans@@ w@@ ered : “ You must love Jehovah your God with your whole heart and with your whole soul and with your whole mind . ” +( Read 2 Corinthians 5 : 14 , 15 ; 1 John 4 : 9 , 19 . ) +18 , 19 . ( a ) Why should you not fear bel@@ ong@@ ing to Jehovah ? +( b ) How does serving Jehovah make your life better ? +What can a young person do in order to pro@@ g@@ ress toward dedic@@ ation and bap@@ tis@@ m ? +“ How Can I Im@@ prove in My P@@ ra@@ y@@ ers ? ” ​ — No@@ v@@ ember 200@@ 8 +“ How Can I M@@ ake Bible Re@@ ad@@ ing En@@ jo@@ y@@ able ? ” ​ — A@@ pri@@ l 200@@ 9 +“ Who A@@ m I ? ” ​ — O@@ c@@ to@@ b@@ er 20@@ 11 +“ How Can I En@@ joy St@@ ud@@ ying the Bible ? ” ​ — Fe@@ b@@ ru@@ ary 20@@ 12 +“ Why G@@ o to Christian Me@@ et@@ ings ? ” ​ — A@@ pri@@ l 20@@ 12 +How are we un@@ ited as we pre@@ ach the good news ? +What are some things we can do to help our congregation to be un@@ ited ? +How can a husband and wife st@@ ay un@@ ited ? +From the beg@@ in@@ ning , what has char@@ ac@@ ter@@ ized God@@ ’@@ s works ? +( a ) What was no@@ te@@ wor@@ thy about the early Christian congregation ? +( b ) What questions will we add@@ ress ? +( Read 1 Corinthians 12 : 4 - 6 , 12 . ) +As we work together , what are we able to do ? +8 , 9 . ( a ) What illustr@@ ation did Paul use to teach Christians to st@@ ay un@@ ited ? +( b ) How can we co@@ op@@ er@@ ate in the congregation ? +( Read Ephesians 4 : 15 , 16 . ) +How do minis@@ ter@@ ial servants help the congregation to be un@@ ited ? +What can help all in the family to co@@ op@@ er@@ ate with one another ? +If your husband or wife is not serving Jehovah , what can you do to keep your marriage strong ? +How can ol@@ der married ones help youn@@ g@@ er ones ? +What do God@@ ’@@ s un@@ ited servants look for@@ ward to ? +Jehovah provid@@ ed what gu@@ id@@ ance in the days of No@@ ah and Moses ? +What new gu@@ id@@ ance did God provide for Christians ? +How can we show that we are look@@ ing to God for gu@@ id@@ ance ? +1 , 2 . ( a ) Many lives have been sav@@ ed by what war@@ ning ? +How did the human family get on a p@@ ath lead@@ ing to death ? +( a ) Why were add@@ iti@@ onal gu@@ id@@ el@@ ines needed after the F@@ lo@@ od ? +( b ) How did new circum@@ stances reve@@ al God@@ ’@@ s thinking ? +What will we now exam@@ ine , and why ? +Why was it necess@@ ary for God@@ ’@@ s people to obe@@ y the la@@ ws given through Moses , and what attitude did the Israelites need to have ? +( a ) Ex@@ pl@@ ain why Jehovah gave dir@@ ec@@ tions to his people . ( b ) How was the Law a gu@@ ar@@ di@@ an for Israel ? +Why should we be gu@@ ided by the principles of the Mos@@ ai@@ c Law ? +What new circum@@ stances made new dir@@ ection from God necess@@ ary ? +Why were new la@@ ws given to the Christian congregation , and how were these different from those given to the Israelites ? +Tru@@ ly , “ God is not par@@ ti@@ al , but in every nation the man who f@@ ear@@ s him and does what is right is accep@@ table to him . ” +What are two as@@ pec@@ ts of Christian life that would be aff@@ ected by “ the law of the Christ ” ? +13 , 14 . ( a ) What is involved in Jesus ’ “ new command@@ ment ” ? +( b ) What do we learn from the example that Jesus set ? +( Read John 13 : 34 , 35 . ) +What new circum@@ stances do we now have , and how does God gu@@ ide us ? +How should we respon@@ d to the gu@@ id@@ ance being given ? +Do you view these dir@@ ec@@ tions as gu@@ id@@ ance from God ? +What sc@@ ro@@ l@@ ls will be op@@ ened , and with what result ? +It also explain@@ s the work that end@@ ur@@ ance must compl@@ ete in each of us . +How can the example of Je@@ ph@@ th@@ ah and his daugh@@ ter help us res@@ ist world@@ ly influ@@ ences ? +What Bible principles do you find help@@ ful in res@@ ol@@ ving personal con@@ fl@@ ic@@ ts ? +How has this article encourag@@ ed you to make sacrif@@ ices for the Kingdom ? +What chall@@ enge did Je@@ ph@@ th@@ ah and his daugh@@ ter face ? +Why can the example of Je@@ ph@@ th@@ ah and his daugh@@ ter be help@@ ful for us today ? +4 , 5 . ( a ) What comm@@ and did Jehovah give the Israelites when they ent@@ ered the P@@ r@@ om@@ ised L@@ and ? +( b ) According to Psalm 10@@ 6 , what happ@@ ened to the Israelites because of their dis@@ obedi@@ ence ? +What world@@ ly influ@@ ences ex@@ ist today , and what must we do ? +( a ) What did Je@@ ph@@ th@@ a@@ h@@ ’@@ s own people do to him ? +8 , 9 . ( a ) What principles in the Mos@@ ai@@ c Law may have helped Je@@ ph@@ th@@ ah ? +( b ) What was of great@@ est import@@ ance to Je@@ ph@@ th@@ ah ? +How can we al@@ low divine principles to help us act as Christians today ? +What vo@@ w did Je@@ ph@@ th@@ ah make , and what did this invol@@ ve ? +What do Je@@ ph@@ th@@ a@@ h@@ ’@@ s words rec@@ ord@@ ed at Jud@@ ges 11 : 35 reve@@ al about his faith ? +He should do every@@ thing he vo@@ wed he would do . ” +What vo@@ w have many of us made , and how can we prove faithful ? +How did Je@@ ph@@ th@@ a@@ h@@ ’@@ s daugh@@ ter re@@ act to her fa@@ ther@@ ’@@ s promise ? +( a ) How can we im@@ itate the faith of Je@@ ph@@ th@@ ah and his daugh@@ ter ? +( b ) How do the words at Hebrews 6 : 10 - 12 en@@ courage you to be self - sacrif@@ ic@@ ing ? +What have we learned from the Bible account about Je@@ ph@@ th@@ ah and his daugh@@ ter , and how can we im@@ itate them ? +What does it mean to “ let end@@ ur@@ ance compl@@ ete its work ” ? +1 , 2 . ( a ) What can we learn from the end@@ ur@@ ance of G@@ ide@@ on and his 3@@ 00 men ? +( See op@@ ening pic@@ ture . ) ( b ) According to Luke 21 : 19 , why is end@@ ur@@ ance so important ? +Our enem@@ ies includ@@ e Satan , his world , and our own im@@ perf@@ ec@@ tions . +What can we learn from those who have end@@ ur@@ ed ? +Why can we say that end@@ ur@@ ance is mo@@ tiv@@ ated by love ? +( Read 1 Corinthians 13 : 4 , 7 . ) +Lo@@ ve for our brothers help@@ s us to end@@ ure their im@@ perf@@ ec@@ tions . +Why is Jehovah the best one to help us end@@ ure ? +Jehovah is “ the God who sup@@ pli@@ es end@@ ur@@ ance and com@@ fort . ” +As prom@@ ised in the Bible , how may Jehovah “ make the way out ” of tr@@ ials for us ? +I@@ l@@ l@@ ustr@@ ate why we need spiritual food to end@@ ure . +8 , 9 . ( a ) According to Job 2 : 4 , 5 , what is involved when we face tr@@ ials ? +( b ) When you face tr@@ ials , what in@@ vis@@ ible sc@@ ene might you im@@ ag@@ ine ? +H@@ as Satan chang@@ ed since he made that cl@@ ai@@ m ? +Why should we consider the experi@@ ences of “ those who have end@@ ur@@ ed ” ? +What do we learn from the example of the ch@@ er@@ u@@ bs pos@@ ted at E@@ den ? +How was Job able to end@@ ure his tr@@ ials ? +Job liv@@ ed “ a long and satis@@ f@@ ying life . ” ​ — Job 42 : 10 , 17 . +According to 2 Corinthians 1 : 6 , how did the end@@ ur@@ ance of Paul help others ? +( Read 2 Corinthians 1 : 6 . ) +15 , 16 . ( a ) What “ work ” must end@@ ur@@ ance compl@@ ete ? +( b ) G@@ ive exam@@ ples of how we can “ let end@@ ur@@ ance compl@@ ete its work . ” +When we end@@ ure tr@@ ials , our Christian person@@ ality becom@@ es more compl@@ ete ( See par@@ ag@@ rap@@ h@@ s 15 , 16 ) +17 , 18 . ( a ) I@@ l@@ l@@ ustr@@ ate the import@@ ance of end@@ uring to the end . ( b ) As we get clos@@ er to the end , what conf@@ idence can we have ? +[ 1 ] ( par@@ ag@@ rap@@ h 11 ) You will also find it encourag@@ ing to re@@ view the end@@ ur@@ ance of God@@ ’@@ s people in moder@@ n times . +[ 2 ] ( par@@ ag@@ rap@@ h 12 ) The Bible does not say how many ch@@ er@@ u@@ bs were as@@ sig@@ ned to this t@@ ask . +“ They continu@@ ed dev@@ ot@@ ing themselves . . . to associ@@ ating together . ” ​ — A@@ C@@ T@@ S 2 : 42 . +how we help others when we att@@ end meetings . +1 - 3 . ( a ) How have Christians sho@@ wn that they are e@@ ag@@ er to me@@ et together ? +( See op@@ ening pic@@ ture . ) ( b ) What will we discus@@ s in this article ? +It was a very up@@ build@@ ing and faith - streng@@ th@@ ening experience for us . ” +How does meet@@ ing together help us to learn about Jehovah ? +How have meetings helped you to use what you learned from the Bible and to im@@ prove the way you pre@@ ach ? +How do our meetings en@@ courage us and help us to keep strong ? +( Read Acts 15 : 30 - 32 . ) +Why is it so important to be at our meetings ? +When our brothers see us at the meetings and he@@ ar us com@@ ment and sing , how does this help them ? +( See also the bo@@ x “ He Al@@ ways Le@@ av@@ es Fe@@ el@@ ing B@@ et@@ ter . ” ) +9 , 10 . ( a ) Ex@@ pl@@ ain how Jesus ’ words found at John 10 : 16 help us to understand why it is important to me@@ et with our brothers . ( b ) If we are at the meetings reg@@ ularly , how can we help someone who has been re@@ j@@ ected by his family ? +“ L@@ AT@@ E@@ L@@ Y , I have been bur@@ d@@ ened with health problems that make it difficult to get to the meetings . +But once I@@ ’@@ m there , I can enjoy the wond@@ erful spiritual me@@ al that Jehovah has prepar@@ ed . +Even though I come with se@@ v@@ ere k@@ ne@@ e pain , heart problems , and compl@@ ic@@ ations from di@@ ab@@ et@@ es , I always leave the meet@@ ing feel@@ ing better than when I arr@@ ived . +“ When I first heard s@@ ong number 6@@ 8 , ‘ A P@@ ra@@ y@@ er of the Lo@@ w@@ ly One , ’ s@@ un@@ g by our congregation , I was moved to te@@ ars . +My hear@@ ing ai@@ ds pic@@ ked up every@@ one@@ ’@@ s vo@@ ice , and I s@@ an@@ g along . +How does att@@ ending meetings help us to give Jehovah what he des@@ er@@ ves ? +How does Jehovah feel when we obe@@ y his comm@@ and to att@@ end meetings ? +How do we dra@@ w close to Jehovah and Jesus at meetings ? +How does going to meetings show God that we want to obe@@ y him ? +16 , 17 . ( a ) How do we know that meetings were very important to Christians in the first century ? +( b ) How did Bro@@ ther G@@ e@@ or@@ ge G@@ ang@@ as feel about Christian meetings ? +When I am among them I feel at home with my family , in a spiritual par@@ adise . ” +How do you feel about our meetings , and what are you determin@@ ed to do ? +[ 2 ] ( par@@ ag@@ rap@@ h 3 ) See the bo@@ x “ Re@@ as@@ ons to A@@ t@@ t@@ end Me@@ et@@ ings . ” +There they he@@ ar the good news through public wit@@ nes@@ sing +L@@ ef@@ t : The con@@ v@@ ent in Z@@ ar@@ ag@@ o@@ za , S@@ pain ; right : N@@ á@@ c@@ ar - Col@@ unga Bible transl@@ ation +I did not know whether I was doing the right thing . +I rem@@ ember pra@@ ying , “ T@@ han@@ k you , Jehovah , for not giving up on me and for giving me so many opport@@ un@@ ities to find what I was look@@ ing for ​ — the true knowledge of the Bible . ” +What would my par@@ is@@ hi@@ on@@ ers and my family say ? ” +I rep@@ li@@ ed : “ And what will God say ? ” +He died two mon@@ ths before the day he was going to get baptized . +What should we do when it becom@@ es difficult to st@@ ay ne@@ u@@ tr@@ al ? +What can we learn from faithful servants of Jehovah who st@@ ay@@ ed ne@@ u@@ tr@@ al ? +How can we obe@@ y both God and human govern@@ ments ? +How do we show that we do not take sid@@ es in the world@@ ’@@ s pol@@ it@@ ics ? +( a ) How do we know that it will become more difficult to remain ne@@ u@@ tr@@ al ? +( b ) Why should we pre@@ pare now to remain ne@@ u@@ tr@@ al ? +How should we tre@@ at those who have authority in the govern@@ ment ? +When it is difficult to remain ne@@ u@@ tr@@ al , how can we be “ c@@ au@@ ti@@ ous ” yet “ in@@ no@@ cent ” ? +( Read Matthew 10 : 16 , 17 . ) +What must we be car@@ eful of when tal@@ king to others ? +How can we make sure that we remain ne@@ u@@ tr@@ al when we wat@@ ch or read any@@ thing in the me@@ dia ? +12 , 13 . ( a ) What does Jehovah think about humans ? +( b ) How can we tell if we are becom@@ ing too pr@@ ou@@ d of our country ? +How can prayer help us , and what Bible example pro@@ ves this ? +How can the Bible help us to remain ne@@ u@@ tr@@ al ? +( See also the bo@@ x “ God@@ ’@@ s Word S@@ tr@@ eng@@ th@@ ened Their Con@@ vic@@ tion . ” ) +What can we learn from the exam@@ ples of God@@ ’@@ s faithful servants who remain@@ ed ne@@ u@@ tr@@ al ? +( Read Daniel 3 : 16 - 18 . ) +18 , 19 . ( a ) How can the members of your congregation help you to remain ne@@ u@@ tr@@ al ? +“ M@@ ed@@ it@@ ating on Proverbs 27 : 11 , Matthew 26 : 5@@ 2 , and John 13 : 35 streng@@ th@@ ened my con@@ vic@@ tion to ref@@ use mil@@ it@@ ary service . +These ver@@ ses also helped me to remain cal@@ m during my tr@@ ial . ” ​ — A@@ nd@@ ri@@ y , from U@@ k@@ ra@@ ine . +“ Isaiah 2 : 4 helped me to remain ne@@ u@@ tr@@ al under t@@ est . +I pic@@ tur@@ ed in my mind the qu@@ i@@ et@@ ness of life in the new world , when no one will car@@ ry a we@@ ap@@ on to har@@ m his neigh@@ b@@ or . ” ​ — W@@ il@@ m@@ er , from Col@@ omb@@ ia . +“ K@@ eep peace with one another . ” ​ — M@@ AR@@ K 9 : 50 . +What counsel did Jesus give to help us hand@@ le differ@@ ences in a spirit of love ? +What questions might a Christian ask himself when dec@@ id@@ ing how to s@@ et@@ tle differ@@ ences with others ? +How can the three st@@ ep@@ s out@@ l@@ ined at Matthew 18 : 15 - 17 be used to res@@ ol@@ ve some con@@ fl@@ ic@@ ts ? +What human str@@ ug@@ g@@ les are fe@@ atur@@ ed in Genesis , and why is this of interest ? +What attitude sp@@ read thr@@ ough@@ out the world , and what has been the result ? +How did Jesus teach people to hand@@ le dis@@ ag@@ re@@ ements ? +6 , 7 . ( a ) Why is it important to s@@ et@@ tle personal differ@@ ences prom@@ p@@ tly ? +( b ) What questions should all of Jehova@@ h@@ ’@@ s people ask themselves ? +Our heavenly Father will he@@ ar such hum@@ ble pray@@ ers and answer them . ​ — 1 John 5 : 14 , 15 . +What should we do if we are off@@ ended ? +( Read Proverbs 10 : 12 ; 1 Peter 4 : 8 . ) +( a ) How did one sis@@ ter at first re@@ act to cr@@ it@@ ic@@ ism ? +( b ) What Scriptur@@ al thought helped this sis@@ ter to main@@ tain her peace ? +11 , 12 . ( a ) How should a Christian act if he believ@@ es that his brother “ has something against ” him ? +How did one overse@@ er re@@ act to har@@ s@@ h words , and what can we learn from his example ? +14 , 15 . ( a ) When should we ap@@ ply the counsel at Matthew 18 : 15 - 17 ? +( b ) What three st@@ ep@@ s did Jesus m@@ ention , and what should be our go@@ al in ap@@ pl@@ ying them ? +What shows that following Jesus ’ counsel is practic@@ al and loving ? +What bless@@ ings will we enjoy when we “ se@@ ek peace ” with one another ? +the message they pre@@ ach and why they pre@@ ach it ? +What questions ar@@ ise because of Jesus ’ words found at Matthew 24 : 14 ? +According to Matthew 28 : 19 , 20 , what four things must Jesus ’ followers do ? +What is involved in becom@@ ing “ f@@ ish@@ ers of men ” ? +( Read Matthew 4 : 18 - 22 . ) +What four questions need to be ans@@ w@@ ered , and why ? +Why can you be conf@@ ident that Jehova@@ h@@ ’@@ s Witnesses are preaching the right message ? +How do we know that the cl@@ erg@@ y of Christ@@ end@@ om are not preaching the right message ? +What is the wrong mo@@ tive for doing the preaching work ? +( Read Acts 20 : 33 - 35 . ) +How have Jehova@@ h@@ ’@@ s Witnesses sho@@ wn that they eng@@ age in the preaching work with the right mo@@ tive ? +What me@@ tho@@ ds did Jesus and his disciples use to pre@@ ach ? +When it comes to preaching the good news , how do the ef@@ forts of Christ@@ end@@ om com@@ pare with those of Jehova@@ h@@ ’@@ s people ? +They are the only ones who pre@@ ach that Jesus has been rul@@ ing as King since 1914 . +What should be the sc@@ ope of the preaching work ? +What pro@@ ves that Jehova@@ h@@ ’@@ s Witnesses have fulfill@@ ed Jesus ’ prophecy with reg@@ ard to the sc@@ ope of the work ? +On our off@@ ic@@ ial we@@ b@@ s@@ ite , information is ava@@ il@@ able in more than 7@@ 50 langu@@ ages . +How do we know that Jehova@@ h@@ ’@@ s Witnesses have God@@ ’@@ s spirit ? +17 , 18 . ( a ) Why can we be certain that Jehova@@ h@@ ’@@ s Witnesses are the ones who are preaching the good news of the Kingdom today ? +( b ) How is it possible for us to continue in this work ? +Because we are preaching the right message , the good news of the Kingdom . +What could cause us to mis@@ s out on the benef@@ its of some spiritual pro@@ vis@@ ions ? +What su@@ gg@@ es@@ tions can help us to benefit from all por@@ tions of the Bible ? +How can we benefit from consid@@ ering material dir@@ ected to young people and to the public ? +1 , 2 . ( a ) How do Jehova@@ h@@ ’@@ s Witnesses feel about the Bible ? +( b ) What is your fav@@ or@@ ite part of the Bible ? +3 , 4 . ( a ) How do we feel about our publ@@ ic@@ ations ? +( b ) What publ@@ ic@@ ations do we receive for spec@@ if@@ ic gr@@ oup@@ s of people ? +We can be sure that Jehovah appreci@@ ates what ? +Why do we need to read the Bible with an op@@ en mind ? +8 , 9 . ( a ) When reading the Bible , what questions might we ask ourselves ? +( b ) What do the qual@@ if@@ ic@@ ations for Christian elders tell us about Jehovah ? +How can I use it to help others ? ’ +( Read 1 Timothy 3 : 2 - 7 . ) +10 , 11 . ( a ) When reading the qual@@ if@@ ic@@ ations for elders , how can we ap@@ ply the information in our own life ? +( b ) How can we use this information to help others ? +12 , 13 . ( a ) U@@ sing to@@ ol@@ s ava@@ il@@ able to us , what kind of res@@ ear@@ ch might we do ? +( b ) G@@ ive an example of how b@@ ac@@ k@@ gr@@ ound information may reve@@ al less@@ ons that are not im@@ me@@ di@@ ately o@@ bv@@ ious . +How does the material publ@@ ished for young people help them , and how can it benefit others too ? +Why should ad@@ ult Christians be inter@@ ested in information for young people ? +What el@@ se do our publ@@ ic@@ ations help young people to do ? +( Read Ec@@ cl@@ esi@@ ast@@ es 12 : 1 , 13 . ) +How Can I M@@ ake Bible Re@@ ad@@ ing En@@ jo@@ y@@ able ? ” +How can we benefit from reading material written for the public ? +How can we show our gr@@ at@@ itude to Jehovah for his pro@@ vis@@ ions ? +How can our decis@@ ions aff@@ ect us and others ? +When the Bible does not give us a spec@@ if@@ ic law , how can we know what would ple@@ ase Jehovah ? +How can we get to know more about the way Jehovah thin@@ ks ? +What are some exam@@ ples of Bible la@@ ws , and how does obe@@ ying them benefit us ? +2 , 3 . ( a ) Why does the Bible not give us rul@@ es for every situation in life ? +How could our decis@@ ions aff@@ ect us and others ? +W@@ here there is no Bible law , how can we find out what Jehovah would want us to do in a certain situation ? +How did Jesus per@@ ce@@ ive what Jehovah wanted him to do ? +( Read Matthew 4 : 2 - 4 . ) +In all your ways take no@@ tice of him , and he will make your pa@@ ths str@@ ai@@ g@@ h@@ t . +What questions can we ask ourselves when we read or study the Bible ? +How can our publ@@ ic@@ ations and meetings help us to get to know what Jehovah thin@@ ks about var@@ ious matters ? +G@@ ive an example of how we can make a wise decis@@ ion when we consider what Jehovah thin@@ ks . +( Read Luke 18 : 29 , 30 . ) +How can you deter@@ m@@ ine if a certain st@@ y@@ le of clo@@ thing is pleas@@ ing to Jehovah ? +( c ) How should we@@ igh@@ ty decis@@ ions be made ? +( Read Genesis 6 : 5 , 6 . ) +How do we benefit from making decis@@ ions that ple@@ ase Jehovah ? +Of course , we will always have something new to learn about Jehovah . +After bap@@ tis@@ m , why should we keep making chang@@ es ? +Why does God exp@@ ect us to put for@@ th ef@@ fort to over@@ come our we@@ ak@@ nesses ? +What can we do to let God@@ ’@@ s Word keep on chang@@ ing our life ? +1 - 3 . ( a ) What chang@@ es may it be hard for us to make after our bap@@ tis@@ m ? +( b ) When making pro@@ g@@ ress is har@@ der than we expec@@ ted , what questions might we ask ? +Why are we un@@ able to ple@@ ase Jehovah in every@@ thing we do ? +What chang@@ es did we make before we got baptized , but what we@@ ak@@ nesses may we still str@@ ug@@ g@@ le with ? +6 , 7 . ( a ) What makes it possible for us to be Jehova@@ h@@ ’@@ s friends even though we are im@@ perfect ? +( b ) Why should we not hold back from as@@ king Jehovah for for@@ giv@@ eness ? +How do we know that we can keep put@@ ting on the new person@@ ality ? +What must we do to keep making chang@@ es with the help of the Bible , and what questions might we ask ? +Why does Jehovah exp@@ ect us to put for@@ th ef@@ fort to over@@ come our we@@ ak@@ nesses ? +What can we do to devel@@ o@@ p qual@@ ities that Jehovah lo@@ ves ? +( See the bo@@ x “ The Bible and P@@ ra@@ y@@ er Ch@@ ang@@ ed Their L@@ ives . ” ) +Why should we not be dis@@ courag@@ ed if we are not able to make chang@@ es qu@@ ick@@ ly ? +If we are loy@@ al to Jehovah , what del@@ igh@@ t@@ ful future can we look for@@ ward to ? +How can we be sure that the Bible has power to continue chang@@ ing our life ? +[ 1 ] ( par@@ ag@@ rap@@ h 1 ) The name has been chang@@ ed . +Rus@@ sel@@ l : “ S@@ up@@ pl@@ ic@@ ating Jehovah in prayer and a da@@ ily d@@ ose of Bible reading helped me . +M@@ ed@@ it@@ ating on 2 Peter 2 : 11 and on personal counsel from the elders made a bi@@ g differ@@ ence . ” +Mar@@ ia V@@ ic@@ tor@@ ia : “ I f@@ er@@ v@@ ently pray@@ ed to Jehovah to help me control my t@@ ong@@ ue . +I also saw the need to sto@@ p having close associ@@ ation with people who loved to g@@ os@@ si@@ p . +Psalm 6@@ 4 : 1 - 4 made me real@@ ize that I did not want to be one from whom others pray to be sa@@ fe@@ gu@@ ar@@ ded ! +I also came to appreci@@ ate that continu@@ ing to g@@ os@@ si@@ p would make me a po@@ or example and bring re@@ pro@@ ach on Jehova@@ h@@ ’@@ s name . ” +L@@ inda : “ I famil@@ i@@ ar@@ ized my@@ self with our tr@@ ac@@ ts so as to be prepar@@ ed to off@@ er them . +As@@ soci@@ ating with those who enjoy var@@ ious av@@ en@@ u@@ es of service has been a great help . +And I continue to re@@ ly on Jehovah through prayer . ” +All humans have fa@@ ul@@ ts that can hur@@ t others . +how Jehovah cho@@ os@@ es those whom he will mo@@ ld ? +how God m@@ ol@@ ds those who sub@@ m@@ it to him ? +How can we im@@ itate the attitude of rep@@ ent@@ ant Israelites ? +How does Jehovah cho@@ ose those whom he dra@@ ws to himself ? +( Read 1 Samuel 16 : 7@@ b . ) +How should our trust in Jehovah as our P@@ ot@@ ter aff@@ ect our attitude toward ( a ) the people in our ter@@ rit@@ ory ? +L@@ ater , in a different s@@ etting , I me@@ t a family whom I ad@@ mir@@ ed because of their good conduct . +Then one day I received a sho@@ c@@ k ​ — they were Jehova@@ h@@ ’@@ s Witnesses ! +Their be@@ ha@@ vi@@ or moved me to exam@@ ine the bas@@ is for my pre@@ j@@ u@@ di@@ ce . +I soon came to the real@@ ization that my attitude was based on ig@@ nor@@ ance and hear@@ say , not on fac@@ ts . ” +( Read Hebrews 12 : 5 , 6 , 11 . ) +How is Jehovah teaching us today , and how will this educ@@ ation continue in the future ? +And we have learned to show love to others . +How did Jesus refl@@ ect the Gre@@ at P@@ ot@@ ter@@ ’@@ s pati@@ ence and sk@@ ill ? +( Read Psalm 10@@ 3 : 10 - 14 . ) +In what ways did David prove to be like so@@ ft cl@@ ay , and how can we im@@ itate him ? +How does Jehovah mo@@ ld us by means of holy spirit and the Christian congregation ? +Th@@ ough having authority over the cl@@ ay , how does Jehovah show respect for our free will ? +How do Bible stud@@ ents show that they want Jehovah to mo@@ ld them ? +( a ) What appe@@ als to you about having Jehovah as your P@@ ot@@ ter ? +( b ) What as@@ pec@@ ts of m@@ ol@@ ding will we next consider ? +What tr@@ a@@ its could har@@ den us against Jehova@@ h@@ ’@@ s counsel ? +What qual@@ ities can help us to remain m@@ ol@@ d@@ able in God@@ ’@@ s hand@@ s ? +How can Christian parents show that Jehovah is their P@@ ot@@ ter ? +Why did God consider Daniel to be a “ very preci@@ ous man , ” and how can we be obedi@@ ent like Daniel ? +“ A@@ bo@@ ve all the things that you gu@@ ard , sa@@ fe@@ gu@@ ard your heart , for out of it are the so@@ ur@@ ces of life , ” says Proverbs 4 : 23 . +( Read 2 Ch@@ ron@@ ic@@ les 26 : 3 - 5 , 16 - 21 . ) +What could happ@@ en if we fa@@ iled to gu@@ ard against pr@@ ide ? +One brother said that in time his im@@ prop@@ er conduct did not bo@@ ther him much at all . +7 , 8 . ( a ) How did the ancient Israelites dem@@ on@@ str@@ ate the har@@ d@@ ening eff@@ ect of a l@@ ack of faith ? +( b ) What is the less@@ on for us ? +Why should we “ keep t@@ es@@ ting ” whether we are in the faith , and how can we do so ? +What can help us to be like so@@ ft cl@@ ay in Jehova@@ h@@ ’@@ s hand@@ s ? +How can Jehovah use the Christian congregation to mo@@ ld us according to our individ@@ ual needs ? +The fi@@ eld ministry can help us to cul@@ tiv@@ ate what qual@@ ities , and with what benef@@ its ? +What must parents do if they want to be truly eff@@ ective in m@@ ol@@ ding their children ? +How should parents dem@@ on@@ str@@ ate their trust in God if their child is dis@@ fel@@ low@@ sh@@ ipp@@ ed ? +( Read 1 Corinthians 5 : 11 , 13 . ) +Why should we make sub@@ mis@@ sion to Jehovah our way of life , and how will this course benefit us ? +In what sense is Jehovah our God “ one Jehovah ” ? +How can we show that we worship Jehovah as “ one Jehovah ” ? +What can we do to main@@ tain our peace and unity ? +( b ) Why did Moses speak those words ? +4 , 5 . ( a ) What is one meaning of the ph@@ r@@ ase “ one Jehovah ” ? +( b ) How is Jehovah different from the go@@ ds of the nations ? +What is another meaning of “ one , ” and how did Jehovah prove to be “ one ” ? +8 , 9 . ( a ) What does Jehovah requ@@ ire of his wor@@ sh@@ ipp@@ ers ? +( b ) How did Jesus em@@ ph@@ as@@ ize the im@@ port of Moses ’ words ? +( Read Mark 12 : 28 - 31 . ) +10 , 11 . ( a ) In what sense is our worship of Jehovah ex@@ cl@@ us@@ ive ? +( b ) How did Hebrew you@@ ths in Babyl@@ on dem@@ on@@ str@@ ate their ex@@ cl@@ us@@ ive dev@@ o@@ tion to Jehovah ? +In giving Jehovah ex@@ cl@@ us@@ ive dev@@ o@@ tion , against what must we be on gu@@ ard ? +What could we beg@@ in to love more than Jehovah ? +Why did Paul rem@@ ind Christians that God is “ one Jehovah ” ? +16 , 17 . ( a ) What prophecy is being fulfill@@ ed in our day , and with what result ? +( b ) What could under@@ m@@ ine our unity ? +18 , 19 . ( a ) What counsel is mentioned at Ephesians 4 : 1 - 3 ? +( b ) What can we do to help the congregation st@@ ay un@@ ited ? +How can we dem@@ on@@ str@@ ate that we understand that “ Jehovah our God is one Jehovah ” ? +There are many f@@ ish@@ ing v@@ ill@@ ages along the co@@ as@@ ts of T@@ rin@@ id@@ ad and T@@ ob@@ ago . +Jehova@@ h@@ ’@@ s Witnesses often take the opport@@ unity to speak with f@@ ish@@ er@@ men they me@@ et +How does the Bible show that we are all im@@ perfect ? +What can we do about our own fa@@ ul@@ ts and those of others ? +How did the Bible foret@@ ell the increas@@ e of Jehova@@ h@@ ’@@ s people ? +( Read M@@ ic@@ ah 4 : 1 , 3 . ) +This has helped them to remain “ clean from the blood of all men . ” ​ — Acts 20 : 26 . +Why is the increas@@ e of Jehova@@ h@@ ’@@ s people no@@ te@@ wor@@ thy ? +Why may others at times hur@@ t our feelings ? +( Read Romans 5 : 12 , 19 . ) +If you had liv@@ ed in Israel at the time of E@@ l@@ i and his sons , how would you have re@@ ac@@ ted ? +In what sense did E@@ l@@ i fai@@ l to discip@@ line his sons ? +How did David sin ser@@ i@@ ously , and what did God do about it ? +( a ) How did the apostle Peter fai@@ l to keep his word ? +( b ) After Pet@@ er@@ ’@@ s mis@@ take , why did Jehovah continue to use Peter ? +Why do you trust that God is always just ? +What did Jesus understand about the fa@@ ul@@ ts of Jud@@ as Is@@ car@@ i@@ ot and Peter ? +The Bible foret@@ old what about Jehova@@ h@@ ’@@ s servants in this time ? +How should we view the fa@@ ul@@ ts of others ? +13 , 14 . ( a ) Why should we be pati@@ ent with one another ? +( b ) What promise do we want to rem@@ ember ? +What did Jesus say we should do when others make mis@@ takes ? +What do you want to do when others make mis@@ takes ? +( Read Matthew 5 : 23 , 24 . ) +J@@ ust as Jehovah fre@@ ely for@@ gave you , you must also do the same . ” +The ans@@ wers to those questions are not difficult . +We can see this from what the Bible says about dis@@ cer@@ n@@ ment and wisdom . +Proverbs 3 : 13 - 15 says : “ Hap@@ p@@ y is the man who f@@ ind@@ s wisdom and the man who ac@@ qu@@ ir@@ es dis@@ cer@@ n@@ ment ; to gain it is better than g@@ ain@@ ing s@@ il@@ ver , and having it as prof@@ it is better than having go@@ ld . +It is more preci@@ ous than cor@@ als ; nothing you desire can com@@ pare to it . ” +Jesus Christ set a good example of hon@@ es@@ ty . +As man@@ ag@@ ing dir@@ ec@@ tor , I was expec@@ ted to come to ‘ an ag@@ re@@ ement ’ with the ta@@ x ag@@ ent by br@@ ib@@ ing him to over@@ look the compan@@ y@@ ’@@ s f@@ ra@@ ud@@ ul@@ ent practic@@ es . +As a result , I had the rep@@ ut@@ ation of being dis@@ hon@@ est . +When I learned the truth , I ref@@ used to continue doing that , even though the jo@@ b pa@@ id very well . +I am a good example for my two sons , and I have qual@@ if@@ ied for privil@@ eg@@ es in the congregation . +Am@@ ong ta@@ x a@@ ud@@ it@@ ors and others with whom I do bus@@ iness , I now have the rep@@ ut@@ ation of being an hon@@ est man . ” +R@@ uth moved to Israel , where she could worship the true God . +“ We all received . . . un@@ des@@ er@@ ved kindness upon un@@ des@@ er@@ ved kindness . ” ​ — J@@ O@@ H@@ N 1 : 16 . +What is the great@@ est expres@@ sion of Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness toward mankind ? +How can we show that we are no longer rul@@ ed by sin but by un@@ des@@ er@@ ved kindness ? +What bless@@ ings come to us as a result of Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness ? +1 , 2 . ( a ) D@@ es@@ crib@@ e Jesus ’ illustr@@ ation of the o@@ w@@ ner of the v@@ in@@ e@@ y@@ ard . ( b ) How does the st@@ ory illustr@@ ate the qual@@ ities of gener@@ os@@ ity and un@@ des@@ er@@ ved kindness ? +Do I not have the right to give all my work@@ ers wh@@ at@@ ever I want ? +( Read 2 Corinthians 6 : 1 . ) +Why and how has Jehovah sho@@ wn un@@ des@@ er@@ ved kindness toward all mankind ? +What does it mean that Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness is “ expres@@ sed in var@@ ious ways ” ? +The apostle Peter wrote : “ To the ext@@ ent that each one has received a gif@@ t , use it in minis@@ ter@@ ing to one another as fine st@@ e@@ war@@ ds of God@@ ’@@ s un@@ des@@ er@@ ved kindness that is expres@@ sed in var@@ ious ways . ” +The apostle John wrote : “ We all received from his full@@ ness , even un@@ des@@ er@@ ved kindness upon un@@ des@@ er@@ ved kindness . ” +How do we benefit from Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness , and how can we show our gr@@ at@@ itude for it ? +( Read 1 John 1 : 8 , 9 . ) +What do we enjoy because of God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +Ex@@ pres@@ sions of God@@ ’@@ s un@@ des@@ er@@ ved kindness : The privil@@ ege of hear@@ ing the good news ( See par@@ ag@@ rap@@ h 11 ) +How do the anointed bring the “ other sheep ” to righteousness ? +The bless@@ ing of prayer ( See par@@ ag@@ rap@@ h 12 ) +How is prayer rel@@ ated to God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +How can un@@ des@@ er@@ ved kindness “ help us at the right time ” ? +How does Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness benefit our hear@@ ts ? +T@@ han@@ ks to God@@ ’@@ s un@@ des@@ er@@ ved kindness , what hope do we have ? +( Read Psalm 4@@ 9 : 7 , 8 . ) +How did some early Christians ab@@ use God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +Because of Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness , what responsib@@ il@@ ities do we have ? +What responsib@@ ility of our@@ s will be exam@@ ined in the next article ? +[ 1 ] ( par@@ ag@@ rap@@ h 2 ) See “ U@@ nd@@ es@@ er@@ ved kindness ” in the “ G@@ l@@ os@@ s@@ ary of Bible T@@ er@@ ms ” in the re@@ vis@@ ed New World Tr@@ ans@@ l@@ ation . +“ Be@@ ar thor@@ ough witness to the good news of the un@@ des@@ er@@ ved kindness of God . ” ​ — A@@ C@@ T@@ S 20 : 24 . +What should Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness mo@@ tiv@@ ate us to do ? +How does the “ good news of the Kingdom ” high@@ light God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +How will Jehovah show his un@@ des@@ er@@ ved kindness in the new world ? +How did the apostle Paul show that he was gr@@ at@@ eful for God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +THE apostle Paul could hon@@ est@@ ly say : “ [ God@@ ’@@ s ] un@@ des@@ er@@ ved kindness to me was not in va@@ in . ” +( Read 1 Corinthians 15 : 9 , 10 . ) +( Read Ephesians 3 : 5 - 8 . ) +Why can we say that the “ good news of the Kingdom ” is the same as the good news of “ the un@@ des@@ er@@ ved kindness of God ” ? +When we expl@@ ain the ran@@ so@@ m to people , how are we sp@@ reading the good news of God@@ ’@@ s un@@ des@@ er@@ ved kindness ? +Why do sin@@ ful humans need to be re@@ con@@ c@@ iled to God ? +The apostle John wrote : “ The one who exerc@@ ises faith in the Son has everlasting life ; the one who dis@@ obe@@ ys the Son will not see life , but the wr@@ ath of God remain@@ s upon him . ” +9 , 10 . ( a ) What responsib@@ ility did Christ give to his anointed brothers ? +Th@@ er@@ efore , we are amb@@ ass@@ ad@@ ors sub@@ st@@ it@@ ut@@ ing for Christ , as though God were making an appe@@ al through us . +Why is it good news for people to learn that they can pray to Jehovah ? +Many people pray because it makes them feel good , but they do not really believe that God he@@ ars their pray@@ ers . +They need to know that Jehovah is the “ H@@ ear@@ er of prayer . ” +The p@@ sal@@ mis@@ t David wrote : “ O H@@ ear@@ er of prayer , to you people of all sor@@ ts will come . +Jesus told his disciples : “ If you ask any@@ thing in my name , I will do it . ” +13 , 14 . ( a ) What mar@@ v@@ el@@ ous privil@@ eg@@ es will the anointed have in the future ? +( b ) What wond@@ erful work will the anointed do for mankind ? +How will Jehovah show his un@@ des@@ er@@ ved kindness toward the “ other sheep ” in the future ? +M@@ illi@@ ons of humans who died without know@@ ing God will also be resurrec@@ ted . +John wrote : “ I saw the dead , the great and the small , standing before the thr@@ one , and sc@@ ro@@ l@@ ls were op@@ ened . +The dead were jud@@ ged out of those things written in the sc@@ ro@@ l@@ ls according to their de@@ ed@@ s . +And the se@@ a gave up the dead in it , and death and the G@@ ra@@ ve gave up the dead in them , and they were jud@@ ged individ@@ ually according to their de@@ ed@@ s . ” +What should we keep in mind when sh@@ aring in our wit@@ nes@@ sing work ? +The Bible says : “ The cre@@ ation it@@ self will also be set free from en@@ sl@@ av@@ ement to cor@@ rup@@ tion and have the gl@@ or@@ ious fre@@ edom of the children of God . ” +He also says : “ W@@ r@@ ite , for these words are faithful and true . ” +When we ze@@ al@@ ously pre@@ ach this good news to others , we truly gl@@ or@@ if@@ y Jehova@@ h@@ ’@@ s un@@ des@@ er@@ ved kindness ! +“ K@@ eep se@@ ek@@ ing [ God@@ ’@@ s ] Kingdom , and these things will be add@@ ed to you . ” ​ — L@@ U@@ K@@ E 12 : 31 . +What differ@@ ence is there between what we need and what we want ? +Why should we control our desire to want more material things ? +Why are you con@@ v@@ inc@@ ed that Jehovah can provide your da@@ ily needs ? +How does Satan use “ the desire of the eyes ” ? +R@@ em@@ ember , the apostle John war@@ ned : “ The world is pas@@ sing away and so is its desire . ” +What can happ@@ en to those who use most of their en@@ erg@@ y to get more things ? +What will we consider next , and why ? +8 , 9 . ( a ) Why should we not wor@@ ry too much about the things we need ? +( b ) What did Jesus know about humans and their needs ? +When Jesus taught his followers how to pray , what did he say should be most important in their life ? +What do we learn from the way Jehovah car@@ es for the bir@@ ds of heaven ? +We should “ ob@@ serve int@@ ently the bir@@ ds of heaven . ” +Of course , he does not put the food in their be@@ ak@@ s ! +What pro@@ ves that we are wor@@ th more than the bir@@ ds of heaven ? +( Com@@ pare Luke 12 : 6 , 7 . ) +15 , 16 . ( a ) What do we learn from the way Jehovah car@@ es for the l@@ il@@ ies of the fi@@ eld ? +( See op@@ ening pic@@ ture . ) ( b ) What questions might we need to ask ourselves , and why ? +What does Jehovah know about us person@@ ally , and what will he do for us ? +Why should we not wor@@ ry about what might happ@@ en in the future ? +Can you sim@@ pli@@ f@@ y your life to fo@@ c@@ us more on the Kingdom ? +( a ) What is a go@@ al you may set in Jehova@@ h@@ ’@@ s service ? +( b ) What can you do to sim@@ pli@@ f@@ y your life ? +What will help you to dra@@ w clos@@ er to Jehovah ? +I@@ l@@ l@@ ustr@@ ate why it is important to be aw@@ are of what time it is and what is happ@@ ening around us . +Why did Jesus tell his disciples to “ keep on the wat@@ ch ” ? +Why do we pa@@ y attention to Jesus ’ war@@ ning ? +( a ) Why can we believe that Jesus now kno@@ ws when Ar@@ mag@@ ed@@ don will occ@@ ur ? +( b ) Although we do not know when the great trib@@ ulation will beg@@ in , what can we be sure of ? +When on earth , Jesus said : “ Con@@ cer@@ ning that day and h@@ our no@@ body kno@@ ws , ne@@ ither the ang@@ els of the heav@@ ens nor the Son , but only the Father . ” +( Read H@@ ab@@ ak@@ ku@@ k 2 : 1 - 3 . ) +G@@ ive an example to show that Jehova@@ h@@ ’@@ s prophec@@ ies are always fulfill@@ ed right on time . +Jehova@@ h@@ ’@@ s prophec@@ ies have always been fulfill@@ ed right on time ! +S@@ om@@ etim@@ e later , Jehovah told Abraham : “ K@@ now for certain that your off@@ sp@@ ring will be for@@ e@@ ign@@ ers in a land not the@@ ir@@ s and that the people there will en@@ slave them and aff@@ l@@ ic@@ t them for 4@@ 00 years . ” +Why can we be sure that Jehovah will sa@@ ve his people ? +7 , 8 . ( a ) What was the ro@@ le of a wat@@ ch@@ man in ancient times , and what less@@ on does that teach us ? +( b ) G@@ ive an example of what could happ@@ en when wat@@ ch@@ men f@@ ell as@@ le@@ ep on the jo@@ b . +What are most people today not aw@@ are of ? +10 , 11 . ( a ) Of what must we be car@@ eful , and why ? +( b ) What con@@ v@@ inc@@ es you that the Devil has influ@@ enced people to ign@@ ore Bible prophecy ? +Why must we not let the Devil dec@@ e@@ ive us ? +Jesus war@@ ned us : “ K@@ eep ready , because at an h@@ our that you do not think likely , the Son of man is coming . ” +How is the spirit of the world aff@@ ec@@ ting mankind , and how can we avoid that d@@ ang@@ er@@ ous influ@@ ence ? +What war@@ ning do we find at Luke 21 : 34 , 35 ? +( Read Luke 21 : 34 , 35 . ) +What happ@@ ened to Peter , James , and John , and how might that happ@@ en to us too ? +According to Luke 21 : 36 , how did Jesus instruc@@ t us to “ keep a@@ wake ” ? +How can we make sure that we are ready for what is coming in the near future ? +[ 1 ] ( par@@ ag@@ rap@@ h 14 ) See chap@@ ter 21 of the book God@@ ’@@ s Kingdom R@@ ul@@ es ! +During an ass@@ emb@@ ly , a brother asked me if I would like to pre@@ ach . +We went to the ter@@ rit@@ ory , and he gave me some book@@ l@@ ets about God@@ ’@@ s Kingdom . +One of the s@@ isters there gave us children Bible less@@ ons based on the Bible and the book The H@@ ar@@ p of God . +As a te@@ en@@ ag@@ er , I enjo@@ yed giving people hope from God@@ ’@@ s Word . +The brother st@@ op@@ ped his b@@ ic@@ y@@ c@@ le and asked me to s@@ it down with him on a lo@@ g . +He said : “ Who gave you authority to jud@@ ge who is a go@@ at ? +L@@ et@@ ’@@ s just be happy giving people the good news and leave the judg@@ ing to Jehovah . ” +Ano@@ ther ol@@ der brother taught me that to find happiness in giving , we som@@ etimes have to end@@ ure pati@@ ently . +Y@@ ear@@ s later , his pati@@ ence was re@@ war@@ ded when his wife was baptized as one of Jehova@@ h@@ ’@@ s Witnesses . +After the war , I pione@@ ered for two years in sou@@ ther@@ n I@@ rel@@ and . +We did not real@@ ize how much power the pri@@ ests had . +I had never sa@@ iled before , so I was exc@@ ited . +For f@@ ive years , we pre@@ ached main@@ ly on is@@ ol@@ ated is@@ lands where there were no Witnesses . +The cre@@ w of mission@@ ar@@ ies ab@@ o@@ ard the S@@ ib@@ ia ( left to right ) : R@@ on Par@@ k@@ in , D@@ ick R@@ y@@ de , G@@ ust Mak@@ i , and St@@ an@@ le@@ y C@@ ar@@ ter +O@@ f@@ ten , they gave us f@@ res@@ h f@@ ish , avo@@ c@@ ad@@ o@@ s , and pe@@ an@@ ut@@ s . +Then at d@@ us@@ k we ran@@ g the ship@@ ’@@ s bel@@ l . +It was lov@@ ely to see how ser@@ i@@ ously some of them took their as@@ sign@@ ment . +When we arr@@ ived , I me@@ t and f@@ ell in love with Ma@@ x@@ ine Bo@@ y@@ d , a be@@ au@@ ti@@ ful mission@@ ary sis@@ ter . +So I said to my@@ self , ‘ R@@ on@@ al@@ d , if you want this gir@@ l , you@@ ’@@ ve got to act qu@@ ick@@ ly . ’ +After three we@@ ek@@ s I pro@@ posed , and after si@@ x we@@ ek@@ s we were married . +Ma@@ x@@ ine and I were as@@ sig@@ ned as mission@@ ar@@ ies to P@@ u@@ er@@ to R@@ ic@@ o , so I never went out on the new bo@@ at . +For example , in the v@@ ill@@ age of P@@ ot@@ al@@ a Pas@@ ti@@ l@@ l@@ o , there were two Witness famil@@ ies with many children , and I used to pl@@ ay the fl@@ ute for them . +I asked one of the little gir@@ ls , H@@ il@@ da , if she wanted to come and pre@@ ach with us . +We b@@ ought her a pa@@ ir , and she came preaching with us . +She was about to leave for her as@@ sign@@ ment in Ec@@ u@@ ad@@ or , and she said : “ You d@@ on@@ ’@@ t recogn@@ ize me , do you ? +I am the little gir@@ l from Pas@@ ti@@ l@@ l@@ o who had no sho@@ es . ” +At first , L@@ en@@ n@@ ar@@ t Joh@@ n@@ son and I did most of the work . +Na@@ than K@@ nor@@ r , who was then taking the lead among Jehova@@ h@@ ’@@ s Witnesses , came to P@@ u@@ er@@ to R@@ ic@@ o . +L@@ ater , he gave me strong counsel about being organ@@ ized and said that he was dis@@ appoin@@ ted in me . +Father did not accept the truth when M@@ other and I did . +My de@@ ar wife , Ma@@ x@@ ine , died in 20@@ 11 . +I am really look@@ ing for@@ ward to se@@ e@@ ing her again in the resurrection . +After 60 years on the is@@ land , I felt as P@@ u@@ er@@ to R@@ ican as a co@@ qu@@ í , the pop@@ ular little P@@ u@@ er@@ to R@@ ican t@@ ree f@@ ro@@ g that s@@ ings ko - ke@@ e , ko - ke@@ e at d@@ us@@ k . +Some who come to see me want to discus@@ s personal or family problems . +E@@ ver@@ y@@ thing we do at Be@@ the@@ l is sac@@ red service . +Wh@@ er@@ ever we serve Jehovah , we have opport@@ un@@ ities to pra@@ ise him . +Le@@ on@@ ard S@@ mi@@ th@@ ’@@ s life st@@ ory appe@@ ared in The Watchtower of A@@ pri@@ l 15 , 20@@ 12 . +Why can it be said that marriage is a gif@@ t from God ? +How would you describ@@ e the history of marriage from the time of Adam to Jesus ’ day ? +What can help a Christian to dec@@ ide whether to get married ? +1 , 2 . ( a ) How did marriage beg@@ in ? +( b ) What could the first man and woman have real@@ ized about marriage ? +( Read Genesis 2 : 20 - 24 . ) +An important purpose of marriage was to pop@@ ul@@ ate the earth . +What can we learn from Ad@@ am@@ ’@@ s and E@@ ve@@ ’@@ s respon@@ ses to Jehovah ? +How would you expl@@ ain Genesis 3 : 15 ? +( a ) What has happ@@ ened to marriage since the re@@ bel@@ li@@ on of Adam and E@@ ve ? +( b ) What does the Bible requ@@ ire of husb@@ ands and w@@ ives ? +What is the history of marriage from the time of Adam to the F@@ lo@@ od ? +What did Jehovah do to the wicked in No@@ a@@ h@@ ’@@ s day , and what less@@ on should we learn from what happ@@ ened at that time ? +( a ) In many cul@@ tur@@ es , what sex@@ ual practic@@ es became a way of life ? +( b ) How did Abraham and S@@ ar@@ ah set a good example in their marriage ? +( Read 1 Peter 3 : 3 - 6 . ) +How did the Mos@@ ai@@ c Law prot@@ ect the Israelites ? +( Read De@@ uteronom@@ y 7 : 3 , 4 . ) +12 , 13 . ( a ) How were some men tre@@ ating their w@@ ives in M@@ al@@ achi@@ ’@@ s day ? +( b ) Today , if a baptized person r@@ an off with someone el@@ se@@ ’@@ s m@@ ate , what would the con@@ se@@ qu@@ ences be ? +( a ) In the Christian congregation , what would be the stand@@ ard for marriage ? +Paul add@@ ed : “ If they do not have self - control , let them mar@@ ry , for it is better to mar@@ ry than to be infl@@ am@@ ed with pas@@ sion . ” +18 , 19 . ( a ) How should a Christian marriage beg@@ in ? +( b ) What will the following article discus@@ s ? +What responsib@@ il@@ ities did God give husb@@ ands and w@@ ives ? +Why are love and t@@ ender@@ ness very important in a marriage ? +How can the Bible help if there are problems in a marriage ? +Although marriage us@@ ually beg@@ ins with joy , what can those who mar@@ ry exp@@ ect to experience ? +What kind@@ s of love should marriage mat@@ es show ? +How strong should love be in a marriage ? +Paul wrote : “ H@@ us@@ b@@ ands , continue loving your w@@ ives , just as the Christ also loved the congregation and gave himself up for it . ” +( Read John 13 : 34 , 35 ; 15 : 12 , 13 . ) +4 , 5 . ( a ) What is a husb@@ and@@ ’@@ s responsib@@ ility as a family head ? +( b ) How should a wife view head@@ ship ? +( c ) What ad@@ jus@@ t@@ ments did one married cou@@ ple need to make ? +Mar@@ ri@@ age was an ad@@ jus@@ t@@ ment for me as I learned to re@@ ly on my husband . +It has not always been eas@@ y , but we have dra@@ wn so much clos@@ er as a cou@@ ple by doing things Jehova@@ h@@ ’@@ s way . ” +In marriage , taking two people into consid@@ eration ad@@ ds to the chall@@ enge . +But by se@@ ek@@ ing Jehova@@ h@@ ’@@ s gu@@ id@@ ance in prayer and really list@@ ening to my wi@@ fe@@ ’@@ s in@@ put , it g@@ ets eas@@ i@@ er every day . +I feel that we are a real te@@ am ! ” +How does love serve as “ a perfect b@@ ond of un@@ ion ” when problems devel@@ o@@ p in a marriage ? +7 , 8 . ( a ) What ad@@ vice does the Bible give regar@@ ding sex@@ ual rel@@ ations in marriage ? +( b ) Why do marriage mat@@ es need to show t@@ ender@@ ness ? +( Read 1 Corinthians 7 : 3 - 5 . ) +S@@ ex@@ ual rel@@ ations should never be for@@ c@@ ed or dem@@ and@@ ed but should come n@@ atur@@ ally . +Why is sex@@ ual interest in anyone who is not one@@ ’@@ s own marriage m@@ ate un@@ accep@@ table ? +10 , 11 . ( a ) How common is div@@ or@@ ce ? +( b ) What does the Bible say about se@@ par@@ ation ? +( c ) What will help a marriage m@@ ate not to se@@ par@@ ate qu@@ ick@@ ly ? +What may lead a marriage m@@ ate to consider se@@ par@@ ation ? +What does the Bible say to Christians married to mat@@ es who are not wor@@ sh@@ ipp@@ ers of Jehovah ? +( Read 1 Corinthians 7 : 12 - 14 . ) +O@@ r , husband , how do you know whether you will sa@@ ve your wife ? ” +15 , 16 . ( a ) What counsel does the Bible give Christian w@@ ives who@@ se husb@@ ands are not servants of God ? +( b ) What is the position of a Christian “ if the un@@ believ@@ ing one cho@@ os@@ es to de@@ part ” ? +The apostle Peter coun@@ sel@@ s Christian w@@ ives to be in sub@@ j@@ ection to their husb@@ ands , “ so that if any are not obedi@@ ent to the word , they may be w@@ on without a word through the conduct of their w@@ ives , because of having been e@@ ye@@ wit@@ nesses of your ch@@ as@@ te conduct together with de@@ ep respect . ” +What if an un@@ believ@@ ing marriage m@@ ate cho@@ os@@ es to se@@ par@@ ate ? +The Bible says : “ If the un@@ believ@@ ing one cho@@ os@@ es to de@@ part , let him de@@ part ; a brother or a sis@@ ter is not b@@ ound under such circum@@ stances , but God has called you to peace . ” +What should be the first pri@@ or@@ ity of Christian married cou@@ ples ? +Why is it possible for Christians to have a happy and succ@@ ess@@ ful marriage ? +[ 1 ] ( par@@ ag@@ rap@@ h 5 ) N@@ ames have been chang@@ ed . +[ 2 ] ( par@@ ag@@ rap@@ h 13 ) See the book “ K@@ eep Yo@@ ur@@ selves in God@@ ’@@ s Lo@@ ve , ” ap@@ pen@@ di@@ x , “ The Bib@@ le@@ ’@@ s V@@ i@@ e@@ w on D@@ iv@@ or@@ ce and Se@@ par@@ ation . ” +What a pleas@@ ure it is to give a witness in the mor@@ ning ho@@ urs along the Dan@@ u@@ be R@@ iver ! +These happy publ@@ ish@@ ers are sh@@ aring the Kingdom message with an appreci@@ ative list@@ en@@ er at V@@ ig@@ ad@@ ó S@@ qu@@ are in B@@ ud@@ ap@@ est , H@@ ung@@ ary +What can you do to make spiritual pro@@ g@@ ress ? +How can you pro@@ g@@ ress spiritually without g@@ row@@ ing we@@ ary ? +What ad@@ jus@@ t@@ ments might make you more eff@@ ective in the ministry ? +1 , 2 . ( a ) How has Isaiah 60 : 22 come true in this time of the end ? +( b ) What needs now ex@@ ist in the earth@@ ly part of Jehova@@ h@@ ’@@ s organization ? +“ THE little one will become a thous@@ and and the small one a m@@ igh@@ ty nation . ” +What does making spiritual pro@@ g@@ ress mean to you ? +How can young people use their streng@@ th in Kingdom service ? +6 - 8 . ( a ) How did one young man change his view of God@@ ’@@ s service , and with what result ? +( b ) How can we “ t@@ as@@ te and see that Jehovah is good ” ? +Because of his bless@@ ing , I feel inde@@ b@@ ted to him and am moved to do more in his service , and this resul@@ ts in more bless@@ ings . ” +( Read Psalm 34 : 8 - 10 . ) +Why is it important for you to have “ a wa@@ iting attitude ” ? +What spiritual qual@@ ities can we work to devel@@ o@@ p , and why are they important ? +How can members of the congregation prove themselves tr@@ us@@ t@@ wor@@ thy ? +How can you follow Josep@@ h@@ ’@@ s example if others tre@@ at you un@@ fa@@ ir@@ ly ? +What can you do if others tre@@ at you un@@ fa@@ ir@@ ly ? +14 , 15 . ( a ) Why do we have to “ pa@@ y con@@ st@@ ant attention ” to the way we pre@@ ach ? +( b ) How might you ad@@ just to chang@@ ing cond@@ itions ? +( See op@@ ening pic@@ ture and the bo@@ x “ Are You W@@ ill@@ ing to T@@ ry a D@@ i@@ ffer@@ ent Me@@ th@@ od ? ” ) +How can public wit@@ nes@@ sing prove to be eff@@ ective ? +17 , 18 . ( a ) How might you become more conf@@ ident in public wit@@ nes@@ sing ? +( b ) Why do you find Dav@@ id@@ ’@@ s spirit in pra@@ is@@ ing Jehovah valu@@ able as you eng@@ age in the ministry ? +He says : “ During our family worship , my wife and I do res@@ ear@@ ch to find ans@@ wers to ob@@ j@@ ec@@ tions and op@@ in@@ ions people expres@@ s . +We also ask other Witnesses for su@@ gg@@ es@@ tions . ” +( Read 1 Timothy 4 : 15 . ) +They will pro@@ cl@@ ai@@ m the gl@@ ory of your k@@ ing@@ ship and speak about your m@@ igh@@ t@@ iness , to make known to men your m@@ igh@@ ty ac@@ ts and the gl@@ or@@ ious sp@@ l@@ end@@ or of your k@@ ing@@ ship . ” +If you are entr@@ us@@ ted with more work in Jehova@@ h@@ ’@@ s organization , how can you become a bless@@ ing to others ? +Now V@@ en@@ ec@@ ia says : “ P@@ h@@ one wit@@ nes@@ sing works ! ” +My wife died three years ago , and last year my son was k@@ ill@@ ed in an acc@@ ident . ” +After two years , I am writ@@ ing back as your Christian sis@@ ter . ” +Why should we bu@@ ild in Bible stud@@ ents a strong desire to study the Scriptures person@@ ally ? +How can we help new ones to con@@ ver@@ se with house@@ ho@@ ld@@ ers and others ? +Why should ef@@ forts be made to tr@@ ain pros@@ pec@@ tive sh@@ ep@@ her@@ ds of God@@ ’@@ s f@@ loc@@ k ? +Why must we tr@@ ain others to take up the@@ o@@ cr@@ ati@@ c as@@ sign@@ ments ? +3 , 4 . ( a ) How did Paul con@@ nec@@ t study of the Scriptures with a produc@@ tive ministry ? +( b ) B@@ efore we en@@ courage our stud@@ ents to study the Bible on their own , what must we be doing ? +G@@ ive a su@@ gg@@ es@@ tion on how to help new ones to have a r@@ out@@ ine of personal Bible study . +You may ask , ‘ How can I tr@@ ain my stud@@ ent to study the Bible reg@@ ularly ? ’ +En@@ courage him to read every is@@ sue of The Watchtower and A@@ wake ! +( a ) How can you help your stud@@ ent to cul@@ tiv@@ ate love for the Bible in his heart ? +( b ) What is a Bible stud@@ ent likely to do if he develop@@ s hear@@ t@@ felt love for the Scriptures ? +How did Jesus tr@@ ain pro@@ claim@@ ers of the good news ? +8 , 9 . ( a ) How did Jesus appro@@ ach individuals in his ministry ? +( b ) How can we help new publ@@ ish@@ ers to con@@ ver@@ se with people as Jesus did ? +10 - 12 . ( a ) How did Jesus cul@@ tiv@@ ate the interest others showed in the good news ? +( b ) How can we help new publ@@ ish@@ ers to im@@ prove their sk@@ ill@@ s as teach@@ ers of Bible truth ? +13 , 14 . ( a ) What do you think of the Bible exam@@ ples of those who made great sacrif@@ ices in be@@ half of others ? +( b ) In what practic@@ al ways can you tr@@ ain new publ@@ ish@@ ers and young ones to show love for their brothers and s@@ isters ? +Why is it important that elders take an interest in the pro@@ g@@ ress of men in the congregation ? +16 , 17 . ( a ) What interest did Paul take in the pro@@ g@@ ress of Timothy ? +( b ) How can the elders eff@@ ec@@ tiv@@ ely tr@@ ain future sh@@ ep@@ her@@ ds of the congregation ? +Why should train@@ ing others in Jehova@@ h@@ ’@@ s service be important to us ? +Why should you be con@@ v@@ inc@@ ed that your d@@ il@@ ig@@ ent ef@@ forts to tr@@ ain others in Jehova@@ h@@ ’@@ s service will be succ@@ ess@@ ful ? +It is in va@@ in that they keep wor@@ sh@@ ipp@@ ing me , for they teach comm@@ ands of men as doc@@ tr@@ ines . ’ +You let go of the command@@ ment of God and cl@@ ing to the tr@@ ad@@ ition of men . ” ​ — Mark 7 : 6 - 8 . +3 “ Do Not Let Your H@@ ands D@@ ro@@ p D@@ own ” +How did Jehovah streng@@ then the hand@@ s of Moses , As@@ a , and Ne@@ hem@@ iah ? +In what practic@@ al ways can we streng@@ then the hand@@ s of our brothers and s@@ isters ? +( b ) What might cause our hand@@ s to d@@ ro@@ p down ? +The hand , for example , is mentioned h@@ und@@ re@@ ds of times . +How can you be mo@@ tiv@@ ated and streng@@ th@@ ened to end@@ ure and have joy ? +However , when Moses ’ hand@@ s became heav@@ y and began to d@@ ro@@ p down , the Am@@ al@@ ek@@ ites started to w@@ in . +( b ) How did God respon@@ d to Ne@@ hem@@ i@@ a@@ h@@ ’@@ s prayer ? +( Read Ne@@ hem@@ iah 1 : 10 ; 2 : 17 - 20 ; 6 : 9 . ) +Do you believe that Jehovah uses his “ great power ” and “ m@@ igh@@ ty hand ” to streng@@ then his servants today ? +10 , 11 . ( a ) How does Satan try to cause us to let our hand@@ s d@@ ro@@ p down ? +( b ) What does Jehovah use to streng@@ then us and give us power ? +He uses li@@ es and th@@ reat@@ s from govern@@ ments , religious lead@@ ers , and apost@@ ates . +13 , 14 . ( a ) How was one brother streng@@ th@@ ened after his wife died ? +P@@ ra@@ y@@ er and personal study have been like a life j@@ ac@@ k@@ et that has kept my head ab@@ ove water . +I have come to real@@ ize the import@@ ance of develop@@ ing a good personal relationship with Jehovah before difficult situ@@ ations ar@@ ise . ” +How does God tr@@ ain us to f@@ ight our enem@@ ies ? +He also help@@ s us through our Bible - based publ@@ ic@@ ations , Christian meetings , ass@@ emb@@ li@@ es , and conven@@ tions . +How do we avoid being con@@ qu@@ ered by the evil ? +( b ) Wh@@ ich Bible char@@ ac@@ ters will we consider ? +What helped J@@ ac@@ o@@ b to per@@ se@@ v@@ ere , and how was he re@@ war@@ ded ? +( Read Genesis 32 : 24 - 28 . ) +How were two Christians helped to control wrong desir@@ es ? +This young person also benef@@ ited from the article “ Al@@ ter@@ n@@ ative Li@@ fe - St@@ y@@ les ​ — Does God A@@ p@@ prove ? ” +“ For that reason , ” he said , “ I think that as each day pas@@ ses , I can remain faithful . +I am very gr@@ at@@ eful to Jehovah for using his organization to help us sur@@ v@@ ive each day in this wicked system . ” +Consider also the experience of a sis@@ ter in the United States . +She wr@@ ites : “ I want to th@@ an@@ k you for always fe@@ ed@@ ing us with just what we need and at the right time . +I often feel that these ar@@ ti@@ cl@@ es are written just for me . +For years , I have been bat@@ t@@ ling a strong desire for something Jehovah h@@ ates . +At times , I want to th@@ row my hand@@ s up and sto@@ p f@@ igh@@ ting . +I know that Jehovah is mer@@ ci@@ ful and for@@ giving , but because I have this wrong desire and de@@ ep down I d@@ on@@ ’@@ t h@@ ate it , I feel that I am un@@ able to receive his help . +This ongo@@ ing bat@@ tle has aff@@ ected every as@@ p@@ ect of my life . . . . +After reading the article ‘ Do You H@@ ave “ a H@@ ear@@ t to K@@ now ” Jehovah ? ’ +in The Watchtower of Mar@@ ch 15 , 20@@ 13 , I really felt that Jehovah does want to help me . ” +( a ) How did Paul feel about his str@@ ug@@ g@@ les ? +What can we learn about clo@@ thing from God@@ ’@@ s Law to the Israelites ? +What can help Christians to make good decis@@ ions about how to d@@ ress ? +When especially do we need to we@@ ar appro@@ pri@@ ate clo@@ thing ? +Of course , some clo@@ thing that is appro@@ pri@@ ate in one place may not be appro@@ pri@@ ate in another . +( Read 1 Corinthians 10 : 32 , 33 . ) +What are some fac@@ t@@ ors that may aff@@ ect whether a brother we@@ ars a be@@ ard ? +The Mos@@ ai@@ c Law requir@@ ed men to we@@ ar a be@@ ard . +In fact , some appoin@@ ted brothers have be@@ ards . +Even so , some brothers might dec@@ ide not to we@@ ar a be@@ ard . +What eff@@ ect should our d@@ ress and g@@ ro@@ om@@ ing have on others ? +A brother in Germany wrote : “ My teach@@ ers view the Bible account of cre@@ ation as a my@@ th . +And they take it for gr@@ an@@ ted that the stud@@ ents believe in ev@@ ol@@ ution . ” +A young sis@@ ter in Fr@@ ance said : “ T@@ e@@ ach@@ ers in my school are qu@@ ite ast@@ on@@ ished that there are stud@@ ents who still believe in the Bible . ” +and The Or@@ ig@@ in of Li@@ fe ​ — F@@ ive Q@@ u@@ es@@ tions Wor@@ th As@@ king , and the book Is There a Creator Who C@@ ar@@ es Ab@@ out You ? +I@@ ’@@ ve stu@@ died those bro@@ ch@@ ur@@ es about a do@@ z@@ en times . ” +They show that the great@@ est eng@@ in@@ e@@ ers may im@@ itate but will never equ@@ al the com@@ ple@@ x des@@ ig@@ ns in n@@ ature . ” +Why does God want you to use your power of reason ? +( Read Romans 12 : 1 , 2 ; 1 Timothy 2 : 4 . ) +And many of them liv@@ ed at different times and did not know one another person@@ ally . ” +I liter@@ ally had to sto@@ p and cont@@ em@@ pl@@ ate how inc@@ re@@ di@@ ble that prophe@@ tic Pas@@ so@@ ver me@@ al was ! ” +“ H@@ on@@ es@@ ty like that is r@@ are , ” said a young brother in Brit@@ ain . +“ This ad@@ ds to our conf@@ idence that the Bible truly is from Jehovah . ” +A young sis@@ ter in Jap@@ an wrote : “ When my family ap@@ pli@@ ed Bible teach@@ ings , we were truly happy . +We experi@@ enced peace , unity , and love . ” +And some sto@@ p believ@@ ing in God because they are dis@@ appoin@@ ted with religion . +He add@@ ed : “ One is struc@@ k by the com@@ ple@@ x@@ ity of even the sim@@ pl@@ est form of life . ” +He wrote : “ E@@ very house is con@@ struc@@ ted by someone , but the one who con@@ struc@@ ted all things is God . ” +Why is it so important to know your children well ? +Our children ac@@ qu@@ ire it little by little . ” +He as@@ ks : ‘ What does the Bible say ? ’ +‘ Do you believe what it says ? ’ +He wan@@ ts me to answer in my own words and not simply re@@ pe@@ at his or Mum@@ ’@@ s words . +As I got ol@@ der , I had to exp@@ and on my ans@@ wers . ” +They ans@@ w@@ ered all my questions , using the Bible . ” +( Read De@@ uteronom@@ y 6 : 5 - 8 ; Luke 6 : 45 . ) +So if life ev@@ ol@@ ved from sim@@ ple to more com@@ ple@@ x form@@ s , why were these ancient cre@@ atur@@ es already so com@@ ple@@ x ? +It was a less@@ on that de@@ ep@@ ly im@@ pres@@ sed me and that I sh@@ ared with my son . ” +Then she asked each of the bo@@ ys to make her a c@@ up of co@@ ff@@ e@@ e . +“ They took great care , ” she explain@@ ed . +“ When I asked them why they were so car@@ eful , they said that they wanted the co@@ ff@@ e@@ e to be just the way I like it . +I explain@@ ed that God mi@@ x@@ ed the g@@ as@@ es in the at@@ m@@ os@@ p@@ here with similar care ​ — just right for us . ” +And how would you com@@ pare the s@@ ound of an air@@ pl@@ ane to the sing@@ ing of a bir@@ d ? +So who is more int@@ ell@@ ig@@ ent ​ — the mak@@ er of air@@ pl@@ an@@ es or the Creator of bir@@ ds ? ” +“ N@@ ever t@@ ire of ex@@ per@@ im@@ ent@@ ing with new ways to appro@@ ach old sub@@ j@@ ects , ” said one father . +“ From the time they were very young , I stu@@ died with them for 15 min@@ ut@@ es every day , exc@@ ept on days when we had Christian meetings . +O@@ ver time , many of these were add@@ res@@ sed at meetings or during family or personal study . +Th@@ at@@ ’@@ s why it@@ ’@@ s important for parents just to keep teaching . ” +Let your children see how real Jehovah is to you . +“ We also tell our ol@@ der daugh@@ ter , ‘ H@@ ave compl@@ ete trust in Jehovah , keep bus@@ y in Kingdom service , and do not wor@@ ry too much . ’ +When she se@@ es the out@@ come , she kno@@ ws that Jehovah is help@@ ing us . +This has done wond@@ ers for her faith in God and in the Bible . ” +The first article shows how our faith can g@@ row and remain strong . +Let me expl@@ ain what led to that con@@ vers@@ ation . +I W@@ A@@ S born in W@@ ich@@ ita , K@@ ans@@ as , U.@@ S@@ .@@ A . , on D@@ ec@@ ember 10 , 19@@ 36 , the ol@@ des@@ t of four children . +Then a sol@@ di@@ er wal@@ ked by , and the doc@@ tor y@@ ell@@ ed , “ Do something about this y@@ el@@ low co@@ ward ! ” +The sol@@ di@@ er could see that the man was d@@ run@@ k , so he told him , “ G@@ o home and so@@ b@@ er up ! ” +He o@@ w@@ ned two b@@ ar@@ ber@@ sho@@ p@@ s in W@@ ich@@ ita , and the doc@@ tor was one of his c@@ li@@ ents ! +With my parents , going to a conven@@ tion in W@@ ich@@ ita in the 19@@ 40 ’ s +With Jehova@@ h@@ ’@@ s bless@@ ing and their ze@@ al@@ ous work , a congregation was started . +The brother also so@@ ld my c@@ ar for $ 25 . +We were as@@ sig@@ ned to special pione@@ er in W@@ al@@ n@@ ut R@@ id@@ ge , Ar@@ k@@ ans@@ as . +Then in 19@@ 6@@ 2 , we were thr@@ ill@@ ed to receive an inv@@ it@@ ation to the 3@@ 7@@ th cl@@ ass of G@@ il@@ ead . +In the ministry in N@@ air@@ ob@@ i with M@@ ary and Ch@@ r@@ is K@@ an@@ ai@@ ya +So@@ on after , our first daugh@@ ter , K@@ imb@@ er@@ ly , was born , and 17 mon@@ ths later , we had St@@ ep@@ han@@ y . +We would also go cam@@ p@@ ing with them and would have very enjo@@ y@@ able con@@ vers@@ ations around the cam@@ pf@@ ire . +We arrang@@ ed to have some who were in the full - time ministry st@@ ay in our home . +They were sho@@ c@@ ked and started to cr@@ y and said that they wanted to study . +With the help and dir@@ ection of God@@ ’@@ s organization , we did our best to ra@@ ise them to love Jehovah . +On a later tr@@ ip , K@@ imb@@ er@@ ly me@@ t one of his work@@ mat@@ es , B@@ ri@@ an L@@ le@@ well@@ y@@ n . +So they did st@@ ay free until they were at le@@ ast 23 . +At the same time , B@@ ri@@ an and K@@ imb@@ er@@ ly were inv@@ ited to work at L@@ ond@@ on Be@@ the@@ l and later were trans@@ f@@ er@@ red to M@@ al@@ a@@ wi Be@@ the@@ l . +The day after we left for the Watchtower E@@ duc@@ ational C@@ ent@@ er in P@@ at@@ ter@@ son , L@@ inda called to tell us that M@@ other had died . +N@@ ext , we taught the course in Z@@ imb@@ ab@@ we and then in Z@@ amb@@ ia . +In 200@@ 6 , B@@ ri@@ an and K@@ imb@@ er@@ ly moved next do@@ or to us to ra@@ ise their two daugh@@ ters , M@@ ac@@ k@@ enz@@ i@@ e and E@@ li@@ z@@ ab@@ et@@ h . +Paul and St@@ ep@@ han@@ y are still in M@@ al@@ a@@ wi , where Paul ser@@ ves on the B@@ ran@@ ch Com@@ mit@@ te@@ e . +Why might we need to ad@@ just our view of str@@ ang@@ ers ? +When I left the air@@ port and felt the co@@ ld for the first time in my life , I started cr@@ ying . ” +Greek - spe@@ aking Jews compl@@ ain@@ ed that their wid@@ o@@ ws were not being tre@@ ated fa@@ ir@@ ly . +W@@ he@@ ther we real@@ ize it or not , we are all de@@ ep@@ ly influ@@ enced by our cul@@ ture . +( Read 1 Peter 1 : 22 . ) +Be pati@@ ent with those who are ad@@ jus@@ ting to a new country . +At first , we may not fully understand their way of thinking or re@@ ac@@ ting . +What example of respect and gr@@ at@@ itude can im@@ mig@@ ran@@ ts im@@ itate today ? +Fir@@ st , she showed respect for the c@@ us@@ tom@@ s of her new country by as@@ king per@@ mis@@ sion to g@@ le@@ an . +[ 1 ] ( par@@ ag@@ rap@@ h 1 ) N@@ ame has been chang@@ ed . +Are you among those who are lear@@ ning another language ? +( Read Ne@@ hem@@ iah 13 : 23 , 24 . ) +( b ) How can we re@@ ach our go@@ al ? +We must recogn@@ ize that when we pre@@ pare for the ministry , for the meetings , or for a talk , we may not necess@@ ar@@ ily ap@@ ply what we read to ourselves . +Since my mind is main@@ ly involved in an int@@ ell@@ ec@@ t@@ ual exerc@@ ise , my heart is not necess@@ ar@@ ily t@@ ou@@ ched by the spiritual th@@ ough@@ ts I am reading . +That is why I reg@@ ularly set as@@ ide time to study the Bible and other publ@@ ic@@ ations in my mother t@@ ong@@ ue . ” +“ It an@@ no@@ yed him to go out in the ministry in another language , wh@@ ere@@ as before he loved preaching in his n@@ ative language , Fr@@ en@@ ch , ” says Mur@@ iel . +“ When we real@@ ized that this situation had h@@ ind@@ ered our son from making spiritual advan@@ c@@ ement , ” explain@@ s Ser@@ ge , “ we dec@@ ided to move back to our form@@ er congregation . ” +M@@ ake sure that the truth re@@ ach@@ es the hear@@ ts of your children ( See par@@ ag@@ rap@@ h@@ s 14 , 15 ) +But we also includ@@ e prac@@ tice s@@ es@@ sions and g@@ ames in L@@ ing@@ al@@ a so that they can learn this language while having fu@@ n . ” +M@@ ake an ef@@ fort to learn the local language and to partic@@ ip@@ ate in the meetings ( See par@@ ag@@ rap@@ h@@ s 16 , 17 ) +We also set the go@@ al of att@@ ending a meet@@ ing in Fr@@ en@@ ch once a mon@@ th , and we take advan@@ t@@ age of our va@@ c@@ ations to vis@@ it conven@@ tions held in our n@@ ative language . ” +( Read Romans 15 : 1 , 2 . ) +How can we show our love for God@@ ’@@ s Word ? +Bro@@ thers working bus@@ iness ter@@ rit@@ ory witness to a me@@ ch@@ an@@ ic in an au@@ to re@@ pa@@ ir gar@@ age . +( Read Revelation 21 : 3 - 6 . ) +How did Abraham and his family keep their faith strong ? +( Read 1 John 5 : 14 , 15 . ) +What tr@@ ials did some of the proph@@ ets end@@ ure because of their faith ? +O@@ thers , like E@@ li@@ j@@ ah , “ wand@@ ered about in des@@ er@@ ts and m@@ oun@@ tain@@ s and c@@ av@@ es and d@@ ens of the earth . ” +How does No@@ a@@ h@@ ’@@ s example help us to understand what it means to have faith ? +In what ways must we exerc@@ ise our faith ? +In what two ways does Hebrews 11 : 1 describ@@ e faith ? +You see that his faith was ac@@ tive along with his works and his faith was perf@@ ected by his works . ” +For example , John explain@@ ed : “ The one who exerc@@ ises faith in the Son has everlasting life ; the one who dis@@ obe@@ ys the Son will not see life , but the wr@@ ath of God remain@@ s upon him . ” +Com@@ par@@ ed with love , how important is faith ? +James asked his anointed brothers : “ D@@ id not God cho@@ ose those who are po@@ or from the world@@ ’@@ s stand@@ point to be r@@ ich in faith and he@@ ir@@ s of the Kingdom , which he prom@@ ised to those who love him ? ” +While men were s@@ le@@ ep@@ ing , his enem@@ y came and over@@ so@@ wed we@@ ed@@ s in among the whe@@ at and left . +When the st@@ al@@ k sp@@ r@@ ou@@ ted and produc@@ ed fru@@ it , then the we@@ ed@@ s also appe@@ ared . ” +What hope did Jehovah give his people , and why was this promise re@@ mar@@ k@@ able ? +W@@ ould the Israelites ever again be able to worship God in a compl@@ et@@ ely accep@@ table way ? +So it does not really se@@ em that Jehova@@ h@@ ’@@ s people ent@@ ered into cap@@ tiv@@ ity to Babyl@@ on the Gre@@ at in 19@@ 18 . +( Read 1 Peter 2 : 9 , 10 . ) +( Read Matthew 13 : 24 , 25 , 37 - 39 . ) +W@@ ould true Christians ever be free to worship God op@@ enly and accep@@ t@@ ably ? +When were the anointed fre@@ ed from Babyl@@ on@@ ian cap@@ tiv@@ ity ? +Bro@@ ther Ru@@ ther@@ for@@ d re@@ ques@@ ted that we arr@@ ange conven@@ tions in sever@@ al c@@ ities in the w@@ es@@ tern United States and s@@ end spe@@ ak@@ ers to try to en@@ courage the friends as much as possible . ” +“ If you have any word of encourag@@ ement for the people , tell it . ” ​ — A@@ C@@ T@@ S 13 : 15 . +So I cr@@ y often and pre@@ f@@ er not to talk to them . +He list@@ ened with sy@@ m@@ pa@@ thy as I expres@@ sed my feelings . +Then he rem@@ ind@@ ed me of the good I was ac@@ compl@@ ish@@ ing . +He also rem@@ ind@@ ed me of Jesus ’ words ​ — that each of us is wor@@ th more than many s@@ par@@ ro@@ ws . +I often rec@@ all that s@@ crip@@ ture , and it still t@@ ou@@ ches my heart . +What can we learn from the way Jehovah , Jesus , and Paul encourag@@ ed others ? +( Read Ec@@ cl@@ esi@@ ast@@ es 4 : 9 , 10 . ) +What can we learn from the way Jesus tre@@ ated his apostles ? +After going through those reg@@ ions and giving many words of encourag@@ ement to the ones there , he arr@@ ived in Gre@@ ec@@ e . ” +( Read 1 Th@@ ess@@ al@@ on@@ ians 5 : 12 , 13 . ) +They are a real so@@ ur@@ ce of encourag@@ ement . ” +A@@ nd@@ re@@ as , who has two children , says : “ En@@ courag@@ ement help@@ s children to g@@ row up spiritually and emo@@ tion@@ ally . +Even though our k@@ id@@ s know what is right , doing the right thing becom@@ es their way of life through our con@@ st@@ ant encourag@@ ement . ” +( Read Luke 21 : 1 - 4 ; 2 Corinthians 8 : 12 . ) +( Read Revelation 2 : 18 , 19 . ) +I want you to know that when you spok@@ e in such a kind way , both from the pl@@ at@@ form and in person , I felt that it was a gif@@ t from Jehovah . ” +[ 1 ] ( par@@ ag@@ rap@@ h 1 ) Some nam@@ es have been chang@@ ed . +( b ) What will we discus@@ s in this article ? +How did the congreg@@ ations benefit from following the dir@@ ection of the gover@@ ning body ? +( Read 3 John 9 , 10 . ) +( Read Matthew 5 : 23 , 24 ; 18 : 15 - 17 . ) +The Bible dir@@ ects us to att@@ end meetings reg@@ ularly . +H@@ ave you been using j@@ w@@ .@@ or@@ g in your ministry and in your family worship ? +and the bro@@ ch@@ ure Who Are Do@@ ing Jehova@@ h@@ ’@@ s Will Today ? +What are some reas@@ ons why we should be th@@ an@@ k@@ ful to Jehovah ? +There are many reas@@ ons why we should be th@@ an@@ k@@ ful to Jehovah ! +It also shows how the hope of a re@@ ward benef@@ its us . +I was only e@@ ight years old at the time . +My father did not want my mother to talk to me about what she was lear@@ ning . +However , I was cur@@ ious and asked questions , so she stu@@ died with me when my father was out of the house . +As a result , I too dec@@ ided that I wanted to dedic@@ ate my life to Jehovah . +My mother said that I should first speak to the servan@@ t to the bre@@ th@@ ren ( now called a circ@@ u@@ it overse@@ er ) . +He said , “ G@@ o for it ! ” +After four mon@@ ths , I sel@@ ected a brother as my pione@@ er par@@ t@@ ner . +My mother pione@@ ered with a sis@@ ter in another congregation . +In 195@@ 1 , I fill@@ ed out an ap@@ pl@@ ication to att@@ end the Watchtower Bible S@@ chool of G@@ il@@ ead . +While there , I received my inv@@ it@@ ation to the 2@@ 2@@ n@@ d cl@@ ass of G@@ il@@ ead . +I then trav@@ el@@ ed by tr@@ ain to South L@@ ans@@ ing , New York , where the school was loc@@ ated . +With J@@ an@@ et on one of the many is@@ lands in the Philipp@@ ines +We still serve at the br@@ an@@ ch off@@ ice in Q@@ u@@ ez@@ on C@@ ity +How can you experience “ the peace of God ” ? +How can the congregation help you to re@@ du@@ ce an@@ x@@ i@@ ety ? +( See op@@ ening pic@@ ture . ) ( b ) What will we consider in this article ? +How , though , can you do that ? +The p@@ sal@@ mis@@ t David beg@@ ged Jehovah : “ L@@ ist@@ en to my prayer , O God . ” +When we are an@@ x@@ ious , why is prayer so important ? +( Read Matthew 11 : 28 - 30 . ) +What did Jesus mean when he said : “ N@@ ever be an@@ x@@ ious ” ? +He ad@@ mit@@ ted : “ My angu@@ ished heart makes me g@@ ro@@ an al@@ ou@@ d . ” +( See the bo@@ x “ Some P@@ r@@ ac@@ tic@@ al W@@ a@@ ys to R@@ ed@@ u@@ ce An@@ x@@ i@@ ety . ” ) +How can the meaning of God@@ ’@@ s name streng@@ then your faith ? +His very name is under@@ sto@@ od to mean “ He C@@ a@@ uses to Bec@@ ome . ” +Why can you be conf@@ ident that your relationship with God will streng@@ then you ? +( a ) How can we th@@ row our an@@ x@@ i@@ ety on God ? +How can we be sure that Jehovah re@@ war@@ ds his servants ? +How did Jehovah bl@@ ess his servants in the past ? +1 , 2 . ( a ) How are love and faith con@@ nec@@ ted ? +How , though , does the hope of a re@@ ward benefit us ? +Jesus showed that his disciples would be re@@ war@@ ded for their sacrif@@ ices ( See par@@ ag@@ rap@@ h 5 ) +The apostle Peter once asked Jesus : “ We have left all things and follow@@ ed you ; what , then , will there be for us ? ” +In the Ser@@ m@@ on on the M@@ ount , Jesus said : “ Re@@ jo@@ ice and be over@@ jo@@ yed , since your re@@ ward is great in the heav@@ ens , for in that way they per@@ sec@@ uted the proph@@ ets pri@@ or to you . ” +Moses told the nation of Israel : “ Jehovah will sur@@ ely bl@@ ess you in the land that Jehovah your God is giving you to poss@@ ess as an in@@ her@@ it@@ ance , but only if you str@@ ic@@ tly obe@@ y the vo@@ ice of Jehovah your God and car@@ e@@ fully ob@@ serve all this command@@ ment that I am giving you today . +For Jehovah your God will bl@@ ess you just as he has prom@@ ised you . ” +And he nam@@ ed the second one Eph@@ rai@@ m , for he said , ‘ God has made me fru@@ it@@ ful in the land of my aff@@ l@@ ic@@ tion . ’ ” +God@@ ’@@ s Word explain@@ s : “ For the joy that was set before him he end@@ ur@@ ed a tor@@ ture st@@ ake , des@@ p@@ is@@ ing sh@@ ame . ” +Jesus certainly found joy in being able to s@@ anc@@ tif@@ y God@@ ’@@ s name . +How does Jehovah feel about what we do for him ? +“ The one sho@@ wing fav@@ or to the low@@ ly is l@@ ending to Jehovah , and He will re@@ pa@@ y him for what he does . ” +What com@@ fort do we find at 1 John 3 : 19 , 20 ? +( Read 1 John 3 : 19 , 20 . ) +What are some of the re@@ war@@ ds that we enjoy now ? +How do Jehova@@ h@@ ’@@ s servants feel about the re@@ war@@ ds they receive ? +For example , B@@ i@@ anc@@ a from Germany says : “ I cannot th@@ an@@ k Jehovah en@@ ough for help@@ ing me with my wor@@ ri@@ es and for being at my side each day . +The world out there is cha@@ o@@ tic and b@@ le@@ ak . +But as I work clos@@ ely with Jehovah , I feel sec@@ ure in his ar@@ ms . +Wh@@ en@@ ever I make personal sacrif@@ ices for him , he gives me back a h@@ und@@ re@@ d@@ fo@@ ld in bless@@ ings . ” +For my own encourag@@ ement , I keep a no@@ te@@ book with s@@ criptur@@ es and th@@ ough@@ ts from our publ@@ ic@@ ations that I can con@@ su@@ l@@ t from time to time . +I c@@ all it ‘ My S@@ ur@@ vi@@ val N@@ ot@@ e@@ book . ’ +D@@ is@@ courag@@ ement is tem@@ por@@ ary if we fo@@ c@@ us on Jehova@@ h@@ ’@@ s prom@@ ises . +Jehovah is always there to help us , regar@@ d@@ less of our circum@@ stances . ” +Yet , you can likely think of ways in which Jehovah has re@@ war@@ ded you and those around you . +How were Paul and others set free from sin and death ? +( Read Romans 6 : 1 , 2 . ) +What cho@@ ice does each of us have to make ? +( Read Proverbs 14 : 5 ; Ephesians 4 : 25 . ) +They receive “ the spirit ” as ones “ wa@@ iting for ad@@ op@@ tion as sons , the re@@ le@@ ase from [ their fles@@ h@@ ly ] bo@@ dies . ” +( Read Romans 4 : 20 - 22 . ) +( Read Acts 18 : 2 - 4 ; 20 : 20 , 21 , 34 , 35 . ) +Many to@@ ur@@ ists come to the city of A@@ ve@@ iro in nor@@ ther@@ n P@@ or@@ t@@ ug@@ al to see the inter@@ es@@ ting sal@@ t e@@ vap@@ or@@ ation p@@ on@@ ds . +Lo@@ c@@ al Witnesses make sure to off@@ er the good news to those who sel@@ l the loc@@ ally produc@@ ed sal@@ t +What el@@ se can we learn from the Bible ? +In this article , we will learn how to t@@ reas@@ ure God@@ ’@@ s gif@@ t of free will by using it in a way that pleas@@ es the G@@ iver of that gif@@ t . +The first article explain@@ s what mo@@ des@@ ty is and what it is not . +How does Jehovah exp@@ ect us to use our ab@@ il@@ ities ? +C@@ learly , Jehovah wan@@ ts us to do what we can to benefit ourselves and others . +No@@ ah liv@@ ed in a world that was “ fill@@ ed with viol@@ ence ” and im@@ mor@@ ality . +O@@ p@@ position to our preaching ( See par@@ ag@@ rap@@ h@@ s 6 - 9 ) +6 , 7 . ( a ) What could No@@ ah not do ? +( b ) How are we in a situation similar to No@@ a@@ h@@ ’@@ s ? +We too live in a world fill@@ ed with wic@@ k@@ ed@@ ness , which we know Jehovah has prom@@ ised to destro@@ y . +In the mean@@ time , we cannot for@@ ce people to accept the “ good news of the Kingdom . ” +What No@@ ah could do : Inst@@ ead of giving up because of what he could not do , No@@ ah fo@@ c@@ used on what he could do . +When that happ@@ ened , how did David re@@ act ? +P@@ ast sin@@ s ( See par@@ ag@@ rap@@ h@@ s 11 - 14 ) +11 , 12 . ( a ) After he sin@@ ned , what could David not do ? +What David could not do : David could not un@@ do what he had done . +He had to trust that when he truly rep@@ ented , Jehovah would for@@ give him and help him end@@ ure the con@@ se@@ qu@@ ences of his ac@@ tions . +He had to leave the matter in Jehova@@ h@@ ’@@ s hand@@ s . +Consider a brother nam@@ ed M@@ al@@ col@@ m , who remain@@ ed faithful until his death in 20@@ 15 . +F@@ o@@ c@@ us on what you can do , not on what you cannot do . ” +( b ) How will you ap@@ ply the 20@@ 17 ye@@ ar@@ t@@ ext in your life ? +Our ye@@ ar@@ t@@ ext for 20@@ 17 : “ Tr@@ ust in Jehovah and do what is good . ” ​ — Psalm 37 : 3 +How can we show respect for the decis@@ ions of others ? +I will love them of my own free will . ” +4 , 5 . ( a ) Who was the first to receive God@@ ’@@ s gif@@ t of free will , and how did he use it ? +( b ) What question must each of us ask ? +The answer to that question can deter@@ m@@ ine our everlasting future . +God “ began br@@ ing@@ ing them to the man to see what he would c@@ all each one . ” +What must we never do with our gif@@ t of free will ? +I@@ mag@@ ine that you gave a valu@@ able gif@@ t to a friend . +What is one way we can avoid mis@@ using our Christian fre@@ edom ? +( Read 1 Peter 2 : 16 . ) +What do we learn from the princip@@ le found at Gal@@ ati@@ ans 6 : 5 ? +R@@ em@@ ember the princip@@ le found at Gal@@ ati@@ ans 6 : 5 . +How will you show that you t@@ reas@@ ure your gif@@ t of free will ? +( a ) What do many people think about mo@@ des@@ ty ? +What is mo@@ des@@ ty , and what is it not ? +Why should we avoid judg@@ ing other pe@@ op@@ le@@ ’@@ s mo@@ ti@@ ves ? +What can we learn from Jesus ’ example when we receive a change of as@@ sign@@ ment ? +( Read Gal@@ ati@@ ans 6 : 4 , 5 . ) +( Read Ec@@ cl@@ esi@@ ast@@ es 11 : 4 - 6 . ) +What will help us to remain mo@@ des@@ t for@@ ever ? +Why is it difficult for some to del@@ eg@@ ate authority ? +He told Na@@ than to tell David : “ You are not the one who will bu@@ ild the house for me to d@@ well in . ” +( Read N@@ umb@@ ers 11 : 24 - 29 . ) +No , I wish that all of Jehova@@ h@@ ’@@ s people were proph@@ ets and that Jehovah would put his spirit on them ! ” +( Read Philipp@@ ians 2 : 20 - 22 . ) +The br@@ an@@ ch off@@ ice sent us 8@@ 00 magaz@@ ines to use in the ministry . +I taught cl@@ as@@ ses in M@@ an@@ a@@ us , B@@ el@@ é@@ m , F@@ or@@ tal@@ e@@ za , R@@ ec@@ i@@ fe , and S@@ al@@ va@@ d@@ or . +We arr@@ ived in L@@ is@@ b@@ on , P@@ or@@ t@@ ug@@ al , in A@@ ug@@ ust of 19@@ 6@@ 4 . +It is the only one doing the work Jesus command@@ ed his disciples to do ​ — pre@@ ach the good news of God@@ ’@@ s Kingdom ! ” +While this article was being prepar@@ ed for publ@@ ication , D@@ oug@@ l@@ as G@@ u@@ est died faithful to Jehovah on O@@ c@@ to@@ b@@ er 25 , 20@@ 15 . +And “ the spirit of Jehovah began to em@@ power David . ” +Why did God want his people to respect the lead@@ ers in Israel ? +( Read Hebrews 1 : 7 , 14 . ) +The Bible ref@@ ers to the Law given to Israel as “ the Law of Moses . ” +11 , 12 . ( a ) What were Joshua and the k@@ ings who rul@@ ed God@@ ’@@ s people requir@@ ed to do ? +“ As soon as the king heard the words of the book of the Law , he r@@ ipp@@ ed his gar@@ ments apar@@ t . ” +Why did Jehovah discip@@ line some of the lead@@ ers of his people ? +In some cas@@ es , Jehovah discip@@ l@@ ined or re@@ plac@@ ed those lead@@ ers . +What proved that Jesus was em@@ po@@ w@@ ered by holy spirit ? +S@@ hor@@ tly after Jesus was baptized , “ ang@@ els came and began to minis@@ ter to him . ” +Ho@@ urs before his death , “ an ang@@ el from heaven appe@@ ared to him and streng@@ th@@ ened him . ” +How did God@@ ’@@ s Word gu@@ ide Jesus ’ life and teaching ? +It is in va@@ in that they keep wor@@ sh@@ ipp@@ ing me , for they teach comm@@ ands of men as doc@@ tr@@ ines . ” +No@@ body is good exc@@ ept one , God . ” +“ Inst@@ an@@ tly the ang@@ el of Jehovah struc@@ k him , because he did not give the gl@@ ory to God , and he was e@@ at@@ en up with wor@@ ms and died . ” +The next article will consider the ans@@ wers to those questions . +This may have been the orig@@ in@@ al doc@@ um@@ ent written by Moses . +Why was this sel@@ ection so important to them and to Jehovah ? +As a gover@@ ning body , they gave dir@@ ection to all the congreg@@ ations . ​ — Acts 15 : 2 . +5 , 6 . ( a ) How did holy spirit em@@ power the gover@@ ning body ? +( c ) How did God@@ ’@@ s Word gu@@ ide the gover@@ ning body ? +Fir@@ st , holy spirit em@@ po@@ w@@ ered the gover@@ ning body . +Th@@ ir@@ d , God@@ ’@@ s Word gu@@ ided the gover@@ ning body . +Why can we say that Jesus led the early Christians ? +( a ) When did Jesus ap@@ point “ the faithful and disc@@ re@@ et slave ” ? +In 19@@ 19 , three years after Bro@@ ther Rus@@ sel@@ l@@ ’@@ s death , Jesus appoin@@ ted “ the faithful and disc@@ re@@ et slave . ” +The J@@ u@@ ly 15 , 20@@ 13 , is@@ sue of The Watchtower explain@@ ed that “ the faithful and disc@@ re@@ et slave ” is a small group of anointed brothers who make up the G@@ over@@ ning B@@ od@@ y . +So how can we answer Jesus ’ question : “ Who really is the faithful and disc@@ re@@ et slave ? ” +How has holy spirit helped the G@@ over@@ ning B@@ od@@ y ? +What is one way to rem@@ ember the G@@ over@@ ning B@@ od@@ y ? +Why are you determin@@ ed to follow our Le@@ ad@@ er , Jesus ? +When Jesus re@@ turned to heaven , he did not ab@@ and@@ on his followers . +So@@ on , he will lead us to everlasting life . +Since 195@@ 5 , that cor@@ por@@ ation has been known as the Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia . +Jehovah “ com@@ forts us in all our tr@@ ials ” +“ I have spok@@ en , and I will bring it about . +1 , 2 . ( a ) What has Jehovah reve@@ al@@ ed to us ? +THE very first words of the Bible make this sim@@ ple but pro@@ found st@@ at@@ ement : “ In the beg@@ in@@ ning God cre@@ ated the heav@@ ens and the earth . ” +( c ) What questions will we consider ? +And why is Jesus ’ ran@@ so@@ m sacrifice the ke@@ y that un@@ loc@@ ks the do@@ or for God@@ ’@@ s purpose to be ac@@ compl@@ ished ? +What are some gif@@ ts that Jehovah gave Adam and E@@ ve ? +It was as if he were saying : ‘ You mean you cannot do what you want ? ’ +But Jehovah is faithful to his own stand@@ ards ; he never viol@@ ates them . +( Read De@@ uteronom@@ y 32 : 4 , 5 . ) +Why is the ran@@ so@@ m such a preci@@ ous gif@@ t ? +Jehovah provid@@ ed the ran@@ so@@ m at great c@@ ost to himself . +When will Jehovah become “ all things to every@@ one ” ? +( Read 1 Peter 1 : 15 , 16 . ) +Why can Jehovah view us as righteous , even though we are im@@ perfect ? +He accep@@ ts as his wor@@ sh@@ ipp@@ ers those who dedic@@ ate themselves to him . +What did Jesus mean when he next said : “ Let your will take place ” ? +How does the ran@@ so@@ m benefit humans who have died ? +What is God@@ ’@@ s will for the “ great crow@@ d ” ? +( a ) What bless@@ ings do we now receive from Jehovah ? +( Read Acts 3 : 19 - 21 . ) +Jehovah gives us far more than just the gif@@ t of life . +“ We have come to know and believe the love that God has for us . +And should we at times change a decis@@ ion that we have made ? +This article will help us to answer those questions . +Yet , Jehovah vie@@ wed those k@@ ings as having a compl@@ ete heart . +Will God view us as having a compl@@ ete heart , des@@ pite mis@@ takes we make ? +We liv@@ ed on a small far@@ m in eas@@ tern South D@@ ak@@ ota . +Far@@ m@@ ing was an important part of our famil@@ y@@ ’@@ s life , but it was not the most important part . +My parents got baptized as Jehova@@ h@@ ’@@ s Witnesses in 19@@ 34 . +My da@@ d , C@@ lar@@ ence , and later my un@@ c@@ le Al@@ f@@ red , served as compan@@ y servan@@ t ( now called co@@ ord@@ in@@ at@@ or of the body of elders ) in our small congregation in Con@@ de , South D@@ ak@@ ota . +My sis@@ ter , D@@ or@@ o@@ thy , and I became Kingdom publ@@ ish@@ ers when we were si@@ x . +Con@@ ven@@ tions and ass@@ emb@@ li@@ es were an important part of our lives . +The Bible says : “ The one wal@@ king with the wise will become wise , ” and there were many wise ones in my family who sup@@ por@@ ted my decis@@ ion to pione@@ er . +When they were serving congreg@@ ations ne@@ ar@@ by , they som@@ etimes inv@@ ited me to go with them in the ministry . +As a new Be@@ th@@ el@@ ite , with a far@@ m truc@@ k +The far@@ m on St@@ at@@ en Is@@ land includ@@ ed the ra@@ di@@ o st@@ ation W@@ B@@ B@@ R . +On@@ ly 15 to 20 members of the Be@@ the@@ l family were as@@ sig@@ ned to the far@@ m . +M@@ ost of us were young and qu@@ ite in@@ experi@@ enced . +Bro@@ ther Pet@@ er@@ son did his work at Be@@ the@@ l well but never ne@@ gl@@ ected the fi@@ eld ministry . +With A@@ ng@@ el@@ a in 19@@ 7@@ 5 , before a t@@ el@@ ev@@ is@@ ion inter@@ view +Th@@ ree years later , we were inv@@ ited to Be@@ the@@ l . +Why do Jehovah and Christ des@@ er@@ ve to be hon@@ or@@ ed ? +H@@ um@@ ans were cre@@ ated “ in God@@ ’@@ s im@@ age . ” +8 , 9 . ( a ) How do Jehova@@ h@@ ’@@ s Witnesses view govern@@ ment off@@ ic@@ ials ? +( Read 1 Timothy 5 : 17 . ) +Ne@@ ither be called lead@@ ers , for your Le@@ ad@@ er is one , the Christ . +W@@ ho@@ ever ex@@ al@@ ts himself will be hum@@ bl@@ ed , and who@@ ever hum@@ bl@@ es himself will be ex@@ al@@ ted . ” +Why should others not make decis@@ ions for us ? +( a ) To make wise decis@@ ions , we should have faith in what ? +What will help us to make wise decis@@ ions ? +( Read 2 Corinthians 1 : 24 . ) +Lo@@ ving elders help others learn to make their own decis@@ ions ( See par@@ ag@@ rap@@ h 11 ) +E@@ ld@@ ers too should take time to do res@@ ear@@ ch . +Will it bring joy and peace to my family ? +And will it show that I am pati@@ ent and kind ? ’ +Why does Jehovah exp@@ ect us to make our own decis@@ ions ? +What does it mean to serve Jehovah with a compl@@ ete heart ? +Wh@@ ich of the four k@@ ings would you like to im@@ itate , and why ? +( Read 2 Ch@@ ron@@ ic@@ les 14 : 11 . ) +What would your heart move you to do ? +A@@ sa@@ ’@@ s son Jeho@@ s@@ hap@@ hat “ kept wal@@ king in the way of his father As@@ a . ” +( Read 2 Ch@@ ron@@ ic@@ les 20 : 2 - 4 . ) +( Read Isaiah 37 : 15 - 20 . ) +( Read 2 K@@ ings 20 : 1 - 3 . ) +( Read 2 Ch@@ ron@@ ic@@ les 34 : 18 , 19 . ) +Why will we consider the exam@@ ples of four k@@ ings of Jud@@ ah ? +( Read 2 Ch@@ ron@@ ic@@ les 16 : 7 - 9 . ) +( Read 2 Ch@@ ron@@ ic@@ les 32 : 31 . ) +Many pra@@ ise him for what he has done . +( Read 2 Ch@@ ron@@ ic@@ les 35 : 20 - 22 . ) +The Bible says that Ne@@ cho@@ ’@@ s words were “ from the m@@ outh of God . ” +Let us m@@ ed@@ itate on these Bible acc@@ oun@@ ts and be th@@ an@@ k@@ ful that Jehovah has provid@@ ed them for us ! +How many vo@@ ws have you made to Jehovah ? +What about your dedic@@ ation vo@@ w or your marriage vo@@ w ? +When we believe that we have person@@ ally experi@@ enced or ob@@ served an in@@ jus@@ tice , our faith , hum@@ ility , and loy@@ al@@ ty may be t@@ ested . +“ The world is pas@@ sing away and so is its desire , but the one who does the will of God remain@@ s for@@ ever . ” ​ — 1 J@@ O@@ H@@ N 2 : 17 . +What will Jehovah do about wicked people and cor@@ rup@@ t organ@@ iz@@ ations ? +The Bible says : “ The world is pas@@ sing away . ” +There is no dar@@ k@@ ness or de@@ ep sha@@ do@@ w where wr@@ ong@@ do@@ ers can con@@ ce@@ al themselves . ” +L@@ ater in the same p@@ sal@@ m , we read : “ The righteous will poss@@ ess the earth , and they will live for@@ ever on it . ” +Who are “ the me@@ ek ” and “ the righteous ” ? +Why can we be sure that the new earth will be well - organ@@ ized ? +After Ar@@ mag@@ ed@@ don , will there be any organization on earth ? +So the “ new earth ” will be organ@@ ized . +What kind of wrong activ@@ ities are common where you live , and how are you and your family aff@@ ected ? +What do we learn from Jehova@@ h@@ ’@@ s judg@@ ment of So@@ dom and G@@ om@@ or@@ ra@@ h ? +( Read 2 Peter 2 : 6 - 8 . ) +( Read Psalm 46 : 8 , 9 . ) +What are some things that will be g@@ one for@@ ever after Ar@@ mag@@ ed@@ don ? +I@@ l@@ l@@ ustr@@ ate . ( b ) How can we be sure that we will remain after this old world is g@@ one ? +“ W@@ I@@ L@@ L the Jud@@ ge of all the earth not do what is right ? ” +Because Jehovah is the great@@ est example of jus@@ tice and righteousness . +Christians exp@@ ect to experience some in@@ jus@@ tice ou@@ ts@@ ide the Christian congregation . +In 19@@ 46 , he att@@ ended the e@@ igh@@ th cl@@ ass of G@@ il@@ ead S@@ chool in New York , U.@@ S@@ .@@ A . +After gra@@ du@@ ation , he was ev@@ ent@@ ually as@@ sig@@ ned to the circ@@ u@@ it work in S@@ wit@@ z@@ er@@ land . +What exam@@ ples will we consider in this article and in the next ? +In this article , we will consider Abra@@ ham@@ ’@@ s great - gr@@ and@@ son Joseph and his experience with his brothers . +10 , 11 . ( a ) What in@@ jus@@ tic@@ es did Joseph experience ? +( Read Matthew 5 : 23 , 24 ; 18 : 15 . ) +Lo@@ y@@ al@@ ty to Jehovah and to our brothers will prot@@ ect us from making such a mis@@ take . +M@@ ost important , he did not al@@ low the im@@ perf@@ ec@@ tions and wrong ac@@ tions of others to se@@ par@@ ate him from Jehovah . +Why should we dra@@ w even clos@@ er to Jehovah if we experience in@@ jus@@ tice in the congregation ? +How can we show that we have conf@@ idence in “ the Jud@@ ge of all the earth ” ? +See W@@ ill@@ i D@@ i@@ e@@ h@@ l@@ ’@@ s life st@@ ory , “ Jehovah Is My God , in W@@ ho@@ m I Will Tr@@ ust , ” in the No@@ v@@ ember 1 , 199@@ 1 , is@@ sue of The Watchtower . +( See op@@ ening pic@@ tur@@ es . ) ( b ) What questions will be ans@@ w@@ ered in this article ? +They are exc@@ ell@@ ent exam@@ ples for men and women today who cho@@ ose to make vo@@ ws to Jehovah . +How serious is it to make a vo@@ w to God ? +What less@@ ons can we learn from Je@@ ph@@ th@@ ah and H@@ an@@ na@@ h ? +2 , 3 . ( a ) What is a vo@@ w ? +( b ) What do the Scriptures say about making vo@@ ws to God ? +( a ) How serious is it to make a vo@@ w to God ? +( b ) What do we want to learn about Je@@ ph@@ th@@ ah and H@@ an@@ na@@ h ? +( a ) How eas@@ y was it for Je@@ ph@@ th@@ ah and his daugh@@ ter to pa@@ y his vo@@ w to God ? +Je@@ ph@@ th@@ ah said : “ I have op@@ ened my m@@ outh to Jehovah , and I am un@@ able to turn back . ” +( b ) What did H@@ an@@ na@@ h@@ ’@@ s vo@@ w mean for Samuel ? +She took Samuel to H@@ igh P@@ ri@@ est E@@ l@@ i at the t@@ ab@@ ern@@ ac@@ le in S@@ hil@@ o@@ h and said : “ It was for this bo@@ y that I pray@@ ed , and Jehovah gr@@ an@@ ted my pet@@ ition that I asked of him . +The second most important vo@@ w that a person can make is the marriage vo@@ w . +What does the Bible say about div@@ or@@ ce and se@@ par@@ ation ? +( Read 1 Corinthians 7 : 10 , 11 . ) +One cou@@ ple said : “ Since we have been stud@@ ying this bro@@ ch@@ ure , our marriage has been happ@@ i@@ er than ever . ” +We are doing much better now as a cou@@ ple . ” +18 , 19 . ( a ) What have many Christian parents done ? +( b ) What can be said about those who are in special full - time service ? +S@@ pec@@ ial full - time service vo@@ w ( See par@@ ag@@ rap@@ h 19 ) +It is not the people but their as@@ sign@@ ments that are vie@@ wed as special . +See the A@@ p@@ pen@@ di@@ x article “ The Bib@@ le@@ ʼ@@ s V@@ i@@ e@@ w on D@@ iv@@ or@@ ce and Se@@ par@@ ation ” in the book “ K@@ eep Yo@@ ur@@ selves in God@@ ʼ@@ s Lo@@ ve . ” +Does the Al@@ m@@ igh@@ ty care that you are righteous , or does he gain any@@ thing because you follow the course of in@@ te@@ gr@@ ity ? ” +( b ) How did Israel de@@ fe@@ at J@@ ab@@ in@@ ’@@ s ar@@ my ? +( Read Jud@@ ges 4 : 14 - 16 . ) +The tor@@ r@@ ent of K@@ is@@ ho@@ n w@@ ash@@ ed them away . ” +See the article “ An@@ x@@ i@@ ety Ab@@ out M@@ one@@ y ” in the J@@ u@@ ly 1 , 20@@ 15 , is@@ sue of The Watchtower . +1 , 2 . ( a ) What in@@ jus@@ tice did N@@ ab@@ oth and his sons experience ? +( b ) What two qual@@ ities will we consider in this article ? +What kind of man was N@@ ab@@ oth , and why did he ref@@ use to sel@@ l his v@@ in@@ e@@ y@@ ard to King A@@ ha@@ b ? +N@@ ab@@ oth was faithful to Jehovah at a time when most Israelites were following the bad example of King A@@ ha@@ b and his wife , wicked Q@@ u@@ e@@ en Je@@ ze@@ be@@ l . +Read 1 K@@ ings 21 : 1 - 3 . +He resp@@ ec@@ t@@ fully explain@@ ed : “ It is un@@ thin@@ k@@ able , from Jehova@@ h@@ ’@@ s stand@@ point , for me to give you the in@@ her@@ it@@ ance of my for@@ ef@@ a@@ thers . ” +Why would hum@@ ility have been a prot@@ ection to N@@ ab@@ o@@ th@@ ’@@ s family and friends ? +( Read De@@ uteronom@@ y 32 : 3 , 4 . ) +( b ) In what ways will hum@@ ility prot@@ ect us ? +How will you respon@@ d if the elders ann@@ oun@@ ce a decis@@ ion that you do not ag@@ ree with ? +What account will we now consider , and why ? +How was Peter cor@@ rec@@ ted , and what questions ar@@ ise ? +In fact , he was later inspired to wr@@ ite two let@@ ters that became part of the Bible . +3 H@@ el@@ p@@ ing “ F@@ ore@@ ign R@@ es@@ id@@ ents ” to “ Ser@@ ve Jehovah With Re@@ jo@@ ic@@ ing ” +The second article consid@@ ers how ap@@ pl@@ ying Bible principles will help im@@ mig@@ r@@ ant parents to make decis@@ ions that will benefit their children . +“ We could see people run@@ ning , sho@@ ot@@ ing . +My parents and 11 of us s@@ ib@@ l@@ ings fl@@ ed for our lives with only the clo@@ th@@ es on our b@@ ac@@ ks . +How did Jesus and many of his disciples become re@@ fu@@ ge@@ es ? +He said : “ When they per@@ sec@@ ute you in one city , f@@ le@@ e to another . ” +( b ) are living in a cam@@ p ? +My fe@@ et were so s@@ w@@ ol@@ l@@ en that I told my family to go on without me . +My father ​ — not about to ab@@ and@@ on me to the re@@ be@@ l for@@ ces — ​ car@@ ri@@ ed me . +They g@@ os@@ s@@ ip@@ ed , d@@ ran@@ k , g@@ amb@@ led , sto@@ le , and were im@@ moral . ” +( Read 1 John 3 : 17 , 18 . ) +( b ) Why do they need our pati@@ ent help ? +They need to see that we care about them . +( b ) How can re@@ fu@@ ge@@ es show gr@@ at@@ itude ? +How can we help our brothers and s@@ isters who are re@@ fu@@ ge@@ es ? +( a ) What tem@@ p@@ t@@ ation do re@@ fu@@ ge@@ es need to res@@ ist ? +F@@ in@@ ally , he held up the emp@@ ty b@@ a@@ g and said with a sm@@ ile : ‘ You see ? +This is all you need ! ’ ” ​ — Read 1 Timothy 6 : 8 . +They need to sense Jehova@@ h@@ ’@@ s love and com@@ pas@@ sion among their fellow Christians . +Many of to@@ da@@ y@@ ’@@ s re@@ fu@@ ge@@ es come from countries where our preaching work is res@@ tr@@ ic@@ ted . +She said : “ The brothers there tre@@ ated them like close relati@@ ves , provid@@ ing food , clo@@ th@@ es , sh@@ el@@ ter , and tr@@ an@@ sp@@ or@@ t@@ ation . +Who el@@ se would w@@ el@@ come str@@ ang@@ ers into their home just because they worship the same God ? +On@@ ly Jehova@@ h@@ ’@@ s Witnesses ! ” ​ — Read John 13 : 35 . +As soon as possible after a re@@ fu@@ ge@@ e arr@@ ives , elders should follow the dir@@ ection in Or@@ gan@@ ized to Do Jehova@@ h@@ ’@@ s Will , chap@@ ter 8 , par@@ ag@@ rap@@ h 30 . +In the mean@@ time , they can ask disc@@ re@@ et questions about a re@@ fu@@ ge@@ e@@ ’@@ s congregation and ministry to dis@@ cer@@ n his spiritual cond@@ ition . +“ No gre@@ ater joy do I have than this : that I should he@@ ar that my children go on wal@@ king in the truth . ” ​ — 3 J@@ O@@ H@@ N 4 . +How can parents set a good example for their children ? +How can family head@@ s dec@@ ide which language congregation the family will att@@ end ? +How can others help im@@ mig@@ r@@ ant parents and their children ? +1 , 2 . ( a ) What problem do many im@@ mig@@ r@@ ant children experience ? +( b ) What questions will this article discus@@ s ? +“ But after I started school , I began to pre@@ f@@ er the local language . +W@@ i@@ th@@ in a few years , the sh@@ if@@ t was compl@@ ete . +I cou@@ ld@@ n@@ ’@@ t understand the meetings , and I di@@ d@@ n@@ ’@@ t id@@ entif@@ y with my parents ’ cul@@ ture . ” +3 , 4 . ( a ) How can parents set a good example for their children ? +( b ) What should parents not exp@@ ect of their children ? +When your children see you “ se@@ ek@@ ing first the Kingdom , ” they learn to de@@ p@@ end on Jehovah for their da@@ ily needs . +N@@ ever get so bus@@ y that you do not have time for your children . +How may your children benefit from lear@@ ning your language ? +Par@@ ents , if that describ@@ es your children , can you learn at le@@ ast some of the local language ? +A child who commun@@ ic@@ ates best in another spok@@ en language des@@ er@@ ves the same concer@@ n , would you not ag@@ ree ? +If that is your situation , you can still help your children to come to know and love Jehovah . +“ But when we saw her stud@@ ying , pra@@ ying , and doing her best to conduct family worship every we@@ ek , we under@@ sto@@ od that g@@ etting to know Jehovah was very important . ” +How can parents help children who may need to study in two langu@@ ages ? +( a ) Who must dec@@ ide which language congregation to att@@ end ? +That may not be the case when children do not fully understand the language . +( Read 1 Corinthians 14 : 9 , 11 . ) +The answer was not what we person@@ ally found conven@@ i@@ ent . +But when we saw that they were g@@ etting little benefit from the meetings in our language , we dec@@ ided to move to the local - language congregation . +To@@ gether , we reg@@ ularly att@@ ended meetings and sh@@ ared in the ministry . +We also inv@@ ited local friends to jo@@ in us for me@@ als and exc@@ ur@@ sions . +All of this helped our children to get to know the brothers and to get to know Jehovah , not only as their God but also as their Father and F@@ ri@@ end . +We consid@@ ered this to be much more important than their mas@@ ter@@ ing our language . ” +Samuel ad@@ ds : “ To keep ourselves spiritually strong , my wife and I also att@@ ended meetings in our language . +Li@@ fe was very bus@@ y , and we were tir@@ ed . +But we th@@ an@@ k Jehovah for bless@@ ing our ef@@ forts and sacrif@@ ices . +Our three children are all serving Jehovah in the full - time ministry . ” +“ I knew the bas@@ ics of my parents ’ language , but the language spok@@ en at the meetings was over my head , ” rec@@ all@@ s Krist@@ ina . +“ When I was 12 , I att@@ ended a conven@@ tion in my school language . +For the first time , I under@@ sto@@ od that what I was hear@@ ing was the truth ! +Ano@@ ther tur@@ ning point came when I began to pray in my school language . +I could speak to Jehovah from my heart ! ” +Y@@ oun@@ g people , do you think that you would pre@@ f@@ er being part of a local - language congregation ? +“ When my s@@ ib@@ l@@ ings and I got into our te@@ ens , we wanted to s@@ wit@@ ch to the local - language congregation , ” says Na@@ dia , who now ser@@ ves at Be@@ the@@ l . +“ Now we@@ ’@@ r@@ e gr@@ at@@ eful that our parents wor@@ ked hard to teach us their language and kept us in the for@@ e@@ ign - language congregation . +It has en@@ ri@@ ched our lives and bro@@ ad@@ ened our opport@@ un@@ ities to help others get to know Jehovah . ” +( b ) How can parents get help in teaching their children the truth ? +( Read Proverbs 1 : 8 ; 31 : 10 , 27 , 28 . ) +S@@ till , parents who do not know the local language may need help to re@@ ach their ch@@ ild@@ r@@ en@@ ’@@ s heart . +B@@ oth children and parents benefit from associ@@ ation with the congregation ( See par@@ ag@@ rap@@ h@@ s 18 , 19 ) +( b ) What must parents continue to do ? +“ When they helped me with stud@@ ent talk as@@ sign@@ ments for the meet@@ ing , I always learned more . +And I enjo@@ yed the le@@ is@@ ure activ@@ ities we sh@@ ared in as a group . ” +Par@@ ents , pray to Jehovah for help , and try your best . +( Read 2 Ch@@ ron@@ ic@@ les 15 : 7 . ) +P@@ ut your ch@@ ild@@ ’@@ s fri@@ end@@ ship with Jehovah a@@ head of your own inter@@ ests . +But it w@@ as@@ n@@ ’@@ t until 19@@ 46 that I really under@@ sto@@ od Bible truth . +E@@ v@@ ent@@ ually , I learned sig@@ n language and had fu@@ n pl@@ ay@@ ing with the other children . +She accep@@ ted a magaz@@ ine sub@@ s@@ crip@@ tion and wanted me to me@@ et her husband , G@@ ary . +E@@ v@@ ent@@ ually , f@@ ive from their cl@@ ass became Jehova@@ h@@ ’@@ s Witnesses . +At that time , she gave me a pi@@ ec@@ e of c@@ and@@ y and asked if we could be friends . +When she wanted to get baptized , her parents told her , “ Bec@@ ome one of Jehova@@ h@@ ’@@ s Witnesses , and you will have to leave our home ! ” +She continu@@ ed her study and later got baptized . +When we got married in 19@@ 60 , her parents did not come to our wed@@ ding . +My son N@@ ich@@ ol@@ as and his wife , De@@ bor@@ ah , serve at L@@ ond@@ on Be@@ the@@ l +F@@ a@@ ye and James , Jer@@ ry and E@@ v@@ el@@ y@@ n , S@@ han@@ n@@ an and St@@ even +We are now part of the C@@ al@@ g@@ ary S@@ ign - L@@ angu@@ age C@@ ong@@ reg@@ ation , where I continue to serve as an eld@@ er . +How can we keep our love for Jehovah strong ? +How can we de@@ ep@@ en our love for Bible truth ? +Why is it important to have aff@@ ection for our brothers ? +What may have ca@@ used the love of some Christians to g@@ row co@@ ld ? +Pe@@ ople today have less and less love for God . +S@@ how love for Jehovah ( See par@@ ag@@ rap@@ h 10 ) +( Read Psalm 1@@ 19 : 9@@ 7 - 1@@ 00 . ) +S@@ how love for Bible truth ( See par@@ ag@@ rap@@ h 14 ) +On his last night on earth , Jesus said to his disciples : “ I am giving you a new command@@ ment , that you love one another ; just as I have loved you , you also love one another . +By this all will know that you are my disciples ​ — if you have love among your@@ selves . ” ​ — John 13 : 34 , 35 . +The apostle John wrote : “ The one who does not love his brother , whom he has seen , cannot love God , whom he has not seen . ” +S@@ how love for the brothers and s@@ isters ( See par@@ ag@@ rap@@ h 17 ) +What are some ways in which we can show love ? +Read 1 Th@@ ess@@ al@@ on@@ ians 4 : 9 , 10 . +“ Sim@@ on son of John , do you love me more than these ? ” ​ — J@@ O@@ H@@ N 21 : 15 . +Then he said to them : “ ‘ C@@ ast the ne@@ t on the right side of the bo@@ at and you will find some . ’ +So they c@@ ast it , but they were not able to ha@@ ul it in because of the large number of f@@ ish . ” ​ — John 21 : 1 - 6 . +( b ) What valu@@ able less@@ on did a brother in T@@ ha@@ il@@ and learn about his work ? +As a result , it left me al@@ most no time for spiritual matters . +I fin@@ ally real@@ ized that in order to put Kingdom inter@@ ests first , I needed to change my line of work . ” +“ After pl@@ an@@ ning for about a year , ” he explain@@ ed , “ I dec@@ ided to become a st@@ re@@ et v@@ end@@ or and sel@@ l ice cre@@ am . +In the beg@@ in@@ ning , I str@@ ug@@ g@@ led fin@@ anci@@ ally and got dis@@ courag@@ ed . +When I me@@ t my form@@ er work@@ mat@@ es , they would la@@ ug@@ h at me and ask why I thought sel@@ ling ice cre@@ am was better than working with com@@ put@@ ers in an ai@@ r - cond@@ iti@@ oned en@@ vir@@ on@@ ment . +I pray@@ ed to Jehovah , as@@ king him to help me to c@@ ope and to re@@ ach my go@@ al of having more time for spiritual activ@@ ities . +I got better ac@@ qu@@ ain@@ ted with my c@@ us@@ tom@@ ers ’ t@@ ast@@ es and became more sk@@ ill@@ ful in making ice cre@@ am . +So@@ on , I was sel@@ ling all my ice cre@@ am every day . +Ac@@ t@@ ually , I was better - off fin@@ anci@@ ally than when I wor@@ ked with com@@ put@@ ers . +It has made me happ@@ i@@ er because I do not have the str@@ ess and wor@@ ry that I had with my form@@ er jo@@ b . +And most important , I now feel clos@@ er to Jehovah . ” ​ — Read Matthew 5 : 3 , 6 . +After his bap@@ tis@@ m , he said : “ The only re@@ gre@@ t I have is that I lost so much time before I real@@ ized that serving Jehovah br@@ ings far more happiness than pur@@ su@@ ing the ent@@ er@@ tain@@ ment offer@@ ed by this world . ” +Jesus st@@ ated that “ no one can slave for two mas@@ ters . ” +He add@@ ed : “ You cannot slave for God and for R@@ ich@@ es . ” +( Read 1 Corinthians 2 : 14 . ) +See the article “ Is Your R@@ ec@@ re@@ ation B@@ en@@ ef@@ ic@@ ial ? ” +We also sh@@ ared reg@@ ularly in the fi@@ eld ministry . ” +We were so sa@@ d to leave our Bible stud@@ ents be@@ h@@ ind . ” +But then , a mon@@ th later , they received thr@@ ill@@ ing news . +M@@ ir@@ i@@ am says : “ We were inv@@ ited to serve as special pione@@ ers . +What a joy to be able to st@@ ay in our as@@ sign@@ ment ! ” +They tr@@ us@@ ted in the promise found at Psalm 37 : 5 : “ Com@@ m@@ it your way to Jehovah ; re@@ ly on him , and he will act in your be@@ half . ” +Today we do , and we l@@ ack nothing of real import@@ ance . ” +Why can we exp@@ ect that marriage and family life will invol@@ ve some tr@@ ials ? +We can be sure that he wan@@ ts the best for us , as he did for his servants in the past . ​ — Read Jeremiah 29 : 11 , 12 . +( Read 1 Samuel 1 : 4 - 7 . ) +“ Even though An@@ n was not rel@@ ated to me , I found her loving concer@@ n to be such a help , ” Pa@@ ul@@ a explain@@ s . +“ It helped me to keep serving Jehovah . ” +( Read Psalm 14@@ 5 : 18 , 19 . ) +“ W@@ here your t@@ reas@@ ure is , there your hear@@ ts will be also . ” ​ — L@@ U@@ K@@ E 12 : 34 . +As we do so , m@@ ed@@ itate on how you person@@ ally can de@@ ep@@ en your love for these spiritual t@@ reas@@ ur@@ es . +Can you im@@ ag@@ ine how preci@@ ous that pe@@ ar@@ l was to him ? +( Read Mark 10 : 28 - 30 . ) +( a ) Why did the apostle Paul describ@@ e our ministry as a “ t@@ reas@@ ure in ear@@ then v@@ es@@ sel@@ s ” ? +( Read Romans 1 : 14 , 15 ; 2 Timothy 4 : 2 . ) +Some of them serve as Be@@ th@@ el@@ ites , pione@@ ers , and elders . +I@@ r@@ ene says , “ When I think of other go@@ als I could have pur@@ su@@ ed , I can@@ ’@@ t im@@ ag@@ ine one that would have brought me more joy . ” +What is the “ t@@ reas@@ ure st@@ ore ” that Jesus refer@@ red to at Matthew 13 : 5@@ 2 , and how do we f@@ ill it ? +( Read Proverbs 2 : 4 - 7 . ) +Consider the experience of a brother nam@@ ed Peter . +To t@@ est Peter , the r@@ ab@@ b@@ i asked , “ So , my bo@@ y , what language was the book of Daniel written in ? ” +When I went home and ch@@ ec@@ ked the Watchtower and A@@ wake ! +magaz@@ ines from the pre@@ vi@@ ous mon@@ ths , I found an article explain@@ ing that Daniel was written in Ar@@ am@@ ai@@ c . ” +As you do this , you will bu@@ ild up “ t@@ reas@@ ure in the heav@@ ens , where no th@@ i@@ ef g@@ ets near and no m@@ oth cons@@ um@@ es . +For where your t@@ reas@@ ure is , there your hear@@ ts will be also . ” ​ — Luke 12 : 33 , 34 . +“ I had tr@@ ou@@ ble g@@ etting along with a brother who wor@@ ked with me . +On@@ ce when we were y@@ ell@@ ing at each other , two people came in and wit@@ nes@@ sed our b@@ low@@ up . ” ​ — CH@@ R@@ I@@ S . +“ A sis@@ ter with whom I often pre@@ ached s@@ ud@@ d@@ enly ended our arrang@@ ements for the ministry . +I had no ide@@ a why . ” ​ — J@@ AN@@ E@@ T . +“ I was on a three - person ph@@ one c@@ all . +One of the others said good - b@@ ye , and I thought he was off the line . +I then said un@@ kind things about him to the other person on the ph@@ one , but the first person had not hun@@ g up . ” ​ — M@@ I@@ CH@@ A@@ E@@ L . +“ In our congregation , two pione@@ ers began having problems . +Their b@@ ick@@ ering was dis@@ courag@@ ing to others . ” ​ — G@@ AR@@ Y . +“ Do not become up@@ set with one another on the way . ” +“ P@@ l@@ ans fai@@ l when there is no con@@ su@@ l@@ t@@ ation . ” +M@@ icha@@ el says , “ My brother gen@@ u@@ in@@ ely for@@ gave me . ” +“ Con@@ tin@@ ue put@@ ting up with one another and for@@ giving one another fre@@ ely even if anyone has a cause for compl@@ ain@@ t against another . ” +Now they get along well as they pre@@ ach the good news . +That differ@@ ence may se@@ em un@@ important ; yet , it can lead to serious problems . ” +As my ir@@ rit@@ ation gre@@ w , I started being cur@@ t with her . +I thought , ‘ She does not show me the respect I des@@ er@@ ve , so I am not going to show her respect . ’ ” +“ I began se@@ e@@ ing my own person@@ ality fl@@ a@@ ws , and I was very dis@@ appoin@@ ted in my@@ self . +I real@@ ized that I had to ad@@ just my thinking . +After pra@@ ying to Jehovah about the matter , I b@@ ought the sis@@ ter a small gif@@ t and wrote her a car@@ d to ap@@ olog@@ ize for my bad attitude . +We h@@ ug@@ ged each other and ag@@ re@@ ed to put the matter be@@ h@@ ind us . +We have not had any more problems . ” +F@@ O@@ R many people today , money is the bi@@ g is@@ sue . +Why must the is@@ sue of so@@ ver@@ e@@ ign@@ ty be s@@ et@@ t@@ led ? +How important is the v@@ indic@@ ation of Jehova@@ h@@ ’@@ s so@@ ver@@ e@@ ign@@ ty ? +Why , from the day our for@@ ef@@ a@@ thers f@@ ell as@@ le@@ ep in death , all things are continu@@ ing ex@@ ac@@ tly as they were from cre@@ ati@@ on@@ ’@@ s beg@@ in@@ ning . ” +( Read Isaiah 5@@ 5 : 10 , 11 . ) +( Read Job 1 : 7 - 12 . ) +( Read Job 38 : 18 - 21 . ) +( Read Romans 5 : 3 - 5 . ) +One reason is that he rul@@ es with love . +He car@@ es for us better than we can care for ourselves . +How can elders and family head@@ s im@@ itate Jehovah ? +Psalm 14@@ 7 re@@ pe@@ at@@ edly encourag@@ es God@@ ’@@ s people to pra@@ ise Jehovah . +What was it about Jehovah that im@@ pres@@ sed the p@@ sal@@ mis@@ t so much that he wanted God to be pra@@ ised ? +Many young brothers and s@@ isters are ze@@ al@@ ously ent@@ ering the full - time service . +“ M@@ ake friends for your@@ selves by means of the un@@ righteous ri@@ ches . ” ​ — L@@ U@@ K@@ E 16 : 9 . +How can we avoid becom@@ ing sl@@ av@@ es of to@@ da@@ y@@ ’@@ s comm@@ er@@ ci@@ al world ? +In this system of things , why will there always be some po@@ or people ? +What can we learn from Jesus ’ counsel ? +How do we know that to@@ da@@ y@@ ’@@ s comm@@ er@@ ci@@ al system was not part of God@@ ’@@ s purpose ? +G@@ ive exam@@ ples of how some are sho@@ wing faith@@ ful@@ ness in their use of un@@ righteous ri@@ ches . +I am more gener@@ ous in being for@@ giving , in being pati@@ ent with others , and in being able to accept dis@@ appoin@@ t@@ ments and counsel . ” +How did Abraham show that he tr@@ us@@ ted in God ? +( b ) How can we ap@@ ply Pa@@ ul@@ ’@@ s counsel today ? +After call@@ ing Timothy “ a fine sol@@ di@@ er of Christ Jesus , ” Paul told him : “ No man serving as a sol@@ di@@ er invol@@ ves himself in the comm@@ er@@ ci@@ al bus@@ in@@ ess@@ es of life , in order to gain the appro@@ val of the one who en@@ ro@@ l@@ led him as a sol@@ di@@ er . ” +Jehovah bless@@ es those who are “ r@@ ich in fine works . ” +H@@ igh - qu@@ ality mater@@ ials of wo@@ od , st@@ one , and m@@ et@@ al will be fre@@ ely ava@@ il@@ able to bu@@ ild be@@ au@@ ti@@ ful hom@@ es . +To d@@ on@@ ate on@@ line , go to j@@ w@@ .@@ or@@ g and cl@@ ick the “ M@@ ake a D@@ on@@ ation to Our Wor@@ ld@@ wide Wor@@ k ” l@@ in@@ k near the b@@ ot@@ to@@ m of any page . +“ F@@ O@@ R al@@ most a year after the death of our son , we felt de@@ ep and exc@@ ru@@ ci@@ ating pain , ” said S@@ us@@ i . +E@@ very sing@@ le time , the peace of God truly gu@@ ar@@ ded our hear@@ ts and m@@ ind@@ s . ” ​ — Read Philipp@@ ians 4 : 6 , 7 . +How did Jesus show em@@ pa@@ thy when L@@ az@@ ar@@ us died ? +If you are g@@ ri@@ ev@@ ing , you too can find so@@ o@@ thing com@@ fort from such s@@ criptur@@ es as the following : +( Read 1 Th@@ ess@@ al@@ on@@ ians 5 : 11 . ) +What do we need to rem@@ ember about g@@ ri@@ ef ? +Even when someone does expres@@ s how he feel@@ s , it is not always eas@@ y for others to understand what he is tr@@ ying to say . +At that m@@ om@@ ent , I d@@ on@@ ’@@ t feel qu@@ ite so alone in my g@@ ri@@ ef . ” +“ R@@ ec@@ e@@ iving a shor@@ t encourag@@ ing message or an inv@@ it@@ ation to sp@@ end time with a fellow Christian help@@ s me more than I can say , ” says J@@ un@@ ia . +“ Those expres@@ sions make me feel loved and car@@ ed for . ” +“ S@@ om@@ etimes when s@@ isters have come to com@@ fort me , ” rec@@ all@@ s D@@ al@@ ene , “ I have asked them if they are will@@ ing to say a prayer . +They star@@ t pra@@ ying , often bat@@ t@@ ling to speak at first , but every time , with@@ in a few s@@ ent@@ ences , their vo@@ ice g@@ ets str@@ ong@@ er and they say the most hear@@ t@@ felt prayer . +Their strong faith , their love , and their concer@@ n have been very faith - streng@@ th@@ ening . ” +“ A true friend shows love at all times , and is a brother who is born for times of distr@@ ess . ” +“ I expec@@ ted my first wed@@ ding ann@@ iver@@ s@@ ary to be very tr@@ a@@ um@@ ati@@ c , ” rel@@ ates one brother , “ and it was not eas@@ y . +But a few brothers and s@@ isters pl@@ an@@ ned a small ga@@ ther@@ ing of my clos@@ est friends so that I w@@ ou@@ ld@@ n@@ ’@@ t be on my own . ” +“ O@@ f@@ ten the help and compan@@ i@@ on@@ ship offer@@ ed when there is no special ann@@ iver@@ s@@ ary can be very benef@@ ic@@ ial , ” explain@@ s J@@ un@@ ia . +“ Those sp@@ on@@ t@@ an@@ e@@ ous m@@ om@@ ents are so valu@@ able and bring much com@@ fort . ” +They have truly made me feel Jehova@@ h@@ ’@@ s loving ar@@ ms around me . ” +Why are Jehova@@ h@@ ’@@ s prom@@ ises a so@@ ur@@ ce of great com@@ fort ? +God prom@@ ises that “ he will do away with death for@@ ever , and the S@@ over@@ e@@ ign Lord Jehovah will w@@ ip@@ e away the te@@ ars from all fac@@ es . ” +O@@ ther s@@ criptur@@ es that many have found com@@ for@@ ting are Psalm 20 : 1 , 2 ; 31 : 7 ; 38 : 8 , 9 , 15 ; 5@@ 5 : 22 ; 1@@ 21 : 1 , 2 ; Isaiah 5@@ 7 : 15 ; 6@@ 6 : 13 ; Philipp@@ ians 4 : 13 ; and 1 Peter 5 : 7 . +See also the article “ Com@@ fort the B@@ ere@@ av@@ ed , as Jesus D@@ id ” in the No@@ v@@ ember 1 , 20@@ 10 , is@@ sue of The Watchtower . +“ We d@@ on@@ ’@@ t know what to say exc@@ ept that we love you . +We can@@ ’@@ t understand ex@@ ac@@ tly how you feel , but Jehovah does and will keep ra@@ is@@ ing you up . +We hope that our pray@@ ers will help a little . ” +“ May Jehovah s@@ us@@ tain you at this time of such great l@@ oss . ” +“ May you find com@@ fort in know@@ ing that your de@@ ar one is sa@@ fe in the m@@ em@@ ory of God , who will rem@@ ember every det@@ ai@@ l about him and bring him back again . ” +“ Your loved one will never have to face the last enem@@ y , death , ever again . +In the mean@@ time , his ac@@ ts of faith live on until he stand@@ s up al@@ ive and whole in the Par@@ adise . ” +“ While words fai@@ l to cap@@ ture the pain of l@@ os@@ ing a loved one , we look for@@ ward to the time when words will fai@@ l to cap@@ ture the joy of having our heavenly Father return your de@@ ar one to you . ” +During the great trib@@ ulation , Christians will re@@ ly on Jehovah and not try to de@@ f@@ end themselves +In an ap@@ ple or@@ ch@@ ard in G@@ r@@ ó@@ j@@ e@@ c , a publ@@ ish@@ er sh@@ ar@@ es the Bib@@ le@@ ’@@ s message with one of the work@@ ers +( b ) What can we learn from stud@@ ying Psalm 14@@ 7 ? +And there may be tr@@ illi@@ ons of g@@ al@@ a@@ x@@ ies in the un@@ iver@@ se ! +I want you to enjoy your life as one of my Witnesses ! ” +( Read Psalm 14@@ 7 : 8 , 9 . ) +Mut@@ su@@ o says : “ I felt that Jehovah was right next to each one of us and car@@ ing for us . +12 , 13 . ( a ) To benefit from God@@ ’@@ s help , what should we avoid ? +On the other hand , God “ hur@@ ls the wicked to the gr@@ ound . ” +“ Jehovah f@@ ind@@ s pleas@@ ure in those who fear him , in those wa@@ iting for his loy@@ al love . ” +15 - 17 . ( a ) How might we at times feel about our tr@@ ials , but how does Jehovah use his Word to help us ? +Today , Jehovah gu@@ id@@ es us with his Word , the Bible . +( Read Psalm 14@@ 7 : 19 , 20 . ) +What pl@@ ans can lead to a happy future for you ? +What could a life in the pione@@ er service lead to ? +Y@@ O@@ U young ones will prob@@ ably ag@@ ree that before star@@ ting a jo@@ ur@@ ne@@ y , it is wise to pl@@ an where you will go . +Li@@ fe is like a jo@@ ur@@ ne@@ y , and the time to pl@@ an where you want to go is when you are young . +How do you know that Jehovah wan@@ ts you to pl@@ an for a happy future ? +Your Creator is “ the God of love , ” “ the happy God , ” who made humans “ in his im@@ age . ” +You will be happy when you im@@ itate our loving God . +Jesus Christ set the perfect example for you young ones . +Jesus also d@@ re@@ w close to Jehovah by stud@@ ying the Scriptures . +“ P@@ l@@ ans fai@@ l when there is no con@@ su@@ l@@ t@@ ation , but there is ac@@ compl@@ ish@@ ment through many ad@@ vis@@ ers . ” +As with any car@@ e@@ er , you need time to become sk@@ ill@@ ed . +At first , I cou@@ ld@@ n@@ ’@@ t star@@ t any Bible stu@@ dies , but later I moved to another ter@@ rit@@ ory , and with@@ in a mon@@ th I started sever@@ al stu@@ dies . +One stud@@ ent began coming to the Kingdom H@@ all . +For example , J@@ ac@@ o@@ b , from N@@ or@@ th America , wr@@ ites : “ When I was se@@ ven , many of my cl@@ ass@@ mat@@ es were V@@ i@@ et@@ nam@@ ese . +I wanted to tell them about Jehovah , so after a while I made pl@@ ans to learn their language . +For the most part , I learned by com@@ par@@ ing the Eng@@ l@@ ish and V@@ i@@ et@@ nam@@ ese ed@@ itions of The Watchtower . +I also made friends in a ne@@ ar@@ by V@@ i@@ et@@ nam@@ ese - language congregation . +When I was 18 , I started pione@@ ering . +L@@ ater , I att@@ ended the Bible S@@ chool for S@@ ing@@ le Bro@@ thers . +This helped me with my present pione@@ er as@@ sign@@ ment , where I am the only eld@@ er in a V@@ i@@ et@@ nam@@ ese - language group . +Many V@@ i@@ et@@ nam@@ ese people are am@@ az@@ ed that I have learned their language . +They inv@@ ite me in , and often I can study the Bible with them . +Some have pro@@ g@@ res@@ sed to bap@@ tis@@ m . ” ​ — Com@@ pare Acts 2 : 7 , 8 . +I enjoy encourag@@ ing the young brothers in our congregation and se@@ e@@ ing their spiritual pro@@ g@@ ress . +After I att@@ ended the Bible S@@ chool for S@@ ing@@ le Bro@@ thers , I received a new pione@@ er as@@ sign@@ ment . +I@@ t@@ ’@@ s true that I have never found anyone in the ter@@ rit@@ ory who pro@@ g@@ res@@ sed to bap@@ tis@@ m , but others have . +How may pione@@ er service lead to other opport@@ un@@ ities ? +A brother nam@@ ed K@@ ev@@ in says : “ E@@ ver since I was a little bo@@ y , I have wanted to serve Jehovah full - time some@@ day . +F@@ in@@ ally , I started pione@@ ering when I was 19 . +I sup@@ por@@ ted my@@ self working part - time for a brother who was a build@@ er . +I learned to inst@@ all ro@@ of@@ s , win@@ do@@ ws , and do@@ ors . +L@@ ater , I sp@@ ent two years with a hur@@ r@@ ic@@ ane reli@@ ef te@@ am , re@@ build@@ ing Kingdom H@@ all@@ s and hom@@ es for the brothers . +When I heard about the con@@ struc@@ tion needs in South Africa , I ap@@ pli@@ ed and was inv@@ ited to go . +Here in Africa , I move from one Kingdom H@@ all pro@@ ject to another every few we@@ ek@@ s . +We live together , study the Bible together , and work together . +I also enjoy preaching with the local brothers each we@@ ek . +The pl@@ ans I made as a bo@@ y have made me happy in ways I did not for@@ es@@ e@@ e . ” +Be@@ the@@ l service is a happy way of life because every@@ thing you do there is for Jehovah . +After a year and a half , I was inv@@ ited to Be@@ the@@ l , where I learned to op@@ er@@ ate pr@@ in@@ ting pres@@ ses and later to do com@@ put@@ er pro@@ gr@@ am@@ m@@ ing . +At Be@@ the@@ l , I enjoy hear@@ ing fir@@ s@@ th@@ and about the pro@@ g@@ ress of the discip@@ le - making activ@@ ity world@@ wide . +I love serving here because what we do help@@ s people to dra@@ w close to Jehovah . ” +You can be sure that Jehovah wan@@ ts you to “ get a fir@@ m hold ” on a happy future . +( Read 1 Timothy 6 : 18 , 19 . ) +Then pl@@ an to do what is pleas@@ ing to him . +He has stu@@ died human be@@ ha@@ vi@@ or since man was cre@@ ated . +I@@ t@@ ’@@ s something you have to find out for yourself . ” +and “ Do not let them lead you into dis@@ as@@ ter ! ” +Jesus said : “ Do not fear those who k@@ ill the body and after this are not able to do any@@ thing more . ” +Do not be struc@@ k with ter@@ ro@@ r or fear , for Jehovah your God is with you wh@@ er@@ ever you go . ” +L@@ ist@@ en to Jehovah and trust in him in all that you do . +The second article high@@ l@@ igh@@ ts how Jehovah can do the un@@ expec@@ ted by ac@@ compl@@ ish@@ ing things we could never im@@ ag@@ ine . +L@@ ike the far@@ m@@ er , we need to wa@@ it pati@@ ently . +What can we learn from the example of the prophet M@@ ic@@ ah ? +( Read M@@ ic@@ ah 7 : 1 - 3 . ) +If we have faith like that of M@@ ic@@ ah , we will be will@@ ing to wa@@ it for Jehovah . +So we “ end@@ ure fully with pati@@ ence and joy . ” +Abraham had to wa@@ it many years before his gr@@ and@@ sons E@@ sa@@ u and J@@ ac@@ o@@ b were born ( See par@@ ag@@ rap@@ h@@ s 9 , 10 ) +( Read Hebrews 11 : 8 - 12 . ) +But just im@@ ag@@ ine Abra@@ ham@@ ’@@ s joy when he is resurrec@@ ted back to a par@@ adise earth . +Although you me@@ ant to har@@ m me , God int@@ ended it to turn out well and to pres@@ er@@ ve many people al@@ ive , as he is doing today . ” +( b ) What helped David to wa@@ it pati@@ ently ? +I will sing to Jehovah , for he has ri@@ ch@@ ly re@@ war@@ ded me . ” +( Read 2 Peter 3 : 9 . ) +What will help us to be will@@ ing to wa@@ it pati@@ ently ? +What less@@ ons do we learn from what happ@@ ened to the apostle Paul in Philipp@@ i ? +( Read Acts 16 : 8 - 10 . ) +So@@ on after he arr@@ ived in M@@ ac@@ ed@@ on@@ ia , he ended up in pris@@ on ! +Why did Jehovah al@@ low this to happ@@ en to Paul ? +B@@ oth he and S@@ il@@ as started “ pra@@ ying and pra@@ is@@ ing God with s@@ ong . ” +4 , 5 . ( a ) How could our situation be similar to that of Paul ? +( b ) How did Pa@@ ul@@ ’@@ s situation change un@@ expec@@ t@@ edly ? +What will we now discus@@ s and re@@ view together ? +( Read 1 Peter 5 : 6 , 7 . ) +S@@ om@@ etimes he sur@@ pris@@ es us by doing the un@@ expec@@ ted . +Jehovah sent an ang@@ el to destro@@ y 18@@ 5@@ ,000 of S@@ en@@ n@@ ach@@ er@@ ib@@ ’@@ s sol@@ di@@ ers in one night . +( a ) What less@@ on do we learn from what happ@@ ened to Joseph ? +No doub@@ t Jehova@@ h@@ ’@@ s ac@@ tions exc@@ e@@ ed@@ ed all of Josep@@ h@@ ’@@ s expec@@ t@@ ations . +Th@@ in@@ k , too , about Josep@@ h@@ ’@@ s great - gr@@ and@@ mother S@@ ar@@ ah . +( Read Isaiah 43 : 10 - 13 . ) +We know that Jehovah car@@ es for us and wan@@ ts us to succ@@ e@@ ed . +How can we str@@ ip off and keep off the old person@@ ality ? +By 19@@ 39 there were 6@@ ,000 of them in the [ con@@ c@@ entr@@ ation cam@@ p@@ s ] . ” +And you people have cle@@ an@@ ed the st@@ a@@ di@@ um so n@@ ic@@ ely . +But most of all , you are truly mu@@ l@@ tir@@ ac@@ ial . ” +But the more I had sex@@ ual rel@@ ations , the more in@@ sec@@ ure I felt . ” +This way of life continu@@ ed until Sa@@ kura was 23 years old . +It got so bad that I could not wa@@ it for the woman I was living with to leave the house so that I could wat@@ ch por@@ no@@ gr@@ ap@@ hi@@ c vid@@ e@@ o@@ s . ” +What helped St@@ ep@@ h@@ en to put away anger and ab@@ us@@ ive spe@@ ec@@ h ? +He says : “ Our family life im@@ proved d@@ ram@@ ati@@ c@@ ally . +Today , St@@ ep@@ h@@ en ser@@ ves as a minis@@ ter@@ ial servan@@ t , and his wife has been a reg@@ ular pione@@ er for sever@@ al years . +Bible t@@ ex@@ ts that encourag@@ ed me were Isaiah 5@@ 5 : 7 , which says : ‘ Let the wicked man leave his way , ’ and 1 Corinthians 6 : 11 , which says about those who had ab@@ and@@ oned sin@@ ful ways : ‘ And yet that is what some of you were . ’ +For many years , Jehovah pati@@ ently helped me by means of his holy spirit to put on the new person@@ ality . ” +We also benefit from God@@ ’@@ s Word and his holy spirit when we pre@@ pare for and att@@ end congregation meetings . +See chap@@ ter 25 in the book Q@@ u@@ es@@ tions Y@@ oun@@ g Pe@@ ople As@@ k ​ — An@@ s@@ wers That Wor@@ k , V@@ ol@@ ume 1 . +( Read Col@@ os@@ si@@ ans 3 : 10 - 14 . ) +He st@@ ated : “ There is ne@@ ither Greek nor Je@@ w , circum@@ c@@ is@@ ion nor un@@ circum@@ c@@ is@@ ion , for@@ e@@ ig@@ ner , S@@ cy@@ th@@ ian , slave , or fre@@ em@@ an . ” +( a ) How do servants of Jehovah need to tre@@ at others ? +( See op@@ ening pic@@ ture . ) ( b ) What have been the resul@@ ts ? +Then he att@@ ended a meet@@ ing of Jehova@@ h@@ ’@@ s Witnesses . +You get to experience our world@@ wide bro@@ ther@@ ho@@ od and see its mir@@ ac@@ ul@@ ous unity fir@@ s@@ th@@ and . ” +When we showed them s@@ criptur@@ es from their P@@ or@@ t@@ ug@@ u@@ ese Bible , such as Revelation 21 : 3 , 4 or Psalm 37 : 10 , 11 , 29 , they pa@@ id attention and som@@ etimes even sh@@ ed te@@ ars . ” +We are so th@@ an@@ k@@ ful to Jehovah . ” ​ — Read Acts 10 : 34 , 35 . +What example did Jesus set in sho@@ wing m@@ ild@@ ness and pati@@ ence ? +Then he add@@ ed : “ If you continue sho@@ wing fav@@ or@@ it@@ ism , you are comm@@ it@@ ting sin . ” +Why is it important that we clo@@ the ourselves with love ? +Lo@@ ve is also “ pati@@ ent and kind ” and “ does not get pu@@ ff@@ ed up . ” +Paul said that without love , he was “ nothing . ” +The love is in this respect , not that we have loved God , but that he loved us and sent his Son as a prop@@ iti@@ at@@ ory sacrifice for our sin@@ s . ” +Jesus said : “ No one has love gre@@ ater than this , that someone should sur@@ r@@ end@@ er his life in be@@ half of his friends . ” +Let us consider how we can do so . +John wrote : “ L@@ it@@ tle children , we should love , not in word or with the t@@ ong@@ ue , but in de@@ ed and truth . ” +But then I asked my@@ self , ‘ How can I im@@ itate Jesus in de@@ al@@ ing with this person ? ’ +After refl@@ ec@@ ting on what Jesus would have done , I dec@@ ided to let the matter go and not make an is@@ sue of it . +L@@ ater , I learned that my co@@ work@@ er had been cop@@ ing with a serious health problem and was under a lo@@ t of str@@ ess . +I con@@ clud@@ ed that she prob@@ ably did not really mean what she wrote . +R@@ ef@@ l@@ ec@@ ting on Jesus ’ example of sho@@ wing love even when prov@@ ok@@ ed helped me to show similar love to my co@@ work@@ er . ” +By le@@ av@@ ing heaven , “ he emp@@ ti@@ ed himself ” in our be@@ half , even “ to the point of death . ” +P@@ E@@ A@@ C@@ E : “ P@@ ut@@ ting up with one another in love ” al@@ lo@@ ws us to enjoy “ the un@@ iting b@@ ond of peace . ” +W@@ ould you not ag@@ ree that such a pe@@ ac@@ eful spirit is truly un@@ i@@ qu@@ e in to@@ da@@ y@@ ’@@ s di@@ vid@@ ed world ? +Paul wrote : “ Lo@@ ve bu@@ il@@ ds up . ” +The following day , they had out@@ g@@ ro@@ wn the ven@@ ue . ” +B@@ el@@ o@@ w the pic@@ ture was the cap@@ tion : “ In@@ vas@@ ion of the st@@ re@@ ets . ” +One congregation wrote , “ The only line that pas@@ ses near this place is a t@@ el@@ e@@ gr@@ ap@@ h line . ” +In M@@ ex@@ ic@@ o , 2@@ ,@@ 2@@ 6@@ 2@@ ,@@ 6@@ 46 people att@@ ended the M@@ emor@@ ial in 20@@ 16 . +Matthe@@ w@@ ’@@ s account fo@@ c@@ uses on ev@@ ents that involved Joseph . +1 , 2 . ( a ) What can result from a l@@ ack of self - control ? +P@@ ra@@ y for wisdom to say or do the right thing . +How can you pre@@ pare yourself to res@@ ist tem@@ p@@ t@@ ations ? +What experience did one brother have , and why are our re@@ ac@@ tions in similar situ@@ ations important ? +In what ways can parents help their children to devel@@ o@@ p self - control ? +How can you help your children to devel@@ o@@ p self - control ? +( Read Ex@@ od@@ us 34 : 5 - 7 . ) +( b ) Why should you be inter@@ ested in what the Bible says about com@@ pas@@ sion ? +( a ) Why did Jehovah s@@ end ang@@ els to So@@ dom ? +( Read Ex@@ od@@ us 22 : 26 , 27 . ) +We read : “ Jehovah the God of their for@@ ef@@ a@@ thers kept war@@ ning them by means of his mess@@ eng@@ ers , war@@ ning them again and again , because he felt com@@ pas@@ sion for his people and for his d@@ well@@ ing place . ” +“ He started to teach them many things . ” +Inst@@ ead , we need to do all we can now to help people . +One meaning of com@@ pas@@ sion is “ to su@@ ff@@ er together . ” +“ Be courag@@ e@@ ous and strong and go to work . +How can young ones and their parents show courage ? +1 , 2 . ( a ) What important as@@ sign@@ ment did Solomon receive ? +To succ@@ e@@ ed , Solomon would need to be courag@@ e@@ ous and go to work . +What could Solomon learn about courage from his father ? +( Read 1 Ch@@ ron@@ ic@@ les 28 : 20 . ) +How did Jesus ’ courage aff@@ ect the apostles ? +Let us consider two are@@ as of life where we need courage : in our family and in the congregation . +( b ) How can young ones im@@ itate Moses ’ example ? +He will help them provide for the needs of their famil@@ ies . +She wr@@ ites : “ G@@ row@@ ing up , I was really sh@@ y . +I could b@@ ar@@ ely talk to people at the Kingdom H@@ all , much less kno@@ c@@ k on the do@@ ors of compl@@ ete str@@ ang@@ ers . ” +With the help of her parents and others in the congregation , this young Christian achi@@ ev@@ ed her go@@ al of becom@@ ing a reg@@ ular pione@@ er . +How can Psalm 37 : 25 and Hebrews 13 : 5 help parents ? +( Read Psalm 37 : 25 ; Hebrews 13 : 5 . ) +A brother who has two children wrote : “ Many parents exp@@ end much ef@@ fort and res@@ our@@ ces help@@ ing their children re@@ ach go@@ als in such are@@ as as sp@@ or@@ ts , rec@@ re@@ ation , and educ@@ ation . +It makes so much more sense to exp@@ end ef@@ fort and res@@ our@@ ces in help@@ ing our children re@@ ach go@@ als that will help them to main@@ tain a good standing with Jehovah . +It has been a great so@@ ur@@ ce of satis@@ fac@@ tion not only to see our children re@@ ach spiritual go@@ als but to share the jo@@ ur@@ ne@@ y with them . ” +G@@ ive exam@@ ples of courage in the Christian congregation . +( a ) How can baptized brothers be courag@@ e@@ ous ? +( Read Philipp@@ ians 2 : 13 ; 4 : 13 . ) +We ur@@ ge all baptized brothers to be courag@@ e@@ ous and work hard for the congregation ! +Th@@ er@@ efore , “ be courag@@ e@@ ous . . . and go to work . ” +1 , 2 . ( a ) What would life be like without the Bible ? +The apostle Peter qu@@ ot@@ ed Isaiah 40 : 8 . +( Read 1 Peter 1 : 24 , 25 . ) +( a ) How do langu@@ ages change over time ? +( Read Revelation 14 : 6 , fo@@ ot@@ no@@ te . ) +L@@ ater pr@@ int@@ ings also used the word “ L@@ OR@@ D ” in cap@@ ital let@@ ters in some ver@@ ses in the Christian Greek Scriptures . +Why are we gr@@ at@@ eful for the New World Tr@@ ans@@ l@@ ation ? +( b ) What is the Greek S@@ ep@@ t@@ u@@ ag@@ in@@ t ? +( Read Psalm 1@@ 19 : 1@@ 6@@ 2 - 1@@ 6@@ 5 . ) +See the article “ Do You Ne@@ ed to L@@ ear@@ n Hebrew and Greek ? ” +in the No@@ v@@ ember 1 , 200@@ 9 , is@@ sue of The Watchtower . +On A@@ pri@@ l 3 , 20@@ 17 , a Bible mu@@ se@@ um op@@ ened at our world head@@ qu@@ ar@@ ters in W@@ ar@@ wic@@ k , New York , U.@@ S@@ .@@ A . +The per@@ man@@ ent g@@ all@@ ery of this mu@@ se@@ um is ent@@ it@@ led “ The Bible and the D@@ iv@@ ine N@@ ame . ” +We inv@@ ite you to vis@@ it the Bible mu@@ se@@ um and the other mu@@ se@@ um@@ s loc@@ ated at head@@ qu@@ ar@@ ters . +P@@ le@@ ase go to w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g to make a res@@ er@@ vation for your vis@@ it . +Lo@@ ok under A@@ B@@ O@@ U@@ T U@@ S > O@@ F@@ F@@ I@@ C@@ E@@ S & T@@ O@@ UR@@ S . +He read 2 Corinthians 1 : 3 , 4 , which says : “ The Father of t@@ end@@ er mer@@ ci@@ es and the God of all com@@ fort . . . com@@ forts us in all our tr@@ ials . ” +What responsib@@ ility do brothers who teach from the pl@@ at@@ form have ? +Are we not gr@@ at@@ eful to Jehovah for his written Word , the Bible ? +See the bo@@ x “ A T@@ ur@@ ning P@@ o@@ in@@ t . ” +T@@ ake time to expl@@ ain , illustr@@ ate , and ap@@ ply ver@@ ses that you read +“ A tur@@ ning point came about 15 years after I was baptized . +During a talk at the Kingdom H@@ all . . . , the spe@@ ak@@ er refer@@ red to James 1 : 23 , 24 . +“ A few days later , I read a s@@ crip@@ ture that chang@@ ed my life . +The ver@@ se was Isaiah 1 : 18 , where Jehovah is qu@@ ot@@ ed as saying : ‘ C@@ ome , now , you people , and let us set matters str@@ ai@@ g@@ h@@ t between us . . . . +Th@@ ough the sin@@ s of you people should prove to be as s@@ car@@ let , they will be made wh@@ ite just like s@@ now . ’ +I felt as if Jehovah were spe@@ aking to me , saying : ‘ C@@ ome on , V@@ ick@@ y , let@@ ’@@ s set matters str@@ ai@@ g@@ h@@ t between us . +I know you , I know your sin@@ s , I know your heart ​ — and I love you . ’ +“ I was un@@ able to s@@ le@@ ep that night . +Yet , I was , in eff@@ ect , saying to him : ‘ Your love is not great en@@ ough to re@@ ach me . +Your S@@ on@@ ’@@ s sacrifice is not en@@ ough to co@@ ver me . ’ +But now , at last , by m@@ ed@@ it@@ ating on this gif@@ t of the ran@@ so@@ m , I began to feel loved by Jehovah . ” +These ar@@ ti@@ cl@@ es discus@@ s Z@@ e@@ char@@ i@@ a@@ h@@ ’@@ s si@@ x@@ th , se@@ v@@ ent@@ h , and e@@ igh@@ th vis@@ ions . +Fir@@ st , let me tell you about my b@@ ac@@ k@@ gr@@ ound . +I W@@ A@@ S born in 19@@ 23 in H@@ em@@ s@@ wor@@ th , a to@@ wn in Yor@@ k@@ sh@@ ire , Eng@@ land . +The following year , I was appoin@@ ted as a special pione@@ er , along with M@@ ary H@@ en@@ sha@@ ll . +We were sent to un@@ as@@ sig@@ ned ter@@ rit@@ ory in the coun@@ ty of Ch@@ es@@ h@@ ire . +It is a great joy to know that there are now many Witnesses in that are@@ a . +My brother and his wife , L@@ ot@@ ti@@ e , were already serving as special pione@@ ers in N@@ or@@ ther@@ n I@@ rel@@ and , and in 195@@ 2 the four of us att@@ ended a distr@@ ic@@ t conven@@ tion in B@@ el@@ f@@ ast . +That night the four of us s@@ le@@ p@@ t in the c@@ ar . +A@@ ma@@ z@@ ingly , we had no problem par@@ king the tr@@ a@@ il@@ er on the pro@@ per@@ ty of fri@@ end@@ ly far@@ m@@ ers . +We really enjo@@ yed our as@@ sign@@ ment in the circ@@ u@@ it work . +The first inter@@ national conven@@ tion in I@@ rel@@ and was held in D@@ u@@ bl@@ in in 19@@ 6@@ 5 . +A t@@ ot@@ al of 3@@ ,@@ 9@@ 48 att@@ ended , and 6@@ 5 got baptized . +Ar@@ th@@ ur gre@@ et@@ ing Na@@ than K@@ nor@@ r on his ar@@ ri@@ val for the 19@@ 6@@ 5 conven@@ tion +Ar@@ th@@ ur re@@ le@@ as@@ es My Bo@@ ok of Bible St@@ or@@ ies in G@@ a@@ el@@ ic in 198@@ 3 +In 20@@ 11 our lives chang@@ ed compl@@ et@@ ely when the Brit@@ ain and I@@ rel@@ and br@@ an@@ ches were mer@@ ged and we were as@@ sig@@ ned to L@@ ond@@ on Be@@ the@@ l . +In the last few years , I have felt hear@@ t@@ bre@@ ak , de@@ pres@@ sion , and g@@ ri@@ ef . +In the past , Ar@@ th@@ ur had always been there for me . +But when you go through these kind@@ s of situ@@ ations , you dra@@ w clos@@ er to Jehovah . +“ We should love , not in word or with the t@@ ong@@ ue , but in de@@ ed and truth . ” ​ — 1 J@@ O@@ H@@ N 3 : 18 . +What is “ love free from h@@ y@@ po@@ c@@ ris@@ y ” ? +How has Jehovah sho@@ wn un@@ self@@ ish love for humans ? +Jehovah showed love for humans even before he cre@@ ated Adam and E@@ ve . +In what ways can we show gen@@ u@@ ine love ? +6 , 7 . ( a ) What is “ love free from h@@ y@@ po@@ c@@ ris@@ y ” ? +( Read Matthew 6 : 1 - 4 . ) +How can we show gen@@ u@@ ine love when we off@@ er ho@@ sp@@ it@@ ality ? +( Read 1 John 3 : 17 . ) +( Read Romans 12 : 17 , 18 . ) +How can we show that our for@@ giv@@ eness is gen@@ u@@ ine ? +What is the “ s@@ word ” that Jesus said he would bring ? +How can you main@@ tain your loy@@ al@@ ty to Jehovah if your relati@@ ves op@@ pose true worship ? +3 , 4 . ( a ) What eff@@ ect do Jesus ’ teach@@ ings have ? +Jesus said : “ Do not think I came to bring peace to the earth ; I came to bring , not peace , but a s@@ word . +For I came to cause di@@ vis@@ ion , with a man against his father , and a daugh@@ ter against her mother , and a daugh@@ ter - in - law against her mother - in - law . +How can Christians teach their children to hon@@ or an un@@ believ@@ ing par@@ ent ? +Inst@@ ead , expl@@ ain to them that each person must cho@@ ose whether to serve Jehovah . +“ Let your words always be gr@@ ac@@ ious , ” says the Bible . +( Read 1 Peter 3 : 1 , 2 , 16 . ) +How can you over@@ come feelings of gu@@ il@@ t about dis@@ pleas@@ ing your relati@@ ves ? +One of the many m@@ et@@ ro@@ pol@@ it@@ an wit@@ nes@@ sing stand@@ s in L@@ ag@@ o@@ s , the most pop@@ ul@@ ous city in Africa . +What was the situation of the Israelites at that time ? +( Read Z@@ e@@ char@@ iah 1 : 3 , 4 . ) +C@@ hap@@ ter 5 of Z@@ e@@ char@@ iah beg@@ ins with an un@@ us@@ ual vis@@ ion . +( Read Z@@ e@@ char@@ iah 5 : 1 , 2 . ) +8 - 10 . ( a ) What is an o@@ ath ? +What can we learn from Z@@ e@@ char@@ i@@ a@@ h@@ ’@@ s si@@ x@@ th vis@@ ion ? +( Read Z@@ e@@ char@@ iah 5 : 5 - 8 . ) +( Read Z@@ e@@ char@@ iah 5 : 9 - 11 . ) +How do you feel about the great@@ est build@@ ing work going on today ? +( Read Z@@ e@@ char@@ iah 6 : 1 - 3 . ) +Jehovah still uses his ang@@ els to prot@@ ect and streng@@ then his people +7 , 8 . ( a ) What do the two m@@ oun@@ tain@@ s re@@ present ? +( b ) Why are the m@@ oun@@ tain@@ s made of cop@@ p@@ er ? +Who are the r@@ id@@ ers of the char@@ i@@ o@@ ts , and what is their as@@ sign@@ ment ? +( Read Z@@ e@@ char@@ iah 6 : 5 - 8 . ) +( Read Z@@ e@@ char@@ iah 6 : 9 - 12 . ) +F@@ in@@ ally , true worship will be fully res@@ tor@@ ed ! +Jehovah will never for@@ get the love that we show for him ! +I@@ N A small to@@ wn in G@@ u@@ j@@ ar@@ at , Indi@@ a , Joh@@ n@@ ’@@ s father was baptized as one of Jehova@@ h@@ ’@@ s Witnesses in the l@@ ate 19@@ 50 ’ s . +She no@@ tic@@ ed Joh@@ n@@ ’@@ s inj@@ ur@@ ed f@@ ing@@ er and offer@@ ed to help . +He went to his pri@@ est and asked him the same two questions . +S@@ how me where the Bible says that Jesus is not God . +S@@ how me where it says that you should not worship M@@ ary . +We can learn valu@@ able less@@ ons from the arrang@@ ement of the c@@ ities of re@@ fu@@ ge in ancient Israel . +What ro@@ le does sing@@ ing pl@@ ay in true worship ? +But a s@@ ong makes you feel a thought . ” +( b ) How should we sing pra@@ ises to Jehovah , and who should take the lead ? +Read the ly@@ r@@ ics out l@@ ou@@ d in a strong , conf@@ ident vo@@ ice . +( a ) How can op@@ ening our m@@ outh wid@@ er help our sing@@ ing ? +( a ) What ann@@ oun@@ c@@ ement was made at the 20@@ 16 ann@@ ual meet@@ ing ? +P@@ r@@ ac@@ tice the s@@ ong@@ s during family worship ( See par@@ ag@@ rap@@ h 18 ) +( Read N@@ umb@@ ers 35 : 24 , 25 . ) +Lo@@ ok@@ ing back , he says : “ S@@ ure , I was s@@ car@@ ed to appro@@ ach them . +He wrote : “ What a great ear@@ nes@@ t@@ ness your being s@@ add@@ ened in a go@@ dly way produc@@ ed in you , yes , c@@ lear@@ ing of your@@ selves , yes , indi@@ gn@@ ation , yes , fear , yes , ear@@ nes@@ t desire , yes , ze@@ al , yes , righ@@ ting of the wrong ! ” +On@@ ce the sin is g@@ one , it@@ ’@@ s g@@ one . +As Jehovah said , he takes your bur@@ d@@ ens away and put@@ s them far away from you . +You will never have to see them again . ” +Why do you want to take re@@ fu@@ ge in Jehovah ? +How may we im@@ itate Jehova@@ h@@ ’@@ s mer@@ c@@ y when others need our for@@ giv@@ eness ? +1 , 2 . ( a ) How did Jesus feel about God@@ ’@@ s Law ? +( b ) What does this teach us about Jehovah ? +( Read Acts 20 : 26 , 27 . ) +( Read N@@ umb@@ ers 35 : 20 - 24 . ) +G@@ o , then , and learn what this means : ‘ I want mer@@ c@@ y , and not sacrifice . ’ +For I came to c@@ all , not righteous people , but sin@@ n@@ ers . ” +They were not at Matthe@@ w@@ ’@@ s home simply to e@@ at . +What less@@ on from the c@@ ities of re@@ fu@@ ge do you pl@@ an to ap@@ ply ? +T@@ wo Christian s@@ isters share the Bib@@ le@@ ’@@ s message with a mer@@ ch@@ ant in the to@@ wn of T@@ ip@@ it@@ apa +What loving counsel did the apostle Paul give about world@@ ly thinking ? +What is an example of world@@ ly thinking , and how can we re@@ ject it ? +Lo@@ ok out that no one takes you cap@@ tive by means of the ph@@ il@@ os@@ op@@ h@@ y and emp@@ ty dec@@ ep@@ tion according to human tr@@ ad@@ ition , according to the el@@ em@@ ent@@ ary things of the world and not according to Christ . ” +“ I can be a good person without believ@@ ing in God . ” +“ You can be happy without religion . ” +Jehovah has the right to make la@@ ws for us because he cre@@ ated us . +Jesus said : “ No one can slave for two mas@@ ters ; for e@@ ither he will h@@ ate the one and love the other , or he will s@@ tic@@ k to the one and des@@ p@@ ise the other . +( Read 1 Th@@ ess@@ al@@ on@@ ians 2 : 13 , 19 , 20 . ) +“ H@@ um@@ ans can sol@@ ve their own problems . ” +How can we w@@ in the pri@@ z@@ e as a family ? +( b ) What help@@ s us to keep our eyes on the pri@@ z@@ e ? +How can we prot@@ ect ourselves in d@@ ang@@ er@@ ous situ@@ ations ? +To de@@ ad@@ en im@@ moral desir@@ es , we need to re@@ ject im@@ moral ent@@ er@@ tain@@ ment . +( Read Ec@@ cl@@ esi@@ ast@@ es 7 : 21 , 22 . ) +10 , 11 . ( a ) Why is j@@ e@@ al@@ ous@@ y d@@ ang@@ er@@ ous ? +God@@ ’@@ s Word says : “ Lo@@ ve is pati@@ ent and kind . +C@@ ould we be as kind and loving as J@@ on@@ a@@ than ? +You husb@@ ands , keep on loving your w@@ ives and do not be b@@ it@@ ter@@ ly ang@@ ry with them . +You children , be obedi@@ ent to your parents in every@@ thing , for this is well - pleas@@ ing to the Lord . +What should a Christian husband do if his un@@ believ@@ ing wife does not respect him ? +God@@ ’@@ s Word says : “ A man of knowledge res@@ train@@ s his words , and a dis@@ cer@@ ning man will remain cal@@ m . ” +These ar@@ ti@@ cl@@ es should streng@@ then your beli@@ ef in the resurrection . +“ Our friend has f@@ all@@ en as@@ le@@ ep , but I am trav@@ el@@ ing there to aw@@ ak@@ en him . ” ​ — J@@ O@@ H@@ N 11 : 11 . +What Bible acc@@ oun@@ ts gave Mar@@ th@@ a conf@@ idence in the resurrection ? +L@@ ike Mar@@ th@@ a , what jo@@ y@@ ful ev@@ ent are you look@@ ing for@@ ward to ? +She said : “ I know he will ris@@ e . ” +L@@ ater , her son got s@@ ick and died . +God heard E@@ li@@ j@@ ah , and the child came back to life . +( Read 1 K@@ ings 17 : 17 - 24 . ) +( Read 2 K@@ ings 4 : 32 - 37 . ) +How did Peter help a Christian sis@@ ter who had died ? +One time , the apostle Paul was at a meet@@ ing in an up@@ p@@ er ro@@ om in T@@ ro@@ as , in what is now nor@@ th@@ w@@ est T@@ ur@@ ke@@ y . +A young man nam@@ ed E@@ ut@@ y@@ ch@@ us was list@@ ening , se@@ ated at a win@@ do@@ w . +Al@@ so , Jehovah said that the bless@@ ing would come “ through Isa@@ a@@ c . ” +Of course , that did not mean that God could not resurrec@@ t a person . +( Read Job 14 : 13 - 15 . ) +( b ) Why is the resurrection so important ? +But would you m@@ ention the resurrection as one of your most ch@@ er@@ ished beli@@ ef@@ s ? +( Read 1 Corinthians 15 : 12 - 19 . ) +However , we know that Jesus was resurrec@@ ted . +How was Jesus involved in the fulfill@@ ment of Psalm 1@@ 18 ? +“ The build@@ ers re@@ j@@ ected ” the Mes@@ si@@ ah ( See par@@ ag@@ rap@@ h 7 ) +How could Jesus become “ the chi@@ ef cor@@ ner@@ st@@ one ” ? +If Jesus was re@@ j@@ ected and k@@ ill@@ ed , how could he become “ the chi@@ ef cor@@ ner@@ st@@ one ” ? +( a ) What did Psalm 16 : 10 foret@@ ell ? +You will not al@@ low your loy@@ al one to see the p@@ it . ” +( Read Acts 2 : 29 - 32 . ) +( Read Acts 2 : 33 - 36 . ) +( Read Acts 13 : 32 - 37 , 42 . ) +There are det@@ a@@ il@@ s about “ the times or se@@ as@@ ons that the Father has plac@@ ed in his own j@@ ur@@ is@@ dic@@ tion . ” +Paul wrote that “ Christ has been ra@@ ised from the dead , the fir@@ st@@ fru@@ its of those who have f@@ all@@ en as@@ le@@ ep in death . ” +What will happ@@ en to some anointed ones during Christ@@ ’@@ s pres@@ ence ? +For if we have faith that Jesus died and rose again , so too God will bring with him those who have f@@ all@@ en as@@ le@@ ep in death . . . +We the living who sur@@ v@@ ive to the pres@@ ence of the Lord will in no way pre@@ c@@ ed@@ e those who have f@@ all@@ en as@@ le@@ ep in death ; because the Lord himself will des@@ c@@ end from heaven with a command@@ ing c@@ all , . . . and those who are dead in un@@ ion with Christ will ris@@ e first . +Ano@@ inted ones who are al@@ ive during the great trib@@ ulation will be “ ca@@ ught away in cl@@ ou@@ ds . ” +If you come back , I will bre@@ ak your leg@@ s . ” +I was born on J@@ u@@ ly 29 , 19@@ 29 , and gre@@ w up in a v@@ ill@@ age in the prov@@ in@@ ce of B@@ ul@@ ac@@ an in the Philipp@@ ines . +I enjo@@ yed reading the Bible , especially the four G@@ os@@ p@@ els . +Do@@ ing so made me want to follow Jesus ’ example . ​ — John 10 : 27 . +Ab@@ out that time , my parents asked me to come back home . +One ol@@ der Witness came to our house and explain@@ ed what the Bible says about “ the last days . ” +He inv@@ ited us to att@@ end a Bible study in a ne@@ ar@@ by v@@ ill@@ age . +We sp@@ ent most of that night discus@@ sing the Bible . +I rep@@ li@@ ed , “ Yes , I do . ” +I knew that I wanted to “ slave for the M@@ as@@ ter , Christ . ” +We went to a ne@@ ar@@ by r@@ iver , and two of us got baptized on Fe@@ b@@ ru@@ ary 15 , 19@@ 46 . +The C@@ ru@@ z family inv@@ ited me to live with them in A@@ ng@@ at . +He spok@@ e in Eng@@ l@@ ish , and af@@ ter@@ ward I gave a s@@ um@@ mar@@ y of his talk in T@@ ag@@ al@@ o@@ g . +In the early mor@@ ning , I helped in the k@@ it@@ ch@@ en . +After I gra@@ du@@ ated , I was tem@@ por@@ ar@@ ily as@@ sig@@ ned as a special pione@@ er in the B@@ ron@@ x in New York C@@ ity . +We sp@@ ent the first we@@ ek after our wed@@ ding vis@@ iting a congregation on R@@ ap@@ u R@@ ap@@ u Is@@ land . +We were even able to bu@@ y the pro@@ per@@ ty from the man who had said that “ Chin@@ ese do not sel@@ l . ” +The ne@@ w@@ ly f@@ er@@ ti@@ li@@ z@@ ed eg@@ g might g@@ row in a F@@ al@@ lo@@ pi@@ an t@@ u@@ be ( an ec@@ t@@ op@@ ic pre@@ gn@@ anc@@ y ) or might trav@@ el into the wom@@ b . +That would end the pre@@ gn@@ anc@@ y at an early st@@ age . +A gu@@ ide from Eng@@ l@@ and@@ ’@@ s N@@ ational He@@ al@@ th Ser@@ vice repor@@ ts : “ I@@ U@@ D@@ s with more cop@@ p@@ er are more than 9@@ 9 % eff@@ ective . +This means that fe@@ wer than one in 1@@ 00 women who use an I@@ U@@ D will get pre@@ gn@@ ant in one year . +I@@ U@@ D@@ s with less cop@@ p@@ er will be less eff@@ ective . ” +( a ) What does “ per@@ su@@ ad@@ ed to believe ” mean ? +( b ) How do we know that Timothy was per@@ su@@ ad@@ ed to believe the good news about Jesus ? +F@@ ran@@ k@@ ly , I would wor@@ ry if she accep@@ ted something without as@@ king questions . ” +Does the Bib@@ le@@ ’@@ s expl@@ an@@ ation make sense to them ? +What should be an important part of your teaching ? +St@@ ep@@ han@@ i@@ e , the mother of three daugh@@ ters , says : “ E@@ ver since my children were very young , I have had to ask my@@ self , ‘ Do I talk to my children about why I am con@@ v@@ inc@@ ed of Jehova@@ h@@ ’@@ s ex@@ ist@@ ence , his love , and the righ@@ t@@ ness of his ways ? +Can my children c@@ learly see that I really love Jehovah ? ’ +I can@@ ’@@ t exp@@ ect my children to be per@@ su@@ ad@@ ed un@@ less I am . ” +The Bible says that “ fo@@ ol@@ ish@@ ness is b@@ ound up in the heart of a child . ” +That kind of wisdom is necess@@ ary for sal@@ vation . +How can parents help their children to become “ wise for sal@@ vation ” ? +Lo@@ ok under B@@ I@@ B@@ L@@ E T@@ E@@ A@@ CH@@ IN@@ G@@ S > B@@ I@@ B@@ L@@ E S@@ T@@ U@@ D@@ Y T@@ O@@ O@@ L@@ S . +How can you work out your own sal@@ vation ? +They may have been ra@@ ised in the truth . +But in a few years when the ur@@ ge to have se@@ x becom@@ es str@@ ong@@ er , he or she needs to be thor@@ ough@@ ly con@@ v@@ inc@@ ed that obe@@ ying Jehova@@ h@@ ’@@ s la@@ ws is always the best cho@@ ice . ” +( b ) What can you learn from Philipp@@ ians 4 : 11 - 13 ? +What does it mean to work out your own sal@@ vation “ with fear and tre@@ mb@@ ling ” ? +What to@@ ol@@ s have helped you in your personal study ? +I should feel free to do the same . +So I@@ ’@@ ll m@@ ention something in pas@@ sing , such as , ‘ I was teaching the Bible the other day , and . . . ’ +Then I continue with the point of my st@@ ory . +Although the im@@ me@@ di@@ ate point is not in it@@ self about the Bible , often others are cur@@ ious about what I do when teaching the Bible . +The more I use this appro@@ ach , the eas@@ i@@ er it g@@ ets . +And af@@ ter@@ ward , I always feel great ! ” +We are the only Witnesses they are ex@@ posed to . +So the way we act can deter@@ m@@ ine how they will respon@@ d . +What if we are sh@@ y or tim@@ id or have a hard time spe@@ aking up about our faith , or what if we cr@@ inge when we do speak up ? +Then they may look at us as if we ar@@ en@@ ’@@ t pr@@ ou@@ d of who we are . +They may even respon@@ d un@@ kind@@ ly because of our l@@ ack of conf@@ idence . +However , if we talk with e@@ ase and as@@ sur@@ ance about what we believe , making it a nor@@ ma@@ l part of con@@ vers@@ ation , it@@ ’@@ s more likely that they will respect us . ” +Jesus said : “ If anyone wan@@ ts to come after me , let him dis@@ own himself and pic@@ k up his tor@@ ture st@@ ake and keep following me . ” +For more su@@ gg@@ es@@ tions , see “ Y@@ oun@@ g Pe@@ ople As@@ k ​ — Why Sh@@ ould I P@@ ra@@ y ? ” +What less@@ on can we learn from Isaiah 40 : 26 ? +No one has been able to coun@@ t all the st@@ ars in the un@@ iver@@ se . +How can we be sure that Jehovah is able to streng@@ then us ? +And he add@@ ed : “ You will find ref@@ res@@ h@@ ment for your@@ selves . +But how do we feel when we return ? +The information was pres@@ ented in such an em@@ pa@@ the@@ tic and concer@@ ned way that I was moved to te@@ ars . +I was rem@@ ind@@ ed that the meetings are where I need to be . ” +What did the apostle Paul mean when he wrote : “ When I am we@@ ak , then I am power@@ ful ” ? +He s@@ an@@ g : “ With your help I can char@@ ge against a mar@@ a@@ ud@@ er b@@ and ; by God@@ ’@@ s power I can sc@@ ale a wa@@ ll . ” +O@@ r will we follow the Bib@@ le@@ ’@@ s wise ad@@ vice to s@@ et@@ tle matters qu@@ ick@@ ly ? +You might beg@@ in the con@@ vers@@ ation by saying something like this , “ Per@@ haps I am being over@@ ly sen@@ s@@ itive , but when you spok@@ e to me y@@ es@@ ter@@ day , I felt . . . ” +“ F@@ in@@ ally I conf@@ ess@@ ed my sin to you , ” he wrote , “ and you par@@ d@@ oned the er@@ ro@@ r of my sin@@ s . ” +( 4 ) Will there ever be a fin@@ al M@@ emor@@ ial ? +( Read John 3 : 16 ; 17 : 3 . ) +( a ) What did Jesus pray for on the night of the first L@@ ord@@ ’@@ s E@@ ven@@ ing Me@@ al ? +( b ) What shows that Jehovah has ans@@ w@@ ered Jesus ’ prayer ? +( Read John 17 : 20 , 21 . ) +( Read Ezek@@ iel 37 : 15 - 17 . ) +How can we prom@@ ote unity among God@@ ’@@ s people ? +How can we show that we are “ put@@ ting up with one another in love ” ? +How do we know that there will be a fin@@ al M@@ emor@@ ial ? +At R@@ ib@@ er@@ al@@ ta , B@@ eni , two pione@@ er cou@@ ples lo@@ ad liter@@ ature on@@ to an air@@ pl@@ ane . +Why does Jehovah exp@@ ect us to use our valu@@ able things to give back to him ? +How does the organization use the money that is d@@ on@@ ated today ? +What do we show Jehovah when we support his work ? +( Read 2 Corinthians 8 : 18 - 21 . ) +Your d@@ on@@ ations help our world@@ wide work ( See par@@ ag@@ rap@@ h@@ s 14 - 16 ) +As a result , we som@@ etimes feel is@@ ol@@ ated , and we eas@@ ily for@@ get the sc@@ ope of Jehova@@ h@@ ’@@ s work . +But as soon as we wat@@ ch the var@@ ious pro@@ gr@@ am@@ s on J@@ W Bro@@ ad@@ cas@@ ting , we rem@@ ember that we are part of an inter@@ national bro@@ ther@@ ho@@ od . +Our de@@ ar local brothers and s@@ isters are very exc@@ ited about J@@ W Bro@@ ad@@ cas@@ ting . +We often he@@ ar them say that after wat@@ ch@@ ing the mon@@ th@@ ly pro@@ gr@@ am@@ s , they feel close to the members of the G@@ over@@ ning B@@ od@@ y . +Now they are pr@@ ou@@ der than ever to be part of God@@ ’@@ s organization . ” +( Read Proverbs 11 : 24 , 25 . ) +A man who lo@@ ves his wife lo@@ ves himself , for no man ever h@@ ated his own body , but he fe@@ ed@@ s and ch@@ er@@ ish@@ es it . ” +How can we avoid becom@@ ing lov@@ ers of ourselves ? +Paul wrote that people would be “ lov@@ ers of money . ” +Some years ago , a pione@@ er in I@@ rel@@ and spok@@ e to a man about God . +What does the Bible say about ri@@ ches and po@@ ver@@ ty ? +He wrote : “ So that I do not become satis@@ f@@ ied and den@@ y you and say , ‘ Who is Jehovah ? ’ ” +She would say , ‘ I have the great@@ est b@@ oss ever ! ’ +Now that I too am pione@@ ering , we both work for the same Per@@ son , Jehovah . ” +How can we avoid becom@@ ing lov@@ ers of money ? +It means that they do not love God at all . ” +How can we avoid becom@@ ing lov@@ ers of pleas@@ ur@@ es ? +We also know that love “ does not b@@ ra@@ g , does not get pu@@ ff@@ ed up . ” +I could see that they car@@ ed for me , and that made me want to ple@@ ase them . ” +( Read Isaiah 11 : 6 , 7 . ) +You can read some of their experi@@ ences in the ser@@ ies “ The Bible Ch@@ ang@@ es L@@ ives , ” found on j@@ w@@ .@@ or@@ g . +We should let others know that we are Jehova@@ h@@ ’@@ s Witnesses . +3 I@@ mit@@ ate the F@@ a@@ ith and O@@ be@@ di@@ ence of No@@ ah , Daniel , and Job +28 Jo@@ y ​ — A Q@@ u@@ ality We Ac@@ qu@@ ire From God +9 , 10 . ( a ) How can we im@@ itate No@@ a@@ h@@ ’@@ s faith and obedi@@ ence ? +( Read M@@ al@@ ach@@ i 3 : 17 , 18 . ) +( b ) How did Jehovah view Daniel ? +( b ) What can parents today learn from Dan@@ i@@ el@@ ’@@ s parents ? +( Read Job 1 : 9 , 10 . ) +19 , 20 . ( a ) How can we im@@ itate Jo@@ b@@ ’@@ s faith and obedi@@ ence ? +1 - 3 . ( a ) What will help us to remain faithful to God during these last days ? +( Read Daniel 6 : 7 - 10 . ) +( Read Job 31 : 24 - 28 . ) +( Read Psalm 11 : 5 ; 26 : 4 . ) +So ask yourself , ‘ Do I know Jehovah as well as No@@ ah , Daniel , and Job did ? ’ +No@@ a@@ h@@ ’@@ s great - gr@@ and@@ father E@@ no@@ ch also “ kept wal@@ king with the true God . ” +Jesus said : “ Abraham your father re@@ jo@@ ic@@ ed great@@ ly at the pros@@ p@@ ect of se@@ e@@ ing my day . ” +I@@ t@@ ’@@ s hard for me to expres@@ s the joy we feel . ” +For it is to us God has reve@@ al@@ ed them through his spirit . ” +Jesus said : “ These things I have spok@@ en to you , so that my joy may be in you and your joy may be made full . ” +( 3 ) How will our ef@@ fort to have “ the mind of Christ ” help us to be spiritual people ? +( Read 1 Corinthians 2 : 14 - 16 . ) +What does the Bible say about spiritually - m@@ ind@@ ed people ? +What can we learn from the example of J@@ ac@@ o@@ b ? +What can we learn from the example of M@@ ary ? +( Read Luke 1 : 46 - 5@@ 5 . ) +( Read Isaiah 6@@ 3 : 9 ; Mark 6 : 34 . ) +R@@ ach@@ el , a sis@@ ter in B@@ ra@@ z@@ il , says : “ I loved to follow the world@@ ’@@ s f@@ as@@ hi@@ ons . +As a result , I did not d@@ ress very mo@@ des@@ tly . +But lear@@ ning the truth moved me to make the needed ef@@ fort to be a spiritual person . +M@@ aking chang@@ es was not eas@@ y , but I became happ@@ i@@ er and found real purpose in life . ” +So being like Jesus makes us more like Jehovah . +They said : “ We are wit@@ nesses of all the things he did . ” +How will having the mind of Christ aff@@ ect your da@@ ily life ? +He says : “ I never did any@@ thing wrong , but I was just going through the mo@@ tions . +I look@@ ed spiritually strong , being at all the meetings and serving as an au@@ x@@ il@@ i@@ ary pione@@ er a few times a year . +He says : “ It was as if I knew nothing . +I thought to my@@ self , ‘ If I am going to be my wi@@ fe@@ ’@@ s spiritual head , I have to do something . ’ ” +He says : “ I stu@@ died the Bible and stu@@ died and stu@@ died some more , and the pi@@ ec@@ es started to f@@ it together . +I got understanding and , most important , develop@@ ed a close relationship with Jehovah . ” +( 3 ) How can strong spiritu@@ ality help us in our da@@ ily life ? +( b ) What is our go@@ al when we study and m@@ ed@@ itate ? +( b ) What Bible example can we im@@ itate ? +12 , 13 . ( a ) What will help us to ap@@ ply Romans 15 : 5 ? +( Read 2 Peter 1 : 5 - 8 . ) +How will being spiritually - m@@ ind@@ ed aff@@ ect our life ? +What are the “ dead works ” that we should avoid ? +Will my decis@@ ions help me to set spiritual go@@ als ? +Why do you want to move for@@ ward spiritually ? +The apostle Peter ur@@ ged Christians in the first century : “ Be ho@@ sp@@ it@@ able to one another . ” +R@@ ise , get baptized . ” ​ — A@@ C@@ T@@ S 22 : 16 . +What do Christian parents want to be sure of before their children get baptized ? +“ F@@ O@@ R mon@@ ths I kept tell@@ ing D@@ ad and M@@ om that I wanted to be baptized , and they often tal@@ ked to me about it . +On D@@ ec@@ ember 31 , 19@@ 34 , the day came for this m@@ om@@ ent@@ ous ev@@ ent in my life . ” +5 , 6 . ( a ) The Bib@@ le@@ ’@@ s des@@ crip@@ tion of Timothy lead@@ s us to what con@@ cl@@ us@@ ion about his bap@@ tis@@ m ? +( Read Col@@ os@@ si@@ ans 1 : 9 , 10 . ) +He told Jehovah that he was so happy about his little gir@@ l@@ ’@@ s decis@@ ion to dedic@@ ate her life to H@@ im . ” +( Read 1 Peter 3 : 20 , 21 . ) +Why do we not pres@@ sure anyone to get baptized ? +If you are a par@@ ent , you may have asked yourself : ‘ Is my child really ready to get baptized ? +The first question is , “ On the bas@@ is of the sacrifice of Jesus Christ , have you rep@@ ented of your sin@@ s and dedic@@ ated yourself to Jehovah to do his will ? ” +How can we be ho@@ sp@@ it@@ able at our Christian meetings ? +( Read 3 John 5 - 8 . ) +He wr@@ ites : “ I h@@ es@@ it@@ ated in@@ iti@@ ally because we were ne@@ w@@ ly married and living in a small house . +But having stud@@ ents st@@ ay with us was truly a jo@@ y@@ ous experience . +As ne@@ w@@ ly@@ we@@ ds , we were able to see how happy a cou@@ ple can be when they serve Jehovah and pur@@ sue spiritual go@@ als together . ” +Why may those who are new to your congregation need ho@@ sp@@ it@@ ality ? +( Read Luke 10 : 41 , 42 . ) +One ev@@ ening my wife was partic@@ ularly hom@@ es@@ ick , and my ef@@ forts to help were not working . +Then , about 7 : 30 p@@ .@@ m . , we heard a kno@@ c@@ k on the do@@ or . +There sto@@ od a Bible stud@@ ent who brought us three or@@ ang@@ es . +She had come to w@@ el@@ come the new mission@@ ar@@ ies . +We inv@@ ited her in and gave her a gl@@ ass of water . +If you feel an@@ x@@ ious about having gu@@ ests , you are not alone . +An eld@@ er in Brit@@ ain ad@@ m@@ its : “ There can be a me@@ as@@ ure of ner@@ v@@ ousness in prepar@@ ing for gu@@ ests . +But as with any@@ thing in rel@@ ation to serving Jehovah , the benef@@ its and satis@@ fac@@ tion that result far out@@ we@@ igh any an@@ x@@ i@@ ety . +I have enjo@@ yed simply s@@ it@@ ting down with gu@@ ests over co@@ ff@@ e@@ e and tal@@ king . ” +Ano@@ ther eld@@ er wr@@ ites : “ H@@ av@@ ing friends from the congregation to my home help@@ s me to understand them better and gives me time to get to know them , especially how they came into the truth . ” +The wife of one of the instruc@@ t@@ ors really put me at e@@ ase . +She said that when she and her husband are serving in the trav@@ el@@ ing work , their best we@@ ek@@ s are those sp@@ ent st@@ ay@@ ing with a spiritual person who may not have much mater@@ ially but who has the same fo@@ c@@ us as they have ​ — serving Jehovah and ke@@ ep@@ ing life sim@@ ple . +This rem@@ ind@@ ed me of what my mu@@ m used to say to us as children : ‘ B@@ et@@ ter a dis@@ h of ve@@ g@@ et@@ ab@@ les where ther@@ e@@ ’@@ s love . ’ ” +( Read Proverbs 25 : 21 , 22 . ) +H@@ os@@ ts us@@ ually pre@@ pare well for their gu@@ ests ( See par@@ ag@@ rap@@ h 20 ) +The p@@ sal@@ mis@@ t David asked : “ O Jehovah , who may be a gu@@ est in your t@@ ent ? ” +It is also important to respect local c@@ us@@ tom@@ s . +Why is it so important to “ be ho@@ sp@@ it@@ able to one another ” ? +T@@ wo brothers off@@ er a tr@@ act to a pa@@ in@@ ter on the br@@ id@@ ge in f@@ ron@@ t of K@@ a@@ š@@ ti@@ la@@ c , a for@@ tr@@ ess bu@@ il@@ t in the 1@@ 6@@ th century , near the city of S@@ pl@@ it +( Read T@@ it@@ us 2 : 11 - 14 . ) +The eld@@ er rec@@ all@@ ed : “ G@@ ra@@ ham had a problem with pr@@ ide . +He was cr@@ itical of the elders who had been involved in his dis@@ fel@@ low@@ sh@@ ipp@@ ing . +So for the next few stu@@ dies , we discus@@ sed s@@ criptur@@ es on pr@@ ide and its eff@@ ects . +G@@ ra@@ ham began to see himself c@@ learly in the mir@@ ro@@ r of God@@ ’@@ s Word , and he did not like what he saw ! +After ac@@ knowled@@ g@@ ing that he had been bl@@ ind@@ ed by a ‘ ra@@ f@@ ter ’ of pr@@ ide and that his cr@@ itical attitude was his problem , he began to change qu@@ ick@@ ly for the better . +He started to att@@ end Christian meetings reg@@ ularly , to study God@@ ’@@ s Word ear@@ nes@@ tly , and to make da@@ ily prayer a hab@@ it . +‘ I@@ ’@@ ve known the truth for years , ’ he said , ‘ and I@@ ’@@ ve even served as a pione@@ er . +The apostle Peter wrote : “ S@@ he@@ ph@@ er@@ d the f@@ loc@@ k of God under your care , serving as overse@@ ers , not under com@@ p@@ ul@@ sion , but will@@ ingly before God ; not for love of dis@@ hon@@ est gain , but e@@ ag@@ er@@ ly ; not l@@ ording it over those who are God@@ ’@@ s in@@ her@@ it@@ ance , but becom@@ ing exam@@ ples to the f@@ loc@@ k . ” +How can parents ra@@ ise their children in the discip@@ line of Jehovah ? +( Read Hebrews 12 : 5 - 11 . ) +How does a child devel@@ o@@ p self - discip@@ line ? +4 , 5 . ( a ) Why is self - discip@@ line an important part of “ the new person@@ ality ” ? +How can we become better stud@@ ents of God@@ ’@@ s Word ? +One brother wrote : “ I am fill@@ ed with gr@@ at@@ itude for the way my parents ra@@ ised me . +( b ) How did one family benefit from the parents ’ obedi@@ ence to Jehovah ? +( b ) How can we make the elders ’ work more pleas@@ ant for them ? +They did not ber@@ ate me or cr@@ it@@ ic@@ ize me , but they encourag@@ ed me and streng@@ th@@ ened me . +After every congregation meet@@ ing , no matter how bus@@ y they were , at le@@ ast one of them would ask how I was . +Because of my past , I found it difficult to feel wor@@ thy of God@@ ’@@ s love . +Tim@@ e and time again , however , Jehovah has used the congregation and the elders to con@@ fir@@ m his love for me . +I pray that I will never let him go . ” +If you turn to doing good , will you not be res@@ tor@@ ed to fav@@ or ? +But if you do not turn to doing good , sin is cr@@ ou@@ ch@@ ing at the do@@ or , and its c@@ ra@@ ving is to dom@@ in@@ ate you ; but will you get the mas@@ ter@@ y over it ? ” +So let us “ list@@ en to discip@@ line and become wise . ” +Pe@@ ople around the world are dem@@ and@@ ing more fre@@ edom . +15 I@@ mit@@ ating Jehovah ​ — A God Who G@@ ives En@@ courag@@ ement +“ If the Son s@@ ets you free , you will be truly free . ” ​ — J@@ O@@ H@@ N 8 : 36 . +( Read 1 Ch@@ ron@@ ic@@ les 29 : 11 , 12 . ) +To enjoy the ‘ good , ’ hum@@ an@@ kind must trust God and obe@@ y him . +If they dis@@ obe@@ y , they will be left to dec@@ ide for themselves what is good . . . and what is not good . ” +L@@ ike that p@@ il@@ ot , Adam and E@@ ve wanted to do things their own way . +He said : “ If you remain in my word , you are really my disciples , and you will know the truth , and the truth will set you free . ” +Why can the fre@@ edom that Jesus prom@@ ised make us “ truly free ” ? +( Read Romans 8 : 1 , 2 , 20 , 21 . ) +( c ) What questions do we need to answer ? +( Lo@@ ok under IN@@ T@@ ER@@ V@@ I@@ E@@ W@@ S AN@@ D E@@ X@@ P@@ ER@@ I@@ EN@@ C@@ E@@ S > EN@@ D@@ UR@@ IN@@ G T@@ R@@ I@@ A@@ L@@ S . ) +All things are la@@ w@@ ful , but not all things bu@@ ild up . ” +What example did No@@ ah and his family set for us ? +They liv@@ ed in a viol@@ ent and im@@ moral world . +“ No@@ ah did according to all that God had command@@ ed him . +What has Jehovah command@@ ed us to do today ? +( Read Luke 4 : 18 , 19 . ) +Now I under@@ sto@@ od better what James 4 : 8 means : ‘ D@@ ra@@ w close to God , and he will dra@@ w close to you . ’ +I knew I had found what I was look@@ ing for , a satis@@ f@@ ying purpose in life . ” +A special pione@@ er cou@@ ple pre@@ ach in a rem@@ ote are@@ a near the city of B@@ al@@ y@@ k@@ ch@@ y +( b ) How did Jehovah en@@ courage his Son ? +How did He@@ z@@ ek@@ iah en@@ courage the mil@@ it@@ ary chi@@ ef@@ s and the people of Jud@@ ah ? +How did Peter ‘ streng@@ then his brothers ’ ? +But I have made sup@@ pl@@ ication for you that your faith may not give out ; and you , once you have re@@ turned , streng@@ then your brothers . ” ​ — Luke 22 : 31 , 32 . +W@@ ho@@ m can we en@@ courage today , and why ? +How can the elders give counsel in an encourag@@ ing way ? +Par@@ ents , are you train@@ ing your children to en@@ courage others ? +She also sh@@ ared with me her own experience with the kind of t@@ est I was going through , and I felt less alone . ” +King Solomon wrote : “ A word spok@@ en at the right time ​ — how good it is ! +A che@@ erful gl@@ ance makes the heart re@@ jo@@ ice ; a good re@@ port inv@@ ig@@ or@@ ates the b@@ ones . ” +For you have made me re@@ jo@@ ice , O Jehovah , because of your de@@ ed@@ s ; because of the works of your hand@@ s I sh@@ out jo@@ y@@ fully . ” +You are never too young to set go@@ als . +Proverbs 21 : 5 says : “ The pl@@ ans of the d@@ il@@ ig@@ ent sur@@ ely lead to succ@@ ess . ” +The ear@@ li@@ er you make pl@@ ans by s@@ etting good go@@ als , the so@@ on@@ er you will have succ@@ ess . +With a un@@ iver@@ s@@ ity de@@ gre@@ e in law , I could have ear@@ ned a lo@@ t of money , but I would have had little ch@@ ance of f@@ ind@@ ing part - time work . ” +17 , 18 . ( a ) What does Jehovah want for young people today ? +I was born in a one - ro@@ om lo@@ g c@@ ab@@ in in a very small to@@ wn called L@@ ib@@ er@@ ty , Indi@@ ana , U.@@ S@@ .@@ A . +L@@ ater , my mother gave bir@@ th to my two youn@@ g@@ er brothers and my youn@@ g@@ er sis@@ ter . +D@@ UR@@ IN@@ G my school years , not much chang@@ ed . +The to@@ wn of L@@ ib@@ er@@ ty was sur@@ r@@ ound@@ ed by small far@@ ms , and the bas@@ ic c@@ ro@@ p was cor@@ n . +She took us to the B@@ ap@@ tis@@ t church every S@@ un@@ day . +They wanted me to make the mil@@ it@@ ary my car@@ e@@ er . +This time , however , they inv@@ ited me to come to a C@@ ong@@ reg@@ ation Bo@@ ok St@@ ud@@ y , a small meet@@ ing for Bible study and discus@@ sion that was held in their home . +I told them I would think about it . +I cou@@ ld@@ n@@ ’@@ t believe how much they knew about the Bible ! +Y@@ ear@@ s before , when I asked my mother about Jehova@@ h@@ ’@@ s Witnesses , she simply said , “ O@@ h , they worship some old man nam@@ ed Jehovah . ” +But I now felt that my eyes were being op@@ ened ! +I started pione@@ ering the next year , in 195@@ 8 . +G@@ l@@ or@@ ia was a j@@ e@@ we@@ l then , and she is a j@@ e@@ we@@ l today . +G@@ l@@ or@@ ia and I got married in Fe@@ b@@ ru@@ ary of 195@@ 9 . +A de@@ ar brother , Sim@@ on K@@ r@@ ak@@ er , inter@@ vie@@ wed us . +He told us that Be@@ the@@ l was not accep@@ ting married cou@@ ples at that time . +M@@ ost of our jo@@ bs pa@@ id three d@@ ol@@ l@@ ars a day . +E@@ ach we@@ ek , G@@ l@@ or@@ ia did ir@@ on@@ ing for one family . +I rem@@ ember one time when we st@@ op@@ ped at a g@@ as st@@ ation . +On the other hand , we had wond@@ erful times with the brothers , and we loved our ministry ! +Me@@ an@@ while , I started a study with the c@@ oup@@ le@@ ’@@ s daugh@@ ter and her husband . +M@@ other and daugh@@ ter both dec@@ ided to serve Jehovah and got baptized . +We had de@@ ar friends in the wh@@ ite congregation . +The K@@ u K@@ l@@ u@@ x K@@ l@@ an ( K@@ K@@ K ) , an organization that prom@@ ot@@ es r@@ ac@@ ism and viol@@ ence , was very ac@@ tive then . +In 19@@ 6@@ 2 , I was inv@@ ited to att@@ end the Kingdom M@@ in@@ is@@ try S@@ chool at South L@@ ans@@ ing , New York . +However , a t@@ el@@ ep@@ h@@ one compan@@ y in P@@ ine B@@ l@@ u@@ f@@ f had inter@@ vie@@ wed me for a jo@@ b . +If they h@@ ir@@ ed me , I would be the first bl@@ ack man to work for that compan@@ y . +I had no money to trav@@ el to New York . +She said , “ G@@ o to school and learn as much as you can , and come back and teach us ! ” +I am so gl@@ ad that I did not take that jo@@ b ! +Here is how G@@ l@@ or@@ ia rem@@ embers our time in P@@ ine B@@ l@@ u@@ f@@ f : “ I f@@ ell in love with the ter@@ rit@@ ory ! +So we would go in the house - to - house work in the mor@@ ning and then conduct Bible stu@@ dies the res@@ t of the day , som@@ etimes until 11 o@@ ’@@ c@@ loc@@ k at night . +While we were pione@@ ering in P@@ ine B@@ l@@ u@@ f@@ f , we ap@@ pli@@ ed to become special pione@@ ers . +Bro@@ ther Le@@ on W@@ e@@ av@@ er , now the co@@ ord@@ in@@ at@@ or of the United States B@@ ran@@ ch Com@@ mit@@ te@@ e , was appoin@@ ted to serve as a circ@@ u@@ it overse@@ er at the same time . +I was ner@@ v@@ ous about becom@@ ing a circ@@ u@@ it overse@@ er . +After I was appoin@@ ted , Bro@@ ther T@@ hom@@ p@@ son was the first distr@@ ic@@ t overse@@ er I served with . +In those days , a circ@@ u@@ it overse@@ er received little train@@ ing . +I rem@@ ember saying to G@@ l@@ or@@ ia , “ Does he really have to leave now ? ” +One time , the K@@ K@@ K held a mar@@ ch in a to@@ wn we were vis@@ iting in T@@ en@@ nes@@ see . +The following mon@@ th , we began our Be@@ the@@ l service . +G@@ l@@ or@@ ia was a j@@ e@@ we@@ l when I married her , and she still is +Then in 199@@ 9 , I was appoin@@ ted to be a m@@ ember of the G@@ over@@ ning B@@ od@@ y . +Isaiah 32 : 17 says : “ The result of true righteousness will be peace , and the fru@@ it@@ age of true righteousness will be lasting tr@@ an@@ qu@@ ill@@ ity and sec@@ ur@@ ity . ” +S@@ ec@@ ond , we must pray for God@@ ’@@ s holy spirit . +If the house is des@@ er@@ ving , let the peace you wish it come upon it ; but if it is not des@@ er@@ ving , let the peace from you return upon you . ” +So I gre@@ et@@ ed her in her own t@@ ong@@ ue . +T@@ ak@@ en by sur@@ pris@@ e , she asked me , ‘ What is the reason for your vis@@ it ? ’ +I pol@@ it@@ ely told her that I wis@@ h@@ ed to see the H@@ igh Com@@ mission@@ er . +She t@@ el@@ ep@@ h@@ oned the off@@ ic@@ ial , who came out to me@@ et me and gre@@ et@@ ed me in the local language . +After that , he car@@ e@@ fully list@@ ened to me as I explain@@ ed to him the pe@@ ac@@ eful activ@@ ities of the Witnesses . ” +“ As for that on the fine so@@ il , these are the ones who . . . be@@ ar fru@@ it with end@@ ur@@ ance . ” ​ — L@@ U@@ K@@ E 8 : 15 . +What will help us to keep be@@ aring fru@@ it with end@@ ur@@ ance ? +( See op@@ ening pic@@ ture . ) ( b ) What did Jesus say about preaching in his “ home ter@@ rit@@ ory ” ? +“ Their faith@@ ful@@ ness encourag@@ es me to per@@ se@@ v@@ ere and to be courag@@ e@@ ous in my own ministry . ” +What three questions will we consider , and why ? +S@@ till , there is no other work I would rather do . ” +Read John 15 : 1 - 5 , 8 . +The preaching of the good news of God@@ ’@@ s Kingdom . +Read Luke 8 : 5 - 8 , 11 - 15 . +How do we “ be@@ ar fru@@ it with end@@ ur@@ ance ” ? +For I be@@ ar them witness that they have a ze@@ al for God , but not according to acc@@ ur@@ ate knowledge . ” +When we re@@ turned , pas@@ ser@@ s@@ by asked , ‘ What happ@@ ened ? +Why are you determin@@ ed to “ be@@ ar fru@@ it with end@@ ur@@ ance ” ? +“ My Father is gl@@ or@@ if@@ ied in this , that you keep be@@ aring much fru@@ it and prove your@@ selves my disciples . ” ​ — J@@ O@@ H@@ N 15 : 8 . +( Read John 15 : 1 , 8 . ) +Jesus told his apostles : “ My Father is gl@@ or@@ if@@ ied in this , that you keep be@@ aring much fru@@ it . ” +( b ) How do you feel about having the privil@@ ege to s@@ anc@@ tif@@ y God@@ ’@@ s name ? +It gives me the desire to keep on preaching . ” +( a ) What reason for preaching is mentioned at John 15 : 9 , 10 ? +How do we show that we want to remain in Christ@@ ’@@ s love ? +In the Bible , No@@ ah is describ@@ ed as “ a pre@@ ach@@ er . ” +( a ) What reason for preaching is mentioned at Matthew 22 : 39 ? +They need a ch@@ ance to he@@ ar the good news . ” +13 , 14 . ( a ) What gif@@ t is mentioned at John 15 : 11 ? +( a ) What gif@@ t is mentioned at John 14 : 27 ? +( a ) What gif@@ t is mentioned at John 15 : 15 ? +( b ) How could the apostles remain Jesus ’ friends ? +( Read John 15 : 14 - 16 . ) +We can be sure that Jehovah ans@@ wers our pray@@ ers for help ( See par@@ ag@@ rap@@ h 18 ) +The apostle Peter describ@@ es Satan the Devil as “ a ro@@ aring li@@ on , ” and John call@@ s him a “ ser@@ p@@ ent ” and a “ dra@@ g@@ on . ” +With their help , we can res@@ ist our enem@@ y . +Those who believe this li@@ e sp@@ end their lives serving “ R@@ ich@@ es ” rather than God . +We need to know our enem@@ y , but we do not need to be ter@@ rif@@ ied by him . +If we op@@ pose him , he will f@@ le@@ e from us . +What are the pi@@ ec@@ es of the spiritual ar@@ m@@ or ? +And my parents and my friends know that they can trust me . ” +But you always get out@@ standing benef@@ its : You gain conf@@ idence , you feel clos@@ er to Jehovah , and you ear@@ n the respect of those who love you . ” +The bel@@ t of truth ( See par@@ ag@@ rap@@ h@@ s 3 - 5 ) +For a while , I lost my conf@@ idence and felt de@@ pres@@ sed . ” +Some of my ‘ friends ’ began taking d@@ rug@@ s ; others d@@ ro@@ p@@ ped out of school . +It was sa@@ d to see how their lives turned out . +“ I rem@@ ind my@@ self that I be@@ ar Jehova@@ h@@ ’@@ s name and that tem@@ p@@ t@@ ation is just Sat@@ an@@ ’@@ s way of sho@@ ot@@ ing at me . +When I w@@ in a str@@ ug@@ g@@ le , I feel better about my@@ self . ” +The b@@ reas@@ t@@ pl@@ ate of righteousness ( See par@@ ag@@ rap@@ h@@ s 6 - 8 ) +Now I@@ ’@@ m happy to witness to my pe@@ ers . ” +Then I@@ ’@@ m able to think of what will help them . +When I am prepar@@ ed , I can talk to them about what will spec@@ if@@ ically benefit them . ” +I make sure that I@@ ’@@ ve read all the material publ@@ ished for young people . +That way I can dir@@ ect my pe@@ ers to something in the Bible or on j@@ w@@ .@@ or@@ g that will help them . ” +Fe@@ et sho@@ d in read@@ iness ( See par@@ ag@@ rap@@ h@@ s 9 - 11 ) +What are some of Sat@@ an@@ ’@@ s “ bur@@ ning ar@@ ro@@ ws ” ? +Now , though , I pre@@ pare for the meetings and try to answer two or three times . +I@@ t@@ ’@@ s difficult , but I feel much better when I do . +And the brothers and s@@ isters are so encourag@@ ing . +I always come away from the meetings know@@ ing that Jehovah lo@@ ves me . ” +The large sh@@ i@@ eld of faith ( See par@@ ag@@ rap@@ h@@ s 12 - 14 ) +The hel@@ me@@ t of sal@@ vation ( See par@@ ag@@ rap@@ h@@ s 15 - 18 ) +I@@ ’@@ ve found that people respon@@ d well when they see that you are pas@@ sion@@ ate about the Bible and are doing your best to help them . ” +The s@@ word of the spirit ( See par@@ ag@@ rap@@ h@@ s 19 - 20 ) +With Jehova@@ h@@ ’@@ s help , we can stand fir@@ m against him ! diff --git a/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.sn b/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.sn new file mode 100644 index 0000000..8834cd0 --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/test.bpe.sn @@ -0,0 +1,2724 @@ +Nokuti ru@@ oko rw@@ enyu rw@@ akanga ru@@ chir@@ ema pamusoro p@@ angu mas@@ ik@@ ati n@@ ous@@ iku . ” +M@@ amwe am@@ az@@ ita ari mun@@ yaya ino aka@@ chinj@@ wa . +M@@ amwe ma@@ zita ari mun@@ yaya ino ach@@ inj@@ wa . +U@@ yu ndi@@ wo mura@@ y@@ iro mukuru pane yose uye wo@@ kutanga . ” +Zv@@ iri pachena kuti vanhu vanoda ku@@ batsirwa naMwari . +“ Nyika yose iri mus@@ imba re@@ waka@@ ipa . ” +R@@ aka@@ budiswa neZvapupu zvaJehovha asi iye zvino har@@ ich@@ adh@@ ind@@ wi . +Ndi@@ cha@@ mu@@ itira mu@@ bats@@ iri , kuti ave mu@@ kw@@ an@@ isi wake . ” +( T@@ ar@@ isa p@@ akan@@ zi ZV@@ IN@@ O@@ DZ@@ I@@ DZ@@ IS@@ WA N@@ E@@ B@@ H@@ AI@@ B@@ H@@ ER@@ I > M@@ I@@ B@@ V@@ UN@@ Z@@ O Y@@ E@@ B@@ H@@ AI@@ B@@ H@@ ER@@ I IN@@ O@@ P@@ IN@@ D@@ UR@@ WA ) +Ku@@ da kw@@ enyu nga@@ kuit@@ we panyika , sezva@@ kuno@@ itwa kudenga . ” +© 20@@ 16 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +Magwaro ano@@ bva mu@@ S@@ hand@@ uro ye@@ Nyika I@@ ts@@ va ye@@ Magwaro Mat@@ s@@ vene , kunze kwo@@ kunge pat@@ aurwa kuti pane pamwe pa@@ at@@ orwa . +“ Ku@@ zvid@@ ya mwoyo kuri mumwoyo mo@@ munhu nd@@ iko ku@@ cha@@ uk@@ ot@@ am@@ isa , asi shoko r@@ akanaka nd@@ iro rino@@ ita kuti u@@ f@@ are . ” +Ndi@@ cha@@ kus@@ imbisa . +© 20@@ 17 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +“ V@@ akarurama vach@@ ag@@ ara nh@@ aka y@@ enyika , vach@@ ag@@ ara ma@@ iri nokusingaperi . ” ​ — Pisarema 37 : 29 . +© 20@@ 18 Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia +In@@ i nd@@ in@@ em@@ i mazuva ose kusvikira kum@@ he@@ dz@@ iso y@@ etsika ye@@ zvinhu . ” +Ha@@ mun@@ g@@ ab@@ at@@ iri Mwari ne@@ P@@ f@@ uma . ” +E@@ ya , ona kana uchi@@ gona kup@@ indura mibvunzo inot@@ evera : +( b ) Chii ch@@ ati@@ cha@@ kurukura mun@@ yaya inot@@ evera ? +Mus@@ a@@ idza munhu uri panyika Baba v@@ enyu , nokuti mumwe chete ndi@@ Baba v@@ enyu , ivo vari kudenga . +P@@ in@@ dai mu@@ mufaro wat@@ enzi w@@ enyu . ” +( b ) M@@ ibv@@ un@@ zo@@ i y@@ ati@@ char@@ angarira ? +( b ) Chii chi@@ cha@@ kurukur@@ wa mun@@ yaya inot@@ evera ? +V@@ aida kuva nechokwadi chokuti nd@@ ai@@ ziva kuti chis@@ arudzo ch@@ angu chakanga ch@@ akakomba sei . +Jesu akati : “ Ha@@ kun@@ o munhu ung@@ au@@ ya kwand@@ iri , kana Baba , vak@@ and@@ it@@ uma , vas@@ inga@@ mu@@ kwe@@ vi . ” +Chii chi@@ cha@@ kurukur@@ wa mun@@ yaya inot@@ evera ? +Ndino@@ da kuva pakati p@@ ev@@ o@@ kutanga kusvika pa@@ H@@ oro yo@@ Umambo , uye kubva pakati p@@ ev@@ oku@@ pedzisira , kana zvichi@@ bvira . +Nd@@ in@@ onzwa mufaro wo@@ mukati pa@@ kutaura na@@ vanhu vaMwari . +( b ) T@@ ich@@ ar@@ angar@@ irei mun@@ yaya inot@@ evera ? +T@@ icha@@ kuru@@ kure@@ i mun@@ yaya inot@@ evera ? +Ak@@ ar@@ apa map@@ of@@ u , va@@ ik@@ am@@ h@@ ina , vaiva nem@@ ap@@ er@@ emb@@ udzi , uye mat@@ si . +Se@@ zvin@@ oreva mashoko okuti “ kur@@ onga kubatsira vamwe , ” m@@ ip@@ iro yor@@ udzi ur@@ w@@ u in@@ ony@@ atso@@ da kuti mup@@ i wacho ar@@ ong@@ e . +( b ) M@@ ibv@@ un@@ zo@@ i y@@ ati@@ cha@@ kurukura mun@@ yaya ino ? +Asi mukuru pakati p@@ enyu anofanira kuva mush@@ umiri w@@ enyu . +T@@ icha@@ kuru@@ kure@@ i mun@@ yaya inot@@ evera ? +Uye kut@@ sigira kwe@@ hama ne@@ hanzvadzi dz@@ angu dzoku@@ mudzimu kwand@@ iny@@ aradza chaizvo . +Kana zvakadaro uri kuita zvakanaka . +Nokuti nd@@ ine chokwadi kuti rufu kana upenyu kana ng@@ irozi kana hurumende kana zvinhu zvir@@ ipo zvino kana zvinhu zvicha@@ uya kana masimba kana ku@@ kw@@ irira kana kudz@@ ika kana chimwe chinhu ch@@ akas@@ ikwa ha@@ zvik@@ wan@@ isi kut@@ ip@@ ar@@ adz@@ anisa nor@@ udo rwa@@ Mwari rw@@ uri muna Kristu Jesu Is@@ he wedu . ” +( b ) Chii ch@@ ati@@ cha@@ kurukura mun@@ yaya inot@@ evera ? +( b ) Chii ch@@ ati@@ cha@@ kurukura mun@@ yaya ino ? +Asi mumwe mup@@ umb@@ uru waka@@ zarurwa ; ndi@@ wo mup@@ umb@@ uru w@@ oupenyu . +□ Chii chino@@ itika kwat@@ iri kana ta@@ fa ? +M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura mun@@ yaya inot@@ evera ? +( b ) M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura iye zvino ? +T@@ icha@@ kuru@@ kure@@ i mun@@ yaya inot@@ evera ? +Jesu akati : “ I@@ da mu@@ vak@@ idz@@ ani wako sezva@@ uno@@ zvi@@ ita . ” +( Verenga Mateu 24 : 37 - 39 . ) +Tinofanira kut@@ ora mat@@ anh@@ o ano@@ ender@@ ana nezv@@ at@@ inenge t@@ any@@ enget@@ erera . +( Verenga 2 Timoti 3 : 1 - 5 , 13 . ) +( Verenga Pisarema 40 : 8 - 10 . ) +( b ) W@@ ats@@ unga kuit@@ ei ? +( b ) M@@ ibvunzo ipi icha@@ kurukur@@ wa mun@@ yaya ino ? +( Verenga Pisarema 19 : 7 - 11 . ) +( Verenga VaEfeso 5 : 15 , 16 . ) +I@@ wo mudzimu wacho uno@@ p@@ up@@ ur@@ irana no@@ mudzimu wedu kuti tiri vana vaMwari . ” +( Verenga 1 VaKorinde 10 : 13 . ) +( Verenga 2 Mak@@ or@@ on@@ ike 34 : 1 - 3 . ) +• Chin@@ angwa cha@@ Mwari nokuda kw@@ enyika nde@@ ch@@ ei ? +( Verenga 1 Timoti 6 : 17 - 19 . ) +( Verenga Jakobho 1 : 5 - 8 . ) +( Verenga 2 VaKorinde 5 : 14 , 15 . ) +( Verenga VaRoma 13 : 1 , 2 . ) +( Verenga 1 VaKorinde 2 : 10 . ) +( Verenga 1 VaKorinde 6 : 9 - 11 . ) +Bhaibheri rin@@ oratidza kuti zita raMwari ndi@@ Jehovha . +( Verenga 2 VaKorinde 13 : 5 . ) +( Verenga 1 VaKorinde 15 : 5@@ 8 . ) +D@@ ho@@ k@@ asi “ aiita mabasa ma@@ zhinji akanaka oku@@ pa var@@ ombo zvip@@ o zvoku@@ vanz@@ wira ng@@ oni . ” +T@@ icha@@ kuru@@ kure@@ i mun@@ yaya ino , uye zvino@@ ti@@ bats@@ irei ? +( Verenga Zvirevo 3 : 5 , 6 . ) +( Verenga VaHebheru 11 : 24 - 27 . ) +“ Shoko raMwari ib@@ enyu uye rine simba . ” — V@@ A@@ H . +R@@ ug@@ waro ur@@ w@@ u runo@@ fanan@@ idza Shoko raMwari ne@@ gir@@ azi r@@ atino@@ gona kushandisa kuti ti@@ zvi@@ one sem@@ a@@ on@@ er@@ wo atino@@ itwa naJehovha . +Nd@@ akatanga ku@@ zv@@ ibvunz@@ a kana ma@@ onero and@@ ai@@ zvi@@ ita ang@@ ave akasiyana ne@@ and@@ ai@@ itwa naJehovha . +Pa@@ kutanga zvak@@ and@@ ir@@ emera ku@@ gamuchira pfungwa iyi . +Nd@@ akanga ndi@@ chiri kuzvi@@ ona s@@ end@@ aka@@ d@@ erera zvoku@@ s@@ ak@@ wanisa ku@@ diwa naJehovha . +Nd@@ akanga ndi@@ chiri kufunga kuti Jehovha ha@@ andi@@ di , asi nd@@ akatanga kufunga nezve@@ chi@@ bayiro cha@@ Jesu ch@@ or@@ udz@@ ikin@@ uro . +Ndaka@@ bva nd@@ ap@@ eng@@ en@@ uka ndoku@@ ona kuti Jehovha akanga andi@@ itira mwoyo mu@@ refu kwenguva y@@ akare@@ ba kwazvo , ach@@ ind@@ ir@@ atidza nenzira dzakawanda kuti ain@@ di@@ da chaizvo . +Z@@ vai@@ ita sokuti ndakanga ndiri kudz@@ orera chi@@ bayiro chacho kuna Jehovha . +Un@@ e zva@@ waka@@ dzidza here pa@@ waka@@ verenga nyaya dz@@ ich@@ ang@@ op@@ fuura dze@@ Nharireyomurindi ? +( Verenga 2 VaKorinde 1 : 3 , 4 . ) +( Verenga T@@ ito 2 : 3 - 5 . ) +( Verenga VaRoma 7 : 21 - 23 . ) +( Verenga Isaya 6@@ 3 : 11 - 14 . ) +( Verenga Pisarema 1 : 1 - 3 . ) +( Verenga VaRoma 7 : 21 - 25 . ) +( Verenga 2 Petro 2 : 5 . ) +( Verenga Isaya 48 : 17 , 18 . ) +( Verenga VaEfeso 4 : 1 - 3 . ) +( Verenga VaHebheru 13 : 7 , 17 . ) +T@@ um@@ irai pamwe ne@@ ts@@ amba mu@@ chir@@ atidza kuti muno@@ da ku@@ zo@@ idz@@ or@@ erwa . +Sezvo mitemo i@@ chis@@ iyana munyika n@@ enyika , zvinokosha kuti mut@@ ange m@@ abv@@ unza van@@ achi@@ p@@ ang@@ am@@ az@@ ano ve@@ zvem@@ it@@ emo uye zvem@@ it@@ ero mus@@ ati mas@@ arudza nzira yakanaka yo@@ kupa nayo . +Zv@@ iv@@ ako N@@ en@@ zvimbo : Zv@@ iv@@ ako kana nzvimbo inot@@ eng@@ es@@ eka zv@@ ingap@@ iwa s@@ angano rin@@ os@@ handiswa neZvapupu zvaJehovha se@@ chi@@ po kana kuti , kana iri imba iri ku@@ gar@@ wa , anenge apa wacho anogona kuramba achi@@ gar@@ am@@ o pa@@ anenge ach@@ iri mup@@ enyu . +Zv@@ id@@ o Zv@@ en@@ haka : S@@ angano rin@@ os@@ handiswa neZvapupu zvaJehovha r@@ ing@@ as@@ iy@@ irwa zviv@@ ako kana mari se@@ chi@@ do chen@@ haka che@@ pa@@ mutemo . +( Verenga VaHebheru 11 : 17 - 19 . ) +Mu@@ Bhaibheri , mak@@ omo anogona kum@@ irira um@@ ambo , kana hurumende . +Im@@ i van@@ ab@@ aba , mus@@ as@@ hus@@ ha vana v@@ enyu , kuti var@@ ege ku@@ ora mwoyo . ” +Kuti u@@ wane mamwe mashoko , ona chit@@ sa@@ uko 3 che@@ bhuku iri , rinonzi Bhaibheri R@@ imbo@@ dzidz@@ is@@ ei Cha@@ izvo ? raka@@ budiswa neZvapupu zvaJehovha +( Verenga 2 Timoti 1 : 7 . ) +Kuti u@@ wane mamwe mashoko , ona chit@@ sa@@ uko 8 che@@ bhuku iri rinonzi Bhaibheri R@@ in@@ omb@@ o@@ dzidz@@ is@@ ei Cha@@ izvo ? +( Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 5 : 1 - 6 . ) +( Verenga Ruka 21 : 1 - 4 . ) +( b ) Mun@@ yaya inot@@ evera ti@@ cha@@ kurukura mibvunzo ipi ? +Panguva iyoyo vari mu@@ Jud@@ hi@@ ya ng@@ av@@ at@@ ange kut@@ iz@@ ira ku@@ mak@@ omo , ne@@ vaya vari mukati m@@ aro ng@@ ava@@ bud@@ e , uye vaya vari ku@@ mar@@ u@@ wa ng@@ av@@ are@@ ge kupinda mar@@ iri . ” +In@@ i Jehovha , ndi@@ cha@@ zvi@@ kurum@@ idzisa panguva ya@@ zvo . ” +( Verenga Ruka 10 : 29 - 37 . ) +M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura mun@@ yaya ino ? +Asi us@@ ad@@ ya mut@@ i woku@@ ziva zvakanaka ne@@ zvakaipa , nokuti nezuva ra@@ un@@ ou@@ dya chokwadi ucha@@ fa . ” +( Verenga Zvakazarurwa 14 : 6 , 7 . ) +( Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 2 : 13 . ) +Asi ach@@ atong@@ era vaka@@ d@@ erera no@@ kururama , uye ach@@ at@@ si@@ ura no@@ kururama nokuda kwe@@ vany@@ oro v@@ enyika . ” +Kuti u@@ wane mamwe mashoko , ona chit@@ sa@@ uko 10 che@@ bhuku iri raka@@ budiswa neZvapupu zvaJehovha +“ Kut@@ enda kutarisira nechi@@ vimbo zvinhu zvin@@ enge zvi@@ chit@@ aris@@ irwa . ” ​ — V@@ A@@ H . +Jesu akati : “ Pane pfuma yako , ndi@@ po@@ wo pa@@ chava nomwoyo wako . ” +“ Vano@@ fara vanhu avo Mwari wavo ari Jehovha ! ” ​ — P@@ I@@ S . +( Verenga Jakobho 5 : 14 - 16 . ) +Ak@@ any@@ ora kuti : “ Nd@@ iri w@@ eny@@ ama , nd@@ akat@@ eng@@ eswa kuti ndi@@ ve mur@@ anda wechi@@ vi . +( Verenga VaHebheru 10 : 24 , 25 . ) +( Verenga 2 VaKorinde 8 : 13 - 15 . ) +No@@ a aka@@ famba naMwari wechokwadi . ” — G@@ en . +Zvirevo 14 : 15 inoti : “ Munhu asina zivo an@@ ong@@ ot@@ enda mashoko ose , asi munhu ane n@@ j@@ ere ano@@ funga nezv@@ en@@ han@@ h@@ o dzake . ” +Nokuti j@@ oko r@@ angu nd@@ er@@ omu@@ ts@@ a uye mut@@ oro wangu w@@ akar@@ er@@ uka . ” +R@@ amb@@ ai much@@ ish@@ iv@@ ir@@ irana noku@@ k@@ angan@@ w@@ irana nomwoyo wose kana pa@@ ine munhu ane chikonzero cho@@ kuny@@ uny@@ ut@@ ira mumwe . +Jehovha zva@@ aka@@ kuk@@ angan@@ wir@@ ai nomwoyo wose , im@@ iwo it@@ ai sai@@ zvozvo . +Zvino kana z@@ iso r@@ ako ro@@ kur@@ ud@@ yi iroro ri@@ chi@@ ita kuti ug@@ umb@@ ur@@ we , r@@ ibv@@ ise ur@@ ir@@ as@@ ire kure ne@@ we . ” +Ndi@@ cha@@ kus@@ imbisa . Chokwadi ndi@@ cha@@ kubatsira . Chokwadi ndi@@ char@@ amba ndaka@@ ku@@ bata zv@@ akasimba nor@@ u@@ oko rw@@ angu r@@ wor@@ ud@@ yi rwo@@ kururama . ” +CH@@ II CH@@ I@@ M@@ W@@ E CH@@ AT@@ IN@@ O@@ G@@ ON@@ A KU@@ DZ@@ I@@ DZ@@ A M@@ U@@ B@@ H@@ AI@@ B@@ H@@ ER@@ I ? +Nei zvi@@ chik@@ osha chaizvo kuti tir@@ ambe tichi@@ d@@ an@@ ana se@@ hama ? +Nei Pauro akany@@ orera vaKristu vechi@@ Hebheru ts@@ amba ? +( Verenga VaHebheru 10 : 36 - 39 . ) +Nei zvi@@ chik@@ osha kuti tiz@@ ive zviri mu@@ bhuku ra@@ VaHebheru ? +R@@ ug@@ waro rwe@@ gore rwa@@ 20@@ 16 rw@@ uno@@ ti chii uye nei rw@@ akakodzera ? +Nd@@ ima iyoyo ndi@@ yo y@@ akas@@ arudz@@ wa kuti ive rug@@ waro rwe@@ gore rwa@@ 20@@ 16 . +R@@ ug@@ waro rwe@@ du rwe@@ gore rwa@@ 20@@ 16 : “ Kud@@ an@@ ana kw@@ enyu se@@ hama nga@@ kup@@ fu@@ ur@@ ire . ” ​ — VaHebheru 13 : 1 +Va@@ Kristu ve@@ chokwadi vanot@@ i kud@@ an@@ ana se@@ hama kuita sei ? +( a ) N@@ de@@ chipi chikonzero chikuru chokuti ti@@ d@@ an@@ ane se@@ hama ? +( b ) Chii chimwe chino@@ ita kuti ti@@ wedz@@ ere kud@@ an@@ ana ? +Jesu akanga at@@ aura nezve@@ ku@@ oma kwai@@ zo@@ ita nguva iyoyo . +Tinofanira kuit@@ ei iye zvino kutambudz@@ ika kukuru kus@@ ati kwat@@ anga ? +( a ) N@@ de@@ pap@@ i pat@@ ing@@ ar@@ atidza kuti tino@@ da hama dzedu ? +( b ) T@@ aura zvaka@@ itwa nevanhu vaJehovha zvin@@ oratidza kuti vanoda hama dzavo . +T@@ ing@@ ar@@ amba sei ‘ tichi@@ funga vaya vari mu@@ j@@ eri ? ’ +‘ R@@ amb@@ ai muchi@@ funga vaya vari mu@@ j@@ eri . ’ +“ Kur@@ oorana nga@@ ku@@ kudz@@ we nav@@ ose . ” +Ku@@ g@@ uts@@ ikana kuno@@ ti@@ batsira sei kuti ti@@ d@@ an@@ ane se@@ hama ? +‘ G@@ uts@@ ikan@@ ai nezvinhu zvin@@ enge zvir@@ ipo . ’ +K@@ uva “ vakas@@ h@@ inga kwazvo ” kuno@@ ti@@ batsira sei kuti ti@@ d@@ an@@ ane se@@ hama ? +T@@ inga@@ it@@ ei kuti ti@@ wedz@@ ere kuda vakuru ? +“ Ye@@ uk@@ ai vaya vari ku@@ kut@@ ungamir@@ irai . ” +T@@ ing@@ ar@@ atidza sei kuti tiri kuwedzera kud@@ an@@ ana ? +R@@ udo rwa@@ Kristu runo@@ fanira kuita kuti tin@@ z@@ we tichi@@ da kuit@@ ei ? +R@@ udo rwa@@ Mwari runo@@ fanira kut@@ i@@ kurudzira sei kuti ti@@ de hama dzedu ? +Nei ku@@ reg@@ er@@ erwa kw@@ atino@@ itwa naMwari kuchi@@ fanira kuita kuti ti@@ de@@ wo ku@@ reg@@ erera hama dzedu ? +1 , 2 . ( a ) ‘ Ch@@ ipo cha@@ Mwari che@@ pachena chis@@ ing@@ ar@@ ond@@ edz@@ erek@@ i ’ chin@@ os@@ angan@@ is@@ irei ? +( Verenga 2 VaKorinde 1 : 20 . ) +3 , 4 . ( a ) Un@@ onzwa sei kana uk@@ ap@@ iwa chi@@ po ? +( b ) Up@@ enyu hw@@ ako huno@@ gona kuchinja sei kana uk@@ ap@@ iwa chi@@ po chinokosha chaizvo ? +S@@ ei chi@@ po ch@@ er@@ udz@@ ikin@@ uro chat@@ akap@@ iwa naMwari chi@@ chip@@ fuura zvimwe zvip@@ o zvose ? +( a ) N@@ de@@ ap@@ i mak@@ omborero echi@@ po cha@@ Mwari a@@ uno@@ t@@ arisira ? +( b ) R@@ udo rwa@@ Mwari runo@@ ti@@ batsira kuti ti@@ ite zvinhu zvit@@ atu zv@@ ipi ? +R@@ udo r@@ una Kristu runo@@ fanira kuita kuti tin@@ z@@ we sei , uye runo@@ ita kuti ti@@ de kuit@@ ei ? +Uye@@ wo an@@ on@@ di@@ da acha@@ diwa na@@ Baba vangu , uye ndi@@ cha@@ mu@@ da uye ndi@@ cha@@ zvir@@ atidza pachena kwaari . ” — Jo@@ h . 14 : 21 ; 1 Jo@@ h . 5 : 3 . +M@@ ibvunzo ipi y@@ atino@@ gona ku@@ zv@@ ibvunz@@ a mum@@ w@@ aka we@@ Chir@@ angar@@ idzo , uye mh@@ induro dz@@ acho dz@@ ing@@ ati@@ kurudzira kuit@@ ei ? +( Verenga 1 Timoti 2 : 9 , 10 . ) +( a ) Ku@@ da kw@@ atino@@ ita Jehovha naJesu kunoita kuti tis@@ hand@@ e sei mubasa redu re@@ kuparidza ? +( b ) R@@ udo runo@@ ita kuti ti@@ bats@@ ire sei vamwe vari muungano ? +Zvi@@ i zvimwe zvat@@ in@@ onzwa tichi@@ da kuita nemhaka ye@@ kuziva rudo rwa@@ Mwari ? +Zvi@@ i zvaka@@ itwa naJesu zvin@@ oratidza kuti aida vanhu ? +Uno@@ gona here kubatsira imwe hama kana kuti hanzvadzi ya@@ kura , muushumiri ? +Zvi@@ i zva@@ unogona kuita kuti ur@@ atidz@@ e kuti uno@@ da hama dz@@ ako ? +( Verenga Ruka 14 : 12 - 14 . ) +16 , 17 . ( a ) Tino@@ dzidz@@ ei pa@@ muenzaniso w@@ akat@@ aurwa naJesu w@@ am@@ ambo ne@@ var@@ anda ? +( b ) Pashure pe@@ ku@@ fungisisa ch@@ idz@@ idzo chiri muenzaniso wa@@ Jesu , w@@ ats@@ unga kuit@@ ei ? +R@@ udo rwa@@ Mwari rwaka@@ batsira sei imwe hanzvadzi kuti ir@@ atidz@@ e mwoyo mu@@ refu kune imwe hanzvadzi ? +Nd@@ iri kuda ku@@ zo@@ on@@ ana naye as@@ isina chivi ch@@ ati@@ in@@ acho . ” +‘ Ch@@ ipo cha@@ Mwari che@@ pachena chis@@ ing@@ ar@@ ond@@ edz@@ erek@@ i ’ chi@@ cha@@ ita kuti u@@ ite sei ? +[ 1 ] ( nd@@ ima 18 ) M@@ amwe ma@@ zita ari mun@@ yaya ino aka@@ chinj@@ wa . +Zvi@@ i zvakaita kuti P@@ end@@ ek@@ ost@@ i ya@@ 33 C.E . ive zuva rino@@ kosha , uye zvaka@@ zadz@@ isa sei Magwaro ? +( a ) Nei zvakaitika pa@@ P@@ end@@ ek@@ ost@@ i ya@@ 33 C.E . zvi@@ chik@@ osha kwat@@ iri ? +( b ) M@@ akore akawanda akanga apfuura , chii chinokosha ching@@ ango@@ daro chaka@@ itika pa@@ zuva iroro rai@@ chenget@@ wa P@@ end@@ ek@@ ost@@ i ? +Tino@@ ziva sei kuti vanhu vano@@ zodzwa nenzira dz@@ akasiyana - siyana ? +Va@@ Kristu v@@ ese vakazodzwa vanop@@ iwa chii , uye izvi zvinoita kuti vany@@ atso@@ va nechokwadi ch@@ ei ? +Mu@@ Kristu w@@ ese aka@@ zodzwa anofanira kuit@@ ei kuti a@@ wane mu@@ bayiro wake we@@ kudenga ? +Petro akataura ne@@ zvazvo achiti : “ Saka hama , it@@ ai zvose zva@@ muno@@ gona kuti kud@@ anwa kw@@ enyu nokus@@ arudz@@ wa kw@@ enyu ku@@ ve kwe@@ chokwadi kwa@@ muri ; nokuti kana muk@@ ar@@ amba muchi@@ ita zvinhu izvi ha@@ mun@@ g@@ az@@ omb@@ o@@ wi . +Chokwadi , mu@@ cha@@ zar@@ ur@@ irwa kwazvo sai@@ zvozvo kuti mup@@ inde mu@@ um@@ ambo husingaperi hwa@@ She wedu uye Mup@@ on@@ esi Jesu Kristu . ” +8 , 9 . ( a ) Nei vanhu vakawanda vachi@@ om@@ erwa ne@@ kunzwisisa zvino@@ itika p@@ ano@@ zodzwa munhu ? +( b ) Munhu ano@@ ziva sei kuti akas@@ arudz@@ wa kuti a@@ ende kudenga ? +Ak@@ ava@@ udza kuti : “ Ha@@ muna ku@@ gamuchira mudzimu wo@@ ur@@ anda uno@@ k@@ onzera kut@@ ya zvak@@ are , asi m@@ aka@@ gamuchira mudzimu woku@@ gamuch@@ irwa se@@ van@@ akomana , iwo mudzimu wat@@ inos@@ h@@ evedzera na@@ wo , kuti : ‘ Ab@@ ha , Baba ! ’ +Mashoko ari pana 1 Johani 2 : 27 anor@@ ev@@ ei pa@@ anoti vaKristu vakazodzwa hava@@ faniri ha@@ vo kudz@@ idz@@ iswa nomumwe munhu ? +Mu@@ Kristu aka@@ zodzwa angan@@ et@@ seka nei , asi chii cha@@ asing@@ at@@ omb@@ o@@ iti zve@@ ku@@ fungidzira ? +Munhu pa@@ ano@@ zodzwa ne@@ mudzimu mutsvene , ma@@ fungiro ake ano@@ chinja sei , uye chii chino@@ ita kuti ach@@ inj@@ e ? +Va@@ Kristu vakazodzwa vano@@ ona sei upenyu hwavo va@@ chiri panyika ? +Zvi@@ i zvising@@ ar@@ atidz@@ i kuti munhu az@@ odz@@ wa ne@@ mudzimu mutsvene ? +Tino@@ ziva sei kuti ha@@ v@@ asi vose vaka@@ piwa mudzimu waMwari vakas@@ arudz@@ wa kuti va@@ ende kudenga ? +17 , 18 . ( a ) V@@ as@@ humiri vaMwari vakawanda vari kutarisira kuwana mu@@ bayiro we@@ i ? +Mashoko ari pana Z@@ ek@@ ar@@ iya 8 : 23 ari kuz@@ adz@@ iswa sei ? +1 , 2 . ( a ) Jehovha akati chii chai@@ zo@@ itika munguva yedu ? +( b ) M@@ ibvunzo ipi ich@@ ap@@ ind@@ urwa mun@@ yaya ino ? +Nei tis@@ ing@@ ak@@ wan@@ isi kuny@@ atso@@ ziva kuti ndi@@ vana@@ ani va@@ chava pa@@ vanhu 14@@ 4 000 ? +Va@@ Kristu vakazodzwa vanofanira ku@@ fungisisa nezv@@ ei , uye nei vachi@@ fanira kudaro ? +Ku@@ zodzwa kwavo hakuna kumb@@ o@@ ziv@@ iswa vanhu . +Nei uchi@@ fanira kung@@ warira mab@@ at@@ iro a@@ uno@@ ita vanhu vano@@ dya ching@@ wa ne@@ kun@@ wa wa@@ ini pa@@ Chir@@ angar@@ idzo ? +( Ona b@@ ho@@ k@@ isi r@@ akan@@ zi “ R@@ udo ‘ H@@ ar@@ u@@ zvib@@ ati Zvis@@ ina Ku@@ fanira . ’ ” ) +Jesu aka@@ udza vadzidzi vake kuti : “ Im@@ i m@@ ose muri hama . ” +Ung@@ ar@@ atidza sei kuti un@@ or@@ emek@@ edza vaKristu vakazodzwa ? +Tino@@ zvidz@@ ivirira sei kana tik@@ as@@ iyana ne@@ k@@ ats@@ ika ‘ ke@@ kungo@@ ye@@ mur@@ a vanhu ’ ? +Nei tis@@ inga@@ faniri ku@@ net@@ seka n@@ enh@@ amba ye@@ vano@@ dya ching@@ wa ne@@ kun@@ wa wa@@ ini pa@@ Chir@@ angar@@ idzo ? +“ Jehovha ano@@ ziva vaya vari vake . ” +Bhaibheri rino@@ ti@@ i nezv@@ enh@@ amba y@@ ev@@ aka@@ zodzwa vach@@ ange vari panyika panguva ich@@ at@@ anga kutambudz@@ ika kukuru ? +N@@ de@@ zv@@ ipi zvatino@@ fanira kuziva pan@@ yaya ye@@ kus@@ arudza kunoita Jehovha vaKristu ve@@ 14@@ 4 000 ? +Va@@ Kristu vakazodzwa vas@@ homan@@ ana ndi@@ vo vakas@@ handiswa kuny@@ ora Magwaro e@@ chiKristu echi@@ Giriki . +ri@@ chit@@ is@@ wed@@ edza pedyo naMwari uye nevamwe ? +Kunyange zvazvo Jehovha ari iye Mwari Mu@@ kuru kupfuura vamwe vose , akaita kuti vamwe vait@@ ei ? +Jehovha akas@@ handa ne@@ Mwanakomana wake pa@@ basa r@@ ipi rino@@ kosha ? +Jehovha akapa Ad@@ hamu basa re@@ i , uye nei akadaro ? +Somuenzaniso , akapa Ad@@ hamu basa re@@ kupa mh@@ uka ma@@ zita . +Vamwe vakas@@ hand@@ awo sei pamwe naMwari paku@@ zadz@@ isa chinangwa chake ? +Tino@@ gona kushand@@ awo pa@@ basa r@@ ipi , uye Jehovha aifanira kushanda pamwe chete nes@@ u pa@@ basa iri here ? +Muapostora Pauro akanyora kuti : “ Zv@@ at@@ inos@@ handa pamwe chete naye , tino@@ kut@@ et@@ erer@@ ai@@ wo kuti mu@@ re@@ ge ku@@ gamuchira mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari m@@ ot@@ adza kunzwisisa chinangwa cha@@ wo . ” +Mwanakomana waMwari akats@@ anangura sei man@@ z@@ w@@ iro a@@ aiita ne@@ kushanda pamwe chete na@@ Baba vake ? +Nei basa re@@ kuparidza ri@@ chi@@ ita kuti tif@@ are ? +Vamwe vanhu vak@@ ati@@ i nezve@@ kushanda kwa@@ vanoita naJehovha ? +Fr@@ anc@@ o uyo anos@@ hum@@ irawo ari ku@@ I@@ tal@@ y anoti : “ A@@ chis@@ handisa Shoko rake nezv@@ imwe zvatino@@ piwa nes@@ angano rake , Jehovha ano@@ ti@@ yeuch@@ idza zuva nezuva kuti ano@@ ti@@ da , uye kuti zvose zvatino@@ mu@@ itira zvinokosha , kunyange zvazvo t@@ inga@@ ona sokuti hapana zvat@@ iri kuita . +Nd@@ os@@ aka kushanda pamwe chete naMwari kuchi@@ ita kuti ndi@@ f@@ are uye kuti upenyu hw@@ angu hu@@ ve ne@@ chinangwa . ” +Jesu aiva pedyo zvakadini naJehovha uye chii chaka@@ ita kuti ad@@ aro ? +Nei basa re@@ kuparidza ri@@ chi@@ ita kuti tive pedyo naMwari uye nevamwe ? +Tino@@ ona kuti zv@@ akanak@@ irei kuramba tichi@@ vimba naye uye tichi@@ mu@@ te@@ erera . +Chii chi@@ cha@@ ita kuti ti@@ wedz@@ ere kuva pedyo naJehovha uye ne@@ hama dzedu munyika itsva ? +Imwe hama ye@@ ku@@ Austr@@ al@@ ia in@@ onzwa sei ne@@ basa re@@ kuparidza ? +Jo@@ el uyo ano@@ gara ku@@ Austr@@ al@@ ia anoti : “ B@@ asa re@@ kuparidza rino@@ ita kuti ndi@@ one zvinhu sezva@@ zviri . +R@@ in@@ on@@ di@@ batsira kuziva mat@@ ambudziko ari kus@@ angana nevamwe vanhu uye rino@@ ita kuti ndi@@ one kuti kushandisa zvino@@ taurwa neBhaibheri kuri kun@@ di@@ batsira sei muupenyu . +B@@ asa re@@ kuparidza rin@@ on@@ di@@ batsira kuti nd@@ is@@ a@@ zvi@@ kudza uye rino@@ ita kuti ndi@@ wedz@@ ere ku@@ vimba naJehovha uye ku@@ vimb@@ awo ne@@ hama ne@@ hanzvadzi dz@@ angu . ” +Chii chin@@ oratidza kuti tino@@ batsirwa ne@@ mudzimu waMwari ? +Uno@@ funga kuti uch@@ ar@@ amba uchi@@ ita basa iri kwenguva y@@ akare@@ ba sei ? +B@@ asa re@@ kuparidza rino@@ batsira sei paku@@ zadz@@ isa chinangwa cha@@ Mwari cha@@ akas@@ ikira vanhu ? +B@@ asa redu re@@ kuparidza raka@@ batana pap@@ i nem@@ ir@@ ayiro mi@@ kuru yaMwari ? +W@@ e@@ chipiri , waka@@ fanana na@@ wo , nd@@ ou@@ yu , ‘ I@@ da mu@@ vak@@ idz@@ ani wako sezva@@ uno@@ zvi@@ ita . ’ ” +Un@@ onzwa sei ner@@ o@@ pafadzo ya@@ un@@ ayo ye@@ kuparidza mashoko akanaka ? +Ndino@@ kupa simba r@@ angu , Shoko r@@ angu Bhaibheri , ru@@ bats@@ iro runo@@ bva kudenga , ve@@ kushanda navo panyika , ndi@@ char@@ amba ndichi@@ kudzidzisa , uye ndi@@ ch@@ any@@ atso@@ kur@@ ay@@ ir@@ idza panguva y@@ akakodzera . ’ +T@@ akak@@ ombor@@ erwa chaizvo kuita zvatino@@ kumb@@ irwa naJehovha uye kushanda pamwe chete naMwari wedu ! ” +M@@ A@@ G@@ A@@ Z@@ IN@@ I IN@@ O ye@@ Nharireyomurindi , inor@@ umb@@ idza Jehovha Mwari , Mut@@ ongi we@@ zvinhu zvose . +In@@ ony@@ aradza vanhu nem@@ ashoko akanaka okuti Umambo hwaMwari huri kudenga , hwa@@ va pedyo noku@@ gum@@ isa u@@ ipi hw@@ ose , hwo@@ chinja pasi rin@@ o kuti ri@@ ve par@@ adhiso . +Ino@@ kurudzira vanhu kuti vat@@ ende muna Jesu Kristu , uyo ak@@ ati@@ f@@ ira kuti tik@@ wan@@ ise kuwana upenyu husingaperi uye uyo ari kutonga iye zvino sa@@ Mambo we@@ Umambo hwaMwari . +Mag@@ az@@ ini ino y@@ ag@@ ara ichi@@ budiswa ku@@ bvira muna 18@@ 7@@ 9 uye ha@@ isi ye@@ zvem@@ atonger@@ wo enyika . +Zva@@ ino@@ taura zvose zvino@@ bva muBhaibheri . +Be@@ be ai@@ wirirana n@@ ab@@ aba vake chaizvo . +Mashoko aya aka@@ a@@ udzwa nes@@ hamwari ye@@ pedyo yem@@ huri yavo uye izvi zv@@ akar@@ wa@@ dza Be@@ be pane ku@@ muny@@ aradza . +Mum@@ woyo make Be@@ be a@@ ing@@ o@@ zvi@@ udza kuti , “ Hapana kana ch@@ ak@@ amb@@ onaka ne@@ kuf@@ a kwa@@ baba vangu . ” +Zv@@ iri pachena kuti Be@@ be pa@@ aka@@ z@@ ony@@ ora nezv@@ eny@@ aya iyi mune rimwe bhuku pat@@ op@@ era makore , akanga ach@@ iri kush@@ ung@@ ur@@ udz@@ ika . +Be@@ be aka@@ zo@@ ona kuti zvinot@@ ora nguva kuti kush@@ ung@@ ur@@ udz@@ ika kuz@@ op@@ era , kuny@@ anya kana anenge af@@ irwa anga ach@@ iny@@ atso@@ wirirana ne@@ muf@@ i wacho . +Nd@@ oku@@ saka Bhaibheri ri@@ chit@@ i rufu “ mu@@ vengi woku@@ pedzisira . ” +R@@ ufu rw@@ un@@ ongo@@ erek@@ ana rwa@@ uya , kuny@@ anya pa@@ ye pat@@ inenge t@@ akar@@ iv@@ ara , uye rw@@ uno@@ t@@ it@@ orera vanhu vat@@ ino@@ da . +T@@ ose zvedu t@@ inor@@ wadz@@ iwa p@@ atino@@ f@@ irwa . +Saka zviri pachena kuti p@@ atino@@ f@@ irwa t@@ inenge t@@ ar@@ asikirwa uye t@@ inos@@ ara ti@@ ch@@ ish@@ ung@@ ur@@ udz@@ ika . +Zv@@ imwe w@@ ak@@ ambo@@ zv@@ ibvunz@@ a kuti : ‘ Zv@@ inot@@ ora nguva yaka@@ di@@ i kuti kush@@ ung@@ ur@@ udz@@ ika kuz@@ op@@ era ? +Nd@@ ing@@ any@@ aradza sei vamwe vanenge va@@ f@@ irwa ? +Pane tariro here yokuti hama nes@@ hamwari dzedu dzaka@@ fa dz@@ icha@@ zo@@ muka ? ’ +W@@ ati w@@ amb@@ or@@ wara kwenguva pfupi here ? +Ch@@ imbo@@ funga zvaka@@ itwa na@@ Abra@@ hamu pa@@ aka@@ f@@ irwa ne@@ mudzimai wake . +Mu@@ mutauro w@@ akas@@ handiswa kuny@@ ora Bhaibheri pakutanga zvin@@ onzi , “ Abra@@ hamu akatanga kuch@@ ema S@@ ara ach@@ isv@@ im@@ ha mis@@ o@@ dzi . ” +Shoko rokuti “ akatanga ” rin@@ oratidza kuti Abra@@ hamu akat@@ ora nguva achir@@ wadz@@ irwa . +Ak@@ aita “ mazuva ma@@ zhinji ” ach@@ ish@@ ung@@ ur@@ udz@@ ika uye ve@@ mumhuri make havana ku@@ kwanisa ku@@ muny@@ aradza . +P@@ ap@@ era makore akati kuti , Jakobho akanga ach@@ iri kush@@ ung@@ ur@@ udz@@ ika ner@@ ufu rwa@@ Jos@@ ef@@ a . ​ — Genes@@ isi 23 : 2 ; 37 : 34 , 35 ; 42 : 36 ; 45 : 28 . +“ Mur@@ ume wangu , R@@ ob@@ er@@ t , akas@@ ha@@ ya musi wa@@ 9 J@@ u@@ ly 200@@ 8 . +Iye zvino at@@ ova makore 6 asi ndi@@ chiri kung@@ or@@ wadz@@ iwa . +H@@ andi@@ fung@@ i kuti mar@@ wadz@@ o angu e@@ kuf@@ irwa na@@ R@@ o@@ b ach@@ az@@ omb@@ op@@ era . ” ​ — G@@ ai@@ l , ane makore 60 . +“ Kunyange zvazvo pat@@ op@@ fuura makore 18 kubva p@@ akas@@ ha@@ ya mudzimai wangu , ndi@@ chiri kumu@@ funga uye zvi@@ chiri kun@@ dir@@ wa@@ dza . +P@@ and@@ in@@ ongo@@ ona chinhu ch@@ akas@@ ikwa chino@@ y@@ ev@@ edza , ndino@@ bva nd@@ at@@ anga kumu@@ funga uye ne@@ cho@@ mumwoyo nd@@ inot@@ anga ku@@ fungidzira kuf@@ ara kwa@@ aizo@@ ita ku@@ dai ari kuona zvand@@ inenge ndichi@@ on@@ awo . ” ​ — E@@ ti@@ en@@ ne , ane makore 8@@ 4 . +Se@@ zvat@@ a@@ ona kana munhu aka@@ f@@ irwa anot@@ or@@ wadz@@ iwa uye an@@ osh@@ ung@@ ur@@ udz@@ ika kwenguva refu . +Kus@@ h@@ ung@@ ur@@ udz@@ ika kw@@ atino@@ ita kw@@ akasiyana , saka ha@@ zvin@@ a kunaka kuti munhu atong@@ e zvino@@ itwa ne@@ mumwe pa@@ ano@@ w@@ irwa ne@@ dambudziko . +Uye@@ wo h@@ ati@@ faniri ku@@ zv@@ ipa m@@ hosva kana tichi@@ ona sokuti kur@@ wadz@@ iwa kwedu kun@@ enge kw@@ akany@@ any@@ isa . +Se@@ zviri kur@@ atidzwa mun@@ yaya y@@ akan@@ zi “ T@@ evedzera Kut@@ enda K@@ wavo ” iri mu@@ magazini ino , Is@@ aka akanga ach@@ iri kush@@ ung@@ ur@@ udz@@ ika ner@@ ufu rwa@@ amai vake , S@@ ara , makore mat@@ atu pashure pe@@ kunge va@@ fa . ​ — Genes@@ isi 24 : 6@@ 7 . +Se@@ muenzaniso vamwe vanogona ku@@ ku@@ udza kuti us@@ ach@@ ema kana kut@@ omb@@ oratidza kur@@ wadz@@ iwa kwa@@ un@@ enge uchi@@ ita . +Vamwe vanogona ku@@ ku@@ kurudzira kuti uch@@ em@@ e zve@@ kuch@@ ema zvi@@ ya . +Asi Bhaibheri rino@@ taura zv@@ akasiyana ne@@ izvi uye zvar@@ ino@@ taura zvino@@ ts@@ ig@@ ir@@ wawo ne@@ ongor@@ oro dziri kuitwa mazuva ano . +Mun@@ e dzimwe tsika zvin@@ onzi kana uri murume ha@@ u@@ fan@@ ire kuch@@ ema . +Asi pane chikonzero here che@@ kuti munhu any@@ are ku@@ budisa mis@@ o@@ dzi , kunyange par@@ u@@ zhinji ? +Va@@ ongor@@ ori vem@@ as@@ hand@@ iro anoita pfungwa vanot@@ i kana munhu ach@@ inge af@@ irwa ano@@ wanzo@@ budisa mis@@ o@@ dzi . +Uye kuch@@ ema kunogona kuz@@ oku@@ batsira kuti unz@@ we zviri nani pasinei ne@@ kur@@ asikirwa kwa@@ un@@ enge wa@@ ita . +Kana munhu aka@@ van@@ za kur@@ wadz@@ iwa kwa@@ anenge achi@@ ita zvinogona kumu@@ kuva@@ dza pane kuti zvi@@ mu@@ bats@@ ire . +Bhaibheri har@@ it@@ sig@@ iri pfungwa ye@@ kuti kuch@@ ema kwaka@@ ipa kana kuti murume ha@@ ach@@ em@@ e . +Kunyange zvazvo aiva nesimba re@@ ku@@ mutsa vakafa , shamwari yake R@@ az@@ aro pa@@ yaka@@ fa , aka@@ ch@@ ema vanhu vachi@@ zvi@@ ona ! ​ — Johani 11 : 33 - 35 . +K@@ azhinji kana munhu aka@@ f@@ irwa as@@ inga@@ zvit@@ aris@@ iri anoita nguva dza@@ an@@ omb@@ ot@@ s@@ am@@ wa . +Pane zvik@@ onzero zvakawanda zv@@ inga@@ ita kuti munhu anenge af@@ irwa ats@@ amwe . Izvi zvino@@ itika kana munhu anor@@ emek@@ edzwa akataura asina kufunga uye akataura mashoko as@@ iri echokwadi . +Mumwe murume we@@ ku@@ South Africa anonzi M@@ ike anoti : “ Baba vangu pa@@ vakafa nd@@ a@@ ing@@ ova nemakore 14 chete . +Par@@ ufu rwa@@ vo mumwe muf@@ un@@ disi we@@ A@@ ng@@ l@@ ican akati Mwari anoda kuva nevanhu v@@ akanaka uye ano@@ kurumidza ku@@ vat@@ ora . +* Izvi zv@@ akandi@@ g@@ umb@@ ura nokuti t@@ aida chaizvo kuva n@@ ab@@ aba vedu . +Kana uk@@ af@@ irwa us@@ inga@@ zvit@@ aris@@ iri , unogona kuramba uchi@@ funga kuti , ‘ Zv@@ imwe dai nd@@ akaita izvi ne@@ izvi ang@@ ad@@ ai asina kuf@@ a . ’ +Kana uchi@@ gara uchi@@ zv@@ ipa m@@ hosva uye uch@@ imb@@ ot@@ s@@ am@@ wa , zvinokosha kuti us@@ a@@ ku@@ var@@ ire mukati . +T@@ aura nes@@ hamwari inogona ku@@ kuteerera yoku@@ batsira kuona kuti man@@ z@@ w@@ iro iwayo ano@@ wanzo@@ itika kune vakawanda vanenge va@@ f@@ irwa . +Bhaibheri rinoti : “ S@@ hamwari ye@@ chokwadi ine rudo nguva dzose , uye i@@ hama ino@@ berek@@ erwa kubatsira pa@@ kun@@ enge ku@@ ine kutambudz@@ ika . ” ​ — Zvirevo 17 : 17 . +Musiki wedu Jehovha Mwari ndiye anogona kuva S@@ hamwari ino@@ pfuura dzose ku@@ munhu anenge af@@ irwa . +N@@ y@@ engetera kwaari u@@ chit@@ aura zvose zvin@@ enge zvichi@@ ku@@ ne@@ ts@@ a nokuti ‘ iye ane hanya ne@@ we . ’ +Ano@@ vimb@@ is@@ awo kuti vose van@@ ony@@ engetera kwaari vach@@ any@@ atso@@ zor@@ odz@@ wa mu@@ pfungwa ‘ ner@@ ugare rwa@@ Mwari runo@@ pfuura kufunga kwose . ’ +Uye@@ wo , bvumira Mwari kuti a@@ ku@@ bats@@ ire kuti unz@@ we zviri nani achis@@ handisa shoko rake rin@@ ony@@ aradza , Bhaibheri . +Kana uk@@ a@@ funga nezvem@@ av@@ h@@ esi akadaro zvicha@@ kubatsira chaizvo kuny@@ anya us@@ iku pa@@ un@@ enge uri we@@ ga u@@ chis@@ ha@@ ya hope . ​ — Isaya 5@@ 7 : 15 . +M@@ ung@@ uva ich@@ ang@@ op@@ fuura , murume ane makore 40 , w@@ ati@@ ch@@ ati J@@ ack , aka@@ f@@ irwa ne@@ mudzimai wake pashure pe@@ kunge ar@@ wara ne@@ k@@ enza . +Ano@@ ti : “ P@@ and@@ in@@ ony@@ engetera kuna Jehovha , han@@ di@@ zos@@ ur@@ uk@@ ir@@ wi . +Ndino@@ wanzo@@ pe@@ p@@ uka us@@ iku uye hope dzino@@ bva dz@@ ar@@ amba ku@@ uya . +Pashure pe@@ kunge nd@@ av@@ er@@ enga mashoko anony@@ aradza ari mu@@ Magwaro ndo@@ funga nezva@@ wo uye nd@@ ony@@ engetera ndi@@ chit@@ aura zvose zvin@@ ond@@ in@@ ets@@ a , ndino@@ bva nd@@ at@@ anga kunzwa ku@@ gadz@@ ikana mumwoyo ne@@ mu@@ pfungwa uye hope dzino@@ bva dz@@ au@@ ya zv@@ ekare . ” +Mus@@ ikana anonzi Van@@ ess@@ a aka@@ f@@ irwa na@@ amai vake pashure pe@@ kunge var@@ wara . +Ak@@ a@@ on@@ awo kubatsira kunoita kuny@@ engetera . +Ano@@ ti : “ Zvinhu pa@@ zva@@ inge zv@@ akandi@@ om@@ era chaizvo , nd@@ ai@@ bva nd@@ any@@ engetera kuna Mwari ndo@@ ch@@ ema . +Jehovha ain@@ zwa min@@ y@@ engetero yangu uye ain@@ di@@ pa simba r@@ and@@ aida . ” +Vamwe ve@@ vanop@@ a ma@@ zano kune vanenge va@@ f@@ irwa vano@@ kurudzira vanenge vach@@ ish@@ ung@@ ur@@ udz@@ ika kuti va@@ zvip@@ ire kuita mabasa e@@ kubatsira vanhu mun@@ haraunda . +Kana vakaita izvozvo vanogona kuf@@ ara uye kush@@ ung@@ ur@@ udz@@ ika kwavo kunogona kudz@@ ikira . +Va@@ Kristu vakawanda vaka@@ f@@ irwa vaka@@ ona kuti kuita mabasa e@@ kubatsira vamwe kwakaita kuti vany@@ ar@@ adz@@ we zvikuru . ​ — 2 VaKorinde 1 : 3 , 4 . +Mwari pa@@ ano@@ ona u@@ chir@@ wadz@@ iwa n@@ ai@@ ye anor@@ wadz@@ i@@ wawo . ​ — Pisarema 5@@ 5 : 22 ; 1 Petro 5 : 7 . +Mwari ha@@ an@@ eti ne@@ kuteerera min@@ y@@ engetero y@@ ev@@ as@@ humiri vake . ​ — Pisarema 8@@ 6 : 5 ; 1 Va@@ T@@ es@@ ar@@ on@@ ika 5 : 17 . +Mwari anos@@ u@@ wa vanhu vakafa . ​ — Jobho 14 : 13 - 15 . +Mwari ano@@ vimb@@ isa kuti acha@@ mutsa vakafa . ​ — Isaya 26 : 19 ; Johani 5 : 28 , 29 . +Pane here pa@@ w@@ ak@@ amb@@ os@@ ha@@ ya kuti w@@ ony@@ aradza sei munhu we@@ pedyo a@@ inge af@@ irwa ne@@ hama yake ? +Dzimwe nguva chino@@ ita kuti ti@@ daro nde@@ che@@ kuti t@@ inenge tis@@ ina chokwadi kuti to@@ it@@ ei kana kuti t@@ ot@@ aur@@ ei . +Asi pane zvinhu zvatino@@ gona kuita kuti ti@@ bats@@ ire . +K@@ azhinji chin@@ enge chi@@ ching@@ o@@ diwa kuva ne@@ munhu wacho w@@ ot@@ aura mashoko aka@@ dai se@@ e@@ kuti : “ Nd@@ ine ur@@ ombo chaizvo . ” +M@@ uts@@ ika dzakawanda munhu anogona kuratidza kuti ari kunz@@ wira tsitsi anenge af@@ irwa ne@@ ku@@ mum@@ b@@ und@@ ira kana kuti kumu@@ pur@@ u@@ zira zvin@@ y@@ oro ny@@ oro par@@ u@@ oko . +Kana munhu wacho achi@@ da kutaura , te@@ erera u@@ chir@@ atidza kunzwisisa kur@@ wadz@@ iwa kwaari kuita . +Ch@@ imwe chin@@ onyanya ku@@ kosha paku@@ batsira mhuri inenge ya@@ f@@ irwa kuita mabasa a@@ vanenge vasing@@ ak@@ wan@@ isi kuita aka@@ dai se@@ ku@@ b@@ ika , ku@@ chengeta vana kana kubatsira pane zvin@@ enge zvichi@@ da kuitwa par@@ ufu . +Ku@@ ita izvi kuno@@ pfuura kutaura chero mashoko ap@@ i zva@@ wo at@@ ing@@ at@@ aura e@@ kuny@@ aradza . +Ne@@ kufamba kwenguva unogona kunzwa uchi@@ da kutaura zvinhu zvakanaka zvai@@ itwa ne@@ muf@@ i uye zvak@@ ambo@@ itika zvino@@ fadza . +Ku@@ kurukura izvozvo kunogona kuita kuti munhu anenge af@@ irwa anz@@ we zviri nani . +F@@ unga nezva@@ Pa@@ m , uyo aka@@ f@@ irwa ne@@ murume wake I@@ an makore 6 akap@@ fuura . Ano@@ ti : “ Dzimwe nguva vanhu van@@ on@@ di@@ udza zvinhu zvakanaka zvai@@ itwa na@@ I@@ an zvand@@ ais@@ at@@ omb@@ o@@ ziva , uye izvozvo zvinoita kuti mwoyo wangu uny@@ ev@@ en@@ uke . ” +Va@@ ongor@@ ori vanot@@ aura kuti vanhu vazhinji van@@ onyanya ku@@ batsirwa mazuva a@@ vanenge vach@@ ang@@ of@@ irwa , asi pasina nguva van@@ ok@@ angan@@ w@@ ika ne@@ kuti hama nes@@ hamwari dz@@ inenge dz@@ at@@ anga ku@@ bat@@ ikan@@ azve ne@@ upenyu hwa@@ dz@@ o . +Saka pashure pe@@ kunge shamwari ya@@ f@@ irwa , edza kugara u@@ chit@@ aura nayo . +* Vanhu vakawanda vanenge va@@ f@@ irwa vanoda chaizvo kuit@@ irwa izvi nokuti zvinoita kuti kur@@ wadz@@ iwa kwa@@ vanenge vachi@@ ita ku@@ ite nani . +F@@ unga zvakaitika kuna K@@ a@@ ori , mumwe mus@@ ikana we@@ ku@@ Jap@@ an uyo aka@@ f@@ irwa na@@ amai vake uye pashure pe@@ gore nem@@ wedzi mit@@ atu ndoku@@ bva af@@ irwa zvak@@ are ne@@ muk@@ oma wake . Izvi zvaka@@ mur@@ wa@@ dza chaizvo . +Asi shamwari dzake ha@@ dz@@ ina ku@@ mus@@ iya . Dz@@ akaramba dz@@ ichi@@ mu@@ batsira . +Mumwe mukadzi wechi@@ kuru anonzi R@@ its@@ uko , aka@@ udza K@@ a@@ ori kuti aida kuva shamwari yake . +K@@ a@@ ori anoti : “ Kutaura chokwadi , hand@@ ina kuzvi@@ farira . +N@@ da@@ is@@ ada kuti mumwe munhu at@@ ore nzvimbo ya@@ amai vangu uye hapana wand@@ ai@@ funga kuti aigona kudaro . +Asi zvand@@ ai@@ it@@ irwa na@@ R@@ its@@ uko zvakaita kuti ave shamwari yangu ye@@ pedyo . +V@@ h@@ iki re@@ ga re@@ ga t@@ ai@@ enda t@@ ese kuno@@ par@@ idza uye ku@@ misangano yechiKristu . +A@@ ind@@ ik@@ oka kuti ndi@@ z@@ on@@ wa ti@@ i naye , ain@@ di@@ unz@@ ira zve@@ kud@@ ya uye ai@@ gara ach@@ ind@@ it@@ umira ts@@ amba nem@@ aka@@ dh@@ i . +Z@@ vand@@ aka@@ dzidza kuna R@@ its@@ uko zv@@ akandi@@ batsira chaizvo . ” +P@@ at@@ ova nemakore 12 kubva p@@ aka@@ fa amai va@@ K@@ a@@ ori , uye iye zvino iye ne@@ murume wake vari kuita nguva yakawanda vachi@@ par@@ idza nezve@@ Umambo hwaMwari . +K@@ a@@ ori anoti “ R@@ its@@ uko ach@@ iri kuratidza kuti ane hanya n@@ eni . +P@@ and@@ ino@@ dz@@ okera kumb@@ a , ndino@@ wanzo@@ mush@@ any@@ ira uye an@@ on@@ di@@ kurudzira chaizvo . ” +Mumwe akaramba achi@@ batsirwa nevamwe ndi@@ P@@ ol@@ i , mumwe we@@ Zvapupu zvaJehovha ano@@ gara mu@@ C@@ y@@ pr@@ us . +P@@ ol@@ i aiva ne@@ murume ane mutsa ain@@ zi So@@ zo@@ s . So@@ zo@@ s aiva mut@@ ariri muungano yechiKristu uye ai@@ wan@@ z@@ ok@@ oka nh@@ erera ne@@ chir@@ ik@@ adzi kumb@@ a kwake kuti va@@ d@@ ye pamwe chete vachit@@ and@@ ara ha@@ vo . +Zv@@ inor@@ wa@@ dza kuti So@@ zo@@ s aka@@ fa ne@@ b@@ un@@ du re@@ mu@@ ur@@ op@@ i a@@ ine makore 5@@ 3 . +Va@@ va ikoko vakat@@ anga kupinda misangano ne@@ imwe ungano ye@@ Zvapupu zvaJehovha . +P@@ ol@@ i anoti : “ Vanhu ve@@ muungano yacho vais@@ az@@ iva zvakanga zva@@ itika kwat@@ iri uye kuti zvinhu zva@@ inge zvak@@ ati@@ om@@ era sei . +Asi izvozvo ha@@ zvin@@ a kuita kuti var@@ ege kutaura nes@@ u vachit@@ iny@@ aradza nem@@ ashoko e@@ mutsa uye kut@@ ibatsira nezv@@ at@@ aida . +Izvi zvai@@ batsira chaizvo sezvo mwanakomana wangu akanga as@@ isina baba . +Va@@ ya vait@@ ungamirira muungano va@@ ir@@ atidza kuti va@@ iny@@ atso@@ da Daniel . +Mumwe ait@@ o@@ ona kuti p@@ ese pa@@ va@@ inot@@ and@@ ara nes@@ hamwari kana kuti pa@@ va@@ inot@@ amba bh@@ ora ai@@ enda na@@ Daniel . ” +Iye zvino Daniel na@@ amai vake ha@@ vach@@ any@@ any@@ i ku@@ net@@ seka . +Pane zvakawanda zvatino@@ gona kuita kuti ti@@ bats@@ ire uye t@@ iny@@ ar@@ adz@@ e vanenge vachi@@ ch@@ ema . +Bhaibheri rino@@ t@@ iny@@ ar@@ adz@@ awo nezv@@ akanaka zvar@@ ino@@ tiv@@ imbisa nezv@@ er@@ am@@ ang@@ wana . +Vamwe vakat@@ om@@ aka p@@ akar@@ enda yavo musi waka@@ f@@ irwa munhu wacho kuti va@@ zo@@ yeuka nguva ya@@ vanogona ku@@ muny@@ aradza pa@@ anenge ach@@ iny@@ anya ku@@ net@@ seka . V@@ anogona kuita izvi kana mazuva acho asvika . +G@@ ai@@ l amb@@ ot@@ aurwa nezv@@ ake , haana chokwadi kuti mar@@ wadz@@ o e@@ kuf@@ irwa ne@@ murume wake R@@ o@@ b ach@@ az@@ omb@@ op@@ era . +Kunyange zvakadaro ari kutarisira ku@@ zo@@ mu@@ on@@ azve munyika itsva yaka@@ vimb@@ iswa naMwari . +Nd@@ in@@ onz@@ wira tsitsi vaka@@ f@@ irwa ne@@ hama dzavo asi vasing@@ aziv@@ i nezv@@ et@@ ariro iyi ye@@ kuti vanogona ku@@ zo@@ dzi@@ on@@ azve . ” +M@@ ung@@ uva pfupi iri ku@@ uya Mwari acha@@ mutsa Jobho nevamwe vakawanda vakafa , pa@@ ach@@ aita kuti pasi rin@@ o ri@@ ve par@@ adhiso . +Izvi zvino@@ ts@@ ig@@ irwa na@@ Mabasa 24 : 15 , iyo inoti : “ Ku@@ chava noku@@ muka . ” +Jesu ano@@ tiv@@ imbisa kuti : “ Mus@@ as@@ ham@@ iswa ne@@ izvi , nokuti awa iri ku@@ uya ma@@ iri vaya vose vari muma@@ kuva vacha@@ ye@@ uk@@ wa uye vach@@ an@@ zwa inz@@ wi rake vo@@ buda . ” +A@@ cha@@ muka a@@ ine t@@ aris@@ iro ye@@ kuva@@ zve ‘ nesimba r@@ ou@@ duku hwake , ’ uye kurarama nokusingaperi ny@@ ama yake iri “ itsva kupfuura pa@@ aiva muduku . ” +Izvi zvicha@@ it@@ ik@@ awo kune vose vanot@@ enda ng@@ oni dza@@ Mwari dze@@ ku@@ mutsa vakafa kuti va@@ zor@@ aram@@ azve panyika . +Kana waka@@ f@@ irwa ne@@ mumwe munhu we@@ pedyo , zvat@@ aurwa pamusoro apa zving@@ as@@ ap@@ edza ha@@ zvo kur@@ wadz@@ iwa kw@@ ako zvach@@ ose . +Asi kana uk@@ any@@ atso@@ funga zvino@@ vimb@@ iswa naMwari muBhaibheri , unogona kuva ne@@ tariro uye simba re@@ kuti ur@@ ambe u@@ chit@@ s@@ ungirira . ​ — 1 Va@@ T@@ es@@ ar@@ on@@ ika 4 : 13 . +Uno@@ da here kuziva zvimwe zva@@ ung@@ aita kana uch@@ ish@@ ung@@ ur@@ udz@@ ika ? +Un@@ e mibvunzo here yaka@@ dai sokuti , “ Nei Mwari achi@@ bvumira u@@ ipi nokut@@ ambura ? ” +En@@ da panzvimbo yedu ye@@ ku@@ bud@@ isira mashoko pa@@ I@@ nd@@ an@@ eti , j@@ w@@ .@@ or@@ g , kuti u@@ one mh@@ induro dzin@@ ony@@ aradza dzino@@ bva muBhaibheri . +“ Mwari . . . ach@@ ap@@ u@@ kut@@ a mis@@ o@@ dzi yose pam@@ az@@ iso avo , rufu har@@ ucha@@ zo@@ v@@ ipo . ” ​ — Zvakazarurwa 21 : 3 , 4 . +Mag@@ az@@ ini iyi ye@@ Nharireyomurindi ino@@ taura kuti Mwari ach@@ az@@ adz@@ isa sei vimb@@ iso iyoyo uye kuti iwe uch@@ ab@@ ats@@ irwa sei pa@@ icha@@ zadz@@ iswa . +Ndaka@@ udza mus@@ o@@ j@@ a wacho kuti ndakanga nd@@ at@@ omb@@ op@@ inda mu@@ j@@ eri nemhaka ye@@ kuti ndakanga nd@@ ising@@ adi kupinda muchi@@ u@@ to . +N@@ D@@ AK@@ A@@ B@@ ER@@ E@@ K@@ WA muna 19@@ 26 mu@@ C@@ ro@@ ok@@ s@@ v@@ il@@ le , O@@ hi@@ o , ku@@ United States . +Baba na@@ amai vakanga vas@@ inga@@ iti zve@@ chitendero , asi vai@@ da kuti t@@ ese vana tiri 8 ti@@ ende ku@@ chechi . +Mar@@ gar@@ et W@@ al@@ k@@ er ( hanzvadzi ye@@ chipiri kubva kuru@@ b@@ osh@@ we ) akandi@@ batsira kuti nd@@ idz@@ idz@@ e chokwadi +Panguva iyi , mu@@ vak@@ idz@@ ani wedu ain@@ zi Mar@@ gar@@ et W@@ al@@ k@@ er , uyo aiva C@@ hap@@ upu cha@@ Jehovha , akatanga kush@@ any@@ ira amai achi@@ kurukura navo Bhaibheri . +Asi ndaka@@ edza kuramba ndi@@ chit@@ eerera zva@@ vai@@ kurukura . +R@@ imwe zuva Mar@@ gar@@ et pa@@ aka@@ uya ku@@ zo@@ dzidza na@@ amai , akandi@@ bvunza kuti , “ Uno@@ ziva zita raMwari here ? ” +Nd@@ akap@@ indura kuti , “ Munhu w@@ ese ano@@ ziva kuti anonzi Mwari . ” +Ak@@ ab@@ va ati , “ T@@ ora Bhaibheri r@@ ako u@@ v@@ hure pana Pisarema 8@@ 3 : 18 . ” +Ndaka@@ vh@@ ura nd@@ ik@@ a@@ ona kuti zita raMwari ndi@@ Jehovha . +Ndaka@@ bva nd@@ am@@ hanya kun@@ ou@@ dza shamwari dz@@ angu kuti , “ Kana mas@@ vika kumb@@ a man@@ h@@ eru , v@@ hur@@ ai muBhaibheri pana Pisarema 8@@ 3 : 18 kuti mu@@ one zita raMwari . ” +T@@ ing@@ at@@ oti ndi@@ po pand@@ akat@@ ang@@ ira kuparidza . +Ndaka@@ dzidza Bhaibheri nd@@ ik@@ ab@@ ha@@ bh@@ atidzwa muna 19@@ 41 . +Pas@@ ina nguva nd@@ akan@@ zi ndi@@ it@@ ise ch@@ idz@@ idzo che@@ bhuku che@@ ungano . +Ndaka@@ kurudzira amai , hanzvadzi dz@@ angu ne@@ van@@ in@@ ’@@ ina kuti va@@ uyewo , uye vakat@@ anga ku@@ uya . +Dzimwe nguva pa@@ vai@@ va@@ ona vachi@@ enda , va@@ im@@ hanya vo@@ va@@ dh@@ onz@@ a kusvikira va@@ vap@@ inza mum@@ ba . +Asi amai va@@ ib@@ va vang@@ o@@ buda ner@@ imwe d@@ ho@@ o , vo@@ enda ku@@ misangano . +Ndaka@@ bva nd@@ a@@ udza vakuru vakuru vacho kuti ndakanga nd@@ is@@ iri ku@@ zova mus@@ o@@ j@@ a . +Mut@@ ongi wacho akati : “ Kud@@ ai nd@@ ir@@ ini nd@@ inos@@ arudza kuti une m@@ hosva , nd@@ aiz@@ oti up@@ ike j@@ eri kwe@@ upenyu hw@@ ako hw@@ ese . +Nd@@ akap@@ indura kuti : “ Ch@@ ang@@ am@@ ire , ini nd@@ ait@@ o@@ fanira kun@@ zi muf@@ un@@ disi . +M@@ har@@ idzo dz@@ angu ndino@@ dz@@ ipa nd@@ ak@@ amira pam@@ ad@@ ho@@ o e@@ vanhu , uye ndaka@@ par@@ idza mashoko akanaka o@@ Umambo ku@@ vanhu vakawanda . ” +Mut@@ ongi aka@@ bva a@@ udza v@@ ed@@ are kuti : “ Ha@@ muna ku@@ uya pano ku@@ zo@@ ongorora kuti muk@@ omana uyu muf@@ un@@ disi here kana kuti ha@@ asi . +N@@ yaya ir@@ ipo nde@@ ye@@ kuti muk@@ omana uyu aka@@ bvuma kupinda muchi@@ u@@ to here kana kuti akaramba . ” +Nd@@ akany@@ engetera kuna Jehovha ndi@@ chit@@ i : “ H@@ and@@ ik@@ wan@@ isi kugara mu@@ chit@@ ok@@ isi kwem@@ akore mas@@ hanu . +M@@ ang@@ wana acho mag@@ ad@@ hi ak@@ and@@ iti ndi@@ bud@@ e im@@ omo , nd@@ ik@@ a@@ iswa m@@ aiva nevamwe vas@@ ungwa vakawanda . +Ndaka@@ famba ndichi@@ enda p@@ akanga p@@ ak@@ amira mumwe mus@@ ungwa aiva z@@ ir@@ ume r@@ ir@@ ef@@ u r@@ akasimba , tik@@ ab@@ va t@@ amira t@@ ese pa@@ hw@@ in@@ do t@@ akat@@ ar@@ isa pan@@ z@@ e . +Ak@@ andi@@ bvunza kuti , “ K@@ o iwe sho@@ ti , waka@@ par@@ ei ? ” +Ndaka@@ bva nd@@ ati , “ Nd@@ iri mumwe we@@ Zvapupu zvaJehovha . ” +Nd@@ ik@@ ati , “ Zvapupu zvaJehovha ha@@ zvi@@ endi ku@@ hondo uye ha@@ zvi@@ ur@@ ay@@ i vanhu . ” +Ndaka@@ bva nd@@ ati , “ A@@ iwa ha@@ zvin@@ a . ” +Ak@@ ab@@ va ati , “ K@@ wem@@ akore 15 , nd@@ aiva mune rimwe j@@ eri , uye ndaka@@ verenga mamwe mabhuku enyu ndiri im@@ omo . ” +Nd@@ ai@@ vawo pa@@ Zvapupu zv@@ akas@@ ung@@ irwa kus@@ ap@@ ind@@ ira mune zv@@ enyika ku@@ A@@ sh@@ land , K@@ ent@@ uc@@ k@@ y +Izvi zvai@@ ita kuti ti@@ par@@ idz@@ e zv@@ akar@@ ong@@ eka . +N@@ da@@ in@@ et@@ seka nezv@@ ev@@ amwe vaiva kumb@@ a ne@@ kuti Baba vakanga van@@ di@@ udza kuti , “ Kana nd@@ ik@@ ap@@ edza ne@@ we , vamwe v@@ ese hava@@ z@@ ond@@ in@@ et@@ se . ” +Asi pand@@ aka@@ zo@@ budiswa mu@@ j@@ eri , pane chimwe chinhu ch@@ ak@@ and@@ isham@@ isa . +Nd@@ akati , “ H@@ or@@ a@@ iti , asi hand@@ isi kuz@@ op@@ inda muchi@@ u@@ to . ” +Nd@@ akataura pfungwa iri pana 2 Timoti 2 : 3 nd@@ ik@@ ati , “ Nd@@ it@@ ori mus@@ o@@ j@@ a wa@@ Kristu . ” +Ak@@ amb@@ oti z@@ i@@ i , ndoku@@ bva az@@ oti , “ En@@ da h@@ ako . ” +Nguva pfupi izvi zva@@ itika , nd@@ akap@@ inda mus@@ angano we@@ vanoda kushanda pa@@ Bh@@ et@@ eri pa@@ g@@ ungano raka@@ itwa ku@@ C@@ inc@@ in@@ n@@ ati , O@@ hi@@ o . +Nd@@ akas@@ hand@@ awo pa@@ Dz@@ imba Dz@@ em@@ ag@@ ungano dze@@ ku@@ New York C@@ ity . +Ndaka@@ va nes@@ hamwari dzakawanda pa@@ Bh@@ et@@ eri uye muungano . +Nd@@ in@@ e@@ wo mashoko mas@@ homa echi@@ M@@ and@@ ar@@ in Chin@@ ese and@@ aka@@ dzidz@@ ira , uye ndino@@ farira kupar@@ idzira mu@@ mug@@ wagwa ku@@ vanhu vanot@@ aura chi@@ Chin@@ ese . +Dzimwe nguva pand@@ ino@@ par@@ idza m@@ ang@@ wan@@ ani ndino@@ gona kupa vanhu magazini anos@@ vika 30 kana 40 . +Ndi@@ chi@@ par@@ idzira vanhu vechi@@ Chin@@ ese ndiri mu@@ Bro@@ ok@@ ly@@ n , New York +Nd@@ akat@@ omb@@ o@@ it@@ awo sh@@ an@@ yo ye@@ kudz@@ okera ku@@ munhu aiva ku@@ Ch@@ ina . +Ak@@ at@@ ora magazini acho ndo@@ kun@@ di@@ udza kuti anonzi K@@ ati@@ e . +Ku@@ bvira ipapo , p@@ ese pa@@ ain@@ di@@ ona ai@@ uya kuz@@ ot@@ aura n@@ eni . +Ndaka@@ mudz@@ idzisa ma@@ zita e@@ Chir@@ ungu em@@ ich@@ ero ne@@ em@@ ir@@ iwo , uye ai@@ bva adz@@ okor@@ ora ma@@ zita acho ach@@ ind@@ it@@ evedzera . +Ndaka@@ muts@@ anang@@ urira mamwe ma@@ vh@@ esi e@@ Bhaibheri , uye akat@@ ora bhuku ra@@ Bhaibheri R@@ in@@ omb@@ o@@ dzidz@@ is@@ ei ? +T@@ ak@@ amb@@ or@@ amba tichi@@ kurukura kwem@@ av@@ h@@ iki mas@@ homa asi hat@@ ina ku@@ zo@@ on@@ an@@ azve . +V@@ h@@ iki r@@ akat@@ evera racho , aka@@ uya ak@@ and@@ it@@ amb@@ idza f@@ oni yake ndoku@@ bva ati : “ T@@ aura naye ku@@ Ch@@ ina . ” +Ndaka@@ bva nd@@ ati , “ H@@ and@@ ina munhu wand@@ ino@@ ziva ari ku@@ Ch@@ ina . ” +Asi akaramba ach@@ ind@@ im@@ an@@ ikidza , saka nd@@ akat@@ ambira f@@ oni yacho ndo@@ kuti : “ H@@ ell@@ o , nd@@ ini R@@ ob@@ is@@ on . ” +Munhu wacho aka@@ bva ad@@ a@@ ira achiti , “ R@@ ob@@ by , nd@@ ini K@@ ati@@ e . +Ndino@@ kumb@@ irawo kuti u@@ mudz@@ idz@@ ise . ” +Nd@@ akap@@ indura kuti : “ K@@ ati@@ e , ndi@@ cha@@ edza ne@@ pand@@ inogona n@@ apo . +W@@ aita h@@ ako ne@@ kun@@ di@@ udza kwa@@ uri . ” +T@@ ap@@ edza kutaura paf@@ oni , ndaka@@ kurukura ne@@ mun@@ in@@ ’@@ ina wa@@ K@@ ati@@ e asi nd@@ iko k@@ aiva ke@@ ku@@ pedzisira kutaura naye . +Kana kuri kuda kwaMwari , hama nes@@ hamwari dz@@ angu dzaka@@ fa dz@@ icha@@ muts@@ wa munyika itsva . +N@@ yaya ino pa@@ ya@@ inge ich@@ iri kuny@@ orwa kuti i@@ zo@@ budiswa , Hama C@@ or@@ w@@ in R@@ ob@@ is@@ on vakafa vakatendeka kuna Jehovha . +Zvaka@@ dzidz@@ wa na@@ Abra@@ hamu uye zvakaitika muupenyu hwake zv@@ akas@@ imbisa sei kutenda kwake ? +Abra@@ hamu aka@@ it@@ ei kuti ar@@ ambe ari shamwari yaMwari ? +Ung@@ at@@ evedzera sei Abra@@ hamu pa@@ kus@@ imbisa us@@ hamwari hw@@ ako naJehovha ? +1 , 2 . ( a ) Tino@@ ziva sei kuti vanhu vanogona kuva shamwari dza@@ Mwari ? +3 , 4 . ( a ) T@@ s@@ anangura kuti nd@@ oup@@ i mu@@ edzo ung@@ ango@@ daro wa@@ iva mukuru pane yose y@@ akas@@ angana na@@ Abra@@ hamu . ( b ) Nei Abra@@ hamu akanga aka@@ zvipira ku@@ b@@ ayira Is@@ aka ? +Abra@@ hamu ang@@ ango@@ daro aka@@ dzidza sei ne@@ zvaJehovha , uye zva@@ aka@@ dzidza izvozvo zvaka@@ mu@@ batsira sei ? +Zvi@@ i zvino@@ ti@@ batsira kuti tis@@ imb@@ ise us@@ hamwari hwedu naJehovha ? +9 , 10 . ( a ) Chii chino@@ diwa kuti us@@ hamwari hus@@ imb@@ e ? +( b ) Chii chin@@ oratidza kuti Abra@@ hamu a@@ ik@@ oshesa us@@ hamwari hwake naJehovha uye aiita kuti hur@@ ambe hw@@ akasimba ? +Abra@@ hamu a@@ ik@@ oshesa us@@ hamwari hwake naJehovha uye aiita kuti hur@@ ambe hw@@ akasimba . +Chii chaka@@ ita kuti Abra@@ hamu an@@ et@@ se@@ k@@ e nezve@@ S@@ od@@ homa ne@@ G@@ om@@ ora , uye Jehovha aka@@ mu@@ batsira sei ? +12 , 13 . ( a ) Zvinhu zvaka@@ dzidz@@ wa na@@ Abra@@ hamu uye zvakaitika muupenyu hwake zvaka@@ zo@@ mu@@ batsira sei ? +( b ) Chii chin@@ oratidza kuti Abra@@ hamu ai@@ vimba naJehovha ? +Mat@@ ambudziko ap@@ i a@@ uno@@ s@@ angana na@@ wo pa@@ kush@@ umira Jehovha , uye zvaka@@ itwa na@@ Abra@@ hamu zv@@ inga@@ kubatsira sei ? +Abra@@ hamu na@@ S@@ ara vano@@ dzidza ne@@ zvaJehovha uye vanot@@ anga ku@@ mun@@ amata +Abra@@ hamu ano@@ fa “ any@@ atso@@ kura , ak@@ we@@ gura uye ag@@ uts@@ ikana ” +Nei ting@@ ava nechokwadi chokuti Abra@@ hamu haana kumb@@ o@@ ona se@@ kuti akanga at@@ amb@@ isa nguva yake nokut@@ eerera Jehovha ? +W@@ ats@@ unga kuit@@ ei , uye ti@@ cha@@ kuru@@ kure@@ i mun@@ yaya inot@@ evera ? +Kur@@ amba ti@@ ch@@ idz@@ idza ne@@ zvaJehovha kuch@@ at@@ ibatsira kuti ti@@ mu@@ te@@ er@@ ere uye tir@@ atidz@@ e kuti taka@@ vimbika kwaari . +( Verenga VaHebheru 6 : 10 - 12 . ) +Mun@@ yaya inot@@ evera , ti@@ cha@@ kurukura nezv@@ ev@@ amwe vanhu vat@@ atu vakatendeka vaka@@ va shamwari dza@@ Mwari . +T@@ ing@@ adz@@ idz@@ ei pa@@ us@@ hamwari hwa@@ iva na@@ R@@ ute naMwari ? +Chii chaka@@ ita kuti Mambo He@@ z@@ ek@@ iya ave shamwari ye@@ pedyo yaJehovha ? +A@@ ma@@ i va@@ Jesu , Mar@@ iya vaiva ne@@ unhu h@@ upi hwaka@@ va@@ batsira kuti vave shamwari yaJehovha Mwari ? +1 - 3 . ( a ) S@@ ei ti@@ ine chokwadi che@@ kuti tinogona kuva shamwari dza@@ Mwari ? +( b ) Ndi@@ vana@@ ani v@@ ati@@ cha@@ kurukura nezv@@ avo mun@@ yaya ino ? +Ch@@ is@@ arudzo chipi chaka@@ oma chai@@ fanira kuitwa na@@ R@@ ute , uye nei zvakanga zvaka@@ mu@@ om@@ era kus@@ arudza ? +( a ) Ch@@ is@@ arudzo chipi ch@@ akanaka chaka@@ itwa na@@ R@@ ute ? +( b ) Nei B@@ ho@@ azi akati R@@ ute akap@@ ot@@ era muma@@ pap@@ iro a@@ Jehovha ? +Munhu anenge achi@@ ze@@ za ku@@ zvit@@ sa@@ urira kuna Jehovha anofanira kufunga nezv@@ ei ? +9 , 10 . ( a ) Chii chai@@ gona kuita kuti He@@ z@@ ek@@ iya ats@@ am@@ w@@ ire Jehovha ? +( b ) Nei tis@@ inga@@ faniri kuts@@ am@@ wira Mwari ? +( c ) Nei tis@@ inga@@ faniri kufunga kuti zvinhu zvatino@@ ita muupenyu zvino@@ bva pa@@ kuti t@@ akar@@ erwa sei ? +V@@ echi@@ d@@ iki vakawanda vaka@@ bvuma chokwadi pasinei ne@@ kuti vakar@@ erwa mumhuri dzaka@@ ita sei ( Ona nd@@ ima 9 , 10 ) +Chii chaka@@ ita kuti He@@ z@@ ek@@ iya ave mambo we@@ Judha akanaka chaizvo ? +( Verenga 2 M@@ adz@@ imambo 18 : 5 , 6 . ) +Va@@ Kristu vakawanda mazuva ano vakat@@ evedzera sei He@@ z@@ ek@@ iya ? +Chii chai@@ gona kuita kuti basa raka@@ piwa Mar@@ iya ri@@ mu@@ om@@ ere , asi akap@@ indura sei G@@ ab@@ ri@@ eri ? +Chii chin@@ oratidza kuti Mar@@ iya ain@@ y@@ ats@@ ot@@ eerera ? +Mar@@ iya akat@@ eerera zvose zva@@ ai@@ udzwa , aka@@ zvi@@ chengeta mumwoyo , uye aka@@ zvi@@ fungisisa . — Verenga Ruka 2 : 16 - 19 , 4@@ 9 , 5@@ 1 . +Mashoko akat@@ aurwa na@@ Mar@@ iya anor@@ atidz@@ ei ? +T@@ ing@@ at@@ evedzera sei kutenda kwa@@ Mar@@ iya ? +Kana tik@@ at@@ evedzera vanhu vaiva ne@@ kutenda vanot@@ aurwa muBhaibheri , ti@@ cha@@ wan@@ ei ? +F@@ UN@@ G@@ A nezve@@ zuva ra@@ waka@@ fara chaizvo muupenyu hw@@ ako . +I@@ zuva ra@@ waka@@ ch@@ ata here kana kuti raka@@ berekwa mwana wako wo@@ kutanga ? +Zv@@ imwe uri kuf@@ ara chaizvo mubasa raJehovha ku@@ bvira pa@@ waka@@ bhabhatidzwa . +Zvi@@ i zving@@ at@@ ibatsira kuti tir@@ ambe ti@@ chis@@ humira Jehovha tichi@@ fara ? +Jesu akati : “ U@@ ya@@ i kwand@@ iri , imi m@@ ose muno@@ sh@@ anda zvaka@@ oma uye m@@ akar@@ em@@ erwa , uye ini ndi@@ cha@@ kuz@@ or@@ odz@@ ai . +T@@ a@@ kur@@ ai j@@ oko r@@ angu mudz@@ idz@@ e kwand@@ iri , nokuti ndiri muny@@ oro uye nd@@ ine mwoyo uno@@ zvininipisa , uye mu@@ cha@@ wana zor@@ oro rem@@ weya y@@ enyu . +T@@ inos@@ humira Mwari wedu ak@@ ati@@ pa upenyu uye ano@@ fara . +F@@ unga nezva@@ H@@ é@@ c@@ tor uyo akas@@ humira Jehovha ari mut@@ ariri ano@@ f@@ ambira kwem@@ akore 40 . +Ano@@ ti : “ Kunyange zvazvo ndi@@ chir@@ wadz@@ iwa ne@@ kudz@@ ikira kuri kuita ut@@ ano hwe@@ mudzimai wangu , uye zvi@@ chir@@ amba zvichi@@ oma ku@@ much@@ enget@@ a , hand@@ isi ku@@ bvumira kuti izvozvo zvin@@ d@@ it@@ adz@@ ise kush@@ umira Mwari wechokwadi ndichi@@ fara . +Ku@@ ziva kuti upenyu hw@@ angu hwaka@@ bva kuna Jehovha , uyo akas@@ ika vanhu a@@ ine chinangwa , kunoita kuti ndi@@ mu@@ de zvaka@@ dz@@ ama uye ndi@@ mush@@ um@@ ire nem@@ woyo wose . +Kuti nd@@ ir@@ ambe ndichi@@ fara , ndino@@ edza kuramba ndi@@ ch@@ ish@@ ingaira mubasa re@@ kuparidza uye nd@@ inor@@ amba ndichi@@ funga zv@@ ati@@ cha@@ it@@ irwa ne@@ Umambo hwaMwari . ” +Jehovha ak@@ ati@@ pa chi@@ bayiro ch@@ er@@ udz@@ ikin@@ uro kuti tik@@ wan@@ ise kuf@@ ara muupenyu . +Bhaibheri rinoti : “ Mwari aka@@ da nyika kwazvo zvokuti akapa Mwanakomana wake aka@@ berekwa ari mumwe oga , kuti munhu wose anot@@ enda ma@@ ari are@@ ge kupar@@ adzwa asi ave n@@ oupenyu husingaperi . ” +Jes@@ ú@@ s akas@@ iya basa ra@@ aiita uye akas@@ humira Jehovha kwem@@ akore achi@@ fara +N@@ da@@ ing@@ o@@ da kuva nem@@ ari yakawanda . +Ndaka@@ zo@@ dzidza ne@@ zvaJehovha uye zva@@ akaita kuti ap@@ e Mwanakomana wake wa@@ anoda kuti adz@@ ikin@@ ure vanhu . +Nd@@ akatanga kuva nechi@@ do ch@@ akasimba choku@@ mush@@ umira . +Saka ndaka@@ zvit@@ sa@@ urira kuna Jehovha , nd@@ ik@@ as@@ arudza ku@@ si@@ ya basa p@@ ak@@ amb@@ ani y@@ and@@ akanga nd@@ ava nemakore 28 ndi@@ chis@@ handa uye nd@@ akap@@ inda mubasa r@@ enguva yakazara . ” +U@@ chiri ku@@ yeuka here kuti upenyu hw@@ ako hw@@ akanga hw@@ akaita sei us@@ ati wa@@ va kuziva ne@@ zvaJehovha ? +Muapostora Pauro aka@@ yeuch@@ idza vaKristu vaiva mu@@ Roma kuti va@@ imb@@ ova “ var@@ anda vechi@@ vi ” asi vaka@@ zova “ var@@ anda vo@@ kururama . ” +“ Ndaka@@ zot@@ anga kuny@@ atso@@ fara muupenyu hw@@ angu pand@@ akatanga kush@@ umira Jehovha . ” ​ — J@@ aim@@ e +Kuti are@@ ge mar@@ aram@@ iro a@@ aiita , J@@ aim@@ e aka@@ kumbira Jehovha kuti a@@ mu@@ bats@@ ire ku@@ bvuma kuti ar@@ iko . +J@@ aim@@ e anoti , “ Zvis@@ homa nezv@@ is@@ homa , nd@@ akatanga kuona kuti kuna Baba vane rudo uye Mwari ane ng@@ oni . +Kut@@ evedzera zvinodiwa naJehovha kuri kund@@ idz@@ ivirira . +Ndaka@@ zot@@ anga kuny@@ atso@@ fara muupenyu hw@@ angu pand@@ akatanga kush@@ umira Jehovha . ” +J@@ on@@ at@@ ani mwanakomana wa@@ Mambo Sa@@ uro akaratidza sei kuti akanga aka@@ vimbika kuna Jehovha ? +T@@ ing@@ ar@@ atidza sei kuti taka@@ vimbika kuna Mwari p@@ atino@@ ona se@@ kuti munhu ane masimba haana kuk@@ odzera kuti ti@@ mu@@ rem@@ ek@@ edz@@ e ? +T@@ ing@@ ar@@ atidza sei kuti taka@@ vimbika kuna Jehovha kana vamwe vanhu vakat@@ adza kut@@ inz@@ wisisa kana kuti vakat@@ ib@@ ata zvisina kunaka ? +Nei us@@ hamwari hwa@@ Dhavhidhi na@@ J@@ on@@ at@@ ani huri muenzaniso w@@ akanaka we@@ kuratidza ku@@ vimbika ? +Chii cha@@ iny@@ anya ku@@ kosha kuna J@@ on@@ at@@ ani kupfuura ku@@ vimbika kuna Dhavhidhi , uye tino@@ ziva sei izvozvo ? +( a ) Chii chi@@ cha@@ ita kuti tif@@ are uye ti@@ g@@ uts@@ ik@@ ane ? +Nei zva@@ inge zvaka@@ oma kuti vaIsraeri var@@ ambe vaka@@ vimbika kuna Jehovha pa@@ it@@ onga Sa@@ uro ? +Chii chin@@ oratidza kuti J@@ on@@ at@@ ani akaramba aka@@ vimbika kuna Jehovha ? +P@@ at@@ inenge ti@@ chir@@ emek@@ edza vane masimba t@@ inenge ti@@ chir@@ atidza sei kuti taka@@ vimbika kuna Mwari ? +Chii chaka@@ batsira J@@ on@@ at@@ ani kus@@ arudza munhu wa@@ aifanira kuramba aka@@ vimbika kwaari ? +Ku@@ da Mwari kuno@@ ti@@ batsira sei kuti tis@@ arudz@@ e kuramba taka@@ vimbika kwaari ? +Ku@@ vimbika kuna Mwari kuno@@ ti@@ batsira sei pat@@ inos@@ angana ne@@ zvinetso mumhuri ? +Kana imwe hama ik@@ at@@ ib@@ ata zvisina kunaka tinofanira kuita sei ? +N@@ de@@ pap@@ i p@@ atino@@ fanira kuramba taka@@ vimbika kuna Mwari , tis@@ ing@@ ango@@ fung@@ i zvakat@@ in@@ ak@@ ira chete ? +[ 1 ] ( nd@@ ima 9 ) M@@ amwe ma@@ zita aka@@ chinj@@ wa . +Chii chaka@@ ita kuti J@@ on@@ at@@ ani a@@ ite zv@@ akasiyana ne@@ zvaka@@ itwa na@@ A@@ bh@@ in@@ eri ? +Un@@ hu h@@ upi huno@@ ti@@ batsira kuti tive vaka@@ vimbika kuna Mwari , uye ting@@ ar@@ atidza sei unhu i@@ hwo@@ hwo ? +Dhavhidhi akaratidza sei kuti aka@@ vimbika kuna Mwari ? +( a ) Dhavhidhi akaratidza sei kuti akanga aka@@ vimbika kuna Mwari ? +( b ) N@@ de@@ zv@@ ipi zvimwe zv@@ ati@@ cha@@ ongorora mun@@ yaya ino ? +Tino@@ dzidz@@ ei paku@@ k@@ anganisa kwaka@@ itwa na@@ A@@ bh@@ is@@ ha@@ i ? +Kunyange zvazvo tichi@@ fanira kuratidza kuti taka@@ vimbika ku@@ hama nes@@ hamwari dzedu , nei tichi@@ fanira kung@@ warira ? +Imwe hanzvadzi y@@ akaramba sei yaka@@ vimbika kuna Mwari zvinhu pa@@ zva@@ inge zvaka@@ oma ? +Un@@ hu h@@ upi hu@@ chat@@ ibatsira kuti tiv@@ imb@@ ike kuna Mwari ? +Tino@@ dzidz@@ ei pane zvakaitika kuna A@@ bh@@ in@@ eri , Ab@@ s@@ ar@@ om@@ u , uye B@@ har@@ uk@@ i ? +Asi iwe , un@@ or@@ amba uchi@@ zvit@@ s@@ vak@@ ira zvinhu zvikuru . +T@@ s@@ anangura kuti nei tis@@ ing@@ ak@@ wan@@ isi kuramba taka@@ vimbika kuna Mwari kana ti@@ ching@@ ot@@ svaka zvakat@@ in@@ ak@@ ira . +Nd@@ akany@@ engetera k@@ akawanda uye nd@@ ait@@ o@@ ch@@ ema , asi ndaka@@ z@@ ore@@ ga kuny@@ or@@ er@@ ana naye . +Dhavhidhi pa@@ akaita chivi , N@@ at@@ ani akaramba sei aka@@ vimbika kwaari uye kuna Mwari ? +Ung@@ ar@@ atidza sei kuti waka@@ vimbika kuna Jehovha uyewo kush@@ am@@ wari kana hama yako ? +Nei H@@ us@@ ha@@ i aifanira kush@@ inga kuti ar@@ ambe aka@@ vimbika kuna Mwari ? +Nei tichi@@ fanira kuva ne@@ ush@@ ingi kuti tir@@ ambe taka@@ vimbika kuna Jehovha ? +Nd@@ akany@@ engetera kuti ndi@@ ve ne@@ ush@@ ingi hwe@@ kuramba ndichi@@ ita zvand@@ akanga nd@@ as@@ arudza . +Iye zvino v@@ ati chinj@@ ei , uye nd@@ ava kup@@ ota ndichi@@ vas@@ hanyira . ” — Verenga Zvirevo 29 : 25 . +[ 1 ] ( nd@@ ima 7 ) M@@ amwe ma@@ zita aka@@ chinj@@ wa . +N@@ Y@@ A@@ Y@@ A IR@@ I P@@ AK@@ A@@ V@@ H@@ A | N@@ E@@ I J@@ ES@@ U AK@@ AT@@ AM@@ B@@ UR@@ A N@@ D@@ O@@ KU@@ F@@ A ? +Mu@@ chir@@ imo cha@@ 33 C.E . , Jesu we@@ ku@@ N@@ az@@ ar@@ eta aka@@ ur@@ ay@@ iwa . +A@@ inge ap@@ om@@ erwa m@@ hosva ye@@ kup@@ and@@ ukira hurumende , ndoku@@ ro@@ hwa zve@@ uts@@ in@@ ye , achi@@ bva az@@ or@@ over@@ erwa pa@@ d@@ anda . +Asi Mwari aka@@ mu@@ mutsa kuti ar@@ ar@@ ame zv@@ ekare uye aka@@ enda kudenga pashure pem@@ azuva 40 . +N@@ yaya iyi ino@@ wan@@ ika mum@@ abhuku m@@ ana e@@ E@@ vh@@ angeri ari mu@@ Magwaro e@@ chiKristu echi@@ Giriki , an@@ onyanya ku@@ zivikanwa se@@ T@@ est@@ am@@ ende I@@ ts@@ va . +Asi kana zvinhu izvi zv@@ akany@@ atso@@ itika , rem@@ ang@@ wana re@@ vanhu vose kus@@ anganisira r@@ ako , rin@@ enge raka@@ jeka . +Saka zvino@@ taurwa nem@@ abhuku e@@ E@@ vh@@ angeri zvakaitika here kana kuti nde@@ zve@@ kun@@ ye@@ pa ? +N@@ yaya dziri mum@@ abhuku e@@ E@@ vh@@ angeri ha@@ dz@@ isi ng@@ ano . Dz@@ akarurama uye dzin@@ ony@@ ats@@ oratidza zvakaitika . +Somuenzaniso , mabhuku acho ane ma@@ zita akawanda en@@ zvimbo dzino@@ to@@ zivikanwa kuti dz@@ ir@@ iko uye munhu anogona kut@@ odz@@ is@@ hanyira mazuva ano . Ano@@ taura nezve@@ vanhu chai@@ vo vak@@ amb@@ or@@ arama . +Van@@ ony@@ ora zvakaitika kare vanor@@ atidz@@ awo kuti vanhu ava vak@@ ambo@@ vako . — Ruka 3 : 1 , 2 , 23 . +Van@@ ony@@ ora zvakaitika kare vakar@@ arama makore ari pakati pa@@ 1 C.E . - 2@@ 00 C.E . v@@ akany@@ or@@ awo nezva@@ Jesu . +* N@@ zira ya@@ aka@@ ur@@ ay@@ iwa nayo iyo ino@@ taurwa mum@@ abhuku e@@ E@@ vh@@ angeri ino@@ ender@@ ana nenzira dza@@ is@@ handiswa neva@@ Roma paku@@ uraya vanhu mazuva iwayo . +Uye@@ wo , nyaya dz@@ ir@@ imo dzino@@ taurwa se@@ zv@@ adz@@ iri pasina ku@@ van@@ za zvimwe , dzi@@ chit@@ oratidza zvimwe zva@@ ik@@ angan@@ iswa ne@@ vadzidzi va@@ Jesu . +Zv@@ ose izvi zvin@@ ony@@ ats@@ oratidza kuti vany@@ ori ve@@ E@@ vh@@ angeri pa@@ va@@ iny@@ ora nezva@@ Jesu va@@ iny@@ ora zvinhu zv@@ akarurama . +V@@ akawanda vano@@ bvuma kuti Jesu ak@@ amb@@ or@@ arama aka@@ zo@@ fa , asi vamwe vavo havana chokwadi kuti aka@@ muts@@ wa . +Kunyange va@@ apostora vake chai@@ vo havana ku@@ bvuma pa@@ vakat@@ anga kunzwa kuti akanga a@@ muts@@ wa . +I@@ vo pamwe chete nevamwe vadzidzi vaka@@ zo@@ bvuma pa@@ vaka@@ ona Jesu panguva dz@@ akasiyana - siyana pashure pe@@ kunge a@@ muts@@ wa . +P@@ amwe pa@@ cho aka@@ onekwa nevanhu vanop@@ fuura 5@@ 00 . — 1 VaKorinde 15 : 6 . +V@@ adz@@ idzi vaka@@ par@@ idza ne@@ ush@@ ingi nezve@@ ku@@ muts@@ wa kwa@@ Jesu ku@@ vanhu vose kunyange kune vaya vakanga va@@ mu@@ uraya , pasinei ne@@ kuti izvi zvai@@ gona kuita kuti vas@@ ung@@ we uye va@@ ur@@ ay@@ iwe . +V@@ adz@@ idzi v@@ ese i@@ vavo vang@@ ad@@ ai vaka@@ va ne@@ ush@@ ingi hw@@ akadaro here ku@@ dai va@@ inge vasina chokwadi che@@ kuti Jesu a@@ inge a@@ muts@@ wa ? +Ku@@ ziva kuti Jesu aka@@ muts@@ wa zvechokwadi nd@@ iko kwai@@ ita kuti vanhu va@@ de kuva vaKristu kare uye iye zvino . +M@@ any@@ or@@ er@@ wo aka@@ itwa nh@@ or@@ oondo dziri mum@@ abhuku e@@ E@@ vh@@ angeri idzo dzino@@ taura nezve@@ kuf@@ a uye ku@@ muts@@ wa kwa@@ Jesu , anony@@ ats@@ oratidza kuti nd@@ edz@@ echokwadi . +U@@ k@@ any@@ atso@@ verenga nh@@ or@@ oondo idzi ucha@@ ona kuti zvinhu izvi zv@@ akany@@ atso@@ itika . +U@@ ch@@ any@@ atso@@ va nechokwadi nazvo kana uk@@ anz@@ wisisa zvik@@ onzero zvakaita kuti zvinhu izvozvo zvi@@ it@@ ike . +T@@ ac@@ it@@ us , uyo aka@@ berekwa mun@@ enge muna 5@@ 5 C.E . , akanyora kuti “ Kristu , p@@ aka@@ bva zita rokuti [ vaKristu ] , akat@@ ong@@ erwa rufu ne@@ mumwe wem@@ ag@@ av@@ h@@ una edu , P@@ on@@ di@@ yo P@@ ir@@ ato , T@@ ib@@ her@@ iyo pa@@ aiva mambo . ” +V@@ am@@ wewo vanot@@ aura nezva@@ Jesu nde@@ vanot@@ evera : Su@@ et@@ on@@ i@@ us ( akar@@ arama makore ari pakati pa@@ 1 C.E . - 1@@ 00 C.E . ) ; munyori we@@ zvakaitika kare wechi@@ Judha ain@@ zi Josep@@ h@@ us ( akar@@ arama makore e@@ kuma@@ 1@@ 00 C.E . ) ; n@@ ag@@ av@@ h@@ una we@@ Bh@@ it@@ in@@ iya ain@@ zi P@@ l@@ in@@ y the Y@@ oun@@ g@@ er ( akar@@ arama kutanga kwem@@ akore e@@ kuma@@ 1@@ 00 C.E . ) . +Uye@@ wo sezvo vanhu vakawanda va@@ iv@@ enga Jesu , hat@@ ing@@ at@@ aris@@ iri kuti va@@ iz@@ ony@@ ora chero chinhu ch@@ akanaka chai@@ zo@@ ita kuti vanhu vat@@ ende ma@@ ari . +Mumwe we@@ va@@ apostora va@@ Jesu ain@@ zi Petro achit@@ aura nezve@@ ku@@ muts@@ wa kwa@@ Jesu akati : “ Mwari aka@@ mutsa I@@ ye@@ yu pa@@ zuva re@@ chit@@ atu aka@@ mu@@ bvumira kuti a@@ onek@@ we , kwete nevanhu vose , asi nezv@@ apupu zvaka@@ f@@ ano@@ gadz@@ wa naMwari , is@@ u vacho , taka@@ dya no@@ kun@@ wa naye pashure po@@ kunge a@@ muts@@ wa kubva ku@@ vakafa . ” +E@@ vh@@ angeri ya@@ Mateu ino@@ ti@@ udza kuti va@@ vengi va@@ Jesu pa@@ v@@ akanzwa nezve@@ ku@@ muts@@ wa kwake , vaka@@ edza kuita kuti nyaya yacho is@@ aziv@@ ikanwa . ​ —@@ ⁠ Mateu 28 : ​ 11 -@@ ⁠ 15 . +Izvi zvin@@ oreva here kuti Jesu aida kuti vanhu vas@@ az@@ iva nezve@@ ku@@ muts@@ wa kwake ? +Kw@@ ete , nokuti Petro ano@@ end@@ erera mberi achiti : “ Ak@@ at@@ ir@@ ayira kupar@@ idzira vanhu noku@@ p@@ up@@ ura kwazvo kuti U@@ yu ndiye aka@@ gadz@@ wa naMwari kuti ave mut@@ ongi we@@ vap@@ enyu ne@@ vakafa . ” +N@@ anh@@ asi vaKristu ve@@ chokwadi va@@ chiri kuparidza . ​ —@@ ⁠ Mabasa 10 : ​ 42 . +‘ Ch@@ iv@@ i chaka@@ pinda munyika no@@ munhu mumwe chete [ Ad@@ hamu ] uye rufu rw@@ akap@@ inda nechi@@ vi . ’ — VaRoma 5 : 12 . +Kana uk@@ abv@@ unz@@ wa kuti , “ Uno@@ da kurarama ne@@ kus@@ ingaperi here ” uno@@ ti@@ i ? +Vanhu vakawanda vanogona kutaura kuti vanoda , asi vano@@ funga kuti izvozvo ha@@ zvi@@ fe zvakaitika . +V@@ anoti kuf@@ a kwa@@ gara kun@@ ongo@@ itika nokuti ndi@@ wo mag@@ umo edu t@@ ose . +Asi ng@@ at@@ iti@@ i mubvunzo wacho uno@@ p@@ ind@@ ur@@ udzwa zvo@@ bva zv@@ an@@ zi , “ Uno@@ da kuf@@ a here ? ” +K@@ azhinji vanhu vakawanda vanop@@ indura kuti ai@@ wa . +Bhaibheri rin@@ oratidza kuti Mwari akas@@ ika vanhu va@@ ine chi@@ do che@@ kurarama . +R@@ inot@@ oti “ aka@@ is@@ awo nguva ising@@ ag@@ umi mumwoyo ma@@ vo . ” ​ — Mup@@ ar@@ idzi 3 : 11 . +Asi chokwadi chir@@ ipo nde@@ che@@ kuti iye zvino vanhu ha@@ v@@ asi kurarama ne@@ kus@@ ingaperi . +Uye Mwari ane zva@@ akaita here kuti ag@@ adz@@ ir@@ ise dambudziko racho ? +Bhaibheri rine mh@@ induro dzin@@ ony@@ aradza uye dzino@@ ti@@ udza zvakaita kuti Jesu at@@ amb@@ ure kusvika pa@@ kuf@@ a . +Zv@@ it@@ sa@@ uko zvit@@ atu zve@@ kutanga zve@@ bhuku re@@ Bhaibheri ra@@ Genes@@ isi zvino@@ ti@@ udza kuti Mwari akaita kuti vanhu ve@@ kutanga Ad@@ hamu na@@ E@@ vha vave ne@@ mukana we@@ kurarama upenyu husingaperi , uye aka@@ va@@ udza zva@@ vai@@ zo@@ fanira kuita kuti va@@ wane upenyu i@@ hwo@@ hwo . +Tino@@ bva ta@@ udzwa nezve@@ kut@@ adza kwa@@ vakaita kuteerera Mwari ndo@@ kur@@ asikirwa ne@@ mukana i@@ woyo . +N@@ yaya yacho ino@@ taurwa zviri nyore zve@@ kuti vakawanda vano@@ kurumidza ku@@ i@@ ona s@@ eng@@ ano . +Asi se@@ zvakaita mabhuku e@@ E@@ vh@@ angeri , bhuku ra@@ Genes@@ isi rine uch@@ apupu hun@@ oratidza kuti zviri mar@@ iri zv@@ akany@@ atso@@ itika . +Ad@@ hamu pa@@ akat@@ adza kuteerera zvaka@@ guma nei ? +Bhaibheri rino@@ p@@ indura ri@@ chit@@ i : “ Ch@@ iv@@ i zvach@@ akap@@ inda munyika no@@ munhu mumwe chete [ Ad@@ hamu ] uye rufu zvar@@ waka@@ pinda nechi@@ vi , sai@@ zvo@@ zvo@@ wo rufu rwaka@@ par@@ arira ku@@ vanhu vose nokuti vose vakanga vat@@ adza . ” +Izvi zvakaita kuti ar@@ as@@ ik@@ ir@@ we ne@@ mukana we@@ kurarama ne@@ kus@@ ingaperi uye aka@@ zo@@ fa . +Sezvo tiri vana vake , tino@@ berekwa ti@@ ine chivi . +Asi Mwari ane zva@@ akaita here kuti ag@@ adz@@ ir@@ ise dambudziko racho ? +Mwari akaita ur@@ ongwa hwe@@ kuti vana va@@ Ad@@ hamu , va@@ ve@@ zve ne@@ mukana w@@ akar@@ as@@ wa na@@ Ad@@ hamu we@@ kurarama ne@@ kus@@ ingaperi . +P@@ ana VaRoma 6 : 23 Bhaibheri rinoti , “ Mu@@ bayiro wechi@@ vi nd@@ irwo rufu . ” +Izvi zvin@@ oreva kuti rufu runo@@ k@@ onz@@ erwa nechi@@ vi . +N@@ es@@ u@@ wo tiri vat@@ adzi , nd@@ os@@ aka tichi@@ wana mu@@ bayiro wechi@@ vi , rufu . +Tino@@ berekwa ti@@ ine chivi nokuti Ad@@ hamu na@@ E@@ vha vakat@@ adza . +Mwari akaratidza rudo rwake ne@@ kut@@ uma Mwanakomana wake , Jesu , kuti at@@ in@@ un@@ ure ‘ pa@@ mu@@ bayiro wechi@@ vi . ’ +R@@ ufu rwa@@ Jesu rw@@ uno@@ ita kuti pa@@ ve ne@@ mukana we@@ kuwana upenyu huno@@ fadza husingaperi +Kus@@ at@@ eerera kwe@@ munhu mumwe chete a@@ inge asina chivi , Ad@@ hamu , kw@@ akak@@ onzera chivi ner@@ ufu kwat@@ iri . Saka kuti tin@@ un@@ ur@@ we par@@ ufu pa@@ i@@ diwa munhu asina chivi a@@ ik@@ wanisa kuteerera kusvika pa@@ kuf@@ a . +Bhaibheri rino@@ taura ne@@ zvazvo ri@@ chit@@ i : “ Va@@ zhinji zvav@@ aka@@ itwa vat@@ adzi nokuda kwoku@@ s@@ at@@ eerera kwo@@ munhu mumwe chete , sai@@ zvo@@ zvo@@ wo nokuda kwo@@ kuteerera kwo@@ munhu mumwe chete vazhinji vacha@@ itwa v@@ akarurama . ” +Ak@@ ab@@ va kudenga , akar@@ arama se@@ munhu asina chivi , ndo@@ kut@@ if@@ ira . +* Izvi zvinoita kuti Mwari ati@@ one se@@ vanhu v@@ akarurama uye zvino@@ ti@@ pa mukana we@@ kurarama upenyu husingaperi . +Nei Jesu aifanira kuf@@ a kuti izvi zvi@@ it@@ ike ? +Mwari W@@ em@@ as@@ imb@@ a@@ ose ais@@ ak@@ wanisa here kupa mura@@ y@@ iro we@@ kuti vana va@@ Ad@@ hamu var@@ ar@@ ame ne@@ kus@@ ingaperi ? +Kud@@ ai Mwari asina kuita zvai@@ ender@@ ana ne@@ mutemo wa@@ akanga apa pan@@ yaya iyi , vanhu vais@@ az@@ ova nechokwadi che@@ kuti ach@@ at@@ onga zvakanaka here dzimwe nyaya . +Somuenzaniso aiz@@ ot@@ onga zv@@ akarurama here pa@@ kus@@ arudza kuti nde@@ vap@@ i pa@@ vana va@@ Ad@@ hamu van@@ ok@@ odzera kuwana upenyu husingaperi ? +Vanhu vaig@@ ona ku@@ zo@@ vimba naye here kuti ano@@ zadz@@ isa zva@@ aka@@ vimb@@ isa ? +Kut@@ onga zv@@ akarurama kwaka@@ itwa naMwari kuti ati@@ p@@ on@@ ese kuno@@ ti@@ pa chi@@ vimbo che@@ kuti ach@@ ar@@ amba achi@@ ita zv@@ akarurama . +Mwari akas@@ handisa chi@@ bayiro cha@@ Jesu kuti ap@@ e vanhu mukana we@@ kuti var@@ ar@@ ame upenyu husingaperi mu@@ Par@@ adhiso panyika . +Ona mashoko a@@ Jesu ari pana Johani 3 : 16 anoti : “ Mwari aka@@ da nyika kwazvo zvokuti akapa Mwanakomana wake aka@@ berekwa ari mumwe oga , kuti munhu wose anot@@ enda ma@@ ari are@@ ge kupar@@ adzwa asi ave n@@ oupenyu husingaperi . ” +Saka chikuru ch@@ atino@@ ona pa@@ kuf@@ a kwa@@ Jesu nde@@ che@@ kuti Mwari anoda vanhu chaizvo . Tino@@ on@@ awo zvak@@ are kuti Mwari anot@@ onga zv@@ akarurama . +Asi nei Jesu aifanira kut@@ ambura uye kuf@@ a zvinor@@ wa@@ dza zvakadaro se@@ kur@@ ond@@ edz@@ erwa kwa@@ zvino@@ itwa mum@@ abhuku e@@ E@@ vh@@ angeri ? +Nemhaka ye@@ kuti Jesu akaramba akatendeka kusvikira pa@@ kuf@@ a , akany@@ ats@@ oratidza kuti D@@ hiy@@ abhorosi ait@@ aura nh@@ ema pa@@ akati vanhu ha@@ var@@ amb@@ i vakatendeka kana vari mum@@ at@@ ambudziko . +Mashoko iwayo anogona kunge akaita se@@ echokwadi sezvo Satani a@@ inge af@@ urira Ad@@ hamu , uyo akanga asina chivi , kuti at@@ adz@@ e . +Asi Jesu uyo akanga asina chivi se@@ zvakanga zvakaita Ad@@ hamu asati at@@ adza , akaramba akatendeka pasinei ne@@ kut@@ ambura zvikuru . +Saka Jesu akaratidza kuti ku@@ dai Ad@@ hamu aida h@@ ake aigona kunge akat@@ eerera Mwari . +Jesu akat@@ is@@ iy@@ ira muenzaniso we@@ kuti t@@ it@@ evedz@@ ere ne@@ kuts@@ ungirira kwa@@ akaita mu@@ edzo . +Mwari akapa Mwanakomana wake Jesu , mu@@ bayiro we@@ kuva ne@@ upenyu hus@@ ina mag@@ umo , ne@@ kuti akat@@ eerera zv@@ akakwana . +Jesu akaratidza zvatino@@ fanira kuita pa@@ akati : “ Kuti va@@ wane upenyu husingaperi , vanofanira kuramba vachi@@ wana zivo pamusoro p@@ enyu , imi Mwari wechokwadi chete , uye pamusoro p@@ ouya w@@ am@@ akat@@ uma , iye Jesu Kristu . ” ​ — Johani 17 : 3 . +V@@ ab@@ ud@@ isi vem@@ ag@@ az@@ ini ino van@@ oku@@ kumbira kuti udzidz@@ e ne@@ zvaJehovha , Mwari wechokwadi , uye nezve@@ Mwanakomana wake , Jesu Kristu . +V@@ e@@ Zvapupu zvaJehovha vari kwa@@ uno@@ gara vacha@@ fara ku@@ kubatsira kuita izvozvo . +Uno@@ g@@ on@@ awo kuwana mashoko ano@@ batsira uk@@ a@@ enda panzvimbo yedu ye@@ pa@@ I@@ nd@@ an@@ eti , w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g . +Ona chik@@ amu ch@@ akan@@ zi “ The H@@ ist@@ or@@ ical Ch@@ ar@@ ac@@ ter of Genesis , ” mu@@ bhuku rinonzi In@@ sight on the Scriptures , ” peji 9@@ 22 , raka@@ budiswa neZvapupu zvaJehovha . +Mwari pa@@ akat@@ am@@ isa upenyu hwe@@ Mwanakomana wake kubva kudenga hu@@ chi@@ enda mu@@ d@@ umb@@ u ra@@ Mar@@ iya , zvakaita kuti Mar@@ iya ave ne@@ pa@@ muviri , uye mudzimu mutsvene waMwari waka@@ dz@@ ivirira Jesu kuti as@@ at@@ ora chivi kubva kuna Mar@@ iya . ​ — Ruka 1 : 31 , 35 . +U@@ s@@ iku hwoku@@ pedzisira asati apa upenyu hwake , Jesu aka@@ ung@@ ana neva@@ apostora vake vakatendeka ndoku@@ bva at@@ anga Chir@@ angar@@ idzo ch@@ er@@ ufu rwake . +Ak@@ ati kwa@@ vari : “ R@@ amb@@ ai muchi@@ ita izvi mu@@ chin@@ di@@ yeuka . ” +V@@ achit@@ eerera mura@@ y@@ iro uyu , ve@@ Zvapupu zvaJehovha pasi rose van@@ oun@@ g@@ ana gore rimwe ner@@ imwe kuti va@@ ye@@ uke rufu rwa@@ Jesu pa@@ musi war@@ waka@@ itika . +G@@ ore rin@@ o , Chir@@ angar@@ idzo ch@@ er@@ ufu rwa@@ Jesu chi@@ cha@@ itwa musi we@@ Ch@@ it@@ atu , 23 Mar@@ ch , zuva r@@ any@@ ura . +Kup@@ inda mus@@ angano wacho ha@@ ku@@ bha@@ d@@ har@@ wi , uye hapana nd@@ iro yem@@ ari icha@@ f@@ amb@@ iswa . +T@@ ap@@ ota bvunza Zvapupu zvaJehovha zv@@ ek@@ wa@@ uno@@ gara nezv@@ enguva nen@@ zvimbo icha@@ it@@ irwa mus@@ angano wacho . +Kana kuti unogona kuenda panzvimbo yedu ye@@ pa@@ I@@ nd@@ an@@ eti , w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g . +UN@@ G@@ AT@@ I D@@ hiy@@ abhorosi . . . +U@@ ipi huri mumwoyo me@@ munhu here ? +D@@ hiy@@ abhorosi ak@@ amb@@ ot@@ aura naJesu ‘ achi@@ mu@@ edza . ’ +Pa@@ kutanga D@@ hiy@@ abhorosi aiva ng@@ irozi ts@@ vene asi “ haana kum@@ ira zv@@ akasimba mu@@ chokwadi . ” +Ak@@ ava mu@@ re@@ vi w@@ enhema , akap@@ and@@ ukira Mwari . +Dzimwe ng@@ irozi dzaka@@ batana na@@ Satani pa@@ kup@@ and@@ uka . — Zvakazarurwa 12 : 9 . +D@@ hiy@@ abhorosi ano@@ po@@ f@@ um@@ adza vanhu vakawanda kuti vas@@ az@@ iva kuti ar@@ iko . — 2 VaKorinde 4 : 4 . +V@@ AM@@ W@@ E V@@ AN@@ H@@ U V@@ AN@@ O@@ T@@ I man@@ ye@@ po kuti D@@ hiy@@ abhorosi anogona kuita kuti vanhu va@@ ite zva@@ anoda , u@@ ku@@ wo vamwe vanot@@ ya ku@@ gar@@ wa nema@@ dh@@ im@@ oni . +D@@ hiy@@ abhorosi ari kutonga pasi rose , asi ha@@ agoni kuita kuti vanhu vose va@@ ite zva@@ anoda . +D@@ hiy@@ abhorosi anos@@ handisa uny@@ eng@@ eri kuti at@@ sa@@ use vanhu vakawanda . — 2 VaKorinde 11 : 14 . +Dzimwe nguva vanhu vano@@ gar@@ wa nema@@ dh@@ im@@ oni . — Mateu 12 : 22 . +U@@ chi@@ batsirwa naMwari , unogona ku@@ kunda ‘ pa@@ kur@@ wisana na@@ D@@ hiy@@ abhorosi . ’ — Jakobho 4 : 7 . +“ Ndi@@ ani w@@ enyu anoti kana achi@@ da ku@@ vaka sh@@ ong@@ we asing@@ at@@ ang@@ i ag@@ ara pasi , over@@ enga zvinodiwa , kuti a@@ one kana a@@ ine zv@@ akakwana zvoku@@ i@@ pedza nazvo ? ” — R@@ U@@ K@@ A 14 : 28 . +Ku@@ kura kwe@@ munhu kuno@@ onekwa sei , uye Dhanieri akaratidza sei kuti akanga a@@ kura ? +Ung@@ az@@ iva sei kuti chis@@ arudzo ch@@ ako che@@ ku@@ bhabhatidzwa chiri kubva pam@@ woyo ? +Ku@@ zvit@@ sa@@ urira kuita sei , uye kuno@@ batana pap@@ i ne@@ ku@@ bhabhatidzwa ? +1 , 2 . ( a ) M@@ azuva ano , chii chiri kuita kuti vanhu vaMwari va@@ f@@ are ? +( b ) V@@ aberek@@ i ve@@ chiKristu uye vakuru vang@@ ab@@ atsira sei vechi@@ d@@ iki kuti vanz@@ wis@@ ise zva@@ vanot@@ aris@@ irwa kuita kana va@@ bhabhatidzwa ? +Asi nd@@ ine mubvunzo , S@@ ei uri kuda kut@@ ora d@@ anh@@ o iroro ? ” +( Verenga Ruka 14 : 27 - 30 . ) +( a ) Mashoko a@@ Jesu ne@@ a@@ Petro anot@@ idz@@ idz@@ is@@ ei nezve@@ ku@@ kosha kwe@@ ku@@ bhabhatidzwa ? +( b ) M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura uye ich@@ at@@ ibatsira sei ? +( 2 ) Izvi ndizvo zvand@@ iri kuda kuny@@ atso@@ ita here ? +( 3 ) Nd@@ in@@ onz@@ wisisa here zvinot@@ aris@@ irwa ku@@ munhu anenge a@@ zvit@@ sa@@ urira kuna Jehovha ? +4 , 5 . ( a ) Nei ku@@ bhabhatidzwa kus@@ iri kwe@@ vanhu va@@ kura pa@@ z@@ era chete ? +( b ) Chii chin@@ oratidza kuti muKristu a@@ kura ? +Zvirevo 20 : 11 inoti : “ Muk@@ omana an@@ oratidza kana basa rake raka@@ chena uye kana r@@ akarurama nezva@@ anoita . ” +6 , 7 . ( a ) T@@ aura mi@@ edzo y@@ akas@@ angana na@@ Dhanieri pa@@ akanga ari ku@@ Bhabhironi . ( b ) Dhanieri akaratidza sei kuti akanga a@@ kura ? +W@@ echi@@ d@@ iki an@@ oratidza kuti a@@ kura ha@@ ati kana ari ku@@ I@@ mba yo@@ Umambo o@@ ita s@@ es@@ hamwari yaMwari , asi kana ava ku@@ chikoro ova shamwari y@@ enyika ( Ona nd@@ ima 8 ) +Ha@@ ati kana ari ku@@ I@@ mba yo@@ Umambo o@@ ita s@@ es@@ hamwari yaMwari , asi kana ava ku@@ chikoro ova shamwari y@@ enyika . +9 , 10 . ( a ) W@@ echi@@ d@@ iki ang@@ ab@@ ats@@ irwa sei ne@@ kufunga zva@@ akaita pam@@ i@@ edzo ya@@ akas@@ angana nayo munguva pfupi y@@ apfuura ? +11 , 12 . ( a ) Munhu anenge achi@@ funga nezve@@ ku@@ bhabhatidzwa anofanira kuva nechokwadi ch@@ ei ? +( b ) Chii chi@@ cha@@ kubatsira kuti ur@@ ambe uchi@@ ona ku@@ bhabhatidzwa sem@@ a@@ on@@ er@@ wo a@@ kuno@@ itwa naJehovha ? +Ung@@ az@@ iva sei kuti chis@@ arudzo ch@@ ako che@@ ku@@ bhabhatidzwa chiri kubva pam@@ woyo ? +A@@ noku@@ pa map@@ ep@@ a em@@ ota yacho o@@ bva ati : “ M@@ ota iyi nde@@ yako . ” +18 , 19 . ( a ) Zv@@ akat@@ aurwa na@@ R@@ ose na@@ Christ@@ op@@ her zvin@@ oratidza sei kuti ku@@ bhabhatidzwa id@@ anh@@ o rino@@ ita kuti munhu a@@ wane mak@@ omborero ? +( b ) Un@@ onzwa sei nezv@@ er@@ o@@ pafadzo ye@@ ku@@ bhabhatidzwa ? +Nd@@ iri kuf@@ ara chaizvo ne@@ basa r@@ and@@ iri kuitira Jehovha nes@@ angano rake . ” +Mashoko e@@ kuti “ zva@@ waka@@ itwa kuti u@@ ve nechokwadi nazvo ” anor@@ ev@@ ei ? +“ Mabasa mat@@ s@@ vene omu@@ f@@ ambiro nem@@ abasa oku@@ zvipira kuna Mwari ” nde@@ ap@@ i ? +Ku@@ fungisisa nezv@@ er@@ udz@@ ikin@@ uro ku@@ noku@@ batsira sei kuti ut@@ ende zva@@ waka@@ it@@ irwa naJehovha ? +1 , 2 . ( a ) T@@ s@@ anangura kuti nei ku@@ bhabhatidzwa riri d@@ anh@@ o rino@@ kosha . ( b ) Munhu anofanira kuva nechokwadi ch@@ ei asati ab@@ ha@@ bh@@ atidzwa ? +V@@ echi@@ d@@ iki vano@@ dzidz@@ ei pane zvaka@@ itwa na@@ Timoti ? +T@@ s@@ anangura kuti chik@@ amu chiri pa@@ j@@ w@@ .@@ or@@ g . ch@@ akan@@ zi “ Bhaibheri R@@ in@@ omb@@ o@@ dzidz@@ is@@ ei Cha@@ izvo ? , ” ch@@ inga@@ kubatsira sei kuti uny@@ atso@@ va nechokwadi nezva@@ uno@@ t@@ enda . +Imwe hanzvadzi ich@@ iri ku@@ yar@@ uka inoti : “ N@@ dis@@ ati nd@@ as@@ arudza ku@@ bhabhatidzwa , ndaka@@ dzidza Bhaibheri nd@@ ik@@ a@@ ona kuti ichi ndi@@ cho chitendero che@@ chokwadi . +Uye zuva nezuva , ndino@@ wedzera kuva nechokwadi nezv@@ and@@ inot@@ enda . ” +Nei mabasa ano@@ itwa ne@@ muKristu aka@@ bhabhatidzwa achi@@ fanira ku@@ ender@@ ana nezva@@ anot@@ enda ? +Bhaibheri rinoti : “ Kut@@ enda , kana kus@@ ina mabasa , kwaka@@ fa . ” +T@@ s@@ anangura kuti mashoko e@@ kuti ‘ mabasa mat@@ s@@ vene omu@@ f@@ ambiro ’ anor@@ ev@@ ei . +Somuenzaniso , ch@@ imbo@@ funga zva@@ waka@@ ita mum@@ wedzi 6 y@@ apfuura . +N@@ de@@ ap@@ i mamwe “ mabasa oku@@ zvipira kuna Mwari , ” uye tinofanira ku@@ a@@ ona sei ? +Chii chino@@ gona ku@@ kubatsira kuti u@@ ite “ mabasa oku@@ zvipira kuna Mwari , ” uye vamwe vechi@@ d@@ iki vaka@@ batsirwa sei ? +“ Zvi@@ i zva@@ uno@@ batanidza pa@@ uno@@ dzidza uri wo@@ ga ? ” +“ Uno@@ buda muushumiri kunyange vabereki vako vasing@@ ab@@ ud@@ i here ? ” +Imwe hanzvadzi yechi@@ d@@ iki in@@ onzi T@@ il@@ da yakati : “ Nd@@ akas@@ handisa chik@@ amu ichi kuti nd@@ ir@@ ong@@ e zvand@@ aida ku@@ zo@@ ita . +Zvis@@ homa nezv@@ is@@ homa nd@@ akaita zvose zvand@@ a@@ inge nd@@ ar@@ onga uye p@@ aka@@ z@@ op@@ era gore , ndakanga nd@@ ag@@ adz@@ irira ku@@ bhabhatidzwa . ” +Ung@@ ar@@ amba u@@ chis@@ humira Jehovha kunyange vabereki vako vakar@@ e@@ ga here ? +T@@ s@@ anangura kuti nei uchi@@ fanira ku@@ zvis@@ arudz@@ ira we@@ ga ku@@ zvit@@ sa@@ urira . +16 , 17 . ( a ) Chii chino@@ fanira kuita kuti munhu az@@ os@@ arudza kuva muKristu ? +( b ) Ku@@ batsira kunoita r@@ udz@@ ikin@@ uro kun@@ ga@@ fanan@@ idzwa nei ? +Jesu aka@@ mup@@ indura kuti : “ I@@ da Jehovha Mwari wako nomwoyo wako wose no@@ mweya wako wose ne@@ pfungwa dz@@ ako dzose . ” +( Verenga 2 VaKorinde 5 : 14 , 15 ; 1 Johani 4 : 9 , 19 . ) +18 , 19 . ( a ) Nei us@@ inga@@ faniri kut@@ ya ku@@ zvit@@ sa@@ urira kuna Jehovha ? +( b ) Kus@@ humira Jehovha kunoita sei kuti u@@ ve ne@@ upenyu hw@@ akanaka ? +V@@ echi@@ d@@ iki vang@@ ait@@ ei kuti va@@ gadzir@@ ire ku@@ zvit@@ sa@@ urira uye ku@@ bhabhatidzwa ? +“ Nd@@ inga@@ vand@@ udza S@@ ei M@@ iny@@ engetero Y@@ angu ? ” ​ — J@@ an@@ u@@ ary - Mar@@ ch 200@@ 9 +“ Nd@@ inga@@ ita S@@ ei Kuti Nd@@ in@@ ak@@ idz@@ we Noku@@ verenga Bhaibheri ? ” ​ — J@@ u@@ ly - S@@ ep@@ t@@ ember 200@@ 9 +“ Nd@@ iri Munhu Ak@@ aita S@@ ei ? ” ​ — O@@ c@@ to@@ b@@ er - D@@ ec@@ ember 20@@ 11 +“ Nd@@ inga@@ it@@ ei Kuti Nd@@ in@@ ak@@ idz@@ we Noku@@ verenga Bhaibheri ? ” ​ — A@@ pri@@ l - J@@ une 20@@ 12 +“ S@@ ei Ndi@@ chi@@ fanira Ku@@ enda K@@ um@@ is@@ angano yechiKristu ? ” ​ — J@@ u@@ ly - S@@ ep@@ t@@ ember 20@@ 12 +Ku@@ batana kwedu kuno@@ oneka sei pat@@ inenge tichi@@ par@@ idza mashoko akanaka ? +Zvi@@ i zvat@@ inga@@ ita kuti ungano yedu ir@@ ambe yaka@@ batana ? +Mur@@ ume no@@ mudzimai vang@@ ait@@ ei kuti var@@ ambe vaka@@ batana ? +Chii ch@@ atino@@ ona pane zvaka@@ itwa naJehovha naJesu uye pane zvai@@ itwa nevanhu vaMwari ? +( a ) Va@@ Kristu ve@@ kutanga va@@ iz@@ iv@@ ikanwa ne@@ chii ? +( b ) M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura ? +( Verenga 1 VaKorinde 12 : 4 - 6 , 12 . ) +Kus@@ handa taka@@ batana kuno@@ ti@@ batsira kuit@@ ei ? +8 , 9 . ( a ) Pauro akas@@ handisa muenzaniso we@@ i pa@@ a@@ idz@@ idzisa vaKristu kuti var@@ ambe vaka@@ batana ? +( b ) T@@ inga@@ it@@ e@@ iwo kuti ungano ir@@ ambe yaka@@ batana ? +( Verenga VaEfeso 4 : 15 , 16 . ) +V@@ as@@ humiri vanos@@ humira vano@@ batsira sei kuti ungano ib@@ at@@ ane ? +Chii ching@@ ab@@ atsira vose vari mumhuri kuti va@@ ite zvinhu vaka@@ batana ? +Kana murume wako kana kuti mudzimai wako as@@ iri kush@@ umira Jehovha , ung@@ ait@@ ei kuti imba y@@ enyu ir@@ ambe y@@ akasimba ? +Va@@ Kristu vava nenguva var@@ oorana vang@@ ab@@ atsira sei vechi@@ d@@ iki ? +V@@ ose vanos@@ humira Mwari vaka@@ batana vari kut@@ aris@@ irei ? +Jehovha akat@@ ungamirira sei vanhu mu@@ mazuva a@@ No@@ a ne@@ a@@ Mosesi ? +Mwari akapa vaKristu mir@@ ayiro ipi mit@@ sva ? +T@@ ing@@ ar@@ atidza sei kuti tino@@ da kut@@ ungamir@@ irwa naMwari ? +1 , 2 . ( a ) Chii chaka@@ p@@ onesa upenyu hwe@@ vanhu vakawanda ? +Zvaka@@ famba sei kuti vanhu vap@@ inde munzira y@@ er@@ ufu ? +( a ) Nei pa@@ i@@ diwa m@@ imwe mir@@ ayiro p@@ akap@@ era M@@ af@@ as@@ hamo ? +( b ) Ku@@ chinja kwakaita zvinhu kwaka@@ batsira kuti tin@@ z@@ wis@@ is@@ ei nezva@@ Mwari ? +T@@ icha@@ kuru@@ kure@@ i mun@@ yaya ino , uye zvi@@ chat@@ ib@@ ats@@ irei ? +Nei zva@@ inge zv@@ akak@@ osha kuti vaIsraeri vap@@ iwe mitemo mit@@ sva , uye vai@@ fanira kuva nema@@ fungiro akaita sei ? +( a ) T@@ s@@ anangura kuti nei Jehovha akapa vanhu vake mitemo . ( b ) Mutemo wa@@ Mosesi wa@@ iva mu@@ per@@ ek@@ edzi we@@ vaIsraeri pa@@ kud@@ ini ? +Tino@@ batsirwa sei ne@@ Mutemo wa@@ Mosesi ? +Zvi@@ i zvakanga zvach@@ inj@@ a zvakaita kuti pa@@ pi@@ we mitemo mit@@ sva ? +Nei ungano yechiKristu yaka@@ piwa mitemo mit@@ sva , uye mitemo iyoyo yakanga y@@ akasiyana pap@@ i ne@@ yaka@@ piwa vaIsraeri ? +Izvi zvin@@ ony@@ ats@@ oratidza kuti “ Mwari ha@@ as@@ ar@@ uri , asi mur@@ udzi rw@@ ose munhu ano@@ mut@@ ya uye anoita zv@@ akarurama ano@@ gamuch@@ irwa naye . ” +M@@ ir@@ ayiro ipi m@@ iv@@ iri in@@ oratidza kuti vaKristu v@@ ese vari pasi ‘ pe@@ mutemo wa@@ Kristu ’ ? +13 , 14 . ( a ) Kana ti@@ chit@@ eerera “ mura@@ y@@ iro muts@@ va ” tinofanira kuit@@ ei ? +( b ) Tino@@ dzidz@@ ei kubva pane zvaka@@ itwa naJesu ? +( Verenga Johani 13 : 34 , 35 . ) +T@@ iri kurarama mum@@ amiriro ezvinhu akaita sei mazuva ano , uye Mwari ari kut@@ it@@ ungamirira sei ? +Tinofanira kuita sei nem@@ ir@@ ayiro y@@ atino@@ wana kubva kuna Mwari ? +Uno@@ bvuma here kuti mir@@ ayiro iyi ino@@ bva kuna Mwari ? +N@@ de@@ ipi m@@ ip@@ umb@@ uru ich@@ av@@ hur@@ wa , uye ku@@ v@@ hur@@ wa kwa@@ yo kuch@@ ag@@ uma nei ? +I@@ chat@@ aur@@ awo kuti kuts@@ ungirira kuno@@ fanira ku@@ pedza basa r@@ ipi kune mumwe nomumwe wedu . +Mu@@ enzaniso wa@@ Je@@ f@@ ta nem@@ wan@@ asikana wake uno@@ ti@@ batsira sei kuti tis@@ ak@@ angan@@ is@@ we n@@ enyika ? +Zvi@@ i zvino@@ taurwa neBhaibheri zva@@ uno@@ ona zvichi@@ batsira pa@@ uno@@ batwa zvisina kunaka ? +N@@ yaya ino ya@@ kubatsira sei kuti u@@ zvip@@ ire kut@@ sigira Umambo ? +Je@@ f@@ ta nem@@ wan@@ asikana wake vakas@@ angana nem@@ amiriro ap@@ i ezvinhu akanga aka@@ oma ? +Nei zvaka@@ itwa na@@ Je@@ f@@ ta nem@@ wan@@ asikana wake zvi@@ chit@@ ib@@ ats@@ irawo mazuva ano ? +4 , 5 . ( a ) Jehovha akapa vaIsraeri mura@@ y@@ iro upi pa@@ vaka@@ pinda mu@@ Nyika Y@@ akap@@ ikirwa ? +( b ) Ma@@ ererano na@@ Pisarema 10@@ 6 , kus@@ at@@ eerera kwakaita vaIsraeri kwaka@@ guma nei ? +Zvinhu zv@@ ipi zvakaipa zviri munyika zvinogona kut@@ ik@@ anganisa , uye tinofanira kuit@@ ei ? +( a ) Je@@ f@@ ta aka@@ it@@ ir@@ we@@ i nevanhu ver@@ udzi rwake ? +8 , 9 . ( a ) Zvi@@ i zva@@ it@@ aurwa mu@@ Mutemo wa@@ Mosesi zving@@ ango@@ daro zvaka@@ batsira Je@@ f@@ ta ? +( b ) Chii cha@@ iny@@ anya kuk@@ osh@@ eswa na@@ Je@@ f@@ ta ? +T@@ inga@@ it@@ ei kuti zvatino@@ dzidza mu@@ Shoko raMwari zvit@@ ib@@ ats@@ ire muupenyu hwedu se@@ vaKristu ? +Je@@ f@@ ta akaita mh@@ iko ye@@ i , uye izvozvo zva@@ ir@@ ev@@ ei ? +Mashoko a@@ Je@@ f@@ ta ari pana V@@ atong@@ i 11 : 35 anor@@ atidz@@ ei nezve@@ kutenda kwake ? +Ano@@ fanira kuita maererano nezv@@ ose zvaka@@ buda mu@@ mur@@ omo make . ” +V@@ akawanda vedu t@@ akaita mh@@ iko ye@@ i , uye t@@ inga@@ it@@ ei kuti tir@@ ambe t@@ akatendeka ? +M@@ wan@@ asikana wa@@ Je@@ f@@ ta aka@@ it@@ ei pa@@ aka@@ ziva nezvem@@ h@@ iko yakanga ya@@ itwa n@@ ab@@ aba vake ? +( a ) T@@ ing@@ at@@ evedzera sei kutenda kwa@@ Je@@ f@@ ta nem@@ wan@@ asikana wake ? +( b ) Mashoko ari pana VaHebheru 6 : 10 - 12 an@@ oku@@ batsira sei kuti u@@ zvip@@ ire kuita zvimwe zvinhu pa@@ kush@@ umira Mwari ? +T@@ adz@@ idz@@ ei mun@@ yaya iri muBhaibheri ya@@ Je@@ f@@ ta nem@@ wan@@ asikana wake , uye ting@@ av@@ at@@ evedzera sei ? +Zv@@ inor@@ ev@@ ei kuti “ kuts@@ ungirira nga@@ ku@@ pedz@@ e basa r@@ ak@@ wo ” ? +1 , 2 . ( a ) Tino@@ dzidz@@ ei kubva pa@@ kuts@@ ungirira kwakaita G@@ id@@ hiy@@ oni ne@@ varume vake 3@@ 00 ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) Se@@ zvino@@ taurwa pana Ruka 21 : 19 , nei kuts@@ ungirira ku@@ chik@@ osha chaizvo ? +V@@ av@@ eng@@ i vedu vanos@@ anganisira Satani , nyika yake , uye chivi chat@@ aka@@ berekwa ti@@ in@@ acho . +T@@ ing@@ adz@@ idz@@ ei kubva pane vaya vakat@@ s@@ ungirira ? +Nei ti@@ chit@@ i rudo nd@@ irwo runo@@ ita kuti t@@ its@@ ung@@ irire ? +( Verenga 1 VaKorinde 13 : 4 , 7 . ) +R@@ udo runo@@ ita kuti tir@@ ambe tichi@@ va nem@@ woyo mu@@ refu p@@ atino@@ k@@ angan@@ is@@ irwa ne@@ hama dzedu . +Nei Jehovha ari iye chete akany@@ ats@@ ok@@ odzera kut@@ ibatsira kuti t@@ its@@ ung@@ irire ? +Jehovha ndi@@ Mwari “ ano@@ pa kuts@@ ungirira n@@ eny@@ ar@@ adzo . ” +Se@@ zvaka@@ vimb@@ iswa muBhaibheri , Jehovha ang@@ aita sei kuti ti@@ wane “ nzira yoku@@ buda nayo ” mum@@ i@@ edzo ? +T@@ aura muenzaniso un@@ oratidza kuti zvokudya zvo@@ kunamata zvino@@ ti@@ batsira kuti t@@ its@@ ung@@ irire . +8 , 9 . ( a ) Ma@@ ererano na@@ Jobho 2 : 4 , 5 , chii ch@@ atino@@ fanira ku@@ yeuka pat@@ inos@@ angana nem@@ i@@ edzo ? +( b ) Pa@@ uno@@ s@@ angana nem@@ i@@ edzo , zvi@@ i zva@@ unogona ku@@ fungidzira zvichi@@ itika ? +A@@ chinja here kubva pa@@ akataura mashoko iwayo e@@ kun@@ ye@@ pa ? +Ku@@ funga zvakaitika kune “ vaya vakat@@ s@@ ungirira ” kuno@@ ti@@ batsira sei ? +Tino@@ dzidz@@ ei pane zvaka@@ itwa nem@@ ak@@ er@@ u@@ bh@@ i air@@ inda mun@@ da we@@ E@@ dh@@ eni ? +Chii chaka@@ batsira Jobho kuti ats@@ ung@@ irire mi@@ edzo ya@@ akas@@ angana nayo ? +42 : 10 , 17 . +Ma@@ ererano na@@ 2 VaKorinde 1 : 6 , kuts@@ ungirira kwa@@ Pauro kwaka@@ batsira sei vamwe ? +( Verenga 2 VaKorinde 1 : 6 . ) +15 , 16 . ( a ) ‘ I@@ basa ’ r@@ ipi rino@@ fanira ku@@ pedz@@ wa ne@@ kuts@@ ungirira ? +( b ) T@@ aura mi@@ enzaniso in@@ oratidza zvat@@ inga@@ ita kuti ‘ kuts@@ ungirira ku@@ pedz@@ e basa r@@ ak@@ wo . ’ +P@@ atino@@ ts@@ ungirira mi@@ edzo , ti@@ cha@@ wedzera kuva vaKristu v@@ akakwana ( Ona nd@@ ima 15 , 16 ) +17 , 18 . ( a ) T@@ aura muenzaniso un@@ oratidza kuti nei zvi@@ chik@@ osha kuti tir@@ ambe ti@@ chit@@ s@@ ungirira kusvikira ku@@ mugumo . ( b ) Sezvo t@@ inos@@ wed@@ era pedyo ne@@ mugumo , tine chi@@ vimbo ch@@ ei ? +[ 1 ] ( nd@@ ima 11 ) U@@ cha@@ kurudz@@ ir@@ wawo kana uk@@ av@@ er@@ enga nezve@@ kuts@@ ungirira kwe@@ vanhu vaMwari vem@@ azuva ano . +[ 2 ] ( nd@@ ima 12 ) Bhaibheri har@@ it@@ a@@ uri kuti pa@@ iva nem@@ ak@@ er@@ u@@ bh@@ i m@@ ang@@ ani aiita basa iri . +2 : 42 . +tino@@ batsira sei vamwe p@@ atino@@ pinda misangano . +1 - 3 . ( a ) Va@@ Kristu van@@ oratidza sei kuti van@@ ok@@ oshesa ku@@ ung@@ ana ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) T@@ icha@@ kuru@@ kure@@ i mun@@ yaya ino ? +Zv@@ ak@@ ati@@ kurudzira chaizvo uye zv@@ akas@@ imbisa kutenda kwedu . ” +Ku@@ ung@@ ana pamwe chete kuno@@ ti@@ batsira sei kuti t@@ idz@@ idz@@ e ne@@ zvaJehovha ? +M@@ is@@ angano yaka@@ kubatsira sei kuti us@@ hand@@ ise zva@@ waka@@ dzidza muBhaibheri , uye kuti u@@ vand@@ udz@@ e uny@@ anzvi hw@@ ako paku@@ par@@ idza ? +M@@ is@@ angano yedu ino@@ ti@@ kurudzira sei uye ino@@ ti@@ batsira sei kuti tir@@ ambe t@@ akasimba ? +( Verenga Mabasa 15 : 30 - 32 . ) +Nei zvi@@ chik@@ osha chaizvo kuti ti@@ p@@ inde misangano ? +Hama dzedu dzino@@ batsirwa sei pa@@ dzino@@ ti@@ ona pam@@ is@@ angano uye pa@@ dzin@@ onzwa ti@@ chip@@ indura uye tichi@@ imba ? +( O@@ na@@ wo b@@ ho@@ k@@ isi r@@ akan@@ zi “ P@@ ose Pa@@ ano@@ bva P@@ am@@ is@@ angano An@@ enge A@@ va K@@ unz@@ wa Zv@@ iri N@@ ani . ” ) +9 , 10 . ( a ) T@@ s@@ anangura kuti mashoko a@@ Jesu ari pana Johani 10 : 16 ano@@ ti@@ batsira sei kuona kuti nei zvi@@ chik@@ osha kuti ti@@ ung@@ ane ne@@ hama dzedu . ( b ) Kup@@ inda kwedu misangano nguva dzose kung@@ ab@@ atsira sei mumwe munhu as@@ is@@ af@@ ar@@ ir@@ wi ne@@ ve@@ mumhuri make ? +“ M@@ A@@ Z@@ U@@ V@@ A ano ut@@ ano hw@@ angu huri kund@@ in@@ ets@@ a saka zviri kun@@ di@@ om@@ era kuenda ku@@ misangano . +Asi pand@@ inos@@ vika , nd@@ in@@ on@@ ak@@ irwa nezvoku@@ dya zve@@ kunamata zvatino@@ b@@ ikirwa naJehovha . +Kunyange zvazvo ndi@@ chir@@ wadz@@ iwa nem@@ ab@@ vi chaizvo , ndi@@ chit@@ ambura ne@@ chir@@ were chem@@ woyo , uye ndi@@ chin@@ et@@ seka ne@@ chir@@ were ch@@ es@@ hu@@ ga , pose pand@@ ino@@ bva ku@@ misangano nd@@ inenge nd@@ ava kunzwa zviri nani . +“ Nd@@ akas@@ v@@ im@@ ha mis@@ o@@ dzi pand@@ akatanga kunzwa rw@@ iyo nh@@ amba 6@@ 8 rw@@ uchi@@ imb@@ wa muungano yedu , ur@@ wo rw@@ uno@@ ti , ‘ M@@ uny@@ engetero W@@ o@@ munhu Ak@@ ad@@ erera . ’ +N@@ da@@ in@@ zwa zvai@@ imb@@ wa sezvo ndi@@ ine zvoku@@ isa mun@@ z@@ eve zvino@@ batsira vasing@@ anz@@ wi uye nd@@ ai@@ imb@@ awo . +Kup@@ inda misangano kuno@@ ti@@ batsira sei kuti ti@@ p@@ e Jehovha zvatino@@ fanira kumu@@ pa ? +Jehovha an@@ onzwa sei p@@ atino@@ te@@ erera mura@@ y@@ iro wake we@@ kuti ti@@ p@@ inde misangano ? +T@@ inos@@ wed@@ era sei pedyo naJehovha naJesu pam@@ is@@ angano ? +Kup@@ inda misangano kun@@ oratidza sei Mwari kuti tino@@ da kumu@@ te@@ erera ? +16 , 17 . ( a ) Tino@@ ziva sei kuti misangano ya@@ ik@@ osha chaizvo ku@@ vaKristu ve@@ kutanga ? +( b ) Hama G@@ e@@ or@@ ge G@@ ang@@ as va@@ in@@ zwa sei nezvem@@ is@@ angano yechiKristu ? +P@@ and@@ inenge ndi@@ in@@ avo , nd@@ in@@ onzwa ndaka@@ d@@ ek@@ ara ndichi@@ ita sokuti nd@@ ine vo@@ mumhuri yangu , ndiri mu@@ par@@ adhiso yo@@ kunamata . ” +Un@@ onzwa sei nezvem@@ is@@ angano yedu , uye w@@ ats@@ unga kuit@@ ei ? +[ 2 ] ( nd@@ ima 3 ) Ona b@@ ho@@ k@@ isi r@@ akan@@ zi “ Nei T@@ ichi@@ fanira Kup@@ inda M@@ is@@ angano ? ” +Im@@ omo nd@@ imo ma@@ van@@ onzwa mashoko akanaka achi@@ par@@ idzwa munzvimbo dzino@@ wanikwa vakawanda +Kur@@ u@@ b@@ osh@@ we : I@@ mba yem@@ as@@ ist@@ a ku@@ Z@@ ar@@ ag@@ o@@ za , S@@ pain ; kur@@ ud@@ yi : S@@ hand@@ uro yeBhaibheri ye@@ N@@ á@@ c@@ ar - Col@@ unga +Nd@@ akanga nd@@ ising@@ aziv@@ i kana zvand@@ aiita zva@@ inge zvakanaka . +Ndi@@ chiri ku@@ yeuka ndi@@ chiny@@ engetera ndi@@ chit@@ i , “ M@@ akaita h@@ enyu Jehovha , m@@ akaramba mu@@ chin@@ dir@@ atidza mwoyo mu@@ refu uye m@@ akaramba mu@@ chin@@ di@@ batsira kusvikira nd@@ a@@ wana zivo ye@@ chokwadi yeBhaibheri y@@ and@@ ait@@ s@@ va@@ ga . ” +Vamwe ve@@ mu@@ chechi uye ve@@ kum@@ huri kw@@ angu vano@@ z@@ oti chii nazvo ? ” +Ndaka@@ mup@@ indura kuti : “ K@@ o Mwari ach@@ ati@@ i ? ” +Pas@@ ara m@@ wedzi m@@ iv@@ iri kuti ab@@ ha@@ bh@@ atidz@@ we , aka@@ bva af@@ a . +Tinofanira kuita sei pa@@ zvin@@ enge zvis@@ iri nyore kuramba tis@@ ina kw@@ atino@@ ts@@ ig@@ ira ? +Tino@@ dzidz@@ ei kubva pa@@ vashumiri vaJehovha vakatendeka vasina kup@@ ind@@ ira mune zv@@ enyika ? +T@@ ing@@ at@@ eerera sei Mwari u@@ ku@@ wo ti@@ chit@@ eerera hurumende dze@@ vanhu ? +T@@ in@@ oratidza sei kuti hat@@ ina kw@@ atino@@ ts@@ ig@@ ira pan@@ yaya dze@@ zvem@@ atonger@@ wo enyika ? +( a ) Tino@@ ziva sei kuti zvinhu zvi@@ chat@@ o@@ wedzera ku@@ oma pan@@ yaya ye@@ kus@@ ap@@ ind@@ ira mune zv@@ enyika ? +( b ) Nei tichi@@ fanira ku@@ gadzirira iye zvino kuti tis@@ az@@ op@@ ind@@ ira mune zv@@ enyika ? +Tinofanira kuona sei vanhu vane masimba ve@@ mu@@ hurumende ? +Pa@@ zvin@@ enge zvis@@ iri nyore kuti tir@@ ambe tis@@ ina kw@@ atino@@ ts@@ ig@@ ira ting@@ ava sei “ vaka@@ chenjera ” asi ‘ tis@@ ina m@@ hosva ’ ? +( Verenga Mateu 10 : 16 , 17 . ) +Zvi@@ i zvatino@@ fanira kung@@ warira pat@@ inenge tichi@@ kurukura nevanhu ? +T@@ inga@@ it@@ ei kuti tir@@ ambe tis@@ ina kw@@ atino@@ ts@@ ig@@ ira mune zv@@ enyika pa@@ zvinhu zvose zvatino@@ ona kana kuti zvatino@@ verenga ? +12 , 13 . ( a ) Jehovha ano@@ ona sei vanhu ? +( b ) T@@ ing@@ az@@ iva sei kuti ta@@ va kuny@@ anya ku@@ da@@ da n@@ enyika yedu ? +M@@ uny@@ engetero uno@@ ti@@ batsira sei , uye muenzaniso upi we@@ muBhaibheri un@@ oratidza izvozvo ? +Bhaibheri r@@ ing@@ at@@ ibatsira sei kuti us@@ ap@@ ind@@ ire mune zv@@ enyika ? +( O@@ na@@ wo b@@ ho@@ k@@ isi r@@ akan@@ zi “ Shoko raMwari R@@ aka@@ va@@ batsira Kuti V@@ ar@@ ambe Va@@ ine U@@ sh@@ ingi . ” ) +Tino@@ dzidz@@ ei kubva pam@@ i@@ enzaniso y@@ ev@@ as@@ humiri vaMwari vakatendeka vakar@@ amba vasing@@ ats@@ ig@@ iri zv@@ enyika ? +( Verenga Dhanieri 3 : 16 - 18 . ) +18 , 19 . ( a ) Vanhu ve@@ muungano y@@ enyu vanogona ku@@ kubatsira sei kuti ur@@ ambe usina kwa@@ uno@@ ts@@ ig@@ ira ? +“ Ku@@ fungisisa mashoko ari pana Zvirevo 27 : 11 , Mateu 26 : 5@@ 2 , uye Johani 13 : 35 kw@@ akandi@@ batsira kuti ndi@@ wedz@@ ere kuva ne@@ ush@@ ingi hwe@@ kuramba kupinda muchi@@ u@@ to . +M@@ av@@ h@@ esi aya akandi@@ bats@@ irawo kuti nd@@ ir@@ ambe ndaka@@ dz@@ ik@@ ama pand@@ ait@@ aura ne@@ vakuru vakuru ve@@ mu@@ hurumende . ” ​ — A@@ nd@@ ri@@ y , we@@ ku@@ U@@ k@@ ra@@ ine . +“ Isaya 2 : 4 y@@ akandi@@ batsira kuti nd@@ ir@@ ambe nd@@ isina kwand@@ ino@@ ts@@ ig@@ ira pand@@ ai@@ edzwa . +Nd@@ ai@@ fungidzira rugare ru@@ change r@@ uri munyika itsva , pas@@ isina munhu ano@@ famba akat@@ a@@ kura ch@@ ombo kuti a@@ kuva@@ dz@@ e vamwe . ” ​ — W@@ il@@ m@@ er , we@@ ku@@ Col@@ omb@@ ia . +“ Mu@@ ch@@ eng@@ ete rugare pakati p@@ enyu . ” ​ — M@@ AK@@ O 9 : 50 . +I@@ zano r@@ ipi raka@@ piwa naJesu rino@@ ti@@ batsira kuti tive ner@@ udo pat@@ inenge tichi@@ edza ku@@ y@@ an@@ ana nevamwe ? +Mu@@ Kristu anogona ku@@ zv@@ ibvunz@@ a mibvunzo ipi pa@@ anenge achi@@ funga kuti ang@@ ay@@ an@@ ana sei nevamwe ? +Mat@@ anh@@ o mat@@ atu ano@@ taurwa pana Mateu 18 : 15 - 17 ang@@ as@@ handiswa sei paku@@ gadzir@@ isa dzimwe nyaya dzino@@ ita kuti vanhu vas@@ a@@ wirirana ? +In@@ yaya dz@@ ipi dze@@ kusa@@ wirirana kwe@@ vanhu dzino@@ taurwa muna Genes@@ isi , uye dz@@ akany@@ or@@ er@@ we@@ i ? +Ma@@ fungiro ap@@ i aka@@ par@@ arira munyika , uye zviri ku@@ guma nei ? +Jesu aka@@ dzidzisa sei vanhu kuti va@@ gadzir@@ ise kusa@@ wirirana ? +6 , 7 . ( a ) Nei zvi@@ chik@@ osha kuti ti@@ kurum@@ idz@@ e kuk@@ angan@@ wira vamwe ? +( b ) V@@ as@@ humiri vose vaJehovha vanofanira ku@@ zv@@ ibvunz@@ a mibvunzo ipi ? +Baba vedu ve@@ kudenga vach@@ an@@ zwa min@@ y@@ engetero iyoyo uye vacha@@ kup@@ indura . — 1 Jo@@ h . 5 : 14 , 15 . +T@@ inga@@ ita sei kana mumwe munhu ak@@ ati@@ g@@ umb@@ ura ? +( Verenga Zvirevo 10 : 12 ; 1 Petro 4 : 8 . ) +( a ) Imwe hanzvadzi yaka@@ ita sei vanhu pa@@ vakat@@ aura zvakaipa nezva@@ yo ? +( b ) I@@ pfungwa ipi yo@@ mu@@ Magwaro yaka@@ batsira hanzvadzi iyi kuti is@@ ar@@ amba i@@ chin@@ et@@ seka ? +11 , 12 . ( a ) Mu@@ Kristu anofanira kuita sei kana achi@@ funga kuti imwe hama “ ine chi@@ g@@ umb@@ u ” naye ? +Mumwe mut@@ ariri akaita sei pa@@ aka@@ udzwa mashoko ano@@ b@@ aya , uye tino@@ dzidz@@ ei ? +14 , 15 . ( a ) Z@@ ano riri pana Mateu 18 : 15 - 17 rino@@ fanira kushand@@ iswa pap@@ i ? +( b ) Jesu akataura mat@@ anh@@ o ap@@ i mat@@ atu , uye chinangwa ch@@ edu pa@@ kut@@ ora mat@@ anh@@ o aya chino@@ fanira kuva ch@@ ei ? +Chii chin@@ oratidza kuti kut@@ evedzera zano r@@ akat@@ aurwa naJesu kuno@@ sh@@ anda uye kun@@ oratidza rudo ? +T@@ icha@@ wana mak@@ omborero ap@@ i kana ‘ tik@@ ats@@ vaka kuva ner@@ ugare ’ nevamwe ? +pam@@ ashoko a@@ zvino@@ par@@ idza uye chino@@ ita kuti zvip@@ ar@@ idz@@ e ? +Mashoko a@@ Jesu ari pana Mateu 24 : 14 anoita kuti tive nem@@ ibvunzo ipi ? +Ma@@ ererano na@@ Mateu 28 : 19 , 20 zvinhu zv@@ ipi zvin@@ a zvino@@ fanira kuitwa ne@@ vateveri va@@ Jesu ? +B@@ asa re@@ kuva “ va@@ bat@@ i ve@@ vanhu ” rin@@ os@@ angan@@ is@@ irei ? +( Verenga Mateu 4 : 18 - 22 . ) +M@@ ibvunzo ipi m@@ ina ino@@ fanira kup@@ ind@@ urwa , uye mh@@ induro dz@@ acho dzino@@ ti@@ batsira sei ? +Chii chino@@ ita kuti u@@ ve nechi@@ vimbo che@@ kuti mashoko ari kupar@@ idzwa neZvapupu zvaJehovha ndi@@ wo anofanira kupar@@ idzwa ? +Tino@@ ziva sei kuti va@@ fundisi vem@@ ach@@ e@@ chi ano@@ zv@@ iti nde@@ e@@ chiKristu ha@@ v@@ asi kuparidza mashoko chai@@ wo anofanira kupar@@ idzwa ? +Vamwe vari kuparidza ne@@ chinangwa chipi chis@@ ina kunaka ? +( Verenga Mabasa 20 : 33 - 35 . ) +Chii chin@@ oratidza kuti Zvapupu zvaJehovha zvinoita basa re@@ kuparidza ne@@ chinangwa ch@@ akanaka ? +Jesu ne@@ vadzidzi vake va@@ ip@@ ar@@ idza sei mashoko akanaka ? +Zvino@@ itwa nema@@ chechi ano@@ zv@@ iti nde@@ e@@ chiKristu paku@@ par@@ idza mashoko akanaka , zv@@ akasiyana pap@@ i ne@@ zvino@@ itwa nevanhu vaJehovha ? +Ndi@@ zvo zve@@ ga zviri kuparidza kuti Jesu akatanga kutonga sa@@ Mambo muna 1914 . +B@@ asa re@@ kuparidza rino@@ fanira kunge raka@@ kura sei ? +Chii chin@@ oratidza kuti Zvapupu zvaJehovha zviri kuz@@ adz@@ isa up@@ ro@@ f@@ ita hwa@@ Jesu hwe@@ kuparidza munyika yose ? +N@@ zvimbo yedu ye@@ pa@@ mutemo ye@@ pa@@ I@@ nd@@ an@@ eti ya@@ va ku@@ wanikwa mum@@ it@@ a@@ uro ino@@ pfuura 7@@ 50 . +Chii chin@@ oratidza kuti Zvapupu zvaJehovha zvine mudzimu waMwari ? +17 , 18 . ( a ) Chii chino@@ ita kuti tive nechokwadi che@@ kuti Zvapupu zvaJehovha ndizvo zviri kuparidza mashoko akanaka e@@ Umambo mazuva ano ? +( b ) Chii chino@@ ita kuti tik@@ wan@@ ise kuramba tichi@@ ita basa iri ? +Ne@@ kuti tiri kuparidza mashoko anofanira kupar@@ idzwa , mashoko akanaka e@@ Umambo . +Chii chino@@ gona kut@@ it@@ adz@@ isa ku@@ batsirwa nezv@@ imwe zvinhu zvatino@@ piwa naJehovha ? +N@@ de@@ zv@@ ipi zvat@@ inga@@ ita kuti ti@@ bats@@ ir@@ we nezv@@ ik@@ amu zv@@ ese zviri muBhaibheri ? +Tino@@ batsirwa sei ne@@ ku@@ verenga mabhuku nezv@@ im@@ wewo zv@@ akany@@ or@@ erwa vechi@@ d@@ iki uye ver@@ u@@ zhinji ? +1 , 2 . ( a ) Zvapupu zvaJehovha zvino@@ ona sei Bhaibheri ? +( b ) Chik@@ amu chipi cha@@ uno@@ farira muBhaibheri ? +3 , 4 . ( a ) T@@ in@@ onzwa sei nezvem@@ abhuku edu ano@@ budiswa nes@@ angano ? +( b ) N@@ de@@ zv@@ ipi zvimwe zvatino@@ piwa zvino@@ budiswa nes@@ angano redu zvin@@ enge zvi@@ ine vanhu va@@ zv@@ akan@@ anga ? +Tino@@ gona kuva nechokwadi che@@ kuti Jehovha anok@@ oshesa chii ? +Nei tichi@@ fanira ku@@ verenga Bhaibheri ti@@ ine chi@@ do che@@ kudzidza zvit@@ sva ? +8 , 9 . ( a ) P@@ at@@ inenge tichi@@ verenga Bhaibheri , mibvunzo ipi yat@@ inga@@ zv@@ ibvunz@@ a ? +( b ) Zvinhu zvinodiwa kuti munhu ak@@ odz@@ ere kuva mukuru muungano zvino@@ ti@@ udz@@ ei ne@@ zvaJehovha ? +Nd@@ ing@@ as@@ handisa sei zvand@@ iri ku@@ verenga kuti ndi@@ bats@@ ire vamwe ? ’ +( Verenga 1 Timoti 3 : 2 - 7 . ) +10 , 11 . ( a ) P@@ at@@ inenge tichi@@ verenga zvino@@ taurwa mu@@ Magwaro kuti ndizvo zvinoita kuti munhu ak@@ odz@@ ere kuva mukuru , t@@ inga@@ zvis@@ handisa sei muupenyu hwedu ? +( b ) T@@ ing@@ as@@ handisa sei pfungwa idz@@ odz@@ o kuti ti@@ bats@@ ire vamwe ? +12 , 13 . ( a ) T@@ i@@ chis@@ handisa zvatino@@ piwa nes@@ angano , tinogona kuts@@ va@@ kur@@ udza zvinhu zvakaita se@@ zv@@ ipi ? +( b ) T@@ aura muenzaniso un@@ oratidza kuti ku@@ ongorora zvai@@ itika p@@ akanyorwa chimwe chik@@ amu che@@ Bhaibheri kunogona kut@@ ibatsira kuwana zvidz@@ idzo zvin@@ enge zvis@@ iri pachena . +Zvinhu zvaka@@ bud@@ is@@ irwa vechi@@ duku zvino@@ va@@ batsira sei , uye vamwe vang@@ ab@@ ats@@ ir@@ wawo sei nazvo ? +Nei zvakanaka kuti vaKristu va@@ kura va@@ far@@ ire ku@@ verenga nyaya dz@@ akany@@ or@@ erwa vechi@@ duku ? +M@@ abhuku edu ano@@ bats@@ irawo vechi@@ d@@ iki kuti vait@@ ei ? +( Verenga Mup@@ ar@@ idzi 12 : 1 , 13 . ) +Nd@@ inga@@ ita S@@ ei Kuti Nd@@ in@@ ak@@ idz@@ we Noku@@ verenga Bhaibheri ? ” +T@@ ing@@ ab@@ ats@@ irwa sei ne@@ ku@@ verenga zvinhu zv@@ akany@@ or@@ erwa ver@@ u@@ zhinji ? +T@@ ing@@ ar@@ atidza sei kuti tino@@ onga Jehovha pa@@ mus@@ ana pe@@ zva@@ ano@@ ti@@ pa ? +Nei tichi@@ fanira kuny@@ atso@@ funga pane zvat@@ inos@@ arudza ? +T@@ ing@@ az@@ iva sei zvino@@ fadza Jehovha pan@@ yaya inenge ya@@ muka kana pasina mutemo we@@ Bhaibheri uno@@ taura nezva@@ yo ? +T@@ inga@@ it@@ ei kuti ti@@ wedz@@ ere kuziva ma@@ fungiro a@@ Jehovha ? +N@@ de@@ ipi m@@ imwe mir@@ ayiro iri muBhaibheri , uye kuit@@ eerera kuno@@ ti@@ batsira sei ? +2 , 3 . ( a ) Nei Bhaibheri ris@@ ing@@ ati@@ p@@ i mitemo pan@@ yaya dzose dzino@@ muka muupenyu ? +Zvis@@ arudzo zvatino@@ ita zvinogona kut@@ ibatsira kana kut@@ ik@@ anganisa sei uye zvino@@ g@@ on@@ awo kuk@@ anganisa sei vamwe ? +Kana pasina mutemo w@@ akanyorwa muBhaibheri , ting@@ az@@ iva sei zvatino@@ t@@ aris@@ irwa naJehovha kuti ti@@ ite pan@@ yaya inenge ya@@ muka ? +Chii chaka@@ batsira Jesu kuti anz@@ wis@@ ise kuti Jehovha aida kuti ait@@ ei ? +( Verenga Mateu 4 : 2 - 4 . ) +F@@ unga nezv@@ ake munzira dz@@ ako dzose , uye iye ach@@ ar@@ uram@@ isa mak@@ wara ako . +M@@ ibvunzo ipi yat@@ inga@@ zv@@ ibvunz@@ a pat@@ inenge tichi@@ verenga kana kuti kudzidza Bhaibheri ? +Tino@@ batsirwa sei nem@@ abhuku edu uye misangano kuti ti@@ wedz@@ ere kuziva ma@@ fungiro a@@ Jehovha pan@@ yaya dz@@ akasiyana - siyana ? +T@@ aura muenzaniso un@@ oratidza kuti kuziva ma@@ fungiro a@@ Jehovha kuno@@ ti@@ batsira sei kuti ti@@ ite zvis@@ arudzo zvakanaka . +( Verenga Ruka 18 : 29 , 30 . ) +Ung@@ az@@ iva sei kana mamwe map@@ f@@ ek@@ ero achi@@ fadza Jehovha ? +( c ) Zvis@@ arudzo zvaka@@ kura zvino@@ fanira kuitwa sei ? +( Verenga Genes@@ isi 6 : 5 , 6 . ) +Tino@@ batsirwa sei p@@ atino@@ ita zvis@@ arudzo zvino@@ fadza Jehovha ? +T@@ ich@@ ar@@ amba ti@@ ine zvinhu zvit@@ sva zve@@ kudzidza ne@@ zvaJehovha . +Nei tichi@@ fanira kuramba tichi@@ chinja kunyange t@@ at@@ ob@@ ha@@ bh@@ atidzwa ? +Nei Mwari achit@@ arisira kuti tis@@ hand@@ e nesimba kuti ti@@ kun@@ de chi@@ do che@@ kuita zvakaipa ? +T@@ inga@@ it@@ ei kuti Shoko raMwari r@@ ir@@ ambe ri@@ chi@@ chinja upenyu hwedu ? +1 - 3 . ( a ) N@@ de@@ zv@@ ipi zvimwe zvinhu zvinogona kut@@ i@@ om@@ era kuchinja kunyange t@@ at@@ ob@@ ha@@ bh@@ atidzwa ? +( b ) Kana zviri kut@@ i@@ om@@ era kure@@ ga t@@ umwe t@@ uts@@ ika mibvunzo ipi yat@@ ing@@ ava nayo ? +Nei dzimwe nguva ti@@ chit@@ adza kuf@@ adza Jehovha ? +Zvinhu zv@@ ipi zvat@@ aka@@ chinja tis@@ ati t@@ ab@@ ha@@ bh@@ atidzwa , asi zvi@@ i zvinogona kuramba zvi@@ chit@@ in@@ ets@@ a ? +6 , 7 . ( a ) Chii chino@@ ita kuti tik@@ wan@@ ise kuva shamwari dza@@ Jehovha pasinei ne@@ kuti tine chivi ? +( b ) Nei tis@@ inga@@ faniri kuz@@ e@@ za ku@@ kumbira Jehovha kuti at@@ ik@@ angan@@ w@@ ire ? +Tino@@ ziva sei kuti tino@@ kwanisa kuramba tichi@@ pf@@ eka unhu h@@ uts@@ va ? +Tinofanira kuit@@ ei kuti tir@@ ambe tichi@@ chinja tichi@@ batsirwa ne@@ Shoko raMwari , uye mibvunzo ipi yat@@ ing@@ abv@@ unza ? +Nei Mwari achit@@ arisira kuti tis@@ hand@@ e nesimba kuti ti@@ kun@@ de chi@@ do che@@ kuita zvakaipa ? +Zvi@@ i zvat@@ inga@@ ita kuti tive ne@@ unhu huno@@ diwa naJehovha ? +( Ona b@@ ho@@ k@@ isi r@@ akan@@ zi “ Bhaibheri Uye Kuny@@ engetera Zvaka@@ chinja Up@@ enyu H@@ wavo . ” ) +Nei tis@@ inga@@ faniri ku@@ ora mwoyo kana tis@@ iri ku@@ kwanisa kuchinja ne@@ ku@@ kurumidza ? +Kana taka@@ vimbika kuna Jehovha , tino@@ t@@ arisira ku@@ wan@@ ei mune ram@@ ang@@ wana ? +T@@ ing@@ ava sei nechokwadi che@@ kuti Bhaibheri rine simba re@@ kuramba ri@@ chi@@ chinja upenyu hwedu ? +[ 1 ] ( nd@@ ima 1 ) Z@@ ita raka@@ chinj@@ wa . +Rus@@ sel@@ l : “ Kuny@@ engetera kuna Jehovha ndichi@@ ita zve@@ kut@@ et@@ erera uye ku@@ verenga Bhaibheri zuva nezuva zv@@ akandi@@ batsira . +Ndaka@@ bats@@ ir@@ wawo ne@@ ku@@ fungisisa rug@@ waro rwa@@ 2 Petro 2 : ​ 11 uye ma@@ zano and@@ akap@@ iwa ne@@ vakuru . ” +Mar@@ ia V@@ ic@@ tor@@ ia : “ Nd@@ akany@@ engetera nem@@ woyo wose kuna Jehovha kuti andi@@ bats@@ ire kudz@@ ora r@@ ur@@ imi rw@@ angu . +Ndaka@@ on@@ awo kuti nd@@ aifanira kure@@ ga kush@@ am@@ war@@ idz@@ ana nevanhu vano@@ farira kuita ma@@ ku@@ hwa . +R@@ ug@@ waro rwa@@ Pisarema 6@@ 4 : ​ 1 - 4 rw@@ akaita kuti ndi@@ one kuti han@@ di@@ di kuva munhu we@@ kuti vamwe van@@ ony@@ engetera kuna Mwari kuti nd@@ is@@ av@@ ak@@ anganisa ! +Ndaka@@ on@@ awo kuti kuramba ndichi@@ ita ma@@ ku@@ hwa kwai@@ zo@@ ita kuti ndi@@ ziv@@ ikan@@ we se@@ munhu aka@@ ipa uye zvai@@ z@@ osh@@ or@@ esa zita raJehovha . ” +L@@ inda : “ Nd@@ akaita kuti nd@@ iny@@ atso@@ ziva zviri mum@@ atur@@ ak@@ iti edu kuitira kuti nd@@ ik@@ wan@@ ise ku@@ zo@@ apa vanhu . +Kus@@ ham@@ war@@ idz@@ ana nevanhu van@@ on@@ ak@@ idzwa ne@@ kushandisa nzira dz@@ akasiyana - siyana dze@@ kuparidza kuri kun@@ di@@ batsira chaizvo . +Uye nd@@ inor@@ amba ndi@@ chiny@@ engetera kuna Jehovha kuti andi@@ bats@@ ire . ” +Vanhu vose vane zva@@ van@@ ok@@ anganisa zvinogona kur@@ wadz@@ isa vamwe . +Jehovha anos@@ arudza sei vanhu va@@ an@@ ou@@ mba ? +Mwari an@@ ou@@ mba sei vaya vano@@ bvuma kut@@ ungamir@@ irwa naye ? +T@@ ing@@ at@@ evedzera sei zvaka@@ itwa ne@@ vaIsraeri va@@ inge vap@@ f@@ idza ? +Jehovha anos@@ arudza sei vanhu va@@ an@@ oun@@ za kwaari ? +( Verenga 1 Samu@@ eri 16 : 7@@ b . ) +Ku@@ vimba kw@@ atino@@ ita naJehovha se@@ Mu@@ umb@@ i wedu kuno@@ fanira kuchinja sei ma@@ onero atino@@ ita ( a ) vanhu vari mun@@ d@@ ima m@@ edu ? +R@@ imwe zuva , nd@@ akas@@ angana ne@@ imwe mhuri y@@ and@@ aka@@ ye@@ mur@@ a pa@@ mus@@ ana pe@@ zvakanaka zva@@ yaka@@ ita . +Ndaka@@ zos@@ ham@@ isika mumwe musi pand@@ aka@@ ziva kuti vaiva Zvapupu zvaJehovha ! +Ma@@ itiro avo akaita kuti ndi@@ ongor@@ ore kuti nei nd@@ ai@@ va@@ ona ne@@ z@@ iso ris@@ ina kunaka . +Ndaka@@ zo@@ ona kuti ma@@ itiro angu a@@ ik@@ onz@@ erwa ne@@ kusa@@ ziva uye zvand@@ ain@@ zwa nezv@@ avo . ” +( Verenga VaHebheru 12 : 5 , 6 , 11 . ) +Jehovha ari kut@@ idz@@ idzisa sei mazuva ano , uye dzidz@@ o yacho icha@@ end@@ erera mberi sei mune ram@@ ang@@ wana ? +Uye taka@@ dzidza kuda vamwe . +Jesu akaratidza sei uny@@ anzvi uye mwoyo mu@@ refu achit@@ evedzera Mu@@ umb@@ i Mu@@ kuru ? +( Verenga Pisarema 10@@ 3 : 10 - 14 . ) +Dhavhidhi akaratidza sei kuti aiva iv@@ hu re@@ ku@@ umb@@ isa raka@@ pf@@ ava , uye t@@ inga@@ mut@@ evedzera sei ? +Jehovha ano@@ ti@@ umb@@ a sei achis@@ handisa mudzimu mutsvene uye ungano yechiKristu ? +Kunyange zvazvo Jehovha a@@ ine simba pa@@ iv@@ hu , an@@ oratidza sei kuti anor@@ emek@@ edza rus@@ ununguko rwe@@ du rwe@@ kus@@ arudza zvatino@@ da ? +V@@ adz@@ idzi ve@@ Bhaibheri van@@ oratidza sei kuti vanoda ku@@ umb@@ wa naJehovha ? +( a ) Chii chino@@ kuf@@ adza pa@@ kuti Jehovha ndiye Mu@@ umb@@ i wako ? +( b ) N@@ de@@ zv@@ ipi zv@@ ati@@ cha@@ kurukura pan@@ yaya ye@@ ku@@ umb@@ a ? +Un@@ hu h@@ upi h@@ ung@@ aita kuti tis@@ ada kuteerera p@@ atino@@ t@@ si@@ urwa naMwari ? +Un@@ hu h@@ upi h@@ ung@@ at@@ ibatsira kuti tir@@ ambe tiri vanhu van@@ ou@@ mb@@ ika muma@@ oko a@@ Mwari ? +V@@ aberek@@ i ve@@ chiKristu vang@@ ar@@ atidza sei kuti Jehovha ndiye Mu@@ umb@@ i wavo ? +Nei Mwari akaona Dhanieri ‘ se@@ murume ano@@ diwa kwazvo , ’ uye ting@@ at@@ evedzera sei kuteerera kwa@@ aiita ? +Zvirevo 4 : 23 inoti , “ Pa@@ zvinhu zvose zvino@@ fanira ku@@ chenget@@ edzwa , chenget@@ edza mwoyo wako , nokuti ma@@ uri nd@@ imo mune mat@@ sim@@ e oupenyu . ” +( Verenga 2 Mak@@ or@@ on@@ ike 26 : 3 - 5 , 16 - 21 . ) +Chii chino@@ gona ku@@ itika kana tik@@ at@@ adza ku@@ bvisa unhu hwe@@ kuzvi@@ kudza ? +Imwe hama y@@ akataura kuti ne@@ kufamba kwenguva yakanga ising@@ ach@@ ar@@ o@@ hw@@ i ne@@ hana pa@@ yai@@ ita zvakaipa . +7 , 8 . ( a ) Zvaka@@ itwa ne@@ vaIsraeri zvin@@ oratidza sei kuti kusa@@ va ne@@ kutenda kuno@@ om@@ esa mwoyo ? +( b ) Ch@@ idz@@ idzo chipi ch@@ atino@@ wana ? +Nei tichi@@ fanira kugara ‘ tichi@@ zvi@@ edza ’ kuti ti@@ one kana tiri mu@@ kutenda , uye t@@ inga@@ zvi@@ ita sei ? +Chii chino@@ gona kut@@ ibatsira kuti ti@@ ite se@@ iv@@ hu raka@@ pf@@ ava riri muma@@ oko a@@ Jehovha ? +Jehovha anos@@ handisa sei ungano yechiKristu kuti ati@@ um@@ be zvino@@ ender@@ ana ne@@ mumwe ne@@ mumwe wedu ? +B@@ asa re@@ ushumiri rino@@ gona kut@@ ibatsira ku@@ vand@@ udza unhu h@@ upi uye zvino@@ bats@@ irei ? +V@@ aberek@@ i vanofanira kuit@@ ei kana vachi@@ da ku@@ budirira paku@@ umb@@ a vana vavo ? +V@@ aberek@@ i vanofanira kuratidza sei kuti vano@@ vimba naMwari p@@ ano@@ dz@@ ing@@ wa mwana wavo ? +( Verenga 1 VaKorinde 5 : 11 , 13 . ) +Nei tichi@@ fanira ku@@ bvuma kut@@ ungamir@@ irwa naJehovha muupenyu hwedu hw@@ ese , uye izvozvo zvi@@ chat@@ ibatsira sei ? +Jehovha Mwari wedu “ ndi@@ Jehovha mumwe chete ” pa@@ kud@@ ini ? +T@@ ing@@ ar@@ atidza sei kuti tino@@ mun@@ amata ‘ sa@@ Jehovha mumwe chete ’ ? +T@@ inga@@ ita sei kuti tir@@ ambe ti@@ ine rugare uye taka@@ batana ? +( b ) Nei Mosesi akataura mashoko iwayo ? +4 , 5 . ( a ) Mashoko e@@ kuti “ Jehovha mumwe chete ” anor@@ ev@@ ei ? +( b ) Jehovha akasiyana sei na@@ vanam@@ wari vem@@ amwe marudzi ? +N@@ de@@ zv@@ ipi zvimwe zvin@@ ore@@ hwa nem@@ ashoko e@@ kuti “ Jehovha mumwe chete , ” uye Jehovha akaratidza sei kuti “ mumwe chete ” ? +8 , 9 . ( a ) Jehovha anot@@ arisira kuti vanam@@ ati vake va@@ ite sei ? +( b ) Jesu akas@@ imbisa sei ku@@ kosha kwem@@ ashoko akat@@ aurwa na@@ Mosesi ? +( Verenga M@@ ako 12 : 28 - 31 . ) +10 , 11 . ( a ) T@@ inga@@ zvipira sei zvaka@@ zara kuna Jehovha ? +( b ) VaHebheru vechi@@ d@@ iki vaiva mu@@ Bhabhironi vakar@@ atidza sei kuti vakanga vaka@@ zvipira zvaka@@ zara kuna Jehovha ? +Chii ch@@ atino@@ fanira kung@@ warira paku@@ zvipira kuna Jehovha zvaka@@ zara ? +Zvi@@ i zvat@@ ing@@ at@@ anga kuda kupfuura Jehovha ? +Chii chaka@@ ita kuti Pauro a@@ yeuch@@ idz@@ e vaKristu kuti Mwari “ ndi@@ Jehovha mumwe chete ” ? +16 , 17 . ( a ) U@@ profita h@@ upi huri kuz@@ adz@@ ika mazuva ano , uye ungano dzakawanda dz@@ ava nevanhu vakaita sei ? +( b ) Chii chino@@ gona kuk@@ anganisa ku@@ batana kwedu ? +18 , 19 . ( a ) I@@ zano r@@ ipi rino@@ taurwa pana VaEfeso 4 : 1 - 3 ? +( b ) T@@ inga@@ ita sei kuti ungano ir@@ ambe yaka@@ batana ? +T@@ ing@@ ar@@ atidza sei kuti tin@@ onz@@ wisisa kuti “ Jehovha Mwari wedu ndi@@ Jehovha mumwe chete ” ? +Ku@@ T@@ rin@@ id@@ ad and T@@ ob@@ ago kune mis@@ ha yakawanda ye@@ vanhu vano@@ bata ho@@ ve yaka@@ vak@@ wa kuma@@ ho@@ mb@@ ek@@ om@@ be kwe@@ g@@ ungwa . +Zvapupu zvaJehovha zvino@@ wan@@ zos@@ handisa mukana wose wa@@ zvino@@ wana kuti zvit@@ a@@ ure neva@@ bat@@ i ve@@ ho@@ ve +Bhaibheri rin@@ oratidza sei kuti t@@ ose tiri vanhu vane chivi ? +T@@ inga@@ ita sei nezv@@ ik@@ angan@@ iso zvedu uye zv@@ ev@@ amwe ? +Bhaibheri raka@@ f@@ anotaura sei nezve@@ kuwedzera kwe@@ vanhu vaJehovha ? +( Verenga M@@ ika 4 : 1 , 3 . ) +Izvi zvaka@@ va@@ batsira kuti var@@ ambe vaka@@ chena “ par@@ opa re@@ vanhu vose . ” — Ma@@ b . 20 : 26 . +Nei kuwedzera kwe@@ vanhu vaJehovha kuch@@ isham@@ isa ? +Nei dzimwe nguva vamwe vang@@ at@@ ir@@ wadz@@ isa ? +( Verenga VaRoma 5 : 12 , 19 . ) +D@@ ai wa@@ ig@@ ara mu@@ Israeri panguva ya@@ E@@ ri ne@@ van@@ akomana vake , ung@@ ad@@ ai waka@@ ita sei ? +Nei ting@@ ati E@@ ri akat@@ adza kut@@ si@@ ura van@@ akomana vake ? +Dhavhidhi akaita zviv@@ i zv@@ ipi zvaka@@ kura , uye Mwari akaita sei nazvo ? +( a ) Muapostora Petro akat@@ adza sei kuita zva@@ akanga at@@ aura ? +( b ) Nei Jehovha akaramba achis@@ handisa Petro kunyange zvazvo ak@@ amb@@ ok@@ anganisa ? +Nei uchi@@ vimba kuti Jehovha ano@@ gara achi@@ ita zv@@ akarurama ? +Jesu ai@@ ziva chii nezve@@ kuk@@ anganisa kwa@@ Jud@@ h@@ asi Is@@ k@@ ar@@ iyo@@ ti na@@ Petro ? +Bhaibheri raka@@ f@@ ano@@ ta@@ ur@@ ei nezve@@ vanhu vaJehovha var@@ ipo iye zvino ? +Tinofanira kuona sei kuk@@ anganisa kwe@@ vamwe ? +13 , 14 . ( a ) Nei tichi@@ fanira kuitira vamwe mwoyo mu@@ refu ? +( b ) Tinofanira ku@@ yeuka vimb@@ iso ipi ? +Jesu akati tinofanira kuita sei vamwe v@@ akak@@ anganisa ? +Ung@@ ada kuit@@ ei vamwe pa@@ van@@ ok@@ anganisa ? +( Verenga Mateu 5 : 23 , 24 . ) +Jehovha zva@@ aka@@ kuk@@ angan@@ wir@@ ai nomwoyo wose , im@@ iwo it@@ ai sai@@ zvozvo . ” +M@@ h@@ induro dzem@@ ibvunzo iyoyo ha@@ dz@@ ina ku@@ oma . +Izvi tinogona kuzvi@@ ona kubva pane zvino@@ taurwa neBhaibheri nezve@@ uchenjeri uye kunzwisisa . +Zvirevo 3 : 13 - 15 inoti : “ Munhu ano@@ wana uchenjeri ndiye ano@@ fara , no@@ munhu ano@@ wana ung@@ war@@ u , nokuti kuva na@@ hwo se@@ pfuma kuri nani kupfuura kuva nes@@ ir@@ iv@@ ha se@@ pfuma , uye kuva na@@ hwo se@@ zvib@@ erek@@ o kuri nani kupfuura nd@@ arama . +H@@ uno@@ kosha kupfuura mat@@ ombo ek@@ or@@ ari , uye zvimwe zvose zvino@@ kuf@@ adza ha@@ zv@@ ig@@ oni ku@@ enzan@@ iswa na@@ hwo . ” +Jesu Kristu akaratidza muenzaniso w@@ akanaka we@@ kut@@ end@@ es@@ eka . +Sam@@ an@@ e@@ j@@ a mukuru , nd@@ ait@@ aris@@ irwa ku@@ wirirana ne@@ munhu ai@@ ona nezvem@@ it@@ ero ku@@ bur@@ ikidza ne@@ kumu@@ pa chi@@ ok@@ omu@@ hom@@ we kuti as@@ a@@ ongor@@ ore ku@@ bir@@ idzira kwai@@ ita k@@ amb@@ ani yacho . +Izvi zvakaita kuti ndi@@ ziv@@ ikan@@ we se@@ munhu asina kut@@ end@@ es@@ eka . +P@@ and@@ aka@@ dzidza chokwadi , nd@@ akaramba ku@@ end@@ erera mberi ne@@ kuita izvozvo , kunyange zvazvo basa racho r@@ aiva nem@@ ari yakawanda . +Nd@@ iri muenzaniso w@@ akanaka ku@@ van@@ akomana vangu vaviri , uye nd@@ akak@@ wanisa kup@@ iwa zve@@ kuita muungano . +V@@ anoita zvem@@ it@@ ero nevamwe vand@@ ino@@ ita navo zve@@ b@@ hiz@@ in@@ esi vava kun@@ di@@ ziva se@@ munhu akat@@ end@@ es@@ eka . ” +R@@ ute akat@@ amira kuny@@ ika ye@@ Israeri kwa@@ aigona kunamata Mwari wechokwadi . +1 : 16 . +N@@ de@@ chipi chi@@ po chikuru pane zvose chaka@@ piwa vanhu naJehovha chin@@ oratidza mutsa wake usina kuk@@ odzera ku@@ wan@@ wa ? +T@@ ing@@ ar@@ atidza sei kuti h@@ ati@@ ch@@ atong@@ wi nechi@@ vi asi ne@@ mutsa usina kuk@@ odzera ku@@ wan@@ wa ? +M@@ utsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha uno@@ ita kuti ti@@ wane mak@@ omborero ap@@ i ? +1 , 2 . ( a ) T@@ s@@ anangura mu@@ fananidzo wa@@ Jesu we@@ mur@@ idzi we@@ mun@@ da wem@@ iz@@ amb@@ iring@@ a . ( b ) N@@ yaya yacho ino@@ budisa sei pachena chin@@ onzi rup@@ o uye mutsa usina kuk@@ odzera ku@@ wan@@ wa ? +Kana kuti muri kuita sh@@ an@@ j@@ e ne@@ kuti nd@@ ine rup@@ o here ? ’ — M@@ at . +( Verenga 2 VaKorinde 6 : 1 . ) +Nei Jehovha akaratidza vanhu mutsa usina kuk@@ odzera ku@@ wan@@ wa , uye aka@@ ur@@ atidza sei ? +Zv@@ inor@@ ev@@ ei kuti mutsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha “ un@@ or@@ atidzwa nenzira dz@@ akasiyana - siyana ” ? +Muapostora Petro akanyora kuti : “ Ma@@ ererano noku@@ gamuchira chi@@ po kwakaita mumwe nomumwe , chis@@ hand@@ is@@ ei pa@@ kush@@ um@@ irana se@@ vat@@ ariri v@@ akanaka kwazvo vomu@@ ts@@ a usina kuk@@ odzera ku@@ wan@@ wa waMwari un@@ or@@ atidzwa nenzira dz@@ akasiyana - siyana . ” +Muapostora Johani akanyora kuti : “ T@@ ose taka@@ gamuchira kubva pane zva@@ az@@ ere nazvo , iwo mutsa usina kuk@@ odzera ku@@ wan@@ wa pamusoro po@@ mumwe mutsa usina kuk@@ odzera ku@@ wan@@ wa . ” +Tino@@ batsirwa sei ne@@ mutsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha , uye ting@@ ar@@ atidza sei kuti tino@@ onga mutsa i@@ woyo ? +( Verenga 1 Johani 1 : 8 , 9 . ) +M@@ utsa usina kuk@@ odzera ku@@ wan@@ wa waMwari uno@@ ita kuti tive ne@@ chii ? +Kur@@ atidzwa kwe@@ mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari : R@@ o@@ pafadzo ye@@ kunzwa mashoko akanaka ( Ona nd@@ ima 11 ) +Vaka@@ zodzwa vanoita sei kuti “ mamwe mak@@ wai ” ave akarurama ? +Chik@@ omborero che@@ munyengetero ( Ona nd@@ ima 12 ) +M@@ uny@@ engetero uno@@ batana pap@@ i ne@@ mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari ? +M@@ utsa usina kuk@@ odzera ku@@ wan@@ wa ung@@ at@@ ibatsira sei “ panguva y@@ akakodzera ” ? +M@@ woyo yedu ino@@ batsirwa sei ne@@ mutsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha ? +M@@ utsa usina kuk@@ odzera ku@@ wan@@ wa waMwari uno@@ ita kuti tive ne@@ tariro ye@@ i ? +( Verenga Pisarema 4@@ 9 : 7 , 8 . ) +Vamwe vaKristu ve@@ pakutanga vais@@ handisa sei zvis@@ iri izvo mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari ? +Sezvo Jehovha ak@@ ati@@ itira mutsa usina kuk@@ odzera ku@@ wan@@ wa , zvi@@ i zvatino@@ fanira kuita ? +I@@ basa r@@ ipi r@@ ati@@ in@@ aro ri@@ cha@@ ongor@@ orwa mun@@ yaya inot@@ evera ? + +20 : 24 . +M@@ utsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha unofanira kut@@ i@@ kurudzira kuit@@ ei ? +“ Mashoko akanaka ou@@ mambo ” ano@@ budisa sei pachena mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari ? +Mun@@ yika itsva , Jehovha ach@@ ar@@ atidza sei mutsa wake usina kuk@@ odzera ku@@ wan@@ wa ? +Muapostora Pauro akaratidza sei kuti ai@@ onga mutsa usina kuk@@ odzera ku@@ wan@@ wa waMwari ? +M@@ U@@ A@@ P@@ O@@ S@@ T@@ OR@@ A Pauro aigona kutaura nem@@ woyo wose kuti : “ M@@ utsa [ waMwari ] usina kuk@@ odzera ku@@ wan@@ wa wa@@ akandi@@ itira ha@@ una kuva mutsa usina zva@@ uno@@ batsira . ” +( Verenga 1 VaKorinde 15 : 9 , 10 . ) +( Verenga VaEfeso 3 : 5 - 8 . ) +Nei tichi@@ gona kutaura kuti “ mashoko akanaka ou@@ mambo ” ndi@@ wo mashoko akanaka “ omu@@ ts@@ a usina kuk@@ odzera ku@@ wan@@ wa waMwari ” ? +P@@ at@@ in@@ ou@@ dza vanhu nezv@@ er@@ udz@@ ikin@@ uro , t@@ inenge tichi@@ paradz@@ ira sei mashoko akanaka omu@@ ts@@ a usina kuk@@ odzera ku@@ wan@@ wa waMwari ? +Nei zvi@@ chik@@ osha kuti vanhu vane chivi va@@ y@@ an@@ an@@ is@@ we naMwari ? +Muapostora Johani akanyora kuti : “ Ano@@ t@@ enda mu@@ Mwanakomana ane upenyu husingaperi ; asing@@ at@@ eer@@ eri Mwanakomana ha@@ az@@ o@@ oni upenyu , asi h@@ asha dza@@ Mwari dz@@ inor@@ amba dziri pa@@ ari . ” +9 , 10 . ( a ) Kristu akapa hama dzake dzaka@@ zodzwa basa r@@ ipi ? +Naizvozvo tiri n@@ hum@@ e dzin@@ om@@ ir@@ irira Kristu , so@@ kunge kuti Mwari akanga achit@@ et@@ erera achis@@ handisa is@@ u . +Nei ari mashoko akanaka kuti vanhu va@@ z@@ ive kuti vanogona kuny@@ engetera kuna Jehovha ? +Vanhu vakawanda vanot@@ i kuny@@ engetera kunoita kuti vanz@@ we zvakanaka , asi ha@@ vany@@ atso@@ bvum@@ i kuti Mwari an@@ onzwa min@@ y@@ engetero yavo . +V@@ anofanira kuziva kuti Jehovha ndiye “ M@@ unz@@ wi wo@@ munyengetero . ” +M@@ uny@@ ori wem@@ ap@@ isarema Dhavhidhi akanyora kuti : “ H@@ ai@@ wa imi M@@ unz@@ wi wo@@ munyengetero , vanhu vem@@ arudzi ose vacha@@ uya kwa@@ muri . +Jesu aka@@ udza vadzidzi vake kuti : “ Kana muk@@ a@@ kumbira chimwe chinhu mu@@ zita r@@ angu , ndi@@ cha@@ chi@@ ita . ” +13 , 14 . ( a ) Vaka@@ zodzwa va@@ chava ner@@ o@@ pafadzo dz@@ ipi dzaka@@ z@@ onaka mune ram@@ ang@@ wana ? +( b ) Vaka@@ zodzwa vacha@@ itira vanhu basa r@@ ipi rin@@ os@@ hamisa ? +M@@ ung@@ uva y@@ emberi , Jehovha ach@@ ar@@ atidza sei mutsa wake usina kuk@@ odzera ku@@ wan@@ wa kune “ mamwe mak@@ wai ” ? +Vanhu vanos@@ vika m@@ amiriyoni vakafa vasing@@ aziv@@ i Mwari vacha@@ muts@@ wawo . +Johani akanyora kuti : “ Ndaka@@ ona vakafa , vakuru neva@@ duku , vam@@ ire pamberi pe@@ chi@@ g@@ aro ch@@ ou@@ mambo , uye m@@ ip@@ umb@@ uru yaka@@ v@@ hur@@ wa . +Vaka@@ fa vakat@@ ongwa nezvinhu zvi@@ ya zvakanga zv@@ akanyorwa mum@@ ip@@ umb@@ uru maererano nem@@ abasa avo . +G@@ ungwa raka@@ budisa vaya vakafa vakanga vari mar@@ iri , uye rufu ne@@ H@@ adh@@ esi zvaka@@ budisa vakafa vakanga vari ma@@ zviri , uye vakat@@ ongwa mumwe nomumwe maererano nem@@ abasa ake . ” +Chii ch@@ atino@@ fanira kuramba tichi@@ yeuka p@@ atino@@ ita basa re@@ kuparidza ? +Bhaibheri rinoti : “ Zvis@@ ikwa zvi@@ ch@@ as@@ unung@@ ur@@ wawo mu@@ ur@@ anda hwoku@@ ora zvo@@ va nor@@ us@@ ununguko runo@@ b@@ win@@ ya rwe@@ vana vaMwari . ” +Ano@@ ti@@ wo : “ N@@ y@@ ora , nokuti mashoko aya akatendeka uye nde@@ echokwadi . ” +P@@ at@@ inos@@ h@@ ingaira ku@@ udza vamwe mashoko aya akanaka , tino@@ ita kuti mutsa usina kuk@@ odzera ku@@ wan@@ wa waJehovha u@@ kudz@@ we ! +“ R@@ amb@@ ai mu@@ chit@@ svaka Umambo [ hwaMwari ] , uye zvinhu izvi zvicha@@ wedz@@ erwa kwa@@ muri . ” — R@@ U@@ K@@ A 12 : 31 . +Mus@@ iy@@ ano upi uri pakati pe@@ zvinhu zvinokosha pa@@ kurarama nezvinhu zvat@@ in@@ ongo@@ da@@ wo he@@ du ? +Nei tichi@@ fanira kudz@@ ora ch@@ ish@@ u@@ wo che@@ kuda zvinhu zvakawanda ? +Nei u@@ ine chokwadi che@@ kuti Jehovha anogona ku@@ kupa zvinokosha pa@@ kurarama zuva rimwe ner@@ imwe ? +Satani anos@@ handisa sei “ kuchi@@ va kwem@@ az@@ iso ” ? +Ng@@ ati@@ ye@@ uk@@ ei zvat@@ akany@@ ever@@ wa ne@@ muapostora Johani kuti : “ Nyika iri kupfuura pamwe chete noku@@ chi@@ va kwa@@ yo . ” +Chii chino@@ gona ku@@ itika kune vaya vanos@@ handisa simba raka@@ wanda paku@@ wedzera zvinhu zva@@ va@@ in@@ a@@ zvo ? +Chii ch@@ ati@@ cha@@ ongorora , uye kuita izvozvo kuch@@ at@@ ibatsira sei ? +8 , 9 . ( a ) Nei tis@@ inga@@ faniri kuny@@ anya ku@@ zvid@@ ya mwoyo pamusoro pe@@ zvinhu zve@@ kurarama nazvo ? +( b ) Jesu ai@@ ziv@@ ei nezve@@ vanhu uye zvinokosha pa@@ kurarama kwavo ? +Jesu pa@@ aka@@ dzidzisa vat@@ eer@@ eri vake kuti vang@@ any@@ engetera sei , akati vai@@ fanira kuny@@ anya kuk@@ osh@@ es@@ ei muupenyu hwavo ? +Tino@@ dzidz@@ ei paku@@ chengeta kunoita Jehovha sh@@ iri dzoku@@ denga ? +Tinofanira ‘ kuny@@ atso@@ ch@@ ere@@ ch@@ edza sh@@ iri dzoku@@ denga . ’ +Kunyange zvakadaro , ha@@ a@@ isi chik@@ af@@ u chacho mum@@ ir@@ omo y@@ adzo ! +Chii chin@@ oratidza kuti tino@@ kosha kupfuura sh@@ iri dzoku@@ denga ? +( E@@ nz@@ anisa na@@ Ruka 12 : 6 , 7 . ) +15 , 16 . ( a ) Tino@@ dzidz@@ ei kubva paku@@ chenget@@ wa kuno@@ itwa mar@@ uva e@@ mus@@ ango naJehovha ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) M@@ ibvunzo ipi yat@@ inga@@ zv@@ ibvunz@@ a , uye nei ? +Jehovha ano@@ ziva chii nezve@@ mumwe ne@@ mumwe wedu , uye chii cha@@ ach@@ ati@@ itira ? +Nei tis@@ inga@@ faniri ku@@ net@@ seka pamusoro pe@@ zving@@ ango@@ itika mune ram@@ ang@@ wana ? +Uno@@ gona here kuita kuti us@@ ava ne@@ zvakawanda muupenyu hw@@ ako kuitira kuti u@@ wedz@@ ere kuita mabasa e@@ Umambo ? ( +( a ) Ung@@ ava ne@@ chinangwa chipi pa@@ kush@@ umira Jehovha ? +( b ) Ung@@ aita sei kuti u@@ ite kuti us@@ ava ne@@ zvakawanda muupenyu hw@@ ako ? +Chii chi@@ cha@@ kubatsira kus@@ wed@@ era pedyo naJehovha ? +T@@ s@@ anangura kuti nei zvi@@ chik@@ osha kuti tiz@@ ive kuti nguva ya@@ va pap@@ i uye kuti tiz@@ ive zvin@@ enge zvichi@@ itika pat@@ inenge tiri . +Nei Jesu aka@@ udza vadzidzi vake kuti ‘ var@@ ambe vakar@@ inda ’ ? +Nei ti@@ chiny@@ ats@@ ot@@ eerera ny@@ ev@@ ero ya@@ Jesu ? +( a ) Nei tichi@@ gona kuti par@@ i@@ zvino Jesu ava kuziva kuti A@@ mag@@ ed@@ h@@ oni icha@@ itika ri@@ ini ? +( b ) Kunyange zvazvo tis@@ ing@@ aziv@@ i kuti kutambudz@@ ika kukuru kuch@@ at@@ anga ri@@ ini , tinogona kuva nechokwadi ch@@ ei ? +Jesu pa@@ aiva panyika , akataura kuti : “ Hapana munhu ano@@ ziva nezve@@ zuva iroro ne@@ awa , kunyange ng@@ irozi dzoku@@ mat@@ enga kana Mwanakomana , asi Baba vo@@ ga . ” +( Verenga H@@ ab@@ ha@@ kuk@@ i 2 : 1 - 3 . ) +T@@ aura muenzaniso un@@ oratidza kuti Jehovha ano@@ zadz@@ isa up@@ ro@@ f@@ ita hwake panguva chai@@ yo ya@@ anenge as@@ arudza . +U@@ profita hwa@@ Jehovha hwa@@ gara hu@@ chi@@ zadz@@ ika panguva chai@@ yo ya@@ anenge as@@ arudza ! +Pane imwe nguva , Jehovha aka@@ z@@ ou@@ dza Abra@@ hamu kuti : “ Chokwadi ziva kuti vana vako va@@ chava vat@@ orwa munyika is@@ iri yavo , vach@@ av@@ as@@ hand@@ ira , uye i@@ vava vach@@ av@@ at@@ amb@@ udza kwem@@ akore ma@@ zana m@@ ana . ” +Nei ting@@ ava nechokwadi che@@ kuti Jehovha ach@@ an@@ un@@ ura vanhu vake ? +7 , 8 . ( a ) Mur@@ indi aiita basa re@@ i kare , uye izvozvo zvinot@@ idz@@ idz@@ is@@ ei ? +( b ) T@@ aura muenzaniso we@@ zvai@@ gona ku@@ itika kana var@@ indi vakar@@ ara pa@@ basa . +Chii chis@@ iri ku@@ zivikanwa nevanhu vakawanda mazuva ano ? +10 , 11 . ( a ) Chii ch@@ atino@@ fanira kung@@ warira kuti chis@@ a@@ itika , uye nei ? +( b ) Chii chino@@ kuratidza kuti D@@ hiy@@ abhorosi ari kup@@ of@@ um@@ adza vanhu kuti vas@@ at@@ eer@@ ere up@@ ro@@ f@@ ita hwe@@ Bhaibheri ? +Nei tis@@ inga@@ faniri kure@@ ga D@@ hiy@@ abhorosi achit@@ iny@@ eng@@ era ? +Jesu akat@@ iny@@ evera kuti : “ R@@ amb@@ ai m@@ aka@@ gadzirira , nokuti Mwanakomana wo@@ munhu an@@ ouya pa@@ awa ya@@ mus@@ inga@@ fung@@ idz@@ iri . ” +Mudz@@ imu w@@ enyika uri kuk@@ anganisa sei vanhu uye t@@ inga@@ ita sei kuti ti@@ zvidz@@ iv@@ irire ? +Ruka 21 : 34 , 35 inot@@ iny@@ evera nezv@@ ei ? +( Verenga Ruka 21 : 34 , 35 . ) +Chii chaka@@ itika kuna Petro , Jakobho na@@ Johani , uye izvozvo zv@@ inga@@ it@@ ik@@ awo sei kwat@@ iri ? +Ma@@ ererano na@@ Ruka 21 : 36 Jesu akati tinofanira kuita sei kuti ‘ tir@@ ambe taka@@ muka ’ ? +4 : 7 . T@@ ing@@ ava sei nechokwadi che@@ kuti t@@ ag@@ adz@@ irira zviri mberi ? +[ 1 ] ( nd@@ ima 14 ) Ona chit@@ sa@@ uko 21 che@@ bhuku ra@@ Umambo hwaMwari H@@ uri Kut@@ onga ! +P@@ at@@ aiva pa@@ g@@ ungano , imwe hama y@@ akandi@@ bvunza kana nd@@ aida kuparidza . +T@@ aka@@ enda kund@@ ima yat@@ a@@ ino@@ par@@ idza , uye hama iya y@@ akandi@@ pa t@@ um@@ abhuku t@@ wa@@ it@@ aura nezve@@ Umambo hwaMwari . +Imwe hanzvadzi ya@@ iti@@ it@@ isa zvidz@@ idzo kubva muBhaibheri uye mu@@ bhuku rinonzi The H@@ ar@@ p of God . +Se@@ muk@@ omana wechi@@ d@@ iki , nd@@ ain@@ ak@@ idzwa ne@@ ku@@ zivisa vanhu tariro iri mu@@ Shoko raMwari . +Hama yacho y@@ ak@@ am@@ isa bh@@ as@@ ik@@ oro ikan@@ di@@ kumbira kuti t@@ imbo@@ gara pane rimwe d@@ anda . +Y@@ aka@@ bva y@@ ati : “ W@@ akap@@ iwa nani simba re@@ kuti ut@@ ong@@ e kuti mb@@ udzi nd@@ edz@@ ipi ? +Ng@@ at@@ ing@@ of@@ arira kupa vanhu mashoko akanaka t@@ os@@ iy@@ ira Jehovha kuti atong@@ e . ” +Im@@ wewo hama yechi@@ kuru y@@ ak@@ and@@ idz@@ idzisa kuti dzimwe nguva tinofanira kuts@@ ungirira ti@@ chir@@ atidza mwoyo mu@@ refu kuti ti@@ wane mufaro . +P@@ ap@@ era makore , yaka@@ wana mu@@ bayiro we@@ kuratidza mwoyo mu@@ refu p@@ aka@@ bhabhatidzwa mudzimai wayo kuti ave mumwe we@@ Zvapupu zvaJehovha . +H@@ ondo pa@@ yaka@@ p@@ era , ndaka@@ pa@@ y@@ ona kwem@@ akore maviri ne@@ che@@ kuma@@ odz@@ any@@ emba kwe@@ I@@ rel@@ and . +T@@ ais@@ az@@ iva simba r@@ aiva nem@@ ap@@ rist@@ i . +N@@ da@@ inge nd@@ isati nd@@ amb@@ of@@ amba ne@@ mug@@ ungwa , saka nd@@ ai@@ fara chaizvo . +K@@ wem@@ akore mas@@ hanu , tain@@ y@@ anya kuparidza mu@@ zvit@@ su@@ wa zv@@ aiva kwazvo zve@@ ga zvakanga zvisina Zvapupu . +M@@ am@@ ish@@ in@@ ari ari mu@@ S@@ ib@@ ia ( kubva kuru@@ b@@ osh@@ we tichi@@ enda kur@@ ud@@ yi ) : R@@ on Par@@ k@@ in , D@@ ick R@@ y@@ de , G@@ ust Mak@@ i , na@@ St@@ an@@ le@@ y C@@ ar@@ ter +V@@ ai@@ wanzo@@ ti@@ pa ho@@ ve nem@@ ak@@ ot@@ ap@@ e@@ ya n@@ enz@@ ungu . +Kana kwa@@ d@@ oka ta@@ ir@@ idza bh@@ ero re@@ chik@@ ep@@ e . +Zva@@ if@@ adza chaizvo kuona kuti vamwe vacho va@@ ik@@ oshesa zvikuru basa r@@ at@@ ai@@ vas@@ i@@ ira . +P@@ at@@ akasvika , ndaka@@ on@@ ana na@@ Ma@@ x@@ ine Bo@@ y@@ d , imwe ts@@ var@@ aka@@ denga yaiva mum@@ ish@@ in@@ ari , tik@@ ab@@ va t@@ ad@@ an@@ ana . +Saka ndaka@@ zvi@@ udza kuti , ‘ R@@ on@@ al@@ d , kana uchi@@ da mus@@ ikana uyu , w@@ ot@@ om@@ ira - m@@ ira ne@@ ku@@ kurumidza . ’ +P@@ ap@@ era ma@@ vhiki mat@@ atu ndaka@@ mu@@ udza kuti nd@@ aida kumu@@ ro@@ ora uye taka@@ ch@@ ata pashure pam@@ av@@ h@@ iki mat@@ anh@@ atu . +In@@ i na@@ Ma@@ x@@ ine t@@ akan@@ zi tis@@ hand@@ e sem@@ am@@ ish@@ in@@ ari mu@@ P@@ u@@ er@@ to R@@ ic@@ o , saka hand@@ ina kuz@@ omb@@ of@@ amba ne@@ b@@ ho@@ ti ri@@ ya remain@@ j@@ ini . +Se@@ muenzaniso , mu@@ musha we@@ P@@ ot@@ al@@ a Pas@@ ti@@ l@@ l@@ o m@@ aiva nem@@ huri mbiri dze@@ Zvapupu dzine vana vakawanda , uye nd@@ ai@@ wanzo@@ var@@ idzira chir@@ idzwa chin@@ onzi fl@@ ute . +Ndaka@@ bvunza k@@ amwe k@@ asikana k@@ ain@@ zi H@@ il@@ da kuti k@@ aida here kuno@@ par@@ idza nes@@ u . +T@@ ak@@ akat@@ eng@@ era bh@@ uts@@ u , tik@@ ab@@ va ta@@ enda kuno@@ par@@ idza t@@ ose . +Y@@ akanga ya@@ va pedyo kuenda ku@@ Ec@@ u@@ ad@@ or kwa@@ yai@@ zos@@ humira , uye yakati : “ Ha@@ muna kun@@ di@@ ziva hand@@ iti ? +Nd@@ ini k@@ asikana ke@@ ku@@ Pas@@ ti@@ l@@ l@@ o k@@ a@@ inge k@@ asina bh@@ uts@@ u . ” +Pa@@ kutanga , ini na@@ L@@ en@@ n@@ ar@@ t Joh@@ n@@ son tis@@ u t@@ aiita basa raka@@ wanda . +Hama Na@@ than K@@ nor@@ r , avo vait@@ ungamirira Zvapupu zvaJehovha panguva iyoyo , vaka@@ uya ku@@ P@@ u@@ er@@ to R@@ ic@@ o . +Vaka@@ z@@ on@@ di@@ pa zano r@@ akasimba pan@@ yaya ye@@ kur@@ ong@@ eka uye v@@ akati va@@ inge vasina kuf@@ ara nazvo . +In@@ i na@@ A@@ ma@@ i pat@@ aka@@ gamuchira chokwadi , Baba havana . +Mudz@@ im@@ ai wangu Ma@@ x@@ ine akas@@ ha@@ ya muna 20@@ 11 . +Nd@@ inot@@ arisira ku@@ zo@@ mu@@ ona zvak@@ are pa@@ cha@@ muts@@ wa vanhu . +Pashure pem@@ akore 60 ndiri pa@@ chit@@ su@@ wa ichi , ndakanga nd@@ ava kunzwa se@@ kuti ndiri chi@@ zvar@@ wa che@@ ku@@ P@@ u@@ er@@ to R@@ ic@@ o , se@@ k@@ ad@@ at@@ ya k@@ ano@@ gara mu@@ mut@@ i k@@ ano@@ zivikanwa zvikuru ikoko k@@ anonzi co@@ qu@@ í , k@@ anor@@ ira k@@ achiti ko - ke@@ e ko - ke@@ e kana zuva ra@@ v@@ ira . +Vamwe van@@ on@@ dis@@ hanyira kuti ti@@ kurukur@@ e nezvem@@ at@@ ambudziko avo kana kuti em@@ huri . +Zv@@ ose zvatino@@ ita pa@@ Bh@@ et@@ eri ib@@ asa dz@@ vene . +Ch@@ ero kwat@@ inos@@ humira Jehovha tiri , tine m@@ ikana ye@@ ku@@ mur@@ umb@@ idza . +N@@ yaya y@@ oupenyu ya@@ Le@@ on@@ ard S@@ m@@ ith iri mu@@ Nharireyomurindi ya@@ A@@ pri@@ l 15 , 20@@ 12 . +Nei tichi@@ gona kuti wan@@ ano chi@@ po chino@@ bva kuna Mwari ? +Ung@@ ar@@ ondedzera sei nh@@ or@@ oondo ye@@ wan@@ ano kubva panguva ya@@ Ad@@ hamu kusvika panguva ya@@ Jesu ? +Chii chino@@ gona kubatsira muKristu kuti as@@ arudz@@ e kuti op@@ inda mu@@ wan@@ ano here kana kuti kwete ? +1 , 2 . ( a ) W@@ an@@ ano y@@ akatanga sei ? +( b ) Mur@@ ume ne@@ mudzimai ve@@ kutanga vanofanira kunge v@@ akan@@ z@@ wis@@ is@@ ei nezve@@ wan@@ ano ? +( Verenga Genes@@ isi 2 : 20 - 24 . ) +Chin@@ angwa chinokosha che@@ wan@@ ano chai@@ va che@@ kuti panyika pa@@ z@@ are nevanhu . +Tino@@ dzidz@@ ei pam@@ ap@@ ind@@ ur@@ iro akaita Ad@@ hamu na@@ E@@ vha pa@@ vaka@@ bvunz@@ wa naJehovha ? +Ung@@ ats@@ anangura sei Genes@@ isi 3 : 15 ? +( a ) Chii chiri ku@@ itika mu@@ wan@@ ano kubva p@@ akap@@ and@@ uka Ad@@ hamu na@@ E@@ vha ? +( b ) Bhaibheri rin@@ or@@ ayira kuti varume nema@@ dz@@ im@@ ai va@@ ite sei ? +T@@ s@@ anangura nh@@ or@@ oondo ye@@ wan@@ ano kubva panguva ya@@ Ad@@ hamu kusvika pa@@ M@@ af@@ as@@ hamo . +Jehovha aka@@ it@@ ei kune vaka@@ ipa panguva ya@@ No@@ a uye tino@@ dzidz@@ ei pane zvakaitika panguva iyoyo ? +( a ) M@@ uts@@ ika dzakawanda , vanhu vai@@ ona sei unz@@ enza ? +( b ) Abra@@ hamu na@@ S@@ ara vakar@@ atidza sei muenzaniso w@@ akanaka mu@@ wan@@ ano yavo ? +( Verenga 1 Petro 3 : 3 - 6 . ) +Mutemo wa@@ Mosesi wa@@ ich@@ enget@@ edza sei vaIsraeri ? +( Verenga Dhe@@ uteronom@@ io 7 : 3 , 4 . ) +12 , 13 . ( a ) M@@ ung@@ uva ya@@ Mar@@ ak@@ i , vamwe varume va@@ ib@@ ata sei ma@@ dz@@ im@@ ai avo ? +( b ) M@@ azuva ano , munhu aka@@ bhabhatidzwa ak@@ ati@@ za ne@@ murume kana kuti ne@@ mudzimai we@@ mumwe , zvino@@ guma nei ? +( a ) Mu@@ ungano yechiKristu , wan@@ ano y@@ aizo@@ fanira kunge yaka@@ ita sei ? +Pauro aka@@ wedzera kuti : “ Kana vasing@@ ak@@ wan@@ isi ku@@ zvidz@@ ora , ng@@ av@@ ar@@ o@@ ore kana kuro@@ orwa , nokuti zviri nani kuro@@ ora kana kuro@@ orwa pane kuts@@ va . ” +18 , 19 . ( a ) W@@ an@@ ano yechiKristu ino@@ fanira kutanga sei ? +( b ) N@@ yaya inot@@ evera ich@@ at@@ aura nezv@@ ei ? +Mwari akati varume nema@@ dz@@ im@@ ai vanofanira kuit@@ ei ? +Nei rudo uye uny@@ oro zvi@@ chik@@ osha chaizvo mu@@ wan@@ ano ? +Bhaibheri r@@ ing@@ ab@@ atsira sei kana wan@@ ano i@@ ine mat@@ ambudziko ? +Kunyange zvazvo wan@@ ano ichi@@ wan@@ zot@@ anga ne@@ mufaro , vanop@@ inda mu@@ wan@@ ano vang@@ at@@ arisira chii ? +V@@ ari mu@@ wan@@ ano vanofanira kur@@ atidz@@ ana rudo rw@@ akaita sei ? +R@@ udo runo@@ fanira kunge rw@@ akasimba zvakadini mu@@ wan@@ ano ? +Pauro akanyora kuti : “ V@@ ar@@ ume , r@@ amb@@ ai muchi@@ da ma@@ dz@@ im@@ ai enyu , Kristu zva@@ aka@@ da@@ wo ungano , aka@@ zv@@ ipa nokuda kwa@@ yo . ” +( Verenga Johani 13 : 34 , 35 ; 15 : 12 , 13 . ) +4 , 5 . ( a ) Zvi@@ i zvino@@ fanira kuitwa ne@@ murume se@@ musoro w@@ emba ? +( b ) Mudz@@ im@@ ai anofanira kuona sei nyaya ye@@ kuzvi@@ isa pasi pe@@ murume wake ? +( c ) Zvi@@ i zvai@@ fanira ku@@ chinj@@ wa ne@@ mumwe murume ne@@ mudzimai pa@@ vakar@@ oorana ? +K@@ uva nem@@ ba kwai@@ da kuti ndi@@ chinj@@ e zvimwe zvinhu se@@ zvand@@ a@@ idz@@ idza kuit@@ irwa zvimwe zvinhu ne@@ murume wangu . +Dzimwe nguva zvakanga zvis@@ iri nyore , asi kuita zvinhu se@@ zvinodiwa naJehovha kwakaita kuti ti@@ wedz@@ ere kud@@ an@@ ana . ” +Kus@@ arudz@@ ira vanhu vaviri kw@@ akat@@ onyanya ku@@ oma . +Asi kuny@@ engetera ndi@@ chit@@ svaka kut@@ ungamir@@ irwa naJehovha uye kuny@@ ats@@ ot@@ eerera zvino@@ taurwa ne@@ mudzimai wangu kuri kuita kuti zvir@@ ambe zvichi@@ ita nyore . +Ndino@@ ona se@@ kuti tiri kuita mu@@ shand@@ ir@@ ap@@ amwe chai@@ wo ! ” +P@@ ano@@ muka mat@@ ambudziko mu@@ wan@@ ano , rudo runo@@ sh@@ anda sei ‘ se@@ chis@@ ung@@ o ch@@ akakwana choku@@ batana ’ ? +7 , 8 . ( a ) Bhaibheri rino@@ pa zano r@@ ipi kune vari mu@@ wan@@ ano pan@@ yaya ye@@ b@@ on@@ de ? +( b ) Nei vari mu@@ wan@@ ano vachi@@ fanira kuva ne@@ uny@@ oro ? +( Verenga 1 VaKorinde 7 : 3 - 5 . ) +Hapana anofanira kuita zve@@ ku@@ man@@ ikidza mumwe kuti va@@ ende pa@@ b@@ on@@ de , zvino@@ fanira kungo@@ itika zve@@ ga . +Nei kuva nechi@@ do che@@ kuenda pa@@ b@@ on@@ de ne@@ munhu wa@@ usina kuro@@ or@@ ana naye kwaka@@ ipa zvikuru ? +10 , 11 . ( a ) D@@ ambudziko re@@ kur@@ amb@@ ana raka@@ kura zvakadini ? +( b ) Bhaibheri rino@@ ti@@ i nezve@@ kupar@@ adz@@ ana ? +( c ) Chii ching@@ ab@@ atsira vari mu@@ wan@@ ano kuti vas@@ a@@ kurumidza kupar@@ adz@@ ana ? +Chii ch@@ inga@@ ita kuti vari mu@@ wan@@ ano va@@ fung@@ e kupar@@ adz@@ ana ? +Bhaibheri rino@@ ti@@ i kumu@@ Kristu ane murume kana mudzimai as@@ iri mush@@ umiri waJehovha ? +( Verenga 1 VaKorinde 7 : 12 - 14 . ) +Kana kuti , iwe murume , uno@@ ziva sei kuti ha@@ u@@ z@@ op@@ on@@ esi mudzimai wako ? ” +15 , 16 . ( a ) Bhaibheri rino@@ pa zano r@@ ipi kuma@@ dz@@ im@@ ai e@@ chiKristu ane varume vas@@ iri vashumiri vaMwari ? +( b ) ‘ Kana asing@@ at@@ endi akas@@ arudza kuenda , ’ muKristu ang@@ ait@@ ei p@@ akadaro ? +Muapostora Petro ano@@ pa ma@@ dz@@ im@@ ai e@@ chiKristu zano re@@ kuti zvi@@ is@@ ei pasi p@@ ev@@ ar@@ ume v@@ enyu , “ kuti kana pa@@ ine vasing@@ at@@ eer@@ eri shoko , mu@@ va@@ wane no@@ muf@@ ambiro w@@ enyu pasina shoko rino@@ taurwa , noku@@ va kwavo zv@@ apupu zvaka@@ ona muf@@ ambiro w@@ enyu waka@@ chena pamwe chete nor@@ ur@@ emek@@ edzo ru@@ kuru . ” +K@@ o kana asing@@ at@@ endi wacho akas@@ arudza kuenda ? +Bhaibheri rinoti : “ Kana asing@@ at@@ endi aka@@ bva , nga@@ ab@@ ve h@@ ake ; hama kana hanzvadzi ha@@ isi mu@@ ur@@ anda [ ha@@ im@@ an@@ ik@@ idz@@ wi ] mum@@ amiriro ezvinhu akadaro , asi Mwari aka@@ kud@@ an@@ irai rugare . ” +Va@@ Kristu vari mu@@ wan@@ ano vanofanira ku@@ isa chii pe@@ kutanga ? +Va@@ Kristu vang@@ aita sei kuti vave ne@@ wan@@ ano ino@@ fadza uye ino@@ budirira ? +[ 1 ] ( nd@@ ima 5 ) M@@ az@@ ita aka@@ chinj@@ wa . +[ 2 ] ( nd@@ ima 13 ) Ona bhuku rinonzi “ R@@ amb@@ ai M@@ uri Mur@@ udo rwa@@ Mwari , ” mashoko oku@@ wedzera , “ Zvino@@ taura Bhaibheri Ne@@ zvo@@ kur@@ amb@@ ana Uye Kup@@ ar@@ adz@@ ana . ” +Zvino@@ fadza chaizvo kuparidza m@@ ang@@ wan@@ ani mu@@ mug@@ wagwa uno@@ t@@ ev@@ edza Dan@@ u@@ be R@@ iver ! +V@@ apar@@ idzi ava vari ku@@ udza munhu anoda kuteerera mashoko e@@ Umambo pa@@ V@@ ig@@ ad@@ ó S@@ qu@@ are mu@@ B@@ ud@@ ap@@ est , ku@@ H@@ ung@@ ary +Zvi@@ i zva@@ ung@@ aita kuti u@@ f@@ amb@@ ire mberi pa@@ kunamata ? +Ung@@ aita sei kuti u@@ f@@ amb@@ ire mberi pa@@ kunamata us@@ ing@@ an@@ eti ? +Zvi@@ i zva@@ ung@@ ach@@ inj@@ a zv@@ inga@@ kubatsira kuti uny@@ atso@@ budirira muushumiri ? +1 , 2 . ( a ) Isaya 60 : 22 iri kuz@@ adz@@ ika sei mu@@ mazuva ano e@@ ku@@ pedzisira ? +( b ) Iye zvino chii chiri ku@@ diwa mu@@ chik@@ amu ch@@ ep@@ an@@ yika ch@@ es@@ angano raJehovha ? +“ M@@ U@@ D@@ U@@ K@@ U ach@@ ava chi@@ uru uye aka@@ du@@ kupa ach@@ ava rudzi r@@ une simba . ” +Zvi@@ i zva@@ uno@@ da kuita kuti u@@ f@@ amb@@ ire mberi pa@@ kunamata ? +V@@ echi@@ d@@ iki vang@@ as@@ handisa sei simba ravo mum@@ abasa e@@ chiKristu ? +6 - 8 . ( a ) Imwe hama yechi@@ d@@ iki yaka@@ chinja sei ma@@ onero ay@@ aiita zve@@ kunamata , uye zvaka@@ guma nei ? +( b ) ‘ T@@ ing@@ ar@@ avira sei to@@ ona kuti Jehovha akanaka ’ ? +K@@ uk@@ ombor@@ era kwa@@ an@@ on@@ di@@ ita kunoita kuti nd@@ inz@@ we ndi@@ ine chik@@ wer@@ eti che@@ kuti ndi@@ it@@ e@@ wo zvakawanda mubasa rake , uye izvi zvinoita kuti ndi@@ wane mamwe mak@@ omborero . ” +( Verenga Pisarema 34 : 8 - 10 . ) +Nei zvi@@ chik@@ osha kuti u@@ ve munhu ‘ an@@ om@@ irira ’ ? +Un@@ hu h@@ upi hwe@@ chiKristu hw@@ at@@ ing@@ as@@ hand@@ ira kuti tive na@@ hwo , uye nei hu@@ chik@@ osha ? +V@@ ari muungano vang@@ ar@@ atidza sei kuti vanogona ku@@ vimb@@ wa navo ? +Ung@@ at@@ evedzera sei muenzaniso wa@@ Jos@@ ef@@ a kana vamwe vaka@@ ku@@ bata zvisina kunaka ? +Ung@@ aita sei kana vamwe vaka@@ ku@@ bata zvisina kunaka ? +14 , 15 . ( a ) Nei tichi@@ fanira ‘ ku@@ chenj@@ erera ’ nzira dz@@ atino@@ par@@ idza n@@ adzo ? +( b ) Ung@@ ach@@ inj@@ a sei maererano nem@@ amiriro ezvinhu ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino uye b@@ ho@@ k@@ isi r@@ akan@@ zi “ Uno@@ da Here K@@ umb@@ o@@ edza Imwe N@@ zira ? ” ) +Kup@@ ar@@ idzira munzvimbo dzino@@ wanikwa vanhu vakawanda kunogona ku@@ budirira sei ? +17 , 18 . ( a ) Ung@@ aita sei kuti u@@ wedz@@ ere kuva nechi@@ vimbo paku@@ par@@ idza munzvimbo dzino@@ wanikwa vanhu vakawanda ? +( b ) Nei ung@@ ati zvai@@ itwa na@@ Dhavhidhi pa@@ kurumb@@ idza Jehovha zvinogona ku@@ kubatsira pa@@ un@@ enge uri muushumiri ? +Ano@@ ti : “ Pa@@ kunamata kwedu kwem@@ huri , ini ne@@ mudzimai wangu tino@@ ts@@ va@@ kur@@ udza map@@ ind@@ ur@@ iro at@@ inga@@ ita zvino@@ taurwa nevanhu , kus@@ anganisira vaya vanor@@ amba kupar@@ idzirwa . +Tino@@ kumb@@ irawo ma@@ zano kune zvimwe Zvapupu . ” +( Verenga 1 Timoti 4 : 15 . ) +V@@ ach@@ at@@ aura nezvoku@@ kudz@@ wa kwou@@ mambo hw@@ enyu , uye vach@@ at@@ aura nezv@@ es@@ imba r@@ enyu , kuti va@@ ziv@@ ise van@@ akomana ve@@ vanhu mabasa ake es@@ imba noku@@ kudz@@ wa kwoku@@ b@@ win@@ ya kwou@@ mambo hwake . ” +Kana u@@ ine zvakawanda zve@@ kuita mus@@ angano raJehovha , ung@@ ava@@ wo sei chik@@ omborero kune vamwe ? +Iye zvino V@@ en@@ ec@@ ia anoti : “ Kup@@ ar@@ idzira paf@@ oni kuno@@ sh@@ anda ! ” +Mudz@@ im@@ ai wangu akas@@ ha@@ ya makore mat@@ atu akap@@ fuura , uye gore raka@@ p@@ era , mwanakomana wangu aka@@ f@@ ira mut@@ sa@@ ona . ” +Nd@@ iri ku@@ kuny@@ or@@ er@@ ai pashure pem@@ akore maviri se@@ hanzvadzi y@@ enyu yechiKristu . ” +Nei tichi@@ fanira kuita kuti vadzidzi ve@@ Bhaibheri vave nechi@@ do ch@@ akasimba che@@ kudzidza Magwaro vari ve@@ ga ? +T@@ ing@@ ab@@ atsira sei vat@@ sva kuti vat@@ a@@ ure na@@ van@@ as@@ a@@ imba ne@@ vam@@ wewo vanhu ? +Nei vakuru vachi@@ fanira kuita zv@@ ese zva@@ vanogona kuti vadzidz@@ ise vamwe kuti va@@ zova va@@ f@@ udzi ve@@ boka raMwari ? +Nei tichi@@ fanira kudzidzisa vamwe kuti va@@ ite mabasa ane che@@ kuita ne@@ kunamata ? +3 , 4 . ( a ) Pauro akaratidza sei kuti kudzidza Magwaro kwaka@@ batana ne@@ ku@@ budirira muushumiri ? +( b ) T@@ isati ta@@ kurudzira vat@@ ino@@ dzidza navo kuti vadzidz@@ e Bhaibheri vari ve@@ ga , tinofanira kunge tichi@@ ita sei ? +T@@ aura kuti vat@@ sva vang@@ ab@@ ats@@ irwa sei kuti va@@ gare vach@@ idz@@ idza Bhaibheri vari ve@@ ga . +Ung@@ a@@ zv@@ ibvunz@@ a kuti , ‘ Nd@@ ing@@ ab@@ atsira sei mudz@@ idzi wangu kuti ag@@ are ach@@ idz@@ idza Bhaibheri ? ’ +Mu@@ kurudz@@ ire kuti av@@ er@@ enge magazini imwe ne@@ imwe ye@@ Nharireyomurindi uye Muk@@ ai ! . +( a ) Ung@@ ab@@ atsira sei wa@@ uno@@ dzidza naye kuti a@@ wedz@@ ere kuda Bhaibheri ? +( b ) Kana mudz@@ idzi we@@ Bhaibheri akasvika paku@@ da Magwaro nem@@ woyo w@@ ese , kazhinji k@@ acho chii cha@@ ano@@ zo@@ ita ? +Jesu aka@@ dzidzisa sei va@@ ziv@@ isi vem@@ ashoko akanaka ? +8 , 9 . ( a ) Jesu ait@@ aura sei nevanhu pa@@ aiita ushumiri hwake ? +( b ) T@@ ing@@ ab@@ atsira sei va@@ par@@ idzi vat@@ sva kuti va@@ kurukur@@ e nevanhu se@@ zvai@@ ita Jesu ? +10 - 12 . ( a ) Jesu aiita sei kuti vamwe var@@ ambe vachi@@ farira mashoko akanaka ? +( b ) T@@ ing@@ ab@@ atsira sei va@@ par@@ idzi vat@@ sva kuti va@@ vand@@ udz@@ e uny@@ anzvi hwavo hwe@@ kudzidzisa chokwadi che@@ Bhaibheri ? +13 , 14 . ( a ) Uno@@ fung@@ ei nezve@@ vanhu vari muBhaibheri vakaita mabasa e@@ ku@@ zvipira vachi@@ batsira vamwe ? +( b ) Ung@@ adz@@ idzisa sei va@@ par@@ idzi vat@@ sva uye vechi@@ d@@ iki kuti var@@ atidz@@ e rudo ku@@ hama ne@@ hanzvadzi dzavo ? +Nei zvi@@ chik@@ osha kuti vakuru vave ne@@ hanya ne@@ kuf@@ ambira mberi kwe@@ varume vari muungano ? +16 , 17 . ( a ) Pauro akaratidza sei kuti aiva ne@@ hanya ne@@ kuf@@ ambira mberi kwa@@ Timoti ? +( b ) Va@@ kuru vang@@ ab@@ ud@@ irira sei pa@@ kudzidzisa hama kuti dzi@@ zova va@@ f@@ udzi muungano ? +Nei tichi@@ fanira kuk@@ oshesa nyaya ye@@ kudzidzisa vamwe kuita basa raJehovha ? +Nei uchi@@ fanira kuva nechi@@ vimbo che@@ kuti uch@@ ab@@ ud@@ irira kana uk@@ as@@ handa nesimba pa@@ kudzidzisa vamwe kuita basa raJehovha ? +Van@@ or@@ amba va@@ chin@@ d@@ in@@ amata pasina , nokuti vano@@ dzidzisa mir@@ ayiro ye@@ vanhu se@@ dzidziso . ’ +M@@ uno@@ bat@@ isisa tsika ye@@ vanhu mu@@ chir@@ e@@ ga mura@@ y@@ iro waMwari . ” — M@@ ako 7 : 6 - 8 . +3 “ Ma@@ oko A@@ ko N@@ ga@@ are@@ ge Kus@@ ha@@ y@@ iwa S@@ imba ” +Jehovha akas@@ imbisa sei ma@@ oko a@@ Mosesi , As@@ a , na@@ Ne@@ hem@@ iya ? +Zvi@@ i zvat@@ inga@@ ita kuti tis@@ imb@@ ise ma@@ oko e@@ hama ne@@ hanzvadzi dzedu ? +( b ) Chii ch@@ inga@@ ita kuti ma@@ oko edu as@@ ha@@ ye simba ? +Se@@ muenzaniso , pane ma@@ zana em@@ av@@ h@@ esi anotaura nezv@@ er@@ u@@ oko . +Ung@@ a@@ wana sei simba re@@ kuts@@ ungirira wo@@ va ne@@ mufaro ? +Asi ma@@ oko a@@ Mosesi pa@@ akanga ava ku@@ rem@@ a ndo@@ kutanga kudz@@ ika , va@@ A@@ mar@@ ek@@ i vakat@@ anga ku@@ kunda . +( b ) Mwari akap@@ indura sei munyengetero wa@@ Ne@@ hem@@ iya ? +( Verenga Ne@@ hem@@ iya 1 : 10 ; 2 : 17 - 20 ; 6 : 9 . ) +Uno@@ t@@ enda here kuti Jehovha anos@@ handisa ‘ simba rake guru ’ uye ‘ ru@@ oko rwake r@@ une simba ’ kuti as@@ imb@@ ise vashumiri vake mazuva ano ? +10 , 11 . ( a ) Satani ano@@ edza sei kuita kuti ma@@ oko edu as@@ ha@@ ye simba ? +( b ) Jehovha anos@@ hand@@ is@@ ei kuti atis@@ imb@@ ise ? +Ano@@ shand@@ isa nh@@ ema uye kut@@ y@@ is@@ idzira kuno@@ itwa ne@@ hurumende , vat@@ ungamiriri vem@@ ach@@ e@@ chi uye vanhu vaka@@ pand@@ ukira s@@ angano . +13 , 14 . ( a ) Imwe hama y@@ akas@@ imb@@ iswa sei p@@ aka@@ fa mudzimai wayo ? +Kuny@@ engetera uye kudzidza ndiri nde@@ ga kun@@ on@@ di@@ batsira kuti nd@@ is@@ af@@ a pa@@ kunamata . +N@@ da@@ va kuona ku@@ kosha kwa@@ zvakaita kuti munhu ave ne@@ ukama hw@@ akanaka naJehovha asati aw@@ irwa nem@@ at@@ ambudziko . ” +Mwari anot@@ idz@@ idzisa sei kuti tir@@ wise va@@ vengi vedu ? +Ano@@ ti@@ bats@@ irawo achis@@ handisa misangano yechiKristu , mag@@ ungano , uye mabhuku ano@@ tsanangura Bhaibheri . +T@@ inga@@ ita sei kuti tis@@ a@@ kur@@ irwa ne@@ zvakaipa ? +( b ) Vanhu vap@@ i ve@@ muBhaibheri v@@ ati@@ cha@@ kurukura nezv@@ avo ? +Chii chaka@@ batsira Jakobho kuti ash@@ ing@@ irire , uye Mwari aka@@ muk@@ ombor@@ era sei ? +( Verenga Genes@@ isi 32 : 24 - 28 . ) +Vamwe vaKristu vaviri vaka@@ batsirwa sei kuti vadz@@ ore zvid@@ o zvakaipa ? +Muk@@ omana uyu aka@@ bats@@ ir@@ wawo n@@ eny@@ aya ine musoro uno@@ ti “ Mar@@ aram@@ iro As@@ iri O@@ mu@@ zvar@@ irwo ​ — Mwari Ano@@ abv@@ umira Here ? ” +Ak@@ ati , “ Ne@@ chikonzero i@@ cho@@ cho , ndino@@ funga kuti ndino@@ gona kuramba ndaka@@ vimbika zuva rimwe ner@@ imwe . +Nd@@ inot@@ enda Jehovha ne@@ kushandisa kwaari kuita s@@ angano rake pa@@ kut@@ ibatsira kuti tir@@ ar@@ ame zuva rimwe ner@@ imwe munyika ino yaka@@ ipa . ” +F@@ ung@@ awo zvakaitika kune imwe hanzvadzi ye@@ ku@@ United States . +Y@@ akanyora kuti : “ Ndino@@ da ku@@ kut@@ end@@ ai ne@@ kugara mu@@ chit@@ ipa zve@@ kud@@ ya zve@@ kunamata zvat@@ inenge tichi@@ da uye panguva y@@ akakodzera . +K@@ akawanda nd@@ in@@ onzwa se@@ kuti nyaya idzi dz@@ akany@@ or@@ erwa ini . +N@@ da@@ va nemakore akawanda ndi@@ chir@@ wisana nechi@@ do ch@@ akasimba che@@ kuita chimwe chinhu chino@@ veng@@ wa naJehovha . +Dzimwe nguva nd@@ in@@ omb@@ o@@ funga zve@@ kuk@@ anda map@@ f@@ umo pasi , nd@@ ore@@ ga kur@@ wa . +Ndino@@ ziva kuti Jehovha ane ng@@ oni uye an@@ ore@@ g@@ erera , asi nemhaka ye@@ kuti nd@@ ine chi@@ do ichi uye kuti ne@@ ch@@ ep@@ asi pasi pem@@ woyo wangu han@@ di@@ chi@@ vengi , nd@@ in@@ onzwa se@@ kuti hand@@ ik@@ odz@@ eri ku@@ batsirwa naye . +H@@ ondo iyi ya@@ ita kuti upenyu hw@@ angu hu@@ ome chaizvo . . . . +P@@ and@@ aka@@ verenga nyaya ine musoro uno@@ ti ‘ Un@@ e “ M@@ woyo W@@ okuti U@@ z@@ ive ” Jehovha Here ? ’ +iri mu@@ Nharireyomurindi ya@@ Mar@@ ch 15 , 20@@ 13 , nd@@ akany@@ atso@@ ona kuti zvechokwadi Jehovha anoda kun@@ di@@ batsira . ” +( a ) Pauro ain@@ zwa sei nezve@@ kur@@ wisa kwa@@ aiita zvid@@ o zv@@ eny@@ ama ? +Tino@@ dzidz@@ ei pan@@ yaya ye@@ zvip@@ f@@ ek@@ o kubva pa@@ Mutemo waMwari wa@@ akapa vaIsraeri ? +Chii ching@@ ab@@ atsira vaKristu kus@@ arudza zvakanaka pan@@ yaya ye@@ kup@@ f@@ eka ? +N@@ de@@ pap@@ i pa@@ zvin@@ onyanya ku@@ kosha kuti ti@@ pf@@ ek@@ e zv@@ akakodzera ? +Asi zvimwe zvip@@ f@@ ek@@ o zv@@ akakodzera kune dzimwe nzvimbo zvinogona kunge zvisina kuk@@ odzera kune dzimwe . +( Verenga 1 VaKorinde 10 : 32 , 33 . ) +Zvi@@ i zvinogona kuita kuti hama ich@@ eng@@ ete nde@@ bv@@ u kana kus@@ adz@@ ich@@ enget@@ a ? +Mutemo wa@@ Mosesi wa@@ i@@ da kuti varume vach@@ eng@@ ete nde@@ bv@@ u . +Dzimwe hama dzaka@@ gadz@@ wa dzino@@ to@@ va n@@ adzo . +Kunyange zvakadaro , dzimwe hama dz@@ ing@@ as@@ arudza kus@@ ach@@ enget@@ a nde@@ bv@@ u . +M@@ ap@@ f@@ ek@@ ero uye kush@@ amb@@ idz@@ ika kwedu kuno@@ fanira kuita kuti vamwe va@@ ite sei ? +Imwe hama ye@@ ku@@ Germany y@@ akanyora kuti : “ V@@ adz@@ idz@@ isi vangu vano@@ ona nh@@ or@@ oondo iri muBhaibheri ye@@ kus@@ ikwa kwe@@ zvinhu s@@ eng@@ ano . +Uye van@@ ongo@@ funga kuti vadzidzi vanot@@ enda kuti zvinhu zv@@ akas@@ hand@@ uka - shand@@ uka . ” +Imwe hanzvadzi yechi@@ d@@ iki ye@@ ku@@ Fr@@ ance yakati : “ V@@ adz@@ idz@@ isi ve@@ ku@@ chikoro kwedu vanos@@ ham@@ isika kuti kune vadzidzi va@@ chiri kutenda zvino@@ taurwa neBhaibheri . ” +ner@@ in@@ onzi The Or@@ ig@@ in of Li@@ fe ​ — F@@ ive Q@@ u@@ es@@ tions Wor@@ th As@@ king , uye bhuku rinonzi Is There a Creator Who C@@ ar@@ es Ab@@ out You ? +M@@ ab@@ hur@@ o@@ ch@@ a iwayo ndaka@@ adz@@ idza k@@ akawanda . ” +Dz@@ in@@ oratidza kuti main@@ j@@ in@@ iya ang@@ at@@ evedzera zvinhu zv@@ akas@@ ikwa asi zvinhu zva@@ ano@@ gadzira ha@@ zvi@@ z@@ omb@@ of@@ i zvaka@@ enz@@ ana nezv@@ akas@@ ikwa . ” +Nei Mwari achi@@ da kuti us@@ hand@@ ise simba r@@ ako re@@ kufunga ? +( Verenga VaRoma 12 : 1 , 2 ; 1 Timoti 2 : 4 . ) +Uye vazhinji vavo vakar@@ arama panguva dz@@ akasiyana uye vakanga vasing@@ az@@ i@@ van@@ i . ” +Nd@@ akat@@ omb@@ om@@ ira ndichi@@ fungisisa nezve@@ kush@@ am@@ isa kwe@@ pas@@ eka iyoyo . ” +Imwe hama yechi@@ d@@ iki ye@@ ku@@ Brit@@ ain yakati , “ Pan@@ ong@@ ova nevanhu vas@@ homa vaka@@ vimbika zvakadaro . +Izvi zvino@@ ti@@ wedzera chi@@ vimbo che@@ kuti zvechokwadi Bhaibheri rino@@ bva kuna Jehovha . ” +Imwe hanzvadzi yechi@@ d@@ iki ye@@ ku@@ Jap@@ an y@@ akanyora kuti : “ M@@ huri yedu pa@@ y@@ akas@@ handisa zvino@@ dzidz@@ iswa neBhaibheri , t@@ akatanga kuva ne@@ mufaro . +T@@ akava vanhu vane rugare , vaka@@ batana , uye vane rudo . ” +Uye vamwe van@@ ore@@ ga kutenda muna Mwari ne@@ kuti vaka@@ odz@@ wa mwoyo nezv@@ it@@ endero . +Ak@@ a@@ wedzera kuti : “ Zv@@ inos@@ hamisa chaizvo kuti kunyange m@@ iv@@ iri y@@ et@@ up@@ uk@@ an@@ ana t@@ us@@ inga@@ onek@@ i nema@@ z@@ iso ine t@@ unhu t@@ waka@@ wanda t@@ waka@@ oma kunzwisisa . ” +Ak@@ any@@ ora kuti : “ I@@ mba imwe ne@@ imwe ino@@ vak@@ wa nomumwe munhu , asi iye aka@@ vaka zvinhu zvose ndi@@ Mwari . ” +Nei zvi@@ chik@@ osha chaizvo kuti muny@@ atso@@ ziva vana v@@ enyu ? +V@@ ana vedu vano@@ va ne@@ kutenda zvishoma nezv@@ is@@ homa . ” +Van@@ on@@ di@@ bvunza kuti : ‘ Bhaibheri rino@@ ti@@ i ? ’ +‘ Uno@@ t@@ enda zvar@@ ino@@ taura here ? ’ +V@@ anoda kuti ndi@@ p@@ ind@@ ure nem@@ ashoko angu kwete kungo@@ dz@@ okor@@ ora mashoko avo kana kuti a@@ A@@ ma@@ i . +M@@ akore zva@@ ai@@ famba , nd@@ aifanira kupa mh@@ induro dzaka@@ dz@@ ama . ” +V@@ akap@@ indura mibvunzo yangu yose va@@ chis@@ handisa Bhaibheri . ” +( Verenga Dhe@@ uteronom@@ io 6 : 5 - 8 ; Ruka 6 : 45 . ) +Saka kana upenyu hw@@ akat@@ ang@@ ira pat@@ unhu t@@ ud@@ ik@@ id@@ iki , nei zvip@@ uka izvi zv@@ ekare kare zvakanga zvaka@@ oma ku@@ zvin@@ z@@ wisisa ? +Z@@ vand@@ aka@@ dzidza zvak@@ and@@ in@@ ak@@ idza chaizvo uye ndaka@@ zvi@@ udz@@ awo mwana wangu . ” +Vaka@@ bva v@@ ati mumwe ne@@ mumwe ava@@ b@@ ik@@ ire k@@ of@@ i . +“ V@@ akany@@ atso@@ ib@@ ika nem@@ woyo w@@ ese , ” vaka@@ daro ma@@ i vacho . +“ P@@ and@@ aka@@ va@@ bvunza kuti nei vaka@@ ib@@ ika nem@@ woyo w@@ ese , v@@ akati vai@@ da kuti k@@ of@@ i yacho iny@@ atso@@ ita se@@ zvand@@ ai@@ farira chaizvo . +Nd@@ akats@@ anangura kuti Mwari akas@@ angan@@ is@@ awo mag@@ asi ari mum@@ he@@ po nem@@ woyo w@@ ese achi@@ itira kuti zvit@@ in@@ ak@@ ire . ” +Uno@@ ti@@ i nezve@@ kut@@ inh@@ ira kw@@ end@@ ege uchi@@ ku@@ enzan@@ isa ne@@ ku@@ imba kw@@ es@@ h@@ iri ? +Saka ndi@@ ani ak@@ ang@@ wara kupfuura mumwe pakati pe@@ mu@@ gadz@@ iri w@@ end@@ ege ne@@ Musiki w@@ es@@ h@@ iri ? ” +Vamwe baba v@@ akati , “ Mus@@ amb@@ on@@ eta paku@@ edza nzira itsva dze@@ kudzidza n@@ adzo zvinhu zvam@@ ak@@ amb@@ odz@@ idza . ” +Ku@@ bvira pa@@ vaiva va@@ d@@ iki chaizvo , nd@@ a@@ idz@@ idza navo kwem@@ am@@ in@@ itsi 15 zuva re@@ ga re@@ ga kunze kwem@@ isi yat@@ aiva nem@@ is@@ angano yechiKristu . +Ne@@ kufamba kwenguva , zvakawanda zv@@ acho zvaka@@ j@@ ek@@ eswa pam@@ is@@ angano kana kuti pa@@ kudzidza sem@@ huri kana kuti pand@@ a@@ idz@@ idza nde@@ ga . +Nd@@ oku@@ saka zvi@@ chik@@ osha kuti vabereki var@@ ambe vach@@ idz@@ idzisa . ” +I@@ ta@@ i kuti vana v@@ enyu va@@ one kuti Jehovha munhu chai@@ ye kwa@@ muri . +V@@ anoti : “ T@@ in@@ ou@@ dz@@ awo m@@ wan@@ asikana wedu mukuru kuti , ‘ N@@ y@@ atso@@ vimba naJehovha , gara uchi@@ ita basa re@@ Umambo , uye us@@ any@@ anya ku@@ net@@ seka . ’ +Pa@@ ano@@ ona zvino@@ zo@@ itika , ano@@ bva az@@ iva kuti Jehovha ari kut@@ ibatsira . +Izvi zviri kus@@ imbisa kutenda kwake muna Mwari uye mune zvino@@ taurwa neBhaibheri . ” +N@@ yaya ye@@ kutanga in@@ oratidza kuti kutenda kwedu kun@@ ga@@ kura sei kw@@ or@@ amba kw@@ akasimba . +Re@@ g@@ ai nd@@ its@@ anang@@ ure zvakaitika kusvika pa@@ aka@@ z@@ on@@ di@@ f@@ on@@ era . +N@@ D@@ AK@@ A@@ B@@ ER@@ E@@ K@@ ER@@ WA mu@@ W@@ ich@@ ita , ku@@ K@@ ans@@ as , U.@@ S@@ .@@ A . , musi wa@@ 10 D@@ ec@@ ember , 19@@ 36 , uye nd@@ ini d@@ ang@@ we pa@@ vana 4 . +P@@ aka@@ bva pa@@ pfuura mumwe mus@@ o@@ j@@ a , chir@@ emba ndoku@@ bva ash@@ evedzera kwaari achiti , “ G@@ adz@@ ir@@ isa g@@ wara iri ! ” +Mus@@ o@@ j@@ a wacho akaona kuti chir@@ emba uyu akanga aka@@ dh@@ ak@@ wa , ndoku@@ bva a@@ mut@@ i , “ En@@ da kumb@@ a un@@ or@@ ara iwe ! ” +V@@ aiva nem@@ ab@@ ha@@ bh@@ as@@ hop@@ u maviri mu@@ W@@ ich@@ ita , uye chir@@ emba wacho ait@@ o@@ g@@ er@@ wawo ikoko ! +Ndi@@ ine vabereki vangu tichi@@ enda kug@@ ungano ku@@ W@@ ich@@ ita kuma@@ 19@@ 40 +Ung@@ ano yakat@@ angwa ne@@ kuti vais@@ handa nesimba uye va@@ ik@@ ombor@@ erwa naJehovha . +Hama ye@@ kut@@ it@@ ora yakat@@ eng@@ es@@ awo m@@ ota yangu ne $ 25 . +T@@ akan@@ zi t@@ inos@@ handa sem@@ ap@@ iy@@ ona chai@@ wo ku@@ W@@ al@@ n@@ ut R@@ id@@ ge , Ar@@ k@@ ans@@ as . +Muna 19@@ 6@@ 2 , taka@@ fara pat@@ akak@@ ok@@ wa kuk@@ ir@@ asi yechi@@ 37 ye@@ Gir@@ iye@@ dh@@ i . +T@@ i@@ ina M@@ ary na@@ Ch@@ r@@ is K@@ an@@ ai@@ ya muushumiri ku@@ N@@ air@@ ob@@ i vedu +P@@ ap@@ era nguva pfupi , taka@@ va nem@@ wan@@ asikana wedu we@@ kutanga , K@@ imb@@ er@@ ly , uye pap@@ era gore nem@@ wedzi mis@@ hanu , St@@ ep@@ han@@ y aka@@ berek@@ wawo . +T@@ a@@ imbo@@ enda kuno@@ k@@ emba navo uye tain@@ ak@@ idzwa chaizvo ne@@ ku@@ kurukura ti@@ ch@@ idz@@ iya mo@@ to . +T@@ akar@@ onga kuti vamwe vaiva mubasa r@@ enguva yakazara va@@ gare p@@ amba pe@@ du . +Zvaka@@ va@@ vh@@ und@@ utsa , ndo@@ kutanga kuch@@ ema , uye v@@ akati vai@@ da kudzidza . +T@@ i@@ chit@@ ungamir@@ irwa nes@@ angano raMwari , t@@ akaita zvose zvat@@ aigona kuti va@@ kure vachi@@ da Jehovha . +P@@ av@@ aka@@ zo@@ enda zvak@@ are , K@@ imb@@ er@@ ly aka@@ on@@ ana na@@ B@@ ri@@ an L@@ le@@ well@@ y@@ n , uyo ais@@ handa na@@ Paul . +Saka v@@ ese vaka@@ zor@@ o@@ orwa vas@@ v@@ its@@ a makore 23 . +Panguva iyoyo , B@@ ri@@ an na@@ K@@ imb@@ er@@ ly v@@ akak@@ ok@@ wa kuno@@ sh@@ anda pa@@ Bh@@ et@@ eri re@@ ku@@ L@@ ond@@ on uye vaka@@ z@@ onzi va@@ ende kuno@@ sh@@ anda pa@@ Bh@@ et@@ eri re@@ ku@@ M@@ al@@ a@@ wi . +P@@ at@@ aka@@ enda ku@@ Watchtower E@@ duc@@ ational C@@ ent@@ er ku@@ P@@ at@@ ter@@ son , m@@ ang@@ wana acho L@@ inda ak@@ ati@@ f@@ on@@ era ach@@ iti@@ udza kuti A@@ ma@@ i vas@@ ha@@ ya . +T@@ aka@@ zo@@ enda kuno@@ it@@ isa k@@ osi iyi ku@@ Z@@ imb@@ ab@@ we uyewo ku@@ Z@@ amb@@ ia . +Muna 200@@ 6 , B@@ ri@@ an na@@ K@@ imb@@ er@@ ly vakat@@ amira pa@@ imba iri pa@@ di@@ vi pe@@ du kuti var@@ ere van@@ asikana vavo vaviri , M@@ ac@@ k@@ enz@@ i@@ e na@@ E@@ li@@ z@@ ab@@ et@@ h . +Paul na@@ St@@ ep@@ han@@ y va@@ chiri ku@@ M@@ al@@ a@@ wi , uye Paul ari mu@@ D@@ are Re@@ b@@ azi . +Nei t@@ inga@@ fanira ku@@ gadzir@@ isa ma@@ onero atino@@ ita va@@ eni ? +P@@ and@@ aka@@ bva pan@@ hand@@ are y@@ end@@ ege , nd@@ akar@@ o@@ hwa ne@@ ch@@ and@@ o zvand@@ a@@ inge nd@@ isati nd@@ ambo@@ ita , nd@@ ik@@ at@@ anga kuch@@ ema . ” +Va@@ Judha vait@@ aura chi@@ Giriki vaka@@ g@@ un@@ un@@ ’@@ una kuti chir@@ ik@@ adzi dzavo dz@@ akanga dz@@ is@@ iri ku@@ batwa zvakanaka . +Kunyange ting@@ as@@ a@@ zvi@@ ziva he@@ du , t@@ ose tino@@ ita zvinhu zvichi@@ ender@@ ana ne@@ tsika dzedu . +( Verenga 1 Petro 1 : 22 . ) +R@@ atidza mwoyo mu@@ refu kune vat@@ sva vari ku@@ edza ku@@ j@@ a@@ irana n@@ enyika ya@@ uno@@ gara . +Pa@@ kutanga , ting@@ as@@ anz@@ wisisa ma@@ fungiro avo kana kuti ma@@ itiro a@@ vanoita zvimwe zvinhu . +Tino@@ gamuchira zvakanaka vano@@ bva kune dzimwe nyika here ? ( Ona nd@@ ima 16 , 17 ) +Che@@ kutanga , akar@@ emek@@ edza tsika dze@@ munyika ya@@ akanga ava pa@@ aka@@ kumbira ku@@ ungan@@ idza zva@@ is@@ ar@@ irira . +[ 1 ] ( nd@@ ima 1 ) Z@@ ita raka@@ chinj@@ wa . +U@@ ri mumwe we@@ vaya vari kudzidza mumwe mutauro here ? +( Verenga Ne@@ hem@@ iya 13 : 23 , 24 . ) +( b ) T@@ ing@@ az@@ adz@@ isa sei chinangwa ch@@ edu ? +Tinofanira kuziva kuti p@@ atino@@ gadzirira ushumiri , misangano , kana hurukuro , is@@ u vacho ting@@ as@@ as@@ handisa zvat@@ inenge t@@ av@@ er@@ enga . +Sezvo pfungwa dz@@ angu dzi@@ chiny@@ anya kungo@@ va pa@@ kunzwisisa mutauro wacho , zve@@ kud@@ ya zve@@ kunamata zvand@@ inenge ndichi@@ verenga ha@@ zvin@@ y@@ ats@@ ond@@ iti d@@ yo@@ o pam@@ woyo . +Nd@@ oku@@ saka ndi@@ chir@@ onga kuti ndi@@ gare ndi@@ ine nguva ye@@ kudzidza Bhaibheri nem@@ amwe mabhuku mur@@ ur@@ imi rwa@@ amai . ” +“ Kup@@ ar@@ idza ne@@ mumwe mutauro kwai@@ mus@@ v@@ ota , ne@@ po a@@ imb@@ of@@ arira kuparidza mu@@ mutauro wake wechi@@ Fr@@ en@@ ch , ” anodaro Mur@@ iel . +Ser@@ ge anoti , “ P@@ at@@ akaona kuti izvi zva@@ it@@ adz@@ isa mwanakomana wedu ku@@ kura pa@@ kunamata , t@@ akas@@ arudza kudz@@ okera ku@@ ungano yat@@ a@@ imb@@ op@@ inda nayo . ” +I@@ va@@ i nechokwadi che@@ kuti shoko raMwari r@@ asvika pam@@ woyo y@@ ev@@ ana v@@ enyu ( Ona nd@@ ima 14 , 15 ) +Asi tino@@ dzidz@@ irawo zv@@ ati@@ cha@@ zot@@ aura muushumiri kana pam@@ is@@ angano uye tino@@ ita mit@@ ambo muchi@@ L@@ ing@@ al@@ a kuitira kuti vana vedu vadzidz@@ e mutauro uyu pat@@ inenge ti@@ ch@@ imb@@ of@@ ara . ” +S@@ handa nesimba pa@@ kudzidza mumwe mutauro uye edza kup@@ ind@@ ur@@ awo pam@@ is@@ angano ( Ona nd@@ ima 16 , 17 ) +T@@ akar@@ ong@@ awo kupinda misangano yechi@@ Fr@@ en@@ ch k@@ amwe chete pam@@ wedzi , uye tino@@ pinda mag@@ ungano mu@@ mutauro wedu pat@@ inenge tiri pa@@ zor@@ oro . ” +( Verenga VaRoma 15 : 1 , 2 . ) +T@@ ing@@ ar@@ atidza sei kuti tino@@ da Shoko raMwari ? +Hama dziri mun@@ d@@ ima ye@@ b@@ hiz@@ in@@ esi dziri kupar@@ idzira m@@ akan@@ ika ari pa@@ gar@@ a@@ ji . +( Verenga Zvakazarurwa 21 : 3 - 6 . ) +Abra@@ hamu nem@@ huri yake vakaita sei kuti var@@ ambe va@@ ine kutenda kw@@ akasimba ? +( Verenga 1 Johani 5 : 14 , 15 . ) +Vamwe va@@ profita vakat@@ s@@ ungirira mi@@ edzo ipi pa@@ mus@@ ana pe@@ kutenda kwavo ? +Vamwe vaka@@ dai sa@@ E@@ ri@@ ya “ vaka@@ dz@@ ung@@ a@@ ira mum@@ ar@@ en@@ j@@ e no@@ mum@@ ak@@ omo nem@@ ap@@ ako no@@ mun@@ inga dz@@ ep@@ an@@ yika . ” +Mu@@ enzaniso wa@@ No@@ a uno@@ ti@@ batsira sei kuti tin@@ z@@ wis@@ ise chin@@ onzi kuva ne@@ kutenda ? +T@@ ing@@ ar@@ atidza sei kuti tine kutenda ? +VaHebheru 11 : 1 ino@@ tsanangura kutenda nenzira mbiri dz@@ ipi ? +Uno@@ ona kuti kutenda kwavo kw@@ akas@@ handa pamwe chete nem@@ abasa avo uye kutenda kwavo kwaka@@ itwa kw@@ akakwana nem@@ abasa avo . ” +Se@@ muenzaniso , Johani akati : “ Ano@@ t@@ enda mu@@ Mwanakomana ane upenyu husingaperi ; asing@@ at@@ eer@@ eri Mwanakomana ha@@ az@@ o@@ oni upenyu , asi h@@ asha dza@@ Mwari dz@@ inor@@ amba dziri pa@@ ari . ” +Kut@@ enda kuno@@ kosha zvakadini kana kuchi@@ enzan@@ iswa ner@@ udo ? +Jakobho aka@@ bvunza hama dzake dzaka@@ zodzwa kuti : “ Mwari haana kus@@ arudza var@@ ombo mune zv@@ enyika kuti vap@@ f@@ ume mu@@ kutenda uye vave vag@@ ari ven@@ haka you@@ mambo , hwa@@ akap@@ ikira vaya vano@@ mu@@ da here ? ” +Vanhu pa@@ vakanga vakar@@ ara , mu@@ vengi wake aka@@ uya aka@@ d@@ yar@@ awo mas@@ ora pakati pe@@ g@@ orosi , aka@@ enda . +Ch@@ ip@@ and@@ e ch@@ akati ch@@ ab@@ u@@ da chik@@ ab@@ er@@ eka zvib@@ erek@@ o , mas@@ ora aka@@ bva a@@ onek@@ awo . ” +Jehovha akapa vanhu vake tariro ipi , uye nei vimb@@ iso iyi ya@@ isham@@ isa ? +Va@@ Israeri vai@@ zo@@ kwanisa kunamata Mwari zvak@@ are nenzira in@@ ony@@ atso@@ ga@@ mu@@ chir@@ ika here ? +Saka ha@@ zvi@@ iti kuti t@@ iti vanhu vaJehovha vakat@@ ap@@ wa ne@@ Bhabhironi G@@ uru muna 19@@ 18 . +( Verenga 1 Petro 2 : 9 , 10 . ) +( Verenga Mateu 13 : 24 , 25 , 37 - 39 . ) +Va@@ Kristu va@@ iz@@ omb@@ on@@ amata Mwari vakas@@ unung@@ uka uye zvino@@ ga@@ mu@@ chir@@ ika here ? +Vaka@@ zodzwa vakas@@ unung@@ urwa ri@@ ini kubva mu@@ ut@@ ap@@ wa hwe@@ Bhabhironi ? +Hama Ru@@ ther@@ for@@ d vaka@@ kumbira kuti tir@@ ong@@ e mag@@ ungano mu@@ mag@@ uta akati kuti kuma@@ d@@ ok@@ ero kwe@@ United States t@@ ot@@ umira va@@ kuru@@ kuri kuti va@@ edz@@ e ne@@ pa@@ vaig@@ ona n@@ apo ku@@ kurudzira hama . ” +13 : 15 . +Saka ndino@@ gara ndichi@@ ch@@ ema uye ndino@@ ona zviri nani kus@@ at@@ aura navo . +Ak@@ any@@ ats@@ ond@@ it@@ eerera pand@@ ait@@ aura zva@@ ind@@ in@@ ets@@ a . +Ak@@ ab@@ va andi@@ yeuch@@ idza zvakanaka zvand@@ aiita . +Ak@@ andi@@ yeuch@@ idz@@ awo nezvem@@ ashoko a@@ Jesu e@@ kuti mumwe ne@@ mumwe wedu anok@@ osha kup@@ f@@ ura sh@@ iri duku dzakawanda . +Ndino@@ wanzo@@ yeuka rug@@ waro ir@@ wor@@ wo , uye ru@@ chiri kun@@ di@@ kurudzira . +T@@ ing@@ adz@@ idz@@ ei kubva pane zvai@@ itwa naJehovha , Jesu , uye Pauro paku@@ kurudzira vamwe ? +( Verenga Mup@@ ar@@ idzi 4 : 9 , 10 . ) +T@@ ing@@ adz@@ idz@@ ei pam@@ ab@@ at@@ iro akaita Jesu vadzidzi vake ? +Pashure poku@@ pfuura no@@ mum@@ ati@@ vi iwayo uye achi@@ kurudzira va@@ iv@@ am@@ o nem@@ ashoko ma@@ zhinji , akasvika ku@@ Gir@@ isi . ” +( Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 5 : 12 , 13 . ) +Dz@@ ino@@ ti@@ kurudzira chaizvo . ” +A@@ nd@@ re@@ as , uyo ane vana vaviri , anoti : “ Ku@@ kurudzira kuno@@ batsira vana kuti va@@ kure pa@@ kunamata uye mu@@ pfungwa . +Kunyange zvazvo vana vedu vachi@@ ziva kuti zvakanaka nde@@ zv@@ ipi , kuti var@@ ambe vachi@@ zvi@@ ita muupenyu hwavo tinofanira kuramba tichi@@ va@@ kurudzira . ” +( Verenga Ruka 21 : 1 - 4 ; 2 VaKorinde 8 : 12 . ) +( Verenga Zvakazarurwa 2 : 18 , 19 . ) +P@@ am@@ akataura ne@@ mutsa kudaro , muri pa@@ chi@@ kuva uye pat@@ aka@@ zot@@ aura t@@ ose , nd@@ akany@@ ats@@ onzwa kuti chai@@ va chi@@ po chaka@@ bva kuna Jehovha . ” +[ 1 ] ( nd@@ ima 1 ) M@@ amwe ma@@ zita aka@@ chinj@@ wa . +( b ) Mun@@ yaya ino ti@@ cha@@ kurukura nezv@@ ei ? +Ung@@ ano dz@@ ai@@ batsirwa sei ne@@ kut@@ evedzera mir@@ ay@@ ir@@ idzo ye@@ d@@ are ra@@ it@@ ungamirira ? +( Verenga 3 Johani 9 , 10 . ) +( Verenga Mateu 5 : 23 , 24 ; 18 : 15 - 17 . ) +Bhaibheri rino@@ tir@@ ayira kuti ti@@ gare ti@@ chip@@ inda misangano . +U@@ ri kushand@@ is@@ awo here j@@ w@@ .@@ or@@ g muushumiri uye pa@@ kunamata kwem@@ huri ? +T@@ aka@@ kurudz@@ ir@@ wawo kuti kana t@@ adz@@ idza bhuku ra@@ Bhaibheri R@@ in@@ omb@@ o@@ dzidz@@ is@@ ei ? +N@@ de@@ zv@@ ipi zvimwe zvik@@ onzero zvinoita kuti ti@@ ong@@ e Jehovha ? +Pane zvik@@ onzero zvakawanda zvinoita kuti ti@@ ong@@ e Jehovha . +I@@ nor@@ atidz@@ awo kuti tariro ye@@ kuwana mu@@ bayiro ino@@ ti@@ batsira sei . +Panguva iyoyo , nd@@ a@@ ing@@ ova nemakore 8 chete . +Baba vais@@ ada kuti amai van@@ di@@ udz@@ e zva@@ va@@ idz@@ idza . +Zvisinei , nd@@ aida kuziva zva@@ va@@ idz@@ idza uye nd@@ ai@@ bvunza mibvunzo , saka amai va@@ ind@@ idz@@ idzisa kana baba vas@@ ipo p@@ amba . +Izvi zvakaita kuti ndi@@ zos@@ arudz@@ awo kut@@ sa@@ urira upenyu hw@@ angu kuna Jehovha . +A@@ ma@@ i v@@ akati nd@@ aifanira kutanga nd@@ at@@ aura ne@@ mur@@ anda kune hama ( uyo ava kun@@ zi mut@@ ariri wed@@ unhu ) . +Ak@@ and@@ iti , “ Hapana che@@ kum@@ irira ! ” +Pashure pem@@ wedzi 4 , nd@@ akas@@ arudza hama y@@ and@@ aizo@@ pa@@ y@@ ona nayo . +A@@ ma@@ i vai@@ pa@@ y@@ ona ne@@ imwe hanzvadzi mune imwe ungano . +Muna 195@@ 1 , nd@@ akany@@ orera kuti ndi@@ p@@ inde Chik@@ oro che@@ Bhaibheri che@@ Watchtower che@@ Gir@@ iye@@ dh@@ i . +P@@ and@@ aiva mu@@ j@@ eri , ndaka@@ gamuchira ts@@ amba ya@@ ind@@ ik@@ oka kuti ndi@@ p@@ inde k@@ ir@@ asi yechi@@ 22 ye@@ Gir@@ iye@@ dh@@ i . +Ndaka@@ bva nd@@ a@@ enda ne@@ chit@@ ima ku@@ South L@@ ans@@ ing , New York , kwa@@ iva ne@@ chikoro chacho . +Ndi@@ ina J@@ an@@ et tiri pane chimwe che@@ zvit@@ su@@ wa zviri mu@@ Philipp@@ ines +T@@ ich@@ iri kush@@ umira pa@@ ho@@ f@@ isi ye@@ b@@ azi mug@@ uta re@@ Q@@ u@@ ez@@ on +Ung@@ ava sei ‘ ner@@ ugare rwa@@ Mwari ’ ? +Ung@@ ano inga@@ kubatsira sei kuti us@@ any@@ anya ku@@ zvid@@ ya mwoyo ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) T@@ icha@@ kuru@@ kure@@ i mun@@ yaya ino ? +Asi ung@@ a@@ zvi@@ ita sei ? +M@@ uny@@ ori wem@@ ap@@ isarema Dhavhidhi akat@@ et@@ erera kuna Jehovha achiti : “ H@@ ai@@ wa Mwari , te@@ erer@@ ai munyengetero wangu . ” +Nei kuny@@ engetera ku@@ chik@@ osha p@@ atino@@ zvid@@ ya mwoyo ? +( Verenga Mateu 11 : 28 - 30 . ) +Jesu air@@ ev@@ ei pa@@ akati : “ Mus@@ ambo@@ zvid@@ ya mwoyo ” ? +Ak@@ ati : “ N@@ da@@ u@@ ura nokuda kwoku@@ g@@ om@@ era kw@@ om@@ woyo wangu . ” +( Ona b@@ ho@@ k@@ isi r@@ akan@@ zi “ Zva@@ ung@@ aita Kuti U@@ s@@ any@@ anya Ku@@ zvid@@ ya M@@ woyo . ” ) +Zvin@@ ore@@ hwa ne@@ zita raMwari zving@@ as@@ imbisa sei kutenda kw@@ ako ? +Z@@ ita rake rin@@ oreva kuti “ Ano@@ ita Kuti Zvinhu Zv@@ ive Se@@ zva@@ anoda . ” +Nei uchi@@ gona kuva nechi@@ vimbo che@@ kuti ukama hw@@ ako naMwari hu@@ cha@@ kupa simba ? +( a ) T@@ ing@@ akan@@ da sei ku@@ zvid@@ ya mwoyo kwedu pana Mwari ? +T@@ ing@@ ava sei nechokwadi che@@ kuti Jehovha ano@@ pa vashumiri vake mu@@ bayiro ? +Jehovha akak@@ ombor@@ era sei vashumiri vake v@@ ekare ? +1 , 2 . ( a ) R@@ udo ne@@ kutenda zvino@@ d@@ y@@ idz@@ ana pap@@ i ? +Asi tariro ye@@ kuwana mu@@ bayiro ino@@ ti@@ batsira sei ? +Jesu akaratidza kuti vadzidzi vake va@@ iz@@ op@@ iwa mu@@ bayiro we@@ ku@@ zvipira kwavo ( Ona nd@@ ima 5 ) +Muapostora Petro aka@@ bvunza Jesu kuti : “ Is@@ u t@@ akas@@ iya zvinhu zvose tik@@ a@@ kut@@ ever@@ ai ; chokwadi chii ch@@ ati@@ cha@@ wana ? ” +Mu@@ M@@ har@@ idzo yake ye@@ pa@@ G@@ omo , Jesu akati : “ Far@@ ai mus@@ v@@ et@@ uke no@@ mufaro , nokuti mu@@ bayiro w@@ enyu mukuru ku@@ mat@@ enga ; nokuti vakat@@ amb@@ udza va@@ profita vaka@@ kut@@ ang@@ irai sai@@ zvozvo . ” +Mosesi aka@@ udza vaIsraeri kuti : “ Chokwadi Jehovha acha@@ kuk@@ ombor@@ era munyika ya@@ uri kup@@ iwa naJehovha Mwari wako sen@@ haka kuti u@@ it@@ ore ive yako , kana uk@@ ang@@ ot@@ eerera inz@@ wi raJehovha Mwari wako kuti u@@ chenj@@ er@@ ere kuita mura@@ y@@ iro uyu wose wand@@ iri ku@@ kur@@ ayira nhasi . +Nokuti Jehovha Mwari wako acha@@ kuk@@ ombor@@ era sezva@@ aka@@ kup@@ ikira . ” +Ak@@ at@@ um@@ idza we@@ chipiri kuti Ef@@ rem@@ u , nokuti , sezva@@ akataura , ‘ Mwari aita kuti ndi@@ berek@@ e munyika yo@@ kutambudz@@ ika kw@@ angu . ’ ” +Shoko raMwari rinoti : “ Iye akats@@ ungirira pa@@ d@@ anda ro@@ kutambudz@@ ikira nokuda kw@@ omu@@ f@@ aro waka@@ iswa pamberi p@@ ake , asina hanya no@@ kuny@@ adz@@ iswa . ” +Jesu aka@@ wana mufaro pa@@ kuts@@ ven@@ esa zita raMwari . +Jehovha ano@@ ona sei zvatino@@ mu@@ itira ? +“ Munhu an@@ onz@@ wira ny@@ asha munhu aka@@ d@@ erera , ano@@ kw@@ er@@ et@@ esa Jehovha , uye Iye acha@@ mur@@ ipa zva@@ anoita . ” +Tino@@ wana ny@@ ar@@ adzo ipi pana 1 Johani 3 : 19 , 20 ? +( Verenga 1 Johani 3 : 19 , 20 . ) +N@@ de@@ ipi m@@ imwe m@@ ib@@ ayiro yat@@ iri kuwana iye zvino ? +V@@ as@@ humiri vaJehovha van@@ onzwa sei nezvem@@ ib@@ ayiro ya@@ vano@@ wana ? +Se@@ muenzaniso , B@@ i@@ anc@@ a we@@ ku@@ Germany anoti : “ Nd@@ inos@@ ha@@ ya kuti nd@@ ot@@ enda sei Jehovha ne@@ kun@@ di@@ batsira kwa@@ anoita pand@@ inenge ndi@@ chin@@ et@@ seka uye kund@@ it@@ sigira zuva nezuva . +Mun@@ yika mune ny@@ ong@@ any@@ onga uye vanhu havana tariro . +Asi se@@ zvand@@ inos@@ handa naJehovha , nd@@ in@@ onzwa ndaka@@ chenget@@ eka muma@@ oko ake . +P@@ ese pand@@ ino@@ zvipira kuitira Jehovha zvimwe zvinhu , an@@ on@@ di@@ pa mak@@ omborero akap@@ et@@ wa zvine zana . ” +Kuti ndi@@ wane zvin@@ on@@ di@@ kurudzira , ndino@@ chengeta k@@ abhuku k@@ and@@ in@@ ony@@ ora mag@@ waro nezv@@ and@@ inenge nd@@ adz@@ idza kuti ndi@@ zo@@ kwanisa ku@@ zviv@@ er@@ enga pane imwe nguva . +Ndino@@ k@@ ati ‘ K@@ abhuku K@@ an@@ on@@ di@@ batsira Pa@@ kunamata . ’ +Kana tik@@ a@@ isa pfungwa dzedu pane zvaka@@ vimb@@ iswa naJehovha h@@ ati@@ zo@@ g@@ ari taka@@ ora mwoyo . +Jehovha aka@@ gadzirira kut@@ ibatsira pasinei ne@@ kuti tiri mum@@ amiriro ezvinhu akaita sei . ” +Kunyange zvakadaro , unogona kufunga nezve@@ kup@@ iwa kwa@@ waka@@ itwa mu@@ bayiro naJehovha uye kwa@@ akaita vanhu va@@ uno@@ ziva . +Pauro nevamwe vaKristu vakas@@ unung@@ urwa sei kubva muchi@@ vi ner@@ ufu ? +( Verenga VaRoma 6 : 1 , 2 . ) +Mumwe ne@@ mumwe wedu anogona kus@@ arudz@@ ei ? +( Verenga Zvirevo 14 : 5 ; VaEfeso 4 : 25 . ) +Vano@@ wana “ mudzimu ” se@@ vaya vari ‘ kum@@ irira nomwoyo wose ku@@ gamuch@@ irwa se@@ van@@ akomana , iko kus@@ unung@@ urwa mum@@ iv@@ iri yavo y@@ eny@@ ama . ’ +( Verenga VaRoma 4 : 20 - 22 . ) +( Verenga Mabasa 18 : 2 - 4 ; 20 : 20 , 21 , 34 , 35 . ) +V@@ as@@ han@@ yi vakawanda van@@ ouya ku@@ guta re@@ A@@ ve@@ iro riri ne@@ che@@ kuch@@ am@@ hem@@ be kwe@@ P@@ or@@ t@@ ug@@ al kuti va@@ one nzvimbo ino@@ om@@ es@@ erwa mvura ine mun@@ yu . +Zvapupu zv@@ ek@@ o zvinos@@ handisa mukana i@@ woyo kupa mashoko akanaka ku@@ vanhu vanot@@ eng@@ esa mun@@ yu wacho . +N@@ de@@ zv@@ ipi zvimwe zvatino@@ dzidza muBhaibheri ? +Mun@@ yaya ino , ti@@ ch@@ adz@@ idza kuti ting@@ ak@@ oshesa sei chi@@ po chat@@ akap@@ iwa naMwari ch@@ er@@ us@@ ununguko rwe@@ kus@@ arudza ku@@ bur@@ ikidza ne@@ ku@@ chis@@ handisa nenzira ino@@ muf@@ adza . +N@@ yaya ye@@ kutanga ino@@ tsanangura kuti kuva nem@@ wero kun@@ or@@ ev@@ ei uye kuti ha@@ kure@@ vi chii . +Jehovha anot@@ arisira kuti tis@@ hand@@ ise sei zvip@@ o zvedu ? +Zv@@ iri pachena kuti Jehovha anoda kuti ti@@ ite zvatino@@ gona kuti zvinhu zv@@ iti@@ f@@ amb@@ ire zvakanaka uye kuti ti@@ bats@@ ire@@ wo vamwe . +No@@ a akar@@ arama munyika ya@@ inge “ yakazara ne@@ chis@@ imba ” uye unz@@ enza . +Vanhu pa@@ vanor@@ amba kupar@@ idzirwa ( Ona nd@@ ima 6 - 9 ) +6 , 7 . ( a ) No@@ a ais@@ agona kuit@@ ei ? +( b ) T@@ iri mum@@ amiriro ezvinhu aka@@ fanana ne@@ a@@ No@@ a pa@@ kud@@ ini ? +I@@ su@@ wo tiri kurarama munyika yakazara ne@@ u@@ ipi , uye tino@@ ziva kuti Jehovha aka@@ vimb@@ isa ku@@ ip@@ aradza . +Par@@ i@@ zvino , h@@ ati@@ g@@ oni ku@@ man@@ ikidza vanhu kuti va@@ gamuch@@ ire “ mashoko akanaka o@@ Umambo . ” +Zva@@ ig@@ ona kuitwa na@@ No@@ a : No@@ a haana kuk@@ anda map@@ f@@ umo pasi pa@@ mus@@ ana pe@@ zva@@ akanga asing@@ agoni kuita ; aka@@ isa pfungwa pane zva@@ aigona kuita . +Dhavhidhi akaita sei ? +Zv@@ iv@@ i zva@@ w@@ ak@@ ambo@@ ita ( Ona nd@@ ima 11 - 14 ) +11 , 12 . ( a ) Chii cha@@ is@@ agona kuitwa na@@ Dhavhidhi pashure pe@@ kunge aita chivi ? +Zva@@ is@@ agona kuitwa na@@ Dhavhidhi : Dhavhidhi ais@@ agona kuchinja zva@@ akanga at@@ o@@ ita kare . +Sezvo a@@ inge ap@@ f@@ idza zvechokwadi , aifanira kuva nechi@@ vimbo che@@ kuti Jehovha aizo@@ mu@@ reg@@ erera , omu@@ batsira kuti ats@@ ung@@ irire mat@@ ambudziko a@@ ik@@ onz@@ erwa ne@@ kut@@ adza kwake . +A@@ i@@ fanira ku@@ siy@@ ira nyaya yacho muma@@ oko a@@ Jehovha . +Imwe hama ya@@ in@@ zi M@@ al@@ col@@ m y@@ akaramba y@@ akatendeka kusvikira pa@@ yaka@@ zos@@ ha@@ ya muna 20@@ 15 . +Is@@ a pfungwa dz@@ ako pane zva@@ uno@@ kwanisa kuita kwete pane zva@@ us@@ ing@@ ak@@ wan@@ isi . ” +( b ) U@@ ch@@ as@@ handisa sei rug@@ waro rwe@@ gore rwa@@ 20@@ 17 muupenyu hw@@ ako ? +R@@ ug@@ waro rwe@@ du rwe@@ gore rwa@@ 20@@ 17 : “ V@@ imba naJehovha U@@ ite Zv@@ akanaka . ” ​ — Pisarema 37 : 3 +T@@ ing@@ ar@@ atidza sei kuti t@@ inor@@ emek@@ edza zvis@@ arudzo zv@@ ev@@ amwe ? +Ndi@@ cha@@ va@@ da nd@@ ising@@ at@@ um@@ wi nomumwe munhu . ” +4 , 5 . ( a ) Ndi@@ ani akatanga kup@@ iwa chi@@ po ch@@ er@@ us@@ ununguko rwe@@ kus@@ arudza uye aka@@ chis@@ handisa sei ? +( b ) Mumwe ne@@ mumwe wedu anofanira ku@@ zv@@ ibvunz@@ a mubvunzo upi ? +Ma@@ onero atino@@ ita mig@@ an@@ hu yacho ach@@ aita kuti ti@@ wane upenyu husingaperi kana kuti kwete . +Mwari “ akatanga kuzvi@@ unza ku@@ munhu kuti a@@ one kuti aiz@@ ot@@ um@@ idza chimwe ne@@ chimwe kuti chii . ” +Chii chat@@ ising@@ ambo@@ faniri kuita nechi@@ po ch@@ er@@ us@@ ununguko rwe@@ kus@@ arudza ? +Ng@@ at@@ iti waka@@ pa shamwari yako chi@@ po chinokosha . +T@@ ing@@ adz@@ ivisa sei kushandisa rus@@ ununguko rwe@@ du zvisina kunaka ? +( Verenga 1 Petro 2 : 16 . ) +Tino@@ dzidz@@ ei pana Va@@ Gar@@ ati@@ ya 6 : 5 ? +Ye@@ uka pfungwa iri pana Va@@ Gar@@ ati@@ ya 6 : 5 . +U@@ char@@ atidza sei kuti uno@@ k@@ oshesa chi@@ po ch@@ ako ch@@ er@@ us@@ ununguko rwe@@ kus@@ arudza ? +( a ) Vanhu vakawanda vano@@ fung@@ ei nezve@@ kuva nem@@ wero ? +K@@ uva nem@@ wero kun@@ or@@ ev@@ ei , uye ha@@ kure@@ vi chii ? +Nei tis@@ inga@@ faniri kufunga kuti va@@ var@@ iro dz@@ ev@@ amwe ha@@ dz@@ ina kunaka ? +T@@ ing@@ adz@@ idz@@ ei kubva pa@@ muenzaniso wa@@ Jesu p@@ ano@@ chinja mabasa edu ? +( Verenga Va@@ Gar@@ ati@@ ya 6 : 4 , 5 . ) +( Verenga Mup@@ ar@@ idzi 11 : 4 - 6 . ) +Chii chi@@ chat@@ ibatsira kuramba ti@@ ine m@@ wero nokusingaperi ? +Nei zvichi@@ om@@ era vamwe kuti vap@@ e vamwe mabasa e@@ kuita ? +Ak@@ a@@ udza N@@ at@@ ani kuti an@@ ou@@ dza Dhavhidhi kuti : “ Ha@@ us@@ i iwe uch@@ andi@@ vak@@ ira imba yokuti ndi@@ gare . ” +( Verenga N@@ um@@ eri 11 : 24 - 29 . ) +A@@ iwa , nd@@ aizo@@ da kuti dai vanhu vose vaJehovha vaiva va@@ profita , nokuti Jehovha aizo@@ isa [ mweya ] wake pa@@ vari ! ” +( Verenga Va@@ Firipi 2 : 20 - 22 . ) +Ho@@ f@@ isi ye@@ b@@ azi yakat@@ it@@ umira magazini 8@@ 00 e@@ kushandisa muushumiri . +Ndaka@@ it@@ isa mak@@ ir@@ asi e@@ chikoro ichi mu@@ M@@ an@@ a@@ us , B@@ el@@ é@@ m , F@@ or@@ tal@@ e@@ za , R@@ ec@@ i@@ fe uye S@@ al@@ va@@ d@@ or . +T@@ akasvika mu@@ L@@ is@@ b@@ on , P@@ or@@ t@@ ug@@ al , muna A@@ ug@@ ust 19@@ 6@@ 4 . +Nd@@ iro re@@ ga riri kuita basa iro Jesu akar@@ ayira vadzidzi vake kuti va@@ ite , basa re@@ kuparidza mashoko akanaka e@@ Umambo hwaMwari ! ” +D@@ oug@@ l@@ as G@@ u@@ est aka@@ fa aka@@ vimbika kuna Jehovha musi wa@@ 25 O@@ c@@ to@@ b@@ er 20@@ 15 , pat@@ akanga ti@@ chiri ku@@ gadzirira kuti ti@@ bud@@ ise nyaya ino . +Uye ‘ mweya waJehovha w@@ akatanga kushanda pana Dhavhidhi . ’ +Nei Mwari aida kuti vanhu vake var@@ emek@@ edz@@ e vat@@ ungamiriri vaiva mu@@ Israeri ? +( Verenga VaHebheru 1 : 7 , 14 . ) +Mu@@ Bhaibheri , Mutemo waka@@ piwa vaIsraeri un@@ onzi “ Mutemo wa@@ Mosesi . ” +11 , 12 . ( a ) Joshua nem@@ amwe ma@@ dz@@ imambo ait@@ onga vanhu vaMwari vai@@ fanira kuita sei ? +“ Pa@@ ak@@ ang@@ onzwa mashoko e@@ bhuku ro@@ mutemo , aka@@ bva ab@@ var@@ ura ng@@ u@@ o dzake . ” +Nei Jehovha air@@ anga vamwe vat@@ ungamiriri ve@@ vanhu vake ? +Dzimwe nguva Jehovha ai@@ var@@ anga kana ku@@ vat@@ si@@ va nevamwe . +Chii chin@@ oratidza kuti mweya mutsvene wa@@ i@@ ita kuti Jesu ave nesimba ? +Pashure pe@@ kunge Jesu ab@@ ha@@ bh@@ atidzwa , “ ng@@ irozi dzaka@@ uya , dz@@ ik@@ at@@ anga ku@@ mush@@ umira . ” +Ma@@ awa mas@@ homan@@ ana asati af@@ a , ‘ ng@@ irozi yaka@@ bva kudenga ik@@ a@@ zvir@@ atidza kwaari , ik@@ a@@ mus@@ imbisa . ’ +Shoko raMwari r@@ akat@@ ungamirira sei Jesu muupenyu hwake uye pa@@ kudzidzisa kwake ? +Van@@ or@@ amba va@@ chin@@ d@@ in@@ amata pasina , nokuti vano@@ dzidzisa mir@@ ayiro ye@@ vanhu se@@ dzidziso . ” +Hapana munhu akanaka , kunze kwo@@ mumwe chete , iye Mwari . ” +“ Ng@@ irozi yaJehovha yaka@@ bva ya@@ mu@@ ro@@ va , nokuti haana ku@@ kudza Mwari ; uye aka@@ d@@ y@@ iwa ne@@ hon@@ ye , aka@@ fa . ” +N@@ yaya inot@@ evera ich@@ ap@@ indura mibvunzo iyoyo . +I@@ chi ching@@ ango@@ daro chai@@ va chiny@@ orwa ch@@ akanyorwa na@@ Mosesi pa@@ chake . +Nei izvi zva@@ ik@@ osha kwa@@ vari uye kuna Jehovha ? +S@@ ed@@ are rino@@ t@@ ungamirira , va@@ ipa mir@@ ay@@ ir@@ idzo ku@@ ungano dzose . ​ — Ma@@ b . 15 : 2 . +5 , 6 . ( a ) M@@ weya mutsvene wa@@ ibatsira sei d@@ are rino@@ t@@ ungamirira ? +( c ) Shoko raMwari ra@@ it@@ ungamirira sei d@@ are rino@@ t@@ ungamirira ? +Kut@@ anga , mweya mutsvene wa@@ ibatsira d@@ are rino@@ t@@ ungamirira . +Che@@ chit@@ atu , Shoko raMwari ra@@ it@@ ungamirira d@@ are iroro . +Nei tichi@@ gona kuti Jesu ait@@ ungamirira vaKristu ve@@ pakutanga ? +( a ) Jesu aka@@ g@@ adza “ mur@@ anda akatendeka , ak@@ ang@@ wara ” ri@@ ini ? +Muna 19@@ 19 , makore mat@@ atu Hama Rus@@ sel@@ l va@@ fa , Jesu aka@@ g@@ adza “ mur@@ anda akatendeka , ak@@ ang@@ wara . ” +Nharireyomurindi ya@@ J@@ u@@ ly 15 , 20@@ 13 y@@ akats@@ anangura kuti “ mur@@ anda akatendeka , ak@@ ang@@ wara ” ib@@ oka duku re@@ hama dzaka@@ zodzwa dzin@@ ou@@ mba D@@ are R@@ inot@@ ungamirira . +Saka t@@ ingap@@ indura sei mubvunzo wa@@ Jesu we@@ kuti : “ Chokwadi ndi@@ ani mur@@ anda akatendeka , ak@@ ang@@ wara ? ” +M@@ weya mutsvene waka@@ batsira sei D@@ are R@@ inot@@ ungamirira ? +N@@ de@@ ipi imwe nzira yat@@ inga@@ yeuka nayo D@@ are R@@ inot@@ ungamirira ? +Nei uchi@@ da kut@@ evera Mut@@ ungamiriri wedu Jesu , kunyange zvo@@ dini ? +Pa@@ akadz@@ okera kudenga , Jesu haana kubva ak@@ angan@@ wa vateveri vake . +M@@ ung@@ uva pfupi iri ku@@ uya ach@@ at@@ it@@ ungamirira ku@@ upenyu husingaperi . +Ku@@ bvira muna 195@@ 5 , s@@ angano iroro rino@@ zivikanwa se@@ Watch Tower Bible and Tr@@ act Society of P@@ en@@ n@@ sy@@ l@@ van@@ ia . +Jehovha “ anot@@ iny@@ aradza pa@@ kutambudz@@ ika kwedu kwose ” +“ Ndaka@@ zvit@@ aura ; ndi@@ cha@@ zvi@@ unz@@ awo . +1 , 2 . ( a ) Jehovha akaita kuti tiz@@ ive chii ? +M@@ A@@ S@@ HO@@ K@@ O e@@ kutanga e@@ Bhaibheri mas@@ homa asi an@@ oreva zvakawanda . Ano@@ ti : “ Pa@@ kutanga Mwari akas@@ ika mat@@ enga n@@ enyika . ” +( c ) M@@ ibvunzo ipi y@@ ati@@ cha@@ kurukura ? +Uye nei chi@@ bayiro ch@@ er@@ udz@@ ikin@@ uro cha@@ Jesu chiri icho chino@@ vh@@ ura nzira ye@@ kuti chinangwa cha@@ Mwari chi@@ zadz@@ ike ? +N@@ de@@ zv@@ ipi zvimwe zvip@@ o zvaka@@ piwa Ad@@ hamu na@@ E@@ vha ? +Z@@ vai@@ ita se@@ kuti a@@ iti : ‘ Saka ha@@ mug@@ oni kuita zva@@ muno@@ da ? ’ +Asi Jehovha anoita zvino@@ ender@@ ana nem@@ it@@ emo yake , ha@@ amb@@ of@@ i aka@@ it@@ y@@ ora . +( Verenga Dhe@@ uteronom@@ io 32 : 4 , 5 . ) +Nei r@@ udz@@ ikin@@ uro chiri chi@@ po chinokosha chaizvo ? +Jehovha akat@@ idz@@ ikin@@ ura achis@@ handisa chi@@ po chinokosha zvikuru . +Jehovha ach@@ ava “ zvinhu zvose ku@@ vanhu vose ” ri@@ ini ? +( Verenga 1 Petro 1 : 15 , 16 . ) +Nei Jehovha achi@@ gona kut@@ i@@ ona s@@ et@@ akarurama kunyange zvazvo ti@@ ine chivi ? +Va@@ ya vano@@ zvit@@ sa@@ urira kwaari ano@@ va@@ gamuchira se@@ vanam@@ ati vake . +Jesu air@@ ev@@ ei pa@@ aka@@ z@@ oti : “ Ku@@ da kw@@ enyu nga@@ kuit@@ we ” ? +Vaka@@ fa vano@@ batsirwa sei ner@@ udz@@ ikin@@ uro ? +Mwari anoda kuti “ boka guru ” ri@@ ite sei ? +( a ) Mak@@ omborero ap@@ i atino@@ piwa naJehovha iye zvino ? +( Verenga Mabasa 3 : 19 - 21 . ) +Jehovha ha@@ ango@@ gum@@ iri pa@@ kut@@ ipa chi@@ po che@@ upenyu . +“ T@@ akasvika paku@@ ziva uye t@@ akat@@ enda rudo ur@@ wo Mwari an@@ ar@@ wo kwat@@ iri . +Uye dzimwe nguva tinofanira kuchinja chis@@ arudzo chat@@ inenge t@@ akaita here ? +N@@ yaya ino ich@@ at@@ ibatsira kup@@ indura mibvunzo iyoyo . +Asi Jehovha akati ma@@ dz@@ imambo iwayo aiva nem@@ woyo y@@ akakwana kwaari . +Mwari ach@@ ati@@ wo tine mwoyo y@@ akakwana kwaari here pasinei nezv@@ ik@@ angan@@ iso zvatino@@ ita ? +T@@ ai@@ gara pa@@ pur@@ azi d@@ iki ne@@ che@@ kum@@ ab@@ va@@ zuva kwe@@ South D@@ ak@@ ota . +M@@ huri yedu ya@@ ik@@ oshesa kur@@ ima asi zve@@ kur@@ ima han@@ di@@ zvo zva@@ iny@@ anya ku@@ kosha . +V@@ aberek@@ i vangu vaka@@ bhabhatidzwa kuti vave Zvapupu zvaJehovha muna 19@@ 34 . +Baba vangu C@@ lar@@ ence , vais@@ humira se@@ mur@@ anda we@@ k@@ amb@@ ani ( ava kun@@ zi mur@@ ongi mu@@ d@@ are re@@ vakuru ) muungano yedu d@@ iki yaiva mu@@ Con@@ de , South D@@ ak@@ ota , uye ne@@ kufamba kwenguva b@@ ab@@ a@@ mukuru vangu Al@@ f@@ red , vaka@@ zos@@ hum@@ irawo se@@ mur@@ anda we@@ k@@ amb@@ ani . +H@@ an@@ zvadzi yangu , D@@ or@@ o@@ thy , akava mu@@ par@@ idzi a@@ ine makore 6 , uye ini ndaka@@ vawo mu@@ par@@ idzi nd@@ ava nemakore 6 . +T@@ a@@ ik@@ oshesa chaizvo mag@@ ungano muupenyu hwedu . +Bhaibheri rinoti : “ Munhu ano@@ famba nevanhu vaka@@ chenjera ach@@ ava aka@@ chenjera . ” P@@ aiva ne@@ vakawanda vaka@@ chenjera ve@@ mumhuri ne@@ ve@@ ukama vakat@@ sigira chis@@ arudzo ch@@ angu che@@ ku@@ pa@@ y@@ ona . +Pa@@ vais@@ hanyira ungano dz@@ aiva pedyo nes@@ u , dzimwe nguva va@@ ind@@ ik@@ oka kuti ndi@@ ende navo muushumiri . +Ndi@@ chang@@ os@@ vika pa@@ Bh@@ et@@ eri , ndi@@ ine m@@ ota ye@@ pa@@ pur@@ azi +P@@ ap@@ ur@@ azi r@@ aiva mu@@ St@@ at@@ en Is@@ land pa@@ i@@ vawo nen@@ he@@ pf@@ eny@@ uro ye@@ W@@ B@@ B@@ R . +P@@ ap@@ ur@@ azi iri pa@@ ing@@ os@@ handa vanhu 15 kusvika ku@@ 20 vem@@ huri ye@@ Bh@@ et@@ eri . +Va@@ zhinji vedu t@@ aiva va@@ d@@ iki uye ta@@ is@@ ava ner@@ u@@ zivo rw@@ akawanda . +Va@@ iny@@ atso@@ ita basa ravo pa@@ Bh@@ et@@ eri asi vais@@ amb@@ ore@@ ga kuita basa re@@ kuparidza . +Ndi@@ ina A@@ ng@@ el@@ a muna 19@@ 7@@ 5 , tak@@ am@@ irira kuita n@@ ha@@ ur@@ irano ne@@ vat@@ ori ven@@ hau pa@@ T@@ V +Pashure pem@@ akore mat@@ atu , t@@ akash@@ ev@@ edzwa ku@@ Bh@@ et@@ eri . +Nei Jehovha na@@ Kristu v@@ akakodzera ku@@ kudz@@ wa ? +Vanhu vakas@@ ikwa “ nomu@@ fananidzo waMwari . ” +8 , 9 . ( a ) Zvapupu zvaJehovha zvino@@ ona sei vakuru ve@@ hurumende ? +( Verenga 1 Timoti 5 : 17 . ) +Uye@@ wo mus@@ an@@ zi ‘ vat@@ ungamiriri , ’ nokuti Mut@@ ungamiriri w@@ enyu mumwe chete , iye Kristu . +Munhu wose ano@@ zvik@@ w@@ idz@@ ir@@ idza ach@@ an@@ inip@@ iswa , uye munhu wose ano@@ zvininipisa ach@@ ak@@ w@@ idz@@ ir@@ idzwa . ” +Nei vamwe vas@@ inga@@ faniri kut@@ i@@ itira zvis@@ arudzo ? +( a ) Kana tichi@@ da kuita zvis@@ arudzo ne@@ ku@@ chenjera , tinofanira kuva ne@@ kutenda muchi@@ i ? +Chii chi@@ chat@@ ibatsira kuita zvis@@ arudzo ne@@ ku@@ chenjera ? +( Verenga 2 VaKorinde 1 : 24 . ) +Va@@ kuru vane rudo vano@@ batsira vamwe kuti va@@ ite zvis@@ arudzo ve@@ ga ( Ona nd@@ ima 11 ) +Va@@ kuru vano@@ fan@@ irawo kuts@@ va@@ kur@@ udza . +Chi@@ cha@@ ita kuti mhuri yangu if@@ are uye ive ner@@ ugare here ? +Uye chi@@ char@@ atidza here kuti nd@@ ine mwoyo mu@@ refu ne@@ mutsa ? ’ +Nei Jehovha achit@@ arisira kuti ti@@ zvis@@ arudz@@ ire te@@ ga ? +Zv@@ inor@@ ev@@ ei kush@@ umira Jehovha nem@@ woyo w@@ akakwana ? +P@@ am@@ adz@@ imambo m@@ ana aya nde@@ upi wa@@ ung@@ ada kut@@ evedzera uye nei ? +( Verenga 2 Mak@@ or@@ on@@ ike 14 : 11 . ) +M@@ woyo wako wa@@ iz@@ oku@@ kurudzira kuit@@ ei ? +Mwanakomana wa@@ As@@ a , Jeho@@ sha@@ f@@ ati , “ akaramba achi@@ famba nenzira y@@ ab@@ aba vake As@@ a . ” +( Verenga 2 Mak@@ or@@ on@@ ike 20 : 2 - 4 . ) +( Verenga Isaya 37 : 15 - 20 . ) +( Verenga 2 M@@ adz@@ imambo 20 : 1 - 3 . ) +( Verenga 2 Mak@@ or@@ on@@ ike 34 : 18 , 19 . ) +Nei ta@@ va kuda ku@@ ongorora mi@@ enzaniso yem@@ adz@@ imambo m@@ ana a@@ Judha ? +( Verenga 2 Mak@@ or@@ on@@ ike 16 : 7 - 9 . ) +( Verenga 2 Mak@@ or@@ on@@ ike 32 : 31 . ) +V@@ akawanda vano@@ ir@@ umb@@ idza pa@@ mus@@ ana pe@@ hurukuro yacho . +( Verenga 2 Mak@@ or@@ on@@ ike 35 : 20 - 22 . ) +Bhaibheri rinoti mashoko a@@ N@@ ek@@ o “ aka@@ bva mu@@ mur@@ omo ma@@ Mwari . ” +Ng@@ ati@@ fung@@ is@@ is@@ ei nyaya idzi dze@@ muBhaibheri t@@ oratidza kuti tino@@ onga kuti Jehovha ak@@ ati@@ pa mi@@ enzaniso yakadaro ! +W@@ akaita mh@@ iko ng@@ ani kuna Jehovha ? +Zvaka@@ dini nem@@ h@@ iko yako ye@@ ku@@ zvit@@ sa@@ urira kana kuti mh@@ iko yako ye@@ much@@ ato ? +P@@ atino@@ funga kuti t@@ ab@@ at@@ wa zvisina kunaka kana kuti p@@ atino@@ ona se@@ kuti pane kus@@ ar@@ uram@@ isira kwa@@ itika , kutenda , ku@@ vimbika uye ku@@ zvininipisa kwedu kun@@ ga@@ edzwa . +“ Nyika iri kupfuura pamwe chete noku@@ chi@@ va kwa@@ yo , asi uyo anoita kuda kwaMwari anor@@ amba ar@@ ipo nokusingaperi . ” ​ — 1 J@@ O@@ H . 2 : 17 . +Jehovha ach@@ aita sei nevanhu vaka@@ ipa uye nem@@ as@@ angano ane uny@@ eng@@ eri ? +Bhaibheri rinoti : “ Nyika iri kupfuura . ” +Ha@@ kuna r@@ ima kana zar@@ ima chero r@@ ipi zv@@ aro rokuti vaya vanoita zvinhu zvino@@ kuva@@ dza va@@ van@@ de im@@ omo . ” +Mu@@ Pisarema iroro tino@@ vereng@@ awo kuti : “ V@@ akarurama vach@@ ag@@ ara nh@@ aka y@@ enyika , vach@@ ag@@ ara ma@@ iri nokusingaperi . ” +“ V@@ any@@ oro ” uye “ v@@ akarurama ” ndi@@ vana@@ ani ? +Nei ting@@ ava nechokwadi che@@ kuti nyika itsva ich@@ ange y@@ akany@@ ats@@ or@@ ong@@ eka ? +Pashure pe@@ A@@ mag@@ ed@@ h@@ oni , pane s@@ angano ri@@ change r@@ ir@@ ipo panyika here ? +Saka zvinhu zvi@@ change zv@@ akar@@ ong@@ eka ‘ munyika itsva . ’ +N@@ de@@ ap@@ i mabasa aka@@ ipa ari kuny@@ anya kuitwa kwa@@ uno@@ gara , uye ari kuk@@ anganisa sei iwe nem@@ huri yako ? +Tino@@ dzidz@@ ei paku@@ par@@ adzwa kwaka@@ itwa S@@ od@@ homa ne@@ G@@ om@@ ora naJehovha ? +( Verenga 2 Petro 2 : 6 - 8 . ) +( Verenga Pisarema 46 : 8 , 9 . ) +N@@ de@@ zv@@ ipi zvimwe zvinhu zvin@@ enge zvis@@ is@@ ipo zvach@@ ose pashure pe@@ A@@ mag@@ ed@@ h@@ oni ? +T@@ aura muenzaniso . ( b ) T@@ inga@@ ita sei kuti tive nechokwadi che@@ kuti t@@ inor@@ amba tir@@ ipo nyika ino pa@@ ich@@ ange is@@ is@@ ipo ? +“ M@@ U@@ T@@ ON@@ G@@ I w@@ enyika yose ha@@ asi ku@@ zo@@ ita zv@@ akarurama here ? ” +Ne@@ kuti Jehovha ndiye an@@ oratidza muenzaniso mukuru we@@ kur@@ uram@@ isira uye we@@ kururama . +Va@@ Kristu vanot@@ arisira ku@@ batwa zvisina kururama nevanhu vas@@ iri muungano yechiKristu . +Muna 19@@ 46 , vaka@@ pinda k@@ ir@@ asi yechi@@ 8 ye@@ chikoro che@@ Gir@@ iye@@ dh@@ i mu@@ New York , U.@@ S@@ .@@ A . +Pashure pe@@ kunge va@@ gir@@ a@@ j@@ u@@ w@@ eta , vaka@@ piwa basa re@@ mu@@ d@@ unhu mu@@ S@@ wit@@ z@@ er@@ land . +M@@ i@@ enzaniso ipi y@@ ati@@ cha@@ kurukura mun@@ yaya ino ne@@ inot@@ evera ? +Mun@@ yaya ino ti@@ cha@@ kurukura nezva@@ Jos@@ ef@@ a , mu@@ z@@ u@@ kuru@@ chi@@ bv@@ i wa@@ Abra@@ hamu , uye zva@@ aka@@ it@@ irwa ne@@ vak@@ oma vake . +10 , 11 . ( a ) Jos@@ ef@@ a akas@@ angana ne@@ kus@@ ar@@ uram@@ isira kwakaita sei ? +( Verenga Mateu 5 : 23 , 24 ; 18 : 15 . ) +Ku@@ vimbika kuna Jehovha uye ku@@ hama dzedu kuch@@ atidz@@ ivirira kuti tis@@ aita chik@@ angan@@ iso chaka@@ daro . +Chin@@ onyanya ku@@ kosha nde@@ che@@ kuti haana ku@@ bvumira kuti kuk@@ anganisa kwe@@ vamwe kumu@@ paradz@@ an@@ ise naJehovha . +Nei tichi@@ fanira kuwedzera kus@@ wed@@ era pedyo naJehovha kana tik@@ ab@@ at@@ wa zvisina kururama muungano ? +T@@ ing@@ ar@@ atidza sei kuti tino@@ vimba ‘ ne@@ Mut@@ ongi w@@ enyika yose ’ ? +Ona nyaya y@@ oupenyu ya@@ W@@ ill@@ i D@@ i@@ e@@ h@@ l inoti , “ Jehovha ndi@@ Mwari W@@ angu , W@@ andi@@ ch@@ av@@ imba Na@@ ye , ” iri mu@@ Nharireyomurindi ya@@ No@@ v@@ ember 1 , 199@@ 1 . +( Ona mi@@ fananidzo iri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) M@@ ibvunzo ipi ich@@ ap@@ ind@@ urwa mun@@ yaya ino ? +V@@ akaratidza muenzaniso w@@ akanaka ku@@ varume ne@@ vakadzi vanos@@ arudza kuita mh@@ iko kuna Jehovha mazuva ano . +Ku@@ ita mh@@ iko kuna Mwari in@@ yaya yaka@@ kura zvakadini ? +Tino@@ wana zvidz@@ idzo zv@@ ipi pana Je@@ f@@ ta na@@ H@@ ana ? +2 , 3 . ( a ) Chii chin@@ onzi mh@@ iko ? +( b ) Magwaro ano@@ ti@@ i nezve@@ kuita mh@@ iko kuna Mwari ? +( a ) Ku@@ ita mh@@ iko kuna Mwari in@@ yaya yaka@@ kura zvakadini ? +( b ) T@@ ich@@ adz@@ idz@@ ei nezva@@ Je@@ f@@ ta na@@ H@@ ana ? +( a ) Z@@ vaiva nyore here kuti Je@@ f@@ ta nem@@ wan@@ asikana wake var@@ ip@@ e mh@@ iko ya@@ Je@@ f@@ ta ? +Je@@ f@@ ta akati : “ Nd@@ as@@ hama mur@@ omo wangu kuna Jehovha , uye hand@@ ik@@ wan@@ isi kure@@ ga . ” +( b ) M@@ h@@ iko yaka@@ itwa na@@ H@@ ana y@@ aizo@@ ita kuti Samu@@ eri ave ne@@ upenyu hw@@ akaita sei ? +Ak@@ a@@ enda na@@ Samu@@ eri kuna E@@ ri , Mup@@ rist@@ i Mu@@ kuru , kut@@ e@@ bh@@ en@@ ek@@ eri yaiva mu@@ Sh@@ iro ndo@@ kuti : “ Nd@@ akany@@ engetera pamusoro po@@ muk@@ omana uyu [ uye Jehovha akandi@@ pa ] chi@@ kumb@@ iro ch@@ angu ch@@ and@@ aka@@ mu@@ kumbira . +M@@ h@@ iko ye@@ chipiri in@@ onyanya ku@@ kosha inga@@ itwa ne@@ munhu im@@ h@@ iko ye@@ much@@ ato . +Bhaibheri rino@@ ti@@ i nezve@@ kur@@ amb@@ ana uye kupar@@ adz@@ ana ? +( Verenga 1 VaKorinde 7 : 10 , 11 . ) +Mumwe murume ne@@ mudzimai v@@ akati : “ Ku@@ bva pat@@ akatanga kudzidza b@@ hur@@ o@@ ch@@ a iri , tiri kuf@@ ara mu@@ wan@@ ano yedu zvat@@ anga tis@@ ati t@@ ambo@@ ita . ” +Zvinhu zva@@ va nani chaizvo mu@@ wan@@ ano yedu . ” +18 , 19 . ( a ) V@@ aberek@@ i vakawanda ve@@ chiKristu vari kuit@@ ei ? +( b ) T@@ ing@@ ati@@ i nezve@@ vaya vari mubasa cha@@ iro r@@ enguva yakazara ? +M@@ h@@ iko ye@@ basa cha@@ iro r@@ enguva yakazara ( Ona nd@@ ima 19 ) +Van@@ onzi vashumiri chai@@ vo kwete ne@@ kuti v@@ akak@@ osha kupfuura vamwe vashumiri v@@ ese vaMwari asi mabasa a@@ vanoita ndi@@ wo anok@@ osha . +K@@ akawanda k@@ acho vano@@ dzidz@@ isira pa@@ Dz@@ imba Dz@@ em@@ ag@@ ungano , pa@@ Dz@@ imba dze@@ Umambo kana pa@@ zviv@@ ako zvino@@ it@@ irwa zvik@@ oro zv@@ es@@ angano . +W@@ em@@ as@@ imb@@ a@@ ose ano@@ fara nokuti iwe w@@ akarurama here , kana kuti ane cha@@ ano@@ wana here nokuti iwe uno@@ ita kuti nzira yako is@@ ava ne@@ cha@@ ino@@ p@@ om@@ erwa ? ” +( b ) Va@@ Israeri vaka@@ kunda sei u@@ to ra@@ J@@ ab@@ hin@@ i ? +( Verenga V@@ atong@@ i 4 : 14 - 16 . ) +R@@ uk@@ ova rwa@@ K@@ ish@@ oni rwaka@@ va@@ ku@@ kura . ” +Ona nyaya inoti , “ Ku@@ zvid@@ ya M@@ woyo N@@ eny@@ aya Dz@@ em@@ ari ” iri mu@@ Nharireyomurindi ya@@ J@@ u@@ ly 1 , 20@@ 15 . +1 , 2 . ( a ) N@@ ab@@ ho@@ ti ne@@ van@@ akomana vake vakas@@ angana ne@@ kus@@ ar@@ uram@@ isira kwakaita sei ? +( b ) T@@ ich@@ adz@@ idza zvinhu zv@@ ipi zviv@@ iri mun@@ yaya ino ? +N@@ ab@@ ho@@ ti aiva munhu akaita sei , uye akar@@ amb@@ irei kut@@ eng@@ es@@ era A@@ ha@@ bh@@ i mun@@ da wake wem@@ iz@@ amb@@ iring@@ a ? +N@@ ab@@ ho@@ ti a@@ inge akatendeka kuna Jehovha panguva iyo vaIsraeri vakawanda vait@@ evedzera zvinhu zv@@ akashata zvai@@ itwa na@@ Mambo A@@ ha@@ bh@@ i ne@@ mudzimai wake akanga aka@@ ipa , M@@ amb@@ ok@@ adzi Je@@ ze@@ b@@ heri . +Verenga 1 M@@ adz@@ imambo 21 : 1 - 3 . +Ak@@ ats@@ anangura zvine r@@ ur@@ emek@@ edzo kuti : “ H@@ and@@ ing@@ ambo@@ fung@@ i zvakadaro , mu@@ kuona kwa@@ Jehovha , kuti ndi@@ ku@@ pe@@ i nh@@ aka yem@@ adz@@ it@@ at@@ eg@@ uru angu . ” +Nei ku@@ zvininipisa kwa@@ ig@@ ona ku@@ chenget@@ edza hama nes@@ hamwari dza@@ N@@ ab@@ ho@@ ti ? +( Verenga Dhe@@ uteronom@@ io 32 : 3 , 4 . ) +( b ) Ku@@ zvininipisa kuch@@ ati@@ chenget@@ edza sei ? +U@@ cha@@ ita sei kana vakuru vaka@@ zivisa chis@@ arudzo cha@@ us@@ ing@@ abv@@ um@@ ir@@ ani n@@ acho ? +In@@ yaya ipi y@@ ati@@ cha@@ ongorora , uye nei ? +Petro akar@@ uram@@ iswa sei , uye mibvunzo ipi ino@@ vapo ? +Ak@@ at@@ o@@ zo@@ f@@ em@@ erwa kuti any@@ ore ts@@ amba mbiri dziri muBhaibheri . +3 Ku@@ batsira ‘ V@@ at@@ orwa ’ Kuti ‘ V@@ as@@ hum@@ ire Jehovha Va@@ chi@@ fara ’ +N@@ yaya ye@@ chipiri in@@ oratidza kuti kushandisa ma@@ zano e@@ Bhaibheri kung@@ ab@@ atsira sei vabereki vanenge vat@@ amira kune dzimwe nyika kuti va@@ ite zvis@@ arudzo zvino@@ batsira vana vavo . +“ T@@ ai@@ ona vanhu vach@@ im@@ hanya va@@ chir@@ idza pf@@ ut@@ i . +V@@ aberek@@ i vangu nes@@ u vana 11 tak@@ ati@@ za ti@@ ine zvinhu zvis@@ homan@@ ana chete . +Jesu uye vamwe vateveri vake vakawanda vakas@@ vika sei pa@@ kuva vap@@ ot@@ eri ? +Ak@@ ati : “ Pa@@ vano@@ kutambudz@@ ai mug@@ uta rimwe , tiz@@ irai kune rimwe . ” +( b ) pa@@ vanenge vachi@@ gara mu@@ mus@@ asa we@@ vap@@ ot@@ eri ? +Ma@@ kumb@@ o angu aka@@ zv@@ imba zve@@ kuti ndaka@@ udza vamwe ve@@ mum@@ ba m@@ edu kuti va@@ ende ha@@ vo va@@ chin@@ dis@@ iya . +Baba vangu havana kuda kun@@ dis@@ iya kuti ndi@@ zot@@ orwa ne@@ vap@@ and@@ uk@@ i saka vak@@ and@@ it@@ a@@ kura . +V@@ aiita ma@@ ku@@ hwa , va@@ id@@ h@@ ak@@ wa , vai@@ ita zve@@ ku@@ b@@ he@@ j@@ a , va@@ ib@@ a uye vai@@ ita unz@@ enza . ” +( Verenga 1 Johani 3 : 17 , 18 . ) +( b ) Nei tichi@@ fanira kuva nem@@ woyo mu@@ refu pat@@ inenge tichi@@ va@@ batsira ? +Dz@@ ino@@ fanira kuona kuti tine hanya n@@ adzo . +( b ) V@@ ap@@ ot@@ eri vang@@ ar@@ atidza sei kuti vano@@ onga ? +T@@ ing@@ ab@@ atsira sei hama ne@@ hanzvadzi dzedu dz@@ inenge dziri vap@@ ot@@ eri ? +( a ) V@@ ap@@ ot@@ eri vanofanira kur@@ wisa mu@@ edzo upi ? +Pa@@ ku@@ pedzisira , vakas@@ i@@ mudz@@ a b@@ he@@ g@@ i rakanga ris@@ isina chinhu ndo@@ kutaura va@@ chin@@ yem@@ w@@ erera kuti : ‘ Ma@@ onaka ? +Zvinhu zv@@ ese zv@@ aiva mu@@ b@@ he@@ g@@ i um@@ u ha@@ zvik@@ os@@ hi muupenyu ! ’ ” ​ — Verenga 1 Timoti 6 : 8 . +Hama dzavo dze@@ chiKristu dzino@@ fanira kuva@@ bata nenzira ino@@ ita kuti va@@ one kuti Jehovha ano@@ va@@ da uye kuti ane tsitsi . +M@@ azuva ano vap@@ ot@@ eri vakawanda vano@@ bva kuny@@ ika dz@@ at@@ inor@@ amb@@ idzwa kuita basa redu t@@ akas@@ unung@@ uka . +H@@ an@@ zvadzi yacho yakati : “ Hama dz@@ ek@@ o dzaka@@ va@@ bata se@@ hama dze@@ pedyo dz@@ ichi@@ vap@@ a zve@@ kud@@ ya , zvoku@@ pf@@ eka , pe@@ kugara uye mari ye@@ kuf@@ amb@@ isa . +Ndi@@ vana@@ ani vang@@ ag@@ a@@ much@@ ira vanhu va@@ vasing@@ aziv@@ i mudz@@ imba dzavo nemhaka bedzi ye@@ kuti van@@ on@@ amata Mwari mumwe chete ? +Zvapupu zvaJehovha chete ndizvo zvino@@ daro ! ” ​ — Verenga Johani 13 : 35 . +Mup@@ ot@@ eri pa@@ an@@ ong@@ os@@ vika , vakuru vanofanira ku@@ kurumidza kut@@ evedzera mir@@ ay@@ ir@@ idzo iri mu@@ bhuku ra@@ T@@ akar@@ ongwa Kuti T@@ i@@ ite Zvino@@ da Jehovha , chit@@ sa@@ uko 8 nd@@ ima 30 . +Pa@@ vanenge vak@@ am@@ irira mh@@ induro , vanogona kushandisa ung@@ war@@ u paku@@ bvunza mup@@ ot@@ eri wacho nezve@@ ungano yake uye ushumiri hwake kuti va@@ z@@ ive kuti akasimba zvakadini pa@@ kunamata . +“ H@@ and@@ ina chikonzero chikuru choku@@ onga chino@@ pfuura zvinhu izvi , kuti nd@@ inz@@ we kuti vana vangu vari kuramba vachi@@ famba mu@@ chokwadi . ” — 3 J@@ O@@ H . 4 . +V@@ aberek@@ i vang@@ ar@@ atidza sei vana vavo muenzaniso w@@ akanaka ? +M@@ is@@ oro yem@@ huri ing@@ as@@ arudza sei kuti mhuri ich@@ ap@@ inda ne@@ ungano ye@@ mutauro upi ? +Vamwe vang@@ ab@@ atsira sei vabereki ne@@ vana vavo vakat@@ amira kune imwe nyika ? +1 , 2 . ( a ) V@@ ana vakawanda ve@@ vanhu vakat@@ amira kune dzimwe nyika vanos@@ angana ne@@ dambudziko r@@ ipi ? +( b ) N@@ yaya ino icha@@ kurukura mibvunzo ipi ? +“ Asi pand@@ akatanga kuenda ku@@ chikoro , nd@@ akatanga kuf@@ arira mutauro we@@ munyika yat@@ akat@@ amira . +Pas@@ ina makore akawanda , ndakanga nd@@ at@@ o@@ chinja zvach@@ ose . +N@@ da@@ is@@ anz@@ wisisa zva@@ idz@@ idz@@ iswa ku@@ misangano uye tsika dz@@ angu ne@@ dze@@ vabereki vangu dz@@ akanga dz@@ akat@@ os@@ iyana . ” +3 , 4 . ( a ) V@@ aberek@@ i vang@@ ar@@ atidza sei vana vavo muenzaniso w@@ akanaka ? +( b ) V@@ aberek@@ i hava@@ faniri kut@@ aris@@ irei kubva ku@@ vana vavo ? +Pa@@ vano@@ ona “ mu@@ chit@@ anga kutsvaka um@@ ambo , ” vano@@ dzidza ku@@ vimba naJehovha kuti a@@ vap@@ e zve@@ kurarama nazvo zuva rimwe ner@@ imwe . +Mus@@ amb@@ of@@ a m@@ aka@@ bat@@ ikana zve@@ kuti muno@@ sha@@ yira vana v@@ enyu nguva . +V@@ ana v@@ enyu vang@@ ab@@ ats@@ irwa sei ne@@ kudzidza mutauro w@@ enyu ? +V@@ aberek@@ i , kana vana v@@ enyu vaka@@ daro , mun@@ ga@@ edza here kudzidza mutauro we@@ munyika ma@@ cho ? +H@@ andi@@ zvo here zvino@@ fanira kuitwa kana mwana ach@@ iny@@ atso@@ kwanisa ku@@ kurukura ne@@ mumwe mutauro ? +Kana zviri izvo zviri ku@@ itika mumhuri m@@ enyu ha@@ zvir@@ ev@@ i kuti ha@@ mu@@ kw@@ an@@ isi kubatsira vana v@@ enyu kuti va@@ z@@ ive uye va@@ de Jehovha . +“ Asi pat@@ ai@@ ona vach@@ idz@@ idza Bhaibheri , va@@ chiny@@ engetera uye vachi@@ ita zv@@ ese zva@@ vaig@@ ona kuti vait@@ ise kunamata kwem@@ huri vhiki imwe ne@@ imwe , t@@ akan@@ z@@ wisisa kuti kuziva Jehovha kuno@@ kosha zvikuru . ” +V@@ aberek@@ i vang@@ ab@@ atsira sei vana vang@@ ada kudzidza ne@@ zvaJehovha mum@@ it@@ a@@ uro m@@ iv@@ iri ? +( a ) Ndi@@ ani anofanira kus@@ arudza kuti mhuri yo@@ pinda ne@@ ungano ye@@ mutauro upi ? +Asi kana vana vasing@@ any@@ ats@@ onz@@ wis@@ isi mutauro wacho , ha@@ vak@@ wan@@ isi kudzidza zvakawanda . +( Verenga 1 VaKorinde 14 : 9 , 11 . ) +M@@ h@@ induro yem@@ iny@@ engetero yedu ya@@ is@@ ava nyore kwat@@ iri . +Asi pat@@ akaona kuti vana vakanga vas@@ iri kuny@@ atso@@ batsirwa nem@@ is@@ angano ye@@ mutauro wedu , t@@ akas@@ arudza kupinda ne@@ ungano ye@@ mutauro we@@ munyika yat@@ akat@@ amira . +T@@ ai@@ gara ti@@ chip@@ inda misangano uye tichi@@ par@@ idzira t@@ ese . +T@@ a@@ ik@@ ok@@ awo hama dze@@ muungano kuti ti@@ d@@ ye t@@ ese uye tis@@ han@@ y@@ ire dzimwe nzvimbo . +Zv@@ ese izvi zvaka@@ batsira vana vedu kuti va@@ z@@ ive hama dze@@ muungano uyewo kuti va@@ z@@ ive Jehovha sa@@ Mwari wavo , Baba vavo uye S@@ hamwari yavo . +T@@ ai@@ ona izvi zvi@@ chik@@ osha zvikuru kupfuura kuti vany@@ atso@@ gona mutauro wedu . ” +Samuel ano@@ wedzera kuti : “ Kuti tir@@ ambe t@@ akasimba pa@@ kunamata , ini ne@@ mudzimai wangu t@@ ai@@ p@@ in@@ da@@ wo misangano mu@@ mutauro wedu . +T@@ ai@@ gara taka@@ bat@@ ikana uye t@@ akan@@ eta . +Asi tino@@ t@@ enda Jehovha kuti akak@@ ombor@@ era zvat@@ aiita uye ku@@ zvipira kwedu . +V@@ ana vedu v@@ ese vari vat@@ atu vari kush@@ umira Jehovha mubasa r@@ enguva yakazara . ” +Krist@@ ina anoti : “ N@@ da@@ iti ziv@@ ei mutauro we@@ vabereki vangu , asi zva@@ it@@ aurwa ku@@ misangano ndakanga nd@@ is@@ inga@@ zvin@@ z@@ wis@@ isi . +P@@ and@@ aiva nemakore 12 , nd@@ akap@@ inda g@@ ungano mu@@ mutauro wand@@ ais@@ handisa ku@@ chikoro . +A@@ pa ndi@@ po pand@@ akatanga kunzwisisa kuti zva@@ it@@ aurwa ipapo ndi@@ cho chai@@ va chokwadi . +Ndaka@@ bats@@ ir@@ wawo pand@@ akatanga kuny@@ engetera mu@@ mutauro wand@@ ais@@ handisa ku@@ chikoro . +Z@@ vaiva nyore kutaura naJehovha zvichi@@ bva pam@@ woyo . ” +V@@ echi@@ d@@ iki , muno@@ funga kuti zviri nani kuva muungano ye@@ mutauro we@@ munyika ya@@ muno@@ gara here ? +Na@@ dia , uyo ava kushanda pa@@ Bh@@ et@@ eri anoti , “ In@@ i nevamwe vana ve@@ mum@@ ba m@@ edu pat@@ akanga ta@@ va ku@@ yar@@ uka , t@@ aida kut@@ amira ku@@ ungano ye@@ mutauro we@@ munyika mat@@ ino@@ gara . ” +“ Iye zvino tino@@ onga kuti vabereki vedu vakas@@ handa nesimba kuti v@@ atidz@@ idz@@ ise mutauro wavo uye vakaita kuti tir@@ ambe tiri muungano ye@@ mutauro i@@ woyo . +Izvi zviri kut@@ ibatsira chaizvo uye zviri kuita kuti tive nem@@ ikana yakawanda ye@@ kubatsira vamwe kuti va@@ z@@ ive Jehovha . ” +( b ) V@@ aberek@@ i vang@@ a@@ wana sei ru@@ bats@@ iro rwe@@ kudzidzisa vana vavo chokwadi ? +( Verenga Zvirevo 1 : 8 ; 31 : 10 , 27 , 28 . ) +Kunyange zvakadaro , vabereki vasing@@ aziv@@ i mutauro we@@ munyika y@@ av@@ ari kugara vang@@ ada ku@@ batsirwa kuti vadzidz@@ ise vana vavo zvinos@@ vika pam@@ woyo . +V@@ ana ne@@ vabereki vano@@ batsirwa ne@@ ku@@ wadz@@ ana ne@@ ungano ( Ona nd@@ ima 18 , 19 ) +( b ) V@@ aberek@@ i vanofanira kuramba vachi@@ it@@ ei ? +“ N@@ da@@ idz@@ idza zvakawanda pa@@ dz@@ ain@@ di@@ batsira ku@@ gadzirira hurukuro . +Uye nd@@ ain@@ ak@@ idzwa ne@@ kut@@ and@@ ara kwat@@ aiita tiri boka . ” +V@@ aberek@@ i , ny@@ enget@@ er@@ ai kuna Jehovha uye it@@ ai zv@@ ese zva@@ muno@@ gona paku@@ batsira vana v@@ enyu . +( Verenga 2 Mak@@ or@@ on@@ ike 15 : 7 . ) +K@@ osh@@ es@@ ai us@@ hamwari hw@@ em@@ wana w@@ enyu naJehovha kupfuura zva@@ muno@@ da imi pach@@ enyu . +Asi ndaka@@ z@@ ony@@ ats@@ onz@@ wisisa chokwadi che@@ Bhaibheri muna 19@@ 46 . +Ne@@ kufamba kwenguva , ndaka@@ dzidza mutauro wem@@ as@@ ain@@ i uye ndakanga nd@@ ava kun@@ ak@@ idzwa ne@@ kut@@ amba nevamwe vana . +Ak@@ abv@@ uma kuny@@ or@@ esa kuti ap@@ ote achit@@ um@@ irwa magazini uye aida kuti ndi@@ on@@ ane ne@@ murume wake , G@@ ary . +Pa@@ ku@@ pedzisira , vanhu 5 ve@@ muk@@ ir@@ asi ma@@ vo vaka@@ va Zvapupu zvaJehovha . +Panguva iyoyo akandi@@ pa su@@ w@@ iti ndo@@ kun@@ di@@ udza kuti aida kuti tive shamwari . +Pa@@ akanga ava kuda ku@@ bhabhatidzwa , vabereki vake vaka@@ mu@@ udza kuti , “ Kana uk@@ ango@@ ita C@@ hap@@ upu cha@@ Jehovha chete , ib@@ va war@@ ong@@ edza t@@ wako ! ” +Ak@@ a@@ end@@ erera mberi ne@@ kudzidza Bhaibheri ndoku@@ zo@@ bhabhatidzwa . +P@@ at@@ aka@@ ch@@ ata muna 19@@ 60 , vabereki vake havana ku@@ uya ku@@ much@@ ato wedu . +Mwanakomana wangu N@@ ich@@ ol@@ as ne@@ mudzimai wake , De@@ bor@@ ah , vanos@@ humira pa@@ Bh@@ et@@ eri re@@ mu@@ L@@ ond@@ on +F@@ a@@ ye na@@ James , Jer@@ ry na@@ E@@ v@@ el@@ y@@ n , S@@ han@@ n@@ an na@@ St@@ even +Iye zvino ta@@ va muungano ye@@ C@@ al@@ g@@ ary S@@ ign - L@@ angu@@ age , m@@ and@@ iri ku@@ end@@ erera mberi ne@@ kush@@ umira se@@ mukuru . +T@@ inga@@ it@@ ei kuti kuda kw@@ atino@@ ita Jehovha kur@@ ambe kw@@ akasimba ? +T@@ inga@@ wedzera sei kuda kw@@ atino@@ ita chokwadi che@@ Bhaibheri ? +Nei zvi@@ chik@@ osha kuti ti@@ de hama dzedu ? +Chii ching@@ ango@@ daro chaka@@ ita kuti rudo rwe@@ vamwe vaKristu r@@ ut@@ on@@ h@@ ore ? +Vanhu vari kuwedzera kusa@@ da Mwari . +R@@ atidza kuti uno@@ da Jehovha ( Ona nd@@ ima 10 ) +( Verenga Pisarema 1@@ 19 : 9@@ 7 - 1@@ 00 . ) +R@@ atidza kuti uno@@ da chokwadi che@@ Bhaibheri ( Ona nd@@ ima 14 ) +Pa@@ us@@ iku hwake hwe@@ ku@@ pedzisira ari panyika , Jesu aka@@ udza vadzidzi vake kuti : “ Nd@@ iri ku@@ ku@@ pa@@ i mura@@ y@@ iro muts@@ va , kuti mu@@ d@@ an@@ ane ; s@@ oku@@ da kwand@@ aka@@ kuit@@ ai , kuti nem@@ iwo mu@@ d@@ an@@ ane . +V@@ ose vacha@@ ziva kuti muri vadzidzi vangu ne@@ izvi , kana mu@@ ine rudo pakati p@@ enyu . ” ​ — Jo@@ h . 13 : 34 , 35 . +Muapostora Johani akanyora kuti : “ U@@ yo asing@@ adi hama yake , ya@@ akaona , ha@@ ang@@ av@@ i achi@@ da Mwari , wa@@ asina kumb@@ o@@ ona . ” +R@@ atidza kuti uno@@ da hama ne@@ hanzvadzi ( Ona nd@@ ima 17 ) +Nd@@ edz@@ ipi dzimwe nzira dz@@ at@@ ing@@ ar@@ atidza n@@ adzo kuti tino@@ da hama dzedu ? +Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 4 : 9 , 10 . +21 : 15 . +Ak@@ ati kwa@@ vari : “ ‘ K@@ and@@ ai m@@ amb@@ ure kuru@@ tivi rwo@@ kur@@ ud@@ yi rwe@@ chik@@ ep@@ e uye mu@@ cha@@ wana . ’ +Vaka@@ bva va@@ akan@@ da , asi vakanga vasing@@ ach@@ ak@@ wan@@ isi ku@@ ak@@ we@@ vera mukati nokuda kwe@@ ho@@ ve zhinji . ” ​ — Jo@@ h . 21 : 1 - 6 . +( b ) Imwe hama ye@@ ku@@ T@@ ha@@ il@@ and yaka@@ wana ch@@ idz@@ idzo chipi chinokosha nezve@@ basa ra@@ yo ? +Saka ra@@ in@@ dis@@ iya ndi@@ ine nguva sho@@ man@@ ana ye@@ kuita zvinhu zve@@ kunamata . +Ndaka@@ zo@@ ona kuti nd@@ aifanira kuchinja basa r@@ angu kuti nd@@ ik@@ wan@@ ise ku@@ isa Umambo pe@@ kutanga . ” +“ Pashure pe@@ kur@@ onga zvinhu zv@@ angu kw@@ er@@ inenge gore , ” yakadaro hama yacho , “ nd@@ akas@@ arudza kufamba ndi@@ chit@@ eng@@ esa m@@ ai@@ ce cre@@ am . +Pa@@ kutanga , nd@@ ais@@ a@@ wana mari ino@@ kwana uye zv@@ akandi@@ odza mwoyo . +P@@ and@@ ais@@ angana ne@@ van@@ da@@ imb@@ os@@ handa navo , va@@ in@@ dis@@ eka uye va@@ indi@@ bvunza kuti nei nd@@ ai@@ funga kuti kut@@ eng@@ esa m@@ ai@@ ce cre@@ am kwa@@ iva nani pane ku@@ gadzira mak@@ omb@@ iy@@ uta ndiri munzvimbo inot@@ on@@ hor@@ era . +Nd@@ akany@@ engetera kuna Jehovha ndichi@@ kumbira kuti andi@@ bats@@ ire kuz@@ adz@@ isa chinangwa ch@@ angu che@@ kuwana nguva yakawanda ye@@ kuita zvinhu zve@@ kunamata . +Nd@@ akasvika pa@@ kuny@@ atso@@ ziva m@@ ai@@ ce cre@@ am ai@@ far@@ irwa nem@@ akas@@ it@@ oma angu uye ndaka@@ wedzera kuva nyanzvi paku@@ ag@@ adz@@ ira . +Pas@@ ina nguva , ndakanga nd@@ ava kut@@ eng@@ esa m@@ ai@@ ce cre@@ am angu ese zuva nezuva . +Nd@@ akanga nd@@ at@@ ova nem@@ ari yakawanda kupfuura pand@@ ai@@ gadzira mak@@ omb@@ iy@@ uta . +Mu@@ f@@ aro wangu waka@@ wedzera ne@@ kuti nd@@ ais@@ a@@ zvid@@ ya mwoyo se@@ zvand@@ aiita pand@@ ai@@ gadzira mak@@ omb@@ iy@@ uta . +Uye chin@@ onyanya ku@@ kosha nde@@ che@@ kuti iye zvino nd@@ ava pedyo zvikuru naJehovha . ” ​ — Verenga Mateu 5 : 3 , 6 . +Pashure pe@@ kunge ab@@ ha@@ bh@@ atidzwa , akati : “ Ch@@ and@@ in@@ ong@@ od@@ emba nde@@ che@@ kuti ndakanga nd@@ at@@ ot@@ amb@@ isa nguva yakawanda pand@@ aka@@ zo@@ ziva kuti kush@@ umira Jehovha kun@@ oun@@ za mufaro kupfuura zvinhu zve@@ ku@@ zviv@@ ar@@ a@@ idza nazvo zviri munyika . ” +Jesu akati “ hapana munhu anogona kushand@@ ira van@@ at@@ enzi vaviri . ” +Ak@@ a@@ wedzera kuti : “ Ha@@ mun@@ g@@ agoni kushand@@ ira Mwari pamwe chete ne@@ P@@ f@@ uma . ” +( Verenga 1 VaKorinde 2 : 14 . ) +Ona nyaya inoti “ Zva@@ uno@@ var@@ a@@ idzwa Na@@ zvo Zvino@@ batsira Here ? ” +T@@ ai@@ gar@@ awo tichi@@ ita basa re@@ kuparidza . ” +T@@ air@@ wadz@@ iwa chaizvo ne@@ ku@@ si@@ ya vadzidzi vedu ve@@ Bhaibheri . ” +Asi pashure pem@@ wedzi mumwe chete , vaka@@ gamuchira mashoko ano@@ fadza . +M@@ ir@@ i@@ am anoti : “ T@@ akan@@ zi tis@@ hum@@ ire sem@@ ap@@ iy@@ ona chai@@ wo . +T@@ aka@@ fara kuti t@@ aizo@@ kwanisa kuramba tiri mun@@ d@@ ima yacho . ” +Vaka@@ vimba ne@@ zvino@@ taurwa pana Pisarema 37 : 5 kuti : “ Is@@ a nzira yako pana Jehovha , u@@ vimb@@ e naye , uye iye acha@@ zvi@@ ita . ” +Iye zvino ndizvo zvat@@ iri kuita uye hapana zvinokosha zvat@@ inos@@ ha@@ ya . ” +Nei ting@@ at@@ arisira kuti mu@@ wan@@ ano uye mumhuri mu@@ chava nem@@ at@@ ambudziko ? +Jehovha akaita kuti zvinhu zvi@@ f@@ amb@@ ire zvakanaka vashumiri vake v@@ ekare uye tinogona kuva nechokwadi che@@ kuti anoda kuti zvid@@ ar@@ o@@ wo kwat@@ iri . ​ — Verenga Jerem@@ iya 29 : 11 , 12 . +( Verenga 1 Samu@@ eri 1 : 4 - 7 . ) +Pa@@ ul@@ a anoti : “ Kunyange zvazvo An@@ n ais@@ ava ne@@ ukama n@@ eni , kun@@ di@@ da kwa@@ aiita kw@@ akandi@@ batsira zvikuru . +Kw@@ akandi@@ batsira kuti nd@@ ir@@ ambe ndi@@ chis@@ humira Jehovha . ” +( Verenga Pisarema 14@@ 5 : 18 , 19 . ) +“ Pane pfuma y@@ enyu , ndi@@ po pa@@ cha@@ vawo nem@@ woyo y@@ enyu . ” ​ — R@@ U@@ K@@ A 12 : 34 . +P@@ at@@ inenge tichi@@ kurukura , fungisisa kuti iwe pach@@ ako ung@@ a@@ wedzera sei kuda kwa@@ uno@@ ita pfuma iyi ye@@ kunamata . +F@@ ung@@ idzira kuti par@@ era iroro ra@@ ik@@ osha zvakadini kwaari . +( Verenga M@@ ako 10 : 28 - 30 . ) +( a ) Nei muapostora Pauro akati ushumiri hwedu hw@@ akaita ‘ se@@ pfuma iri mum@@ idz@@ iyo y@@ ev@@ hu ’ ? +( Verenga VaRoma 1 : 14 , 15 ; 2 Timoti 4 : 2 . ) +Vamwe vacho vanos@@ humira pa@@ Bh@@ et@@ eri , vamwe map@@ iy@@ ona uye vamwe vakuru muungano . +I@@ r@@ ene anoti , “ P@@ and@@ ino@@ funga nezve@@ zvimwe zvin@@ angwa zvand@@ aigona kuva nazvo , han@@ di@@ oni pa@@ ine chimwe chai@@ gona kun@@ di@@ pa mufaro uno@@ pfuura wan@@ di@@ in@@ awo . ” +‘ D@@ ura re@@ pfuma ’ r@@ akat@@ aurwa naJesu pana Mateu 13 : 5@@ 2 chii , uye t@@ inor@@ iz@@ adza sei ? +( Verenga Zvirevo 2 : 4 - 7 . ) +F@@ unga nezve@@ muenzaniso we@@ imwe hama in@@ onzi Peter . +A@@ chi@@ da ku@@ edza Peter , r@@ ab@@ hi wacho aka@@ mu@@ bvunza kuti , “ Saka n@@ ha@@ i chik@@ omana , bhuku ra@@ Dhanieri r@@ akanyorwa ne@@ mutauro upi ? ” +Pa@@ aka@@ enda kumb@@ a akats@@ va@@ ga magazini e@@ Nharireyomurindi ne@@ Muk@@ ai ! +em@@ wedzi ya@@ inge y@@ apfuura uye aka@@ wana nyaya ya@@ its@@ anangura kuti bhuku ra@@ Dhanieri r@@ akanyorwa nechi@@ Ar@@ am@@ a@@ iki . +Pa@@ un@@ or@@ amba uchi@@ daro , u@@ chava ‘ ne@@ pfuma ku@@ mat@@ enga , uko mb@@ av@@ ha ising@@ as@@ wed@@ eri pedyo uyewo chit@@ em@@ am@@ ach@@ ira chis@@ ing@@ ad@@ yi . +Nokuti pane pfuma yako , ndi@@ po pa@@ cha@@ vawo nem@@ woyo wako . ’ — Ruka 12 : 33 , 34 . +“ T@@ ais@@ anz@@ wis@@ is@@ ana ne@@ imwe hama y@@ and@@ ais@@ handa nayo . +R@@ imwe zuva , vanhu vaviri vaka@@ pinda mat@@ ais@@ hand@@ ira vak@@ ati@@ ona ti@@ chip@@ op@@ ot@@ edz@@ ana . ” — CH@@ R@@ I@@ S . +“ Imwe hanzvadzi y@@ and@@ ai@@ wan@@ z@@ op@@ ar@@ idza nayo y@@ ak@@ ango@@ erek@@ ana y@@ ati tim@@ ire ur@@ ongwa hwedu hwe@@ kuparidza . +H@@ and@@ ina kuziva kuti yai@@ zvi@@ it@@ irei . ” — J@@ AN@@ E@@ T . +“ T@@ ait@@ aura paf@@ oni tiri vat@@ atu . +Mumwe we@@ van@@ da@@ it@@ aura navo aka@@ bva a@@ oneka uye ndaka@@ funga kuti akanga a@@ isa f@@ oni pasi . +Ndaka@@ bva nd@@ at@@ aura zv@@ akashata nezv@@ ake ne@@ mumwe akanga ach@@ iri paf@@ oni asi ndaka@@ zo@@ ziva kuti uya a@@ inge a@@ oneka akanga asina ku@@ isa f@@ oni pasi . ” — M@@ I@@ CH@@ A@@ E@@ L . +“ M@@ amwe map@@ iy@@ ona maviri e@@ muungano m@@ edu akatanga ku@@ ne@@ ts@@ ana . +Kun@@ ets@@ ana kwa@@ vai@@ ita nezvinhu zvisina basa kwai@@ ita kuti vamwe va@@ ore mwoyo . ” — G@@ AR@@ Y . +“ Mus@@ an@@ ets@@ ana par@@ w@@ end@@ o . ” +“ Pas@@ ina kur@@ angana , zvir@@ ongwa ha@@ zvib@@ ud@@ ir@@ iri . ” +M@@ icha@@ el anoti , “ Hama yangu y@@ ak@@ and@@ ir@@ eg@@ erera nem@@ woyo w@@ ese . ” +“ R@@ amb@@ ai much@@ ish@@ iv@@ ir@@ irana noku@@ k@@ angan@@ w@@ irana nomwoyo wose kana pa@@ ine munhu ane chikonzero cho@@ kuny@@ uny@@ ut@@ ira mumwe . ” +Iye zvino ava ku@@ wirirana sezva@@ ano@@ par@@ idza mashoko akanaka . +Kus@@ iyana ikoko kun@@ ga@@ ita se@@ kus@@ ina basa ; asi kunogona kuita kuti pa@@ ve nem@@ at@@ ambudziko aka@@ kura . ” +Kus@@ v@@ ot@@ wa kwa@@ cho zvak@@ wa@@ i@@ wedzera , nd@@ akatanga kutaura nayo zvisina r@@ ur@@ emek@@ edzo . +Nd@@ ai@@ zvi@@ udza kuti , ‘ Ha@@ and@@ ir@@ emek@@ edzi se@@ munhu mukuru , saka hand@@ isi ku@@ zo@@ mu@@ rem@@ ek@@ edz@@ awo . ’ ” +“ Nd@@ akatanga kuona zvik@@ angan@@ iso zv@@ angu uye ndaka@@ zv@@ ish@@ ora chaizvo . +Ndaka@@ ona kuti nd@@ aifanira kuchinja ma@@ fungiro angu . +Pashure pe@@ kuny@@ engetera kuna Jehovha nezv@@ eny@@ aya yacho , nd@@ akat@@ eng@@ era hanzvadzi yacho chi@@ po nd@@ ik@@ any@@ ora k@@ ad@@ hi ndichi@@ kumbira r@@ ur@@ eg@@ er@@ ero nemhaka yem@@ ait@@ iro angu akashata . +T@@ ak@@ amb@@ und@@ irana tik@@ abv@@ um@@ irana ku@@ siyana n@@ eny@@ aya yacho . +Ku@@ bvira ipapo , hat@@ ina kuz@@ omb@@ on@@ ets@@ ana zvak@@ are . ” +V@@ AN@@ H@@ U vakawanda mazuva ano van@@ ok@@ oshesa mari . +Nei nyaya yeuch@@ ang@@ am@@ ire ichi@@ fanira ku@@ gadzir@@ iswa ? +Kur@@ ever@@ erwa kwe@@ uch@@ ang@@ am@@ ire hwa@@ Jehovha kuno@@ kosha zvakadini ? +Chokwadi , ku@@ bvira pa@@ zuva r@@ akar@@ ara ma@@ dz@@ it@@ at@@ eg@@ uru edu mu@@ rufu , zvinhu zvose zviri kuramba zvakaita sezva@@ zvakanga zvak@@ ango@@ ita ku@@ bvira pa@@ zv@@ akatanga kus@@ ikwa . ” +( Verenga Isaya 5@@ 5 : 10 , 11 . ) +( Verenga Jobho 1 : 7 - 12 . ) +( Verenga Jobho 38 : 18 - 21 . ) +( Verenga VaRoma 5 : 3 - 5 . ) +Ch@@ imwe chikonzero nde@@ che@@ kuti anot@@ onga ner@@ udo . +Ano@@ ti@@ chengeta kupfuura kuzvi@@ chengeta kwat@@ inga@@ zvi@@ ita is@@ u pach@@ edu . +Va@@ kuru nem@@ is@@ oro yem@@ huri vang@@ at@@ evedzera sei Jehovha ? +Pisarema rechi@@ 14@@ 7 rino@@ kurudzira ra@@ kurudz@@ ir@@ azve vanhu vaMwari kuti var@@ umb@@ idz@@ e Jehovha . +M@@ uny@@ ori we@@ p@@ isarema aka@@ farira chii ne@@ zvaJehovha zve@@ kuti aida kuti Mwari ar@@ umb@@ idz@@ we ? +Hama ne@@ hanzvadzi dze@@ chi@@ d@@ iki dzakawanda dziri kupinda mubasa r@@ enguva yakazara . +“ Zvi@@ it@@ irei shamwari ne@@ pfuma isina kururama . ” ​ — R@@ U@@ K@@ A 16 : 9 . +T@@ inga@@ it@@ ei kuti tis@@ ava var@@ anda ve@@ chik@@ amu che@@ zve@@ kut@@ eng@@ es@@ er@@ ana ch@@ enyika ino ? +Mun@@ yika ino , nei var@@ ombo va@@ chir@@ amba var@@ ipo ? +T@@ ing@@ adz@@ idz@@ ei pa@@ zano ra@@ Jesu ? +Tino@@ ziva sei kuti zve@@ kut@@ eng@@ es@@ er@@ ana zva@@ is@@ ava pa@@ chinangwa cha@@ Mwari ? +T@@ aura mi@@ enzaniso ye@@ zviri kuitwa nevamwe pa@@ kushandisa pfuma isina kururama va@@ chir@@ atidza kuti vakatendeka . +Ndaka@@ ona kuti pand@@ ino@@ wedzera kupa ndino@@ wedz@@ er@@ awo kuva munhu an@@ ore@@ g@@ erera , ane mwoyo mu@@ refu nevamwe , asing@@ ag@@ ari aka@@ ora mwoyo uye ano@@ bvuma ma@@ zano . ” +Abra@@ hamu akaratidza sei kuti ai@@ vimba naMwari ? +( b ) T@@ ing@@ as@@ handisa sei zano ra@@ Pauro mazuva ano ? +Pashure pe@@ kunge Pauro a@@ mu@@ d@@ ana kuti “ mur@@ wi akanaka kwazvo wa@@ Kristu Jesu , ” aka@@ mu@@ udza kuti : “ Hapana munhu anos@@ handa so@@ mur@@ wi ano@@ zvip@@ inza mum@@ abasa o@@ kut@@ eng@@ es@@ er@@ ana oupenyu , kuti af@@ ar@@ ir@@ we nou@@ ya aka@@ mup@@ inza basa so@@ mur@@ wi . ” +Jehovha anok@@ ombor@@ era vaya ‘ vaka@@ pfuma pam@@ abasa akanaka . ’ +M@@ iti , mat@@ ombo uye s@@ imb@@ i zvem@@ hand@@ o ye@@ pamusoro zvi@@ change zvichi@@ wan@@ ika ma@@ h@@ ara kuti vanhu va@@ zvis@@ hand@@ ise paku@@ vaka mis@@ ha yakanaka . +Kuti up@@ e chi@@ po pa@@ ind@@ an@@ eti munyika dzino@@ bvum@@ irwa kudaro , enda pa@@ j@@ w@@ .@@ or@@ g wo@@ b@@ aya p@@ akan@@ zi “ I@@ pa Ch@@ ipo Che@@ kut@@ sigira B@@ asa R@@ edu Re@@ munyika Y@@ ose ” ne@@ che@@ pa@@ z@@ asi pe@@ peji chero ipi zva@@ yo . +“ P@@ AT@@ AK@@ A@@ F@@ IR@@ WA nem@@ wanakomana wedu t@@ akaita rin@@ enge gore ti@@ chir@@ wadz@@ iwa zvikuru , ” akadaro S@@ us@@ i . +Nguva imwe ne@@ imwe rugare rwa@@ Mwari rwa@@ ir@@ inda mwoyo ne@@ pfungwa dzedu . ” ​ — Verenga Va@@ Firipi 4 : 6 , 7 . +Jesu akaratidza sei tsitsi p@@ aka@@ fa R@@ az@@ aro ? +Kana uri kur@@ wadz@@ iwa , uno@@ g@@ on@@ awo kuny@@ ar@@ adzwa ne@@ mag@@ waro anot@@ evera : +( Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 5 : 11 . ) +Chii ch@@ atino@@ fanira ku@@ yeuka pan@@ yaya ye@@ kur@@ wadz@@ iwa ? +Kunyange mumwe akataura man@@ z@@ w@@ iro ake , ha@@ zvis@@ i nyore nguva dz@@ ese kuti vamwe vanz@@ wis@@ ise zva@@ anenge achi@@ edza kutaura . +Panguva iyoyo hand@@ inz@@ wi s@@ end@@ iri nde@@ ga pa@@ kur@@ wadz@@ iwa kw@@ angu . ” +“ Ku@@ gamuchira m@@ es@@ eji ino@@ kurudzira kana kuk@@ ok@@ wa kuti nd@@ imb@@ ot@@ and@@ ara ne@@ mumwe muKristu zvin@@ on@@ di@@ batsira chaizvo , ” anodaro J@@ un@@ ia . +“ I@@ zvozvo zvinoita kuti ndi@@ one kuti ndino@@ diwa uye vamwe vane hanya n@@ eni . ” +D@@ al@@ ene anoti , “ Dzimwe nguva , pan@@ ouya hanzvadzi kuz@@ ond@@ iny@@ aradza ndino@@ dzi@@ kumbira kuti kana dz@@ ichi@@ da dz@@ ind@@ iny@@ enget@@ er@@ ere . +V@@ anot@@ anga kuny@@ engetera , dzimwe nguva vachit@@ amb@@ urira ku@@ budisa mashoko pakutanga , asi nguva dz@@ ese , pashure pem@@ ashoko mas@@ homa iz@@ wi ravo rino@@ gadz@@ ikana uye van@@ ony@@ engetera zvichi@@ bva pam@@ woyo . +Kut@@ enda kwavo kw@@ akasimba uye rudo rwa@@ vo zvinos@@ imbisa kutenda kw@@ angu chaizvo . ” +“ S@@ hamwari ye@@ chokwadi ine rudo nguva dzose , uye i@@ hama ino@@ berek@@ erwa kubatsira pa@@ kun@@ enge ku@@ ine kutambudz@@ ika . ” +Imwe hama yakati : “ N@@ da@@ it@@ arisira kuti nd@@ aiz@@ or@@ wadz@@ iwa zvikuru pa@@ iz@@ os@@ vika zuva r@@ and@@ aka@@ ch@@ ata ne@@ mudzimai wangu , uyo akanga as@@ ha@@ ya . +Asi hama ne@@ hanzvadzi sho@@ man@@ ana dz@@ akar@@ onga kuti ti@@ ung@@ ane pamwe chete nes@@ hamwari dz@@ angu dze@@ pedyo kuitira kuti nd@@ is@@ ava nde@@ ga musi wacho . ” +“ K@@ azhinji zvino@@ batsira chaizvo vanhu vakat@@ aura kuti vanoda ku@@ kubatsira kana kuva ne@@ we panguva is@@ iri yechi@@ itiko chinokosha , ” anodaro J@@ un@@ ia . +“ Nguva dzaka@@ daro dzino@@ kosha chaizvo uye dzin@@ ony@@ aradza zvikuru . ” +V@@ akaita kuti nd@@ inz@@ we se@@ kuti Jehovha a@@ inge ak@@ and@@ imb@@ und@@ ira . ” +Nei zvaka@@ vimb@@ iswa naJehovha zvi@@ chiny@@ aradza zvikuru ? +Mwari ano@@ vimb@@ isa kuti “ ach@@ ap@@ aradza rufu nokusingaperi , uye Ch@@ ang@@ am@@ ire Is@@ he Jehovha ach@@ ap@@ u@@ kut@@ a mis@@ o@@ dzi pa@@ zv@@ iso zvose . ” +M@@ amwe mag@@ waro akany@@ aradza vakawanda nde@@ aya Pisarema 20 : 1 , 2 ; 31 : 7 ; 38 : 8 , 9 , 15 ; 5@@ 5 : 22 ; 1@@ 21 : 1 , 2 ; Isaya 5@@ 7 : 15 ; 6@@ 6 : 13 ; Va@@ Firipi 4 : 13 uye 1 Petro 5 : 7 . +O@@ na@@ wo nyaya inoti , “ N@@ y@@ aradza Vaka@@ f@@ irwa Se@@ zvaka@@ itwa naJesu , ” iri mu@@ Nharireyomurindi ya@@ No@@ v@@ ember 1 , 20@@ 10 . +“ H@@ ati@@ zivi kuti ting@@ at@@ aura kut@@ i@@ i kunze kwe@@ kuti tino@@ ku@@ dai . +H@@ at@@ ik@@ wan@@ isi kunzwisisa man@@ z@@ w@@ iro enyu chai@@ wo , asi Jehovha ano@@ anz@@ wisisa uye ach@@ ar@@ amba achi@@ ku@@ si@@ mudz@@ ai . +Tino@@ vimba kuti min@@ y@@ engetero yedu ich@@ ab@@ ats@@ irawo zvishoma . ” +“ Jehovha nga@@ a@@ kus@@ imb@@ is@@ ei panguva ye@@ kur@@ asikirwa zvikuru kwaka@@ dai . ” +“ D@@ ai muk@@ any@@ ar@@ adzwa ne@@ kuziva kuti Mwari ach@@ iri kuziva nezve@@ mumwe w@@ enyu , uye acha@@ yeuka zv@@ ese nezv@@ ake omu@@ mutsa . ” +“ Mumwe w@@ enyu ha@@ az@@ o@@ oni zvak@@ are mu@@ vengi we@@ ku@@ pedzisira , rufu . +Par@@ i@@ zvino , mabasa ake e@@ kutenda anor@@ amba achi@@ ye@@ uk@@ wa kusvika pa@@ acha@@ muts@@ wa mu@@ par@@ adhiso . ” +“ Kunyange zvazvo mashoko achit@@ adza ku@@ budisa kur@@ wa@@ dza kunoita kuf@@ irwa ne@@ munhu wa@@ uno@@ da , tino@@ t@@ arisira nguva ye@@ kuti mashoko ach@@ at@@ adza kuny@@ atso@@ budisa mufaro we@@ kuona Baba vedu ve@@ kudenga vachi@@ mu@@ mutsa . ” +Pa@@ kutambudz@@ ika kukuru , vaKristu vach@@ av@@ imba naJehovha uye hava@@ zo@@ edzi ku@@ zvidz@@ ivirira +Mup@@ ar@@ idzi ari kupar@@ idzira mumwe we@@ vas@@ handi ve@@ mu@@ mun@@ da wem@@ a@@ ap@@ uro muta@@ un@@ di re@@ G@@ r@@ ó@@ j@@ e@@ c +( b ) T@@ ing@@ adz@@ idz@@ ei mu@@ Pisarema rechi@@ 14@@ 7 ? +Uye kunogona kunge ku@@ ine zvi@@ uru zvem@@ abh@@ ir@@ iyoni em@@ ap@@ oka eny@@ er@@ edzi ! +Ndino@@ da kuti un@@ ak@@ idz@@ we ne@@ upenyu se@@ mumwe we@@ Zvapupu zv@@ angu ! ” +( Verenga Pisarema 14@@ 7 : 8 , 9 . ) +Mut@@ su@@ o anoti : “ Ndaka@@ ona kuti Jehovha aiva pedyo ne@@ mumwe ne@@ mumwe wedu uye a@@ iti@@ chengeta . +12 , 13 . ( a ) Kuti ti@@ bats@@ ir@@ we naMwari tinofanira kudz@@ iv@@ is@@ ei ? +Asi Mwari “ ano@@ wis@@ ira vaka@@ ipa pasi . ” +“ Jehovha ano@@ farira vaya vano@@ mut@@ ya , vaya van@@ om@@ irira [ rudo rwake rwaka@@ vimbika ] . ” +15 - 17 . ( a ) Dzimwe nguva ting@@ an@@ zwa sei nezvem@@ at@@ ambudziko edu , asi Jehovha anos@@ handisa sei Shoko rake kuti at@@ ib@@ ats@@ ire ? +M@@ azuva ano , Jehovha anot@@ it@@ ungamirira achis@@ handisa Shoko rake , Bhaibheri . +( Verenga Pisarema 14@@ 7 : 19 , 20 . ) +Zvir@@ ongwa zv@@ ipi zv@@ inga@@ ita kuti u@@ f@@ are mune ram@@ ang@@ wana ? +Ku@@ pa@@ y@@ ona kunogona ku@@ vh@@ ura m@@ ikana ye@@ i ? +I@@ M@@ I vechi@@ d@@ iki muno@@ gona ku@@ bvum@@ irana nazvo kuti ha@@ ut@@ ang@@ i rw@@ end@@ o us@@ ati war@@ onga kwa@@ uri kuda kuenda . +Up@@ enyu hwaka@@ fanana ner@@ w@@ end@@ o , uye pa@@ un@@ enge u@@ chiri mu@@ d@@ iki ndi@@ po pa@@ unofanira kur@@ onga kwa@@ uno@@ da ku@@ zo@@ enda . +Uno@@ ziva sei kuti Jehovha anoda kuti ur@@ ong@@ e kuti u@@ zova ner@@ am@@ ang@@ wana rino@@ fadza ? +Musiki wako ‘ ndi@@ Mwari wor@@ udo , ’ “ Mwari ano@@ fara , ” uyo akas@@ ika vanhu “ nomu@@ fananidzo wake . ” +U@@ cha@@ fara pa@@ uno@@ t@@ evedzera Mwari wedu ane rudo . +Jesu Kristu aka@@ ku@@ siy@@ irai muenzaniso w@@ akanaka zvikuru imi vechi@@ d@@ iki . +Jesu akas@@ we@@ der@@ awo pedyo naJehovha ku@@ bur@@ ikidza ne@@ kudzidza Magwaro . +“ Pas@@ ina kur@@ angana , zvir@@ ongwa ha@@ zvib@@ ud@@ ir@@ iri , asi pane vanhu vazhinji vanop@@ a ma@@ zano pane zvino@@ budirira . ” +K@@ ung@@ o@@ fanana nem@@ amwe mabasa , uno@@ da nguva ye@@ kuti u@@ ve ne@@ uny@@ anzvi . +P@@ and@@ akatanga ku@@ pa@@ y@@ ona hand@@ ina ku@@ kwanisa kuit@@ isa kunyange ch@@ idz@@ idzo che@@ Bhaibheri chimwe chete , asi ndaka@@ zo@@ enda kune imwe nd@@ ima uye nd@@ akak@@ wanisa kutanga zvidz@@ idzo zv@@ akati wand@@ ei mum@@ wedzi mumwe chete . +Mumwe wand@@ a@@ idz@@ idza naye akatanga ku@@ uya ku@@ I@@ mba yo@@ Umambo . +Se@@ muenzaniso , J@@ ac@@ o@@ b we@@ ku@@ N@@ or@@ th America akanyora kuti : “ P@@ and@@ aiva nemakore 7 , vanhu vakawanda van@@ da@@ idz@@ idza navo va@@ ib@@ va ku@@ V@@ i@@ et@@ na@@ m . +Nd@@ aida kuva@@ udza ne@@ zvaJehovha , saka pap@@ era k@@ anguva nd@@ akar@@ onga kuti nd@@ idz@@ idz@@ e mutauro wavo . +K@@ akawanda k@@ acho nd@@ a@@ idz@@ idza ndichi@@ ita zve@@ ku@@ enzan@@ isa Nharireyomurindi ye@@ Chir@@ ungu ne@@ yechi@@ V@@ i@@ et@@ nam@@ ese . +Nd@@ akat@@ ang@@ awo kush@@ am@@ war@@ idz@@ ana ne@@ hama dz@@ aiva muungano ye@@ mutauro wechi@@ V@@ i@@ et@@ nam@@ ese yaiva pedyo . +P@@ and@@ akanga nd@@ ava nemakore 18 , nd@@ akatanga ku@@ pa@@ y@@ ona . +Pa@@ va pa@@ ya nd@@ akap@@ inda Chik@@ oro che@@ Bhaibheri Che@@ hama Dz@@ isina Kur@@ o@@ ora . +Chik@@ oro ichi chiri kun@@ di@@ batsira sezvo ndiri kush@@ umira nd@@ ing@@ ori mukuru mumwe chete mune rimwe boka re@@ mutauro wechi@@ V@@ i@@ et@@ nam@@ ese . +Vanhu vakawanda vechi@@ V@@ i@@ et@@ nam@@ ese vanos@@ ham@@ iswa kuti ndaka@@ dzidza mutauro wavo . +Van@@ on@@ di@@ p@@ inza mum@@ ba uye kazhinji nd@@ inot@@ anga kudzidza Bhaibheri navo . +Vamwe vavo vakat@@ ob@@ ha@@ bh@@ atidzwa . ” ​ — E@@ nz@@ anisa na@@ Mabasa 2 : 7 , 8 . +Nd@@ in@@ on@@ ak@@ idzwa ne@@ ku@@ kurudzira hama dze@@ chi@@ d@@ iki muungano uye kudz@@ i@@ ona dz@@ ichi@@ f@@ ambira mberi pa@@ kunamata . +Pashure pe@@ kunge nd@@ ap@@ inda Chik@@ oro che@@ Bhaibheri Che@@ hama Dz@@ isina Kur@@ o@@ ora , nd@@ akan@@ zi ndino@@ pa@@ y@@ ona kune imwe nd@@ ima . +H@@ and@@ isati h@@ angu nd@@ ambo@@ wana munhu anos@@ vika paku@@ bhabhatidzwa , asi vamwe vaka@@ va@@ wana . +Ku@@ pa@@ y@@ ona kun@@ ga@@ ita sei kuti munhu a@@ wane nem@@ imwe m@@ ikana ye@@ kush@@ umira Jehovha ? +Imwe hama in@@ onzi K@@ ev@@ in inoti : “ Ku@@ bva ndi@@ chiri k@@ akomana , nd@@ aida kuz@@ os@@ humira Jehovha mubasa r@@ enguva yakazara . +Ndaka@@ zot@@ anga ku@@ pa@@ y@@ ona nd@@ ava nemakore 19 . +Kuti nd@@ ik@@ wan@@ ise ku@@ zvir@@ ir@@ itira nd@@ ai@@ p@@ ota ndi@@ chis@@ hand@@ ira imwe hama yai@@ ita zve@@ ku@@ vaka . +Ndaka@@ dzidza kut@@ ur@@ ika mat@@ enga edz@@ imba uye ku@@ isa ma@@ hw@@ in@@ do nema@@ d@@ ho@@ o . +Pa@@ va pa@@ ya , nd@@ akaita makore maviri ndi@@ chis@@ handa ne@@ boka rai@@ batsira va@@ inge va@@ w@@ irwa nen@@ jo@@ dzi , tichi@@ gadzir@@ isa Dz@@ imba dze@@ Umambo ne@@ dz@@ imba dze@@ hama . +P@@ and@@ akanzwa kuti ku@@ South Africa kwai@@ diwa vanhu vano@@ batsira paku@@ vaka , nd@@ akany@@ orera uye nd@@ akash@@ ev@@ edzwa . +Mun@@ o mu@@ Africa , tino@@ pedza ku@@ vaka I@@ mba ye@@ Umambo muma@@ vhiki mas@@ homan@@ ana to@@ enda kuno@@ vaka imwe . +Tino@@ gara pamwe chete , tino@@ dzidza Bhaibheri pamwe chete uye t@@ inos@@ handa pamwe chete . +Nd@@ in@@ on@@ ak@@ idz@@ wawo ne@@ kupar@@ idzira ne@@ hama dze@@ muungano vhiki ye@@ ga ye@@ ga . +Zvir@@ ongwa zvand@@ akaita ndi@@ chiri k@@ akomana zviri kuita kuti ndi@@ f@@ are zvand@@ ais@@ at@@ arisira . ” +Kus@@ humira pa@@ Bh@@ et@@ eri kun@@ oun@@ za mufaro ne@@ kuti zv@@ ese zva@@ uno@@ ita ipapo uno@@ zvi@@ itira Jehovha . +Pashure pe@@ gore ne@@ ha@@ fu , nd@@ akash@@ ev@@ edzwa ku@@ Bh@@ et@@ eri , kwand@@ aka@@ dzidza kushandisa m@@ ich@@ ina ye@@ kup@@ rin@@ da uye kwand@@ aka@@ zo@@ dzidz@@ awo ku@@ gadzira map@@ ur@@ o@@ gir@@ amu em@@ ak@@ omb@@ iy@@ uta . +Pa@@ Bh@@ et@@ eri , nd@@ in@@ on@@ ak@@ idzwa ne@@ kutanga kunzwa nezve@@ kuf@@ ambira mberi kuri kuita basa re@@ kuita kuti vanhu vave vadzidzi pasi res@@ e . +Ndino@@ da kush@@ umira pano ne@@ kuti zvatino@@ ita zvino@@ batsira vanhu kuti vas@@ wed@@ ere pedyo naJehovha . ” +Uno@@ gona kuva nechokwadi che@@ kuti Jehovha anoda kuti ‘ u@@ bat@@ is@@ ise ’ ram@@ ang@@ wana rino@@ fadza . +( Verenga 1 Timoti 6 : 18 , 19 . ) +Zva@@ daro , ib@@ va war@@ onga kuita zvino@@ muf@@ adza . +A@@ ng@@ a ach@@ idz@@ idza ma@@ itiro e@@ vanhu ku@@ bvira pa@@ vakas@@ ikwa . +Kuti uchi@@ wane unofanira ku@@ zvit@@ s@@ vag@@ ira we@@ ga . ” +uye “ U@@ s@@ are@@ ga vachi@@ kup@@ inza muna ta@@ is@@ ire@@ va ! ” +Jesu akati : “ Mus@@ at@@ ya vaya vano@@ uraya muviri asi vasing@@ az@@ o@@ kw@@ an@@ isi kuita chimwe chinhu chino@@ pfuura izvozvo . ” +U@@ sav@@ h@@ und@@ uka kana kut@@ ya , nokuti Jehovha Mwari wako an@@ e@@ we kwose kwa@@ uno@@ enda . ” +T@@ eerera Jehovha u@@ vimb@@ e naye pane zv@@ ese zva@@ uno@@ ita . +N@@ yaya ye@@ chipiri in@@ oratidza kuti Jehovha anoita sei zvin@@ enge zvising@@ at@@ aris@@ ir@@ wi ku@@ bur@@ ikidza ne@@ kuita zvat@@ ising@@ ambo@@ fung@@ idz@@ iri . +Ku@@ fanana ne@@ mur@@ imi , tinofanira kum@@ irira nem@@ woyo mu@@ refu . +T@@ ing@@ adz@@ idz@@ ei pane zvaka@@ itwa ne@@ mu@@ profita M@@ ika ? +( Verenga M@@ ika 7 : 1 - 3 . ) +Kana ti@@ ine kutenda kwaka@@ fanana ne@@ kwa@@ M@@ ika , ti@@ chava nechi@@ do che@@ kum@@ irira Jehovha . +Saka ‘ tino@@ ts@@ ungirira zvi@@ z@@ ere nem@@ woyo mu@@ refu uye ne@@ mufaro . ’ +Abra@@ hamu ait@@ o@@ fanira kum@@ irira makore akawanda kuti va@@ z@@ u@@ kuru vake , Isa@@ u na@@ Jakobho va@@ berek@@ we ( Ona nd@@ ima 9 , 10 ) +( Verenga VaHebheru 11 : 8 - 12 . ) +Asi fungidzira kuf@@ ara ku@@ cha@@ ita Abra@@ hamu pa@@ acha@@ muts@@ wa kuti ar@@ ar@@ ame mu@@ par@@ adhiso . +Mwari ai@@ funga zvakanaka kuti vanhu vazhinji va@@ chenget@@ edz@@ we vari vap@@ enyu sezva@@ zvakaita nhasi . ” +( b ) Chii chaka@@ batsira Dhavhidhi kuti amir@@ ire nem@@ woyo mu@@ refu ? +Ndi@@ cha@@ imb@@ ira Jehovha , nokuti akandi@@ pa mu@@ bayiro . ” +( Verenga 2 Petro 3 : 9 . ) +Chii chi@@ chat@@ ibatsira kuti tive nechi@@ do che@@ kum@@ irira nem@@ woyo mu@@ refu ? +Tino@@ dzidz@@ ei pane zvakaitika kumu@@ apostora Pauro pa@@ aiva mu@@ Firipi ? +( Verenga Mabasa 16 : 8 - 10 . ) +A@@ chang@@ os@@ vika ku@@ Mak@@ ed@@ hon@@ iya , aka@@ iswa mu@@ j@@ eri . +Nei Jehovha aka@@ bvumira kuti izvozvo zvi@@ it@@ ike kuna Pauro ? +Iye na@@ S@@ ir@@ asi vakat@@ anga ‘ kuny@@ engetera va@@ chir@@ umb@@ idza Mwari ner@@ wi@@ yo . ’ +4 , 5 . ( a ) M@@ amiriro edu ezvinhu anogona ku@@ fanana sei ne@@ a@@ Pauro ? +( b ) Zvinhu zvak@@ ango@@ erek@@ ana zvach@@ inj@@ a sei kuna Pauro ? +Iye zvino ti@@ cha@@ kuru@@ kure@@ i uye ti@@ cha@@ ongor@@ or@@ ei ? +( Verenga 1 Petro 5 : 6 , 7 . ) +Dzimwe nguva anot@@ isham@@ isa ne@@ kuita zvat@@ ising@@ at@@ aris@@ iri . +Jehovha akat@@ uma ng@@ irozi kuti ip@@ ar@@ adz@@ e mas@@ o@@ j@@ a 18@@ 5 000 a@@ S@@ an@@ i@@ her@@ ib@@ hi mu@@ us@@ iku hum@@ we chete . +( a ) Tino@@ dzidz@@ ei pane zvakaitika kuna Jos@@ ef@@ a ? +Hapana mubvunzo kuti zvaka@@ itwa naJehovha zvai@@ pfuura zv@@ ese zva@@ it@@ aris@@ irwa na@@ Jos@@ ef@@ a . +F@@ ung@@ awo nezva@@ S@@ ara , amb@@ uya va@@ Jos@@ ef@@ a . +( Verenga Isaya 43 : 10 - 13 . ) +Tino@@ ziva kuti Jehovha ane hanya nes@@ u uye anoda kuti tive ne@@ mufaro muupenyu . +T@@ ingap@@ f@@ ek@@ en@@ ura sei unhu hwe@@ kare t@@ ore@@ ga ku@@ h@@ up@@ f@@ ek@@ azve ? +P@@ aka@@ zos@@ vika gore ra@@ 19@@ 39 , [ mum@@ is@@ asa y@@ ev@@ as@@ ungwa ] m@@ akanga ma@@ va neZvapupu 6 000 . ” +Uye ma@@ chen@@ esa nzvimbo ino zvakanaka . +Asi kupfuura zv@@ ese , imi muri s@@ angano re@@ vanhu vem@@ arudzi akasiyana - siyana . ” +Asi pand@@ air@@ amba ndichi@@ ita zve@@ pa@@ b@@ on@@ de , nd@@ ait@@ o@@ wedzera kunzwa nd@@ isina ku@@ chenget@@ eka . ” +Sa@@ kura akaramba achir@@ arama sai@@ zvozvo kusvika ava nemakore 23 . +Nd@@ akasvika pe@@ kuti nd@@ ait@@ on@@ on@@ ok@@ erwa kuti mukadzi wand@@ ai@@ gara naye ab@@ ud@@ e kuti nd@@ is@@ are ndichi@@ ona ma@@ vhid@@ hi@@ yo e@@ zvin@@ ony@@ adz@@ isira . ” +Chii chaka@@ batsira St@@ ep@@ h@@ en kuti abv@@ ise kuts@@ am@@ wa uye kut@@ uka ? +Ano@@ ti : “ Zvinhu zvaka@@ chinja zvinos@@ hamisa mum@@ ba m@@ edu . ” +Iye zvino St@@ ep@@ h@@ en ava mush@@ umiri anos@@ humira uye mudzimai wake ava nemakore akati kuti ari p@@ iy@@ ona w@@ enguva dzose . +Ndaka@@ kurudz@@ irwa nema@@ vh@@ esi e@@ Bhaibheri aka@@ dai sa@@ Isaya 5@@ 5 : 7 iyo inoti : ‘ Munhu aka@@ ipa nga@@ as@@ iye nzira yake , ’ uyewo 1 VaKorinde 6 : 11 iyo ino@@ taura nezve@@ vanhu vakas@@ iya mabasa aka@@ ipa i@@ chit@@ i : ‘ Vamwe v@@ enyu ndizvo zvam@@ akanga m@@ akaita . ’ +K@@ wem@@ akore akawanda , Jehovha akandi@@ batsira nem@@ woyo mu@@ refu achis@@ handisa mweya wake mutsvene kuti ndi@@ pf@@ ek@@ e unhu h@@ uts@@ va . ” +Tino@@ bats@@ ir@@ wawo ne@@ Shoko raMwari nem@@ weya wake mutsvene p@@ atino@@ gadzirira misangano ye@@ ungano uye p@@ atino@@ ip@@ inda . +Ona chit@@ sa@@ uko 25 mu@@ bhuku rinonzi M@@ ibvunzo Ino@@ bvunza V@@ echi@@ duku — M@@ h@@ induro Dz@@ inos@@ handa , Bh@@ uku 1 . +( Verenga VaKor@@ ose 3 : 10 - 14 . ) +Ak@@ ati : “ Hapana mu@@ Giriki kana mu@@ Judha , kudz@@ ing@@ iswa kana kus@@ adz@@ ing@@ iswa , munhu wo@@ kune imwe nyika , mu@@ S@@ iti@@ ya , mur@@ anda , [ kana ] munhu akas@@ unung@@ uka . ” +( a ) V@@ as@@ humiri vaJehovha vanofanira ku@@ bata sei vamwe ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) Zvaka@@ guma nei ? +Ak@@ ab@@ va a@@ enda ku@@ misangano ye@@ Zvapupu zvaJehovha . +Un@@ ony@@ atso@@ ona ku@@ batana kuno@@ sham@@ isa kwakaita s@@ angano redu re@@ hama dziri pasi res@@ e . ” +P@@ at@@ ai@@ var@@ atidza mag@@ waro aka@@ dai sa@@ Zvakazarurwa 21 : 3 , 4 kana kuti Pisarema 37 : 10 , 11 , 29 , muBhaibheri ravo rechi@@ P@@ or@@ t@@ ug@@ u@@ ese , va@@ iny@@ ats@@ ot@@ eerera uye dzimwe nguva va@@ isv@@ im@@ ha mis@@ o@@ dzi . ” +Tino@@ t@@ enda Jehovha zvikuru . ” — Verenga Mabasa 10 : 34 , 35 . +Jesu akas@@ iya muenzaniso upi pa@@ kuratidza uny@@ oro nem@@ woyo mu@@ refu ? +Ak@@ ab@@ va a@@ wedzera kuti : “ Kana mu@@ chir@@ amba mu@@ chis@@ ar@@ ur@@ ana , muri kut@@ adza . ” +Nei zvi@@ chik@@ osha kuti ti@@ pf@@ ek@@ e rudo ? +R@@ udo run@@ e@@ wo “ mwoyo mu@@ refu uye r@@ une mutsa ” uye “ har@@ u@@ zvit@@ ut@@ um@@ adzi . ” +Pauro akati pasina rudo , ‘ ais@@ ava chinhu . ’ +R@@ udo r@@ uri pa@@ chinhu ichi , kwete kuti is@@ u taka@@ da Mwari , asi kuti iye ak@@ ati@@ da , akat@@ uma Mwanakomana wake kuti ave chi@@ bayiro choku@@ y@@ an@@ an@@ isira zviv@@ i zvedu . ” +Jesu akati : “ Hapana ane rudo ru@@ kuru kune ur@@ w@@ u , kuti mumwe munhu ap@@ e [ upenyu hwake ] nokuda kw@@ es@@ hamwari dzake . ” +Ng@@ ati@@ on@@ ei kuti t@@ inga@@ zvi@@ ita sei . +Johani akanyora kuti : “ V@@ ana vaduku , ng@@ at@@ ir@@ eg@@ ei kud@@ an@@ ana nes@@ hoko kana nor@@ ur@@ imi , asi nem@@ abasa nechokwadi . ” +Asi ndaka@@ bva nd@@ a@@ zv@@ ibvunz@@ a kuti , ‘ Nd@@ ing@@ at@@ evedzera sei Jesu pam@@ ab@@ at@@ iro andi@@ cha@@ ita munhu uyu ? ’ +Pashure pe@@ kufunga kuti Jesu aizo@@ ita sei , nd@@ akas@@ arudza ku@@ siyana n@@ eny@@ aya yacho . +Pa@@ va pa@@ ya , ndaka@@ zo@@ ziva kuti mukadzi iye@@ ye aiva ne@@ dambudziko re@@ ut@@ ano uye aiva nezv@@ ai@@ mush@@ ung@@ ur@@ udza . +Ndaka@@ z@@ ongo@@ funga kuti zvichi@@ da haana kuny@@ ora mashoko iwayo ne@@ chinangwa che@@ kun@@ dir@@ wadz@@ isa . +Ku@@ fungisisa muenzaniso wa@@ Jesu we@@ kuratidza rudo kunyange pa@@ ai@@ it@@ irwa zvakaipa , kw@@ akandi@@ batsira kuti nd@@ ir@@ atidz@@ e@@ wo rudo rw@@ akadaro ku@@ mukadzi iye@@ ye wand@@ inos@@ handa naye . ” +“ Ak@@ a@@ zvid@@ ur@@ ura ” ku@@ bur@@ ikidza ne@@ kubva kudenga uye ‘ akat@@ os@@ vika pa@@ kuf@@ a ’ achi@@ itira is@@ u . +R@@ U@@ G@@ AR@@ E : ‘ Kus@@ h@@ iv@@ ir@@ irana mur@@ udo ’ kunoita kuti tik@@ wan@@ ise kun@@ ak@@ idzwa ne@@ ku@@ batana “ mu@@ chis@@ ung@@ o ch@@ or@@ ugare . ” +H@@ au@@ bvum@@ i here kuti munyika ino ine vanhu vasina ku@@ batana , hakuna kum@@ we kwa@@ ung@@ a@@ wana rugare rw@@ akadaro ? +Pauro akanyora kuti : “ R@@ udo runo@@ vaka . ” +Z@@ uva r@@ akat@@ evera racho vakanga va@@ wanda zve@@ kut@@ adza ku@@ kwana ma@@ va@@ ip@@ ind@@ ira . ” +P@@ asi pe@@ mu@@ fananidzo wacho pa@@ iva nem@@ ashoko e@@ kuti : “ Ku@@ zara mum@@ ig@@ wagwa . ” +Imwe ungano y@@ akanyora kuti : “ Chin@@ hu che@@ ga chino@@ pfuura pedyo nen@@ zvimbo ino it@@ ambo y@@ et@@ el@@ e@@ gr@@ ap@@ h . ” +Vanhu 2 2@@ 6@@ 2 6@@ 46 vaka@@ pinda chir@@ angar@@ idzo mu@@ M@@ ex@@ ic@@ o muna 20@@ 16 . +N@@ hor@@ oondo ya@@ Mateu in@@ onyanya kutaura zvakaitika kuna Jos@@ ef@@ a . +1 , 2 . ( a ) Chii chino@@ gona ku@@ itika kana vanhu vakas@@ a@@ zvidz@@ ora ? +N@@ y@@ engetera kuti u@@ ve ne@@ uchenjeri hwe@@ kutaura kana hwe@@ kuita zv@@ akarurama . +Ung@@ ag@@ adz@@ irira sei kuti ukur@@ ire mi@@ edzo ? +Chii chaka@@ itika kune imwe hama , uye nei zvatino@@ ita pat@@ inos@@ angana nezvinhu zvakaita sai@@ zvozvo zvi@@ chik@@ osha ? +V@@ aberek@@ i vang@@ ab@@ atsira sei vana vavo kuti va@@ zvidz@@ ore ? +M@@ ung@@ ab@@ atsira sei vana v@@ enyu kuti va@@ zvidz@@ ore ? +( Verenga E@@ k@@ so@@ dh@@ o 34 : 5 - 7 . ) +( b ) Nei uchi@@ fanira kuva nechi@@ do che@@ kudzidza zvino@@ taurwa neBhaibheri nezv@@ ets@@ itsi ? +( a ) Nei Jehovha akat@@ umira ng@@ irozi ku@@ S@@ od@@ homa ? +( Verenga E@@ k@@ so@@ dh@@ o 22 : 26 , 27 . ) +Tino@@ verenga kuti : “ Jehovha Mwari wem@@ adz@@ it@@ at@@ eg@@ uru avo akaramba achi@@ vat@@ umira shoko achis@@ handisa n@@ hum@@ e dzake , achi@@ vat@@ umira av@@ at@@ um@@ ir@@ azve , nokuti ain@@ z@@ wira tsitsi vanhu vake nen@@ zvimbo yake yoku@@ gara . ” +“ Ak@@ at@@ anga kuva@@ dzidzisa zvinhu zvi@@ zhinji . ” +Pan@@ zvimbo pe@@ zvo , tinofanira kuita zv@@ ese zvatino@@ gona iye zvino kuti ti@@ bats@@ ire vanhu . +Shoko re@@ kuti tsitsi rin@@ ore@@ vawo “ kut@@ ambura pamwe chete . ” +“ Sh@@ inga , us@@ imb@@ e uye u@@ zvi@@ ite . +V@@ echi@@ d@@ iki ne@@ vabereki vavo vang@@ ar@@ atidza sei ush@@ ingi ? +1 , 2 . ( a ) Soromoni akap@@ iwa basa r@@ ipi ra@@ ik@@ osha ? +Kuti ab@@ ud@@ irire , Soromoni aifanira kuva ne@@ ush@@ ingi o@@ ita basa racho . +Soromoni aigona kudz@@ idz@@ ei nezve@@ ush@@ ingi kubva kuna baba vake ? +( Verenga 1 Mak@@ or@@ on@@ ike 28 : 20 . ) +U@@ sh@@ ingi hwa@@ iva naJesu hwaka@@ batsira sei va@@ apostora ? +Ng@@ ati@@ on@@ ei kuti ting@@ ava sei ne@@ ush@@ ingi mumhuri uye muungano . +( b ) V@@ echi@@ d@@ iki vang@@ at@@ evedzera sei muenzaniso wa@@ Mosesi ? +A@@ cha@@ va@@ batsira kuti vak@@ wan@@ ise kur@@ ir@@ itira mhuri dzavo . +Y@@ akanyora kuti : “ Ndaka@@ kura ndiri munhu anony@@ ara . +Zva@@ indi@@ om@@ era kutaura nevanhu pa@@ I@@ mba ye@@ Umambo , uye zva@@ inge zvakat@@ onyanya ku@@ oma kuti ndi@@ go@@ go@@ dz@@ e pa@@ d@@ ho@@ o re@@ vanhu van@@ dis@@ ing@@ aziv@@ i . ” +I@@ chi@@ batsirwa ne@@ vabereki va@@ yo nevamwe vaiva muungano , hanzvadzi iyi yechi@@ d@@ iki yaka@@ zo@@ kwanisa kuva p@@ iy@@ ona w@@ enguva dzose . +V@@ aberek@@ i vang@@ ab@@ ats@@ irwa sei na@@ Pisarema 37 : 25 uye VaHebheru 13 : 5 ? +( Verenga Pisarema 37 : 25 ; VaHebheru 13 : 5 . ) +Imwe hama ine vana vaviri y@@ akanyora kuti : “ V@@ aberek@@ i vakawanda vanos@@ handa nesimba uye vanos@@ handisa zvinhu zvavo zvakawanda paku@@ batsira vana vavo kuti va@@ bud@@ irire pa@@ kuita zvinhu zvakadai sem@@ it@@ ambo , ku@@ dh@@ iro@@ wa kana kur@@ idza zvir@@ idzwa , uye kudzidza . +Zv@@ iri nani chaizvo kushanda nesimba uye kushandisa zv@@ ati@@ in@@ a@@ zvo paku@@ batsira vana vedu kuti va@@ zadz@@ ise zvin@@ angwa zvicha@@ va@@ batsira kuti var@@ ambe va@@ ine us@@ hamwari hw@@ akanaka naJehovha . +T@@ iri kug@@ uts@@ ikana kuti vana vedu vaka@@ zadz@@ isa zvin@@ angwa zve@@ kunamata uye kuti taka@@ va@@ batsira kuzvi@@ zadz@@ isa . ” +T@@ aura mi@@ enzaniso ye@@ p@@ ano@@ diwa ush@@ ingi muungano yechiKristu . +( a ) Hama dzaka@@ bhabhatidzwa dz@@ ing@@ ava sei ne@@ ush@@ ingi ? +( Verenga Va@@ Firipi 2 : 13 ; 4 : 13 . ) +Tino@@ kurudzira hama dz@@ ese dzaka@@ bhabhatidzwa kuti dz@@ ive ne@@ ush@@ ingi uye dz@@ is@@ hand@@ e nesimba muungano . +Saka , “ Sh@@ inga . . . u@@ zvi@@ ite . ” +1 , 2 . ( a ) Up@@ enyu h@@ ung@@ ad@@ ai hw@@ akaita sei ku@@ dai pasina Bhaibheri ? +Muapostora Petro akanyora mashoko a@@ akat@@ ora pana Isaya 40 : 8 . +( Verenga 1 Petro 1 : 24 , 25 . ) +( a ) M@@ it@@ a@@ uro ino@@ chinja sei ne@@ kufamba kwenguva ? +( Verenga Zvakazarurwa 14 : 6 . ) +Par@@ aka@@ z@@ op@@ r@@ ind@@ wa makore akat@@ evera rakanga ra@@ va kushand@@ is@@ awo shoko re@@ kuti “ IS@@ H@@ E ” r@@ akanyorwa nem@@ ab@@ hi@@ i ma@@ kuru mune mamwe ma@@ vh@@ esi mu@@ Magwaro e@@ chiKristu echi@@ Giriki . +Nei tichi@@ onga kuti tine S@@ hand@@ uro ye@@ Nyika I@@ ts@@ va ? +( b ) Chii chin@@ onzi Greek S@@ ep@@ t@@ u@@ ag@@ in@@ t ? +( Verenga Pisarema 1@@ 19 : 1@@ 6@@ 2 - 1@@ 6@@ 5 . ) +Ona nyaya inoti “ Uno@@ fanira K@@ udz@@ idzira chi@@ Hebheru nechi@@ Giriki Here ? ” +iri mu@@ Nharireyomurindi ya@@ No@@ v@@ ember 1 , 200@@ 9 . +Mus@@ i wa@@ 3 A@@ pri@@ l 20@@ 17 , m@@ iz@@ iy@@ amu yeBhaibheri yaka@@ v@@ hur@@ wa pam@@ a@@ ho@@ f@@ isi edu ma@@ kuru mu@@ W@@ ar@@ wic@@ k , New York , U.@@ S@@ .@@ A . +Chik@@ amu chino@@ gara chir@@ ipo mum@@ iz@@ iy@@ amu iyi ch@@ ine musoro uno@@ ti “ Bhaibheri Uye Z@@ ita raMwari . ” +Tino@@ kuk@@ oka kuti us@@ han@@ y@@ ire m@@ iz@@ iy@@ amu yeBhaibheri ne@@ dzimwe m@@ iz@@ iy@@ amu dziri kuma@@ ho@@ f@@ isi edu ma@@ kuru . +En@@ da pa@@ we@@ b@@ s@@ ite yedu in@@ onzi w@@ w@@ w@@ .@@ j@@ w@@ .@@ or@@ g kuti u@@ bh@@ uke kuz@@ os@@ hanya . +T@@ ar@@ isa p@@ akan@@ zi N@@ E@@ ZV@@ E@@ D@@ U > M@@ A@@ HO@@ F@@ IS@@ I U@@ Y@@ E KU@@ R@@ AT@@ I@@ DZ@@ WA ZV@@ IN@@ O@@ IT@@ W@@ A@@ P@@ O . +Y@@ aka@@ verenga 2 VaKorinde 1 : 3 , 4 iyo inoti : “ Baba veng@@ oni huru kwazvo uye Mwari wo@@ kuny@@ aradza kwose anot@@ iny@@ aradza pa@@ kutambudz@@ ika kwedu kwose . ” +Hama dzino@@ dzidzisa dziri pa@@ chi@@ kuva dzine basa re@@ i ? +Tino@@ onga chaizvo Jehovha ne@@ kut@@ ipa Shoko rake , Bhaibheri . +Ona b@@ ho@@ k@@ isi r@@ akan@@ zi “ Ch@@ akaita Kuti A@@ chinj@@ e . ” +T@@ s@@ anangura , enzan@@ isira uye r@@ atidza kuti ma@@ vh@@ esi a@@ wa@@ verenga anos@@ handa sei +“ Zvinhu zvaka@@ chinja pashure pem@@ akore 15 nd@@ ab@@ ha@@ bh@@ atidzwa . +P@@ and@@ ait@@ eerera hurukuro mu@@ I@@ mba ye@@ Umambo . . . , mu@@ kuru@@ kuri akas@@ handisa Jakobho 1 : 23 , 24 . +“ Pashure pem@@ azuva mas@@ homa , ndaka@@ verenga rug@@ waro rwaka@@ chinja upenyu hw@@ angu . +V@@ h@@ esi yacho ndi@@ Isaya 1 : 18 , iyo ino@@ taura mashoko a@@ Jehovha e@@ kuti : ‘ Chi@@ u@@ ya@@ i zvino , tir@@ uram@@ ise zvinhu . . . . +Kunyange zviv@@ i zv@@ enyu zvik@@ ava so@@ much@@ eka w@@ akati p@@ ir@@ iv@@ iri , zvi@@ ch@@ ach@@ en@@ eswa se@@ ch@@ and@@ o . ’ +Nd@@ akanzwa se@@ kuti Jehovha ait@@ aura n@@ eni achiti : ‘ V@@ ick@@ y , uya tir@@ uram@@ ise zvinhu . +Ndino@@ kuziva , ndino@@ ziva zviv@@ i zv@@ ako , ndino@@ ziva zvakaita mwoyo wako uye ndino@@ kuda . ’ +“ Mus@@ i i@@ woyo nd@@ akat@@ adza kur@@ ara . +Asi nd@@ aiita s@@ end@@ ai@@ mu@@ udza kuti : ‘ Ha@@ mun@@ g@@ ambo@@ di munhu akaita s@@ eni . +Ch@@ ib@@ ayiro che@@ Mwanakomana w@@ enyu ha@@ chik@@ wan@@ isi kun@@ di@@ batsira . ’ +Asi ku@@ bvira ipapo , nemhaka ye@@ ku@@ fungisisa nezve@@ chi@@ po ch@@ er@@ udz@@ ikin@@ uro , nd@@ akatanga kuona kuti Jehovha an@@ on@@ di@@ da . ” +N@@ yaya idzi dzino@@ kurukura zv@@ akar@@ atidzwa Z@@ ek@@ ar@@ iya pe@@ chi@@ 6 , pe@@ chi@@ 7 uye pe@@ chi@@ 8 . +Kut@@ anga , reg@@ ai nd@@ imb@@ oku@@ udz@@ ai nezv@@ angu . +N@@ D@@ AK@@ A@@ B@@ ER@@ E@@ K@@ WA muna 19@@ 23 mu@@ H@@ em@@ s@@ wor@@ th , ta@@ un@@ di riri mu@@ Yor@@ k@@ sh@@ ire , Eng@@ land . +G@@ ore r@@ akat@@ evera , ndaka@@ gadz@@ wa kuva p@@ iy@@ ona chai@@ ye pamwe chete na@@ M@@ ary H@@ en@@ sha@@ ll . +T@@ akat@@ um@@ irwa kund@@ ima ya@@ is@@ ava ne@@ ungano kun@@ haraunda ye@@ Ch@@ es@@ h@@ ire . +Zvino@@ fadza chaizvo kuti mun@@ haraunda yacho ma@@ va neZvapupu zvakawanda . +H@@ an@@ zvadzi yangu ne@@ mudzimai wayo L@@ ot@@ ti@@ e , va@@ inge vachit@@ os@@ humira sem@@ ap@@ iy@@ ona chai@@ wo mu@@ N@@ or@@ ther@@ n I@@ rel@@ and , uye muna 195@@ 2 t@@ ese tiri 4 t@@ akap@@ inda g@@ ungano r@@ er@@ u@@ wa mu@@ B@@ el@@ f@@ ast . +M@@ anh@@ eru iwayo t@@ ese tiri 4 t@@ akar@@ ara mum@@ ota . +Ch@@ inos@@ hamisa nde@@ che@@ kuti hat@@ ina kumb@@ os@@ angana ne@@ dambudziko pat@@ ai@@ p@@ aka k@@ ar@@ av@@ han@@ i yedu pam@@ ay@@ ad@@ hi ev@@ ar@@ imi vaiva ne@@ us@@ hamwari . +T@@ ain@@ ak@@ idzwa chaizvo ne@@ basa redu re@@ mu@@ d@@ unhu . +G@@ ungano r@@ enyika dzakawanda re@@ kutanga mu@@ I@@ rel@@ and raka@@ it@@ irwa mu@@ D@@ u@@ bl@@ in muna 19@@ 6@@ 5 . +Vanhu 3 9@@ 48 vaka@@ pinda g@@ ungano racho uye 6@@ 5 vaka@@ bhabhatidzwa . +Ar@@ th@@ ur ach@@ ik@@ wa@@ z@@ isa Hama Na@@ than K@@ nor@@ r pa@@ vakas@@ vika pa@@ g@@ ungano ra@@ 19@@ 6@@ 5 +Ar@@ th@@ ur achi@@ budisa Bh@@ uku R@@ angu R@@ en@@ hau dzeBhaibheri muchi@@ G@@ a@@ el@@ ic muna 198@@ 3 +Muna 20@@ 11 , upenyu hwedu hwaka@@ chinja zvikuru p@@ aka@@ batanidzwa b@@ azi re@@ Brit@@ ain ner@@ e@@ I@@ rel@@ and , tichi@@ bva t@@ an@@ zi ti@@ ende ku@@ Bh@@ et@@ eri re@@ L@@ ond@@ on . +Mum@@ akore mas@@ homa apfuura , nd@@ ain@@ zwa ndaka@@ ora mwoyo uye nd@@ air@@ wadz@@ iwa chaizvo . +K@@ are Ar@@ th@@ ur ndiye ai@@ gara ach@@ ind@@ it@@ sigira . +Asi pa@@ uno@@ s@@ angana ne@@ zvakadai uno@@ wedzera kuva pedyo naJehovha . +“ Ng@@ at@@ ir@@ eg@@ ei kud@@ an@@ ana nes@@ hoko kana nor@@ ur@@ imi , asi nem@@ abasa nechokwadi . ” ​ — 1 J@@ O@@ H . 3 : 18 . +“ R@@ udo rus@@ ina uny@@ eng@@ eri ” rw@@ akaita sei ? +Jehovha akaratidza sei kuti anoda vanhu zvisina ud@@ y@@ ire ? +Jehovha akaratidza kuti anoda vanhu asati at@@ omb@@ os@@ ika Ad@@ hamu na@@ E@@ vha . +T@@ ing@@ ar@@ atidza rudo cha@@ irwo munzira dz@@ ipi ? +6 , 7 . ( a ) “ R@@ udo rus@@ ina uny@@ eng@@ eri ” rw@@ akaita sei ? +( Verenga Mateu 6 : 1 - 4 . ) +T@@ ing@@ ar@@ atidza sei rudo cha@@ irwo p@@ atino@@ gamuchira vamwe ? +( Verenga 1 Johani 3 : 17 . ) +( Verenga VaRoma 12 : 17 , 18 . ) +T@@ ing@@ ar@@ atidza sei kuti kuk@@ angan@@ wira kwedu nd@@ ek@@ wechokwadi ? +Nd@@ er@@ ipi “ b@@ akat@@ wa ” iro Jesu akati aiz@@ oun@@ za ? +Ung@@ ar@@ amba sei waka@@ vimbika kuna Jehovha kana ve@@ ukama vachi@@ p@@ ikisa kunamata kwe@@ chokwadi ? +3 , 4 . ( a ) Dz@@ idz@@ iso dza@@ Jesu dzino@@ gona kuita sei ? +Jesu akati : “ Mus@@ a@@ funga kuti ndaka@@ uya kuz@@ oun@@ za rugare panyika ; hand@@ ina ku@@ uya kuz@@ oun@@ za rugare , asi b@@ akat@@ wa . +Nokuti ndaka@@ uya ku@@ zo@@ ita kuti pa@@ ve noku@@ pes@@ ana , pakati p@@ om@@ wanakomana n@@ ab@@ aba vake , m@@ wan@@ asikana na@@ amai vake , uye mu@@ ro@@ ora nav@@ am@@ w@@ ene vake . +Va@@ Kristu vang@@ adz@@ idzisa sei vana vavo kuti va@@ kudz@@ e mu@@ bereki asing@@ at@@ endi ? +Pane kudaro , vat@@ s@@ anang@@ ur@@ ire kuti munhu mumwe ne@@ mumwe anofanira kus@@ arudza kush@@ umira Jehovha kana kure@@ ga . +“ Kutaura kw@@ enyu nga@@ ku@@ ve n@@ eny@@ asha nguva dzose , ” rino@@ daro Bhaibheri . +( Verenga 1 Petro 3 : 1 , 2 , 16 . ) +Ung@@ a@@ kurira sei man@@ z@@ w@@ iro e@@ ku@@ zv@@ ipa m@@ hosva pan@@ yaya ye@@ kuita zvising@@ af@@ adzi ve@@ ukama ? +Imwe y@@ en@@ zvimbo dzakawanda dze@@ kupar@@ idzira ver@@ u@@ zhinji mu@@ L@@ ag@@ o@@ s , guta rine vanhu vakawanda kupfuura ese mu@@ Africa . +Chii chai@@ itika kuva@@ Israeri panguva iyoyo ? +( Verenga Z@@ ek@@ ar@@ iya 1 : 3 , 4 . ) +Ch@@ it@@ sa@@ uko 5 cha@@ Z@@ ek@@ ar@@ iya chino@@ t@@ anga ne@@ chir@@ atidzo chis@@ ina ku@@ j@@ air@@ ika . +( Verenga Z@@ ek@@ ar@@ iya 5 : 1 , 2 . ) +8 - 10 . ( a ) Chii chin@@ onzi mh@@ iko ? +Tino@@ dzidz@@ ei pa@@ chir@@ atidzo che@@ chi@@ 6 chaka@@ onekwa na@@ Z@@ ek@@ ar@@ iya ? +( Verenga Z@@ ek@@ ar@@ iya 5 : 5 - 8 . ) +( Verenga Z@@ ek@@ ar@@ iya 5 : 9 - 11 . ) +Un@@ onzwa sei nezve@@ basa re@@ ku@@ vaka raka@@ kura kupfuura ese riri kuitwa mazuva ano ? +( Verenga Z@@ ek@@ ar@@ iya 6 : 1 - 3 . ) +Jehovha ach@@ iri kushandisa ng@@ irozi dzake kuti adz@@ iv@@ irire uye as@@ imb@@ ise vanhu vake +7 , 8 . ( a ) Mak@@ omo maviri an@@ om@@ ir@@ ir@@ irei ? +( b ) Nei mak@@ omo acho ari em@@ h@@ ang@@ ura ? +V@@ at@@ ya@@ iri veng@@ oro ndi@@ vana@@ ani uye vaka@@ piwa basa re@@ i ? +( Verenga Z@@ ek@@ ar@@ iya 6 : 5 - 8 . ) +( Verenga Z@@ ek@@ ar@@ iya 6 : 9 - 12 . ) +Pa@@ ku@@ pedzisira kunamata kwe@@ chokwadi kuch@@ adz@@ or@@ erwa zvi@@ z@@ ere . +Jehovha ha@@ amb@@ ok@@ angan@@ wi kuda kw@@ atino@@ mu@@ ita ! +M@@ UN@@ E rimwe guta d@@ iki mu@@ G@@ u@@ j@@ ar@@ at , Indi@@ a , baba va@@ John vaka@@ bhabhatidzwa se@@ mumwe we@@ Zvapupu zvaJehovha makore e@@ kuma@@ 19@@ 50 ava kuno@@ p@@ era . +Ak@@ a@@ ona kuti chi@@ g@@ un@@ we cha@@ John cha@@ inge cha@@ ku@@ vara ndo@@ kutaura kuti aida kumu@@ batsira . +Ak@@ a@@ enda ku@@ mup@@ rist@@ i wake ndoku@@ mu@@ bvunza mibvunzo yacho m@@ iv@@ iri . +Nd@@ ir@@ atidz@@ e muBhaibheri p@@ anoti Jesu ha@@ asi Mwari . +Nd@@ ir@@ atidz@@ e par@@ inoti ha@@ u@@ faniri kunamata Mar@@ iya . +Tino@@ gona kuwana zvidz@@ idzo zvinokosha kubva pa@@ ur@@ ongwa hw@@ em@@ ag@@ uta e@@ kup@@ ot@@ era e@@ munguva ye@@ vaIsraeri . +Ku@@ imba kuno@@ kosha zvakadini pa@@ kunamata kwe@@ chokwadi ? +Asi pa@@ uno@@ imba , mashoko acho anos@@ vika pam@@ woyo . ” +( b ) Tinofanira ku@@ imba sei nz@@ iyo dze@@ kurumb@@ idza Jehovha , uye ndi@@ ani anofanira kuva pamberi ? +Verenga mashoko acho zvin@@ onz@@ w@@ ika n@@ enz@@ wi r@@ akasimba rine chi@@ vimbo . +( a ) Kuny@@ atso@@ vh@@ ura mur@@ omo wedu kuno@@ ti@@ batsira sei paku@@ imba ? +( a ) Chii chaka@@ ziv@@ iswa pa@@ mus@@ angano we@@ pa@@ gore wa@@ 20@@ 16 ? +Dz@@ idz@@ irai nz@@ iyo pa@@ kunamata kwem@@ huri ( Ona nd@@ ima 18 ) +( Verenga N@@ um@@ eri 35 : 24 , 25 . ) +A@@ chi@@ funga zvakaitika panguva yacho , anoti : “ Chokwadi nd@@ ait@@ ya kutaura navo . +Ak@@ any@@ ora kuti : “ Chin@@ hu i@@ cho@@ chi , iko kus@@ ur@@ u@@ var@@ iswa kw@@ enyu se@@ zvinodiwa naMwari , . . . kwakaita kuti mu@@ ve v@@ om@@ woyo wose zvikuru sei , paku@@ zvi@@ chen@@ esa kw@@ enyu , pa@@ kuts@@ am@@ wa , pa@@ kut@@ ya , paku@@ su@@ wa , pa@@ kush@@ ingaira , pa@@ kur@@ uram@@ isa zvakaipa ! ” +Kana chivi char@@ eg@@ er@@ erwa , chin@@ enge chat@@ ore@@ g@@ er@@ erwa . +Se@@ kutaura kwa@@ akaita , Jehovha ano@@ bvisa mit@@ oro yako o@@ i@@ isa kure ne@@ we . +H@@ au@@ z@@ omb@@ o@@ i@@ oni zvak@@ are . ” +Nei uchi@@ da kup@@ ot@@ era kuna Jehovha ? +T@@ ing@@ at@@ evedzera sei ng@@ oni dza@@ Jehovha vamwe pa@@ vanoda ku@@ reg@@ er@@ erwa nes@@ u ? +1 , 2 . ( a ) Jesu ai@@ ona sei Mutemo waMwari ? +( b ) Izvi zvinot@@ idz@@ idz@@ is@@ ei ne@@ zvaJehovha ? +( Verenga Mabasa 20 : 26 , 27 . ) +( Verenga N@@ um@@ eri 35 : 20 - 24 . ) +Saka end@@ ai , mudz@@ idz@@ e kuti izvi zvinor@@ ev@@ ei , ‘ Ndino@@ da ng@@ oni , kwete chi@@ bayiro . ’ +Nokuti hand@@ ina ku@@ uya kuz@@ osh@@ ev@@ edza vanhu v@@ akarurama , asi vat@@ adzi . ” +V@@ akanga vasina kungo@@ f@@ ambira zve@@ kud@@ ya . +U@@ ri kur@@ onga kushandisa ch@@ idz@@ idzo chipi chino@@ wan@@ ika pam@@ ag@@ uta e@@ kup@@ ot@@ era ? +H@@ an@@ zvadzi mbiri dziri kuparidza mashoko e@@ Bhaibheri ku@@ munhu ari kut@@ eng@@ esa pa@@ mus@@ ika muta@@ un@@ di rinonzi T@@ ip@@ it@@ apa +Muapostora Pauro akapa zano r@@ ipi nezvem@@ a@@ fungiro enyika ? +N@@ de@@ ap@@ i mamwe ma@@ fungiro enyika uye t@@ inga@@ ar@@ amba sei ? +Ch@@ en@@ j@@ er@@ ai : zvichi@@ da p@@ ang@@ ava nomumwe munhu ang@@ a@@ enda nem@@ i sem@@ h@@ uka yake ya@@ ab@@ ata nou@@ zivi uye n@@ oun@@ y@@ eng@@ eri hus@@ ina zva@@ huno@@ batsira maererano ne@@ tsika ye@@ vanhu , maererano nezvinhu zvo@@ kutanga zv@@ enyika , kwete maererano na@@ Kristu . ” +“ Ndino@@ gona kuva munhu akanaka kunyange nd@@ ising@@ at@@ endi muna Mwari . ” +“ Uno@@ gona kuf@@ ara usina chitendero cha@@ uno@@ pinda . ” +Jehovha ane k@@ odz@@ ero ye@@ kut@@ ipa mitemo ne@@ kuti akat@@ isika . +Jesu akati : “ Hapana munhu anogona kushand@@ ira van@@ at@@ enzi vaviri ; nokuti zvimwe ach@@ av@@ enga mumwe o@@ da mumwe wacho , kana kuti acha@@ om@@ erera kune mumwe o@@ zv@@ idza mumwe wacho . +( Verenga 1 Va@@ T@@ es@@ ar@@ on@@ ika 2 : 13 , 19 , 20 . ) +“ Vanhu vanogona ku@@ gadzir@@ isa ve@@ ga mat@@ ambudziko avo . ” +T@@ inga@@ wana sei mu@@ bayiro sem@@ huri ? +( b ) Chii chino@@ ti@@ batsira kuti tir@@ ambe taka@@ isa pfungwa paku@@ wana mu@@ bayiro ? +T@@ inga@@ zvidz@@ ivirira sei mum@@ amiriro ezvinhu ane ngozi ? +Kuti ti@@ ur@@ a@@ ye zvid@@ o zve@@ kuita unz@@ enza , tinofanira kudz@@ ivisa var@@ a@@ idzo ye@@ unz@@ enza . +( Verenga Mup@@ ar@@ idzi 7 : 21 , 22 . ) +10 , 11 . ( a ) Nei kuva ne@@ go@@ do ku@@ ine ngozi ? +Shoko raMwari rinoti : “ R@@ udo r@@ une mwoyo mu@@ refu uye r@@ une mutsa . +T@@ ing@@ at@@ evedz@@ er@@ awo here J@@ on@@ at@@ ani pa@@ kuva ne@@ mutsa uye rudo ? +Im@@ i varume , r@@ amb@@ ai muchi@@ da ma@@ dz@@ im@@ ai enyu uye mus@@ a@@ ats@@ am@@ wira kwazvo . +Im@@ i vana , te@@ erer@@ ai vabereki v@@ enyu pa@@ zvinhu zvose , nokuti izvi zvino@@ fadza kwazvo mun@@ a@@ She . +Mur@@ ume we@@ chiKristu anofanira kuita sei kana as@@ iri ku@@ rem@@ ek@@ edzwa ne@@ mudzimai wake asing@@ at@@ endi ? +Shoko raMwari rinoti : “ Munhu an@@ ore@@ ga kutaura mashoko ake ane zivo , uye munhu ane ung@@ war@@ u akadz@@ ik@@ ama . ” +N@@ yaya idzi dzino@@ fanira kuita kuti uny@@ atso@@ va nechi@@ vimbo che@@ kuti ku@@ chava ner@@ u@@ mu@@ ko . +11 : 11 . +In@@ yaya dz@@ ipi dze@@ muBhaibheri dzaka@@ ita kuti Mar@@ ita ave nechi@@ vimbo che@@ kuti vakafa vacha@@ muts@@ wa ? +Ku@@ fanana na@@ Mar@@ ita , chii chino@@ fadza cha@@ uno@@ t@@ arisira ku@@ zo@@ ona chi@@ chi@@ itika ? +Ak@@ ati : “ Ndino@@ ziva kuti acha@@ muka . ” +Mwanakomana wacho aka@@ zor@@ wara ndoku@@ fa . +Mwari akanzwa E@@ ri@@ ya , uye mwana wacho aka@@ va@@ zve mup@@ enyu . +( Verenga 1 M@@ adz@@ imambo 17 : 17 - 24 . ) +( Verenga 2 M@@ adz@@ imambo 4 : 32 - 37 . ) +Chii chaka@@ itika kune imwe hanzvadzi yechiKristu uye Petro akaita sei ? +R@@ imwe zuva muapostora Pauro aiva pa@@ mus@@ angano muk@@ a@@ muri re@@ pamusoro mu@@ T@@ ro@@ asi . +Mumwe muk@@ omana ain@@ zi Y@@ ut@@ iko ait@@ eerera ag@@ are pa@@ hw@@ in@@ do . +Jehovha akat@@ aur@@ awo kuti mwana wacho aiz@@ ouya “ no@@ kuna Is@@ aka . ” +I@@ zvozvo zva@@ is@@ are@@ va ha@@ zvo kuti Mwari ha@@ agoni ku@@ mutsa munhu . +( Verenga Jobho 14 : 13 - 15 . ) +( b ) Nei ru@@ mu@@ ko ru@@ chik@@ osha chaizvo ? +Asi uno@@ taura here nezv@@ er@@ u@@ mu@@ ko se@@ chimwe che@@ zvinhu zvinokosha chaizvo pane zva@@ uno@@ t@@ enda ? +( Verenga 1 VaKorinde 15 : 12 - 19 . ) +Zvisinei , tino@@ ziva kuti Jesu aka@@ muts@@ wa . +Jesu aka@@ batanidzwa sei paku@@ zadz@@ ika kwem@@ ashoko ari mu@@ Pisarema 1@@ 18 ? +‘ V@@ av@@ ak@@ i vakar@@ amba ’ Mes@@ iya ( Ona nd@@ ima 7 ) +Jesu aizo@@ va sei “ musoro we@@ k@@ ona ” ? +Kana Jesu akar@@ amb@@ wa uye aka@@ ur@@ ay@@ iwa , aizo@@ va sei “ musoro we@@ k@@ ona ” ? +( a ) Pisarema 16 : 10 yaka@@ f@@ anotaura nezv@@ ei ? +Ha@@ mu@@ zo@@ bvum@@ iri aka@@ vimbika w@@ enyu kuti a@@ one g@@ omba . ” +( Verenga Mabasa 2 : 29 - 32 . ) +( Verenga Mabasa 2 : 33 - 36 . ) +( Verenga Mabasa 13 : 32 - 37 , 42 . ) +Pane mamwe mashoko ane che@@ kuita “ nezv@@ enguva kana m@@ w@@ aka zvaka@@ iswa na@@ Baba mus@@ imba ravo . ” +Pauro akanyora kuti “ Kristu aka@@ muts@@ wa ku@@ vakafa , icho chi@@ berek@@ o cho@@ kutanga pane vaya vakar@@ ara mu@@ rufu . ” +Chii chi@@ cha@@ itika kune vamwe vakazodzwa munguva ye@@ ku@@ vapo kwa@@ Kristu ? +Nokuti kana ti@@ chit@@ enda kuti Jesu aka@@ fa aka@@ muk@@ azve , sai@@ zvo@@ zvo@@ wo , vaya vakar@@ ara mu@@ rufu . . . +Mwari ach@@ ava@@ unz@@ awo pamwe chete naye . . . . Is@@ u vap@@ enyu t@@ inenge ti@@ chir@@ arama paku@@ vapo kwa@@ She h@@ ati@@ z@@ omb@@ ot@@ ang@@ iri vakar@@ ara mu@@ rufu ; nokuti Is@@ he ach@@ ab@@ ur@@ uka kudenga ach@@ ish@@ evedzera nesimba , . . . uye vaya vakafa vari pamwe na@@ Kristu vach@@ at@@ anga ku@@ muka . +Vaka@@ zodzwa vanenge va@@ chiri vap@@ enyu pa@@ kutambudz@@ ika kukuru ‘ vach@@ at@@ orwa mum@@ akore . ’ +U@@ k@@ adz@@ oka ndino@@ kut@@ y@@ ora ma@@ kumb@@ o . ” +Ndaka@@ berekwa musi wa@@ 29 J@@ u@@ ly 19@@ 29 , uye ndaka@@ kurira mu@@ musha uri mu@@ pur@@ ov@@ hin@@ zi ye@@ B@@ ul@@ ac@@ an , mu@@ Philipp@@ ines . +I@@ zvozvo zvai@@ ita kuti ndi@@ de kut@@ evera muenzaniso wa@@ Jesu . — Jo@@ h . +10 : 27 . +P@@ anenge panguva iyoyo , vabereki vangu vak@@ and@@ iti nd@@ idz@@ ok@@ e kumb@@ a . +Mumwe wavo a@@ inge ati kure@@ i aka@@ uya p@@ amba pe@@ du , ndo@@ kuts@@ anangura zvino@@ taurwa neBhaibheri ‘ nezvem@@ azuva e@@ ku@@ pedzisira . ’ +Ak@@ ab@@ va at@@ ik@@ oka kuch@@ idz@@ idzo che@@ Bhaibheri chai@@ it@@ irwa mune rimwe ra@@ ini r@@ aiva pedyo . +T@@ akaita nguva y@@ akare@@ ba tichi@@ kurukura nezve@@ Bhaibheri man@@ h@@ eru iwayo . +Nd@@ akap@@ indura kuti , “ E@@ he , ndino@@ da . ” +Nd@@ ai@@ ziva kuti ndino@@ da ‘ kushand@@ ira T@@ enzi , iye Kristu . ’ +T@@ aka@@ enda kur@@ wi@@ zi rwa@@ iva pedyo , uye ini ne@@ mumwe muk@@ omana taka@@ bhabhatidzwa musi wa@@ 15 Fe@@ b@@ ru@@ ary 19@@ 46 . +M@@ huri ye@@ kwa@@ C@@ ru@@ z y@@ ak@@ and@@ ik@@ oka kuti ndino@@ gara nayo mu@@ A@@ ng@@ at . +Ak@@ ai@@ pa ne@@ Chir@@ ungu , uye pashure pa@@ cho ndaka@@ z@@ opa pf@@ up@@ iso ye@@ hurukuro yacho muchi@@ T@@ ag@@ al@@ o@@ g . +Nd@@ ai@@ muka m@@ ang@@ wan@@ ani ng@@ wan@@ ani ndichi@@ batsira muk@@ i@@ chen@@ i . +P@@ and@@ aka@@ gir@@ a@@ j@@ u@@ w@@ eta nd@@ ak@@ amb@@ os@@ handa s@@ ap@@ iy@@ ona chai@@ ye mu@@ B@@ ron@@ x mu@@ New York C@@ ity . +Pashure pe@@ kunge t@@ ach@@ ata , t@@ akaita vhiki re@@ kutanga tiri muungano yaiva pa@@ R@@ ap@@ u R@@ ap@@ u Is@@ land . +T@@ akat@@ o@@ zot@@ eng@@ awo nzvimbo ye@@ murume uya we@@ kuti “ Ma@@ Ch@@ ina ha@@ at@@ eng@@ esi . ” +Z@@ ai ra@@ inge ri@@ ch@@ angobva kus@@ angana nem@@ be@@ u ye@@ murume r@@ aigona kutanga ku@@ kura much@@ u@@ b@@ hu ino@@ famba nema@@ z@@ ai ( ec@@ t@@ op@@ ic pre@@ gn@@ anc@@ y ) kana kuti rai@@ pinda muchi@@ berek@@ o . +Izvi zvinoita kuti pa@@ muviri pa@@ cho pa@@ b@@ ve . +R@@ imwe bhuku raka@@ budiswa ne@@ Eng@@ l@@ and@@ ’@@ s N@@ ational He@@ al@@ th Ser@@ vice rinoti : “ Kus@@ handa kwem@@ a@@ I@@ U@@ D ane k@@ opa yakawanda kuno@@ pfuura 9@@ 9 % . +Izvi zvin@@ oreva kuti pa@@ vakadzi 1@@ 00 vanos@@ handisa ma@@ I@@ U@@ D akadaro p@@ anogona kus@@ ha@@ yika mumwe chete ano@@ bata pa@@ muviri mug@@ ore rimwe chete . +Ma@@ I@@ U@@ D ane k@@ opa s@@ homa ha@@ as@@ handi kusvika ipapo . ” +( a ) Zv@@ inor@@ ev@@ ei ‘ kuitwa kuti u@@ ve nechokwadi ’ ? +( b ) Tino@@ ziva sei kuti Timoti aka@@ itwa kuti ave nechokwadi nem@@ ashoko akanaka pamusoro pa@@ Jesu ? +Kutaura chokwadi , nd@@ ing@@ an@@ et@@ seka kana ak@@ ango@@ bvuma chimwe chinhu asing@@ abv@@ un@@ zi mibvunzo . ” +Zvino@@ ts@@ anang@@ urwa neBhaibheri zvine musoro here kwa@@ vari ? +Chii chinokosha pa@@ kudzidzisa kw@@ ako ? +Vamwe amai vane van@@ asikana vat@@ atu van@@ onzi St@@ ep@@ han@@ i@@ e , vanot@@ i : “ Ku@@ bvira vana vangu pa@@ vaiva va@@ d@@ iki d@@ iki , nd@@ aifanira kugara ndichi@@ zv@@ ibvunz@@ a kuti , ‘ Ndino@@ taura here ne@@ vana vangu nezve@@ kuti nei ndi@@ ine chokwadi che@@ kuti Jehovha ar@@ iko , ane rudo , uye nzira dzake dz@@ akarurama ? +V@@ ana vangu van@@ ony@@ atso@@ ona here kuti ini ndino@@ da Jehovha chaizvo ? ’ +H@@ and@@ ing@@ at@@ aris@@ iri kuti vana vangu vave nechokwadi nazvo kana ini nd@@ isina . ” +Bhaibheri rino@@ taura kuti up@@ enzi hw@@ akas@@ ung@@ ir@@ irwa pam@@ woyo wem@@ wana . +U@@ chenjeri hw@@ akadaro huno@@ diwa kuti ti@@ wane rup@@ on@@ eso . +V@@ aberek@@ i vang@@ ab@@ atsira sei vana vavo kuti vave ‘ vaka@@ chenjera kuti va@@ wane rup@@ on@@ eso ’ ? +En@@ da p@@ akan@@ zi ZV@@ IN@@ O@@ DZ@@ I@@ DZ@@ IS@@ WA N@@ E@@ B@@ H@@ AI@@ B@@ H@@ ER@@ I > ZV@@ E@@ KU@@ S@@ H@@ AN@@ D@@ IS@@ A P@@ A@@ KU@@ DZ@@ I@@ DZ@@ A B@@ H@@ AI@@ B@@ H@@ ER@@ I . +Ung@@ as@@ hand@@ ira sei kup@@ on@@ eswa kw@@ ako ? +V@@ anogona kunge vakar@@ er@@ erwa mu@@ chokwadi . +Asi pashure pem@@ akore mas@@ homan@@ ana chi@@ do che@@ kuita zve@@ b@@ on@@ de pa@@ chin@@ os@@ imba , mwana wacho anofanira kuny@@ ats@@ ot@@ enda kuti chis@@ arudzo ch@@ akanaka kupfuura zv@@ ese nde@@ che@@ kuteerera mitemo yaJehovha . ” +( b ) Uno@@ dzidz@@ ei pana Va@@ Firipi 4 : 11 - 13 ? +Zv@@ inor@@ ev@@ ei kushand@@ ira kup@@ on@@ eswa kw@@ ako “ nokut@@ ya noku@@ d@@ ed@@ era ” ? +Zvinhu zv@@ ipi zvaka@@ kubatsira pa@@ kudzidza uri we@@ ga ? +Ndino@@ fan@@ irawo kus@@ unung@@ uka sai@@ zvozvo . +Saka pand@@ inenge ndi@@ chit@@ aura nyaya , ndino@@ gona kung@@ oti , ‘ Mumwe musi pand@@ a@@ idz@@ idzisa Bhaibheri . . . +’ Ndino@@ bva nd@@ a@@ end@@ erera n@@ eny@@ aya y@@ and@@ anga ndi@@ chit@@ aura . +N@@ yaya y@@ and@@ inenge ndi@@ chit@@ aura inenge is@@ iri ha@@ yo yeBhaibheri , asi kazhinji k@@ acho vamwe vanenge vava kut@@ o@@ da kuziva zvand@@ ino@@ ita pand@@ ino@@ dzidzisa Bhaibheri . +P@@ and@@ inor@@ amba ndi@@ chis@@ handisa nzira iyi , kutaura zvand@@ inot@@ enda kuno@@ wedzera kuva nyore . +Uye pashure pa@@ cho ndino@@ fara zvikuru ! ” +T@@ is@@ u te@@ ga Zvapupu zva@@ vano@@ on@@ ana nazvo . +Saka zva@@ vach@@ ati@@ itira zvicha@@ ender@@ ana nema@@ itiro edu . +K@@ o kana ti@@ chiny@@ ara kana kut@@ ya kutaura zvatino@@ t@@ enda kana kuti tichi@@ d@@ ed@@ era pat@@ inenge ti@@ chit@@ aura ? +V@@ anogona kubva vat@@ anga kut@@ i@@ ona se@@ vanhu vasing@@ af@@ ariri zvav@@ ari . +V@@ anogona kus@@ at@@ ib@@ ata zvakanaka ne@@ kuti t@@ inenge tis@@ ina chi@@ vimbo . +Zvisinei , kana tik@@ at@@ aura zvatino@@ t@@ enda t@@ akas@@ unung@@ uka uye ti@@ ine chi@@ vimbo , ti@@ chit@@ aura se@@ zvat@@ in@@ ongo@@ it@@ awo dzimwe nyaya , vanogona kut@@ ir@@ emek@@ edza . ” +Jesu akati : “ Kana munhu achi@@ da kund@@ it@@ evera , nga@@ a@@ zvir@@ ambe , at@@ ore d@@ anda rake ro@@ kutambudz@@ ikira , ar@@ ambe ach@@ ind@@ it@@ evera . ” +Kuti u@@ wane mamwe ma@@ zano ona nyaya y@@ akan@@ zi “ V@@ echi@@ d@@ iki Vano@@ bvunza Kuti ​ — Nei Ndi@@ chi@@ fanira Kuny@@ engetera ? ” +Ch@@ idz@@ idzo chipi chat@@ inga@@ wana pana Isaya 40 : 26 ? +Hapana munhu ati ak@@ wanisa ku@@ verenga ny@@ er@@ edzi dz@@ ese . +T@@ ing@@ ava sei nechokwadi che@@ kuti Jehovha ano@@ kwanisa kut@@ ipa simba ? +Uye aka@@ wedzera kuti : “ Mu@@ cha@@ wana zor@@ oro rem@@ weya y@@ enyu . +Asi tin@@ onzwa sei p@@ atino@@ dz@@ oka ? +Y@@ ap@@ iwa nenzira in@@ oratidza tsitsi ne@@ hanya zve@@ kuti mis@@ o@@ dzi yangu y@@ ab@@ u@@ da . +Z@@ van@@ di@@ yeuch@@ idza kuti ndino@@ fanira ku@@ vapo pam@@ is@@ angano . ” +Muapostora Pauro air@@ ev@@ ei pa@@ akanyora kuti : “ P@@ and@@ inenge nd@@ isina simba , ndi@@ po pan@@ di@@ ine simba ” ? +Ak@@ a@@ imba kuti : “ Nokuti nem@@ i ndino@@ gona kum@@ hanyira boka re@@ vap@@ amb@@ i ; naMwari wangu ndino@@ gona ku@@ kw@@ ira rus@@ v@@ ing@@ o . ” +Kana kuti ti@@ chat@@ evera here uchenjeri huri muBhaibheri hwe@@ kuti ti@@ kurum@@ idz@@ e ku@@ gadzir@@ isa zvinhu ? +Uye r@@ amba uchi@@ yeuka kuti uno@@ g@@ on@@ awo kunge u@@ ine zva@@ waka@@ ita zvaka@@ z@@ ok@@ onzera kuti mus@@ a@@ wirirana . Uno@@ gona kutanga kutaura naye u@@ chit@@ i , “ P@@ amwe nd@@ ini ndaka@@ kurumidza h@@ angu kuts@@ am@@ wa , asi pat@@ akataura t@@ ese ne@@ z@@ uro nd@@ akanzwa se@@ kuti . . . +Ak@@ any@@ ora kuti : “ Ndaka@@ z@@ ore@@ ur@@ ura chivi ch@@ angu kwa@@ muri , uye . . . imi m@@ akar@@ eg@@ erera kuk@@ anganisa kwe@@ zviv@@ i zv@@ angu . ” +( 4 ) Ku@@ cha@@ z@@ omb@@ ova ne@@ Chir@@ angar@@ idzo che@@ ku@@ pedzisira here ? +( Verenga Johani 3 : 16 ; 17 : 3 . ) +( a ) Jesu akany@@ enget@@ erera chii musi w@@ akat@@ angwa Kud@@ ya kwa@@ She K@@ wem@@ anh@@ eru ? +( b ) Chii chin@@ oratidza kuti Jehovha akap@@ indura munyengetero wa@@ Jesu ? +( Verenga Johani 17 : 20 , 21 . ) +( Verenga Ezek@@ ieri 37 : 15 - 17 . ) +T@@ ing@@ as@@ i@@ mudz@@ ira sei ku@@ batana pakati pe@@ vanhu vaMwari ? +T@@ ing@@ ar@@ atidza sei kuti tiri ‘ kush@@ iv@@ ir@@ irana mur@@ udo ’ ? +Tino@@ ziva sei kuti pa@@ chava ne@@ Chir@@ angar@@ idzo che@@ ku@@ pedzisira ? +Hama mbiri nema@@ dz@@ im@@ ai adzo vari ku@@ isa mabhuku mun@@ de@@ ge muta@@ un@@ di re@@ R@@ ib@@ er@@ al@@ ta , mu@@ B@@ eni . +Nei Jehovha achit@@ arisira kuti ti@@ mu@@ pe@@ wo chimwe chinhu kubva pa@@ zvinhu zvinokosha zva@@ ak@@ ati@@ pa ? +S@@ angano rin@@ os@@ handisa sei mari ye@@ zvip@@ o mazuva ano ? +Chii chat@@ in@@ oratidza Jehovha p@@ atino@@ ts@@ ig@@ ira basa rake ? +( Verenga 2 VaKorinde 8 : 18 - 21 . ) +Zv@@ ipo zva@@ muno@@ pa zvino@@ batsira pa@@ basa redu re@@ munyika y@@ ese ( Ona nd@@ ima 14 - 16 ) +Saka dzimwe nguva tin@@ onzwa se@@ kuti tiri te@@ ga , uye tino@@ kurumidza kuk@@ angan@@ wa kuti basa raJehovha riri kuitwa munzvimbo dzakawanda zvakadini . +Asi pat@@ in@@ ongo@@ ona map@@ ur@@ o@@ gir@@ amu akasiyana - siyana e@@ J@@ W Bro@@ ad@@ cas@@ ting , tino@@ yeuka kuti tiri chik@@ amu ch@@ es@@ angano riri pasi res@@ e . +Hama ne@@ hanzvadzi dzedu dziri kun@@ o dzino@@ farira chaizvo J@@ W Bro@@ ad@@ cas@@ ting . +Tino@@ wan@@ z@@ onzwa dzi@@ chit@@ aura kuti pa@@ dzino@@ pedza kuona pur@@ o@@ gir@@ amu yem@@ wedzi nem@@ wedzi dzin@@ onzwa dziri pedyo chaizvo ne@@ hama dze@@ D@@ are R@@ inot@@ ungamirira . +Iye zvino dzino@@ to@@ da@@ da ne@@ kuva chik@@ amu ch@@ es@@ angano raMwari . ” +( Verenga Zvirevo 11 : 24 , 25 . ) +Ano@@ da mudzimai wake ano@@ zvi@@ da , nokuti hapana murume ak@@ ambo@@ v@@ enga ny@@ ama yake ; asi ano@@ ipa zvokudya uye ano@@ it@@ arisira . ” +T@@ ing@@ adz@@ ivisa sei kuzvi@@ da , kuda mari , kana kuda ma@@ f@@ aro ? +Pauro akanyora kuti vanhu vai@@ zova “ vanoda mari . ” +M@@ akore apfuura , mumwe p@@ iy@@ ona aka@@ udza mumwe murume mu@@ I@@ rel@@ and nezva@@ Mwari . +Bhaibheri rino@@ ti@@ i nezve@@ up@@ f@@ umi uye ur@@ ombo ? +Ak@@ any@@ ora kuti : “ Kuti nd@@ ire@@ ge ku@@ guta nd@@ ik@@ az@@ o@@ kur@@ amb@@ ai ndi@@ chit@@ i : ‘ Jehovha ndi@@ an@@ iko ? ’ ” +A@@ i@@ wan@@ z@@ oti , ‘ Nd@@ ina b@@ ho@@ si akanaka kupfuura v@@ ese ! ’ +Iye zvino zvand@@ ava ku@@ pa@@ y@@ on@@ awo , t@@ ese tiri kushand@@ ira Munhu mumwe chete , Jehovha . ” +T@@ ing@@ adz@@ ivisa sei kuzvi@@ da , kuda mari , kana kuda ma@@ f@@ aro ? +I@@ nor@@ e@@ va kuti ha@@ vat@@ omb@@ o@@ di Mwari . ” +T@@ ing@@ adz@@ ivisa sei kuzvi@@ da , kuda mari , kana kuda ma@@ f@@ aro ? +Tino@@ z@@ i@@ vawo kuti rudo “ har@@ u@@ zvi@@ kudz@@ i , har@@ u@@ zvit@@ ut@@ um@@ adzi . ” +Nd@@ aigona kuona kuti van@@ on@@ di@@ da , uye izvozvo zvai@@ ita kuti ndi@@ de kuva@@ fadza . ” +( Verenga Isaya 11 : 6 , 7 . ) +Uno@@ gona ku@@ verenga nezv@@ ev@@ amwe vavo mun@@ yaya dzine musoro uno@@ ti “ Bhaibheri R@@ ino@@ chinja Up@@ enyu , ” dzino@@ wan@@ ika pa@@ j@@ w@@ .@@ or@@ g . +Tinofanira kuita kuti vamwe va@@ z@@ ive kuti tiri Zvapupu zvaJehovha . +3 T@@ evedzera Kut@@ enda Uye Kut@@ eerera kwa@@ No@@ a , Dhanieri na@@ Jobho +28 Mu@@ f@@ aro Uno@@ bva K@@ una Mwari +9 , 10 . ( a ) T@@ ing@@ at@@ evedzera sei kutenda uye kuteerera kwa@@ No@@ a ? +( Verenga Mar@@ ak@@ i 3 : 17 , 18 . ) +( b ) Jehovha ai@@ ona sei Dhanieri ? +( b ) V@@ aberek@@ i mazuva ano vang@@ adz@@ idz@@ ei kubva kuva@@ bereki va@@ Dhanieri ? +( Verenga Jobho 1 : 9 , 10 . ) +19 , 20 . ( a ) T@@ ing@@ at@@ evedzera sei kutenda uye kuteerera kwa@@ Jobho ? +1 - 3 . ( a ) Chii chi@@ chat@@ ibatsira kuti tir@@ ambe t@@ akatendeka kuna Mwari mu@@ mazuva ano e@@ ku@@ pedzisira ? +( Verenga Dhanieri 6 : 7 - 10 . ) +( Verenga Jobho 31 : 24 - 28 . ) +( Verenga Pisarema 11 : 5 ; 26 : 4 . ) +Saka zv@@ ibvunz@@ e kuti , ‘ Ndino@@ ziva Jehovha se@@ zvai@@ ita No@@ a , Dhanieri , na@@ Jobho here ? ’ +Ino@@ k@@ i , t@@ at@@ eg@@ uru va@@ No@@ a ‘ aka@@ f@@ amb@@ awo naMwari wechokwadi . ’ +Jesu akati : “ Abra@@ hamu baba v@@ enyu vaka@@ fara kwazvo vachit@@ arisira kuona zuva r@@ angu . ” +H@@ and@@ ik@@ wan@@ isi kuts@@ anangura mufaro w@@ ati@@ in@@ awo . ” +Nokuti Mwari aka@@ zvi@@ zar@@ urira is@@ u achis@@ handisa [ mweya ] wake . ” +Jesu akati : “ Nd@@ at@@ aura zvinhu izvi kwa@@ muri , kuti mufaro wangu u@@ ve ma@@ muri uye mufaro w@@ enyu u@@ zadz@@ is@@ we . ” +( 3 ) Zv@@ atino@@ edza kuita kuti tive ‘ ne@@ pfungwa dza@@ Kristu ’ zvi@@ chat@@ ibatsira sei kuti tive nema@@ fungiro a@@ Mwari ? +( Verenga 1 VaKorinde 2 : 14 - 16 . ) +Bhaibheri rino@@ ti@@ i nezve@@ vanhu vane ma@@ fungiro a@@ Mwari ? +T@@ ing@@ adz@@ idz@@ ei kubva pa@@ muenzaniso wa@@ Jakobho ? +T@@ ing@@ adz@@ idz@@ ei kubva pa@@ muenzaniso wa@@ Mar@@ iya ? +( Verenga Ruka 1 : 46 - 5@@ 5 . ) +( Verenga Isaya 6@@ 3 : 9 ; M@@ ako 6 : 34 . ) +R@@ ach@@ el , hanzvadzi ye@@ ku@@ B@@ ra@@ z@@ il , anoti : “ Nd@@ aida chaizvo kut@@ evera ma@@ f@@ ash@@ oni enyika . +Saka nd@@ ais@@ ap@@ f@@ eka zvine m@@ wero . +Asi kudzidza chokwadi kwakaita kuti nd@@ is@@ hand@@ e nesimba kuti ndi@@ ve nema@@ fungiro a@@ Mwari . +Ku@@ chinja kwa@@ is@@ ava nyore , asi ndaka@@ wedzera kuf@@ ara uye upenyu hw@@ angu hwaka@@ va ne@@ chinangwa . ” +Saka tik@@ ava sa@@ Jesu t@@ inos@@ wed@@ era pedyo naJehovha . +V@@ akati : “ T@@ iri zv@@ apupu zve@@ zvinhu zvose zva@@ akaita . ” +K@@ uva ne@@ pfungwa dza@@ Kristu ku@@ cha@@ kubatsira sei pane zva@@ uno@@ ita zuva nezuva ? +Ano@@ ti : “ H@@ and@@ ina kumb@@ o@@ bvira nd@@ aita zvakaipa , asi nd@@ ais@@ aita zvinhu zve@@ kunamata nem@@ woyo w@@ ese . +Nd@@ aiita s@@ end@@ akasimba pa@@ kunamata , ndi@@ chip@@ inda misangano y@@ ese uye ndichi@@ ita up@@ iy@@ ona hwe@@ betsero k@@ ano@@ vereng@@ eka pa@@ gore . +Ano@@ ti : “ Z@@ vai@@ ita se@@ kuti hand@@ ina ch@@ and@@ ai@@ ziva . +Ndaka@@ zvi@@ udza kuti , ‘ Kana ndichi@@ zo@@ budirira kut@@ ungamirira mudzimai wangu pa@@ kunamata , ndino@@ to@@ fanira kus@@ unga dz@@ is@@ imb@@ e . ’ ” +Ano@@ ti : “ Ndaka@@ dzidza Bhaibheri uye nd@@ akar@@ idz@@ idza nd@@ ik@@ ar@@ idz@@ idz@@ azve , uye zvinhu zv@@ akatanga ku@@ jeka . +Nd@@ akanga nd@@ ava kunzwisisa , uye chino@@ t@@ onyanya ku@@ kosha nde@@ che@@ kuti nd@@ akatanga kuva ne@@ us@@ hamwari hwe@@ pedyo naJehovha . ” +( 3 ) K@@ uva ne@@ us@@ hamwari hw@@ akasimba naJehovha kuno@@ ti@@ batsira sei muupenyu hwedu hwe@@ zuva nezuva ? +( b ) Chin@@ angwa ch@@ edu pat@@ inenge ti@@ ch@@ idz@@ idza uye ku@@ fungisisa nde@@ ch@@ ei ? +( b ) Mu@@ enzaniso upi we@@ muBhaibheri wat@@ ing@@ at@@ evedzera ? +12 , 13 . ( a ) Chii chi@@ chat@@ ibatsira kushandisa zviri pana VaRoma 15 : 5 ? +( Verenga 2 Petro 1 : 5 - 8 . ) +K@@ uva nema@@ fungiro a@@ Mwari kuch@@ at@@ ibatsira sei muupenyu hwedu ? +N@@ de@@ ap@@ i “ mabasa aka@@ fa ” atino@@ fanira kudz@@ ivisa ? +Zvis@@ arudzo zv@@ angu zvi@@ ch@@ andi@@ batsira here kuva ne@@ zvin@@ angwa zve@@ kunamata ? +Nei uchi@@ da kuf@@ ambira mberi pa@@ kuva nema@@ fungiro a@@ Mwari ? +Muapostora Petro aka@@ kurudzira vaKristu v@@ ep@@ anguva yake kuti : “ G@@ a@@ mu@@ chir@@ an@@ ai zvakanaka . ” +S@@ i@@ muka , u@@ bhabh@@ atidz@@ we . ” — M@@ A@@ B . 22 : 16 . +V@@ aberek@@ i ve@@ chiKristu vanoda kuva nechokwadi ch@@ ei vana vavo vas@@ ati va@@ bhabhatidzwa ? +“ K@@ W@@ E@@ M@@ W@@ E@@ DZ@@ I yakawanda nd@@ ai@@ gara ndichi@@ udza baba na@@ amai kuti nd@@ aida ku@@ bhabhatidzwa , uye vai@@ wan@@ zot@@ aura n@@ eni ne@@ zvazvo . +Chi@@ itiko ichi chinokosha muupenyu hw@@ angu chaka@@ itika musi wa@@ 31 D@@ ec@@ ember , 19@@ 34 . ” +5 , 6 . ( a ) Zvino@@ taurwa neBhaibheri nezva@@ Timoti zvinoita kuti t@@ it@@ a@@ ure kut@@ i@@ i nezve@@ ku@@ bhabhatidzwa kwake ? +( Verenga VaKor@@ ose 1 : 9 , 10 . ) +Vaka@@ udza Jehovha kuti va@@ if@@ ara zvikuru ne@@ chis@@ arudzo chem@@ wan@@ asikana wavo che@@ ku@@ zvit@@ sa@@ urira kwaari . ” +( Verenga 1 Petro 3 : 20 , 21 . ) +Nei tis@@ ing@@ am@@ an@@ ik@@ idzi chero ani zvake kuti ab@@ ha@@ bh@@ atidz@@ we ? +Kana uri mu@@ bereki , unogona kunge w@@ ak@@ ambo@@ zv@@ ibvunz@@ a kuti : M@@ wana wangu any@@ atso@@ gadzirira ku@@ bhabhatidzwa here ? +Mu@@ bvunzo we@@ kutanga nde@@ we@@ kuti , “ Sezvo Jesu Kristu ak@@ ati@@ f@@ ira , waka@@ pf@@ idza zviv@@ i zv@@ ako ndoku@@ zvit@@ sa@@ urira kuna Jehovha kuti u@@ ite zva@@ anoda here ? ” +T@@ ing@@ ag@@ a@@ much@@ ira sei va@@ eni zvakanaka pam@@ is@@ angano yedu yechiKristu ? +( Verenga 3 Johani 5 - 8 . ) +Ino@@ ti : “ Pa@@ kutanga nd@@ aiz@@ e@@ za ne@@ kuti ta@@ inge ti@@ ch@@ ango@@ ch@@ ata uye tichi@@ gara mu@@ imba d@@ iki . +Asi kugara ne@@ vadzidzi kwa@@ if@@ adza zvikuru . +Se@@ vanhu va@@ inge vach@@ angobva kuch@@ ata , t@@ ai@@ ona kuti murume ne@@ mudzimai vanogona kuf@@ ara chaizvo pa@@ vanos@@ humira Jehovha uye kuz@@ adz@@ isa zvin@@ angwa zve@@ kunamata pamwe chete . ” +Nei zving@@ ava zvakanaka kuti muk@@ ok@@ e vat@@ sva muungano y@@ enyu ? +( Verenga Ruka 10 : 41 , 42 . ) +Mumwe musi ari man@@ h@@ eru , mudzimai wangu ais@@ u@@ wa kumb@@ a uye zvand@@ ai@@ edza kuita kuti ndi@@ mu@@ bats@@ ire zva@@ is@@ as@@ handa . +K@@ wa@@ va kuma@@ 7 : 30 , d@@ ho@@ o raka@@ bva ra@@ go@@ go@@ dzwa . +A@@ iva mudz@@ idzi we@@ Bhaibheri a@@ inge ati@@ unz@@ ira mar@@ an@@ j@@ isi mat@@ atu . +A@@ inge au@@ ya ku@@ zo@@ ching@@ am@@ idza m@@ am@@ ish@@ in@@ ari mat@@ sva . +T@@ aka@@ mut@@ i ap@@ inde ndoku@@ bva ta@@ mu@@ pa mvura ye@@ kun@@ wa . +Kana u@@ chin@@ et@@ seka nezve@@ ku@@ gamuchira va@@ eni , ha@@ us@@ i we@@ ga . +Mumwe mukuru ari ku@@ Brit@@ ain anoti : “ Ku@@ gadzirira kuva neva@@ eni kuno@@ ti t@@ y@@ is@@ ei . +Asi se@@ zvak@@ ango@@ ita chero chii zv@@ acho ch@@ ine che@@ kuita ne@@ kush@@ umira Jehovha , mak@@ omborero ne@@ kug@@ uts@@ ikana zva@@ uno@@ wana zvinoita kuti ku@@ net@@ seka chero kup@@ i kwa@@ ung@@ aita kus@@ at@@ omb@@ ova chinhu . +Nd@@ in@@ on@@ ak@@ idzwa ne@@ kungo@@ gara pasi neva@@ eni ti@@ chin@@ wa he@@ du k@@ of@@ i ne@@ kuita nyaya . ” +Mumwe mukuru akanyora kuti : “ K@@ uva nevamwe ve@@ muungano p@@ amba p@@ angu kun@@ on@@ di@@ batsira kuti ndi@@ vanz@@ wis@@ ise zviri nani uye kun@@ on@@ di@@ pa nguva ye@@ kuti ndi@@ va@@ z@@ ive , zvikurukuru ma@@ wan@@ iro av@@ akaita chokwadi . ” +Mudz@@ im@@ ai we@@ mumwe mura@@ y@@ ir@@ idzi akaita kuti nd@@ is@@ an@@ et@@ se@@ k@@ e . +Ak@@ ati iye ne@@ murume wake pa@@ vanenge vachi@@ ita basa re@@ kuf@@ ambira , ma@@ vhiki akanaka zvikuru nde@@ aya a@@ vano@@ gara ne@@ munhu akasimba pa@@ kunamata ang@@ ango@@ daro asina zvinhu zvakawanda asi a@@ ine zvin@@ angwa zvaka@@ fanana nezv@@ avo zve@@ kush@@ umira Jehovha uye kusa@@ va net@@ waka@@ wand@@ a@@ wanda . +Izvi zv@@ akandi@@ yeuch@@ idza zvat@@ ai@@ udzwa na@@ amai tiri va@@ d@@ iki . Va@@ iti : ‘ Zv@@ iri nani kuva nezvoku@@ dya zvo@@ mu@@ ri@@ wo pa@@ ine rudo . ’ ” +( Verenga Zvirevo 25 : 21 , 22 . ) +Vanhu vano@@ wanzo@@ gadzirira zvakanaka vachi@@ itira va@@ eni vavo ( Ona nd@@ ima 20 ) +M@@ uny@@ ori wem@@ ap@@ isarema Dhavhidhi aka@@ bvunza kuti : “ H@@ ai@@ wa Jehovha , ndi@@ ani ang@@ ava mu@@ eni mut@@ ende r@@ enyu ? ” +Zvino@@ k@@ os@@ ha@@ wo kuti tir@@ emek@@ edz@@ e tsika dze@@ kwat@@ inenge tiri . +Nei zvi@@ chik@@ osha chaizvo kuti ‘ ti@@ ga@@ mu@@ chir@@ ane zvakanaka ’ ? +Hama mbiri dziri kupa tur@@ ak@@ iti murume anoita zve@@ kup@@ enda uyo aka@@ gara pa@@ bhir@@ i@@ ji pamberi pe@@ chi@@ vako chem@@ akore e@@ kuma@@ 1@@ 5@@ 00 , chin@@ onzi K@@ a@@ š@@ ti@@ la@@ c , pedyo ne@@ guta re@@ S@@ pl@@ it +( Verenga T@@ ito 2 : 11 - 14 . ) +Mu@@ kuru wacho anoti : “ G@@ ra@@ ham aiva ne@@ dambudziko re@@ kuzvi@@ kudza . +A@@ it@@ sor@@ op@@ odza vakuru vakat@@ onga nyaya yake pa@@ akadz@@ ing@@ wa . +Saka pa@@ zvidz@@ idzo zvakat@@ evera , taka@@ kurukura mag@@ waro anotaura nezve@@ kuzvi@@ kudza uye zva@@ kuno@@ k@@ onzera . +G@@ ra@@ ham akatanga kuny@@ atso@@ ona zva@@ ari mug@@ ir@@ azi re@@ Shoko raMwari , uye haana kuf@@ arira zva@@ akaona . +Pashure pe@@ kunge a@@ ona kuti a@@ inge ap@@ of@@ um@@ adzwa ‘ ne@@ d@@ anda ’ re@@ kuzvi@@ kudza uye kuti kuts@@ or@@ op@@ odza vamwe nd@@ iro r@@ aiva dambudziko rake , akatanga kuchinja ne@@ ku@@ kurumidza . +Ak@@ at@@ anga kupinda misangano nguva dz@@ ese , kuny@@ atso@@ dzidza Shoko raMwari , uye kugara ach@@ iny@@ engetera . +‘ N@@ da@@ va nemakore ndiri mu@@ chokwadi , ’ akadaro , ‘ uye nd@@ akat@@ omb@@ os@@ humira s@@ ap@@ iy@@ ona . +Muapostora Petro akanyora kuti : “ F@@ udz@@ ai boka raMwari ra@@ muno@@ t@@ arisira , mus@@ inga@@ iti noku@@ g@@ om@@ be@@ dz@@ erwa , asi noku@@ zvid@@ ira ; mus@@ inga@@ it@@ iri kuda pfuma ino@@ wanikwa nenzira dzoku@@ s@@ at@@ end@@ es@@ eka , asi nomwoyo wose ; mus@@ inga@@ zvi@@ iti ma@@ dz@@ is@@ he pane vaya vari nh@@ aka yaMwari , asi muchi@@ va mi@@ enzaniso ku@@ boka . ” +V@@ aberek@@ i vang@@ ar@@ era sei vana mu@@ kur@@ anga kwa@@ Jehovha ? +( Verenga VaHebheru 12 : 5 - 11 . ) +M@@ wana ano@@ dzidza sei ku@@ zvir@@ anga ? +4 , 5 . ( a ) Nei ku@@ zvir@@ anga chiri chinhu chinokosha ‘ pa@@ unhu h@@ uts@@ va ’ ? +T@@ ing@@ ava sei vadzidzi v@@ akanaka ve@@ Shoko raMwari ? +Imwe hama y@@ akanyora kuti : “ Nd@@ inot@@ enda chaizvo mar@@ erer@@ wo and@@ aka@@ itwa ne@@ vabereki vangu . +( b ) Vamwe vabereki pa@@ vakat@@ eerera Jehovha , zvaka@@ batsira sei mhuri yavo ? +( b ) T@@ inga@@ ita sei kuti vakuru va@@ wedz@@ ere kuf@@ ara pa@@ vanoita basa ravo ? +H@@ av@@ ana kund@@ it@@ uka kana kund@@ it@@ sor@@ op@@ odza , asi v@@ akandi@@ kurudzira uye vak@@ and@@ is@@ imbisa . +Pashure pe@@ mus@@ angano mumwe ne@@ mumwe , pasinei ne@@ kuti va@@ inge vaka@@ bat@@ ikana sei , pa@@ it@@ o@@ ita mumwe wavo ain@@ di@@ bvunza upenyu . +Nemhaka ye@@ zvak@@ ambo@@ itika kwand@@ iri , zva@@ indi@@ om@@ era kuti ndi@@ one s@@ end@@ akakodzera ku@@ diwa naMwari . +Zvisinei , Jehovha akaramba achis@@ handisa ungano ne@@ vakuru kuti and@@ ir@@ atidz@@ e kuti an@@ on@@ di@@ da . +Nd@@ inot@@ et@@ erera Jehovha kuti andi@@ bats@@ ire kuti nd@@ is@@ amb@@ of@@ a ndaka@@ mus@@ iya . ” +Kana uk@@ aita zvakanaka , ha@@ ung@@ ak@@ w@@ idz@@ ir@@ idz@@ wi here ? +Asi kana uk@@ as@@ aita zvakanaka , chivi chiri ku@@ ku@@ vand@@ ira pas@@ u@@ o , chiri kuda iwe ; asi iwe ucha@@ chi@@ kunda here ? ” +Saka ‘ ng@@ at@@ it@@ e@@ erer@@ ei chir@@ ango tive vaka@@ chenjera . ’ +P@@ asi res@@ e , vanhu vari kur@@ wira rus@@ ununguko . +15 Kut@@ evedzera Jehovha ​ — Mwari Ano@@ kurudzira Vanhu V@@ ake +8 : 36 . +( Verenga 1 Mak@@ or@@ on@@ ike 29 : 11 , 12 . ) +Kuti zvi@@ va@@ f@@ amb@@ ire ‘ zvakanaka , ’ vanhu vanofanira ku@@ vimba naMwari uye kumu@@ te@@ erera . +Kana vakas@@ at@@ eerera , vanos@@ iy@@ iwa va@@ chis@@ arudza ve@@ ga zvakanaka . . . uye zvakaipa . ” +Ku@@ fanana ne@@ mut@@ ya@@ iri w@@ end@@ ege iye@@ ye , Ad@@ hamu na@@ E@@ vha vai@@ da kuita zvinhu nenzira yavo . +Ak@@ ati : “ Kana muk@@ ar@@ amba muri mus@@ hoko r@@ angu , chokwadi muri vadzidzi vangu , mu@@ cha@@ ziva chokwadi , uye chokwadi chi@@ cha@@ kus@@ unung@@ ur@@ ai . ” +Nei rus@@ ununguko rwaka@@ vimb@@ iswa naJesu ru@@ chi@@ ita kuti ‘ tis@@ unung@@ uke zvechokwadi ’ ? +( Verenga VaRoma 8 : 1 , 2 , 20 , 21 . ) +( c ) M@@ ibvunzo ipi y@@ atino@@ fanira kup@@ indura ? +( En@@ da p@@ akan@@ zi KU@@ B@@ V@@ UN@@ Z@@ WA N@@ E@@ KU@@ T@@ A@@ UR@@ A ZV@@ AK@@ AI@@ T@@ I@@ K@@ A > KU@@ T@@ S@@ UN@@ G@@ IR@@ IR@@ A M@@ I@@ E@@ DZ@@ O . ) +Zvinhu zvose zvino@@ bvum@@ irwa no@@ mutemo ; asi ha@@ zvis@@ i zvinhu zvose zvino@@ vaka . ” +No@@ a nem@@ huri yake vakat@@ is@@ iy@@ ira muenzaniso upi ? +V@@ akar@@ arama munyika ya@@ inge yakazara kur@@ wisana uye unz@@ enza . +“ No@@ a akaita maererano nezv@@ ose zva@@ akanga ar@@ ay@@ irwa naMwari . +Jehovha akat@@ ir@@ ayira kuti ti@@ it@@ ei mazuva ano ? +( Verenga Ruka 4 : 18 , 19 . ) +Nd@@ akany@@ ats@@ onz@@ wisisa zvin@@ ore@@ hwa na@@ Jakobho 4 : 8 iyo inoti : ‘ S@@ we@@ der@@ ai pedyo naMwari , uye iye ach@@ as@@ wed@@ era pedyo nem@@ i . ’ +Ndaka@@ ziva kuti ndakanga nd@@ a@@ wana zvand@@ ait@@ s@@ va@@ ga , chinangwa chino@@ g@@ utsa muupenyu . ” +Mur@@ ume ne@@ mudzimai , avo vanos@@ handa sem@@ ap@@ iy@@ ona chai@@ wo , vari kuparidza munzvimbo iri kwa@@ yo ye@@ ga pedyo ne@@ guta re@@ B@@ al@@ y@@ k@@ ch@@ y +( b ) Jehovha aka@@ kurudzira sei Mwanakomana wake ? +He@@ z@@ ek@@ iya aka@@ kurudzira sei vakuru ve@@ hondo nevanhu ve@@ mu@@ Judha ? +Petro ‘ akas@@ imbisa sei hama dzake ’ ? +Asi ndaka@@ kut@@ et@@ er@@ erera kuti kutenda kw@@ ako kure@@ ge kup@@ era ; uye iwe , kana w@@ ang@@ odz@@ oka , s@@ imbisa hama dz@@ ako . ” ​ — Ruka 22 : 31 , 32 . +Ndi@@ vana@@ ani vat@@ inogona ku@@ kurudzira mazuva ano , uye nei tichi@@ fanira kudaro ? +Va@@ kuru vang@@ apa sei vamwe zano nenzira ino@@ kurudzira ? +V@@ aberek@@ i , muri kudzidzisa vana v@@ enyu kuti va@@ kurudz@@ ire vamwe here ? +Y@@ akandi@@ udz@@ awo zva@@ yaka@@ ita pa@@ y@@ akas@@ angana ne@@ mu@@ edzo waka@@ fanana ne@@ wand@@ aiva na@@ wo , uye ndaka@@ bva nd@@ a@@ ona kuti nd@@ ais@@ ava nde@@ ga . ” +Mambo Soromoni akanyora kuti : “ Shoko rino@@ taurwa panguva y@@ akakodzera , ha@@ iwa r@@ akanaka sei ! +Kup@@ en@@ ya kwem@@ az@@ iso kuno@@ fadza mwoyo ; mashoko akanaka anok@@ odza map@@ f@@ up@@ a . ” +Nokuti m@@ akaita kuti ndi@@ f@@ are , ha@@ iwa Jehovha , nokuda kwe@@ basa r@@ enyu ; nd@@ inos@@ h@@ evedzera no@@ mufaro nokuda kwem@@ abasa em@@ a@@ oko enyu . ” +Uno@@ gona kuva ne@@ zvin@@ angwa zve@@ kunamata kunyange uri mu@@ d@@ iki chaizvo . +Zvirevo 21 : 5 inoti : “ Zvir@@ ongwa zvo@@ munhu an@@ osh@@ ingaira [ zvino@@ budirira ] . ” +U@@ k@@ a@@ kurumidza kur@@ onga upenyu hw@@ ako ku@@ bur@@ ikidza ne@@ kuva ne@@ zvin@@ angwa zvakanaka , uno@@ kurum@@ idz@@ awo ku@@ budirira . +D@@ h@@ ig@@ ir@@ i@@ i re@@ zve@@ mutemo r@@ aigona kun@@ di@@ wanisa mari yakawanda chaizvo , asi nd@@ aigona kut@@ adza kuwana mukana we@@ kushanda mazuva mas@@ homa pa@@ vhiki . ” +17 , 18 . ( a ) Jehovha anoda kuti vechi@@ d@@ iki va@@ ite sei ? +Ndaka@@ berek@@ erwa mu@@ imba yem@@ ap@@ ango muta@@ un@@ di d@@ iki chaizvo rinonzi L@@ ib@@ er@@ ty , mu@@ Indi@@ ana , U.@@ S@@ .@@ A . +A@@ ma@@ i vangu vaka@@ zo@@ bereka van@@ in@@ ’@@ ina vangu vaviri ne@@ imwe hanzvadzi yangu . +M@@ U@@ M@@ AK@@ OR@@ E and@@ ai@@ enda ku@@ chikoro hapana zvakawanda zvai@@ chinja . +T@@ a@@ un@@ di re@@ L@@ ib@@ er@@ ty ra@@ inge raka@@ pot@@ er@@ edzwa nem@@ ap@@ ur@@ azi ma@@ d@@ iki ain@@ y@@ any@@ or@@ im@@ wa chi@@ b@@ age . +Mus@@ i we@@ S@@ v@@ ondo we@@ ga we@@ ga vai@@ enda nes@@ u ku@@ chechi ye@@ B@@ ap@@ tis@@ t . +V@@ aida kuti nd@@ ir@@ ambe ndiri muchi@@ u@@ to . +Zvisinei , musi uyu vak@@ and@@ ik@@ oka ku@@ Ch@@ idz@@ idzo Che@@ bhuku Che@@ ungano . U@@ yu wa@@ iva mus@@ angano we@@ kudzidza uye ku@@ kurukura Bhaibheri wa@@ i@@ it@@ irwa kumb@@ a kwavo . +Ndaka@@ va@@ udza kuti nd@@ aizo@@ funga ne@@ zvazvo . +Zv@@ ak@@ and@@ isham@@ isa kuti va@@ iz@@ iva Bhaibheri zvakadaro . +M@@ akore a@@ inge apfuura pand@@ aka@@ bvunza amai nezve@@ Zvapupu zvaJehovha , vak@@ ang@@ ond@@ iti , “ Ha@@ a , van@@ on@@ amata mumwe murume ak@@ we@@ gura anonzi Jehovha . ” +Asi iye zvino ndaka@@ ona kuti ma@@ z@@ iso angu akanga achi@@ v@@ hur@@ wa . +Nd@@ akatanga ku@@ pa@@ y@@ ona gore r@@ akat@@ evera racho muna 195@@ 8 . +G@@ l@@ or@@ ia aiva d@@ ha@@ im@@ on@@ di cha@@ iro pand@@ aka@@ mu@@ ro@@ ora uye n@@ anh@@ asi ach@@ iri d@@ ha@@ im@@ on@@ di . +Ndaka@@ ch@@ ata na@@ G@@ l@@ or@@ ia muna Fe@@ b@@ ru@@ ary 195@@ 9 . +Hama Sim@@ on K@@ r@@ ak@@ er ndi@@ vo vaka@@ kurukura nes@@ u ne@@ zvazvo . +V@@ ak@@ ati@@ udza kuti pa@@ Bh@@ et@@ eri pa@@ is@@ at@@ orwa vanhu vakar@@ oorana panguva iyoyo . +P@@ am@@ abasa akawanda at@@ aiita t@@ ai@@ piwa ma@@ dh@@ ora mat@@ atu pa@@ zuva . +V@@ h@@ iki ye@@ ga ye@@ ga G@@ l@@ or@@ ia ai@@ a@@ ina hem@@ be dze@@ imwe mhuri . +Ndino@@ yeuka mumwe musi pat@@ ak@@ amira pane rimwe gar@@ a@@ ji . +Pas@@ inei nem@@ at@@ ambudziko iwayo , t@@ aiva nenguva yakanaka ne@@ hama uye t@@ aida chaizvo ushumiri hwedu . +In@@ i ndaka@@ bva nd@@ at@@ anga kudzidza nem@@ wan@@ asikana wavo pamwe chete ne@@ murume wake . +A@@ ma@@ i vacho nem@@ wan@@ asikana wavo vakas@@ arudza kush@@ umira Jehovha ndoku@@ bhabhatidzwa . +T@@ aiva nes@@ hamwari dze@@ pedyo muungano ye@@ va@@ chena . +S@@ angano rinonzi K@@ u K@@ l@@ u@@ x K@@ l@@ an ( K@@ K@@ K ) , iro rin@@ os@@ i@@ mudz@@ ira rus@@ ar@@ ur@@ ag@@ anda uye kur@@ wisana , rai@@ p@@ isa - p@@ isa chaizvo mazuva iwayo . +Muna 19@@ 6@@ 2 , nd@@ akak@@ ok@@ wa ku@@ Chik@@ oro Ch@@ ou@@ sh@@ umiri hwo@@ Umambo chai@@ it@@ irwa mu@@ South L@@ ans@@ ing , New York . +Zvisinei , imwe k@@ amb@@ ani yem@@ af@@ oni ye@@ mu@@ P@@ ine B@@ l@@ u@@ f@@ f ya@@ inge y@@ ambo@@ kurukura n@@ eni nezve@@ basa . +Kud@@ ai va@@ iz@@ on@@ di@@ p@@ inza basa nd@@ aizo@@ va munhu mut@@ ema we@@ kutanga kushand@@ ira k@@ amb@@ ani iyoyo . +N@@ da@@ is@@ ava nem@@ ari ye@@ kuti ndi@@ ende ku@@ New York . +Y@@ akati , “ E@@ nd@@ ai ku@@ chikoro muno@@ dzidza zvakawanda , mo@@ z@@ ouya m@@ ot@@ idz@@ idz@@ is@@ awo ! ” +Ndino@@ fara chaizvo kuti hand@@ ina kuita basa iroro . +Izvi ndizvo zvino@@ ye@@ uk@@ wa na@@ G@@ l@@ or@@ ia nezv@@ enguva yat@@ aiva mu@@ P@@ ine B@@ l@@ u@@ f@@ f : “ Nd@@ aida chaizvo nd@@ ima yacho ! +Saka t@@ aiita basa re@@ pa@@ imba ne@@ imba m@@ ang@@ wan@@ ani , uye t@@ aiz@@ os@@ w@@ era tichi@@ it@@ isa zvidz@@ idzo zve@@ Bhaibheri , dzimwe nguva ti@@ chis@@ vika na@@ 11 man@@ h@@ eru . +P@@ at@@ ai@@ pa@@ y@@ ona mu@@ P@@ ine B@@ l@@ u@@ f@@ f t@@ akany@@ orera kuti tive map@@ iy@@ ona chai@@ wo . +Hama Le@@ on W@@ e@@ av@@ er , avo vava mur@@ ongi mu@@ d@@ are re@@ B@@ azi re@@ United States , vaka@@ gadz@@ wawo kuti vas@@ hum@@ ire se@@ mut@@ ariri wed@@ unhu panguva iyoyo . +Nd@@ aiz@@ e@@ za kuva mut@@ ariri wed@@ unhu . +P@@ and@@ aka@@ gadz@@ wa , Hama T@@ hom@@ p@@ son ndi@@ vo mut@@ ariri wer@@ u@@ wa wand@@ akatanga kushanda naye . +Mum@@ azuva iwayo , mut@@ ariri wed@@ unhu a@@ ing@@ o@@ dzidz@@ iswa zvishoma . +Ndino@@ yeuka ndi@@ chit@@ i kuna G@@ l@@ or@@ ia , “ Va@@ va kut@@ o@@ fanira kuenda i@@ zvo@@ zvi here ? ” +Pane imwe nguva , ve@@ K@@ K@@ K vaka@@ for@@ a muta@@ un@@ di r@@ at@@ ais@@ hanyira mu@@ T@@ en@@ nes@@ see . +M@@ wedzi w@@ akat@@ evera wacho , t@@ akatanga kush@@ umira pa@@ Bh@@ et@@ eri . +G@@ l@@ or@@ ia aiva d@@ ha@@ im@@ on@@ di pand@@ aka@@ mu@@ ro@@ ora , uye ndizvo zva@@ ach@@ iri +Muna 199@@ 9 ndaka@@ gadz@@ wa kuva nh@@ engo ye@@ D@@ are R@@ inot@@ ungamirira . +Isaya 32 : 17 inoti : “ B@@ asa ro@@ kururama kwe@@ chokwadi ri@@ chava rugare ; uye kubatsira kwo@@ kururama kwe@@ chokwadi , ku@@ chava r@@ uny@@ ar@@ aro noku@@ chenget@@ eka nokus@@ ing@@ ag@@ umi . ” +Ye@@ chipiri , tinofanira kuny@@ enget@@ erera mweya mutsvene waMwari . +Kana tik@@ at@@ eerera zano ra@@ Jesu , tinogona kubva p@@ amba ipapo ti@@ ine rugare rwe@@ du uye ti@@ ine tariro ye@@ kuti ti@@ ch@@ ak@@ wanisa kubatsira munhu wacho pane imwe nguva . +Saka ndaka@@ mu@@ kwa@@ z@@ isa ner@@ ur@@ imi rwa@@ amai vake . +Ak@@ as@@ ham@@ isika ndo@@ kun@@ di@@ bvunza kuti , ‘ Nei mat@@ is@@ hanyira ? ’ +Ndaka@@ mu@@ udza ner@@ ur@@ emek@@ edzo kuti nd@@ aida kuona mum@@ ir@@ ir@@ iri w@@ enyika yacho . +Muk@@ adzi wacho aka@@ muf@@ on@@ era , ndoku@@ bva au@@ ya kuz@@ on@@ di@@ ona ndo@@ kund@@ ik@@ wa@@ z@@ isa ne@@ mutauro we@@ kuny@@ ika yake . +Zva@@ daro akany@@ ats@@ ond@@ it@@ eerera pand@@ ait@@ s@@ anangura mabasa e@@ Zvapupu zvaJehovha ano@@ itwa zvine rugare . ” +‘ Kana iri iya ye@@ pa@@ iv@@ hu r@@ akanaka , iyi ndi@@ vo vaya . . . vano@@ bereka zvib@@ erek@@ o ne@@ kuts@@ ungirira . ’ ​ — R@@ U@@ K@@ A 8 : 15 . +Chii chi@@ chat@@ ibatsira kuramba tichi@@ bereka zvib@@ erek@@ o ne@@ kuts@@ ungirira ? +( Ona mu@@ fananidzo uri p@@ anot@@ ang@@ ira nyaya ino . ) ( b ) Jesu ak@@ ati@@ i nezve@@ kuparidza “ mun@@ haraunda yoku@@ musha kwake ” ? +“ Kut@@ endeka kwavo kun@@ on@@ di@@ kurudzira kuti nd@@ its@@ ung@@ irire uye kuti ndi@@ ve ne@@ ush@@ ingi muushumiri hw@@ angu . ” +M@@ ibvunzo ipi mit@@ atu y@@ ati@@ cha@@ kurukura , uye ne@@ chikonzero ch@@ ei ? +Kunyange zvakadaro , hapana rimwe basa r@@ and@@ inga@@ da kuita . ” +Verenga Johani 15 : 1 - 5 , 8 . +Tino@@ daro p@@ atino@@ ita basa re@@ kuparidza mashoko akanaka e@@ Umambo hwaMwari . +Verenga Ruka 8 : 5 - 8 , 11 - 15 . +Tino@@ bereka sei ‘ zvib@@ erek@@ o ne@@ kuts@@ ungirira ’ ? +Nokuti ndino@@ vap@@ up@@ urira kuti van@@ osh@@ inga@@ irira kush@@ umira Mwari ; asi hava@@ zvi@@ iti maererano ne@@ zivo yakarurama . ” +P@@ at@@ aka@@ zo@@ enda , vanhu va@@ ip@@ fuura va@@ iti , ‘ K@@ o kuro@@ va ku@@ dai ? +Nei w@@ ats@@ unga ku@@ bereka ‘ zvib@@ erek@@ o ne@@ kuts@@ ungirira ’ ? +15 : 8 . +( Verenga Johani 15 : 1 , 8 . ) +Jesu aka@@ udza va@@ apostora vake kuti : “ Baba vangu van@@ oku@@ dzwa ne@@ izvi , kuti mun@@ or@@ amba muchi@@ bereka zvib@@ erek@@ o zvi@@ zhinji . ” +( b ) Un@@ onzwa sei nezve@@ kuva ner@@ o@@ pafadzo ye@@ kuts@@ ven@@ esa zita raMwari ? +Kuno@@ ita kuti ndi@@ ve nechi@@ do che@@ kuramba ndichi@@ par@@ idza . ” +( a ) Chik@@ onzero chipi che@@ kuparidza ch@@ atino@@ wana pana Johani 15 : 9 , 10 ? +T@@ in@@ oratidza sei kuti tino@@ da kuramba tiri mur@@ udo rwa@@ Kristu ? +Mu@@ Bhaibheri , No@@ a anonzi aiva “ mu@@ par@@ idzi . ” +( a ) Mateu 22 : 39 ino@@ taura chikonzero chipi chino@@ ita kuti ti@@ par@@ idz@@ e ? +V@@ anofanira kuwana mukana we@@ kunzwa mashoko akanaka . ” +13 , 14 . ( a ) Johani 15 : 11 ino@@ taura nezve@@ chi@@ po chipi ? +( a ) Johani 14 : 27 ino@@ taura nezve@@ chi@@ po chipi ? +( a ) Johani 15 : 15 ino@@ taura nezve@@ chi@@ po chipi ? +( b ) Va@@ apostora vaig@@ ona sei kuramba vari shamwari dza@@ Jesu ? +( Verenga Johani 15 : 14 - 16 . ) +Tino@@ gona kuva nechi@@ vimbo che@@ kuti Jehovha ano@@ p@@ indura min@@ y@@ engetero yedu ye@@ ku@@ kumbira ku@@ batsirwa ( Ona nd@@ ima 18 ) +Muapostora Petro anotaura nezva@@ Satani D@@ hiy@@ abhorosi “ s@@ es@@ hum@@ ba ino@@ dz@@ vo@@ va , ” uye Johani ano@@ mu@@ d@@ ana kuti “ n@@ yo@@ ka ” uye “ dh@@ ir@@ agoni . ” +T@@ ichi@@ batsirwa navo , tino@@ kwanisa kur@@ wisa mu@@ vengi wedu . +Va@@ ya vano@@ bvuma nh@@ ema idzi vanor@@ arama upenyu hwe@@ kush@@ umira “ P@@ f@@ uma ” pane kush@@ umira Mwari . +Tinofanira kuziva mu@@ vengi wedu , asi h@@ ati@@ faniri ku@@ mut@@ ya . +Kana tik@@ a@@ mur@@ wisa , ach@@ at@@ iti@@ za . +N@@ hum@@ b@@ i dze@@ ku@@ zvidz@@ ivirira n@@ adzo pa@@ kunamata nd@@ edz@@ ipi ? +Uye vabereki vangu nes@@ hamwari dz@@ angu vano@@ ziva kuti vanogona ku@@ vimba n@@ eni . ” +Asi kuita izvi kuno@@ batsira chaizvo . Uno@@ va nechi@@ vimbo , uno@@ s@@ wed@@ era pedyo naJehovha uye un@@ or@@ emek@@ edzwa nevanhu van@@ oku@@ da . ” +B@@ handi re@@ chokwadi ( Ona nd@@ ima 3 - 5 ) +Izvi zvak@@ ambo@@ ita kuti nd@@ is@@ ava nechi@@ vimbo uye ndi@@ ore mwoyo kwe@@ k@@ anguva . ” +Vamwe van@@ da@@ idz@@ idza navo vakat@@ anga kuita zvem@@ adh@@ ir@@ ag@@ i uye vamwe vakas@@ iy@@ ira chikoro pan@@ zira . +Zva@@ is@@ ir@@ ir@@ isa kuona zvaka@@ zo@@ itika kwa@@ vari . +Ano@@ ti : “ Ndino@@ zvi@@ yeuch@@ idza kuti nd@@ akat@@ a@@ kura zita raJehovha uye kuti mi@@ edzo ing@@ ori nzira ya@@ Satani ye@@ kun@@ dir@@ wisa . +P@@ and@@ ino@@ kunda mu@@ edzo , ndino@@ fara . ” +Ch@@ ino@@ v@@ har@@ ir@@ idza chi@@ pf@@ uva cho@@ kururama ( Ona nd@@ ima 6 - 8 ) +Iye zvino ndino@@ farira kupar@@ idzira ve@@ z@@ era r@@ angu . ” +Izvi zvinoita kuti ndi@@ fung@@ e kuti nde@@ zv@@ ipi zv@@ inga@@ va@@ batsira . +Kana ndaka@@ gadzirira , ndino@@ kwanisa kutaura navo nezve@@ zvinhu zvin@@ ony@@ atso@@ va@@ batsira . ” +Ndino@@ va nechokwadi che@@ kuti nd@@ av@@ er@@ enga zvinhu zv@@ ese zvino@@ bud@@ is@@ irwa vechi@@ d@@ iki . +Izvi zvinoita kuti nd@@ ik@@ wan@@ ise kuratidza ve@@ z@@ era r@@ angu zvinhu zvino@@ va@@ batsira zviri muBhaibheri kana pa@@ j@@ w@@ .@@ or@@ g . ” +T@@ s@@ oka dzaka@@ pf@@ eka ku@@ gadzirira ( Ona nd@@ ima 9 - 11 ) +N@@ de@@ zv@@ ipi zvimwe “ zv@@ ombo zvino@@ p@@ isa ” zva@@ ung@@ ak@@ and@@ irwa na@@ Satani ? +Iye zvino ndino@@ gadzirira misangano yacho uye ndino@@ edza kup@@ indura k@@ av@@ iri kana k@@ at@@ atu . +Zvaka@@ oma , asi pand@@ ino@@ zvi@@ ita nd@@ in@@ onzwa kuf@@ ara . +Uye hama ne@@ hanzvadzi dzin@@ on@@ di@@ kurudzira chaizvo . +Nguva dz@@ ese ndino@@ bva pam@@ is@@ angano ndi@@ ine chokwadi che@@ kuti Jehovha an@@ on@@ di@@ da . ” +N@@ ho@@ o huru yo@@ kutenda ( Ona nd@@ ima 12 - 14 ) +N@@ go@@ wan@@ i yor@@ up@@ on@@ eso ( Ona nd@@ ima 15 - 18 ) +Ndaka@@ ona kuti vanhu vano@@ wan@@ zot@@ eerera kana vaka@@ ona kuti un@@ ony@@ ats@@ ot@@ aura zviri muBhaibheri nechi@@ do uye kuti uri ku@@ edza zv@@ ese zva@@ unogona kuti u@@ va@@ bats@@ ire . ” +B@@ akat@@ wa rem@@ weya ( Ona nd@@ ima 19 - 20 ) +T@@ ichi@@ batsirwa naJehovha tinogona kum@@ ira t@@ akasimba pa@@ kur@@ wisana naye . diff --git a/benchmarks/sn-en - Copy/jw300-baseline/test.en b/benchmarks/sn-en - Copy/jw300-baseline/test.en new file mode 100644 index 0000000..782d636 --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/test.en @@ -0,0 +1,2724 @@ +For day and night your hand was heavy upon me . ” +Some of the names in this article have been changed . +Some names in this article have been changed . +This is the greatest and first commandment . ” +It does not belong to man who is walking even to direct his step . ” +“ The whole world is lying in the power of the wicked one . ” +Published by Jehovah’s Witnesses but now out of print . +I am going to make a helper for him , as a complement of him . ” +( Look under BIBLE TEACHINGS > BIBLE QUESTIONS ANSWERED ) +Let your will take place , as in heaven , also on earth . ” +© 2016 Watch Tower Bible and Tract Society of Pennsylvania +Unless otherwise indicated , Scripture quotations are from the modern - language New World Translation of the Holy Scriptures . +“ Anxiety in a man’s heart weighs it down , but a good word cheers it up . ” +Do not be anxious , for I am your God . +© 2017 Watch Tower Bible and Tract Society of Pennsylvania +“ The righteous will possess the earth , and they will live forever on it . ” ​ — Psalm 37 : 29 . +© 2018 Watch Tower Bible and Tract Society of Pennsylvania +I am with you all the days until the conclusion of the system of things . ” +You cannot slave for God and for Riches . ” +Well , see if you can answer the following questions : +( b ) What will we discuss in the next article ? +Moreover , do not call anyone your father on earth , for one is your Father , the heavenly One . +Enter into the joy of your master . ” +( b ) What questions will we consider ? +( b ) What will be discussed in the next article ? +They wanted to make sure I knew how serious my decision was . +Jesus said : “ No man can come to me unless the Father , who sent me , draws him . ” +What will be discussed in the next article ? +I love to be at the Kingdom Hall among the first , and leave among the last , if possible . +I feel an inward joy when talking with God’s people . +( b ) What will we consider in the next article ? +What will we consider in the following article ? +He cured the blind , the lame , the lepers , and the deaf . +As the term “ charitable planning ” implies , these types of donations typically require some planning on the part of the donor . +( b ) What questions will we consider in this article ? +But the greatest one among you must be your minister . +What will we consider in the next article ? +And the support of my spiritual brothers and sisters has brought me much comfort . +If so , you are to be commended . +For I am convinced that neither death nor life nor angels nor governments nor things now here nor things to come nor powers nor height nor depth nor any other creation will be able to separate us from God’s love that is in Christ Jesus our Lord . ” +( b ) What will we consider in the following article ? +( b ) What will we consider in this article ? +But another scroll was opened ; it is the scroll of life . +□ What happens to us when we die ? +What questions will we consider in the next article ? +( b ) What questions will we now consider ? +What will we discuss in the next article ? +Jesus said : “ You must love your neighbor as yourself . ” +( Read Matthew 24 : 37 - 39 . ) +We need to act in harmony with our prayers . +( Read 2 Timothy 3 : 1 - 5 , 13 . ) +( Read Psalm 40 : 8 - 10 . ) +( b ) What are you determined to do ? +( b ) What questions will be considered in this article ? +( Read Psalm 19 : 7 - 11 . ) +( Read Ephesians 5 : 15 , 16 . ) +The spirit itself bears witness with our spirit that we are God’s children . ” +( Read 1 Corinthians 10 : 13 . ) +( Read 2 Chronicles 34 : 1 - 3 . ) +• What is God’s purpose for the earth ? +( Read 1 Timothy 6 : 17 - 19 . ) +( Read James 1 : 5 - 8 . ) +( Read 2 Corinthians 5 : 14 , 15 . ) +( Read Romans 13 : 1 , 2 . ) +( Read 1 Corinthians 2 : 10 . ) +( Read 1 Corinthians 6 : 9 - 11 . ) +Jehovah is the name of God as revealed in the Bible . +( Read 2 Corinthians 13 : 5 . ) +( Read 1 Corinthians 15 : 58 . ) +Dorcas “ abounded in good deeds and gifts of mercy . ” +What will be considered in this article , and why ? +( Read Proverbs 3 : 5 , 6 . ) +( Read Hebrews 11 : 24 - 27 . ) +“ The word of God is alive and exerts power . ” ​ — HEB . +Those verses liken God’s Word to a mirror in which we can see ourselves the way Jehovah sees us . +I began to wonder if what I saw in myself was different from what Jehovah saw . +At first , I resisted this new idea . +I still felt that loving me was too much to expect of Jehovah . +I still doubted that Jehovah could love me , but I began thinking about Jesus ’ ransom sacrifice . +All of a sudden , it dawned on me that Jehovah had been patient with me for so long , showing me that he loved me in so many ways . +It was as if I had been throwing the ransom back at Jehovah . +Have you carefully read the recent issues of The Watchtower ? +( Read 2 Corinthians 1 : 3 , 4 . ) +( Read Titus 2 : 3 - 5 . ) +( Read Romans 7 : 21 - 23 . ) +( Read Isaiah 63 : 11 - 14 . ) +( Read Psalm 1 : 1 - 3 . ) +( Read Romans 7 : 21 - 25 . ) +( Read 2 Peter 2 : 5 . ) +( Read Isaiah 48 : 17 , 18 . ) +( Read Ephesians 4 : 1 - 3 . ) +( Read Hebrews 13 : 7 , 17 . ) +Include a letter stating that the donation is conditional . +Since legal requirements and tax laws vary , it is important to consult qualified tax and legal advisers before choosing the best way to donate . +Real Estate : Salable real estate donated to an entity used by Jehovah’s Witnesses , either by making an outright gift or , in the case of residential property , by reserving a life estate to the donor , who can continue to live in the residence during his or her lifetime . +Wills and Trusts : Property or money may be bequeathed to an entity used by Jehovah’s Witnesses by means of a legally executed will or by specifying the entity as the beneficiary of a trust agreement . +( Read Hebrews 11 : 17 - 19 . ) +In the Bible , mountains can represent kingdoms , or governments . +You fathers , do not be exasperating your children , so that they do not become downhearted . ” +For more information , see chapter 3 of this book , What Does the Bible Really Teach ? , published by Jehovah’s Witnesses +( Read 2 Timothy 1 : 7 . ) +For more information , see chapter 8 of this book , What Does the Bible Really Teach ? , published by Jehovah’s Witnesses +( Read 1 Thessalonians 5 : 1 - 6 . ) +( Read Luke 21 : 1 - 4 . ) +( b ) What questions will we consider in the next article ? +Then let those in Judea begin fleeing to the mountains , let those in the midst of her leave , and let those in the countryside not enter into her . ” +I myself , Jehovah , will speed it up in its own time . ” +( Read Luke 10 : 29 - 37 . ) +What questions will we consider in this article ? +But as for the tree of the knowledge of good and bad , you must not eat from it , for in the day you eat from it you will certainly die . ” +( Read Revelation 14 : 6 , 7 . ) +( Read 1 Thessalonians 2 : 13 . ) +He will judge the lowly with fairness , and with uprightness he will give reproof in behalf of the meek ones of the earth . ” +For more information , see chapter 10 of this book , What Does the Bible Really Teach ? , published by Jehovah’s Witnesses +“ Faith is the assured expectation of what is hoped for . ” ​ — HEB . +Jesus said : “ Where your treasure is , there your heart will be also . ” +“ Happy is the people whose God is Jehovah ! ” ​ — PS . +( Read James 5 : 14 - 16 . ) +He wrote : “ I am fleshly , sold under sin . +( Read Hebrews 10 : 24 , 25 . ) +( Read 2 Corinthians 8 : 13 - 15 . ) +Noah walked with the true God . ” ​ — Gen . +Proverbs 14 : 15 says : “ The naive person believes every word , but the shrewd one ponders each step . ” +For my yoke is kindly , and my load is light . ” +Continue putting up with one another and forgiving one another freely even if anyone has a cause for complaint against another . +Just as Jehovah freely forgave you , you must also do the same . +If , now , your right eye is making you stumble , tear it out and throw it away from you . ” +I will fortify you , yes , I will help you , I will really hold on to you with my right hand of righteousness . ” +WHAT ELSE CAN WE LEARN FROM THE BIBLE ? +Why is it so important to continue to show brotherly love ? +Why did Paul write a letter to the Hebrew Christians ? +( Read Hebrews 10 : 36 - 39 . ) +Why should we be interested in the book of Hebrews ? +What is the yeartext for 2016 , and why is it appropriate ? +That verse has been selected to be the yeartext for 2016 . +Our yeartext for 2016 : “ Let your brotherly love continue . ” ​ — Hebrews 13 : 1 +How do true Christians understand the meaning of brotherly love ? +( a ) What is the most important reason for us to show brotherly love ? +( b ) Give another reason why it is important to strengthen our affection for one another . +Jesus had described how difficult that time would be . +What do we need to do now before the start of the great tribulation ? +( a ) What opportunities do we have to show brotherly love today ? +( b ) Give examples of how Jehovah’s people have shown brotherly love . +How can we “ keep in mind those in prison ” ? +“ Keep in mind those in prison . ” +“ Let marriage be honorable among all . ” +How does contentment help us to show brotherly love ? +Be “ content with the present things . ” +How does being “ of good courage ” help us to show brotherly love ? +How can we strengthen our brotherly love for our elders ? +“ Remember those who are taking the lead . ” +How can we continue to show brotherly love in a greater way ? +What does Christ’s love motivate us to do ? +How does God’s love motivate us to love our brothers ? +Why should God’s forgiveness motivate us to forgive our brothers ? +1 , 2 . ( a ) What does God’s “ indescribable free gift ” include ? +( Read 2 Corinthians 1 : 20 . ) +3 , 4 . ( a ) How do you feel when someone gives you a gift ? +( b ) How might a special gift change your life ? +How is God’s gift of the ransom much greater than any other gift ? +( a ) What blessings of Jehovah’s gift do you look forward to ? +( b ) Name three things God’s gift will motivate us to do . +How should we feel about the love of Christ , and what should it motivate us to do ? +In turn , whoever loves me will be loved by my Father , and I will love him and will clearly show myself to him . ” ​ — John 14 : 21 ; 1 John 5 : 3 . +What questions can we ask ourselves during this Memorial season , and what may the answers motivate us to do ? +( Read 1 Timothy 2 : 9 , 10 . ) +( a ) How does our love for Jehovah and Jesus motivate us in the preaching work ? +( b ) How can our love motivate us to help others in the congregation ? +What else will God’s love move us to do ? +What example did Jesus set in loving others ? +Can you help an older brother or sister in the ministry ? +What can you do to show love for your brothers ? +( Read Luke 14 : 12 - 14 . ) +16 , 17 . ( a ) What should we learn from Jesus ’ illustration of the king and the slaves ? +( b ) After meditating on Jesus ’ illustration , what are you determined to do ? +How did God’s love help one sister to put up with the imperfections of another sister ? +I want to know her when she is perfect . ” +How will God’s “ indescribable free gift ” motivate you ? +[ 1 ] ( paragraph 18 ) Some names in this article have been changed . +What events made Pentecost a special day , and how did those events fulfill what the Scriptures had foretold ? +( a ) Why should we be interested in what happened at Pentecost ? +( b ) What other important event may have happened on the same day many years earlier ? +How do we know that not all those who are anointed receive their anointing in exactly the same way ? +What do all anointed ones receive , and how does this affect them ? +What must each anointed Christian do to receive his reward in heaven ? +Peter explained it this way : “ Therefore , brothers , be all the more diligent to make your calling and choosing sure for yourselves , for if you keep on doing these things , you will by no means ever fail . +In fact , in this way you will be richly granted entrance into the everlasting Kingdom of our Lord and Savior Jesus Christ . ” +8 , 9 . ( a ) Why is it difficult for most people to understand what happens when someone is anointed ? +( b ) How does a person know that he has been invited to go to heaven ? +He told them : “ You did not receive a spirit of slavery causing fear again , but you received a spirit of adoption as sons , by which spirit we cry out : ‘ Abba , Father ! ’ +What does 1 John 2 : 27 mean when it says that an anointed Christian does not need someone else to teach him ? +What might an anointed Christian wonder , but what does he never doubt ? +How does the way a person thinks change when he is anointed by holy spirit , and what causes this change ? +How do anointed ones feel about their life here on earth ? +What does not prove that a person has been anointed by holy spirit ? +How do we know that not all those who have received God’s spirit have been invited to go to heaven ? +17 , 18 . ( a ) What reward do most of God’s servants look forward to today ? +How is Zechariah 8 : 23 being fulfilled ? +1 , 2 . ( a ) What did Jehovah say would happen in our time ? +( b ) What questions will be answered in this article ? +Why is it not possible for us to know for sure who will be part of the 144,000 ? +What warning should anointed ones think seriously about , and why ? +What do anointed Christians not expect , and why ? +Why do you need to be careful about the way you treat those who eat the bread and drink the wine at the Memorial ? +( See the box “ Love ‘ Does Not Behave Indecently . ’ ” ) +Jesus told his disciples : “ All of you are brothers . ” +How can you show that you respect anointed Christians ? +How do we protect ourselves if we avoid “ admiring personalities ” ? +Why should we not worry about the number of those who eat the bread and drink the wine at the Memorial ? +“ Jehovah knows those who belong to him . ” +What does the Bible say about the number of anointed ones who will be on earth when the great tribulation starts ? +What do we need to understand about the 144,000 chosen by Jehovah ? +Only a few anointed Christians in the first century were used to write the Christian Greek Scriptures . +draws us closer to God and to others ? +Even though Jehovah is the Supreme One , what has he invited others to do ? +What important work did Jehovah invite Jesus to do ? +What did Jehovah invite Adam to do , and why ? +For example , he allowed Adam to name the animals . +How did others work with God to accomplish his will ? +In what work can we share , and did Jehovah need to involve us in this work ? +The apostle Paul wrote : “ Working together with him , we also urge you not to accept the undeserved kindness of God and miss its purpose . ” +How did God’s firstborn Son describe how he felt about working beside his Father ? +Why does the preaching work bring us joy ? +What have some said about the joy of working with Jehovah ? +Similarly , Franco , who also serves in Italy , says : “ By means of his Word and his spiritual provisions , Jehovah reminds us every day that he loves us and that everything we do for him is important , even though our efforts may seem like nothing to us . +This is why working along with God makes me happy and gives my life meaning . ” +What relationship existed between Jehovah and Jesus , and why ? +Why does preaching draw us closer to God and to others ? +We learn why it is wise to trust in him and to follow his direction . +Why will we draw even closer to Jehovah and to our brothers in the new world ? +How does one Witness in Australia feel about preaching ? +Joel , who lives in Australia , says : “ The preaching work helps me not to lose touch with reality . +It reminds me of the challenges people are facing and of the benefits I have experienced by applying Bible principles in my life . +The preaching work helps me to try to stay humble ; it gives me an opportunity to rely on Jehovah and on my brothers and sisters . ” +Why does our perseverance in preaching show that God’s spirit is with us ? +How long would you continue to work at such a job ? +How is the preaching of the good news connected with God’s purpose for humankind ? +How is our preaching linked to God’s greatest commandments ? +The second , like it , is this : ‘ You must love your neighbor as yourself . ’ ” +How do you feel about the honor to preach the good news ? +I give you my strength , my Word the Bible , heavenly support , earthly companions , progressive training , and precise instructions at the appropriate time . ’ +What an immense privilege it is to do what Jehovah asks of us and to work together with our God ! ” +THIS MAGAZINE , The Watchtower , honors Jehovah God , the Ruler of the universe . +It comforts people with the good news that God’s heavenly Kingdom will soon end all wickedness and transform the earth into a paradise . +It promotes faith in Jesus Christ , who died so that we might gain everlasting life and who is now ruling as King of God’s Kingdom . +This magazine has been published continuously since 1879 and is nonpolitical . +It adheres to the Bible as its authority . +Bebe had been very close to her father . +The remark came from a well - meaning family friend , but Bebe found it more cutting than comforting . +“ His death wasn’t for the best , ” she kept repeating to herself . +It was clear that when Bebe recounted the incident in a book years later , she was still grieving . +As Bebe came to see , it can take a long time for someone to overcome grief , especially when the bereaved person was very close to the deceased . +In the Bible , death is aptly described as “ the last enemy . ” +It breaks into our lives with irresistible force , often when we are completely unprepared , and it robs us of those we hold dear . +None of us are immune to its ravages . +So it is not surprising if we feel at a loss when it comes to coping with death and its aftermath . +Perhaps you have wondered : ‘ How long does it take to get over grief ? +How can I comfort others who have been bereaved ? +Is there any hope for our loved ones who have died ? ’ +Have you ever had a brief bout with illness ? +As an example , consider how the patriarch Abraham reacted when his wife died . +The Bible says that “ Abraham began to mourn and to weep over Sarah . ” +The expression “ began to ” suggests that it took some time for him to cope with his loss . +He grieved for “ many days , ” and his family members were unable to comfort him . +Several years later , the death of Joseph still weighed heavily on his mind . ​ — Genesis 23 : 2 ; 37 : 34 , 35 ; 42 : 36 ; 45 : 28 . +“ My husband , Robert , died on July 9 , 2008 . +Six years later the pain in my heart is still there . +I don’t think I will ever get over my loss of Rob . ” ​ — Gail , aged 60 . +“ Although I have been without my dear wife for more than 18 years , I still miss her and grieve over my loss . +Whenever I see something in nature that is attractive , my thoughts go to her , and I cannot help wondering how she would have enjoyed seeing what I am seeing . ” ​ — Etienne , aged 84 . +Clearly , such painful and long - lasting feelings are only natural . +Each person grieves in his or her own way , and it would be unwise to judge the way another person responds to tragedy . +At the same time , we may need to hold off from condemning ourselves if our reaction to loss seems excessive . +As we note in the “ Imitate Their Faith ” article in this issue , Isaac was still grieving over the loss of his mother , Sarah , three years after her death . ​ — Genesis 24 : 67 . +For instance , you may find that some will advise you not to cry or show your feelings in any way . +Others may push you to do the opposite and expose all your feelings . +The Bible presents a more balanced view , one that is supported by modern research . +In some cultures it is considered unmanly for a male to cry . +But is there a real need to feel ashamed about shedding tears , even in public ? +Mental - health experts acknowledge that tearfulness is a normal part of grieving . +And grieving may , in time , help you to move on despite the enormity of your loss . +Suppressing grief , however , may do more harm than good . +The Bible lends no support to the notion that it is wrong or unmanly to shed tears of grief . +At the death of his dear friend Lazarus , Jesus openly wept , even though he had the power to bring the dead back to life ! ​ — John 11 : 33 - 35 . +Bouts of anger are often part of grieving , especially in cases of sudden , unexpected death . +There are many reasons why a bereaved person may feel angry , such as when thoughtless and unfounded comments are made by a respected person . +“ I was only 14 years old when my father died , ” explains a South African man named Mike . +“ At the funeral , the Anglican minister said that God needs good people and takes them early . +* This angered me because we desperately needed our father . +Especially in the case of unexpected death , the bereaved person may repeatedly think , ‘ It might not have happened if only I had done this or that . ’ +If you are being plagued by such feelings of guilt and anger , it is important not to bottle up these emotions . +Rather , speak to a friend who will listen and reassure you that such irrational feelings are common to many bereaved ones . +The Bible reminds us : “ A true friend shows love at all times , and is a brother who is born for times of distress . ” ​ — Proverbs 17 : 17 . +The best Friend a bereaved person can have is our Creator , Jehovah God . +Pour out your heart to him in prayer because “ he cares for you . ” +Moreover , he promises that all who do so will have their thoughts and feelings soothed by “ the peace of God that surpasses all understanding . ” +Also , allow God to help you heal by means of his consoling Word , the Bible . +Having such thoughts to ponder over may be especially helpful at night when you are alone and find it hard to sleep . ​ — Isaiah 57 : 15 . +Recently , a 40 - year - old man , whom we will call Jack , lost his beloved wife to cancer . +“ When I pray to Jehovah , ” he explains , “ I never feel alone . +I often wake up during the night and cannot get back to sleep . +After reading and meditating on comforting thoughts from the Scriptures and then pouring out the feelings of my heart in prayer , I sense a calmness and a transcending peace come over me , putting my mind and heart at rest and enabling me to sleep . ” +A young woman named Vanessa lost her mother to illness . +She too has experienced the power of prayer . +“ In my most difficult times , ” she says , “ I would just call on God’s name and break down in tears . +Jehovah listened to my prayers and always gave me the strength I needed . ” +Some bereavement counselors advise those who are struggling with grief to get involved in helping others or to volunteer their time in some community service . +Doing so can bring joy and may ease a person’s grief . +Many bereaved Christians have found that working to help others has brought them great comfort . ​ — 2 Corinthians 1 : 3 , 4 . +God feels for you in your pain . ​ — Psalm 55 : 22 ; 1 Peter 5 : 7 . +God patiently listens to the prayers of his servants . ​ — Psalm 86 : 5 ; 1 Thessalonians 5 : 17 . +God misses people who have died . ​ — Job 14 : 13 - 15 . +God promises to resurrect the dead . ​ — Isaiah 26 : 19 ; John 5 : 28 , 29 . +Have you ever felt helpless when someone near to you was grieving over the loss of a loved one ? +Sometimes we may feel unsure of what to say or do ​ — so we wind up saying and doing nothing . +But there are practical , helpful things that we can do . +Often , all that is needed is your presence along with a simple expression , such as “ I am so sorry . ” +In many cultures , giving the person a hug or a gentle squeeze of the arm is an effective way to show you care . +If the bereaved one wants to talk , listen sympathetically . +Best of all , do something for the bereaved family , perhaps performing a chore the grieving one has not been able to care for , such as cooking a meal , caring for the children , or helping with funeral arrangements if that is desired . +Such actions may speak louder than the most eloquent words . +In time , you may be moved to talk about the deceased , perhaps focusing on some good qualities or happy experiences . +Such conversation may even bring a smile to the bereaved person’s face . +For example , Pam ​ — who lost her husband , Ian , six years ago — ​ says : “ People sometimes tell me good things that Ian did that I never knew about , and that makes my heart feel good . ” +Researchers report that many bereaved people receive a lot of initial help but that their needs are soon forgotten as friends get busy again with their own lives . +Therefore , make a point of contacting a bereaved friend on a regular basis after the loss . +* Many grieving ones deeply appreciate this opportunity to relieve themselves of prolonged feelings of grief . +Consider the example of Kaori , a young Japanese woman who was devastated by the loss of her mother followed by the loss of her older sister 15 months later . +Thankfully , she received ongoing support from loyal friends . +One named Ritsuko is much older than Kaori and offered to be her close friend . +“ To be honest , ” says Kaori , “ I wasn’t happy about that . +I didn’t want anyone to take the place of my mother , and I didn’t think that anyone could . +However , because of the way Mama Ritsuko treated me , I came to feel close to her . +Every week , we went out in the evangelizing work together and went to Christian meetings together . +She invited me to have tea with her , brought me meals , and wrote me letters and cards many times . +Mama Ritsuko’s positive attitude had a good influence on me . ” +Twelve years have passed since Kaori’s mother died , and today she and her husband are full - time evangelizers . +“ Mama Ritsuko , ” Kaori says , “ continues to show her concern . +When I go back home , I always visit her and enjoy her upbuilding association . ” +Another example of someone who benefited from ongoing support is Poli , one of Jehovah’s Witnesses in Cyprus . +Poli had a kind husband , Sozos , who set a good example as a Christian shepherd by often inviting orphans and widows to their home for association and a meal . +Sadly , at the age of 53 , Sozos died of a brain tumor . +There , they began associating with a congregation of Jehovah’s Witnesses . +“ The friends in my new congregation , ” recalls Poli , “ did not know anything about our past and our difficult circumstances . +But that did not stop them from approaching us and embracing us with their kind words and practical help . +How precious that help was , especially at that time , when my son needed his father most ! +Those taking the lead in the congregation showed a great deal of personal interest in Daniel . +One in particular made sure to include Daniel when enjoying association with friends or when going out to play ball . ” +Both mother and son are doing well today . +To be sure , there are many ways we can offer practical help and comfort to those who mourn . +The Bible also comforts us by means of a thrilling hope for the future . +Some have even marked the date of the death on their calendar as a reminder to offer comfort when it may be most needed ​ — on or near the date of the loss . +You may recall that Gail , mentioned earlier in this series , doubts whether she will ever get over the death of her husband , Rob . +However , she is looking forward to seeing him again in God’s promised new world . +My feelings really go out to people who have lost someone they love but who are not aware of this hope of seeing their loved one again . ” +Soon , God will do just that ​ — for Job and countless others — ​ when this earth is transformed into a paradise . +“ There is going to be a resurrection , ” the Bible confirms at Acts 24 : 15 . +“ Do not be amazed at this , ” Jesus assures us , “ for the hour is coming in which all those in the memorial tombs will hear his voice and come out . ” +He will have the prospect of regaining “ his youthful vigor , ” and his flesh will forever remain “ fresher than in youth . ” +The same will happen to all who respond with appreciation to God’s merciful provision of a resurrection to life on earth . +If you have suffered the loss of someone dear to you , the information we have discussed may not completely take away your grief . +But by meditating on God’s promises found in the Bible , you can find real hope and the strength to keep going . ​ — 1 Thessalonians 4 : 13 . +Would you like to learn more about how to cope with grief ? +Or do you have related questions , such as “ Why does God allow evil and suffering ? ” +Please visit our website , jw.org , to see how the Bible gives comforting , practical answers . +“ God . . . will wipe out every tear from their eyes , and death will be no more . ” ​ — Revelation 21 : 3 , 4 . +This issue of The Watchtower discusses how God will fulfill that promise and what it can mean for you . +I told the officer that I had already been in prison because I would not fight . +I WAS born in 1926 in Crooksville , Ohio , in the United States . +Father and Mother were not religious , but they told us eight children to go to church . +Margaret Walker ( second sister from the left ) helped me learn the truth +About that time , a neighbor named Margaret Walker , one of Jehovah’s Witnesses , began visiting my mother and talking to her about the Bible . +But I kept trying to listen to their discussions . +After a couple more visits , Margaret asked me , “ Do you know what God’s name is ? ” +I said , “ Everyone knows that ​ — it’s God . ” +She said , “ Get your Bible and look up Psalm 83 : 18 . ” +I did , and I discovered that God’s name is Jehovah . +I ran out to my friends and told them , “ When you get home tonight , look up Psalm 83 : 18 in the Bible and see what God’s name is . ” +You might say I started witnessing right away . +I studied the Bible and got baptized in 1941 . +Soon afterward , I was assigned to conduct a congregation book study . +I encouraged my mother and siblings to come , and they all began attending the book study that I conducted . +Sometimes when she was on her way , he chased after her and pulled her back into the house . +But she would just run out the other door and go to the meeting . +I also told the officials that I would not become a soldier . +In court two weeks later , the judge said : “ If it were up to me , I’d give you a life sentence . +I replied : “ Your Honor , I should have been classified as a minister . +Everyone’s doorstep is my pulpit , and I have preached the good news of the Kingdom to many people . ” +The judge told the jury : “ You are not here to decide whether this young man is a minister or not . +You are here to decide whether he reported for induction into the army or not . ” +I prayed to Jehovah : “ I cannot stay in a cell for five years . +The next day , the guards let me out . +I walked over to a tall , broad - shouldered prisoner , and we stood there looking out a window . +He asked me , “ What are you in for , Shorty ? ” +I said , “ I am one of Jehovah’s Witnesses . ” +I said , “ Jehovah’s Witnesses don’t go to war and kill people . ” +I said , “ No , it doesn’t . ” +Then he said , “ For 15 years I was in another prison , where I read some of your literature . ” +I was among the Witnesses imprisoned for neutrality at Ashland , Kentucky +That is how we preached in an organized way . +I worried about my family because Dad had told me , “ If I can get rid of you , I can handle the rest . ” +After my release , I had a pleasant surprise . +I said , “ That’s fine , but I am not going into the army . ” +I quoted 2 Timothy 2 : 3 and said , “ I am already a soldier of Christ . ” +After a long silence , he said , “ You can leave . ” +Soon afterward , I attended the Bethel meeting at a convention in Cincinnati , Ohio . +I also worked at Assembly Halls in New York City . +I have made many friends at Bethel and in the congregation . +I have learned a little Mandarin Chinese and enjoy approaching Chinese people on the street . +Some mornings I place 30 or 40 magazines with interested ones . +Preaching to the Chinese people in Brooklyn , New York +I have even made a return visit in China ! +She took them and told me that her name was Katie . +After that , whenever she saw me , Katie came over to talk to me . +I taught her the names of fruits and vegetables in English , and she repeated the words after me . +I also explained Bible texts to her , and she accepted the Bible Teach book . +After some weeks , though , she disappeared . +The next week , she handed me her cell phone and said , “ You talk to China . ” +I said , “ I don’t know anybody in China . ” +But she insisted , so I took the phone and said , “ Hello , this is Robison . ” +The voice at the other end said , “ Robby , this is Katie . +Please teach her the way you taught me . ” +I said , “ Katie , I will do the best I can . +Thanks for letting me know where you are . ” +Soon afterward , I spoke to Katie’s sister for the last time . +If it is God’s will , my family members and friends who have died will return to life in the new world . +While this article was being prepared for publication , Corwin Robison died faithful to Jehovah . +How did knowledge and experience strengthen Abraham’s faith ? +What did Abraham do to strengthen his friendship with God ? +How can you imitate Abraham in building a friendship with Jehovah ? +1 , 2 . ( a ) How do we know that humans can become God’s friends ? +3 , 4 . ( a ) Describe what was likely Abraham’s greatest test of faith . ( b ) Why was Abraham willing to sacrifice Isaac ? +How may Abraham have learned about Jehovah , and how did that knowledge make him feel ? +How can we gain knowledge and experience that will strengthen our friendship with Jehovah ? +9 , 10 . ( a ) What is needed for a friendship to become stronger ? +( b ) What shows that Abraham cherished and strengthened his friendship with Jehovah ? +Abraham cherished and maintained his friendship with Jehovah . +Why was Abraham concerned about Sodom and Gomorrah , and how did Jehovah help him ? +12 , 13 . ( a ) How did Abraham’s knowledge and experience help him later ? +( b ) What shows that Abraham had confidence in Jehovah ? +What challenges do you face in serving Jehovah , and how may Abraham’s example help you ? +Abraham and Sarah come to know and worship Jehovah +Abraham dies “ at a good old age , old and satisfied ” +Why may we be sure that Abraham never regretted his loyal obedience to Jehovah ? +What is your determination , and what will we consider in the following article ? +May each of us be determined to imitate the faith of Abraham . +( Read Hebrews 6 : 10 - 12 . ) +In the following article , we will consider three more examples of faithful ones who became close friends of God . +What can we learn from the friendship with God that Ruth enjoyed ? +Why was King Hezekiah a close friend of Jehovah ? +What qualities made Jesus ’ mother , Mary , a friend of Jehovah God ? +1 - 3 . ( a ) Why can we be sure that we can become God’s friends ? +( b ) What individuals will we consider in this article ? +What difficult decision did Ruth have to make , and why was making it so hard ? +( a ) What wise choice did Ruth make ? +( b ) Why did Boaz speak of Ruth as seeking refuge under Jehovah’s wings ? +What might help those who hesitate to dedicate their lives to Jehovah ? +9 , 10 . ( a ) Why might Hezekiah easily have become bitter ? +( b ) Why should we not become bitter against God ? +( c ) Why should we not think that our background determines the type of person we will become ? +Many young people accept the truth despite their family background ( See paragraphs 9 , 10 ) +What made Hezekiah one of Judah’s best kings ? +( Read 2 Kings 18 : 5 , 6 . ) +Like Hezekiah , how have many today proved to be Jehovah’s friends ? +Why might Mary’s assignment have seemed too difficult , yet how did she respond to Gabriel’s words ? +What shows that Mary was a good listener ? +In both cases , Mary listened , remembered , and thought carefully about what she had heard . ​ — Read Luke 2 : 16 - 19 , 49 , 51 . +What can we learn about Mary from the way she spoke ? +In what ways can we imitate Mary’s faith ? +As we imitate the Bible’s outstanding examples of faith , of what may we be assured ? +THINK about the happiest day of your life . +Was it when you got married or when your first child was born ? +Very likely , you have experienced much joy in serving Jehovah since your baptism . +What reasons do we have for continuing to serve Jehovah with joy ? +Remember that Jesus said : “ Come to me , all you who are toiling and loaded down , and I will refresh you . +Take my yoke upon you and learn from me , for I am mild - tempered and lowly in heart , and you will find refreshment for yourselves . +We serve our Life - Giver , the happy God . +Consider Héctor , who served Jehovah as a traveling overseer for 40 years . +He says : “ Although it is sad to see my wife’s health gradually deteriorate and it has been challenging to care for her , I have not allowed this to rob me of my joy in serving the true God . +Knowing that I owe my life to Jehovah , who created man for a purpose , is reason enough to love him deeply and serve him wholeheartedly . +I strive to stay active in the preaching work , and I try to keep the Kingdom hope foremost in my mind so as not to lose my joy . ” +Jehovah has provided the ransom sacrifice , making it possible for us to have a joyful life . +Indeed , “ God loved the world so much that he gave his only - begotten Son , so that everyone exercising faith in him might not be destroyed but have everlasting life . ” +Jesús simplified his life and served Jehovah joyfully for years +I did it just to make more money . +Then I learned about Jehovah and how he had given his dear Son for mankind . +I had an intense desire to serve him . +So I dedicated my life to Jehovah , and after having worked for the company for 28 years , I decided to quit and take up the full - time ministry . ” +Do you remember what your life was like before you came to know Jehovah ? +The apostle Paul reminded Christians in Rome that they “ were once the slaves of sin ” but had become “ slaves to righteousness . ” +“ The happiest years of my life have been those spent serving Jehovah . ” ​ — Jaime +“ Little by little , I discovered the existence of a loving Father and merciful God , ” Jaime says . +“ Keeping Jehovah’s righteous standards has been a protection for me . +Had I not changed , I might have been killed , as some of my former boxing friends were . +The happiest years of my life have been those spent serving Jehovah . ” +How was King Saul’s son Jonathan loyal to Jehovah ? +How can we be loyal to God when we feel that someone who has authority does not deserve our respect ? +How can we be loyal to Jehovah if others misunderstand us or treat us unfairly ? +Why is Jonathan’s friendship with David a remarkable example of loyalty ? +What was more important to Jonathan than being loyal to David , and how do we know ? +( a ) What will make us truly happy and satisfied ? +Why was it difficult for the people of Israel to be loyal to God while Saul was king ? +What shows that Jonathan stayed loyal to Jehovah ? +How are we being loyal to God when we respect those who have authority ? +How did Jonathan know to whom he should be loyal ? +How does our love for God help us decide to be loyal to him ? +How can loyalty to God help us to cope with family problems ? +If a brother treats us unfairly , how should we react ? +In what situations must we be loyal to God and not be selfish ? +[ 1 ] ( paragraph 9 ) Some names have been changed . +Why was Jonathan’s reaction to David so different from Abner’s ? +What qualities will help us to be loyal to God , and how ? +How did David show that he was loyal to God ? +( a ) How was David an example of loyalty to God ? +( b ) What other examples will we consider ? +What lesson do we learn from Abishai’s mistake ? +Although it is natural to be loyal to our family and friends , why must we be careful ? +How did one sister stay loyal to God in a difficult situation ? +What qualities will help us to be loyal to God ? +How can we benefit from Bible accounts about Abner , Absalom , and Baruch ? +But you are seeking great things for yourself . +Show why we cannot be loyal to God when we are selfish . +After many prayers and tears , that is what I did . +How did Nathan stay loyal to both God and David when David sinned ? +How can you be loyal to both Jehovah and your friend or relative ? +Why did Hushai need courage to be loyal to God ? +Why do we need courage to be loyal ? +I prayed for courage to stick to my decision . +Now their attitude has softened , and I can visit them regularly . ” ​ — Read Proverbs 29 : 25 . +[ 1 ] ( paragraph 7 ) Some names have been changed . +COVER SUBJECT | WHY DID JESUS SUFFER AND DIE ? +In the spring of 33 C.E . , Jesus the Nazarene was executed . +He had been falsely charged with sedition , savagely beaten , and nailed to a stake . +But God raised him back to life , and 40 days later , Jesus ascended to heaven . +This extraordinary account comes to us from the four Gospels of the Christian Greek Scriptures , commonly called the New Testament . +On the other hand , if those events really did happen , then there is a bright future for mankind , one in which you can share . +So , are the Gospel accounts fact or fiction ? +Unlike fanciful legends , the Gospel writings reflect painstaking accuracy and attention to detail . +For example , they abound with names of real places , many of which can be visited today . +They tell about real people , whose existence has been corroborated by secular historians . ​ — Luke 3 : 1 , 2 , 23 . +Jesus himself is mentioned by secular writers of the first and second centuries . +* His manner of death , as described in the Gospels , agrees with Roman executional methods of the time . +Moreover , events are related in a factual and candid manner ​ — even portraying some of Jesus ’ disciples unfavorably . +All these factors strongly indicate that the Gospel writers were honest and accurate in what they wrote about Jesus . +While it is generally accepted that Jesus lived and died , some would question his resurrection . +Even his apostles did not believe the initial report of his having returned to life . +All doubt was removed , however , when they and other disciples saw the resurrected Jesus on separate occasions . +In fact , in one case , there were more than 500 eyewitnesses present . ​ — 1 Corinthians 15 : 6 . +At the risk of being arrested and killed , the disciples courageously proclaimed Jesus ’ resurrection to all ​ — even to the very ones who had executed him . +Would so many disciples have been so bold if they were not absolutely sure that Jesus had really been resurrected ? +In fact , the reality of the resurrection of Jesus is the driving force behind the impact that Christianity has had on the world both then and now . +The Gospel accounts of Jesus ’ death and resurrection bear all the necessary marks of an authentic historical record . +Carefully reading them will convince you that these events really happened . +Your conviction can be further strengthened when you understand why they took place . +Tacitus , born about 55 C.E . , wrote that “ Christus , from whom the name [ Christians ] had its origin , suffered the extreme penalty during the reign of Tiberius at the hands of one of our procurators , Pontius Pilatus . ” +Jesus is also referred to by Suetonius ( first century ) ; Jewish historian Josephus ( first century ) ; and Pliny the Younger , governor of Bithynia ( early second century ) . +Then , too , it is unlikely that Jesus ’ many opposers would write anything that would lend credibility to the reports about him . +Regarding Jesus ’ resurrection , Peter , one of his apostles , explained : “ God raised this one up on the third day and allowed him to become manifest , not to all the people , but to witnesses appointed beforehand by God , to us , who ate and drank with him after his rising from the dead . ” +Matthew’s Gospel tells us that when the religious enemies heard reports of Jesus ’ resurrection , they schemed to suppress them . ​ — Matthew 28 : 11 - 15 . +Does this mean that Jesus wanted his resurrection to be kept secret ? +No , for Peter went on to say : “ He ordered us to preach to the people and to give a thorough witness that this is the one decreed by God to be judge of the living and the dead . ” +True Christians have done and are doing just that . ​ — Acts 10 : 42 . +“ Through one man [ Adam ] sin entered into the world and death through sin . ” ​ — Romans 5 : 12 +What would you say if you were asked , “ Do you want to live forever ? ” +Most people would probably say that they want to but that they feel it is unrealistic to consider it . +Death is a normal part of life , they say , the natural outcome of our existence . +Suppose , though , that the question were turned around and you were asked , “ Are you ready to die ? ” +Under normal circumstances , most people would answer no . +The Bible shows that God created humans with the desire and the will to live . +In fact , it says that “ he has even put eternity in their heart . ” ​ — Ecclesiastes 3 : 11 . +The reality , though , is that humans do not live forever . +Furthermore , has God done anything to remedy the situation ? +The Bible’s answers are heartening , and they have a direct bearing on why Jesus suffered and died . +The first three chapters of the Bible book of Genesis tell us that God set before the first human couple , Adam and Eve , the prospect of unending life and told them what they would have to do to gain it . +Then the account describes how they failed to obey God and lost that prospect . +The story is told simply ​ — so simply that some are quick to dismiss it as folklore . +But Genesis , like the Gospels , gives every indication of being a factual , historical record . +What has been the result of Adam’s failure to obey ? +The Bible answers this way : “ Through one man [ Adam ] sin entered into the world and death through sin , and so death spread to all men because they had all sinned . ” +He thus lost the prospect of endless life and eventually died . +Being his descendants , we have inherited his sinful condition . +But has God done anything to remedy the situation ? +Yes , God made arrangements to redeem , or buy back , what Adam had lost for his descendants , namely , the prospect of endless life . +“ The wages sin pays is death , ” says the Bible at Romans 6 : 23 . +This means that death is the consequence of sin . +Likewise , we sin and are therefore subject to sin’s wages , death . +But we were born in this sinful condition through no fault of our own . +So God lovingly sent his Son , Jesus , to accept ‘ the wages of sin ’ for us . +Jesus ’ death opens the way to a happy , endless life +Since one man , the perfect man Adam , brought sin and death on us through disobedience , a perfect man obedient even till death was needed to release us from that burden . +The Bible explains it this way : “ Just as through the disobedience of the one man many were made sinners , so also through the obedience of the one person many will be made righteous . ” +He left heaven , became a perfect man * , and died in our behalf . +As a result , it is possible for us to have a righteous standing with God and gain the prospect of endless life . +Why , though , was it necessary for Jesus to die to accomplish this ? +Could not Almighty God have simply issued a decree that Adam’s descendants be allowed to live forever ? +Had God set justice aside in this instance , people might have wondered whether he would do so in other matters as well . +For example , would he be fair in determining who among Adam’s offspring qualify for eternal life ? +Could he be trusted to keep his promises ? +God’s adherence to justice in working out our salvation is assurance to us that he will always do what is right . +By Jesus ’ sacrificial death , God opened the way to endless life in Paradise on earth . +Note Jesus ’ words as recorded at John 3 : 16 : “ God loved the world so much that he gave his only - begotten Son , so that everyone exercising faith in him might not be destroyed but have everlasting life . ” +Jesus ’ death is thus an expression not only of God’s unfailing justice but , more specially , of his great love for humans . +However , why did Jesus have to suffer and die in the painful way that was described in the Gospels ? +By subjecting himself to the extreme test and remaining faithful , Jesus refuted once and for all the Devil’s claim that humans would not remain loyal to God when under trial . +That claim might have seemed valid after Satan induced perfect Adam to sin . +But Jesus ​ — who was Adam’s perfect equivalent — ​ remained obedient despite severe suffering . +He thus proved that Adam too could have obeyed God if he had chosen to do so . +By enduring under trial , Jesus left us a model to follow . +God rewarded his Son’s perfect obedience , granting Jesus immortal life in heaven . +Jesus indicated what we need to do when he said : “ This means everlasting life , their coming to know you , the only true God , and the one whom you sent , Jesus Christ . ” ​ — John 17 : 3 . +The publishers of this magazine invite you to learn more about Jehovah , the true God , and about his Son , Jesus Christ . +Jehovah’s Witnesses in your community will be happy to assist you . +You can also receive helpful information by visiting our website , www.jw.org . +See “ The Historical Character of Genesis , ” in Insight on the Scriptures , Volume 1 , page 922 , published by Jehovah’s Witnesses . +God’s transfer of his Son’s life from heaven to the womb of Mary caused conception , and God’s holy spirit shielded Jesus from inheriting imperfection from Mary . ​ — Luke 1 : 31 , 35 . +On the night before he surrendered his life , Jesus gathered with his faithful apostles and instituted the Memorial of his death . +He said to them : “ Keep doing this in remembrance of me . ” +In obedience to that command , Jehovah’s Witnesses worldwide gather annually on the anniversary of Jesus ’ death . +This year , the Memorial of Jesus ’ death falls on Wednesday , March 23 , after sundown . +Attendance is free ; no collections will be taken . +Please ask Jehovah’s Witnesses in your area for the time and location . +Or you may consult our website , www.jw.org . +WOULD YOU SAY that the Devil is . . . +A symbol of the evil inside a person ? +The Devil conversed with and “ tempted ” Jesus . +The Devil was originally a holy angel , but “ he did not stand fast in the truth . ” +He became a liar and rebelled against God . +Other angels joined Satan’s rebellion . ​ — Revelation 12 : 9 . +The Devil blinds many people to his existence . ​ — 2 Corinthians 4 : 4 . +SOME PEOPLE SAY that control by the Devil is a hoax , while others dread being possessed by evil spirits . +The Devil exerts great influence over mankind , but he does not control every human . +The Devil uses deception to increase his influence . ​ — 2 Corinthians 11 : 14 . +Wicked spirits can in some cases take control of people . ​ — Matthew 12 : 22 . +With God’s help , you can successfully “ oppose the Devil . ” ​ — James 4 : 7 . +“ Who of you wanting to build a tower does not first sit down and calculate the expense to see if he has enough to complete it ? ” ​ — LUKE 14 : 28 . +What is maturity , and how did Daniel display that quality ? +How can you tell if the decision to get baptized comes from your heart ? +What is dedication , and how is it related to baptism ? +1 , 2 . ( a ) What gives God’s people joy today ? +( b ) How can Christian parents and elders help young ones to understand the meaning of baptism ? +I would like to ask you , ‘ Why do you want to take that step ? ’ ” +( Read Luke 14 : 27 - 30 . ) +( a ) What do the words of Jesus and Peter teach us about the importance of baptism ? +( b ) What questions will we consider , and why ? +( 2 ) Do I have a personal desire to do so ? +( 3 ) Do I understand what it means to be dedicated to Jehovah ? +4 , 5 . ( a ) Why is baptism not for older people only ? +( b ) What does it mean for a Christian to be mature ? +We read at Proverbs 20 : 11 : “ Even a child is known by his actions , whether his behavior is pure and right . ” +6 , 7 . ( a ) Describe the challenges Daniel had when he was in Babylon . ( b ) How did Daniel prove to be mature ? +A mature young person does not act like a friend of God at the Kingdom Hall but a friend of the world at school ( See paragraph 8 ) +He does not act like a friend of God at the Kingdom Hall but a friend of the world at school . +9 , 10 . ( a ) How might a young person benefit from thinking about how he or she has reacted to recent tests of faith ? +11 , 12 . ( a ) A person who is thinking about getting baptized needs to be sure of what ? +( b ) What will help you to keep the right view of Jehovah’s arrangement of baptism ? +How can you tell whether the decision to get baptized comes from your heart ? +He hands you the title and says : “ The car is yours . ” +18 , 19 . ( a ) How do the expressions of Rose and Christopher illustrate that being baptized is a privilege that leads to blessings ? +( b ) How do you feel about the privilege of baptism ? +My life is filled with satisfying work for Jehovah and his organization . ” +What does it mean to be “ persuaded to believe ” ? +What are “ holy acts of conduct ” and “ deeds of godly devotion ” ? +How can meditating on the ransom help you build your appreciation for Jehovah ? +1 , 2 . ( a ) Explain why baptism is a serious step . ( b ) What should a person be sure of before getting baptized , and why ? +What lesson can young ones learn from the example of Timothy ? +Describe how the online series of study guides , “ What Does the Bible Really Teach ? , ” can help you strengthen your conviction . +One teenage sister said : “ Before I decided to get baptized , I studied the Bible and saw that this is the true religion . +And each day that I live , that conviction gets stronger . ” +Why is it reasonable to expect that a baptized Christian would have actions in line with his faith ? +The Bible says : “ Faith by itself , without works , is dead . ” +Explain the expression “ holy acts of conduct . ” +For example , think about the past six months . +What are some “ deeds of godly devotion , ” and how should you view them ? +What provision can help you to perform “ deeds of godly devotion , ” and how have some young ones benefited from this provision ? +“ What do you include in your personal study ? ” +“ Do you engage in the ministry even if your parents do not ? ” +A young sister named Tilda said : “ I used the worksheet to set goals . +One by one I reached those goals , and I was ready for baptism about a year later . ” +Would you continue to serve Jehovah even if your parents did not ? +Explain why dedication should be a personal decision . +16 , 17 . ( a ) What should motivate a person to become a Christian ? +( b ) How can appreciation for the ransom be illustrated ? +Jesus answered : “ You must love Jehovah your God with your whole heart and with your whole soul and with your whole mind . ” +( Read 2 Corinthians 5 : 14 , 15 ; 1 John 4 : 9 , 19 . ) +18 , 19 . ( a ) Why should you not fear belonging to Jehovah ? +( b ) How does serving Jehovah make your life better ? +What can a young person do in order to progress toward dedication and baptism ? +“ How Can I Improve in My Prayers ? ” ​ — November 2008 +“ How Can I Make Bible Reading Enjoyable ? ” ​ — April 2009 +“ Who Am I ? ” ​ — October 2011 +“ How Can I Enjoy Studying the Bible ? ” ​ — February 2012 +“ Why Go to Christian Meetings ? ” ​ — April 2012 +How are we united as we preach the good news ? +What are some things we can do to help our congregation to be united ? +How can a husband and wife stay united ? +From the beginning , what has characterized God’s works ? +( a ) What was noteworthy about the early Christian congregation ? +( b ) What questions will we address ? +( Read 1 Corinthians 12 : 4 - 6 , 12 . ) +As we work together , what are we able to do ? +8 , 9 . ( a ) What illustration did Paul use to teach Christians to stay united ? +( b ) How can we cooperate in the congregation ? +( Read Ephesians 4 : 15 , 16 . ) +How do ministerial servants help the congregation to be united ? +What can help all in the family to cooperate with one another ? +If your husband or wife is not serving Jehovah , what can you do to keep your marriage strong ? +How can older married ones help younger ones ? +What do God’s united servants look forward to ? +Jehovah provided what guidance in the days of Noah and Moses ? +What new guidance did God provide for Christians ? +How can we show that we are looking to God for guidance ? +1 , 2 . ( a ) Many lives have been saved by what warning ? +How did the human family get on a path leading to death ? +( a ) Why were additional guidelines needed after the Flood ? +( b ) How did new circumstances reveal God’s thinking ? +What will we now examine , and why ? +Why was it necessary for God’s people to obey the laws given through Moses , and what attitude did the Israelites need to have ? +( a ) Explain why Jehovah gave directions to his people . ( b ) How was the Law a guardian for Israel ? +Why should we be guided by the principles of the Mosaic Law ? +What new circumstances made new direction from God necessary ? +Why were new laws given to the Christian congregation , and how were these different from those given to the Israelites ? +Truly , “ God is not partial , but in every nation the man who fears him and does what is right is acceptable to him . ” +What are two aspects of Christian life that would be affected by “ the law of the Christ ” ? +13 , 14 . ( a ) What is involved in Jesus ’ “ new commandment ” ? +( b ) What do we learn from the example that Jesus set ? +( Read John 13 : 34 , 35 . ) +What new circumstances do we now have , and how does God guide us ? +How should we respond to the guidance being given ? +Do you view these directions as guidance from God ? +What scrolls will be opened , and with what result ? +It also explains the work that endurance must complete in each of us . +How can the example of Jephthah and his daughter help us resist worldly influences ? +What Bible principles do you find helpful in resolving personal conflicts ? +How has this article encouraged you to make sacrifices for the Kingdom ? +What challenge did Jephthah and his daughter face ? +Why can the example of Jephthah and his daughter be helpful for us today ? +4 , 5 . ( a ) What command did Jehovah give the Israelites when they entered the Promised Land ? +( b ) According to Psalm 106 , what happened to the Israelites because of their disobedience ? +What worldly influences exist today , and what must we do ? +( a ) What did Jephthah’s own people do to him ? +8 , 9 . ( a ) What principles in the Mosaic Law may have helped Jephthah ? +( b ) What was of greatest importance to Jephthah ? +How can we allow divine principles to help us act as Christians today ? +What vow did Jephthah make , and what did this involve ? +What do Jephthah’s words recorded at Judges 11 : 35 reveal about his faith ? +He should do everything he vowed he would do . ” +What vow have many of us made , and how can we prove faithful ? +How did Jephthah’s daughter react to her father’s promise ? +( a ) How can we imitate the faith of Jephthah and his daughter ? +( b ) How do the words at Hebrews 6 : 10 - 12 encourage you to be self - sacrificing ? +What have we learned from the Bible account about Jephthah and his daughter , and how can we imitate them ? +What does it mean to “ let endurance complete its work ” ? +1 , 2 . ( a ) What can we learn from the endurance of Gideon and his 300 men ? +( See opening picture . ) ( b ) According to Luke 21 : 19 , why is endurance so important ? +Our enemies include Satan , his world , and our own imperfections . +What can we learn from those who have endured ? +Why can we say that endurance is motivated by love ? +( Read 1 Corinthians 13 : 4 , 7 . ) +Love for our brothers helps us to endure their imperfections . +Why is Jehovah the best one to help us endure ? +Jehovah is “ the God who supplies endurance and comfort . ” +As promised in the Bible , how may Jehovah “ make the way out ” of trials for us ? +Illustrate why we need spiritual food to endure . +8 , 9 . ( a ) According to Job 2 : 4 , 5 , what is involved when we face trials ? +( b ) When you face trials , what invisible scene might you imagine ? +Has Satan changed since he made that claim ? +Why should we consider the experiences of “ those who have endured ” ? +What do we learn from the example of the cherubs posted at Eden ? +How was Job able to endure his trials ? +Job lived “ a long and satisfying life . ” ​ — Job 42 : 10 , 17 . +According to 2 Corinthians 1 : 6 , how did the endurance of Paul help others ? +( Read 2 Corinthians 1 : 6 . ) +15 , 16 . ( a ) What “ work ” must endurance complete ? +( b ) Give examples of how we can “ let endurance complete its work . ” +When we endure trials , our Christian personality becomes more complete ( See paragraphs 15 , 16 ) +17 , 18 . ( a ) Illustrate the importance of enduring to the end . ( b ) As we get closer to the end , what confidence can we have ? +[ 1 ] ( paragraph 11 ) You will also find it encouraging to review the endurance of God’s people in modern times . +[ 2 ] ( paragraph 12 ) The Bible does not say how many cherubs were assigned to this task . +“ They continued devoting themselves . . . to associating together . ” ​ — ACTS 2 : 42 . +how we help others when we attend meetings . +1 - 3 . ( a ) How have Christians shown that they are eager to meet together ? +( See opening picture . ) ( b ) What will we discuss in this article ? +It was a very upbuilding and faith - strengthening experience for us . ” +How does meeting together help us to learn about Jehovah ? +How have meetings helped you to use what you learned from the Bible and to improve the way you preach ? +How do our meetings encourage us and help us to keep strong ? +( Read Acts 15 : 30 - 32 . ) +Why is it so important to be at our meetings ? +When our brothers see us at the meetings and hear us comment and sing , how does this help them ? +( See also the box “ He Always Leaves Feeling Better . ” ) +9 , 10 . ( a ) Explain how Jesus ’ words found at John 10 : 16 help us to understand why it is important to meet with our brothers . ( b ) If we are at the meetings regularly , how can we help someone who has been rejected by his family ? +“ LATELY , I have been burdened with health problems that make it difficult to get to the meetings . +But once I’m there , I can enjoy the wonderful spiritual meal that Jehovah has prepared . +Even though I come with severe knee pain , heart problems , and complications from diabetes , I always leave the meeting feeling better than when I arrived . +“ When I first heard song number 68 , ‘ A Prayer of the Lowly One , ’ sung by our congregation , I was moved to tears . +My hearing aids picked up everyone’s voice , and I sang along . +How does attending meetings help us to give Jehovah what he deserves ? +How does Jehovah feel when we obey his command to attend meetings ? +How do we draw close to Jehovah and Jesus at meetings ? +How does going to meetings show God that we want to obey him ? +16 , 17 . ( a ) How do we know that meetings were very important to Christians in the first century ? +( b ) How did Brother George Gangas feel about Christian meetings ? +When I am among them I feel at home with my family , in a spiritual paradise . ” +How do you feel about our meetings , and what are you determined to do ? +[ 2 ] ( paragraph 3 ) See the box “ Reasons to Attend Meetings . ” +There they hear the good news through public witnessing +Left : The convent in Zaragoza , Spain ; right : Nácar - Colunga Bible translation +I did not know whether I was doing the right thing . +I remember praying , “ Thank you , Jehovah , for not giving up on me and for giving me so many opportunities to find what I was looking for ​ — the true knowledge of the Bible . ” +What would my parishioners and my family say ? ” +I replied : “ And what will God say ? ” +He died two months before the day he was going to get baptized . +What should we do when it becomes difficult to stay neutral ? +What can we learn from faithful servants of Jehovah who stayed neutral ? +How can we obey both God and human governments ? +How do we show that we do not take sides in the world’s politics ? +( a ) How do we know that it will become more difficult to remain neutral ? +( b ) Why should we prepare now to remain neutral ? +How should we treat those who have authority in the government ? +When it is difficult to remain neutral , how can we be “ cautious ” yet “ innocent ” ? +( Read Matthew 10 : 16 , 17 . ) +What must we be careful of when talking to others ? +How can we make sure that we remain neutral when we watch or read anything in the media ? +12 , 13 . ( a ) What does Jehovah think about humans ? +( b ) How can we tell if we are becoming too proud of our country ? +How can prayer help us , and what Bible example proves this ? +How can the Bible help us to remain neutral ? +( See also the box “ God’s Word Strengthened Their Conviction . ” ) +What can we learn from the examples of God’s faithful servants who remained neutral ? +( Read Daniel 3 : 16 - 18 . ) +18 , 19 . ( a ) How can the members of your congregation help you to remain neutral ? +“ Meditating on Proverbs 27 : 11 , Matthew 26 : 52 , and John 13 : 35 strengthened my conviction to refuse military service . +These verses also helped me to remain calm during my trial . ” ​ — Andriy , from Ukraine . +“ Isaiah 2 : 4 helped me to remain neutral under test . +I pictured in my mind the quietness of life in the new world , when no one will carry a weapon to harm his neighbor . ” ​ — Wilmer , from Colombia . +“ Keep peace with one another . ” ​ — MARK 9 : 50 . +What counsel did Jesus give to help us handle differences in a spirit of love ? +What questions might a Christian ask himself when deciding how to settle differences with others ? +How can the three steps outlined at Matthew 18 : 15 - 17 be used to resolve some conflicts ? +What human struggles are featured in Genesis , and why is this of interest ? +What attitude spread throughout the world , and what has been the result ? +How did Jesus teach people to handle disagreements ? +6 , 7 . ( a ) Why is it important to settle personal differences promptly ? +( b ) What questions should all of Jehovah’s people ask themselves ? +Our heavenly Father will hear such humble prayers and answer them . ​ — 1 John 5 : 14 , 15 . +What should we do if we are offended ? +( Read Proverbs 10 : 12 ; 1 Peter 4 : 8 . ) +( a ) How did one sister at first react to criticism ? +( b ) What Scriptural thought helped this sister to maintain her peace ? +11 , 12 . ( a ) How should a Christian act if he believes that his brother “ has something against ” him ? +How did one overseer react to harsh words , and what can we learn from his example ? +14 , 15 . ( a ) When should we apply the counsel at Matthew 18 : 15 - 17 ? +( b ) What three steps did Jesus mention , and what should be our goal in applying them ? +What shows that following Jesus ’ counsel is practical and loving ? +What blessings will we enjoy when we “ seek peace ” with one another ? +the message they preach and why they preach it ? +What questions arise because of Jesus ’ words found at Matthew 24 : 14 ? +According to Matthew 28 : 19 , 20 , what four things must Jesus ’ followers do ? +What is involved in becoming “ fishers of men ” ? +( Read Matthew 4 : 18 - 22 . ) +What four questions need to be answered , and why ? +Why can you be confident that Jehovah’s Witnesses are preaching the right message ? +How do we know that the clergy of Christendom are not preaching the right message ? +What is the wrong motive for doing the preaching work ? +( Read Acts 20 : 33 - 35 . ) +How have Jehovah’s Witnesses shown that they engage in the preaching work with the right motive ? +What methods did Jesus and his disciples use to preach ? +When it comes to preaching the good news , how do the efforts of Christendom compare with those of Jehovah’s people ? +They are the only ones who preach that Jesus has been ruling as King since 1914 . +What should be the scope of the preaching work ? +What proves that Jehovah’s Witnesses have fulfilled Jesus ’ prophecy with regard to the scope of the work ? +On our official website , information is available in more than 750 languages . +How do we know that Jehovah’s Witnesses have God’s spirit ? +17 , 18 . ( a ) Why can we be certain that Jehovah’s Witnesses are the ones who are preaching the good news of the Kingdom today ? +( b ) How is it possible for us to continue in this work ? +Because we are preaching the right message , the good news of the Kingdom . +What could cause us to miss out on the benefits of some spiritual provisions ? +What suggestions can help us to benefit from all portions of the Bible ? +How can we benefit from considering material directed to young people and to the public ? +1 , 2 . ( a ) How do Jehovah’s Witnesses feel about the Bible ? +( b ) What is your favorite part of the Bible ? +3 , 4 . ( a ) How do we feel about our publications ? +( b ) What publications do we receive for specific groups of people ? +We can be sure that Jehovah appreciates what ? +Why do we need to read the Bible with an open mind ? +8 , 9 . ( a ) When reading the Bible , what questions might we ask ourselves ? +( b ) What do the qualifications for Christian elders tell us about Jehovah ? +How can I use it to help others ? ’ +( Read 1 Timothy 3 : 2 - 7 . ) +10 , 11 . ( a ) When reading the qualifications for elders , how can we apply the information in our own life ? +( b ) How can we use this information to help others ? +12 , 13 . ( a ) Using tools available to us , what kind of research might we do ? +( b ) Give an example of how background information may reveal lessons that are not immediately obvious . +How does the material published for young people help them , and how can it benefit others too ? +Why should adult Christians be interested in information for young people ? +What else do our publications help young people to do ? +( Read Ecclesiastes 12 : 1 , 13 . ) +How Can I Make Bible Reading Enjoyable ? ” +How can we benefit from reading material written for the public ? +How can we show our gratitude to Jehovah for his provisions ? +How can our decisions affect us and others ? +When the Bible does not give us a specific law , how can we know what would please Jehovah ? +How can we get to know more about the way Jehovah thinks ? +What are some examples of Bible laws , and how does obeying them benefit us ? +2 , 3 . ( a ) Why does the Bible not give us rules for every situation in life ? +How could our decisions affect us and others ? +Where there is no Bible law , how can we find out what Jehovah would want us to do in a certain situation ? +How did Jesus perceive what Jehovah wanted him to do ? +( Read Matthew 4 : 2 - 4 . ) +In all your ways take notice of him , and he will make your paths straight . +What questions can we ask ourselves when we read or study the Bible ? +How can our publications and meetings help us to get to know what Jehovah thinks about various matters ? +Give an example of how we can make a wise decision when we consider what Jehovah thinks . +( Read Luke 18 : 29 , 30 . ) +How can you determine if a certain style of clothing is pleasing to Jehovah ? +( c ) How should weighty decisions be made ? +( Read Genesis 6 : 5 , 6 . ) +How do we benefit from making decisions that please Jehovah ? +Of course , we will always have something new to learn about Jehovah . +After baptism , why should we keep making changes ? +Why does God expect us to put forth effort to overcome our weaknesses ? +What can we do to let God’s Word keep on changing our life ? +1 - 3 . ( a ) What changes may it be hard for us to make after our baptism ? +( b ) When making progress is harder than we expected , what questions might we ask ? +Why are we unable to please Jehovah in everything we do ? +What changes did we make before we got baptized , but what weaknesses may we still struggle with ? +6 , 7 . ( a ) What makes it possible for us to be Jehovah’s friends even though we are imperfect ? +( b ) Why should we not hold back from asking Jehovah for forgiveness ? +How do we know that we can keep putting on the new personality ? +What must we do to keep making changes with the help of the Bible , and what questions might we ask ? +Why does Jehovah expect us to put forth effort to overcome our weaknesses ? +What can we do to develop qualities that Jehovah loves ? +( See the box “ The Bible and Prayer Changed Their Lives . ” ) +Why should we not be discouraged if we are not able to make changes quickly ? +If we are loyal to Jehovah , what delightful future can we look forward to ? +How can we be sure that the Bible has power to continue changing our life ? +[ 1 ] ( paragraph 1 ) The name has been changed . +Russell : “ Supplicating Jehovah in prayer and a daily dose of Bible reading helped me . +Meditating on 2 Peter 2 : 11 and on personal counsel from the elders made a big difference . ” +Maria Victoria : “ I fervently prayed to Jehovah to help me control my tongue . +I also saw the need to stop having close association with people who loved to gossip . +Psalm 64 : 1 - 4 made me realize that I did not want to be one from whom others pray to be safeguarded ! +I also came to appreciate that continuing to gossip would make me a poor example and bring reproach on Jehovah’s name . ” +Linda : “ I familiarized myself with our tracts so as to be prepared to offer them . +Associating with those who enjoy various avenues of service has been a great help . +And I continue to rely on Jehovah through prayer . ” +All humans have faults that can hurt others . +how Jehovah chooses those whom he will mold ? +how God molds those who submit to him ? +How can we imitate the attitude of repentant Israelites ? +How does Jehovah choose those whom he draws to himself ? +( Read 1 Samuel 16 : 7b . ) +How should our trust in Jehovah as our Potter affect our attitude toward ( a ) the people in our territory ? +Later , in a different setting , I met a family whom I admired because of their good conduct . +Then one day I received a shock ​ — they were Jehovah’s Witnesses ! +Their behavior moved me to examine the basis for my prejudice . +I soon came to the realization that my attitude was based on ignorance and hearsay , not on facts . ” +( Read Hebrews 12 : 5 , 6 , 11 . ) +How is Jehovah teaching us today , and how will this education continue in the future ? +And we have learned to show love to others . +How did Jesus reflect the Great Potter’s patience and skill ? +( Read Psalm 103 : 10 - 14 . ) +In what ways did David prove to be like soft clay , and how can we imitate him ? +How does Jehovah mold us by means of holy spirit and the Christian congregation ? +Though having authority over the clay , how does Jehovah show respect for our free will ? +How do Bible students show that they want Jehovah to mold them ? +( a ) What appeals to you about having Jehovah as your Potter ? +( b ) What aspects of molding will we next consider ? +What traits could harden us against Jehovah’s counsel ? +What qualities can help us to remain moldable in God’s hands ? +How can Christian parents show that Jehovah is their Potter ? +Why did God consider Daniel to be a “ very precious man , ” and how can we be obedient like Daniel ? +“ Above all the things that you guard , safeguard your heart , for out of it are the sources of life , ” says Proverbs 4 : 23 . +( Read 2 Chronicles 26 : 3 - 5 , 16 - 21 . ) +What could happen if we failed to guard against pride ? +One brother said that in time his improper conduct did not bother him much at all . +7 , 8 . ( a ) How did the ancient Israelites demonstrate the hardening effect of a lack of faith ? +( b ) What is the lesson for us ? +Why should we “ keep testing ” whether we are in the faith , and how can we do so ? +What can help us to be like soft clay in Jehovah’s hands ? +How can Jehovah use the Christian congregation to mold us according to our individual needs ? +The field ministry can help us to cultivate what qualities , and with what benefits ? +What must parents do if they want to be truly effective in molding their children ? +How should parents demonstrate their trust in God if their child is disfellowshipped ? +( Read 1 Corinthians 5 : 11 , 13 . ) +Why should we make submission to Jehovah our way of life , and how will this course benefit us ? +In what sense is Jehovah our God “ one Jehovah ” ? +How can we show that we worship Jehovah as “ one Jehovah ” ? +What can we do to maintain our peace and unity ? +( b ) Why did Moses speak those words ? +4 , 5 . ( a ) What is one meaning of the phrase “ one Jehovah ” ? +( b ) How is Jehovah different from the gods of the nations ? +What is another meaning of “ one , ” and how did Jehovah prove to be “ one ” ? +8 , 9 . ( a ) What does Jehovah require of his worshippers ? +( b ) How did Jesus emphasize the import of Moses ’ words ? +( Read Mark 12 : 28 - 31 . ) +10 , 11 . ( a ) In what sense is our worship of Jehovah exclusive ? +( b ) How did Hebrew youths in Babylon demonstrate their exclusive devotion to Jehovah ? +In giving Jehovah exclusive devotion , against what must we be on guard ? +What could we begin to love more than Jehovah ? +Why did Paul remind Christians that God is “ one Jehovah ” ? +16 , 17 . ( a ) What prophecy is being fulfilled in our day , and with what result ? +( b ) What could undermine our unity ? +18 , 19 . ( a ) What counsel is mentioned at Ephesians 4 : 1 - 3 ? +( b ) What can we do to help the congregation stay united ? +How can we demonstrate that we understand that “ Jehovah our God is one Jehovah ” ? +There are many fishing villages along the coasts of Trinidad and Tobago . +Jehovah’s Witnesses often take the opportunity to speak with fishermen they meet +How does the Bible show that we are all imperfect ? +What can we do about our own faults and those of others ? +How did the Bible foretell the increase of Jehovah’s people ? +( Read Micah 4 : 1 , 3 . ) +This has helped them to remain “ clean from the blood of all men . ” ​ — Acts 20 : 26 . +Why is the increase of Jehovah’s people noteworthy ? +Why may others at times hurt our feelings ? +( Read Romans 5 : 12 , 19 . ) +If you had lived in Israel at the time of Eli and his sons , how would you have reacted ? +In what sense did Eli fail to discipline his sons ? +How did David sin seriously , and what did God do about it ? +( a ) How did the apostle Peter fail to keep his word ? +( b ) After Peter’s mistake , why did Jehovah continue to use Peter ? +Why do you trust that God is always just ? +What did Jesus understand about the faults of Judas Iscariot and Peter ? +The Bible foretold what about Jehovah’s servants in this time ? +How should we view the faults of others ? +13 , 14 . ( a ) Why should we be patient with one another ? +( b ) What promise do we want to remember ? +What did Jesus say we should do when others make mistakes ? +What do you want to do when others make mistakes ? +( Read Matthew 5 : 23 , 24 . ) +Just as Jehovah freely forgave you , you must also do the same . ” +The answers to those questions are not difficult . +We can see this from what the Bible says about discernment and wisdom . +Proverbs 3 : 13 - 15 says : “ Happy is the man who finds wisdom and the man who acquires discernment ; to gain it is better than gaining silver , and having it as profit is better than having gold . +It is more precious than corals ; nothing you desire can compare to it . ” +Jesus Christ set a good example of honesty . +As managing director , I was expected to come to ‘ an agreement ’ with the tax agent by bribing him to overlook the company’s fraudulent practices . +As a result , I had the reputation of being dishonest . +When I learned the truth , I refused to continue doing that , even though the job paid very well . +I am a good example for my two sons , and I have qualified for privileges in the congregation . +Among tax auditors and others with whom I do business , I now have the reputation of being an honest man . ” +Ruth moved to Israel , where she could worship the true God . +“ We all received . . . undeserved kindness upon undeserved kindness . ” ​ — JOHN 1 : 16 . +What is the greatest expression of Jehovah’s undeserved kindness toward mankind ? +How can we show that we are no longer ruled by sin but by undeserved kindness ? +What blessings come to us as a result of Jehovah’s undeserved kindness ? +1 , 2 . ( a ) Describe Jesus ’ illustration of the owner of the vineyard . ( b ) How does the story illustrate the qualities of generosity and undeserved kindness ? +Do I not have the right to give all my workers whatever I want ? +( Read 2 Corinthians 6 : 1 . ) +Why and how has Jehovah shown undeserved kindness toward all mankind ? +What does it mean that Jehovah’s undeserved kindness is “ expressed in various ways ” ? +The apostle Peter wrote : “ To the extent that each one has received a gift , use it in ministering to one another as fine stewards of God’s undeserved kindness that is expressed in various ways . ” +The apostle John wrote : “ We all received from his fullness , even undeserved kindness upon undeserved kindness . ” +How do we benefit from Jehovah’s undeserved kindness , and how can we show our gratitude for it ? +( Read 1 John 1 : 8 , 9 . ) +What do we enjoy because of God’s undeserved kindness ? +Expressions of God’s undeserved kindness : The privilege of hearing the good news ( See paragraph 11 ) +How do the anointed bring the “ other sheep ” to righteousness ? +The blessing of prayer ( See paragraph 12 ) +How is prayer related to God’s undeserved kindness ? +How can undeserved kindness “ help us at the right time ” ? +How does Jehovah’s undeserved kindness benefit our hearts ? +Thanks to God’s undeserved kindness , what hope do we have ? +( Read Psalm 49 : 7 , 8 . ) +How did some early Christians abuse God’s undeserved kindness ? +Because of Jehovah’s undeserved kindness , what responsibilities do we have ? +What responsibility of ours will be examined in the next article ? +[ 1 ] ( paragraph 2 ) See “ Undeserved kindness ” in the “ Glossary of Bible Terms ” in the revised New World Translation . +“ Bear thorough witness to the good news of the undeserved kindness of God . ” ​ — ACTS 20 : 24 . +What should Jehovah’s undeserved kindness motivate us to do ? +How does the “ good news of the Kingdom ” highlight God’s undeserved kindness ? +How will Jehovah show his undeserved kindness in the new world ? +How did the apostle Paul show that he was grateful for God’s undeserved kindness ? +THE apostle Paul could honestly say : “ [ God’s ] undeserved kindness to me was not in vain . ” +( Read 1 Corinthians 15 : 9 , 10 . ) +( Read Ephesians 3 : 5 - 8 . ) +Why can we say that the “ good news of the Kingdom ” is the same as the good news of “ the undeserved kindness of God ” ? +When we explain the ransom to people , how are we spreading the good news of God’s undeserved kindness ? +Why do sinful humans need to be reconciled to God ? +The apostle John wrote : “ The one who exercises faith in the Son has everlasting life ; the one who disobeys the Son will not see life , but the wrath of God remains upon him . ” +9 , 10 . ( a ) What responsibility did Christ give to his anointed brothers ? +Therefore , we are ambassadors substituting for Christ , as though God were making an appeal through us . +Why is it good news for people to learn that they can pray to Jehovah ? +Many people pray because it makes them feel good , but they do not really believe that God hears their prayers . +They need to know that Jehovah is the “ Hearer of prayer . ” +The psalmist David wrote : “ O Hearer of prayer , to you people of all sorts will come . +Jesus told his disciples : “ If you ask anything in my name , I will do it . ” +13 , 14 . ( a ) What marvelous privileges will the anointed have in the future ? +( b ) What wonderful work will the anointed do for mankind ? +How will Jehovah show his undeserved kindness toward the “ other sheep ” in the future ? +Millions of humans who died without knowing God will also be resurrected . +John wrote : “ I saw the dead , the great and the small , standing before the throne , and scrolls were opened . +The dead were judged out of those things written in the scrolls according to their deeds . +And the sea gave up the dead in it , and death and the Grave gave up the dead in them , and they were judged individually according to their deeds . ” +What should we keep in mind when sharing in our witnessing work ? +The Bible says : “ The creation itself will also be set free from enslavement to corruption and have the glorious freedom of the children of God . ” +He also says : “ Write , for these words are faithful and true . ” +When we zealously preach this good news to others , we truly glorify Jehovah’s undeserved kindness ! +“ Keep seeking [ God’s ] Kingdom , and these things will be added to you . ” ​ — LUKE 12 : 31 . +What difference is there between what we need and what we want ? +Why should we control our desire to want more material things ? +Why are you convinced that Jehovah can provide your daily needs ? +How does Satan use “ the desire of the eyes ” ? +Remember , the apostle John warned : “ The world is passing away and so is its desire . ” +What can happen to those who use most of their energy to get more things ? +What will we consider next , and why ? +8 , 9 . ( a ) Why should we not worry too much about the things we need ? +( b ) What did Jesus know about humans and their needs ? +When Jesus taught his followers how to pray , what did he say should be most important in their life ? +What do we learn from the way Jehovah cares for the birds of heaven ? +We should “ observe intently the birds of heaven . ” +Of course , he does not put the food in their beaks ! +What proves that we are worth more than the birds of heaven ? +( Compare Luke 12 : 6 , 7 . ) +15 , 16 . ( a ) What do we learn from the way Jehovah cares for the lilies of the field ? +( See opening picture . ) ( b ) What questions might we need to ask ourselves , and why ? +What does Jehovah know about us personally , and what will he do for us ? +Why should we not worry about what might happen in the future ? +Can you simplify your life to focus more on the Kingdom ? +( a ) What is a goal you may set in Jehovah’s service ? +( b ) What can you do to simplify your life ? +What will help you to draw closer to Jehovah ? +Illustrate why it is important to be aware of what time it is and what is happening around us . +Why did Jesus tell his disciples to “ keep on the watch ” ? +Why do we pay attention to Jesus ’ warning ? +( a ) Why can we believe that Jesus now knows when Armageddon will occur ? +( b ) Although we do not know when the great tribulation will begin , what can we be sure of ? +When on earth , Jesus said : “ Concerning that day and hour nobody knows , neither the angels of the heavens nor the Son , but only the Father . ” +( Read Habakkuk 2 : 1 - 3 . ) +Give an example to show that Jehovah’s prophecies are always fulfilled right on time . +Jehovah’s prophecies have always been fulfilled right on time ! +Sometime later , Jehovah told Abraham : “ Know for certain that your offspring will be foreigners in a land not theirs and that the people there will enslave them and afflict them for 400 years . ” +Why can we be sure that Jehovah will save his people ? +7 , 8 . ( a ) What was the role of a watchman in ancient times , and what lesson does that teach us ? +( b ) Give an example of what could happen when watchmen fell asleep on the job . +What are most people today not aware of ? +10 , 11 . ( a ) Of what must we be careful , and why ? +( b ) What convinces you that the Devil has influenced people to ignore Bible prophecy ? +Why must we not let the Devil deceive us ? +Jesus warned us : “ Keep ready , because at an hour that you do not think likely , the Son of man is coming . ” +How is the spirit of the world affecting mankind , and how can we avoid that dangerous influence ? +What warning do we find at Luke 21 : 34 , 35 ? +( Read Luke 21 : 34 , 35 . ) +What happened to Peter , James , and John , and how might that happen to us too ? +According to Luke 21 : 36 , how did Jesus instruct us to “ keep awake ” ? +How can we make sure that we are ready for what is coming in the near future ? +[ 1 ] ( paragraph 14 ) See chapter 21 of the book God’s Kingdom Rules ! +During an assembly , a brother asked me if I would like to preach . +We went to the territory , and he gave me some booklets about God’s Kingdom . +One of the sisters there gave us children Bible lessons based on the Bible and the book The Harp of God . +As a teenager , I enjoyed giving people hope from God’s Word . +The brother stopped his bicycle and asked me to sit down with him on a log . +He said : “ Who gave you authority to judge who is a goat ? +Let’s just be happy giving people the good news and leave the judging to Jehovah . ” +Another older brother taught me that to find happiness in giving , we sometimes have to endure patiently . +Years later , his patience was rewarded when his wife was baptized as one of Jehovah’s Witnesses . +After the war , I pioneered for two years in southern Ireland . +We did not realize how much power the priests had . +I had never sailed before , so I was excited . +For five years , we preached mainly on isolated islands where there were no Witnesses . +The crew of missionaries aboard the Sibia ( left to right ) : Ron Parkin , Dick Ryde , Gust Maki , and Stanley Carter +Often , they gave us fresh fish , avocados , and peanuts . +Then at dusk we rang the ship’s bell . +It was lovely to see how seriously some of them took their assignment . +When we arrived , I met and fell in love with Maxine Boyd , a beautiful missionary sister . +So I said to myself , ‘ Ronald , if you want this girl , you’ve got to act quickly . ’ +After three weeks I proposed , and after six weeks we were married . +Maxine and I were assigned as missionaries to Puerto Rico , so I never went out on the new boat . +For example , in the village of Potala Pastillo , there were two Witness families with many children , and I used to play the flute for them . +I asked one of the little girls , Hilda , if she wanted to come and preach with us . +We bought her a pair , and she came preaching with us . +She was about to leave for her assignment in Ecuador , and she said : “ You don’t recognize me , do you ? +I am the little girl from Pastillo who had no shoes . ” +At first , Lennart Johnson and I did most of the work . +Nathan Knorr , who was then taking the lead among Jehovah’s Witnesses , came to Puerto Rico . +Later , he gave me strong counsel about being organized and said that he was disappointed in me . +Father did not accept the truth when Mother and I did . +My dear wife , Maxine , died in 2011 . +I am really looking forward to seeing her again in the resurrection . +After 60 years on the island , I felt as Puerto Rican as a coquí , the popular little Puerto Rican tree frog that sings ko - kee , ko - kee at dusk . +Some who come to see me want to discuss personal or family problems . +Everything we do at Bethel is sacred service . +Wherever we serve Jehovah , we have opportunities to praise him . +Leonard Smith’s life story appeared in The Watchtower of April 15 , 2012 . +Why can it be said that marriage is a gift from God ? +How would you describe the history of marriage from the time of Adam to Jesus ’ day ? +What can help a Christian to decide whether to get married ? +1 , 2 . ( a ) How did marriage begin ? +( b ) What could the first man and woman have realized about marriage ? +( Read Genesis 2 : 20 - 24 . ) +An important purpose of marriage was to populate the earth . +What can we learn from Adam’s and Eve’s responses to Jehovah ? +How would you explain Genesis 3 : 15 ? +( a ) What has happened to marriage since the rebellion of Adam and Eve ? +( b ) What does the Bible require of husbands and wives ? +What is the history of marriage from the time of Adam to the Flood ? +What did Jehovah do to the wicked in Noah’s day , and what lesson should we learn from what happened at that time ? +( a ) In many cultures , what sexual practices became a way of life ? +( b ) How did Abraham and Sarah set a good example in their marriage ? +( Read 1 Peter 3 : 3 - 6 . ) +How did the Mosaic Law protect the Israelites ? +( Read Deuteronomy 7 : 3 , 4 . ) +12 , 13 . ( a ) How were some men treating their wives in Malachi’s day ? +( b ) Today , if a baptized person ran off with someone else’s mate , what would the consequences be ? +( a ) In the Christian congregation , what would be the standard for marriage ? +Paul added : “ If they do not have self - control , let them marry , for it is better to marry than to be inflamed with passion . ” +18 , 19 . ( a ) How should a Christian marriage begin ? +( b ) What will the following article discuss ? +What responsibilities did God give husbands and wives ? +Why are love and tenderness very important in a marriage ? +How can the Bible help if there are problems in a marriage ? +Although marriage usually begins with joy , what can those who marry expect to experience ? +What kinds of love should marriage mates show ? +How strong should love be in a marriage ? +Paul wrote : “ Husbands , continue loving your wives , just as the Christ also loved the congregation and gave himself up for it . ” +( Read John 13 : 34 , 35 ; 15 : 12 , 13 . ) +4 , 5 . ( a ) What is a husband’s responsibility as a family head ? +( b ) How should a wife view headship ? +( c ) What adjustments did one married couple need to make ? +Marriage was an adjustment for me as I learned to rely on my husband . +It has not always been easy , but we have drawn so much closer as a couple by doing things Jehovah’s way . ” +In marriage , taking two people into consideration adds to the challenge . +But by seeking Jehovah’s guidance in prayer and really listening to my wife’s input , it gets easier every day . +I feel that we are a real team ! ” +How does love serve as “ a perfect bond of union ” when problems develop in a marriage ? +7 , 8 . ( a ) What advice does the Bible give regarding sexual relations in marriage ? +( b ) Why do marriage mates need to show tenderness ? +( Read 1 Corinthians 7 : 3 - 5 . ) +Sexual relations should never be forced or demanded but should come naturally . +Why is sexual interest in anyone who is not one’s own marriage mate unacceptable ? +10 , 11 . ( a ) How common is divorce ? +( b ) What does the Bible say about separation ? +( c ) What will help a marriage mate not to separate quickly ? +What may lead a marriage mate to consider separation ? +What does the Bible say to Christians married to mates who are not worshippers of Jehovah ? +( Read 1 Corinthians 7 : 12 - 14 . ) +Or , husband , how do you know whether you will save your wife ? ” +15 , 16 . ( a ) What counsel does the Bible give Christian wives whose husbands are not servants of God ? +( b ) What is the position of a Christian “ if the unbelieving one chooses to depart ” ? +The apostle Peter counsels Christian wives to be in subjection to their husbands , “ so that if any are not obedient to the word , they may be won without a word through the conduct of their wives , because of having been eyewitnesses of your chaste conduct together with deep respect . ” +What if an unbelieving marriage mate chooses to separate ? +The Bible says : “ If the unbelieving one chooses to depart , let him depart ; a brother or a sister is not bound under such circumstances , but God has called you to peace . ” +What should be the first priority of Christian married couples ? +Why is it possible for Christians to have a happy and successful marriage ? +[ 1 ] ( paragraph 5 ) Names have been changed . +[ 2 ] ( paragraph 13 ) See the book “ Keep Yourselves in God’s Love , ” appendix , “ The Bible’s View on Divorce and Separation . ” +What a pleasure it is to give a witness in the morning hours along the Danube River ! +These happy publishers are sharing the Kingdom message with an appreciative listener at Vigadó Square in Budapest , Hungary +What can you do to make spiritual progress ? +How can you progress spiritually without growing weary ? +What adjustments might make you more effective in the ministry ? +1 , 2 . ( a ) How has Isaiah 60 : 22 come true in this time of the end ? +( b ) What needs now exist in the earthly part of Jehovah’s organization ? +“ THE little one will become a thousand and the small one a mighty nation . ” +What does making spiritual progress mean to you ? +How can young people use their strength in Kingdom service ? +6 - 8 . ( a ) How did one young man change his view of God’s service , and with what result ? +( b ) How can we “ taste and see that Jehovah is good ” ? +Because of his blessing , I feel indebted to him and am moved to do more in his service , and this results in more blessings . ” +( Read Psalm 34 : 8 - 10 . ) +Why is it important for you to have “ a waiting attitude ” ? +What spiritual qualities can we work to develop , and why are they important ? +How can members of the congregation prove themselves trustworthy ? +How can you follow Joseph’s example if others treat you unfairly ? +What can you do if others treat you unfairly ? +14 , 15 . ( a ) Why do we have to “ pay constant attention ” to the way we preach ? +( b ) How might you adjust to changing conditions ? +( See opening picture and the box “ Are You Willing to Try a Different Method ? ” ) +How can public witnessing prove to be effective ? +17 , 18 . ( a ) How might you become more confident in public witnessing ? +( b ) Why do you find David’s spirit in praising Jehovah valuable as you engage in the ministry ? +He says : “ During our family worship , my wife and I do research to find answers to objections and opinions people express . +We also ask other Witnesses for suggestions . ” +( Read 1 Timothy 4 : 15 . ) +They will proclaim the glory of your kingship and speak about your mightiness , to make known to men your mighty acts and the glorious splendor of your kingship . ” +If you are entrusted with more work in Jehovah’s organization , how can you become a blessing to others ? +Now Venecia says : “ Phone witnessing works ! ” +My wife died three years ago , and last year my son was killed in an accident . ” +After two years , I am writing back as your Christian sister . ” +Why should we build in Bible students a strong desire to study the Scriptures personally ? +How can we help new ones to converse with householders and others ? +Why should efforts be made to train prospective shepherds of God’s flock ? +Why must we train others to take up theocratic assignments ? +3 , 4 . ( a ) How did Paul connect study of the Scriptures with a productive ministry ? +( b ) Before we encourage our students to study the Bible on their own , what must we be doing ? +Give a suggestion on how to help new ones to have a routine of personal Bible study . +You may ask , ‘ How can I train my student to study the Bible regularly ? ’ +Encourage him to read every issue of The Watchtower and Awake ! +( a ) How can you help your student to cultivate love for the Bible in his heart ? +( b ) What is a Bible student likely to do if he develops heartfelt love for the Scriptures ? +How did Jesus train proclaimers of the good news ? +8 , 9 . ( a ) How did Jesus approach individuals in his ministry ? +( b ) How can we help new publishers to converse with people as Jesus did ? +10 - 12 . ( a ) How did Jesus cultivate the interest others showed in the good news ? +( b ) How can we help new publishers to improve their skills as teachers of Bible truth ? +13 , 14 . ( a ) What do you think of the Bible examples of those who made great sacrifices in behalf of others ? +( b ) In what practical ways can you train new publishers and young ones to show love for their brothers and sisters ? +Why is it important that elders take an interest in the progress of men in the congregation ? +16 , 17 . ( a ) What interest did Paul take in the progress of Timothy ? +( b ) How can the elders effectively train future shepherds of the congregation ? +Why should training others in Jehovah’s service be important to us ? +Why should you be convinced that your diligent efforts to train others in Jehovah’s service will be successful ? +It is in vain that they keep worshipping me , for they teach commands of men as doctrines . ’ +You let go of the commandment of God and cling to the tradition of men . ” ​ — Mark 7 : 6 - 8 . +3 “ Do Not Let Your Hands Drop Down ” +How did Jehovah strengthen the hands of Moses , Asa , and Nehemiah ? +In what practical ways can we strengthen the hands of our brothers and sisters ? +( b ) What might cause our hands to drop down ? +The hand , for example , is mentioned hundreds of times . +How can you be motivated and strengthened to endure and have joy ? +However , when Moses ’ hands became heavy and began to drop down , the Amalekites started to win . +( b ) How did God respond to Nehemiah’s prayer ? +( Read Nehemiah 1 : 10 ; 2 : 17 - 20 ; 6 : 9 . ) +Do you believe that Jehovah uses his “ great power ” and “ mighty hand ” to strengthen his servants today ? +10 , 11 . ( a ) How does Satan try to cause us to let our hands drop down ? +( b ) What does Jehovah use to strengthen us and give us power ? +He uses lies and threats from governments , religious leaders , and apostates . +13 , 14 . ( a ) How was one brother strengthened after his wife died ? +Prayer and personal study have been like a life jacket that has kept my head above water . +I have come to realize the importance of developing a good personal relationship with Jehovah before difficult situations arise . ” +How does God train us to fight our enemies ? +He also helps us through our Bible - based publications , Christian meetings , assemblies , and conventions . +How do we avoid being conquered by the evil ? +( b ) Which Bible characters will we consider ? +What helped Jacob to persevere , and how was he rewarded ? +( Read Genesis 32 : 24 - 28 . ) +How were two Christians helped to control wrong desires ? +This young person also benefited from the article “ Alternative Life - Styles ​ — Does God Approve ? ” +“ For that reason , ” he said , “ I think that as each day passes , I can remain faithful . +I am very grateful to Jehovah for using his organization to help us survive each day in this wicked system . ” +Consider also the experience of a sister in the United States . +She writes : “ I want to thank you for always feeding us with just what we need and at the right time . +I often feel that these articles are written just for me . +For years , I have been battling a strong desire for something Jehovah hates . +At times , I want to throw my hands up and stop fighting . +I know that Jehovah is merciful and forgiving , but because I have this wrong desire and deep down I don’t hate it , I feel that I am unable to receive his help . +This ongoing battle has affected every aspect of my life . . . . +After reading the article ‘ Do You Have “ a Heart to Know ” Jehovah ? ’ +in The Watchtower of March 15 , 2013 , I really felt that Jehovah does want to help me . ” +( a ) How did Paul feel about his struggles ? +What can we learn about clothing from God’s Law to the Israelites ? +What can help Christians to make good decisions about how to dress ? +When especially do we need to wear appropriate clothing ? +Of course , some clothing that is appropriate in one place may not be appropriate in another . +( Read 1 Corinthians 10 : 32 , 33 . ) +What are some factors that may affect whether a brother wears a beard ? +The Mosaic Law required men to wear a beard . +In fact , some appointed brothers have beards . +Even so , some brothers might decide not to wear a beard . +What effect should our dress and grooming have on others ? +A brother in Germany wrote : “ My teachers view the Bible account of creation as a myth . +And they take it for granted that the students believe in evolution . ” +A young sister in France said : “ Teachers in my school are quite astonished that there are students who still believe in the Bible . ” +and The Origin of Life ​ — Five Questions Worth Asking , and the book Is There a Creator Who Cares About You ? +I’ve studied those brochures about a dozen times . ” +They show that the greatest engineers may imitate but will never equal the complex designs in nature . ” +Why does God want you to use your power of reason ? +( Read Romans 12 : 1 , 2 ; 1 Timothy 2 : 4 . ) +And many of them lived at different times and did not know one another personally . ” +I literally had to stop and contemplate how incredible that prophetic Passover meal was ! ” +“ Honesty like that is rare , ” said a young brother in Britain . +“ This adds to our confidence that the Bible truly is from Jehovah . ” +A young sister in Japan wrote : “ When my family applied Bible teachings , we were truly happy . +We experienced peace , unity , and love . ” +And some stop believing in God because they are disappointed with religion . +He added : “ One is struck by the complexity of even the simplest form of life . ” +He wrote : “ Every house is constructed by someone , but the one who constructed all things is God . ” +Why is it so important to know your children well ? +Our children acquire it little by little . ” +He asks : ‘ What does the Bible say ? ’ +‘ Do you believe what it says ? ’ +He wants me to answer in my own words and not simply repeat his or Mum’s words . +As I got older , I had to expand on my answers . ” +They answered all my questions , using the Bible . ” +( Read Deuteronomy 6 : 5 - 8 ; Luke 6 : 45 . ) +So if life evolved from simple to more complex forms , why were these ancient creatures already so complex ? +It was a lesson that deeply impressed me and that I shared with my son . ” +Then she asked each of the boys to make her a cup of coffee . +“ They took great care , ” she explained . +“ When I asked them why they were so careful , they said that they wanted the coffee to be just the way I like it . +I explained that God mixed the gases in the atmosphere with similar care ​ — just right for us . ” +And how would you compare the sound of an airplane to the singing of a bird ? +So who is more intelligent ​ — the maker of airplanes or the Creator of birds ? ” +“ Never tire of experimenting with new ways to approach old subjects , ” said one father . +“ From the time they were very young , I studied with them for 15 minutes every day , except on days when we had Christian meetings . +Over time , many of these were addressed at meetings or during family or personal study . +That’s why it’s important for parents just to keep teaching . ” +Let your children see how real Jehovah is to you . +“ We also tell our older daughter , ‘ Have complete trust in Jehovah , keep busy in Kingdom service , and do not worry too much . ’ +When she sees the outcome , she knows that Jehovah is helping us . +This has done wonders for her faith in God and in the Bible . ” +The first article shows how our faith can grow and remain strong . +Let me explain what led to that conversation . +I WAS born in Wichita , Kansas , U.S.A . , on December 10 , 1936 , the oldest of four children . +Then a soldier walked by , and the doctor yelled , “ Do something about this yellow coward ! ” +The soldier could see that the man was drunk , so he told him , “ Go home and sober up ! ” +He owned two barbershops in Wichita , and the doctor was one of his clients ! +With my parents , going to a convention in Wichita in the 1940 ’ s +With Jehovah’s blessing and their zealous work , a congregation was started . +The brother also sold my car for $ 25 . +We were assigned to special pioneer in Walnut Ridge , Arkansas . +Then in 1962 , we were thrilled to receive an invitation to the 37th class of Gilead . +In the ministry in Nairobi with Mary and Chris Kanaiya +Soon after , our first daughter , Kimberly , was born , and 17 months later , we had Stephany . +We would also go camping with them and would have very enjoyable conversations around the campfire . +We arranged to have some who were in the full - time ministry stay in our home . +They were shocked and started to cry and said that they wanted to study . +With the help and direction of God’s organization , we did our best to raise them to love Jehovah . +On a later trip , Kimberly met one of his workmates , Brian Llewellyn . +So they did stay free until they were at least 23 . +At the same time , Brian and Kimberly were invited to work at London Bethel and later were transferred to Malawi Bethel . +The day after we left for the Watchtower Educational Center in Patterson , Linda called to tell us that Mother had died . +Next , we taught the course in Zimbabwe and then in Zambia . +In 2006 , Brian and Kimberly moved next door to us to raise their two daughters , Mackenzie and Elizabeth . +Paul and Stephany are still in Malawi , where Paul serves on the Branch Committee . +Why might we need to adjust our view of strangers ? +When I left the airport and felt the cold for the first time in my life , I started crying . ” +Greek - speaking Jews complained that their widows were not being treated fairly . +Whether we realize it or not , we are all deeply influenced by our culture . +( Read 1 Peter 1 : 22 . ) +Be patient with those who are adjusting to a new country . +At first , we may not fully understand their way of thinking or reacting . +What example of respect and gratitude can immigrants imitate today ? +First , she showed respect for the customs of her new country by asking permission to glean . +[ 1 ] ( paragraph 1 ) Name has been changed . +Are you among those who are learning another language ? +( Read Nehemiah 13 : 23 , 24 . ) +( b ) How can we reach our goal ? +We must recognize that when we prepare for the ministry , for the meetings , or for a talk , we may not necessarily apply what we read to ourselves . +Since my mind is mainly involved in an intellectual exercise , my heart is not necessarily touched by the spiritual thoughts I am reading . +That is why I regularly set aside time to study the Bible and other publications in my mother tongue . ” +“ It annoyed him to go out in the ministry in another language , whereas before he loved preaching in his native language , French , ” says Muriel . +“ When we realized that this situation had hindered our son from making spiritual advancement , ” explains Serge , “ we decided to move back to our former congregation . ” +Make sure that the truth reaches the hearts of your children ( See paragraphs 14 , 15 ) +But we also include practice sessions and games in Lingala so that they can learn this language while having fun . ” +Make an effort to learn the local language and to participate in the meetings ( See paragraphs 16 , 17 ) +We also set the goal of attending a meeting in French once a month , and we take advantage of our vacations to visit conventions held in our native language . ” +( Read Romans 15 : 1 , 2 . ) +How can we show our love for God’s Word ? +Brothers working business territory witness to a mechanic in an auto repair garage . +( Read Revelation 21 : 3 - 6 . ) +How did Abraham and his family keep their faith strong ? +( Read 1 John 5 : 14 , 15 . ) +What trials did some of the prophets endure because of their faith ? +Others , like Elijah , “ wandered about in deserts and mountains and caves and dens of the earth . ” +How does Noah’s example help us to understand what it means to have faith ? +In what ways must we exercise our faith ? +In what two ways does Hebrews 11 : 1 describe faith ? +You see that his faith was active along with his works and his faith was perfected by his works . ” +For example , John explained : “ The one who exercises faith in the Son has everlasting life ; the one who disobeys the Son will not see life , but the wrath of God remains upon him . ” +Compared with love , how important is faith ? +James asked his anointed brothers : “ Did not God choose those who are poor from the world’s standpoint to be rich in faith and heirs of the Kingdom , which he promised to those who love him ? ” +While men were sleeping , his enemy came and oversowed weeds in among the wheat and left . +When the stalk sprouted and produced fruit , then the weeds also appeared . ” +What hope did Jehovah give his people , and why was this promise remarkable ? +Would the Israelites ever again be able to worship God in a completely acceptable way ? +So it does not really seem that Jehovah’s people entered into captivity to Babylon the Great in 1918 . +( Read 1 Peter 2 : 9 , 10 . ) +( Read Matthew 13 : 24 , 25 , 37 - 39 . ) +Would true Christians ever be free to worship God openly and acceptably ? +When were the anointed freed from Babylonian captivity ? +Brother Rutherford requested that we arrange conventions in several cities in the western United States and send speakers to try to encourage the friends as much as possible . ” +“ If you have any word of encouragement for the people , tell it . ” ​ — ACTS 13 : 15 . +So I cry often and prefer not to talk to them . +He listened with sympathy as I expressed my feelings . +Then he reminded me of the good I was accomplishing . +He also reminded me of Jesus ’ words ​ — that each of us is worth more than many sparrows . +I often recall that scripture , and it still touches my heart . +What can we learn from the way Jehovah , Jesus , and Paul encouraged others ? +( Read Ecclesiastes 4 : 9 , 10 . ) +What can we learn from the way Jesus treated his apostles ? +After going through those regions and giving many words of encouragement to the ones there , he arrived in Greece . ” +( Read 1 Thessalonians 5 : 12 , 13 . ) +They are a real source of encouragement . ” +Andreas , who has two children , says : “ Encouragement helps children to grow up spiritually and emotionally . +Even though our kids know what is right , doing the right thing becomes their way of life through our constant encouragement . ” +( Read Luke 21 : 1 - 4 ; 2 Corinthians 8 : 12 . ) +( Read Revelation 2 : 18 , 19 . ) +I want you to know that when you spoke in such a kind way , both from the platform and in person , I felt that it was a gift from Jehovah . ” +[ 1 ] ( paragraph 1 ) Some names have been changed . +( b ) What will we discuss in this article ? +How did the congregations benefit from following the direction of the governing body ? +( Read 3 John 9 , 10 . ) +( Read Matthew 5 : 23 , 24 ; 18 : 15 - 17 . ) +The Bible directs us to attend meetings regularly . +Have you been using jw.org in your ministry and in your family worship ? +and the brochure Who Are Doing Jehovah’s Will Today ? +What are some reasons why we should be thankful to Jehovah ? +There are many reasons why we should be thankful to Jehovah ! +It also shows how the hope of a reward benefits us . +I was only eight years old at the time . +My father did not want my mother to talk to me about what she was learning . +However , I was curious and asked questions , so she studied with me when my father was out of the house . +As a result , I too decided that I wanted to dedicate my life to Jehovah . +My mother said that I should first speak to the servant to the brethren ( now called a circuit overseer ) . +He said , “ Go for it ! ” +After four months , I selected a brother as my pioneer partner . +My mother pioneered with a sister in another congregation . +In 1951 , I filled out an application to attend the Watchtower Bible School of Gilead . +While there , I received my invitation to the 22nd class of Gilead . +I then traveled by train to South Lansing , New York , where the school was located . +With Janet on one of the many islands in the Philippines +We still serve at the branch office in Quezon City +How can you experience “ the peace of God ” ? +How can the congregation help you to reduce anxiety ? +( See opening picture . ) ( b ) What will we consider in this article ? +How , though , can you do that ? +The psalmist David begged Jehovah : “ Listen to my prayer , O God . ” +When we are anxious , why is prayer so important ? +( Read Matthew 11 : 28 - 30 . ) +What did Jesus mean when he said : “ Never be anxious ” ? +He admitted : “ My anguished heart makes me groan aloud . ” +( See the box “ Some Practical Ways to Reduce Anxiety . ” ) +How can the meaning of God’s name strengthen your faith ? +His very name is understood to mean “ He Causes to Become . ” +Why can you be confident that your relationship with God will strengthen you ? +( a ) How can we throw our anxiety on God ? +How can we be sure that Jehovah rewards his servants ? +How did Jehovah bless his servants in the past ? +1 , 2 . ( a ) How are love and faith connected ? +How , though , does the hope of a reward benefit us ? +Jesus showed that his disciples would be rewarded for their sacrifices ( See paragraph 5 ) +The apostle Peter once asked Jesus : “ We have left all things and followed you ; what , then , will there be for us ? ” +In the Sermon on the Mount , Jesus said : “ Rejoice and be overjoyed , since your reward is great in the heavens , for in that way they persecuted the prophets prior to you . ” +Moses told the nation of Israel : “ Jehovah will surely bless you in the land that Jehovah your God is giving you to possess as an inheritance , but only if you strictly obey the voice of Jehovah your God and carefully observe all this commandment that I am giving you today . +For Jehovah your God will bless you just as he has promised you . ” +And he named the second one Ephraim , for he said , ‘ God has made me fruitful in the land of my affliction . ’ ” +God’s Word explains : “ For the joy that was set before him he endured a torture stake , despising shame . ” +Jesus certainly found joy in being able to sanctify God’s name . +How does Jehovah feel about what we do for him ? +“ The one showing favor to the lowly is lending to Jehovah , and He will repay him for what he does . ” +What comfort do we find at 1 John 3 : 19 , 20 ? +( Read 1 John 3 : 19 , 20 . ) +What are some of the rewards that we enjoy now ? +How do Jehovah’s servants feel about the rewards they receive ? +For example , Bianca from Germany says : “ I cannot thank Jehovah enough for helping me with my worries and for being at my side each day . +The world out there is chaotic and bleak . +But as I work closely with Jehovah , I feel secure in his arms . +Whenever I make personal sacrifices for him , he gives me back a hundredfold in blessings . ” +For my own encouragement , I keep a notebook with scriptures and thoughts from our publications that I can consult from time to time . +I call it ‘ My Survival Notebook . ’ +Discouragement is temporary if we focus on Jehovah’s promises . +Jehovah is always there to help us , regardless of our circumstances . ” +Yet , you can likely think of ways in which Jehovah has rewarded you and those around you . +How were Paul and others set free from sin and death ? +( Read Romans 6 : 1 , 2 . ) +What choice does each of us have to make ? +( Read Proverbs 14 : 5 ; Ephesians 4 : 25 . ) +They receive “ the spirit ” as ones “ waiting for adoption as sons , the release from [ their fleshly ] bodies . ” +( Read Romans 4 : 20 - 22 . ) +( Read Acts 18 : 2 - 4 ; 20 : 20 , 21 , 34 , 35 . ) +Many tourists come to the city of Aveiro in northern Portugal to see the interesting salt evaporation ponds . +Local Witnesses make sure to offer the good news to those who sell the locally produced salt +What else can we learn from the Bible ? +In this article , we will learn how to treasure God’s gift of free will by using it in a way that pleases the Giver of that gift . +The first article explains what modesty is and what it is not . +How does Jehovah expect us to use our abilities ? +Clearly , Jehovah wants us to do what we can to benefit ourselves and others . +Noah lived in a world that was “ filled with violence ” and immorality . +Opposition to our preaching ( See paragraphs 6 - 9 ) +6 , 7 . ( a ) What could Noah not do ? +( b ) How are we in a situation similar to Noah’s ? +We too live in a world filled with wickedness , which we know Jehovah has promised to destroy . +In the meantime , we cannot force people to accept the “ good news of the Kingdom . ” +What Noah could do : Instead of giving up because of what he could not do , Noah focused on what he could do . +When that happened , how did David react ? +Past sins ( See paragraphs 11 - 14 ) +11 , 12 . ( a ) After he sinned , what could David not do ? +What David could not do : David could not undo what he had done . +He had to trust that when he truly repented , Jehovah would forgive him and help him endure the consequences of his actions . +He had to leave the matter in Jehovah’s hands . +Consider a brother named Malcolm , who remained faithful until his death in 2015 . +Focus on what you can do , not on what you cannot do . ” +( b ) How will you apply the 2017 yeartext in your life ? +Our yeartext for 2017 : “ Trust in Jehovah and do what is good . ” ​ — Psalm 37 : 3 +How can we show respect for the decisions of others ? +I will love them of my own free will . ” +4 , 5 . ( a ) Who was the first to receive God’s gift of free will , and how did he use it ? +( b ) What question must each of us ask ? +The answer to that question can determine our everlasting future . +God “ began bringing them to the man to see what he would call each one . ” +What must we never do with our gift of free will ? +Imagine that you gave a valuable gift to a friend . +What is one way we can avoid misusing our Christian freedom ? +( Read 1 Peter 2 : 16 . ) +What do we learn from the principle found at Galatians 6 : 5 ? +Remember the principle found at Galatians 6 : 5 . +How will you show that you treasure your gift of free will ? +( a ) What do many people think about modesty ? +What is modesty , and what is it not ? +Why should we avoid judging other people’s motives ? +What can we learn from Jesus ’ example when we receive a change of assignment ? +( Read Galatians 6 : 4 , 5 . ) +( Read Ecclesiastes 11 : 4 - 6 . ) +What will help us to remain modest forever ? +Why is it difficult for some to delegate authority ? +He told Nathan to tell David : “ You are not the one who will build the house for me to dwell in . ” +( Read Numbers 11 : 24 - 29 . ) +No , I wish that all of Jehovah’s people were prophets and that Jehovah would put his spirit on them ! ” +( Read Philippians 2 : 20 - 22 . ) +The branch office sent us 800 magazines to use in the ministry . +I taught classes in Manaus , Belém , Fortaleza , Recife , and Salvador . +We arrived in Lisbon , Portugal , in August of 1964 . +It is the only one doing the work Jesus commanded his disciples to do ​ — preach the good news of God’s Kingdom ! ” +While this article was being prepared for publication , Douglas Guest died faithful to Jehovah on October 25 , 2015 . +And “ the spirit of Jehovah began to empower David . ” +Why did God want his people to respect the leaders in Israel ? +( Read Hebrews 1 : 7 , 14 . ) +The Bible refers to the Law given to Israel as “ the Law of Moses . ” +11 , 12 . ( a ) What were Joshua and the kings who ruled God’s people required to do ? +“ As soon as the king heard the words of the book of the Law , he ripped his garments apart . ” +Why did Jehovah discipline some of the leaders of his people ? +In some cases , Jehovah disciplined or replaced those leaders . +What proved that Jesus was empowered by holy spirit ? +Shortly after Jesus was baptized , “ angels came and began to minister to him . ” +Hours before his death , “ an angel from heaven appeared to him and strengthened him . ” +How did God’s Word guide Jesus ’ life and teaching ? +It is in vain that they keep worshipping me , for they teach commands of men as doctrines . ” +Nobody is good except one , God . ” +“ Instantly the angel of Jehovah struck him , because he did not give the glory to God , and he was eaten up with worms and died . ” +The next article will consider the answers to those questions . +This may have been the original document written by Moses . +Why was this selection so important to them and to Jehovah ? +As a governing body , they gave direction to all the congregations . ​ — Acts 15 : 2 . +5 , 6 . ( a ) How did holy spirit empower the governing body ? +( c ) How did God’s Word guide the governing body ? +First , holy spirit empowered the governing body . +Third , God’s Word guided the governing body . +Why can we say that Jesus led the early Christians ? +( a ) When did Jesus appoint “ the faithful and discreet slave ” ? +In 1919 , three years after Brother Russell’s death , Jesus appointed “ the faithful and discreet slave . ” +The July 15 , 2013 , issue of The Watchtower explained that “ the faithful and discreet slave ” is a small group of anointed brothers who make up the Governing Body . +So how can we answer Jesus ’ question : “ Who really is the faithful and discreet slave ? ” +How has holy spirit helped the Governing Body ? +What is one way to remember the Governing Body ? +Why are you determined to follow our Leader , Jesus ? +When Jesus returned to heaven , he did not abandon his followers . +Soon , he will lead us to everlasting life . +Since 1955 , that corporation has been known as the Watch Tower Bible and Tract Society of Pennsylvania . +Jehovah “ comforts us in all our trials ” +“ I have spoken , and I will bring it about . +1 , 2 . ( a ) What has Jehovah revealed to us ? +THE very first words of the Bible make this simple but profound statement : “ In the beginning God created the heavens and the earth . ” +( c ) What questions will we consider ? +And why is Jesus ’ ransom sacrifice the key that unlocks the door for God’s purpose to be accomplished ? +What are some gifts that Jehovah gave Adam and Eve ? +It was as if he were saying : ‘ You mean you cannot do what you want ? ’ +But Jehovah is faithful to his own standards ; he never violates them . +( Read Deuteronomy 32 : 4 , 5 . ) +Why is the ransom such a precious gift ? +Jehovah provided the ransom at great cost to himself . +When will Jehovah become “ all things to everyone ” ? +( Read 1 Peter 1 : 15 , 16 . ) +Why can Jehovah view us as righteous , even though we are imperfect ? +He accepts as his worshippers those who dedicate themselves to him . +What did Jesus mean when he next said : “ Let your will take place ” ? +How does the ransom benefit humans who have died ? +What is God’s will for the “ great crowd ” ? +( a ) What blessings do we now receive from Jehovah ? +( Read Acts 3 : 19 - 21 . ) +Jehovah gives us far more than just the gift of life . +“ We have come to know and believe the love that God has for us . +And should we at times change a decision that we have made ? +This article will help us to answer those questions . +Yet , Jehovah viewed those kings as having a complete heart . +Will God view us as having a complete heart , despite mistakes we make ? +We lived on a small farm in eastern South Dakota . +Farming was an important part of our family’s life , but it was not the most important part . +My parents got baptized as Jehovah’s Witnesses in 1934 . +My dad , Clarence , and later my uncle Alfred , served as company servant ( now called coordinator of the body of elders ) in our small congregation in Conde , South Dakota . +My sister , Dorothy , and I became Kingdom publishers when we were six . +Conventions and assemblies were an important part of our lives . +The Bible says : “ The one walking with the wise will become wise , ” and there were many wise ones in my family who supported my decision to pioneer . +When they were serving congregations nearby , they sometimes invited me to go with them in the ministry . +As a new Bethelite , with a farm truck +The farm on Staten Island included the radio station WBBR . +Only 15 to 20 members of the Bethel family were assigned to the farm . +Most of us were young and quite inexperienced . +Brother Peterson did his work at Bethel well but never neglected the field ministry . +With Angela in 1975 , before a television interview +Three years later , we were invited to Bethel . +Why do Jehovah and Christ deserve to be honored ? +Humans were created “ in God’s image . ” +8 , 9 . ( a ) How do Jehovah’s Witnesses view government officials ? +( Read 1 Timothy 5 : 17 . ) +Neither be called leaders , for your Leader is one , the Christ . +Whoever exalts himself will be humbled , and whoever humbles himself will be exalted . ” +Why should others not make decisions for us ? +( a ) To make wise decisions , we should have faith in what ? +What will help us to make wise decisions ? +( Read 2 Corinthians 1 : 24 . ) +Loving elders help others learn to make their own decisions ( See paragraph 11 ) +Elders too should take time to do research . +Will it bring joy and peace to my family ? +And will it show that I am patient and kind ? ’ +Why does Jehovah expect us to make our own decisions ? +What does it mean to serve Jehovah with a complete heart ? +Which of the four kings would you like to imitate , and why ? +( Read 2 Chronicles 14 : 11 . ) +What would your heart move you to do ? +Asa’s son Jehoshaphat “ kept walking in the way of his father Asa . ” +( Read 2 Chronicles 20 : 2 - 4 . ) +( Read Isaiah 37 : 15 - 20 . ) +( Read 2 Kings 20 : 1 - 3 . ) +( Read 2 Chronicles 34 : 18 , 19 . ) +Why will we consider the examples of four kings of Judah ? +( Read 2 Chronicles 16 : 7 - 9 . ) +( Read 2 Chronicles 32 : 31 . ) +Many praise him for what he has done . +( Read 2 Chronicles 35 : 20 - 22 . ) +The Bible says that Necho’s words were “ from the mouth of God . ” +Let us meditate on these Bible accounts and be thankful that Jehovah has provided them for us ! +How many vows have you made to Jehovah ? +What about your dedication vow or your marriage vow ? +When we believe that we have personally experienced or observed an injustice , our faith , humility , and loyalty may be tested . +“ The world is passing away and so is its desire , but the one who does the will of God remains forever . ” ​ — 1 JOHN 2 : 17 . +What will Jehovah do about wicked people and corrupt organizations ? +The Bible says : “ The world is passing away . ” +There is no darkness or deep shadow where wrongdoers can conceal themselves . ” +Later in the same psalm , we read : “ The righteous will possess the earth , and they will live forever on it . ” +Who are “ the meek ” and “ the righteous ” ? +Why can we be sure that the new earth will be well - organized ? +After Armageddon , will there be any organization on earth ? +So the “ new earth ” will be organized . +What kind of wrong activities are common where you live , and how are you and your family affected ? +What do we learn from Jehovah’s judgment of Sodom and Gomorrah ? +( Read 2 Peter 2 : 6 - 8 . ) +( Read Psalm 46 : 8 , 9 . ) +What are some things that will be gone forever after Armageddon ? +Illustrate . ( b ) How can we be sure that we will remain after this old world is gone ? +“ WILL the Judge of all the earth not do what is right ? ” +Because Jehovah is the greatest example of justice and righteousness . +Christians expect to experience some injustice outside the Christian congregation . +In 1946 , he attended the eighth class of Gilead School in New York , U.S.A . +After graduation , he was eventually assigned to the circuit work in Switzerland . +What examples will we consider in this article and in the next ? +In this article , we will consider Abraham’s great - grandson Joseph and his experience with his brothers . +10 , 11 . ( a ) What injustices did Joseph experience ? +( Read Matthew 5 : 23 , 24 ; 18 : 15 . ) +Loyalty to Jehovah and to our brothers will protect us from making such a mistake . +Most important , he did not allow the imperfections and wrong actions of others to separate him from Jehovah . +Why should we draw even closer to Jehovah if we experience injustice in the congregation ? +How can we show that we have confidence in “ the Judge of all the earth ” ? +See Willi Diehl’s life story , “ Jehovah Is My God , in Whom I Will Trust , ” in the November 1 , 1991 , issue of The Watchtower . +( See opening pictures . ) ( b ) What questions will be answered in this article ? +They are excellent examples for men and women today who choose to make vows to Jehovah . +How serious is it to make a vow to God ? +What lessons can we learn from Jephthah and Hannah ? +2 , 3 . ( a ) What is a vow ? +( b ) What do the Scriptures say about making vows to God ? +( a ) How serious is it to make a vow to God ? +( b ) What do we want to learn about Jephthah and Hannah ? +( a ) How easy was it for Jephthah and his daughter to pay his vow to God ? +Jephthah said : “ I have opened my mouth to Jehovah , and I am unable to turn back . ” +( b ) What did Hannah’s vow mean for Samuel ? +She took Samuel to High Priest Eli at the tabernacle in Shiloh and said : “ It was for this boy that I prayed , and Jehovah granted my petition that I asked of him . +The second most important vow that a person can make is the marriage vow . +What does the Bible say about divorce and separation ? +( Read 1 Corinthians 7 : 10 , 11 . ) +One couple said : “ Since we have been studying this brochure , our marriage has been happier than ever . ” +We are doing much better now as a couple . ” +18 , 19 . ( a ) What have many Christian parents done ? +( b ) What can be said about those who are in special full - time service ? +Special full - time service vow ( See paragraph 19 ) +It is not the people but their assignments that are viewed as special . +See the Appendix article “ The Bibleʼs View on Divorce and Separation ” in the book “ Keep Yourselves in Godʼs Love . ” +Does the Almighty care that you are righteous , or does he gain anything because you follow the course of integrity ? ” +( b ) How did Israel defeat Jabin’s army ? +( Read Judges 4 : 14 - 16 . ) +The torrent of Kishon washed them away . ” +See the article “ Anxiety About Money ” in the July 1 , 2015 , issue of The Watchtower . +1 , 2 . ( a ) What injustice did Naboth and his sons experience ? +( b ) What two qualities will we consider in this article ? +What kind of man was Naboth , and why did he refuse to sell his vineyard to King Ahab ? +Naboth was faithful to Jehovah at a time when most Israelites were following the bad example of King Ahab and his wife , wicked Queen Jezebel . +Read 1 Kings 21 : 1 - 3 . +He respectfully explained : “ It is unthinkable , from Jehovah’s standpoint , for me to give you the inheritance of my forefathers . ” +Why would humility have been a protection to Naboth’s family and friends ? +( Read Deuteronomy 32 : 3 , 4 . ) +( b ) In what ways will humility protect us ? +How will you respond if the elders announce a decision that you do not agree with ? +What account will we now consider , and why ? +How was Peter corrected , and what questions arise ? +In fact , he was later inspired to write two letters that became part of the Bible . +3 Helping “ Foreign Residents ” to “ Serve Jehovah With Rejoicing ” +The second article considers how applying Bible principles will help immigrant parents to make decisions that will benefit their children . +“ We could see people running , shooting . +My parents and 11 of us siblings fled for our lives with only the clothes on our backs . +How did Jesus and many of his disciples become refugees ? +He said : “ When they persecute you in one city , flee to another . ” +( b ) are living in a camp ? +My feet were so swollen that I told my family to go on without me . +My father ​ — not about to abandon me to the rebel forces — ​ carried me . +They gossiped , drank , gambled , stole , and were immoral . ” +( Read 1 John 3 : 17 , 18 . ) +( b ) Why do they need our patient help ? +They need to see that we care about them . +( b ) How can refugees show gratitude ? +How can we help our brothers and sisters who are refugees ? +( a ) What temptation do refugees need to resist ? +Finally , he held up the empty bag and said with a smile : ‘ You see ? +This is all you need ! ’ ” ​ — Read 1 Timothy 6 : 8 . +They need to sense Jehovah’s love and compassion among their fellow Christians . +Many of today’s refugees come from countries where our preaching work is restricted . +She said : “ The brothers there treated them like close relatives , providing food , clothes , shelter , and transportation . +Who else would welcome strangers into their home just because they worship the same God ? +Only Jehovah’s Witnesses ! ” ​ — Read John 13 : 35 . +As soon as possible after a refugee arrives , elders should follow the direction in Organized to Do Jehovah’s Will , chapter 8 , paragraph 30 . +In the meantime , they can ask discreet questions about a refugee’s congregation and ministry to discern his spiritual condition . +“ No greater joy do I have than this : that I should hear that my children go on walking in the truth . ” ​ — 3 JOHN 4 . +How can parents set a good example for their children ? +How can family heads decide which language congregation the family will attend ? +How can others help immigrant parents and their children ? +1 , 2 . ( a ) What problem do many immigrant children experience ? +( b ) What questions will this article discuss ? +“ But after I started school , I began to prefer the local language . +Within a few years , the shift was complete . +I couldn’t understand the meetings , and I didn’t identify with my parents ’ culture . ” +3 , 4 . ( a ) How can parents set a good example for their children ? +( b ) What should parents not expect of their children ? +When your children see you “ seeking first the Kingdom , ” they learn to depend on Jehovah for their daily needs . +Never get so busy that you do not have time for your children . +How may your children benefit from learning your language ? +Parents , if that describes your children , can you learn at least some of the local language ? +A child who communicates best in another spoken language deserves the same concern , would you not agree ? +If that is your situation , you can still help your children to come to know and love Jehovah . +“ But when we saw her studying , praying , and doing her best to conduct family worship every week , we understood that getting to know Jehovah was very important . ” +How can parents help children who may need to study in two languages ? +( a ) Who must decide which language congregation to attend ? +That may not be the case when children do not fully understand the language . +( Read 1 Corinthians 14 : 9 , 11 . ) +The answer was not what we personally found convenient . +But when we saw that they were getting little benefit from the meetings in our language , we decided to move to the local - language congregation . +Together , we regularly attended meetings and shared in the ministry . +We also invited local friends to join us for meals and excursions . +All of this helped our children to get to know the brothers and to get to know Jehovah , not only as their God but also as their Father and Friend . +We considered this to be much more important than their mastering our language . ” +Samuel adds : “ To keep ourselves spiritually strong , my wife and I also attended meetings in our language . +Life was very busy , and we were tired . +But we thank Jehovah for blessing our efforts and sacrifices . +Our three children are all serving Jehovah in the full - time ministry . ” +“ I knew the basics of my parents ’ language , but the language spoken at the meetings was over my head , ” recalls Kristina . +“ When I was 12 , I attended a convention in my school language . +For the first time , I understood that what I was hearing was the truth ! +Another turning point came when I began to pray in my school language . +I could speak to Jehovah from my heart ! ” +Young people , do you think that you would prefer being part of a local - language congregation ? +“ When my siblings and I got into our teens , we wanted to switch to the local - language congregation , ” says Nadia , who now serves at Bethel . +“ Now we’re grateful that our parents worked hard to teach us their language and kept us in the foreign - language congregation . +It has enriched our lives and broadened our opportunities to help others get to know Jehovah . ” +( b ) How can parents get help in teaching their children the truth ? +( Read Proverbs 1 : 8 ; 31 : 10 , 27 , 28 . ) +Still , parents who do not know the local language may need help to reach their children’s heart . +Both children and parents benefit from association with the congregation ( See paragraphs 18 , 19 ) +( b ) What must parents continue to do ? +“ When they helped me with student talk assignments for the meeting , I always learned more . +And I enjoyed the leisure activities we shared in as a group . ” +Parents , pray to Jehovah for help , and try your best . +( Read 2 Chronicles 15 : 7 . ) +Put your child’s friendship with Jehovah ahead of your own interests . +But it wasn’t until 1946 that I really understood Bible truth . +Eventually , I learned sign language and had fun playing with the other children . +She accepted a magazine subscription and wanted me to meet her husband , Gary . +Eventually , five from their class became Jehovah’s Witnesses . +At that time , she gave me a piece of candy and asked if we could be friends . +When she wanted to get baptized , her parents told her , “ Become one of Jehovah’s Witnesses , and you will have to leave our home ! ” +She continued her study and later got baptized . +When we got married in 1960 , her parents did not come to our wedding . +My son Nicholas and his wife , Deborah , serve at London Bethel +Faye and James , Jerry and Evelyn , Shannan and Steven +We are now part of the Calgary Sign - Language Congregation , where I continue to serve as an elder . +How can we keep our love for Jehovah strong ? +How can we deepen our love for Bible truth ? +Why is it important to have affection for our brothers ? +What may have caused the love of some Christians to grow cold ? +People today have less and less love for God . +Show love for Jehovah ( See paragraph 10 ) +( Read Psalm 119 : 97 - 100 . ) +Show love for Bible truth ( See paragraph 14 ) +On his last night on earth , Jesus said to his disciples : “ I am giving you a new commandment , that you love one another ; just as I have loved you , you also love one another . +By this all will know that you are my disciples ​ — if you have love among yourselves . ” ​ — John 13 : 34 , 35 . +The apostle John wrote : “ The one who does not love his brother , whom he has seen , cannot love God , whom he has not seen . ” +Show love for the brothers and sisters ( See paragraph 17 ) +What are some ways in which we can show love ? +Read 1 Thessalonians 4 : 9 , 10 . +“ Simon son of John , do you love me more than these ? ” ​ — JOHN 21 : 15 . +Then he said to them : “ ‘ Cast the net on the right side of the boat and you will find some . ’ +So they cast it , but they were not able to haul it in because of the large number of fish . ” ​ — John 21 : 1 - 6 . +( b ) What valuable lesson did a brother in Thailand learn about his work ? +As a result , it left me almost no time for spiritual matters . +I finally realized that in order to put Kingdom interests first , I needed to change my line of work . ” +“ After planning for about a year , ” he explained , “ I decided to become a street vendor and sell ice cream . +In the beginning , I struggled financially and got discouraged . +When I met my former workmates , they would laugh at me and ask why I thought selling ice cream was better than working with computers in an air - conditioned environment . +I prayed to Jehovah , asking him to help me to cope and to reach my goal of having more time for spiritual activities . +I got better acquainted with my customers ’ tastes and became more skillful in making ice cream . +Soon , I was selling all my ice cream every day . +Actually , I was better - off financially than when I worked with computers . +It has made me happier because I do not have the stress and worry that I had with my former job . +And most important , I now feel closer to Jehovah . ” ​ — Read Matthew 5 : 3 , 6 . +After his baptism , he said : “ The only regret I have is that I lost so much time before I realized that serving Jehovah brings far more happiness than pursuing the entertainment offered by this world . ” +Jesus stated that “ no one can slave for two masters . ” +He added : “ You cannot slave for God and for Riches . ” +( Read 1 Corinthians 2 : 14 . ) +See the article “ Is Your Recreation Beneficial ? ” +We also shared regularly in the field ministry . ” +We were so sad to leave our Bible students behind . ” +But then , a month later , they received thrilling news . +Miriam says : “ We were invited to serve as special pioneers . +What a joy to be able to stay in our assignment ! ” +They trusted in the promise found at Psalm 37 : 5 : “ Commit your way to Jehovah ; rely on him , and he will act in your behalf . ” +Today we do , and we lack nothing of real importance . ” +Why can we expect that marriage and family life will involve some trials ? +We can be sure that he wants the best for us , as he did for his servants in the past . ​ — Read Jeremiah 29 : 11 , 12 . +( Read 1 Samuel 1 : 4 - 7 . ) +“ Even though Ann was not related to me , I found her loving concern to be such a help , ” Paula explains . +“ It helped me to keep serving Jehovah . ” +( Read Psalm 145 : 18 , 19 . ) +“ Where your treasure is , there your hearts will be also . ” ​ — LUKE 12 : 34 . +As we do so , meditate on how you personally can deepen your love for these spiritual treasures . +Can you imagine how precious that pearl was to him ? +( Read Mark 10 : 28 - 30 . ) +( a ) Why did the apostle Paul describe our ministry as a “ treasure in earthen vessels ” ? +( Read Romans 1 : 14 , 15 ; 2 Timothy 4 : 2 . ) +Some of them serve as Bethelites , pioneers , and elders . +Irene says , “ When I think of other goals I could have pursued , I can’t imagine one that would have brought me more joy . ” +What is the “ treasure store ” that Jesus referred to at Matthew 13 : 52 , and how do we fill it ? +( Read Proverbs 2 : 4 - 7 . ) +Consider the experience of a brother named Peter . +To test Peter , the rabbi asked , “ So , my boy , what language was the book of Daniel written in ? ” +When I went home and checked the Watchtower and Awake ! +magazines from the previous months , I found an article explaining that Daniel was written in Aramaic . ” +As you do this , you will build up “ treasure in the heavens , where no thief gets near and no moth consumes . +For where your treasure is , there your hearts will be also . ” ​ — Luke 12 : 33 , 34 . +“ I had trouble getting along with a brother who worked with me . +Once when we were yelling at each other , two people came in and witnessed our blowup . ” ​ — CHRIS . +“ A sister with whom I often preached suddenly ended our arrangements for the ministry . +I had no idea why . ” ​ — JANET . +“ I was on a three - person phone call . +One of the others said good - bye , and I thought he was off the line . +I then said unkind things about him to the other person on the phone , but the first person had not hung up . ” ​ — MICHAEL . +“ In our congregation , two pioneers began having problems . +Their bickering was discouraging to others . ” ​ — GARY . +“ Do not become upset with one another on the way . ” +“ Plans fail when there is no consultation . ” +Michael says , “ My brother genuinely forgave me . ” +“ Continue putting up with one another and forgiving one another freely even if anyone has a cause for complaint against another . ” +Now they get along well as they preach the good news . +That difference may seem unimportant ; yet , it can lead to serious problems . ” +As my irritation grew , I started being curt with her . +I thought , ‘ She does not show me the respect I deserve , so I am not going to show her respect . ’ ” +“ I began seeing my own personality flaws , and I was very disappointed in myself . +I realized that I had to adjust my thinking . +After praying to Jehovah about the matter , I bought the sister a small gift and wrote her a card to apologize for my bad attitude . +We hugged each other and agreed to put the matter behind us . +We have not had any more problems . ” +FOR many people today , money is the big issue . +Why must the issue of sovereignty be settled ? +How important is the vindication of Jehovah’s sovereignty ? +Why , from the day our forefathers fell asleep in death , all things are continuing exactly as they were from creation’s beginning . ” +( Read Isaiah 55 : 10 , 11 . ) +( Read Job 1 : 7 - 12 . ) +( Read Job 38 : 18 - 21 . ) +( Read Romans 5 : 3 - 5 . ) +One reason is that he rules with love . +He cares for us better than we can care for ourselves . +How can elders and family heads imitate Jehovah ? +Psalm 147 repeatedly encourages God’s people to praise Jehovah . +What was it about Jehovah that impressed the psalmist so much that he wanted God to be praised ? +Many young brothers and sisters are zealously entering the full - time service . +“ Make friends for yourselves by means of the unrighteous riches . ” ​ — LUKE 16 : 9 . +How can we avoid becoming slaves of today’s commercial world ? +In this system of things , why will there always be some poor people ? +What can we learn from Jesus ’ counsel ? +How do we know that today’s commercial system was not part of God’s purpose ? +Give examples of how some are showing faithfulness in their use of unrighteous riches . +I am more generous in being forgiving , in being patient with others , and in being able to accept disappointments and counsel . ” +How did Abraham show that he trusted in God ? +( b ) How can we apply Paul’s counsel today ? +After calling Timothy “ a fine soldier of Christ Jesus , ” Paul told him : “ No man serving as a soldier involves himself in the commercial businesses of life , in order to gain the approval of the one who enrolled him as a soldier . ” +Jehovah blesses those who are “ rich in fine works . ” +High - quality materials of wood , stone , and metal will be freely available to build beautiful homes . +To donate online , go to jw.org and click the “ Make a Donation to Our Worldwide Work ” link near the bottom of any page . +“ FOR almost a year after the death of our son , we felt deep and excruciating pain , ” said Susi . +Every single time , the peace of God truly guarded our hearts and minds . ” ​ — Read Philippians 4 : 6 , 7 . +How did Jesus show empathy when Lazarus died ? +If you are grieving , you too can find soothing comfort from such scriptures as the following : +( Read 1 Thessalonians 5 : 11 . ) +What do we need to remember about grief ? +Even when someone does express how he feels , it is not always easy for others to understand what he is trying to say . +At that moment , I don’t feel quite so alone in my grief . ” +“ Receiving a short encouraging message or an invitation to spend time with a fellow Christian helps me more than I can say , ” says Junia . +“ Those expressions make me feel loved and cared for . ” +“ Sometimes when sisters have come to comfort me , ” recalls Dalene , “ I have asked them if they are willing to say a prayer . +They start praying , often battling to speak at first , but every time , within a few sentences , their voice gets stronger and they say the most heartfelt prayer . +Their strong faith , their love , and their concern have been very faith - strengthening . ” +“ A true friend shows love at all times , and is a brother who is born for times of distress . ” +“ I expected my first wedding anniversary to be very traumatic , ” relates one brother , “ and it was not easy . +But a few brothers and sisters planned a small gathering of my closest friends so that I wouldn’t be on my own . ” +“ Often the help and companionship offered when there is no special anniversary can be very beneficial , ” explains Junia . +“ Those spontaneous moments are so valuable and bring much comfort . ” +They have truly made me feel Jehovah’s loving arms around me . ” +Why are Jehovah’s promises a source of great comfort ? +God promises that “ he will do away with death forever , and the Sovereign Lord Jehovah will wipe away the tears from all faces . ” +Other scriptures that many have found comforting are Psalm 20 : 1 , 2 ; 31 : 7 ; 38 : 8 , 9 , 15 ; 55 : 22 ; 121 : 1 , 2 ; Isaiah 57 : 15 ; 66 : 13 ; Philippians 4 : 13 ; and 1 Peter 5 : 7 . +See also the article “ Comfort the Bereaved , as Jesus Did ” in the November 1 , 2010 , issue of The Watchtower . +“ We don’t know what to say except that we love you . +We can’t understand exactly how you feel , but Jehovah does and will keep raising you up . +We hope that our prayers will help a little . ” +“ May Jehovah sustain you at this time of such great loss . ” +“ May you find comfort in knowing that your dear one is safe in the memory of God , who will remember every detail about him and bring him back again . ” +“ Your loved one will never have to face the last enemy , death , ever again . +In the meantime , his acts of faith live on until he stands up alive and whole in the Paradise . ” +“ While words fail to capture the pain of losing a loved one , we look forward to the time when words will fail to capture the joy of having our heavenly Father return your dear one to you . ” +During the great tribulation , Christians will rely on Jehovah and not try to defend themselves +In an apple orchard in Grójec , a publisher shares the Bible’s message with one of the workers +( b ) What can we learn from studying Psalm 147 ? +And there may be trillions of galaxies in the universe ! +I want you to enjoy your life as one of my Witnesses ! ” +( Read Psalm 147 : 8 , 9 . ) +Mutsuo says : “ I felt that Jehovah was right next to each one of us and caring for us . +12 , 13 . ( a ) To benefit from God’s help , what should we avoid ? +On the other hand , God “ hurls the wicked to the ground . ” +“ Jehovah finds pleasure in those who fear him , in those waiting for his loyal love . ” +15 - 17 . ( a ) How might we at times feel about our trials , but how does Jehovah use his Word to help us ? +Today , Jehovah guides us with his Word , the Bible . +( Read Psalm 147 : 19 , 20 . ) +What plans can lead to a happy future for you ? +What could a life in the pioneer service lead to ? +YOU young ones will probably agree that before starting a journey , it is wise to plan where you will go . +Life is like a journey , and the time to plan where you want to go is when you are young . +How do you know that Jehovah wants you to plan for a happy future ? +Your Creator is “ the God of love , ” “ the happy God , ” who made humans “ in his image . ” +You will be happy when you imitate our loving God . +Jesus Christ set the perfect example for you young ones . +Jesus also drew close to Jehovah by studying the Scriptures . +“ Plans fail when there is no consultation , but there is accomplishment through many advisers . ” +As with any career , you need time to become skilled . +At first , I couldn’t start any Bible studies , but later I moved to another territory , and within a month I started several studies . +One student began coming to the Kingdom Hall . +For example , Jacob , from North America , writes : “ When I was seven , many of my classmates were Vietnamese . +I wanted to tell them about Jehovah , so after a while I made plans to learn their language . +For the most part , I learned by comparing the English and Vietnamese editions of The Watchtower . +I also made friends in a nearby Vietnamese - language congregation . +When I was 18 , I started pioneering . +Later , I attended the Bible School for Single Brothers . +This helped me with my present pioneer assignment , where I am the only elder in a Vietnamese - language group . +Many Vietnamese people are amazed that I have learned their language . +They invite me in , and often I can study the Bible with them . +Some have progressed to baptism . ” ​ — Compare Acts 2 : 7 , 8 . +I enjoy encouraging the young brothers in our congregation and seeing their spiritual progress . +After I attended the Bible School for Single Brothers , I received a new pioneer assignment . +It’s true that I have never found anyone in the territory who progressed to baptism , but others have . +How may pioneer service lead to other opportunities ? +A brother named Kevin says : “ Ever since I was a little boy , I have wanted to serve Jehovah full - time someday . +Finally , I started pioneering when I was 19 . +I supported myself working part - time for a brother who was a builder . +I learned to install roofs , windows , and doors . +Later , I spent two years with a hurricane relief team , rebuilding Kingdom Halls and homes for the brothers . +When I heard about the construction needs in South Africa , I applied and was invited to go . +Here in Africa , I move from one Kingdom Hall project to another every few weeks . +We live together , study the Bible together , and work together . +I also enjoy preaching with the local brothers each week . +The plans I made as a boy have made me happy in ways I did not foresee . ” +Bethel service is a happy way of life because everything you do there is for Jehovah . +After a year and a half , I was invited to Bethel , where I learned to operate printing presses and later to do computer programming . +At Bethel , I enjoy hearing firsthand about the progress of the disciple - making activity worldwide . +I love serving here because what we do helps people to draw close to Jehovah . ” +You can be sure that Jehovah wants you to “ get a firm hold ” on a happy future . +( Read 1 Timothy 6 : 18 , 19 . ) +Then plan to do what is pleasing to him . +He has studied human behavior since man was created . +It’s something you have to find out for yourself . ” +and “ Do not let them lead you into disaster ! ” +Jesus said : “ Do not fear those who kill the body and after this are not able to do anything more . ” +Do not be struck with terror or fear , for Jehovah your God is with you wherever you go . ” +Listen to Jehovah and trust in him in all that you do . +The second article highlights how Jehovah can do the unexpected by accomplishing things we could never imagine . +Like the farmer , we need to wait patiently . +What can we learn from the example of the prophet Micah ? +( Read Micah 7 : 1 - 3 . ) +If we have faith like that of Micah , we will be willing to wait for Jehovah . +So we “ endure fully with patience and joy . ” +Abraham had to wait many years before his grandsons Esau and Jacob were born ( See paragraphs 9 , 10 ) +( Read Hebrews 11 : 8 - 12 . ) +But just imagine Abraham’s joy when he is resurrected back to a paradise earth . +Although you meant to harm me , God intended it to turn out well and to preserve many people alive , as he is doing today . ” +( b ) What helped David to wait patiently ? +I will sing to Jehovah , for he has richly rewarded me . ” +( Read 2 Peter 3 : 9 . ) +What will help us to be willing to wait patiently ? +What lessons do we learn from what happened to the apostle Paul in Philippi ? +( Read Acts 16 : 8 - 10 . ) +Soon after he arrived in Macedonia , he ended up in prison ! +Why did Jehovah allow this to happen to Paul ? +Both he and Silas started “ praying and praising God with song . ” +4 , 5 . ( a ) How could our situation be similar to that of Paul ? +( b ) How did Paul’s situation change unexpectedly ? +What will we now discuss and review together ? +( Read 1 Peter 5 : 6 , 7 . ) +Sometimes he surprises us by doing the unexpected . +Jehovah sent an angel to destroy 185,000 of Sennacherib’s soldiers in one night . +( a ) What lesson do we learn from what happened to Joseph ? +No doubt Jehovah’s actions exceeded all of Joseph’s expectations . +Think , too , about Joseph’s great - grandmother Sarah . +( Read Isaiah 43 : 10 - 13 . ) +We know that Jehovah cares for us and wants us to succeed . +How can we strip off and keep off the old personality ? +By 1939 there were 6,000 of them in the [ concentration camps ] . ” +And you people have cleaned the stadium so nicely . +But most of all , you are truly multiracial . ” +But the more I had sexual relations , the more insecure I felt . ” +This way of life continued until Sakura was 23 years old . +It got so bad that I could not wait for the woman I was living with to leave the house so that I could watch pornographic videos . ” +What helped Stephen to put away anger and abusive speech ? +He says : “ Our family life improved dramatically . +Today , Stephen serves as a ministerial servant , and his wife has been a regular pioneer for several years . +Bible texts that encouraged me were Isaiah 55 : 7 , which says : ‘ Let the wicked man leave his way , ’ and 1 Corinthians 6 : 11 , which says about those who had abandoned sinful ways : ‘ And yet that is what some of you were . ’ +For many years , Jehovah patiently helped me by means of his holy spirit to put on the new personality . ” +We also benefit from God’s Word and his holy spirit when we prepare for and attend congregation meetings . +See chapter 25 in the book Questions Young People Ask ​ — Answers That Work , Volume 1 . +( Read Colossians 3 : 10 - 14 . ) +He stated : “ There is neither Greek nor Jew , circumcision nor uncircumcision , foreigner , Scythian , slave , or freeman . ” +( a ) How do servants of Jehovah need to treat others ? +( See opening picture . ) ( b ) What have been the results ? +Then he attended a meeting of Jehovah’s Witnesses . +You get to experience our worldwide brotherhood and see its miraculous unity firsthand . ” +When we showed them scriptures from their Portuguese Bible , such as Revelation 21 : 3 , 4 or Psalm 37 : 10 , 11 , 29 , they paid attention and sometimes even shed tears . ” +We are so thankful to Jehovah . ” ​ — Read Acts 10 : 34 , 35 . +What example did Jesus set in showing mildness and patience ? +Then he added : “ If you continue showing favoritism , you are committing sin . ” +Why is it important that we clothe ourselves with love ? +Love is also “ patient and kind ” and “ does not get puffed up . ” +Paul said that without love , he was “ nothing . ” +The love is in this respect , not that we have loved God , but that he loved us and sent his Son as a propitiatory sacrifice for our sins . ” +Jesus said : “ No one has love greater than this , that someone should surrender his life in behalf of his friends . ” +Let us consider how we can do so . +John wrote : “ Little children , we should love , not in word or with the tongue , but in deed and truth . ” +But then I asked myself , ‘ How can I imitate Jesus in dealing with this person ? ’ +After reflecting on what Jesus would have done , I decided to let the matter go and not make an issue of it . +Later , I learned that my coworker had been coping with a serious health problem and was under a lot of stress . +I concluded that she probably did not really mean what she wrote . +Reflecting on Jesus ’ example of showing love even when provoked helped me to show similar love to my coworker . ” +By leaving heaven , “ he emptied himself ” in our behalf , even “ to the point of death . ” +PEACE : “ Putting up with one another in love ” allows us to enjoy “ the uniting bond of peace . ” +Would you not agree that such a peaceful spirit is truly unique in today’s divided world ? +Paul wrote : “ Love builds up . ” +The following day , they had outgrown the venue . ” +Below the picture was the caption : “ Invasion of the streets . ” +One congregation wrote , “ The only line that passes near this place is a telegraph line . ” +In Mexico , 2,262,646 people attended the Memorial in 2016 . +Matthew’s account focuses on events that involved Joseph . +1 , 2 . ( a ) What can result from a lack of self - control ? +Pray for wisdom to say or do the right thing . +How can you prepare yourself to resist temptations ? +What experience did one brother have , and why are our reactions in similar situations important ? +In what ways can parents help their children to develop self - control ? +How can you help your children to develop self - control ? +( Read Exodus 34 : 5 - 7 . ) +( b ) Why should you be interested in what the Bible says about compassion ? +( a ) Why did Jehovah send angels to Sodom ? +( Read Exodus 22 : 26 , 27 . ) +We read : “ Jehovah the God of their forefathers kept warning them by means of his messengers , warning them again and again , because he felt compassion for his people and for his dwelling place . ” +“ He started to teach them many things . ” +Instead , we need to do all we can now to help people . +One meaning of compassion is “ to suffer together . ” +“ Be courageous and strong and go to work . +How can young ones and their parents show courage ? +1 , 2 . ( a ) What important assignment did Solomon receive ? +To succeed , Solomon would need to be courageous and go to work . +What could Solomon learn about courage from his father ? +( Read 1 Chronicles 28 : 20 . ) +How did Jesus ’ courage affect the apostles ? +Let us consider two areas of life where we need courage : in our family and in the congregation . +( b ) How can young ones imitate Moses ’ example ? +He will help them provide for the needs of their families . +She writes : “ Growing up , I was really shy . +I could barely talk to people at the Kingdom Hall , much less knock on the doors of complete strangers . ” +With the help of her parents and others in the congregation , this young Christian achieved her goal of becoming a regular pioneer . +How can Psalm 37 : 25 and Hebrews 13 : 5 help parents ? +( Read Psalm 37 : 25 ; Hebrews 13 : 5 . ) +A brother who has two children wrote : “ Many parents expend much effort and resources helping their children reach goals in such areas as sports , recreation , and education . +It makes so much more sense to expend effort and resources in helping our children reach goals that will help them to maintain a good standing with Jehovah . +It has been a great source of satisfaction not only to see our children reach spiritual goals but to share the journey with them . ” +Give examples of courage in the Christian congregation . +( a ) How can baptized brothers be courageous ? +( Read Philippians 2 : 13 ; 4 : 13 . ) +We urge all baptized brothers to be courageous and work hard for the congregation ! +Therefore , “ be courageous . . . and go to work . ” +1 , 2 . ( a ) What would life be like without the Bible ? +The apostle Peter quoted Isaiah 40 : 8 . +( Read 1 Peter 1 : 24 , 25 . ) +( a ) How do languages change over time ? +( Read Revelation 14 : 6 , footnote . ) +Later printings also used the word “ LORD ” in capital letters in some verses in the Christian Greek Scriptures . +Why are we grateful for the New World Translation ? +( b ) What is the Greek Septuagint ? +( Read Psalm 119 : 162 - 165 . ) +See the article “ Do You Need to Learn Hebrew and Greek ? ” +in the November 1 , 2009 , issue of The Watchtower . +On April 3 , 2017 , a Bible museum opened at our world headquarters in Warwick , New York , U.S.A . +The permanent gallery of this museum is entitled “ The Bible and the Divine Name . ” +We invite you to visit the Bible museum and the other museums located at headquarters . +Please go to www.jw.org to make a reservation for your visit . +Look under ABOUT US > OFFICES & TOURS . +He read 2 Corinthians 1 : 3 , 4 , which says : “ The Father of tender mercies and the God of all comfort . . . comforts us in all our trials . ” +What responsibility do brothers who teach from the platform have ? +Are we not grateful to Jehovah for his written Word , the Bible ? +See the box “ A Turning Point . ” +Take time to explain , illustrate , and apply verses that you read +“ A turning point came about 15 years after I was baptized . +During a talk at the Kingdom Hall . . . , the speaker referred to James 1 : 23 , 24 . +“ A few days later , I read a scripture that changed my life . +The verse was Isaiah 1 : 18 , where Jehovah is quoted as saying : ‘ Come , now , you people , and let us set matters straight between us . . . . +Though the sins of you people should prove to be as scarlet , they will be made white just like snow . ’ +I felt as if Jehovah were speaking to me , saying : ‘ Come on , Vicky , let’s set matters straight between us . +I know you , I know your sins , I know your heart ​ — and I love you . ’ +“ I was unable to sleep that night . +Yet , I was , in effect , saying to him : ‘ Your love is not great enough to reach me . +Your Son’s sacrifice is not enough to cover me . ’ +But now , at last , by meditating on this gift of the ransom , I began to feel loved by Jehovah . ” +These articles discuss Zechariah’s sixth , seventh , and eighth visions . +First , let me tell you about my background . +I WAS born in 1923 in Hemsworth , a town in Yorkshire , England . +The following year , I was appointed as a special pioneer , along with Mary Henshall . +We were sent to unassigned territory in the county of Cheshire . +It is a great joy to know that there are now many Witnesses in that area . +My brother and his wife , Lottie , were already serving as special pioneers in Northern Ireland , and in 1952 the four of us attended a district convention in Belfast . +That night the four of us slept in the car . +Amazingly , we had no problem parking the trailer on the property of friendly farmers . +We really enjoyed our assignment in the circuit work . +The first international convention in Ireland was held in Dublin in 1965 . +A total of 3,948 attended , and 65 got baptized . +Arthur greeting Nathan Knorr on his arrival for the 1965 convention +Arthur releases My Book of Bible Stories in Gaelic in 1983 +In 2011 our lives changed completely when the Britain and Ireland branches were merged and we were assigned to London Bethel . +In the last few years , I have felt heartbreak , depression , and grief . +In the past , Arthur had always been there for me . +But when you go through these kinds of situations , you draw closer to Jehovah . +“ We should love , not in word or with the tongue , but in deed and truth . ” ​ — 1 JOHN 3 : 18 . +What is “ love free from hypocrisy ” ? +How has Jehovah shown unselfish love for humans ? +Jehovah showed love for humans even before he created Adam and Eve . +In what ways can we show genuine love ? +6 , 7 . ( a ) What is “ love free from hypocrisy ” ? +( Read Matthew 6 : 1 - 4 . ) +How can we show genuine love when we offer hospitality ? +( Read 1 John 3 : 17 . ) +( Read Romans 12 : 17 , 18 . ) +How can we show that our forgiveness is genuine ? +What is the “ sword ” that Jesus said he would bring ? +How can you maintain your loyalty to Jehovah if your relatives oppose true worship ? +3 , 4 . ( a ) What effect do Jesus ’ teachings have ? +Jesus said : “ Do not think I came to bring peace to the earth ; I came to bring , not peace , but a sword . +For I came to cause division , with a man against his father , and a daughter against her mother , and a daughter - in - law against her mother - in - law . +How can Christians teach their children to honor an unbelieving parent ? +Instead , explain to them that each person must choose whether to serve Jehovah . +“ Let your words always be gracious , ” says the Bible . +( Read 1 Peter 3 : 1 , 2 , 16 . ) +How can you overcome feelings of guilt about displeasing your relatives ? +One of the many metropolitan witnessing stands in Lagos , the most populous city in Africa . +What was the situation of the Israelites at that time ? +( Read Zechariah 1 : 3 , 4 . ) +Chapter 5 of Zechariah begins with an unusual vision . +( Read Zechariah 5 : 1 , 2 . ) +8 - 10 . ( a ) What is an oath ? +What can we learn from Zechariah’s sixth vision ? +( Read Zechariah 5 : 5 - 8 . ) +( Read Zechariah 5 : 9 - 11 . ) +How do you feel about the greatest building work going on today ? +( Read Zechariah 6 : 1 - 3 . ) +Jehovah still uses his angels to protect and strengthen his people +7 , 8 . ( a ) What do the two mountains represent ? +( b ) Why are the mountains made of copper ? +Who are the riders of the chariots , and what is their assignment ? +( Read Zechariah 6 : 5 - 8 . ) +( Read Zechariah 6 : 9 - 12 . ) +Finally , true worship will be fully restored ! +Jehovah will never forget the love that we show for him ! +IN A small town in Gujarat , India , John’s father was baptized as one of Jehovah’s Witnesses in the late 1950 ’ s . +She noticed John’s injured finger and offered to help . +He went to his priest and asked him the same two questions . +Show me where the Bible says that Jesus is not God . +Show me where it says that you should not worship Mary . +We can learn valuable lessons from the arrangement of the cities of refuge in ancient Israel . +What role does singing play in true worship ? +But a song makes you feel a thought . ” +( b ) How should we sing praises to Jehovah , and who should take the lead ? +Read the lyrics out loud in a strong , confident voice . +( a ) How can opening our mouth wider help our singing ? +( a ) What announcement was made at the 2016 annual meeting ? +Practice the songs during family worship ( See paragraph 18 ) +( Read Numbers 35 : 24 , 25 . ) +Looking back , he says : “ Sure , I was scared to approach them . +He wrote : “ What a great earnestness your being saddened in a godly way produced in you , yes , clearing of yourselves , yes , indignation , yes , fear , yes , earnest desire , yes , zeal , yes , righting of the wrong ! ” +Once the sin is gone , it’s gone . +As Jehovah said , he takes your burdens away and puts them far away from you . +You will never have to see them again . ” +Why do you want to take refuge in Jehovah ? +How may we imitate Jehovah’s mercy when others need our forgiveness ? +1 , 2 . ( a ) How did Jesus feel about God’s Law ? +( b ) What does this teach us about Jehovah ? +( Read Acts 20 : 26 , 27 . ) +( Read Numbers 35 : 20 - 24 . ) +Go , then , and learn what this means : ‘ I want mercy , and not sacrifice . ’ +For I came to call , not righteous people , but sinners . ” +They were not at Matthew’s home simply to eat . +What lesson from the cities of refuge do you plan to apply ? +Two Christian sisters share the Bible’s message with a merchant in the town of Tipitapa +What loving counsel did the apostle Paul give about worldly thinking ? +What is an example of worldly thinking , and how can we reject it ? +Look out that no one takes you captive by means of the philosophy and empty deception according to human tradition , according to the elementary things of the world and not according to Christ . ” +“ I can be a good person without believing in God . ” +“ You can be happy without religion . ” +Jehovah has the right to make laws for us because he created us . +Jesus said : “ No one can slave for two masters ; for either he will hate the one and love the other , or he will stick to the one and despise the other . +( Read 1 Thessalonians 2 : 13 , 19 , 20 . ) +“ Humans can solve their own problems . ” +How can we win the prize as a family ? +( b ) What helps us to keep our eyes on the prize ? +How can we protect ourselves in dangerous situations ? +To deaden immoral desires , we need to reject immoral entertainment . +( Read Ecclesiastes 7 : 21 , 22 . ) +10 , 11 . ( a ) Why is jealousy dangerous ? +God’s Word says : “ Love is patient and kind . +Could we be as kind and loving as Jonathan ? +You husbands , keep on loving your wives and do not be bitterly angry with them . +You children , be obedient to your parents in everything , for this is well - pleasing to the Lord . +What should a Christian husband do if his unbelieving wife does not respect him ? +God’s Word says : “ A man of knowledge restrains his words , and a discerning man will remain calm . ” +These articles should strengthen your belief in the resurrection . +“ Our friend has fallen asleep , but I am traveling there to awaken him . ” ​ — JOHN 11 : 11 . +What Bible accounts gave Martha confidence in the resurrection ? +Like Martha , what joyful event are you looking forward to ? +She said : “ I know he will rise . ” +Later , her son got sick and died . +God heard Elijah , and the child came back to life . +( Read 1 Kings 17 : 17 - 24 . ) +( Read 2 Kings 4 : 32 - 37 . ) +How did Peter help a Christian sister who had died ? +One time , the apostle Paul was at a meeting in an upper room in Troas , in what is now northwest Turkey . +A young man named Eutychus was listening , seated at a window . +Also , Jehovah said that the blessing would come “ through Isaac . ” +Of course , that did not mean that God could not resurrect a person . +( Read Job 14 : 13 - 15 . ) +( b ) Why is the resurrection so important ? +But would you mention the resurrection as one of your most cherished beliefs ? +( Read 1 Corinthians 15 : 12 - 19 . ) +However , we know that Jesus was resurrected . +How was Jesus involved in the fulfillment of Psalm 118 ? +“ The builders rejected ” the Messiah ( See paragraph 7 ) +How could Jesus become “ the chief cornerstone ” ? +If Jesus was rejected and killed , how could he become “ the chief cornerstone ” ? +( a ) What did Psalm 16 : 10 foretell ? +You will not allow your loyal one to see the pit . ” +( Read Acts 2 : 29 - 32 . ) +( Read Acts 2 : 33 - 36 . ) +( Read Acts 13 : 32 - 37 , 42 . ) +There are details about “ the times or seasons that the Father has placed in his own jurisdiction . ” +Paul wrote that “ Christ has been raised from the dead , the firstfruits of those who have fallen asleep in death . ” +What will happen to some anointed ones during Christ’s presence ? +For if we have faith that Jesus died and rose again , so too God will bring with him those who have fallen asleep in death . . . +We the living who survive to the presence of the Lord will in no way precede those who have fallen asleep in death ; because the Lord himself will descend from heaven with a commanding call , . . . and those who are dead in union with Christ will rise first . +Anointed ones who are alive during the great tribulation will be “ caught away in clouds . ” +If you come back , I will break your legs . ” +I was born on July 29 , 1929 , and grew up in a village in the province of Bulacan in the Philippines . +I enjoyed reading the Bible , especially the four Gospels . +Doing so made me want to follow Jesus ’ example . ​ — John 10 : 27 . +About that time , my parents asked me to come back home . +One older Witness came to our house and explained what the Bible says about “ the last days . ” +He invited us to attend a Bible study in a nearby village . +We spent most of that night discussing the Bible . +I replied , “ Yes , I do . ” +I knew that I wanted to “ slave for the Master , Christ . ” +We went to a nearby river , and two of us got baptized on February 15 , 1946 . +The Cruz family invited me to live with them in Angat . +He spoke in English , and afterward I gave a summary of his talk in Tagalog . +In the early morning , I helped in the kitchen . +After I graduated , I was temporarily assigned as a special pioneer in the Bronx in New York City . +We spent the first week after our wedding visiting a congregation on Rapu Rapu Island . +We were even able to buy the property from the man who had said that “ Chinese do not sell . ” +The newly fertilized egg might grow in a Fallopian tube ( an ectopic pregnancy ) or might travel into the womb . +That would end the pregnancy at an early stage . +A guide from England’s National Health Service reports : “ IUDs with more copper are more than 99 % effective . +This means that fewer than one in 100 women who use an IUD will get pregnant in one year . +IUDs with less copper will be less effective . ” +( a ) What does “ persuaded to believe ” mean ? +( b ) How do we know that Timothy was persuaded to believe the good news about Jesus ? +Frankly , I would worry if she accepted something without asking questions . ” +Does the Bible’s explanation make sense to them ? +What should be an important part of your teaching ? +Stephanie , the mother of three daughters , says : “ Ever since my children were very young , I have had to ask myself , ‘ Do I talk to my children about why I am convinced of Jehovah’s existence , his love , and the rightness of his ways ? +Can my children clearly see that I really love Jehovah ? ’ +I can’t expect my children to be persuaded unless I am . ” +The Bible says that “ foolishness is bound up in the heart of a child . ” +That kind of wisdom is necessary for salvation . +How can parents help their children to become “ wise for salvation ” ? +Look under BIBLE TEACHINGS > BIBLE STUDY TOOLS . +How can you work out your own salvation ? +They may have been raised in the truth . +But in a few years when the urge to have sex becomes stronger , he or she needs to be thoroughly convinced that obeying Jehovah’s laws is always the best choice . ” +( b ) What can you learn from Philippians 4 : 11 - 13 ? +What does it mean to work out your own salvation “ with fear and trembling ” ? +What tools have helped you in your personal study ? +I should feel free to do the same . +So I’ll mention something in passing , such as , ‘ I was teaching the Bible the other day , and . . . ’ +Then I continue with the point of my story . +Although the immediate point is not in itself about the Bible , often others are curious about what I do when teaching the Bible . +The more I use this approach , the easier it gets . +And afterward , I always feel great ! ” +We are the only Witnesses they are exposed to . +So the way we act can determine how they will respond . +What if we are shy or timid or have a hard time speaking up about our faith , or what if we cringe when we do speak up ? +Then they may look at us as if we aren’t proud of who we are . +They may even respond unkindly because of our lack of confidence . +However , if we talk with ease and assurance about what we believe , making it a normal part of conversation , it’s more likely that they will respect us . ” +Jesus said : “ If anyone wants to come after me , let him disown himself and pick up his torture stake and keep following me . ” +For more suggestions , see “ Young People Ask ​ — Why Should I Pray ? ” +What lesson can we learn from Isaiah 40 : 26 ? +No one has been able to count all the stars in the universe . +How can we be sure that Jehovah is able to strengthen us ? +And he added : “ You will find refreshment for yourselves . +But how do we feel when we return ? +The information was presented in such an empathetic and concerned way that I was moved to tears . +I was reminded that the meetings are where I need to be . ” +What did the apostle Paul mean when he wrote : “ When I am weak , then I am powerful ” ? +He sang : “ With your help I can charge against a marauder band ; by God’s power I can scale a wall . ” +Or will we follow the Bible’s wise advice to settle matters quickly ? +You might begin the conversation by saying something like this , “ Perhaps I am being overly sensitive , but when you spoke to me yesterday , I felt . . . ” +“ Finally I confessed my sin to you , ” he wrote , “ and you pardoned the error of my sins . ” +( 4 ) Will there ever be a final Memorial ? +( Read John 3 : 16 ; 17 : 3 . ) +( a ) What did Jesus pray for on the night of the first Lord’s Evening Meal ? +( b ) What shows that Jehovah has answered Jesus ’ prayer ? +( Read John 17 : 20 , 21 . ) +( Read Ezekiel 37 : 15 - 17 . ) +How can we promote unity among God’s people ? +How can we show that we are “ putting up with one another in love ” ? +How do we know that there will be a final Memorial ? +At Riberalta , Beni , two pioneer couples load literature onto an airplane . +Why does Jehovah expect us to use our valuable things to give back to him ? +How does the organization use the money that is donated today ? +What do we show Jehovah when we support his work ? +( Read 2 Corinthians 8 : 18 - 21 . ) +Your donations help our worldwide work ( See paragraphs 14 - 16 ) +As a result , we sometimes feel isolated , and we easily forget the scope of Jehovah’s work . +But as soon as we watch the various programs on JW Broadcasting , we remember that we are part of an international brotherhood . +Our dear local brothers and sisters are very excited about JW Broadcasting . +We often hear them say that after watching the monthly programs , they feel close to the members of the Governing Body . +Now they are prouder than ever to be part of God’s organization . ” +( Read Proverbs 11 : 24 , 25 . ) +A man who loves his wife loves himself , for no man ever hated his own body , but he feeds and cherishes it . ” +How can we avoid becoming lovers of ourselves ? +Paul wrote that people would be “ lovers of money . ” +Some years ago , a pioneer in Ireland spoke to a man about God . +What does the Bible say about riches and poverty ? +He wrote : “ So that I do not become satisfied and deny you and say , ‘ Who is Jehovah ? ’ ” +She would say , ‘ I have the greatest boss ever ! ’ +Now that I too am pioneering , we both work for the same Person , Jehovah . ” +How can we avoid becoming lovers of money ? +It means that they do not love God at all . ” +How can we avoid becoming lovers of pleasures ? +We also know that love “ does not brag , does not get puffed up . ” +I could see that they cared for me , and that made me want to please them . ” +( Read Isaiah 11 : 6 , 7 . ) +You can read some of their experiences in the series “ The Bible Changes Lives , ” found on jw.org . +We should let others know that we are Jehovah’s Witnesses . +3 Imitate the Faith and Obedience of Noah , Daniel , and Job +28 Joy ​ — A Quality We Acquire From God +9 , 10 . ( a ) How can we imitate Noah’s faith and obedience ? +( Read Malachi 3 : 17 , 18 . ) +( b ) How did Jehovah view Daniel ? +( b ) What can parents today learn from Daniel’s parents ? +( Read Job 1 : 9 , 10 . ) +19 , 20 . ( a ) How can we imitate Job’s faith and obedience ? +1 - 3 . ( a ) What will help us to remain faithful to God during these last days ? +( Read Daniel 6 : 7 - 10 . ) +( Read Job 31 : 24 - 28 . ) +( Read Psalm 11 : 5 ; 26 : 4 . ) +So ask yourself , ‘ Do I know Jehovah as well as Noah , Daniel , and Job did ? ’ +Noah’s great - grandfather Enoch also “ kept walking with the true God . ” +Jesus said : “ Abraham your father rejoiced greatly at the prospect of seeing my day . ” +It’s hard for me to express the joy we feel . ” +For it is to us God has revealed them through his spirit . ” +Jesus said : “ These things I have spoken to you , so that my joy may be in you and your joy may be made full . ” +( 3 ) How will our effort to have “ the mind of Christ ” help us to be spiritual people ? +( Read 1 Corinthians 2 : 14 - 16 . ) +What does the Bible say about spiritually - minded people ? +What can we learn from the example of Jacob ? +What can we learn from the example of Mary ? +( Read Luke 1 : 46 - 55 . ) +( Read Isaiah 63 : 9 ; Mark 6 : 34 . ) +Rachel , a sister in Brazil , says : “ I loved to follow the world’s fashions . +As a result , I did not dress very modestly . +But learning the truth moved me to make the needed effort to be a spiritual person . +Making changes was not easy , but I became happier and found real purpose in life . ” +So being like Jesus makes us more like Jehovah . +They said : “ We are witnesses of all the things he did . ” +How will having the mind of Christ affect your daily life ? +He says : “ I never did anything wrong , but I was just going through the motions . +I looked spiritually strong , being at all the meetings and serving as an auxiliary pioneer a few times a year . +He says : “ It was as if I knew nothing . +I thought to myself , ‘ If I am going to be my wife’s spiritual head , I have to do something . ’ ” +He says : “ I studied the Bible and studied and studied some more , and the pieces started to fit together . +I got understanding and , most important , developed a close relationship with Jehovah . ” +( 3 ) How can strong spirituality help us in our daily life ? +( b ) What is our goal when we study and meditate ? +( b ) What Bible example can we imitate ? +12 , 13 . ( a ) What will help us to apply Romans 15 : 5 ? +( Read 2 Peter 1 : 5 - 8 . ) +How will being spiritually - minded affect our life ? +What are the “ dead works ” that we should avoid ? +Will my decisions help me to set spiritual goals ? +Why do you want to move forward spiritually ? +The apostle Peter urged Christians in the first century : “ Be hospitable to one another . ” +Rise , get baptized . ” ​ — ACTS 22 : 16 . +What do Christian parents want to be sure of before their children get baptized ? +“ FOR months I kept telling Dad and Mom that I wanted to be baptized , and they often talked to me about it . +On December 31 , 1934 , the day came for this momentous event in my life . ” +5 , 6 . ( a ) The Bible’s description of Timothy leads us to what conclusion about his baptism ? +( Read Colossians 1 : 9 , 10 . ) +He told Jehovah that he was so happy about his little girl’s decision to dedicate her life to Him . ” +( Read 1 Peter 3 : 20 , 21 . ) +Why do we not pressure anyone to get baptized ? +If you are a parent , you may have asked yourself : ‘ Is my child really ready to get baptized ? +The first question is , “ On the basis of the sacrifice of Jesus Christ , have you repented of your sins and dedicated yourself to Jehovah to do his will ? ” +How can we be hospitable at our Christian meetings ? +( Read 3 John 5 - 8 . ) +He writes : “ I hesitated initially because we were newly married and living in a small house . +But having students stay with us was truly a joyous experience . +As newlyweds , we were able to see how happy a couple can be when they serve Jehovah and pursue spiritual goals together . ” +Why may those who are new to your congregation need hospitality ? +( Read Luke 10 : 41 , 42 . ) +One evening my wife was particularly homesick , and my efforts to help were not working . +Then , about 7 : 30 p.m . , we heard a knock on the door . +There stood a Bible student who brought us three oranges . +She had come to welcome the new missionaries . +We invited her in and gave her a glass of water . +If you feel anxious about having guests , you are not alone . +An elder in Britain admits : “ There can be a measure of nervousness in preparing for guests . +But as with anything in relation to serving Jehovah , the benefits and satisfaction that result far outweigh any anxiety . +I have enjoyed simply sitting down with guests over coffee and talking . ” +Another elder writes : “ Having friends from the congregation to my home helps me to understand them better and gives me time to get to know them , especially how they came into the truth . ” +The wife of one of the instructors really put me at ease . +She said that when she and her husband are serving in the traveling work , their best weeks are those spent staying with a spiritual person who may not have much materially but who has the same focus as they have ​ — serving Jehovah and keeping life simple . +This reminded me of what my mum used to say to us as children : ‘ Better a dish of vegetables where there’s love . ’ ” +( Read Proverbs 25 : 21 , 22 . ) +Hosts usually prepare well for their guests ( See paragraph 20 ) +The psalmist David asked : “ O Jehovah , who may be a guest in your tent ? ” +It is also important to respect local customs . +Why is it so important to “ be hospitable to one another ” ? +Two brothers offer a tract to a painter on the bridge in front of Kaštilac , a fortress built in the 16th century , near the city of Split +( Read Titus 2 : 11 - 14 . ) +The elder recalled : “ Graham had a problem with pride . +He was critical of the elders who had been involved in his disfellowshipping . +So for the next few studies , we discussed scriptures on pride and its effects . +Graham began to see himself clearly in the mirror of God’s Word , and he did not like what he saw ! +After acknowledging that he had been blinded by a ‘ rafter ’ of pride and that his critical attitude was his problem , he began to change quickly for the better . +He started to attend Christian meetings regularly , to study God’s Word earnestly , and to make daily prayer a habit . +‘ I’ve known the truth for years , ’ he said , ‘ and I’ve even served as a pioneer . +The apostle Peter wrote : “ Shepherd the flock of God under your care , serving as overseers , not under compulsion , but willingly before God ; not for love of dishonest gain , but eagerly ; not lording it over those who are God’s inheritance , but becoming examples to the flock . ” +How can parents raise their children in the discipline of Jehovah ? +( Read Hebrews 12 : 5 - 11 . ) +How does a child develop self - discipline ? +4 , 5 . ( a ) Why is self - discipline an important part of “ the new personality ” ? +How can we become better students of God’s Word ? +One brother wrote : “ I am filled with gratitude for the way my parents raised me . +( b ) How did one family benefit from the parents ’ obedience to Jehovah ? +( b ) How can we make the elders ’ work more pleasant for them ? +They did not berate me or criticize me , but they encouraged me and strengthened me . +After every congregation meeting , no matter how busy they were , at least one of them would ask how I was . +Because of my past , I found it difficult to feel worthy of God’s love . +Time and time again , however , Jehovah has used the congregation and the elders to confirm his love for me . +I pray that I will never let him go . ” +If you turn to doing good , will you not be restored to favor ? +But if you do not turn to doing good , sin is crouching at the door , and its craving is to dominate you ; but will you get the mastery over it ? ” +So let us “ listen to discipline and become wise . ” +People around the world are demanding more freedom . +15 Imitating Jehovah ​ — A God Who Gives Encouragement +“ If the Son sets you free , you will be truly free . ” ​ — JOHN 8 : 36 . +( Read 1 Chronicles 29 : 11 , 12 . ) +To enjoy the ‘ good , ’ humankind must trust God and obey him . +If they disobey , they will be left to decide for themselves what is good . . . and what is not good . ” +Like that pilot , Adam and Eve wanted to do things their own way . +He said : “ If you remain in my word , you are really my disciples , and you will know the truth , and the truth will set you free . ” +Why can the freedom that Jesus promised make us “ truly free ” ? +( Read Romans 8 : 1 , 2 , 20 , 21 . ) +( c ) What questions do we need to answer ? +( Look under INTERVIEWS AND EXPERIENCES > ENDURING TRIALS . ) +All things are lawful , but not all things build up . ” +What example did Noah and his family set for us ? +They lived in a violent and immoral world . +“ Noah did according to all that God had commanded him . +What has Jehovah commanded us to do today ? +( Read Luke 4 : 18 , 19 . ) +Now I understood better what James 4 : 8 means : ‘ Draw close to God , and he will draw close to you . ’ +I knew I had found what I was looking for , a satisfying purpose in life . ” +A special pioneer couple preach in a remote area near the city of Balykchy +( b ) How did Jehovah encourage his Son ? +How did Hezekiah encourage the military chiefs and the people of Judah ? +How did Peter ‘ strengthen his brothers ’ ? +But I have made supplication for you that your faith may not give out ; and you , once you have returned , strengthen your brothers . ” ​ — Luke 22 : 31 , 32 . +Whom can we encourage today , and why ? +How can the elders give counsel in an encouraging way ? +Parents , are you training your children to encourage others ? +She also shared with me her own experience with the kind of test I was going through , and I felt less alone . ” +King Solomon wrote : “ A word spoken at the right time ​ — how good it is ! +A cheerful glance makes the heart rejoice ; a good report invigorates the bones . ” +For you have made me rejoice , O Jehovah , because of your deeds ; because of the works of your hands I shout joyfully . ” +You are never too young to set goals . +Proverbs 21 : 5 says : “ The plans of the diligent surely lead to success . ” +The earlier you make plans by setting good goals , the sooner you will have success . +With a university degree in law , I could have earned a lot of money , but I would have had little chance of finding part - time work . ” +17 , 18 . ( a ) What does Jehovah want for young people today ? +I was born in a one - room log cabin in a very small town called Liberty , Indiana , U.S.A . +Later , my mother gave birth to my two younger brothers and my younger sister . +DURING my school years , not much changed . +The town of Liberty was surrounded by small farms , and the basic crop was corn . +She took us to the Baptist church every Sunday . +They wanted me to make the military my career . +This time , however , they invited me to come to a Congregation Book Study , a small meeting for Bible study and discussion that was held in their home . +I told them I would think about it . +I couldn’t believe how much they knew about the Bible ! +Years before , when I asked my mother about Jehovah’s Witnesses , she simply said , “ Oh , they worship some old man named Jehovah . ” +But I now felt that my eyes were being opened ! +I started pioneering the next year , in 1958 . +Gloria was a jewel then , and she is a jewel today . +Gloria and I got married in February of 1959 . +A dear brother , Simon Kraker , interviewed us . +He told us that Bethel was not accepting married couples at that time . +Most of our jobs paid three dollars a day . +Each week , Gloria did ironing for one family . +I remember one time when we stopped at a gas station . +On the other hand , we had wonderful times with the brothers , and we loved our ministry ! +Meanwhile , I started a study with the couple’s daughter and her husband . +Mother and daughter both decided to serve Jehovah and got baptized . +We had dear friends in the white congregation . +The Ku Klux Klan ( KKK ) , an organization that promotes racism and violence , was very active then . +In 1962 , I was invited to attend the Kingdom Ministry School at South Lansing , New York . +However , a telephone company in Pine Bluff had interviewed me for a job . +If they hired me , I would be the first black man to work for that company . +I had no money to travel to New York . +She said , “ Go to school and learn as much as you can , and come back and teach us ! ” +I am so glad that I did not take that job ! +Here is how Gloria remembers our time in Pine Bluff : “ I fell in love with the territory ! +So we would go in the house - to - house work in the morning and then conduct Bible studies the rest of the day , sometimes until 11 o’clock at night . +While we were pioneering in Pine Bluff , we applied to become special pioneers . +Brother Leon Weaver , now the coordinator of the United States Branch Committee , was appointed to serve as a circuit overseer at the same time . +I was nervous about becoming a circuit overseer . +After I was appointed , Brother Thompson was the first district overseer I served with . +In those days , a circuit overseer received little training . +I remember saying to Gloria , “ Does he really have to leave now ? ” +One time , the KKK held a march in a town we were visiting in Tennessee . +The following month , we began our Bethel service . +Gloria was a jewel when I married her , and she still is +Then in 1999 , I was appointed to be a member of the Governing Body . +Isaiah 32 : 17 says : “ The result of true righteousness will be peace , and the fruitage of true righteousness will be lasting tranquillity and security . ” +Second , we must pray for God’s holy spirit . +If the house is deserving , let the peace you wish it come upon it ; but if it is not deserving , let the peace from you return upon you . ” +So I greeted her in her own tongue . +Taken by surprise , she asked me , ‘ What is the reason for your visit ? ’ +I politely told her that I wished to see the High Commissioner . +She telephoned the official , who came out to meet me and greeted me in the local language . +After that , he carefully listened to me as I explained to him the peaceful activities of the Witnesses . ” +“ As for that on the fine soil , these are the ones who . . . bear fruit with endurance . ” ​ — LUKE 8 : 15 . +What will help us to keep bearing fruit with endurance ? +( See opening picture . ) ( b ) What did Jesus say about preaching in his “ home territory ” ? +“ Their faithfulness encourages me to persevere and to be courageous in my own ministry . ” +What three questions will we consider , and why ? +Still , there is no other work I would rather do . ” +Read John 15 : 1 - 5 , 8 . +The preaching of the good news of God’s Kingdom . +Read Luke 8 : 5 - 8 , 11 - 15 . +How do we “ bear fruit with endurance ” ? +For I bear them witness that they have a zeal for God , but not according to accurate knowledge . ” +When we returned , passersby asked , ‘ What happened ? +Why are you determined to “ bear fruit with endurance ” ? +“ My Father is glorified in this , that you keep bearing much fruit and prove yourselves my disciples . ” ​ — JOHN 15 : 8 . +( Read John 15 : 1 , 8 . ) +Jesus told his apostles : “ My Father is glorified in this , that you keep bearing much fruit . ” +( b ) How do you feel about having the privilege to sanctify God’s name ? +It gives me the desire to keep on preaching . ” +( a ) What reason for preaching is mentioned at John 15 : 9 , 10 ? +How do we show that we want to remain in Christ’s love ? +In the Bible , Noah is described as “ a preacher . ” +( a ) What reason for preaching is mentioned at Matthew 22 : 39 ? +They need a chance to hear the good news . ” +13 , 14 . ( a ) What gift is mentioned at John 15 : 11 ? +( a ) What gift is mentioned at John 14 : 27 ? +( a ) What gift is mentioned at John 15 : 15 ? +( b ) How could the apostles remain Jesus ’ friends ? +( Read John 15 : 14 - 16 . ) +We can be sure that Jehovah answers our prayers for help ( See paragraph 18 ) +The apostle Peter describes Satan the Devil as “ a roaring lion , ” and John calls him a “ serpent ” and a “ dragon . ” +With their help , we can resist our enemy . +Those who believe this lie spend their lives serving “ Riches ” rather than God . +We need to know our enemy , but we do not need to be terrified by him . +If we oppose him , he will flee from us . +What are the pieces of the spiritual armor ? +And my parents and my friends know that they can trust me . ” +But you always get outstanding benefits : You gain confidence , you feel closer to Jehovah , and you earn the respect of those who love you . ” +The belt of truth ( See paragraphs 3 - 5 ) +For a while , I lost my confidence and felt depressed . ” +Some of my ‘ friends ’ began taking drugs ; others dropped out of school . +It was sad to see how their lives turned out . +“ I remind myself that I bear Jehovah’s name and that temptation is just Satan’s way of shooting at me . +When I win a struggle , I feel better about myself . ” +The breastplate of righteousness ( See paragraphs 6 - 8 ) +Now I’m happy to witness to my peers . ” +Then I’m able to think of what will help them . +When I am prepared , I can talk to them about what will specifically benefit them . ” +I make sure that I’ve read all the material published for young people . +That way I can direct my peers to something in the Bible or on jw.org that will help them . ” +Feet shod in readiness ( See paragraphs 9 - 11 ) +What are some of Satan’s “ burning arrows ” ? +Now , though , I prepare for the meetings and try to answer two or three times . +It’s difficult , but I feel much better when I do . +And the brothers and sisters are so encouraging . +I always come away from the meetings knowing that Jehovah loves me . ” +The large shield of faith ( See paragraphs 12 - 14 ) +The helmet of salvation ( See paragraphs 15 - 18 ) +I’ve found that people respond well when they see that you are passionate about the Bible and are doing your best to help them . ” +The sword of the spirit ( See paragraphs 19 - 20 ) +With Jehovah’s help , we can stand firm against him ! diff --git a/benchmarks/sn-en - Copy/jw300-baseline/test.sn b/benchmarks/sn-en - Copy/jw300-baseline/test.sn new file mode 100644 index 0000000..65e5fcf --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/test.sn @@ -0,0 +1,2724 @@ +Nokuti ruoko rwenyu rwakanga ruchirema pamusoro pangu masikati nousiku . ” +Mamwe amazita ari munyaya ino akachinjwa . +Mamwe mazita ari munyaya ino achinjwa . +Uyu ndiwo murayiro mukuru pane yose uye wokutanga . ” +Zviri pachena kuti vanhu vanoda kubatsirwa naMwari . +“ Nyika yose iri musimba rewakaipa . ” +Rakabudiswa neZvapupu zvaJehovha asi iye zvino harichadhindwi . +Ndichamuitira mubatsiri , kuti ave mukwanisi wake . ” +( Tarisa pakanzi ZVINODZIDZISWA NEBHAIBHERI > MIBVUNZO YEBHAIBHERI INOPINDURWA ) +Kuda kwenyu ngakuitwe panyika , sezvakunoitwa kudenga . ” +© 2016 Watch Tower Bible and Tract Society of Pennsylvania +Magwaro anobva muShanduro yeNyika Itsva yeMagwaro Matsvene , kunze kwokunge pataurwa kuti pane pamwe paatorwa . +“ Kuzvidya mwoyo kuri mumwoyo momunhu ndiko kuchaukotamisa , asi shoko rakanaka ndiro rinoita kuti ufare . ” +Ndichakusimbisa . +© 2017 Watch Tower Bible and Tract Society of Pennsylvania +“ Vakarurama vachagara nhaka yenyika , vachagara mairi nokusingaperi . ” ​ — Pisarema 37 : 29 . +© 2018 Watch Tower Bible and Tract Society of Pennsylvania +Ini ndinemi mazuva ose kusvikira kumhedziso yetsika yezvinhu . ” +Hamungabatiri Mwari nePfuma . ” +Eya , ona kana uchigona kupindura mibvunzo inotevera : +( b ) Chii chatichakurukura munyaya inotevera ? +Musaidza munhu uri panyika Baba venyu , nokuti mumwe chete ndiBaba venyu , ivo vari kudenga . +Pindai mumufaro watenzi wenyu . ” +( b ) Mibvunzoi yaticharangarira ? +( b ) Chii chichakurukurwa munyaya inotevera ? +Vaida kuva nechokwadi chokuti ndaiziva kuti chisarudzo changu chakanga chakakomba sei . +Jesu akati : “ Hakuno munhu ungauya kwandiri , kana Baba , vakandituma , vasingamukwevi . ” +Chii chichakurukurwa munyaya inotevera ? +Ndinoda kuva pakati pevokutanga kusvika paHoro yoUmambo , uye kubva pakati pevokupedzisira , kana zvichibvira . +Ndinonzwa mufaro womukati pakutaura navanhu vaMwari . +( b ) Ticharangarirei munyaya inotevera ? +Tichakurukurei munyaya inotevera ? +Akarapa mapofu , vaikamhina , vaiva nemaperembudzi , uye matsi . +Sezvinoreva mashoko okuti “ kuronga kubatsira vamwe , ” mipiro yorudzi urwu inonyatsoda kuti mupi wacho aronge . +( b ) Mibvunzoi yatichakurukura munyaya ino ? +Asi mukuru pakati penyu anofanira kuva mushumiri wenyu . +Tichakurukurei munyaya inotevera ? +Uye kutsigira kwehama nehanzvadzi dzangu dzokumudzimu kwandinyaradza chaizvo . +Kana zvakadaro uri kuita zvakanaka . +Nokuti ndine chokwadi kuti rufu kana upenyu kana ngirozi kana hurumende kana zvinhu zviripo zvino kana zvinhu zvichauya kana masimba kana kukwirira kana kudzika kana chimwe chinhu chakasikwa hazvikwanisi kutiparadzanisa norudo rwaMwari rwuri muna Kristu Jesu Ishe wedu . ” +( b ) Chii chatichakurukura munyaya inotevera ? +( b ) Chii chatichakurukura munyaya ino ? +Asi mumwe mupumburu wakazarurwa ; ndiwo mupumburu woupenyu . +□ Chii chinoitika kwatiri kana tafa ? +Mibvunzo ipi yatichakurukura munyaya inotevera ? +( b ) Mibvunzo ipi yatichakurukura iye zvino ? +Tichakurukurei munyaya inotevera ? +Jesu akati : “ Ida muvakidzani wako sezvaunozviita . ” +( Verenga Mateu 24 : 37 - 39 . ) +Tinofanira kutora matanho anoenderana nezvatinenge tanyengeterera . +( Verenga 2 Timoti 3 : 1 - 5 , 13 . ) +( Verenga Pisarema 40 : 8 - 10 . ) +( b ) Watsunga kuitei ? +( b ) Mibvunzo ipi ichakurukurwa munyaya ino ? +( Verenga Pisarema 19 : 7 - 11 . ) +( Verenga VaEfeso 5 : 15 , 16 . ) +Iwo mudzimu wacho unopupurirana nomudzimu wedu kuti tiri vana vaMwari . ” +( Verenga 1 VaKorinde 10 : 13 . ) +( Verenga 2 Makoronike 34 : 1 - 3 . ) +• Chinangwa chaMwari nokuda kwenyika ndechei ? +( Verenga 1 Timoti 6 : 17 - 19 . ) +( Verenga Jakobho 1 : 5 - 8 . ) +( Verenga 2 VaKorinde 5 : 14 , 15 . ) +( Verenga VaRoma 13 : 1 , 2 . ) +( Verenga 1 VaKorinde 2 : 10 . ) +( Verenga 1 VaKorinde 6 : 9 - 11 . ) +Bhaibheri rinoratidza kuti zita raMwari ndiJehovha . +( Verenga 2 VaKorinde 13 : 5 . ) +( Verenga 1 VaKorinde 15 : 58 . ) +Dhokasi “ aiita mabasa mazhinji akanaka okupa varombo zvipo zvokuvanzwira ngoni . ” +Tichakurukurei munyaya ino , uye zvinotibatsirei ? +( Verenga Zvirevo 3 : 5 , 6 . ) +( Verenga VaHebheru 11 : 24 - 27 . ) +“ Shoko raMwari ibenyu uye rine simba . ” — VAH . +Rugwaro urwu runofananidza Shoko raMwari negirazi ratinogona kushandisa kuti tizvione semaonerwo atinoitwa naJehovha . +Ndakatanga kuzvibvunza kana maonero andaizviita angave akasiyana neandaiitwa naJehovha . +Pakutanga zvakandiremera kugamuchira pfungwa iyi . +Ndakanga ndichiri kuzviona sendakaderera zvokusakwanisa kudiwa naJehovha . +Ndakanga ndichiri kufunga kuti Jehovha haandidi , asi ndakatanga kufunga nezvechibayiro chaJesu chorudzikinuro . +Ndakabva ndapengenuka ndokuona kuti Jehovha akanga andiitira mwoyo murefu kwenguva yakareba kwazvo , achindiratidza nenzira dzakawanda kuti aindida chaizvo . +Zvaiita sokuti ndakanga ndiri kudzorera chibayiro chacho kuna Jehovha . +Une zvawakadzidza here pawakaverenga nyaya dzichangopfuura dzeNharireyomurindi ? +( Verenga 2 VaKorinde 1 : 3 , 4 . ) +( Verenga Tito 2 : 3 - 5 . ) +( Verenga VaRoma 7 : 21 - 23 . ) +( Verenga Isaya 63 : 11 - 14 . ) +( Verenga Pisarema 1 : 1 - 3 . ) +( Verenga VaRoma 7 : 21 - 25 . ) +( Verenga 2 Petro 2 : 5 . ) +( Verenga Isaya 48 : 17 , 18 . ) +( Verenga VaEfeso 4 : 1 - 3 . ) +( Verenga VaHebheru 13 : 7 , 17 . ) +Tumirai pamwe netsamba muchiratidza kuti munoda kuzoidzorerwa . +Sezvo mitemo ichisiyana munyika nenyika , zvinokosha kuti mutange mabvunza vanachipangamazano vezvemitemo uye zvemitero musati masarudza nzira yakanaka yokupa nayo . +Zvivako Nenzvimbo : Zvivako kana nzvimbo inotengeseka zvingapiwa sangano rinoshandiswa neZvapupu zvaJehovha sechipo kana kuti , kana iri imba iri kugarwa , anenge apa wacho anogona kuramba achigaramo paanenge achiri mupenyu . +Zvido Zvenhaka : Sangano rinoshandiswa neZvapupu zvaJehovha ringasiyirwa zvivako kana mari sechido chenhaka chepamutemo . +( Verenga VaHebheru 11 : 17 - 19 . ) +MuBhaibheri , makomo anogona kumirira umambo , kana hurumende . +Imi vanababa , musashusha vana venyu , kuti varege kuora mwoyo . ” +Kuti uwane mamwe mashoko , ona chitsauko 3 chebhuku iri , rinonzi Bhaibheri Rimbodzidzisei Chaizvo ? rakabudiswa neZvapupu zvaJehovha +( Verenga 2 Timoti 1 : 7 . ) +Kuti uwane mamwe mashoko , ona chitsauko 8 chebhuku iri rinonzi Bhaibheri Rinombodzidzisei Chaizvo ? +( Verenga 1 VaTesaronika 5 : 1 - 6 . ) +( Verenga Ruka 21 : 1 - 4 . ) +( b ) Munyaya inotevera tichakurukura mibvunzo ipi ? +Panguva iyoyo vari muJudhiya ngavatange kutizira kumakomo , nevaya vari mukati maro ngavabude , uye vaya vari kumaruwa ngavarege kupinda mariri . ” +Ini Jehovha , ndichazvikurumidzisa panguva yazvo . ” +( Verenga Ruka 10 : 29 - 37 . ) +Mibvunzo ipi yatichakurukura munyaya ino ? +Asi usadya muti wokuziva zvakanaka nezvakaipa , nokuti nezuva raunoudya chokwadi uchafa . ” +( Verenga Zvakazarurwa 14 : 6 , 7 . ) +( Verenga 1 VaTesaronika 2 : 13 . ) +Asi achatongera vakaderera nokururama , uye achatsiura nokururama nokuda kwevanyoro venyika . ” +Kuti uwane mamwe mashoko , ona chitsauko 10 chebhuku iri rakabudiswa neZvapupu zvaJehovha +“ Kutenda kutarisira nechivimbo zvinhu zvinenge zvichitarisirwa . ” ​ — VAH . +Jesu akati : “ Pane pfuma yako , ndipowo pachava nomwoyo wako . ” +“ Vanofara vanhu avo Mwari wavo ari Jehovha ! ” ​ — PIS . +( Verenga Jakobho 5 : 14 - 16 . ) +Akanyora kuti : “ Ndiri wenyama , ndakatengeswa kuti ndive muranda wechivi . +( Verenga VaHebheru 10 : 24 , 25 . ) +( Verenga 2 VaKorinde 8 : 13 - 15 . ) +Noa akafamba naMwari wechokwadi . ” — Gen . +Zvirevo 14 : 15 inoti : “ Munhu asina zivo anongotenda mashoko ose , asi munhu ane njere anofunga nezvenhanho dzake . ” +Nokuti joko rangu nderomutsa uye mutoro wangu wakareruka . ” +Rambai muchishivirirana nokukanganwirana nomwoyo wose kana paine munhu ane chikonzero chokunyunyutira mumwe . +Jehovha zvaakakukanganwirai nomwoyo wose , imiwo itai saizvozvo . +Zvino kana ziso rako rokurudyi iroro richiita kuti ugumburwe , ribvise urirasire kure newe . ” +Ndichakusimbisa . Chokwadi ndichakubatsira . Chokwadi ndicharamba ndakakubata zvakasimba noruoko rwangu rworudyi rwokururama . ” +CHII CHIMWE CHATINOGONA KUDZIDZA MUBHAIBHERI ? +Nei zvichikosha chaizvo kuti tirambe tichidanana sehama ? +Nei Pauro akanyorera vaKristu vechiHebheru tsamba ? +( Verenga VaHebheru 10 : 36 - 39 . ) +Nei zvichikosha kuti tizive zviri mubhuku raVaHebheru ? +Rugwaro rwegore rwa2016 rwunoti chii uye nei rwakakodzera ? +Ndima iyoyo ndiyo yakasarudzwa kuti ive rugwaro rwegore rwa2016 . +Rugwaro rwedu rwegore rwa2016 : “ Kudanana kwenyu sehama ngakupfuurire . ” ​ — VaHebheru 13 : 1 +VaKristu vechokwadi vanoti kudanana sehama kuita sei ? +( a ) Ndechipi chikonzero chikuru chokuti tidanane sehama ? +( b ) Chii chimwe chinoita kuti tiwedzere kudanana ? +Jesu akanga ataura nezvekuoma kwaizoita nguva iyoyo . +Tinofanira kuitei iye zvino kutambudzika kukuru kusati kwatanga ? +( a ) Ndepapi patingaratidza kuti tinoda hama dzedu ? +( b ) Taura zvakaitwa nevanhu vaJehovha zvinoratidza kuti vanoda hama dzavo . +Tingaramba sei ‘ tichifunga vaya vari mujeri ? ’ +‘ Rambai muchifunga vaya vari mujeri . ’ +“ Kuroorana ngakukudzwe navose . ” +Kugutsikana kunotibatsira sei kuti tidanane sehama ? +‘ Gutsikanai nezvinhu zvinenge zviripo . ’ +Kuva “ vakashinga kwazvo ” kunotibatsira sei kuti tidanane sehama ? +Tingaitei kuti tiwedzere kuda vakuru ? +“ Yeukai vaya vari kukutungamirirai . ” +Tingaratidza sei kuti tiri kuwedzera kudanana ? +Rudo rwaKristu runofanira kuita kuti tinzwe tichida kuitei ? +Rudo rwaMwari runofanira kutikurudzira sei kuti tide hama dzedu ? +Nei kuregererwa kwatinoitwa naMwari kuchifanira kuita kuti tidewo kuregerera hama dzedu ? +1 , 2 . ( a ) ‘ Chipo chaMwari chepachena chisingarondedzereki ’ chinosanganisirei ? +( Verenga 2 VaKorinde 1 : 20 . ) +3 , 4 . ( a ) Unonzwa sei kana ukapiwa chipo ? +( b ) Upenyu hwako hunogona kuchinja sei kana ukapiwa chipo chinokosha chaizvo ? +Sei chipo cherudzikinuro chatakapiwa naMwari chichipfuura zvimwe zvipo zvose ? +( a ) Ndeapi makomborero echipo chaMwari aunotarisira ? +( b ) Rudo rwaMwari runotibatsira kuti tiite zvinhu zvitatu zvipi ? +Rudo runa Kristu runofanira kuita kuti tinzwe sei , uye runoita kuti tide kuitei ? +Uyewo anondida achadiwa naBaba vangu , uye ndichamuda uye ndichazviratidza pachena kwaari . ” — Joh . 14 : 21 ; 1 Joh . 5 : 3 . +Mibvunzo ipi yatinogona kuzvibvunza mumwaka weChirangaridzo , uye mhinduro dzacho dzingatikurudzira kuitei ? +( Verenga 1 Timoti 2 : 9 , 10 . ) +( a ) Kuda kwatinoita Jehovha naJesu kunoita kuti tishande sei mubasa redu rekuparidza ? +( b ) Rudo runoita kuti tibatsire sei vamwe vari muungano ? +Zvii zvimwe zvatinonzwa tichida kuita nemhaka yekuziva rudo rwaMwari ? +Zvii zvakaitwa naJesu zvinoratidza kuti aida vanhu ? +Unogona here kubatsira imwe hama kana kuti hanzvadzi yakura , muushumiri ? +Zvii zvaunogona kuita kuti uratidze kuti unoda hama dzako ? +( Verenga Ruka 14 : 12 - 14 . ) +16 , 17 . ( a ) Tinodzidzei pamuenzaniso wakataurwa naJesu wamambo nevaranda ? +( b ) Pashure pekufungisisa chidzidzo chiri muenzaniso waJesu , watsunga kuitei ? +Rudo rwaMwari rwakabatsira sei imwe hanzvadzi kuti iratidze mwoyo murefu kune imwe hanzvadzi ? +Ndiri kuda kuzoonana naye asisina chivi chatiinacho . ” +‘ Chipo chaMwari chepachena chisingarondedzereki ’ chichaita kuti uite sei ? +[ 1 ] ( ndima 18 ) Mamwe mazita ari munyaya ino akachinjwa . +Zvii zvakaita kuti Pendekosti ya33 C.E . ive zuva rinokosha , uye zvakazadzisa sei Magwaro ? +( a ) Nei zvakaitika paPendekosti ya33 C.E . zvichikosha kwatiri ? +( b ) Makore akawanda akanga apfuura , chii chinokosha chingangodaro chakaitika pazuva iroro raichengetwa Pendekosti ? +Tinoziva sei kuti vanhu vanozodzwa nenzira dzakasiyana - siyana ? +VaKristu vese vakazodzwa vanopiwa chii , uye izvi zvinoita kuti vanyatsova nechokwadi chei ? +MuKristu wese akazodzwa anofanira kuitei kuti awane mubayiro wake wekudenga ? +Petro akataura nezvazvo achiti : “ Saka hama , itai zvose zvamunogona kuti kudanwa kwenyu nokusarudzwa kwenyu kuve kwechokwadi kwamuri ; nokuti kana mukaramba muchiita zvinhu izvi hamungazombowi . +Chokwadi , muchazarurirwa kwazvo saizvozvo kuti mupinde muumambo husingaperi hwaShe wedu uye Muponesi Jesu Kristu . ” +8 , 9 . ( a ) Nei vanhu vakawanda vachiomerwa nekunzwisisa zvinoitika panozodzwa munhu ? +( b ) Munhu anoziva sei kuti akasarudzwa kuti aende kudenga ? +Akavaudza kuti : “ Hamuna kugamuchira mudzimu wouranda unokonzera kutya zvakare , asi makagamuchira mudzimu wokugamuchirwa sevanakomana , iwo mudzimu watinoshevedzera nawo , kuti : ‘ Abha , Baba ! ’ +Mashoko ari pana 1 Johani 2 : 27 anorevei paanoti vaKristu vakazodzwa havafaniri havo kudzidziswa nomumwe munhu ? +MuKristu akazodzwa anganetseka nei , asi chii chaasingatomboiti zvekufungidzira ? +Munhu paanozodzwa nemudzimu mutsvene , mafungiro ake anochinja sei , uye chii chinoita kuti achinje ? +VaKristu vakazodzwa vanoona sei upenyu hwavo vachiri panyika ? +Zvii zvisingaratidzi kuti munhu azodzwa nemudzimu mutsvene ? +Tinoziva sei kuti havasi vose vakapiwa mudzimu waMwari vakasarudzwa kuti vaende kudenga ? +17 , 18 . ( a ) Vashumiri vaMwari vakawanda vari kutarisira kuwana mubayiro wei ? +Mashoko ari pana Zekariya 8 : 23 ari kuzadziswa sei ? +1 , 2 . ( a ) Jehovha akati chii chaizoitika munguva yedu ? +( b ) Mibvunzo ipi ichapindurwa munyaya ino ? +Nei tisingakwanisi kunyatsoziva kuti ndivanaani vachava pavanhu 144 000 ? +VaKristu vakazodzwa vanofanira kufungisisa nezvei , uye nei vachifanira kudaro ? +Kuzodzwa kwavo hakuna kumboziviswa vanhu . +Nei uchifanira kungwarira mabatiro aunoita vanhu vanodya chingwa nekunwa waini paChirangaridzo ? +( Ona bhokisi rakanzi “ Rudo ‘ Haruzvibati Zvisina Kufanira . ’ ” ) +Jesu akaudza vadzidzi vake kuti : “ Imi mose muri hama . ” +Ungaratidza sei kuti unoremekedza vaKristu vakazodzwa ? +Tinozvidzivirira sei kana tikasiyana nekatsika ‘ kekungoyemura vanhu ’ ? +Nei tisingafaniri kunetseka nenhamba yevanodya chingwa nekunwa waini paChirangaridzo ? +“ Jehovha anoziva vaya vari vake . ” +Bhaibheri rinotii nezvenhamba yevakazodzwa vachange vari panyika panguva ichatanga kutambudzika kukuru ? +Ndezvipi zvatinofanira kuziva panyaya yekusarudza kunoita Jehovha vaKristu ve144 000 ? +VaKristu vakazodzwa vashomanana ndivo vakashandiswa kunyora Magwaro echiKristu echiGiriki . +richitiswededza pedyo naMwari uye nevamwe ? +Kunyange zvazvo Jehovha ari iye Mwari Mukuru kupfuura vamwe vose , akaita kuti vamwe vaitei ? +Jehovha akashanda neMwanakomana wake pabasa ripi rinokosha ? +Jehovha akapa Adhamu basa rei , uye nei akadaro ? +Somuenzaniso , akapa Adhamu basa rekupa mhuka mazita . +Vamwe vakashandawo sei pamwe naMwari pakuzadzisa chinangwa chake ? +Tinogona kushandawo pabasa ripi , uye Jehovha aifanira kushanda pamwe chete nesu pabasa iri here ? +Muapostora Pauro akanyora kuti : “ Zvatinoshanda pamwe chete naye , tinokutetereraiwo kuti murege kugamuchira mutsa usina kukodzera kuwanwa waMwari motadza kunzwisisa chinangwa chawo . ” +Mwanakomana waMwari akatsanangura sei manzwiro aaiita nekushanda pamwe chete naBaba vake ? +Nei basa rekuparidza richiita kuti tifare ? +Vamwe vanhu vakatii nezvekushanda kwavanoita naJehovha ? +Franco uyo anoshumirawo ari kuItaly anoti : “ Achishandisa Shoko rake nezvimwe zvatinopiwa nesangano rake , Jehovha anotiyeuchidza zuva nezuva kuti anotida , uye kuti zvose zvatinomuitira zvinokosha , kunyange zvazvo tingaona sokuti hapana zvatiri kuita . +Ndosaka kushanda pamwe chete naMwari kuchiita kuti ndifare uye kuti upenyu hwangu huve nechinangwa . ” +Jesu aiva pedyo zvakadini naJehovha uye chii chakaita kuti adaro ? +Nei basa rekuparidza richiita kuti tive pedyo naMwari uye nevamwe ? +Tinoona kuti zvakanakirei kuramba tichivimba naye uye tichimuteerera . +Chii chichaita kuti tiwedzere kuva pedyo naJehovha uye nehama dzedu munyika itsva ? +Imwe hama yekuAustralia inonzwa sei nebasa rekuparidza ? +Joel uyo anogara kuAustralia anoti : “ Basa rekuparidza rinoita kuti ndione zvinhu sezvazviri . +Rinondibatsira kuziva matambudziko ari kusangana nevamwe vanhu uye rinoita kuti ndione kuti kushandisa zvinotaurwa neBhaibheri kuri kundibatsira sei muupenyu . +Basa rekuparidza rinondibatsira kuti ndisazvikudza uye rinoita kuti ndiwedzere kuvimba naJehovha uye kuvimbawo nehama nehanzvadzi dzangu . ” +Chii chinoratidza kuti tinobatsirwa nemudzimu waMwari ? +Unofunga kuti ucharamba uchiita basa iri kwenguva yakareba sei ? +Basa rekuparidza rinobatsira sei pakuzadzisa chinangwa chaMwari chaakasikira vanhu ? +Basa redu rekuparidza rakabatana papi nemirayiro mikuru yaMwari ? +Wechipiri , wakafanana nawo , ndouyu , ‘ Ida muvakidzani wako sezvaunozviita . ’ ” +Unonzwa sei neropafadzo yaunayo yekuparidza mashoko akanaka ? +Ndinokupa simba rangu , Shoko rangu Bhaibheri , rubatsiro runobva kudenga , vekushanda navo panyika , ndicharamba ndichikudzidzisa , uye ndichanyatsokurayiridza panguva yakakodzera . ’ +Takakomborerwa chaizvo kuita zvatinokumbirwa naJehovha uye kushanda pamwe chete naMwari wedu ! ” +MAGAZINI INO yeNharireyomurindi , inorumbidza Jehovha Mwari , Mutongi wezvinhu zvose . +Inonyaradza vanhu nemashoko akanaka okuti Umambo hwaMwari huri kudenga , hwava pedyo nokugumisa uipi hwose , hwochinja pasi rino kuti rive paradhiso . +Inokurudzira vanhu kuti vatende muna Jesu Kristu , uyo akatifira kuti tikwanise kuwana upenyu husingaperi uye uyo ari kutonga iye zvino saMambo weUmambo hwaMwari . +Magazini ino yagara ichibudiswa kubvira muna 1879 uye haisi yezvematongerwo enyika . +Zvainotaura zvose zvinobva muBhaibheri . +Bebe aiwirirana nababa vake chaizvo . +Mashoko aya akaaudzwa neshamwari yepedyo yemhuri yavo uye izvi zvakarwadza Bebe pane kumunyaradza . +Mumwoyo make Bebe aingozviudza kuti , “ Hapana kana chakambonaka nekufa kwababa vangu . ” +Zviri pachena kuti Bebe paakazonyora nezvenyaya iyi mune rimwe bhuku patopera makore , akanga achiri kushungurudzika . +Bebe akazoona kuti zvinotora nguva kuti kushungurudzika kuzopera , kunyanya kana anenge afirwa anga achinyatsowirirana nemufi wacho . +Ndokusaka Bhaibheri richiti rufu “ muvengi wokupedzisira . ” +Rufu rwunongoerekana rwauya , kunyanya paye patinenge takarivara , uye rwunotitorera vanhu vatinoda . +Tose zvedu tinorwadziwa patinofirwa . +Saka zviri pachena kuti patinofirwa tinenge tarasikirwa uye tinosara tichishungurudzika . +Zvimwe wakambozvibvunza kuti : ‘ Zvinotora nguva yakadii kuti kushungurudzika kuzopera ? +Ndinganyaradza sei vamwe vanenge vafirwa ? +Pane tariro here yokuti hama neshamwari dzedu dzakafa dzichazomuka ? ’ +Wati wamborwara kwenguva pfupi here ? +Chimbofunga zvakaitwa naAbrahamu paakafirwa nemudzimai wake . +Mumutauro wakashandiswa kunyora Bhaibheri pakutanga zvinonzi , “ Abrahamu akatanga kuchema Sara achisvimha misodzi . ” +Shoko rokuti “ akatanga ” rinoratidza kuti Abrahamu akatora nguva achirwadzirwa . +Akaita “ mazuva mazhinji ” achishungurudzika uye vemumhuri make havana kukwanisa kumunyaradza . +Papera makore akati kuti , Jakobho akanga achiri kushungurudzika nerufu rwaJosefa . ​ — Genesisi 23 : 2 ; 37 : 34 , 35 ; 42 : 36 ; 45 : 28 . +“ Murume wangu , Robert , akashaya musi wa9 July 2008 . +Iye zvino atova makore 6 asi ndichiri kungorwadziwa . +Handifungi kuti marwadzo angu ekufirwa naRob achazombopera . ” ​ — Gail , ane makore 60 . +“ Kunyange zvazvo patopfuura makore 18 kubva pakashaya mudzimai wangu , ndichiri kumufunga uye zvichiri kundirwadza . +Pandinongoona chinhu chakasikwa chinoyevedza , ndinobva ndatanga kumufunga uye nechomumwoyo ndinotanga kufungidzira kufara kwaaizoita kudai ari kuona zvandinenge ndichionawo . ” ​ — Etienne , ane makore 84 . +Sezvataona kana munhu akafirwa anotorwadziwa uye anoshungurudzika kwenguva refu . +Kushungurudzika kwatinoita kwakasiyana , saka hazvina kunaka kuti munhu atonge zvinoitwa nemumwe paanowirwa nedambudziko . +Uyewo hatifaniri kuzvipa mhosva kana tichiona sokuti kurwadziwa kwedu kunenge kwakanyanyisa . +Sezviri kuratidzwa munyaya yakanzi “ Tevedzera Kutenda Kwavo ” iri mumagazini ino , Isaka akanga achiri kushungurudzika nerufu rwaamai vake , Sara , makore matatu pashure pekunge vafa . ​ — Genesisi 24 : 67 . +Semuenzaniso vamwe vanogona kukuudza kuti usachema kana kutomboratidza kurwadziwa kwaunenge uchiita . +Vamwe vanogona kukukurudzira kuti ucheme zvekuchema zviya . +Asi Bhaibheri rinotaura zvakasiyana neizvi uye zvarinotaura zvinotsigirwawo neongororo dziri kuitwa mazuva ano . +Mune dzimwe tsika zvinonzi kana uri murume haufanire kuchema . +Asi pane chikonzero here chekuti munhu anyare kubudisa misodzi , kunyange paruzhinji ? +Vaongorori vemashandiro anoita pfungwa vanoti kana munhu achinge afirwa anowanzobudisa misodzi . +Uye kuchema kunogona kuzokubatsira kuti unzwe zviri nani pasinei nekurasikirwa kwaunenge waita . +Kana munhu akavanza kurwadziwa kwaanenge achiita zvinogona kumukuvadza pane kuti zvimubatsire . +Bhaibheri haritsigiri pfungwa yekuti kuchema kwakaipa kana kuti murume haacheme . +Kunyange zvazvo aiva nesimba rekumutsa vakafa , shamwari yake Razaro payakafa , akachema vanhu vachizviona ! ​ — Johani 11 : 33 - 35 . +Kazhinji kana munhu akafirwa asingazvitarisiri anoita nguva dzaanombotsamwa . +Pane zvikonzero zvakawanda zvingaita kuti munhu anenge afirwa atsamwe . Izvi zvinoitika kana munhu anoremekedzwa akataura asina kufunga uye akataura mashoko asiri echokwadi . +Mumwe murume wekuSouth Africa anonzi Mike anoti : “ Baba vangu pavakafa ndaingova nemakore 14 chete . +Parufu rwavo mumwe mufundisi weAnglican akati Mwari anoda kuva nevanhu vakanaka uye anokurumidza kuvatora . +* Izvi zvakandigumbura nokuti taida chaizvo kuva nababa vedu . +Kana ukafirwa usingazvitarisiri , unogona kuramba uchifunga kuti , ‘ Zvimwe dai ndakaita izvi neizvi angadai asina kufa . ’ +Kana uchigara uchizvipa mhosva uye uchimbotsamwa , zvinokosha kuti usakuvarire mukati . +Taura neshamwari inogona kukuteerera yokubatsira kuona kuti manzwiro iwayo anowanzoitika kune vakawanda vanenge vafirwa . +Bhaibheri rinoti : “ Shamwari yechokwadi ine rudo nguva dzose , uye ihama inoberekerwa kubatsira pakunenge kuine kutambudzika . ” ​ — Zvirevo 17 : 17 . +Musiki wedu Jehovha Mwari ndiye anogona kuva Shamwari inopfuura dzose kumunhu anenge afirwa . +Nyengetera kwaari uchitaura zvose zvinenge zvichikunetsa nokuti ‘ iye ane hanya newe . ’ +Anovimbisawo kuti vose vanonyengetera kwaari vachanyatsozorodzwa mupfungwa ‘ nerugare rwaMwari runopfuura kufunga kwose . ’ +Uyewo , bvumira Mwari kuti akubatsire kuti unzwe zviri nani achishandisa shoko rake rinonyaradza , Bhaibheri . +Kana ukafunga nezvemavhesi akadaro zvichakubatsira chaizvo kunyanya usiku paunenge uri wega uchishaya hope . ​ — Isaya 57 : 15 . +Munguva ichangopfuura , murume ane makore 40 , watichati Jack , akafirwa nemudzimai wake pashure pekunge arwara nekenza . +Anoti : “ Pandinonyengetera kuna Jehovha , handizosurukirwi . +Ndinowanzopepuka usiku uye hope dzinobva dzaramba kuuya . +Pashure pekunge ndaverenga mashoko anonyaradza ari muMagwaro ndofunga nezvawo uye ndonyengetera ndichitaura zvose zvinondinetsa , ndinobva ndatanga kunzwa kugadzikana mumwoyo nemupfungwa uye hope dzinobva dzauya zvekare . ” +Musikana anonzi Vanessa akafirwa naamai vake pashure pekunge varwara . +Akaonawo kubatsira kunoita kunyengetera . +Anoti : “ Zvinhu pazvainge zvakandiomera chaizvo , ndaibva ndanyengetera kuna Mwari ndochema . +Jehovha ainzwa minyengetero yangu uye aindipa simba randaida . ” +Vamwe vevanopa mazano kune vanenge vafirwa vanokurudzira vanenge vachishungurudzika kuti vazvipire kuita mabasa ekubatsira vanhu munharaunda . +Kana vakaita izvozvo vanogona kufara uye kushungurudzika kwavo kunogona kudzikira . +VaKristu vakawanda vakafirwa vakaona kuti kuita mabasa ekubatsira vamwe kwakaita kuti vanyaradzwe zvikuru . ​ — 2 VaKorinde 1 : 3 , 4 . +Mwari paanoona uchirwadziwa naiye anorwadziwawo . ​ — Pisarema 55 : 22 ; 1 Petro 5 : 7 . +Mwari haaneti nekuteerera minyengetero yevashumiri vake . ​ — Pisarema 86 : 5 ; 1 VaTesaronika 5 : 17 . +Mwari anosuwa vanhu vakafa . ​ — Jobho 14 : 13 - 15 . +Mwari anovimbisa kuti achamutsa vakafa . ​ — Isaya 26 : 19 ; Johani 5 : 28 , 29 . +Pane here pawakamboshaya kuti wonyaradza sei munhu wepedyo ainge afirwa nehama yake ? +Dzimwe nguva chinoita kuti tidaro ndechekuti tinenge tisina chokwadi kuti toitei kana kuti totaurei . +Asi pane zvinhu zvatinogona kuita kuti tibatsire . +Kazhinji chinenge chichingodiwa kuva nemunhu wacho wotaura mashoko akadai seekuti : “ Ndine urombo chaizvo . ” +Mutsika dzakawanda munhu anogona kuratidza kuti ari kunzwira tsitsi anenge afirwa nekumumbundira kana kuti kumupuruzira zvinyoro nyoro paruoko . +Kana munhu wacho achida kutaura , teerera uchiratidza kunzwisisa kurwadziwa kwaari kuita . +Chimwe chinonyanya kukosha pakubatsira mhuri inenge yafirwa kuita mabasa avanenge vasingakwanisi kuita akadai sekubika , kuchengeta vana kana kubatsira pane zvinenge zvichida kuitwa parufu . +Kuita izvi kunopfuura kutaura chero mashoko api zvawo atingataura ekunyaradza . +Nekufamba kwenguva unogona kunzwa uchida kutaura zvinhu zvakanaka zvaiitwa nemufi uye zvakamboitika zvinofadza . +Kukurukura izvozvo kunogona kuita kuti munhu anenge afirwa anzwe zviri nani . +Funga nezvaPam , uyo akafirwa nemurume wake Ian makore 6 akapfuura . Anoti : “ Dzimwe nguva vanhu vanondiudza zvinhu zvakanaka zvaiitwa naIan zvandaisatomboziva , uye izvozvo zvinoita kuti mwoyo wangu unyevenuke . ” +Vaongorori vanotaura kuti vanhu vazhinji vanonyanya kubatsirwa mazuva avanenge vachangofirwa , asi pasina nguva vanokanganwika nekuti hama neshamwari dzinenge dzatanga kubatikanazve neupenyu hwadzo . +Saka pashure pekunge shamwari yafirwa , edza kugara uchitaura nayo . +* Vanhu vakawanda vanenge vafirwa vanoda chaizvo kuitirwa izvi nokuti zvinoita kuti kurwadziwa kwavanenge vachiita kuite nani . +Funga zvakaitika kuna Kaori , mumwe musikana wekuJapan uyo akafirwa naamai vake uye pashure pegore nemwedzi mitatu ndokubva afirwa zvakare nemukoma wake . Izvi zvakamurwadza chaizvo . +Asi shamwari dzake hadzina kumusiya . Dzakaramba dzichimubatsira . +Mumwe mukadzi wechikuru anonzi Ritsuko , akaudza Kaori kuti aida kuva shamwari yake . +Kaori anoti : “ Kutaura chokwadi , handina kuzvifarira . +Ndaisada kuti mumwe munhu atore nzvimbo yaamai vangu uye hapana wandaifunga kuti aigona kudaro . +Asi zvandaiitirwa naRitsuko zvakaita kuti ave shamwari yangu yepedyo . +Vhiki rega rega taienda tese kunoparidza uye kumisangano yechiKristu . +Aindikoka kuti ndizonwa tii naye , aindiunzira zvekudya uye aigara achinditumira tsamba nemakadhi . +Zvandakadzidza kuna Ritsuko zvakandibatsira chaizvo . ” +Patova nemakore 12 kubva pakafa amai vaKaori , uye iye zvino iye nemurume wake vari kuita nguva yakawanda vachiparidza nezveUmambo hwaMwari . +Kaori anoti “ Ritsuko achiri kuratidza kuti ane hanya neni . +Pandinodzokera kumba , ndinowanzomushanyira uye anondikurudzira chaizvo . ” +Mumwe akaramba achibatsirwa nevamwe ndiPoli , mumwe weZvapupu zvaJehovha anogara muCyprus . +Poli aiva nemurume ane mutsa ainzi Sozos . Sozos aiva mutariri muungano yechiKristu uye aiwanzokoka nherera nechirikadzi kumba kwake kuti vadye pamwe chete vachitandara havo . +Zvinorwadza kuti Sozos akafa nebundu remuuropi aine makore 53 . +Vava ikoko vakatanga kupinda misangano neimwe ungano yeZvapupu zvaJehovha . +Poli anoti : “ Vanhu vemuungano yacho vaisaziva zvakanga zvaitika kwatiri uye kuti zvinhu zvainge zvakatiomera sei . +Asi izvozvo hazvina kuita kuti varege kutaura nesu vachitinyaradza nemashoko emutsa uye kutibatsira nezvataida . +Izvi zvaibatsira chaizvo sezvo mwanakomana wangu akanga asisina baba . +Vaya vaitungamirira muungano vairatidza kuti vainyatsoda Daniel . +Mumwe aitoona kuti pese pavainotandara neshamwari kana kuti pavainotamba bhora aienda naDaniel . ” +Iye zvino Daniel naamai vake havachanyanyi kunetseka . +Pane zvakawanda zvatinogona kuita kuti tibatsire uye tinyaradze vanenge vachichema . +Bhaibheri rinotinyaradzawo nezvakanaka zvarinotivimbisa nezveramangwana . +Vamwe vakatomaka pakarenda yavo musi wakafirwa munhu wacho kuti vazoyeuka nguva yavanogona kumunyaradza paanenge achinyanya kunetseka . Vanogona kuita izvi kana mazuva acho asvika . +Gail ambotaurwa nezvake , haana chokwadi kuti marwadzo ekufirwa nemurume wake Rob achazombopera . +Kunyange zvakadaro ari kutarisira kuzomuonazve munyika itsva yakavimbiswa naMwari . +Ndinonzwira tsitsi vakafirwa nehama dzavo asi vasingazivi nezvetariro iyi yekuti vanogona kuzodzionazve . ” +Munguva pfupi iri kuuya Mwari achamutsa Jobho nevamwe vakawanda vakafa , paachaita kuti pasi rino rive paradhiso . +Izvi zvinotsigirwa naMabasa 24 : 15 , iyo inoti : “ Kuchava nokumuka . ” +Jesu anotivimbisa kuti : “ Musashamiswa neizvi , nokuti awa iri kuuya mairi vaya vose vari mumakuva vachayeukwa uye vachanzwa inzwi rake vobuda . ” +Achamuka aine tarisiro yekuvazve ‘ nesimba rouduku hwake , ’ uye kurarama nokusingaperi nyama yake iri “ itsva kupfuura paaiva muduku . ” +Izvi zvichaitikawo kune vose vanotenda ngoni dzaMwari dzekumutsa vakafa kuti vazoraramazve panyika . +Kana wakafirwa nemumwe munhu wepedyo , zvataurwa pamusoro apa zvingasapedza hazvo kurwadziwa kwako zvachose . +Asi kana ukanyatsofunga zvinovimbiswa naMwari muBhaibheri , unogona kuva netariro uye simba rekuti urambe uchitsungirira . ​ — 1 VaTesaronika 4 : 13 . +Unoda here kuziva zvimwe zvaungaita kana uchishungurudzika ? +Une mibvunzo here yakadai sokuti , “ Nei Mwari achibvumira uipi nokutambura ? ” +Enda panzvimbo yedu yekubudisira mashoko paIndaneti , jw.org , kuti uone mhinduro dzinonyaradza dzinobva muBhaibheri . +“ Mwari . . . achapukuta misodzi yose pamaziso avo , rufu haruchazovipo . ” ​ — Zvakazarurwa 21 : 3 , 4 . +Magazini iyi yeNharireyomurindi inotaura kuti Mwari achazadzisa sei vimbiso iyoyo uye kuti iwe uchabatsirwa sei paichazadziswa . +Ndakaudza musoja wacho kuti ndakanga ndatombopinda mujeri nemhaka yekuti ndakanga ndisingadi kupinda muchiuto . +NDAKABEREKWA muna 1926 muCrooksville , Ohio , kuUnited States . +Baba naamai vakanga vasingaiti zvechitendero , asi vaida kuti tese vana tiri 8 tiende kuchechi . +Margaret Walker ( hanzvadzi yechipiri kubva kuruboshwe ) akandibatsira kuti ndidzidze chokwadi +Panguva iyi , muvakidzani wedu ainzi Margaret Walker , uyo aiva Chapupu chaJehovha , akatanga kushanyira amai achikurukura navo Bhaibheri . +Asi ndakaedza kuramba ndichiteerera zvavaikurukura . +Rimwe zuva Margaret paakauya kuzodzidza naamai , akandibvunza kuti , “ Unoziva zita raMwari here ? ” +Ndakapindura kuti , “ Munhu wese anoziva kuti anonzi Mwari . ” +Akabva ati , “ Tora Bhaibheri rako uvhure pana Pisarema 83 : 18 . ” +Ndakavhura ndikaona kuti zita raMwari ndiJehovha . +Ndakabva ndamhanya kunoudza shamwari dzangu kuti , “ Kana masvika kumba manheru , vhurai muBhaibheri pana Pisarema 83 : 18 kuti muone zita raMwari . ” +Tingatoti ndipo pandakatangira kuparidza . +Ndakadzidza Bhaibheri ndikabhabhatidzwa muna 1941 . +Pasina nguva ndakanzi ndiitise chidzidzo chebhuku cheungano . +Ndakakurudzira amai , hanzvadzi dzangu nevanin’ina kuti vauyewo , uye vakatanga kuuya . +Dzimwe nguva pavaivaona vachienda , vaimhanya vovadhonza kusvikira vavapinza mumba . +Asi amai vaibva vangobuda nerimwe dhoo , voenda kumisangano . +Ndakabva ndaudza vakuru vakuru vacho kuti ndakanga ndisiri kuzova musoja . +Mutongi wacho akati : “ Kudai ndirini ndinosarudza kuti une mhosva , ndaizoti upike jeri kweupenyu hwako hwese . +Ndakapindura kuti : “ Changamire , ini ndaitofanira kunzi mufundisi . +Mharidzo dzangu ndinodzipa ndakamira pamadhoo evanhu , uye ndakaparidza mashoko akanaka oUmambo kuvanhu vakawanda . ” +Mutongi akabva audza vedare kuti : “ Hamuna kuuya pano kuzoongorora kuti mukomana uyu mufundisi here kana kuti haasi . +Nyaya iripo ndeyekuti mukomana uyu akabvuma kupinda muchiuto here kana kuti akaramba . ” +Ndakanyengetera kuna Jehovha ndichiti : “ Handikwanisi kugara muchitokisi kwemakore mashanu . +Mangwana acho magadhi akanditi ndibude imomo , ndikaiswa maiva nevamwe vasungwa vakawanda . +Ndakafamba ndichienda pakanga pakamira mumwe musungwa aiva zirume rirefu rakasimba , tikabva tamira tese pahwindo takatarisa panze . +Akandibvunza kuti , “ Ko iwe shoti , wakaparei ? ” +Ndakabva ndati , “ Ndiri mumwe weZvapupu zvaJehovha . ” +Ndikati , “ Zvapupu zvaJehovha hazviendi kuhondo uye hazviurayi vanhu . ” +Ndakabva ndati , “ Aiwa hazvina . ” +Akabva ati , “ Kwemakore 15 , ndaiva mune rimwe jeri , uye ndakaverenga mamwe mabhuku enyu ndiri imomo . ” +Ndaivawo paZvapupu zvakasungirwa kusapindira mune zvenyika kuAshland , Kentucky +Izvi zvaiita kuti tiparidze zvakarongeka . +Ndainetseka nezvevamwe vaiva kumba nekuti Baba vakanga vandiudza kuti , “ Kana ndikapedza newe , vamwe vese havazondinetse . ” +Asi pandakazobudiswa mujeri , pane chimwe chinhu chakandishamisa . +Ndakati , “ Horaiti , asi handisi kuzopinda muchiuto . ” +Ndakataura pfungwa iri pana 2 Timoti 2 : 3 ndikati , “ Nditori musoja waKristu . ” +Akamboti zii , ndokubva azoti , “ Enda hako . ” +Nguva pfupi izvi zvaitika , ndakapinda musangano wevanoda kushanda paBheteri pagungano rakaitwa kuCincinnati , Ohio . +Ndakashandawo paDzimba Dzemagungano dzekuNew York City . +Ndakava neshamwari dzakawanda paBheteri uye muungano . +Ndinewo mashoko mashoma echiMandarin Chinese andakadzidzira , uye ndinofarira kuparidzira mumugwagwa kuvanhu vanotaura chiChinese . +Dzimwe nguva pandinoparidza mangwanani ndinogona kupa vanhu magazini anosvika 30 kana 40 . +Ndichiparidzira vanhu vechiChinese ndiri muBrooklyn , New York +Ndakatomboitawo shanyo yekudzokera kumunhu aiva kuChina . +Akatora magazini acho ndokundiudza kuti anonzi Katie . +Kubvira ipapo , pese paaindiona aiuya kuzotaura neni . +Ndakamudzidzisa mazita eChirungu emichero neemiriwo , uye aibva adzokorora mazita acho achinditevedzera . +Ndakamutsanangurira mamwe mavhesi eBhaibheri , uye akatora bhuku raBhaibheri Rinombodzidzisei ? +Takamboramba tichikurukura kwemavhiki mashoma asi hatina kuzoonanazve . +Vhiki rakatevera racho , akauya akanditambidza foni yake ndokubva ati : “ Taura naye kuChina . ” +Ndakabva ndati , “ Handina munhu wandinoziva ari kuChina . ” +Asi akaramba achindimanikidza , saka ndakatambira foni yacho ndokuti : “ Hello , ndini Robison . ” +Munhu wacho akabva adaira achiti , “ Robby , ndini Katie . +Ndinokumbirawo kuti umudzidzise . ” +Ndakapindura kuti : “ Katie , ndichaedza nepandinogona napo . +Waita hako nekundiudza kwauri . ” +Tapedza kutaura pafoni , ndakakurukura nemunin’ina waKatie asi ndiko kaiva kekupedzisira kutaura naye . +Kana kuri kuda kwaMwari , hama neshamwari dzangu dzakafa dzichamutswa munyika itsva . +Nyaya ino payainge ichiri kunyorwa kuti izobudiswa , Hama Corwin Robison vakafa vakatendeka kuna Jehovha . +Zvakadzidzwa naAbrahamu uye zvakaitika muupenyu hwake zvakasimbisa sei kutenda kwake ? +Abrahamu akaitei kuti arambe ari shamwari yaMwari ? +Ungatevedzera sei Abrahamu pakusimbisa ushamwari hwako naJehovha ? +1 , 2 . ( a ) Tinoziva sei kuti vanhu vanogona kuva shamwari dzaMwari ? +3 , 4 . ( a ) Tsanangura kuti ndoupi muedzo ungangodaro waiva mukuru pane yose yakasangana naAbrahamu . ( b ) Nei Abrahamu akanga akazvipira kubayira Isaka ? +Abrahamu angangodaro akadzidza sei nezvaJehovha , uye zvaakadzidza izvozvo zvakamubatsira sei ? +Zvii zvinotibatsira kuti tisimbise ushamwari hwedu naJehovha ? +9 , 10 . ( a ) Chii chinodiwa kuti ushamwari husimbe ? +( b ) Chii chinoratidza kuti Abrahamu aikoshesa ushamwari hwake naJehovha uye aiita kuti hurambe hwakasimba ? +Abrahamu aikoshesa ushamwari hwake naJehovha uye aiita kuti hurambe hwakasimba . +Chii chakaita kuti Abrahamu anetseke nezveSodhoma neGomora , uye Jehovha akamubatsira sei ? +12 , 13 . ( a ) Zvinhu zvakadzidzwa naAbrahamu uye zvakaitika muupenyu hwake zvakazomubatsira sei ? +( b ) Chii chinoratidza kuti Abrahamu aivimba naJehovha ? +Matambudziko api aunosangana nawo pakushumira Jehovha , uye zvakaitwa naAbrahamu zvingakubatsira sei ? +Abrahamu naSara vanodzidza nezvaJehovha uye vanotanga kumunamata +Abrahamu anofa “ anyatsokura , akwegura uye agutsikana ” +Nei tingava nechokwadi chokuti Abrahamu haana kumboona sekuti akanga atambisa nguva yake nokuteerera Jehovha ? +Watsunga kuitei , uye tichakurukurei munyaya inotevera ? +Kuramba tichidzidza nezvaJehovha kuchatibatsira kuti timuteerere uye tiratidze kuti takavimbika kwaari . +( Verenga VaHebheru 6 : 10 - 12 . ) +Munyaya inotevera , tichakurukura nezvevamwe vanhu vatatu vakatendeka vakava shamwari dzaMwari . +Tingadzidzei paushamwari hwaiva naRute naMwari ? +Chii chakaita kuti Mambo Hezekiya ave shamwari yepedyo yaJehovha ? +Amai vaJesu , Mariya vaiva neunhu hupi hwakavabatsira kuti vave shamwari yaJehovha Mwari ? +1 - 3 . ( a ) Sei tiine chokwadi chekuti tinogona kuva shamwari dzaMwari ? +( b ) Ndivanaani vatichakurukura nezvavo munyaya ino ? +Chisarudzo chipi chakaoma chaifanira kuitwa naRute , uye nei zvakanga zvakamuomera kusarudza ? +( a ) Chisarudzo chipi chakanaka chakaitwa naRute ? +( b ) Nei Bhoazi akati Rute akapotera mumapapiro aJehovha ? +Munhu anenge achizeza kuzvitsaurira kuna Jehovha anofanira kufunga nezvei ? +9 , 10 . ( a ) Chii chaigona kuita kuti Hezekiya atsamwire Jehovha ? +( b ) Nei tisingafaniri kutsamwira Mwari ? +( c ) Nei tisingafaniri kufunga kuti zvinhu zvatinoita muupenyu zvinobva pakuti takarerwa sei ? +Vechidiki vakawanda vakabvuma chokwadi pasinei nekuti vakarerwa mumhuri dzakaita sei ( Ona ndima 9 , 10 ) +Chii chakaita kuti Hezekiya ave mambo weJudha akanaka chaizvo ? +( Verenga 2 Madzimambo 18 : 5 , 6 . ) +VaKristu vakawanda mazuva ano vakatevedzera sei Hezekiya ? +Chii chaigona kuita kuti basa rakapiwa Mariya rimuomere , asi akapindura sei Gabrieri ? +Chii chinoratidza kuti Mariya ainyatsoteerera ? +Mariya akateerera zvose zvaaiudzwa , akazvichengeta mumwoyo , uye akazvifungisisa . — Verenga Ruka 2 : 16 - 19 , 49 , 51 . +Mashoko akataurwa naMariya anoratidzei ? +Tingatevedzera sei kutenda kwaMariya ? +Kana tikatevedzera vanhu vaiva nekutenda vanotaurwa muBhaibheri , tichawanei ? +FUNGA nezvezuva rawakafara chaizvo muupenyu hwako . +Izuva rawakachata here kana kuti rakaberekwa mwana wako wokutanga ? +Zvimwe uri kufara chaizvo mubasa raJehovha kubvira pawakabhabhatidzwa . +Zvii zvingatibatsira kuti tirambe tichishumira Jehovha tichifara ? +Jesu akati : “ Uyai kwandiri , imi mose munoshanda zvakaoma uye makaremerwa , uye ini ndichakuzorodzai . +Takurai joko rangu mudzidze kwandiri , nokuti ndiri munyoro uye ndine mwoyo unozvininipisa , uye muchawana zororo remweya yenyu . +Tinoshumira Mwari wedu akatipa upenyu uye anofara . +Funga nezvaHéctor uyo akashumira Jehovha ari mutariri anofambira kwemakore 40 . +Anoti : “ Kunyange zvazvo ndichirwadziwa nekudzikira kuri kuita utano hwemudzimai wangu , uye zvichiramba zvichioma kumuchengeta , handisi kubvumira kuti izvozvo zvinditadzise kushumira Mwari wechokwadi ndichifara . +Kuziva kuti upenyu hwangu hwakabva kuna Jehovha , uyo akasika vanhu aine chinangwa , kunoita kuti ndimude zvakadzama uye ndimushumire nemwoyo wose . +Kuti ndirambe ndichifara , ndinoedza kuramba ndichishingaira mubasa rekuparidza uye ndinoramba ndichifunga zvatichaitirwa neUmambo hwaMwari . ” +Jehovha akatipa chibayiro cherudzikinuro kuti tikwanise kufara muupenyu . +Bhaibheri rinoti : “ Mwari akada nyika kwazvo zvokuti akapa Mwanakomana wake akaberekwa ari mumwe oga , kuti munhu wose anotenda maari arege kuparadzwa asi ave noupenyu husingaperi . ” +Jesús akasiya basa raaiita uye akashumira Jehovha kwemakore achifara +Ndaingoda kuva nemari yakawanda . +Ndakazodzidza nezvaJehovha uye zvaakaita kuti ape Mwanakomana wake waanoda kuti adzikinure vanhu . +Ndakatanga kuva nechido chakasimba chokumushumira . +Saka ndakazvitsaurira kuna Jehovha , ndikasarudza kusiya basa pakambani yandakanga ndava nemakore 28 ndichishanda uye ndakapinda mubasa renguva yakazara . ” +Uchiri kuyeuka here kuti upenyu hwako hwakanga hwakaita sei usati wava kuziva nezvaJehovha ? +Muapostora Pauro akayeuchidza vaKristu vaiva muRoma kuti vaimbova “ varanda vechivi ” asi vakazova “ varanda vokururama . ” +“ Ndakazotanga kunyatsofara muupenyu hwangu pandakatanga kushumira Jehovha . ” ​ — Jaime +Kuti arege mararamiro aaiita , Jaime akakumbira Jehovha kuti amubatsire kubvuma kuti ariko . +Jaime anoti , “ Zvishoma nezvishoma , ndakatanga kuona kuti kuna Baba vane rudo uye Mwari ane ngoni . +Kutevedzera zvinodiwa naJehovha kuri kundidzivirira . +Ndakazotanga kunyatsofara muupenyu hwangu pandakatanga kushumira Jehovha . ” +Jonatani mwanakomana waMambo Sauro akaratidza sei kuti akanga akavimbika kuna Jehovha ? +Tingaratidza sei kuti takavimbika kuna Mwari patinoona sekuti munhu ane masimba haana kukodzera kuti timuremekedze ? +Tingaratidza sei kuti takavimbika kuna Jehovha kana vamwe vanhu vakatadza kutinzwisisa kana kuti vakatibata zvisina kunaka ? +Nei ushamwari hwaDhavhidhi naJonatani huri muenzaniso wakanaka wekuratidza kuvimbika ? +Chii chainyanya kukosha kuna Jonatani kupfuura kuvimbika kuna Dhavhidhi , uye tinoziva sei izvozvo ? +( a ) Chii chichaita kuti tifare uye tigutsikane ? +Nei zvainge zvakaoma kuti vaIsraeri varambe vakavimbika kuna Jehovha paitonga Sauro ? +Chii chinoratidza kuti Jonatani akaramba akavimbika kuna Jehovha ? +Patinenge tichiremekedza vane masimba tinenge tichiratidza sei kuti takavimbika kuna Mwari ? +Chii chakabatsira Jonatani kusarudza munhu waaifanira kuramba akavimbika kwaari ? +Kuda Mwari kunotibatsira sei kuti tisarudze kuramba takavimbika kwaari ? +Kuvimbika kuna Mwari kunotibatsira sei patinosangana nezvinetso mumhuri ? +Kana imwe hama ikatibata zvisina kunaka tinofanira kuita sei ? +Ndepapi patinofanira kuramba takavimbika kuna Mwari , tisingangofungi zvakatinakira chete ? +[ 1 ] ( ndima 9 ) Mamwe mazita akachinjwa . +Chii chakaita kuti Jonatani aite zvakasiyana nezvakaitwa naAbhineri ? +Unhu hupi hunotibatsira kuti tive vakavimbika kuna Mwari , uye tingaratidza sei unhu ihwohwo ? +Dhavhidhi akaratidza sei kuti akavimbika kuna Mwari ? +( a ) Dhavhidhi akaratidza sei kuti akanga akavimbika kuna Mwari ? +( b ) Ndezvipi zvimwe zvatichaongorora munyaya ino ? +Tinodzidzei pakukanganisa kwakaitwa naAbhishai ? +Kunyange zvazvo tichifanira kuratidza kuti takavimbika kuhama neshamwari dzedu , nei tichifanira kungwarira ? +Imwe hanzvadzi yakaramba sei yakavimbika kuna Mwari zvinhu pazvainge zvakaoma ? +Unhu hupi huchatibatsira kuti tivimbike kuna Mwari ? +Tinodzidzei pane zvakaitika kuna Abhineri , Absaromu , uye Bharuki ? +Asi iwe , unoramba uchizvitsvakira zvinhu zvikuru . +Tsanangura kuti nei tisingakwanisi kuramba takavimbika kuna Mwari kana tichingotsvaka zvakatinakira . +Ndakanyengetera kakawanda uye ndaitochema , asi ndakazorega kunyorerana naye . +Dhavhidhi paakaita chivi , Natani akaramba sei akavimbika kwaari uye kuna Mwari ? +Ungaratidza sei kuti wakavimbika kuna Jehovha uyewo kushamwari kana hama yako ? +Nei Hushai aifanira kushinga kuti arambe akavimbika kuna Mwari ? +Nei tichifanira kuva neushingi kuti tirambe takavimbika kuna Jehovha ? +Ndakanyengetera kuti ndive neushingi hwekuramba ndichiita zvandakanga ndasarudza . +Iye zvino vati chinjei , uye ndava kupota ndichivashanyira . ” — Verenga Zvirevo 29 : 25 . +[ 1 ] ( ndima 7 ) Mamwe mazita akachinjwa . +NYAYA IRI PAKAVHA | NEI JESU AKATAMBURA NDOKUFA ? +Muchirimo cha33 C.E . , Jesu wekuNazareta akaurayiwa . +Ainge apomerwa mhosva yekupandukira hurumende , ndokurohwa zveutsinye , achibva azorovererwa padanda . +Asi Mwari akamumutsa kuti ararame zvekare uye akaenda kudenga pashure pemazuva 40 . +Nyaya iyi inowanika mumabhuku mana eEvhangeri ari muMagwaro echiKristu echiGiriki , anonyanya kuzivikanwa seTestamende Itsva . +Asi kana zvinhu izvi zvakanyatsoitika , remangwana revanhu vose kusanganisira rako , rinenge rakajeka . +Saka zvinotaurwa nemabhuku eEvhangeri zvakaitika here kana kuti ndezvekunyepa ? +Nyaya dziri mumabhuku eEvhangeri hadzisi ngano . Dzakarurama uye dzinonyatsoratidza zvakaitika . +Somuenzaniso , mabhuku acho ane mazita akawanda enzvimbo dzinotozivikanwa kuti dziriko uye munhu anogona kutodzishanyira mazuva ano . Anotaura nezvevanhu chaivo vakamborarama . +Vanonyora zvakaitika kare vanoratidzawo kuti vanhu ava vakambovako . — Ruka 3 : 1 , 2 , 23 . +Vanonyora zvakaitika kare vakararama makore ari pakati pa1 C.E . - 200 C.E . vakanyorawo nezvaJesu . +* Nzira yaakaurayiwa nayo iyo inotaurwa mumabhuku eEvhangeri inoenderana nenzira dzaishandiswa nevaRoma pakuuraya vanhu mazuva iwayo . +Uyewo , nyaya dzirimo dzinotaurwa sezvadziri pasina kuvanza zvimwe , dzichitoratidza zvimwe zvaikanganiswa nevadzidzi vaJesu . +Zvose izvi zvinonyatsoratidza kuti vanyori veEvhangeri pavainyora nezvaJesu vainyora zvinhu zvakarurama . +Vakawanda vanobvuma kuti Jesu akamborarama akazofa , asi vamwe vavo havana chokwadi kuti akamutswa . +Kunyange vaapostora vake chaivo havana kubvuma pavakatanga kunzwa kuti akanga amutswa . +Ivo pamwe chete nevamwe vadzidzi vakazobvuma pavakaona Jesu panguva dzakasiyana - siyana pashure pekunge amutswa . +Pamwe pacho akaonekwa nevanhu vanopfuura 500 . — 1 VaKorinde 15 : 6 . +Vadzidzi vakaparidza neushingi nezvekumutswa kwaJesu kuvanhu vose kunyange kune vaya vakanga vamuuraya , pasinei nekuti izvi zvaigona kuita kuti vasungwe uye vaurayiwe . +Vadzidzi vese ivavo vangadai vakava neushingi hwakadaro here kudai vainge vasina chokwadi chekuti Jesu ainge amutswa ? +Kuziva kuti Jesu akamutswa zvechokwadi ndiko kwaiita kuti vanhu vade kuva vaKristu kare uye iye zvino . +Manyorerwo akaitwa nhoroondo dziri mumabhuku eEvhangeri idzo dzinotaura nezvekufa uye kumutswa kwaJesu , anonyatsoratidza kuti ndedzechokwadi . +Ukanyatsoverenga nhoroondo idzi uchaona kuti zvinhu izvi zvakanyatsoitika . +Uchanyatsova nechokwadi nazvo kana ukanzwisisa zvikonzero zvakaita kuti zvinhu izvozvo zviitike . +Tacitus , uyo akaberekwa munenge muna 55 C.E . , akanyora kuti “ Kristu , pakabva zita rokuti [ vaKristu ] , akatongerwa rufu nemumwe wemagavhuna edu , Pondiyo Pirato , Tibheriyo paaiva mambo . ” +Vamwewo vanotaura nezvaJesu ndevanotevera : Suetonius ( akararama makore ari pakati pa1 C.E . - 100 C.E . ) ; munyori wezvakaitika kare wechiJudha ainzi Josephus ( akararama makore ekuma100 C.E . ) ; nagavhuna weBhitiniya ainzi Pliny the Younger ( akararama kutanga kwemakore ekuma100 C.E . ) . +Uyewo sezvo vanhu vakawanda vaivenga Jesu , hatingatarisiri kuti vaizonyora chero chinhu chakanaka chaizoita kuti vanhu vatende maari . +Mumwe wevaapostora vaJesu ainzi Petro achitaura nezvekumutswa kwaJesu akati : “ Mwari akamutsa Iyeyu pazuva rechitatu akamubvumira kuti aonekwe , kwete nevanhu vose , asi nezvapupu zvakafanogadzwa naMwari , isu vacho , takadya nokunwa naye pashure pokunge amutswa kubva kuvakafa . ” +Evhangeri yaMateu inotiudza kuti vavengi vaJesu pavakanzwa nezvekumutswa kwake , vakaedza kuita kuti nyaya yacho isazivikanwa . ​ —⁠ Mateu 28 : ​ 11 -⁠ 15 . +Izvi zvinoreva here kuti Jesu aida kuti vanhu vasaziva nezvekumutswa kwake ? +Kwete , nokuti Petro anoenderera mberi achiti : “ Akatirayira kuparidzira vanhu nokupupura kwazvo kuti Uyu ndiye akagadzwa naMwari kuti ave mutongi wevapenyu nevakafa . ” +Nanhasi vaKristu vechokwadi vachiri kuparidza . ​ —⁠ Mabasa 10 : ​ 42 . +‘ Chivi chakapinda munyika nomunhu mumwe chete [ Adhamu ] uye rufu rwakapinda nechivi . ’ — VaRoma 5 : 12 . +Kana ukabvunzwa kuti , “ Unoda kurarama nekusingaperi here ” unotii ? +Vanhu vakawanda vanogona kutaura kuti vanoda , asi vanofunga kuti izvozvo hazvife zvakaitika . +Vanoti kufa kwagara kunongoitika nokuti ndiwo magumo edu tose . +Asi ngatitii mubvunzo wacho unopindurudzwa zvobva zvanzi , “ Unoda kufa here ? ” +Kazhinji vanhu vakawanda vanopindura kuti aiwa . +Bhaibheri rinoratidza kuti Mwari akasika vanhu vaine chido chekurarama . +Rinototi “ akaisawo nguva isingagumi mumwoyo mavo . ” ​ — Muparidzi 3 : 11 . +Asi chokwadi chiripo ndechekuti iye zvino vanhu havasi kurarama nekusingaperi . +Uye Mwari ane zvaakaita here kuti agadzirise dambudziko racho ? +Bhaibheri rine mhinduro dzinonyaradza uye dzinotiudza zvakaita kuti Jesu atambure kusvika pakufa . +Zvitsauko zvitatu zvekutanga zvebhuku reBhaibheri raGenesisi zvinotiudza kuti Mwari akaita kuti vanhu vekutanga Adhamu naEvha vave nemukana wekurarama upenyu husingaperi , uye akavaudza zvavaizofanira kuita kuti vawane upenyu ihwohwo . +Tinobva taudzwa nezvekutadza kwavakaita kuteerera Mwari ndokurasikirwa nemukana iwoyo . +Nyaya yacho inotaurwa zviri nyore zvekuti vakawanda vanokurumidza kuiona sengano . +Asi sezvakaita mabhuku eEvhangeri , bhuku raGenesisi rine uchapupu hunoratidza kuti zviri mariri zvakanyatsoitika . +Adhamu paakatadza kuteerera zvakaguma nei ? +Bhaibheri rinopindura richiti : “ Chivi zvachakapinda munyika nomunhu mumwe chete [ Adhamu ] uye rufu zvarwakapinda nechivi , saizvozvowo rufu rwakapararira kuvanhu vose nokuti vose vakanga vatadza . ” +Izvi zvakaita kuti arasikirwe nemukana wekurarama nekusingaperi uye akazofa . +Sezvo tiri vana vake , tinoberekwa tiine chivi . +Asi Mwari ane zvaakaita here kuti agadzirise dambudziko racho ? +Mwari akaita urongwa hwekuti vana vaAdhamu , vavezve nemukana wakaraswa naAdhamu wekurarama nekusingaperi . +Pana VaRoma 6 : 23 Bhaibheri rinoti , “ Mubayiro wechivi ndirwo rufu . ” +Izvi zvinoreva kuti rufu runokonzerwa nechivi . +Nesuwo tiri vatadzi , ndosaka tichiwana mubayiro wechivi , rufu . +Tinoberekwa tiine chivi nokuti Adhamu naEvha vakatadza . +Mwari akaratidza rudo rwake nekutuma Mwanakomana wake , Jesu , kuti atinunure ‘ pamubayiro wechivi . ’ +Rufu rwaJesu rwunoita kuti pave nemukana wekuwana upenyu hunofadza husingaperi +Kusateerera kwemunhu mumwe chete ainge asina chivi , Adhamu , kwakakonzera chivi nerufu kwatiri . Saka kuti tinunurwe parufu paidiwa munhu asina chivi aikwanisa kuteerera kusvika pakufa . +Bhaibheri rinotaura nezvazvo richiti : “ Vazhinji zvavakaitwa vatadzi nokuda kwokusateerera kwomunhu mumwe chete , saizvozvowo nokuda kwokuteerera kwomunhu mumwe chete vazhinji vachaitwa vakarurama . ” +Akabva kudenga , akararama semunhu asina chivi , ndokutifira . +* Izvi zvinoita kuti Mwari atione sevanhu vakarurama uye zvinotipa mukana wekurarama upenyu husingaperi . +Nei Jesu aifanira kufa kuti izvi zviitike ? +Mwari Wemasimbaose aisakwanisa here kupa murayiro wekuti vana vaAdhamu vararame nekusingaperi ? +Kudai Mwari asina kuita zvaienderana nemutemo waakanga apa panyaya iyi , vanhu vaisazova nechokwadi chekuti achatonga zvakanaka here dzimwe nyaya . +Somuenzaniso aizotonga zvakarurama here pakusarudza kuti ndevapi pavana vaAdhamu vanokodzera kuwana upenyu husingaperi ? +Vanhu vaigona kuzovimba naye here kuti anozadzisa zvaakavimbisa ? +Kutonga zvakarurama kwakaitwa naMwari kuti atiponese kunotipa chivimbo chekuti acharamba achiita zvakarurama . +Mwari akashandisa chibayiro chaJesu kuti ape vanhu mukana wekuti vararame upenyu husingaperi muParadhiso panyika . +Ona mashoko aJesu ari pana Johani 3 : 16 anoti : “ Mwari akada nyika kwazvo zvokuti akapa Mwanakomana wake akaberekwa ari mumwe oga , kuti munhu wose anotenda maari arege kuparadzwa asi ave noupenyu husingaperi . ” +Saka chikuru chatinoona pakufa kwaJesu ndechekuti Mwari anoda vanhu chaizvo . Tinoonawo zvakare kuti Mwari anotonga zvakarurama . +Asi nei Jesu aifanira kutambura uye kufa zvinorwadza zvakadaro sekurondedzerwa kwazvinoitwa mumabhuku eEvhangeri ? +Nemhaka yekuti Jesu akaramba akatendeka kusvikira pakufa , akanyatsoratidza kuti Dhiyabhorosi aitaura nhema paakati vanhu havarambi vakatendeka kana vari mumatambudziko . +Mashoko iwayo anogona kunge akaita seechokwadi sezvo Satani ainge afurira Adhamu , uyo akanga asina chivi , kuti atadze . +Asi Jesu uyo akanga asina chivi sezvakanga zvakaita Adhamu asati atadza , akaramba akatendeka pasinei nekutambura zvikuru . +Saka Jesu akaratidza kuti kudai Adhamu aida hake aigona kunge akateerera Mwari . +Jesu akatisiyira muenzaniso wekuti titevedzere nekutsungirira kwaakaita muedzo . +Mwari akapa Mwanakomana wake Jesu , mubayiro wekuva neupenyu husina magumo , nekuti akateerera zvakakwana . +Jesu akaratidza zvatinofanira kuita paakati : “ Kuti vawane upenyu husingaperi , vanofanira kuramba vachiwana zivo pamusoro penyu , imi Mwari wechokwadi chete , uye pamusoro pouya wamakatuma , iye Jesu Kristu . ” ​ — Johani 17 : 3 . +Vabudisi vemagazini ino vanokukumbira kuti udzidze nezvaJehovha , Mwari wechokwadi , uye nezveMwanakomana wake , Jesu Kristu . +VeZvapupu zvaJehovha vari kwaunogara vachafara kukubatsira kuita izvozvo . +Unogonawo kuwana mashoko anobatsira ukaenda panzvimbo yedu yepaIndaneti , www.jw.org . +Ona chikamu chakanzi “ The Historical Character of Genesis , ” mubhuku rinonzi Insight on the Scriptures , ” peji 922 , rakabudiswa neZvapupu zvaJehovha . +Mwari paakatamisa upenyu hweMwanakomana wake kubva kudenga huchienda mudumbu raMariya , zvakaita kuti Mariya ave nepamuviri , uye mudzimu mutsvene waMwari wakadzivirira Jesu kuti asatora chivi kubva kuna Mariya . ​ — Ruka 1 : 31 , 35 . +Usiku hwokupedzisira asati apa upenyu hwake , Jesu akaungana nevaapostora vake vakatendeka ndokubva atanga Chirangaridzo cherufu rwake . +Akati kwavari : “ Rambai muchiita izvi muchindiyeuka . ” +Vachiteerera murayiro uyu , veZvapupu zvaJehovha pasi rose vanoungana gore rimwe nerimwe kuti vayeuke rufu rwaJesu pamusi warwakaitika . +Gore rino , Chirangaridzo cherufu rwaJesu chichaitwa musi weChitatu , 23 March , zuva ranyura . +Kupinda musangano wacho hakubhadharwi , uye hapana ndiro yemari ichafambiswa . +Tapota bvunza Zvapupu zvaJehovha zvekwaunogara nezvenguva nenzvimbo ichaitirwa musangano wacho . +Kana kuti unogona kuenda panzvimbo yedu yepaIndaneti , www.jw.org . +UNGATI Dhiyabhorosi . . . +Uipi huri mumwoyo memunhu here ? +Dhiyabhorosi akambotaura naJesu ‘ achimuedza . ’ +Pakutanga Dhiyabhorosi aiva ngirozi tsvene asi “ haana kumira zvakasimba muchokwadi . ” +Akava murevi wenhema , akapandukira Mwari . +Dzimwe ngirozi dzakabatana naSatani pakupanduka . — Zvakazarurwa 12 : 9 . +Dhiyabhorosi anopofumadza vanhu vakawanda kuti vasaziva kuti ariko . — 2 VaKorinde 4 : 4 . +VAMWE VANHU VANOTI manyepo kuti Dhiyabhorosi anogona kuita kuti vanhu vaite zvaanoda , ukuwo vamwe vanotya kugarwa nemadhimoni . +Dhiyabhorosi ari kutonga pasi rose , asi haagoni kuita kuti vanhu vose vaite zvaanoda . +Dhiyabhorosi anoshandisa unyengeri kuti atsause vanhu vakawanda . — 2 VaKorinde 11 : 14 . +Dzimwe nguva vanhu vanogarwa nemadhimoni . — Mateu 12 : 22 . +Uchibatsirwa naMwari , unogona kukunda ‘ pakurwisana naDhiyabhorosi . ’ — Jakobho 4 : 7 . +“ Ndiani wenyu anoti kana achida kuvaka shongwe asingatangi agara pasi , overenga zvinodiwa , kuti aone kana aine zvakakwana zvokuipedza nazvo ? ” — RUKA 14 : 28 . +Kukura kwemunhu kunoonekwa sei , uye Dhanieri akaratidza sei kuti akanga akura ? +Ungaziva sei kuti chisarudzo chako chekubhabhatidzwa chiri kubva pamwoyo ? +Kuzvitsaurira kuita sei , uye kunobatana papi nekubhabhatidzwa ? +1 , 2 . ( a ) Mazuva ano , chii chiri kuita kuti vanhu vaMwari vafare ? +( b ) Vabereki vechiKristu uye vakuru vangabatsira sei vechidiki kuti vanzwisise zvavanotarisirwa kuita kana vabhabhatidzwa ? +Asi ndine mubvunzo , Sei uri kuda kutora danho iroro ? ” +( Verenga Ruka 14 : 27 - 30 . ) +( a ) Mashoko aJesu neaPetro anotidzidzisei nezvekukosha kwekubhabhatidzwa ? +( b ) Mibvunzo ipi yatichakurukura uye ichatibatsira sei ? +( 2 ) Izvi ndizvo zvandiri kuda kunyatsoita here ? +( 3 ) Ndinonzwisisa here zvinotarisirwa kumunhu anenge azvitsaurira kuna Jehovha ? +4 , 5 . ( a ) Nei kubhabhatidzwa kusiri kwevanhu vakura pazera chete ? +( b ) Chii chinoratidza kuti muKristu akura ? +Zvirevo 20 : 11 inoti : “ Mukomana anoratidza kana basa rake rakachena uye kana rakarurama nezvaanoita . ” +6 , 7 . ( a ) Taura miedzo yakasangana naDhanieri paakanga ari kuBhabhironi . ( b ) Dhanieri akaratidza sei kuti akanga akura ? +Wechidiki anoratidza kuti akura haati kana ari kuImba yoUmambo oita seshamwari yaMwari , asi kana ava kuchikoro ova shamwari yenyika ( Ona ndima 8 ) +Haati kana ari kuImba yoUmambo oita seshamwari yaMwari , asi kana ava kuchikoro ova shamwari yenyika . +9 , 10 . ( a ) Wechidiki angabatsirwa sei nekufunga zvaakaita pamiedzo yaakasangana nayo munguva pfupi yapfuura ? +11 , 12 . ( a ) Munhu anenge achifunga nezvekubhabhatidzwa anofanira kuva nechokwadi chei ? +( b ) Chii chichakubatsira kuti urambe uchiona kubhabhatidzwa semaonerwo akunoitwa naJehovha ? +Ungaziva sei kuti chisarudzo chako chekubhabhatidzwa chiri kubva pamwoyo ? +Anokupa mapepa emota yacho obva ati : “ Mota iyi ndeyako . ” +18 , 19 . ( a ) Zvakataurwa naRose naChristopher zvinoratidza sei kuti kubhabhatidzwa idanho rinoita kuti munhu awane makomborero ? +( b ) Unonzwa sei nezveropafadzo yekubhabhatidzwa ? +Ndiri kufara chaizvo nebasa randiri kuitira Jehovha nesangano rake . ” +Mashoko ekuti “ zvawakaitwa kuti uve nechokwadi nazvo ” anorevei ? +“ Mabasa matsvene omufambiro nemabasa okuzvipira kuna Mwari ” ndeapi ? +Kufungisisa nezverudzikinuro kunokubatsira sei kuti utende zvawakaitirwa naJehovha ? +1 , 2 . ( a ) Tsanangura kuti nei kubhabhatidzwa riri danho rinokosha . ( b ) Munhu anofanira kuva nechokwadi chei asati abhabhatidzwa ? +Vechidiki vanodzidzei pane zvakaitwa naTimoti ? +Tsanangura kuti chikamu chiri pajw.org . chakanzi “ Bhaibheri Rinombodzidzisei Chaizvo ? , ” chingakubatsira sei kuti unyatsova nechokwadi nezvaunotenda . +Imwe hanzvadzi ichiri kuyaruka inoti : “ Ndisati ndasarudza kubhabhatidzwa , ndakadzidza Bhaibheri ndikaona kuti ichi ndicho chitendero chechokwadi . +Uye zuva nezuva , ndinowedzera kuva nechokwadi nezvandinotenda . ” +Nei mabasa anoitwa nemuKristu akabhabhatidzwa achifanira kuenderana nezvaanotenda ? +Bhaibheri rinoti : “ Kutenda , kana kusina mabasa , kwakafa . ” +Tsanangura kuti mashoko ekuti ‘ mabasa matsvene omufambiro ’ anorevei . +Somuenzaniso , chimbofunga zvawakaita mumwedzi 6 yapfuura . +Ndeapi mamwe “ mabasa okuzvipira kuna Mwari , ” uye tinofanira kuaona sei ? +Chii chinogona kukubatsira kuti uite “ mabasa okuzvipira kuna Mwari , ” uye vamwe vechidiki vakabatsirwa sei ? +“ Zvii zvaunobatanidza paunodzidza uri woga ? ” +“ Unobuda muushumiri kunyange vabereki vako vasingabudi here ? ” +Imwe hanzvadzi yechidiki inonzi Tilda yakati : “ Ndakashandisa chikamu ichi kuti ndironge zvandaida kuzoita . +Zvishoma nezvishoma ndakaita zvose zvandainge ndaronga uye pakazopera gore , ndakanga ndagadzirira kubhabhatidzwa . ” +Ungaramba uchishumira Jehovha kunyange vabereki vako vakarega here ? +Tsanangura kuti nei uchifanira kuzvisarudzira wega kuzvitsaurira . +16 , 17 . ( a ) Chii chinofanira kuita kuti munhu azosarudza kuva muKristu ? +( b ) Kubatsira kunoita rudzikinuro kungafananidzwa nei ? +Jesu akamupindura kuti : “ Ida Jehovha Mwari wako nomwoyo wako wose nomweya wako wose nepfungwa dzako dzose . ” +( Verenga 2 VaKorinde 5 : 14 , 15 ; 1 Johani 4 : 9 , 19 . ) +18 , 19 . ( a ) Nei usingafaniri kutya kuzvitsaurira kuna Jehovha ? +( b ) Kushumira Jehovha kunoita sei kuti uve neupenyu hwakanaka ? +Vechidiki vangaitei kuti vagadzirire kuzvitsaurira uye kubhabhatidzwa ? +“ Ndingavandudza Sei Minyengetero Yangu ? ” ​ — January - March 2009 +“ Ndingaita Sei Kuti Ndinakidzwe Nokuverenga Bhaibheri ? ” ​ — July - September 2009 +“ Ndiri Munhu Akaita Sei ? ” ​ — October - December 2011 +“ Ndingaitei Kuti Ndinakidzwe Nokuverenga Bhaibheri ? ” ​ — April - June 2012 +“ Sei Ndichifanira Kuenda Kumisangano yechiKristu ? ” ​ — July - September 2012 +Kubatana kwedu kunooneka sei patinenge tichiparidza mashoko akanaka ? +Zvii zvatingaita kuti ungano yedu irambe yakabatana ? +Murume nomudzimai vangaitei kuti varambe vakabatana ? +Chii chatinoona pane zvakaitwa naJehovha naJesu uye pane zvaiitwa nevanhu vaMwari ? +( a ) VaKristu vekutanga vaizivikanwa nechii ? +( b ) Mibvunzo ipi yatichakurukura ? +( Verenga 1 VaKorinde 12 : 4 - 6 , 12 . ) +Kushanda takabatana kunotibatsira kuitei ? +8 , 9 . ( a ) Pauro akashandisa muenzaniso wei paaidzidzisa vaKristu kuti varambe vakabatana ? +( b ) Tingaiteiwo kuti ungano irambe yakabatana ? +( Verenga VaEfeso 4 : 15 , 16 . ) +Vashumiri vanoshumira vanobatsira sei kuti ungano ibatane ? +Chii chingabatsira vose vari mumhuri kuti vaite zvinhu vakabatana ? +Kana murume wako kana kuti mudzimai wako asiri kushumira Jehovha , ungaitei kuti imba yenyu irambe yakasimba ? +VaKristu vava nenguva varoorana vangabatsira sei vechidiki ? +Vose vanoshumira Mwari vakabatana vari kutarisirei ? +Jehovha akatungamirira sei vanhu mumazuva aNoa neaMosesi ? +Mwari akapa vaKristu mirayiro ipi mitsva ? +Tingaratidza sei kuti tinoda kutungamirirwa naMwari ? +1 , 2 . ( a ) Chii chakaponesa upenyu hwevanhu vakawanda ? +Zvakafamba sei kuti vanhu vapinde munzira yerufu ? +( a ) Nei paidiwa mimwe mirayiro pakapera Mafashamo ? +( b ) Kuchinja kwakaita zvinhu kwakabatsira kuti tinzwisisei nezvaMwari ? +Tichakurukurei munyaya ino , uye zvichatibatsirei ? +Nei zvainge zvakakosha kuti vaIsraeri vapiwe mitemo mitsva , uye vaifanira kuva nemafungiro akaita sei ? +( a ) Tsanangura kuti nei Jehovha akapa vanhu vake mitemo . ( b ) Mutemo waMosesi waiva muperekedzi wevaIsraeri pakudini ? +Tinobatsirwa sei neMutemo waMosesi ? +Zvii zvakanga zvachinja zvakaita kuti papiwe mitemo mitsva ? +Nei ungano yechiKristu yakapiwa mitemo mitsva , uye mitemo iyoyo yakanga yakasiyana papi neyakapiwa vaIsraeri ? +Izvi zvinonyatsoratidza kuti “ Mwari haasaruri , asi murudzi rwose munhu anomutya uye anoita zvakarurama anogamuchirwa naye . ” +Mirayiro ipi miviri inoratidza kuti vaKristu vese vari pasi ‘ pemutemo waKristu ’ ? +13 , 14 . ( a ) Kana tichiteerera “ murayiro mutsva ” tinofanira kuitei ? +( b ) Tinodzidzei kubva pane zvakaitwa naJesu ? +( Verenga Johani 13 : 34 , 35 . ) +Tiri kurarama mumamiriro ezvinhu akaita sei mazuva ano , uye Mwari ari kutitungamirira sei ? +Tinofanira kuita sei nemirayiro yatinowana kubva kuna Mwari ? +Unobvuma here kuti mirayiro iyi inobva kuna Mwari ? +Ndeipi mipumburu ichavhurwa , uye kuvhurwa kwayo kuchaguma nei ? +Ichataurawo kuti kutsungirira kunofanira kupedza basa ripi kune mumwe nomumwe wedu . +Muenzaniso waJefta nemwanasikana wake unotibatsira sei kuti tisakanganiswe nenyika ? +Zvii zvinotaurwa neBhaibheri zvaunoona zvichibatsira paunobatwa zvisina kunaka ? +Nyaya ino yakubatsira sei kuti uzvipire kutsigira Umambo ? +Jefta nemwanasikana wake vakasangana nemamiriro api ezvinhu akanga akaoma ? +Nei zvakaitwa naJefta nemwanasikana wake zvichitibatsirawo mazuva ano ? +4 , 5 . ( a ) Jehovha akapa vaIsraeri murayiro upi pavakapinda muNyika Yakapikirwa ? +( b ) Maererano naPisarema 106 , kusateerera kwakaita vaIsraeri kwakaguma nei ? +Zvinhu zvipi zvakaipa zviri munyika zvinogona kutikanganisa , uye tinofanira kuitei ? +( a ) Jefta akaitirwei nevanhu verudzi rwake ? +8 , 9 . ( a ) Zvii zvaitaurwa muMutemo waMosesi zvingangodaro zvakabatsira Jefta ? +( b ) Chii chainyanya kukosheswa naJefta ? +Tingaitei kuti zvatinodzidza muShoko raMwari zvitibatsire muupenyu hwedu sevaKristu ? +Jefta akaita mhiko yei , uye izvozvo zvairevei ? +Mashoko aJefta ari pana Vatongi 11 : 35 anoratidzei nezvekutenda kwake ? +Anofanira kuita maererano nezvose zvakabuda mumuromo make . ” +Vakawanda vedu takaita mhiko yei , uye tingaitei kuti tirambe takatendeka ? +Mwanasikana waJefta akaitei paakaziva nezvemhiko yakanga yaitwa nababa vake ? +( a ) Tingatevedzera sei kutenda kwaJefta nemwanasikana wake ? +( b ) Mashoko ari pana VaHebheru 6 : 10 - 12 anokubatsira sei kuti uzvipire kuita zvimwe zvinhu pakushumira Mwari ? +Tadzidzei munyaya iri muBhaibheri yaJefta nemwanasikana wake , uye tingavatevedzera sei ? +Zvinorevei kuti “ kutsungirira ngakupedze basa rakwo ” ? +1 , 2 . ( a ) Tinodzidzei kubva pakutsungirira kwakaita Gidhiyoni nevarume vake 300 ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Sezvinotaurwa pana Ruka 21 : 19 , nei kutsungirira kuchikosha chaizvo ? +Vavengi vedu vanosanganisira Satani , nyika yake , uye chivi chatakaberekwa tiinacho . +Tingadzidzei kubva pane vaya vakatsungirira ? +Nei tichiti rudo ndirwo runoita kuti titsungirire ? +( Verenga 1 VaKorinde 13 : 4 , 7 . ) +Rudo runoita kuti tirambe tichiva nemwoyo murefu patinokanganisirwa nehama dzedu . +Nei Jehovha ari iye chete akanyatsokodzera kutibatsira kuti titsungirire ? +Jehovha ndiMwari “ anopa kutsungirira nenyaradzo . ” +Sezvakavimbiswa muBhaibheri , Jehovha angaita sei kuti tiwane “ nzira yokubuda nayo ” mumiedzo ? +Taura muenzaniso unoratidza kuti zvokudya zvokunamata zvinotibatsira kuti titsungirire . +8 , 9 . ( a ) Maererano naJobho 2 : 4 , 5 , chii chatinofanira kuyeuka patinosangana nemiedzo ? +( b ) Paunosangana nemiedzo , zvii zvaunogona kufungidzira zvichiitika ? +Achinja here kubva paakataura mashoko iwayo ekunyepa ? +Kufunga zvakaitika kune “ vaya vakatsungirira ” kunotibatsira sei ? +Tinodzidzei pane zvakaitwa nemakerubhi airinda munda weEdheni ? +Chii chakabatsira Jobho kuti atsungirire miedzo yaakasangana nayo ? +42 : 10 , 17 . +Maererano na2 VaKorinde 1 : 6 , kutsungirira kwaPauro kwakabatsira sei vamwe ? +( Verenga 2 VaKorinde 1 : 6 . ) +15 , 16 . ( a ) ‘ Ibasa ’ ripi rinofanira kupedzwa nekutsungirira ? +( b ) Taura mienzaniso inoratidza zvatingaita kuti ‘ kutsungirira kupedze basa rakwo . ’ +Patinotsungirira miedzo , tichawedzera kuva vaKristu vakakwana ( Ona ndima 15 , 16 ) +17 , 18 . ( a ) Taura muenzaniso unoratidza kuti nei zvichikosha kuti tirambe tichitsungirira kusvikira kumugumo . ( b ) Sezvo tinoswedera pedyo nemugumo , tine chivimbo chei ? +[ 1 ] ( ndima 11 ) Uchakurudzirwawo kana ukaverenga nezvekutsungirira kwevanhu vaMwari vemazuva ano . +[ 2 ] ( ndima 12 ) Bhaibheri haritauri kuti paiva nemakerubhi mangani aiita basa iri . +2 : 42 . +tinobatsira sei vamwe patinopinda misangano . +1 - 3 . ( a ) VaKristu vanoratidza sei kuti vanokoshesa kuungana ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Tichakurukurei munyaya ino ? +Zvakatikurudzira chaizvo uye zvakasimbisa kutenda kwedu . ” +Kuungana pamwe chete kunotibatsira sei kuti tidzidze nezvaJehovha ? +Misangano yakakubatsira sei kuti ushandise zvawakadzidza muBhaibheri , uye kuti uvandudze unyanzvi hwako pakuparidza ? +Misangano yedu inotikurudzira sei uye inotibatsira sei kuti tirambe takasimba ? +( Verenga Mabasa 15 : 30 - 32 . ) +Nei zvichikosha chaizvo kuti tipinde misangano ? +Hama dzedu dzinobatsirwa sei padzinotiona pamisangano uye padzinonzwa tichipindura uye tichiimba ? +( Onawo bhokisi rakanzi “ Pose Paanobva Pamisangano Anenge Ava Kunzwa Zviri Nani . ” ) +9 , 10 . ( a ) Tsanangura kuti mashoko aJesu ari pana Johani 10 : 16 anotibatsira sei kuona kuti nei zvichikosha kuti tiungane nehama dzedu . ( b ) Kupinda kwedu misangano nguva dzose kungabatsira sei mumwe munhu asisafarirwi nevemumhuri make ? +“ MAZUVA ano utano hwangu huri kundinetsa saka zviri kundiomera kuenda kumisangano . +Asi pandinosvika , ndinonakirwa nezvokudya zvekunamata zvatinobikirwa naJehovha . +Kunyange zvazvo ndichirwadziwa nemabvi chaizvo , ndichitambura nechirwere chemwoyo , uye ndichinetseka nechirwere cheshuga , pose pandinobva kumisangano ndinenge ndava kunzwa zviri nani . +“ Ndakasvimha misodzi pandakatanga kunzwa rwiyo nhamba 68 rwuchiimbwa muungano yedu , urwo rwunoti , ‘ Munyengetero Womunhu Akaderera . ’ +Ndainzwa zvaiimbwa sezvo ndiine zvokuisa munzeve zvinobatsira vasinganzwi uye ndaiimbawo . +Kupinda misangano kunotibatsira sei kuti tipe Jehovha zvatinofanira kumupa ? +Jehovha anonzwa sei patinoteerera murayiro wake wekuti tipinde misangano ? +Tinoswedera sei pedyo naJehovha naJesu pamisangano ? +Kupinda misangano kunoratidza sei Mwari kuti tinoda kumuteerera ? +16 , 17 . ( a ) Tinoziva sei kuti misangano yaikosha chaizvo kuvaKristu vekutanga ? +( b ) Hama George Gangas vainzwa sei nezvemisangano yechiKristu ? +Pandinenge ndiinavo , ndinonzwa ndakadekara ndichiita sokuti ndine vomumhuri yangu , ndiri muparadhiso yokunamata . ” +Unonzwa sei nezvemisangano yedu , uye watsunga kuitei ? +[ 2 ] ( ndima 3 ) Ona bhokisi rakanzi “ Nei Tichifanira Kupinda Misangano ? ” +Imomo ndimo mavanonzwa mashoko akanaka achiparidzwa munzvimbo dzinowanikwa vakawanda +Kuruboshwe : Imba yemasista kuZaragoza , Spain ; kurudyi : Shanduro yeBhaibheri yeNácar - Colunga +Ndakanga ndisingazivi kana zvandaiita zvainge zvakanaka . +Ndichiri kuyeuka ndichinyengetera ndichiti , “ Makaita henyu Jehovha , makaramba muchindiratidza mwoyo murefu uye makaramba muchindibatsira kusvikira ndawana zivo yechokwadi yeBhaibheri yandaitsvaga . ” +Vamwe vemuchechi uye vekumhuri kwangu vanozoti chii nazvo ? ” +Ndakamupindura kuti : “ Ko Mwari achatii ? ” +Pasara mwedzi miviri kuti abhabhatidzwe , akabva afa . +Tinofanira kuita sei pazvinenge zvisiri nyore kuramba tisina kwatinotsigira ? +Tinodzidzei kubva pavashumiri vaJehovha vakatendeka vasina kupindira mune zvenyika ? +Tingateerera sei Mwari ukuwo tichiteerera hurumende dzevanhu ? +Tinoratidza sei kuti hatina kwatinotsigira panyaya dzezvematongerwo enyika ? +( a ) Tinoziva sei kuti zvinhu zvichatowedzera kuoma panyaya yekusapindira mune zvenyika ? +( b ) Nei tichifanira kugadzirira iye zvino kuti tisazopindira mune zvenyika ? +Tinofanira kuona sei vanhu vane masimba vemuhurumende ? +Pazvinenge zvisiri nyore kuti tirambe tisina kwatinotsigira tingava sei “ vakachenjera ” asi ‘ tisina mhosva ’ ? +( Verenga Mateu 10 : 16 , 17 . ) +Zvii zvatinofanira kungwarira patinenge tichikurukura nevanhu ? +Tingaitei kuti tirambe tisina kwatinotsigira mune zvenyika pazvinhu zvose zvatinoona kana kuti zvatinoverenga ? +12 , 13 . ( a ) Jehovha anoona sei vanhu ? +( b ) Tingaziva sei kuti tava kunyanya kudada nenyika yedu ? +Munyengetero unotibatsira sei , uye muenzaniso upi wemuBhaibheri unoratidza izvozvo ? +Bhaibheri ringatibatsira sei kuti usapindire mune zvenyika ? +( Onawo bhokisi rakanzi “ Shoko raMwari Rakavabatsira Kuti Varambe Vaine Ushingi . ” ) +Tinodzidzei kubva pamienzaniso yevashumiri vaMwari vakatendeka vakaramba vasingatsigiri zvenyika ? +( Verenga Dhanieri 3 : 16 - 18 . ) +18 , 19 . ( a ) Vanhu vemuungano yenyu vanogona kukubatsira sei kuti urambe usina kwaunotsigira ? +“ Kufungisisa mashoko ari pana Zvirevo 27 : 11 , Mateu 26 : 52 , uye Johani 13 : 35 kwakandibatsira kuti ndiwedzere kuva neushingi hwekuramba kupinda muchiuto . +Mavhesi aya akandibatsirawo kuti ndirambe ndakadzikama pandaitaura nevakuru vakuru vemuhurumende . ” ​ — Andriy , wekuUkraine . +“ Isaya 2 : 4 yakandibatsira kuti ndirambe ndisina kwandinotsigira pandaiedzwa . +Ndaifungidzira rugare ruchange ruri munyika itsva , pasisina munhu anofamba akatakura chombo kuti akuvadze vamwe . ” ​ — Wilmer , wekuColombia . +“ Muchengete rugare pakati penyu . ” ​ — MAKO 9 : 50 . +Izano ripi rakapiwa naJesu rinotibatsira kuti tive nerudo patinenge tichiedza kuyanana nevamwe ? +MuKristu anogona kuzvibvunza mibvunzo ipi paanenge achifunga kuti angayanana sei nevamwe ? +Matanho matatu anotaurwa pana Mateu 18 : 15 - 17 angashandiswa sei pakugadzirisa dzimwe nyaya dzinoita kuti vanhu vasawirirana ? +Inyaya dzipi dzekusawirirana kwevanhu dzinotaurwa muna Genesisi , uye dzakanyorerwei ? +Mafungiro api akapararira munyika , uye zviri kuguma nei ? +Jesu akadzidzisa sei vanhu kuti vagadzirise kusawirirana ? +6 , 7 . ( a ) Nei zvichikosha kuti tikurumidze kukanganwira vamwe ? +( b ) Vashumiri vose vaJehovha vanofanira kuzvibvunza mibvunzo ipi ? +Baba vedu vekudenga vachanzwa minyengetero iyoyo uye vachakupindura . — 1 Joh . 5 : 14 , 15 . +Tingaita sei kana mumwe munhu akatigumbura ? +( Verenga Zvirevo 10 : 12 ; 1 Petro 4 : 8 . ) +( a ) Imwe hanzvadzi yakaita sei vanhu pavakataura zvakaipa nezvayo ? +( b ) Ipfungwa ipi yomuMagwaro yakabatsira hanzvadzi iyi kuti isaramba ichinetseka ? +11 , 12 . ( a ) MuKristu anofanira kuita sei kana achifunga kuti imwe hama “ ine chigumbu ” naye ? +Mumwe mutariri akaita sei paakaudzwa mashoko anobaya , uye tinodzidzei ? +14 , 15 . ( a ) Zano riri pana Mateu 18 : 15 - 17 rinofanira kushandiswa papi ? +( b ) Jesu akataura matanho api matatu , uye chinangwa chedu pakutora matanho aya chinofanira kuva chei ? +Chii chinoratidza kuti kutevedzera zano rakataurwa naJesu kunoshanda uye kunoratidza rudo ? +Tichawana makomborero api kana ‘ tikatsvaka kuva nerugare ’ nevamwe ? +pamashoko azvinoparidza uye chinoita kuti zviparidze ? +Mashoko aJesu ari pana Mateu 24 : 14 anoita kuti tive nemibvunzo ipi ? +Maererano naMateu 28 : 19 , 20 zvinhu zvipi zvina zvinofanira kuitwa nevateveri vaJesu ? +Basa rekuva “ vabati vevanhu ” rinosanganisirei ? +( Verenga Mateu 4 : 18 - 22 . ) +Mibvunzo ipi mina inofanira kupindurwa , uye mhinduro dzacho dzinotibatsira sei ? +Chii chinoita kuti uve nechivimbo chekuti mashoko ari kuparidzwa neZvapupu zvaJehovha ndiwo anofanira kuparidzwa ? +Tinoziva sei kuti vafundisi vemachechi anozviti ndeechiKristu havasi kuparidza mashoko chaiwo anofanira kuparidzwa ? +Vamwe vari kuparidza nechinangwa chipi chisina kunaka ? +( Verenga Mabasa 20 : 33 - 35 . ) +Chii chinoratidza kuti Zvapupu zvaJehovha zvinoita basa rekuparidza nechinangwa chakanaka ? +Jesu nevadzidzi vake vaiparidza sei mashoko akanaka ? +Zvinoitwa nemachechi anozviti ndeechiKristu pakuparidza mashoko akanaka , zvakasiyana papi nezvinoitwa nevanhu vaJehovha ? +Ndizvo zvega zviri kuparidza kuti Jesu akatanga kutonga saMambo muna 1914 . +Basa rekuparidza rinofanira kunge rakakura sei ? +Chii chinoratidza kuti Zvapupu zvaJehovha zviri kuzadzisa uprofita hwaJesu hwekuparidza munyika yose ? +Nzvimbo yedu yepamutemo yepaIndaneti yava kuwanikwa mumitauro inopfuura 750 . +Chii chinoratidza kuti Zvapupu zvaJehovha zvine mudzimu waMwari ? +17 , 18 . ( a ) Chii chinoita kuti tive nechokwadi chekuti Zvapupu zvaJehovha ndizvo zviri kuparidza mashoko akanaka eUmambo mazuva ano ? +( b ) Chii chinoita kuti tikwanise kuramba tichiita basa iri ? +Nekuti tiri kuparidza mashoko anofanira kuparidzwa , mashoko akanaka eUmambo . +Chii chinogona kutitadzisa kubatsirwa nezvimwe zvinhu zvatinopiwa naJehovha ? +Ndezvipi zvatingaita kuti tibatsirwe nezvikamu zvese zviri muBhaibheri ? +Tinobatsirwa sei nekuverenga mabhuku nezvimwewo zvakanyorerwa vechidiki uye veruzhinji ? +1 , 2 . ( a ) Zvapupu zvaJehovha zvinoona sei Bhaibheri ? +( b ) Chikamu chipi chaunofarira muBhaibheri ? +3 , 4 . ( a ) Tinonzwa sei nezvemabhuku edu anobudiswa nesangano ? +( b ) Ndezvipi zvimwe zvatinopiwa zvinobudiswa nesangano redu zvinenge zviine vanhu vazvakananga ? +Tinogona kuva nechokwadi chekuti Jehovha anokoshesa chii ? +Nei tichifanira kuverenga Bhaibheri tiine chido chekudzidza zvitsva ? +8 , 9 . ( a ) Patinenge tichiverenga Bhaibheri , mibvunzo ipi yatingazvibvunza ? +( b ) Zvinhu zvinodiwa kuti munhu akodzere kuva mukuru muungano zvinotiudzei nezvaJehovha ? +Ndingashandisa sei zvandiri kuverenga kuti ndibatsire vamwe ? ’ +( Verenga 1 Timoti 3 : 2 - 7 . ) +10 , 11 . ( a ) Patinenge tichiverenga zvinotaurwa muMagwaro kuti ndizvo zvinoita kuti munhu akodzere kuva mukuru , tingazvishandisa sei muupenyu hwedu ? +( b ) Tingashandisa sei pfungwa idzodzo kuti tibatsire vamwe ? +12 , 13 . ( a ) Tichishandisa zvatinopiwa nesangano , tinogona kutsvakurudza zvinhu zvakaita sezvipi ? +( b ) Taura muenzaniso unoratidza kuti kuongorora zvaiitika pakanyorwa chimwe chikamu cheBhaibheri kunogona kutibatsira kuwana zvidzidzo zvinenge zvisiri pachena . +Zvinhu zvakabudisirwa vechiduku zvinovabatsira sei , uye vamwe vangabatsirwawo sei nazvo ? +Nei zvakanaka kuti vaKristu vakura vafarire kuverenga nyaya dzakanyorerwa vechiduku ? +Mabhuku edu anobatsirawo vechidiki kuti vaitei ? +( Verenga Muparidzi 12 : 1 , 13 . ) +Ndingaita Sei Kuti Ndinakidzwe Nokuverenga Bhaibheri ? ” +Tingabatsirwa sei nekuverenga zvinhu zvakanyorerwa veruzhinji ? +Tingaratidza sei kuti tinoonga Jehovha pamusana pezvaanotipa ? +Nei tichifanira kunyatsofunga pane zvatinosarudza ? +Tingaziva sei zvinofadza Jehovha panyaya inenge yamuka kana pasina mutemo weBhaibheri unotaura nezvayo ? +Tingaitei kuti tiwedzere kuziva mafungiro aJehovha ? +Ndeipi mimwe mirayiro iri muBhaibheri , uye kuiteerera kunotibatsira sei ? +2 , 3 . ( a ) Nei Bhaibheri risingatipi mitemo panyaya dzose dzinomuka muupenyu ? +Zvisarudzo zvatinoita zvinogona kutibatsira kana kutikanganisa sei uye zvinogonawo kukanganisa sei vamwe ? +Kana pasina mutemo wakanyorwa muBhaibheri , tingaziva sei zvatinotarisirwa naJehovha kuti tiite panyaya inenge yamuka ? +Chii chakabatsira Jesu kuti anzwisise kuti Jehovha aida kuti aitei ? +( Verenga Mateu 4 : 2 - 4 . ) +Funga nezvake munzira dzako dzose , uye iye acharuramisa makwara ako . +Mibvunzo ipi yatingazvibvunza patinenge tichiverenga kana kuti kudzidza Bhaibheri ? +Tinobatsirwa sei nemabhuku edu uye misangano kuti tiwedzere kuziva mafungiro aJehovha panyaya dzakasiyana - siyana ? +Taura muenzaniso unoratidza kuti kuziva mafungiro aJehovha kunotibatsira sei kuti tiite zvisarudzo zvakanaka . +( Verenga Ruka 18 : 29 , 30 . ) +Ungaziva sei kana mamwe mapfekero achifadza Jehovha ? +( c ) Zvisarudzo zvakakura zvinofanira kuitwa sei ? +( Verenga Genesisi 6 : 5 , 6 . ) +Tinobatsirwa sei patinoita zvisarudzo zvinofadza Jehovha ? +Ticharamba tiine zvinhu zvitsva zvekudzidza nezvaJehovha . +Nei tichifanira kuramba tichichinja kunyange tatobhabhatidzwa ? +Nei Mwari achitarisira kuti tishande nesimba kuti tikunde chido chekuita zvakaipa ? +Tingaitei kuti Shoko raMwari rirambe richichinja upenyu hwedu ? +1 - 3 . ( a ) Ndezvipi zvimwe zvinhu zvinogona kutiomera kuchinja kunyange tatobhabhatidzwa ? +( b ) Kana zviri kutiomera kurega tumwe tutsika mibvunzo ipi yatingava nayo ? +Nei dzimwe nguva tichitadza kufadza Jehovha ? +Zvinhu zvipi zvatakachinja tisati tabhabhatidzwa , asi zvii zvinogona kuramba zvichitinetsa ? +6 , 7 . ( a ) Chii chinoita kuti tikwanise kuva shamwari dzaJehovha pasinei nekuti tine chivi ? +( b ) Nei tisingafaniri kuzeza kukumbira Jehovha kuti atikanganwire ? +Tinoziva sei kuti tinokwanisa kuramba tichipfeka unhu hutsva ? +Tinofanira kuitei kuti tirambe tichichinja tichibatsirwa neShoko raMwari , uye mibvunzo ipi yatingabvunza ? +Nei Mwari achitarisira kuti tishande nesimba kuti tikunde chido chekuita zvakaipa ? +Zvii zvatingaita kuti tive neunhu hunodiwa naJehovha ? +( Ona bhokisi rakanzi “ Bhaibheri Uye Kunyengetera Zvakachinja Upenyu Hwavo . ” ) +Nei tisingafaniri kuora mwoyo kana tisiri kukwanisa kuchinja nekukurumidza ? +Kana takavimbika kuna Jehovha , tinotarisira kuwanei mune ramangwana ? +Tingava sei nechokwadi chekuti Bhaibheri rine simba rekuramba richichinja upenyu hwedu ? +[ 1 ] ( ndima 1 ) Zita rakachinjwa . +Russell : “ Kunyengetera kuna Jehovha ndichiita zvekuteterera uye kuverenga Bhaibheri zuva nezuva zvakandibatsira . +Ndakabatsirwawo nekufungisisa rugwaro rwa2 Petro 2 : ​ 11 uye mazano andakapiwa nevakuru . ” +Maria Victoria : “ Ndakanyengetera nemwoyo wose kuna Jehovha kuti andibatsire kudzora rurimi rwangu . +Ndakaonawo kuti ndaifanira kurega kushamwaridzana nevanhu vanofarira kuita makuhwa . +Rugwaro rwaPisarema 64 : ​ 1 - 4 rwakaita kuti ndione kuti handidi kuva munhu wekuti vamwe vanonyengetera kuna Mwari kuti ndisavakanganisa ! +Ndakaonawo kuti kuramba ndichiita makuhwa kwaizoita kuti ndizivikanwe semunhu akaipa uye zvaizoshoresa zita raJehovha . ” +Linda : “ Ndakaita kuti ndinyatsoziva zviri mumaturakiti edu kuitira kuti ndikwanise kuzoapa vanhu . +Kushamwaridzana nevanhu vanonakidzwa nekushandisa nzira dzakasiyana - siyana dzekuparidza kuri kundibatsira chaizvo . +Uye ndinoramba ndichinyengetera kuna Jehovha kuti andibatsire . ” +Vanhu vose vane zvavanokanganisa zvinogona kurwadzisa vamwe . +Jehovha anosarudza sei vanhu vaanoumba ? +Mwari anoumba sei vaya vanobvuma kutungamirirwa naye ? +Tingatevedzera sei zvakaitwa nevaIsraeri vainge vapfidza ? +Jehovha anosarudza sei vanhu vaanounza kwaari ? +( Verenga 1 Samueri 16 : 7b . ) +Kuvimba kwatinoita naJehovha seMuumbi wedu kunofanira kuchinja sei maonero atinoita ( a ) vanhu vari mundima medu ? +Rimwe zuva , ndakasangana neimwe mhuri yandakayemura pamusana pezvakanaka zvayakaita . +Ndakazoshamisika mumwe musi pandakaziva kuti vaiva Zvapupu zvaJehovha ! +Maitiro avo akaita kuti ndiongorore kuti nei ndaivaona neziso risina kunaka . +Ndakazoona kuti maitiro angu aikonzerwa nekusaziva uye zvandainzwa nezvavo . ” +( Verenga VaHebheru 12 : 5 , 6 , 11 . ) +Jehovha ari kutidzidzisa sei mazuva ano , uye dzidzo yacho ichaenderera mberi sei mune ramangwana ? +Uye takadzidza kuda vamwe . +Jesu akaratidza sei unyanzvi uye mwoyo murefu achitevedzera Muumbi Mukuru ? +( Verenga Pisarema 103 : 10 - 14 . ) +Dhavhidhi akaratidza sei kuti aiva ivhu rekuumbisa rakapfava , uye tingamutevedzera sei ? +Jehovha anotiumba sei achishandisa mudzimu mutsvene uye ungano yechiKristu ? +Kunyange zvazvo Jehovha aine simba paivhu , anoratidza sei kuti anoremekedza rusununguko rwedu rwekusarudza zvatinoda ? +Vadzidzi veBhaibheri vanoratidza sei kuti vanoda kuumbwa naJehovha ? +( a ) Chii chinokufadza pakuti Jehovha ndiye Muumbi wako ? +( b ) Ndezvipi zvatichakurukura panyaya yekuumba ? +Unhu hupi hungaita kuti tisada kuteerera patinotsiurwa naMwari ? +Unhu hupi hungatibatsira kuti tirambe tiri vanhu vanoumbika mumaoko aMwari ? +Vabereki vechiKristu vangaratidza sei kuti Jehovha ndiye Muumbi wavo ? +Nei Mwari akaona Dhanieri ‘ semurume anodiwa kwazvo , ’ uye tingatevedzera sei kuteerera kwaaiita ? +Zvirevo 4 : 23 inoti , “ Pazvinhu zvose zvinofanira kuchengetedzwa , chengetedza mwoyo wako , nokuti mauri ndimo mune matsime oupenyu . ” +( Verenga 2 Makoronike 26 : 3 - 5 , 16 - 21 . ) +Chii chinogona kuitika kana tikatadza kubvisa unhu hwekuzvikudza ? +Imwe hama yakataura kuti nekufamba kwenguva yakanga isingacharohwi nehana payaiita zvakaipa . +7 , 8 . ( a ) Zvakaitwa nevaIsraeri zvinoratidza sei kuti kusava nekutenda kunoomesa mwoyo ? +( b ) Chidzidzo chipi chatinowana ? +Nei tichifanira kugara ‘ tichizviedza ’ kuti tione kana tiri mukutenda , uye tingazviita sei ? +Chii chinogona kutibatsira kuti tiite seivhu rakapfava riri mumaoko aJehovha ? +Jehovha anoshandisa sei ungano yechiKristu kuti atiumbe zvinoenderana nemumwe nemumwe wedu ? +Basa reushumiri rinogona kutibatsira kuvandudza unhu hupi uye zvinobatsirei ? +Vabereki vanofanira kuitei kana vachida kubudirira pakuumba vana vavo ? +Vabereki vanofanira kuratidza sei kuti vanovimba naMwari panodzingwa mwana wavo ? +( Verenga 1 VaKorinde 5 : 11 , 13 . ) +Nei tichifanira kubvuma kutungamirirwa naJehovha muupenyu hwedu hwese , uye izvozvo zvichatibatsira sei ? +Jehovha Mwari wedu “ ndiJehovha mumwe chete ” pakudini ? +Tingaratidza sei kuti tinomunamata ‘ saJehovha mumwe chete ’ ? +Tingaita sei kuti tirambe tiine rugare uye takabatana ? +( b ) Nei Mosesi akataura mashoko iwayo ? +4 , 5 . ( a ) Mashoko ekuti “ Jehovha mumwe chete ” anorevei ? +( b ) Jehovha akasiyana sei navanamwari vemamwe marudzi ? +Ndezvipi zvimwe zvinorehwa nemashoko ekuti “ Jehovha mumwe chete , ” uye Jehovha akaratidza sei kuti “ mumwe chete ” ? +8 , 9 . ( a ) Jehovha anotarisira kuti vanamati vake vaite sei ? +( b ) Jesu akasimbisa sei kukosha kwemashoko akataurwa naMosesi ? +( Verenga Mako 12 : 28 - 31 . ) +10 , 11 . ( a ) Tingazvipira sei zvakazara kuna Jehovha ? +( b ) VaHebheru vechidiki vaiva muBhabhironi vakaratidza sei kuti vakanga vakazvipira zvakazara kuna Jehovha ? +Chii chatinofanira kungwarira pakuzvipira kuna Jehovha zvakazara ? +Zvii zvatingatanga kuda kupfuura Jehovha ? +Chii chakaita kuti Pauro ayeuchidze vaKristu kuti Mwari “ ndiJehovha mumwe chete ” ? +16 , 17 . ( a ) Uprofita hupi huri kuzadzika mazuva ano , uye ungano dzakawanda dzava nevanhu vakaita sei ? +( b ) Chii chinogona kukanganisa kubatana kwedu ? +18 , 19 . ( a ) Izano ripi rinotaurwa pana VaEfeso 4 : 1 - 3 ? +( b ) Tingaita sei kuti ungano irambe yakabatana ? +Tingaratidza sei kuti tinonzwisisa kuti “ Jehovha Mwari wedu ndiJehovha mumwe chete ” ? +KuTrinidad and Tobago kune misha yakawanda yevanhu vanobata hove yakavakwa kumahombekombe kwegungwa . +Zvapupu zvaJehovha zvinowanzoshandisa mukana wose wazvinowana kuti zvitaure nevabati vehove +Bhaibheri rinoratidza sei kuti tose tiri vanhu vane chivi ? +Tingaita sei nezvikanganiso zvedu uye zvevamwe ? +Bhaibheri rakafanotaura sei nezvekuwedzera kwevanhu vaJehovha ? +( Verenga Mika 4 : 1 , 3 . ) +Izvi zvakavabatsira kuti varambe vakachena “ paropa revanhu vose . ” — Mab . 20 : 26 . +Nei kuwedzera kwevanhu vaJehovha kuchishamisa ? +Nei dzimwe nguva vamwe vangatirwadzisa ? +( Verenga VaRoma 5 : 12 , 19 . ) +Dai waigara muIsraeri panguva yaEri nevanakomana vake , ungadai wakaita sei ? +Nei tingati Eri akatadza kutsiura vanakomana vake ? +Dhavhidhi akaita zvivi zvipi zvakakura , uye Mwari akaita sei nazvo ? +( a ) Muapostora Petro akatadza sei kuita zvaakanga ataura ? +( b ) Nei Jehovha akaramba achishandisa Petro kunyange zvazvo akambokanganisa ? +Nei uchivimba kuti Jehovha anogara achiita zvakarurama ? +Jesu aiziva chii nezvekukanganisa kwaJudhasi Iskariyoti naPetro ? +Bhaibheri rakafanotaurei nezvevanhu vaJehovha varipo iye zvino ? +Tinofanira kuona sei kukanganisa kwevamwe ? +13 , 14 . ( a ) Nei tichifanira kuitira vamwe mwoyo murefu ? +( b ) Tinofanira kuyeuka vimbiso ipi ? +Jesu akati tinofanira kuita sei vamwe vakakanganisa ? +Ungada kuitei vamwe pavanokanganisa ? +( Verenga Mateu 5 : 23 , 24 . ) +Jehovha zvaakakukanganwirai nomwoyo wose , imiwo itai saizvozvo . ” +Mhinduro dzemibvunzo iyoyo hadzina kuoma . +Izvi tinogona kuzviona kubva pane zvinotaurwa neBhaibheri nezveuchenjeri uye kunzwisisa . +Zvirevo 3 : 13 - 15 inoti : “ Munhu anowana uchenjeri ndiye anofara , nomunhu anowana ungwaru , nokuti kuva nahwo sepfuma kuri nani kupfuura kuva nesirivha sepfuma , uye kuva nahwo sezvibereko kuri nani kupfuura ndarama . +Hunokosha kupfuura matombo ekorari , uye zvimwe zvose zvinokufadza hazvigoni kuenzaniswa nahwo . ” +Jesu Kristu akaratidza muenzaniso wakanaka wekutendeseka . +Samaneja mukuru , ndaitarisirwa kuwirirana nemunhu aiona nezvemitero kuburikidza nekumupa chiokomuhomwe kuti asaongorore kubiridzira kwaiita kambani yacho . +Izvi zvakaita kuti ndizivikanwe semunhu asina kutendeseka . +Pandakadzidza chokwadi , ndakaramba kuenderera mberi nekuita izvozvo , kunyange zvazvo basa racho raiva nemari yakawanda . +Ndiri muenzaniso wakanaka kuvanakomana vangu vaviri , uye ndakakwanisa kupiwa zvekuita muungano . +Vanoita zvemitero nevamwe vandinoita navo zvebhizinesi vava kundiziva semunhu akatendeseka . ” +Rute akatamira kunyika yeIsraeri kwaaigona kunamata Mwari wechokwadi . +1 : 16 . +Ndechipi chipo chikuru pane zvose chakapiwa vanhu naJehovha chinoratidza mutsa wake usina kukodzera kuwanwa ? +Tingaratidza sei kuti hatichatongwi nechivi asi nemutsa usina kukodzera kuwanwa ? +Mutsa usina kukodzera kuwanwa waJehovha unoita kuti tiwane makomborero api ? +1 , 2 . ( a ) Tsanangura mufananidzo waJesu wemuridzi wemunda wemizambiringa . ( b ) Nyaya yacho inobudisa sei pachena chinonzi rupo uye mutsa usina kukodzera kuwanwa ? +Kana kuti muri kuita shanje nekuti ndine rupo here ? ’ — Mat . +( Verenga 2 VaKorinde 6 : 1 . ) +Nei Jehovha akaratidza vanhu mutsa usina kukodzera kuwanwa , uye akauratidza sei ? +Zvinorevei kuti mutsa usina kukodzera kuwanwa waJehovha “ unoratidzwa nenzira dzakasiyana - siyana ” ? +Muapostora Petro akanyora kuti : “ Maererano nokugamuchira chipo kwakaita mumwe nomumwe , chishandisei pakushumirana sevatariri vakanaka kwazvo vomutsa usina kukodzera kuwanwa waMwari unoratidzwa nenzira dzakasiyana - siyana . ” +Muapostora Johani akanyora kuti : “ Tose takagamuchira kubva pane zvaazere nazvo , iwo mutsa usina kukodzera kuwanwa pamusoro pomumwe mutsa usina kukodzera kuwanwa . ” +Tinobatsirwa sei nemutsa usina kukodzera kuwanwa waJehovha , uye tingaratidza sei kuti tinoonga mutsa iwoyo ? +( Verenga 1 Johani 1 : 8 , 9 . ) +Mutsa usina kukodzera kuwanwa waMwari unoita kuti tive nechii ? +Kuratidzwa kwemutsa usina kukodzera kuwanwa waMwari : Ropafadzo yekunzwa mashoko akanaka ( Ona ndima 11 ) +Vakazodzwa vanoita sei kuti “ mamwe makwai ” ave akarurama ? +Chikomborero chemunyengetero ( Ona ndima 12 ) +Munyengetero unobatana papi nemutsa usina kukodzera kuwanwa waMwari ? +Mutsa usina kukodzera kuwanwa ungatibatsira sei “ panguva yakakodzera ” ? +Mwoyo yedu inobatsirwa sei nemutsa usina kukodzera kuwanwa waJehovha ? +Mutsa usina kukodzera kuwanwa waMwari unoita kuti tive netariro yei ? +( Verenga Pisarema 49 : 7 , 8 . ) +Vamwe vaKristu vepakutanga vaishandisa sei zvisiri izvo mutsa usina kukodzera kuwanwa waMwari ? +Sezvo Jehovha akatiitira mutsa usina kukodzera kuwanwa , zvii zvatinofanira kuita ? +Ibasa ripi ratiinaro richaongororwa munyaya inotevera ? + +20 : 24 . +Mutsa usina kukodzera kuwanwa waJehovha unofanira kutikurudzira kuitei ? +“ Mashoko akanaka oumambo ” anobudisa sei pachena mutsa usina kukodzera kuwanwa waMwari ? +Munyika itsva , Jehovha acharatidza sei mutsa wake usina kukodzera kuwanwa ? +Muapostora Pauro akaratidza sei kuti aionga mutsa usina kukodzera kuwanwa waMwari ? +MUAPOSTORA Pauro aigona kutaura nemwoyo wose kuti : “ Mutsa [ waMwari ] usina kukodzera kuwanwa waakandiitira hauna kuva mutsa usina zvaunobatsira . ” +( Verenga 1 VaKorinde 15 : 9 , 10 . ) +( Verenga VaEfeso 3 : 5 - 8 . ) +Nei tichigona kutaura kuti “ mashoko akanaka oumambo ” ndiwo mashoko akanaka “ omutsa usina kukodzera kuwanwa waMwari ” ? +Patinoudza vanhu nezverudzikinuro , tinenge tichiparadzira sei mashoko akanaka omutsa usina kukodzera kuwanwa waMwari ? +Nei zvichikosha kuti vanhu vane chivi vayananiswe naMwari ? +Muapostora Johani akanyora kuti : “ Anotenda muMwanakomana ane upenyu husingaperi ; asingateereri Mwanakomana haazooni upenyu , asi hasha dzaMwari dzinoramba dziri paari . ” +9 , 10 . ( a ) Kristu akapa hama dzake dzakazodzwa basa ripi ? +Naizvozvo tiri nhume dzinomiririra Kristu , sokunge kuti Mwari akanga achiteterera achishandisa isu . +Nei ari mashoko akanaka kuti vanhu vazive kuti vanogona kunyengetera kuna Jehovha ? +Vanhu vakawanda vanoti kunyengetera kunoita kuti vanzwe zvakanaka , asi havanyatsobvumi kuti Mwari anonzwa minyengetero yavo . +Vanofanira kuziva kuti Jehovha ndiye “ Munzwi womunyengetero . ” +Munyori wemapisarema Dhavhidhi akanyora kuti : “ Haiwa imi Munzwi womunyengetero , vanhu vemarudzi ose vachauya kwamuri . +Jesu akaudza vadzidzi vake kuti : “ Kana mukakumbira chimwe chinhu muzita rangu , ndichachiita . ” +13 , 14 . ( a ) Vakazodzwa vachava neropafadzo dzipi dzakazonaka mune ramangwana ? +( b ) Vakazodzwa vachaitira vanhu basa ripi rinoshamisa ? +Munguva yemberi , Jehovha acharatidza sei mutsa wake usina kukodzera kuwanwa kune “ mamwe makwai ” ? +Vanhu vanosvika mamiriyoni vakafa vasingazivi Mwari vachamutswawo . +Johani akanyora kuti : “ Ndakaona vakafa , vakuru nevaduku , vamire pamberi pechigaro choumambo , uye mipumburu yakavhurwa . +Vakafa vakatongwa nezvinhu zviya zvakanga zvakanyorwa mumipumburu maererano nemabasa avo . +Gungwa rakabudisa vaya vakafa vakanga vari mariri , uye rufu neHadhesi zvakabudisa vakafa vakanga vari mazviri , uye vakatongwa mumwe nomumwe maererano nemabasa ake . ” +Chii chatinofanira kuramba tichiyeuka patinoita basa rekuparidza ? +Bhaibheri rinoti : “ Zvisikwa zvichasunungurwawo muuranda hwokuora zvova norusununguko runobwinya rwevana vaMwari . ” +Anotiwo : “ Nyora , nokuti mashoko aya akatendeka uye ndeechokwadi . ” +Patinoshingaira kuudza vamwe mashoko aya akanaka , tinoita kuti mutsa usina kukodzera kuwanwa waJehovha ukudzwe ! +“ Rambai muchitsvaka Umambo [ hwaMwari ] , uye zvinhu izvi zvichawedzerwa kwamuri . ” — RUKA 12 : 31 . +Musiyano upi uri pakati pezvinhu zvinokosha pakurarama nezvinhu zvatinongodawo hedu ? +Nei tichifanira kudzora chishuwo chekuda zvinhu zvakawanda ? +Nei uine chokwadi chekuti Jehovha anogona kukupa zvinokosha pakurarama zuva rimwe nerimwe ? +Satani anoshandisa sei “ kuchiva kwemaziso ” ? +Ngatiyeukei zvatakanyeverwa nemuapostora Johani kuti : “ Nyika iri kupfuura pamwe chete nokuchiva kwayo . ” +Chii chinogona kuitika kune vaya vanoshandisa simba rakawanda pakuwedzera zvinhu zvavainazvo ? +Chii chatichaongorora , uye kuita izvozvo kuchatibatsira sei ? +8 , 9 . ( a ) Nei tisingafaniri kunyanya kuzvidya mwoyo pamusoro pezvinhu zvekurarama nazvo ? +( b ) Jesu aizivei nezvevanhu uye zvinokosha pakurarama kwavo ? +Jesu paakadzidzisa vateereri vake kuti vanganyengetera sei , akati vaifanira kunyanya kukoshesei muupenyu hwavo ? +Tinodzidzei pakuchengeta kunoita Jehovha shiri dzokudenga ? +Tinofanira ‘ kunyatsocherechedza shiri dzokudenga . ’ +Kunyange zvakadaro , haaisi chikafu chacho mumiromo yadzo ! +Chii chinoratidza kuti tinokosha kupfuura shiri dzokudenga ? +( Enzanisa naRuka 12 : 6 , 7 . ) +15 , 16 . ( a ) Tinodzidzei kubva pakuchengetwa kunoitwa maruva emusango naJehovha ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Mibvunzo ipi yatingazvibvunza , uye nei ? +Jehovha anoziva chii nezvemumwe nemumwe wedu , uye chii chaachatiitira ? +Nei tisingafaniri kunetseka pamusoro pezvingangoitika mune ramangwana ? +Unogona here kuita kuti usava nezvakawanda muupenyu hwako kuitira kuti uwedzere kuita mabasa eUmambo ? ( +( a ) Ungava nechinangwa chipi pakushumira Jehovha ? +( b ) Ungaita sei kuti uite kuti usava nezvakawanda muupenyu hwako ? +Chii chichakubatsira kuswedera pedyo naJehovha ? +Tsanangura kuti nei zvichikosha kuti tizive kuti nguva yava papi uye kuti tizive zvinenge zvichiitika patinenge tiri . +Nei Jesu akaudza vadzidzi vake kuti ‘ varambe vakarinda ’ ? +Nei tichinyatsoteerera nyevero yaJesu ? +( a ) Nei tichigona kuti parizvino Jesu ava kuziva kuti Amagedhoni ichaitika riini ? +( b ) Kunyange zvazvo tisingazivi kuti kutambudzika kukuru kuchatanga riini , tinogona kuva nechokwadi chei ? +Jesu paaiva panyika , akataura kuti : “ Hapana munhu anoziva nezvezuva iroro neawa , kunyange ngirozi dzokumatenga kana Mwanakomana , asi Baba voga . ” +( Verenga Habhakuki 2 : 1 - 3 . ) +Taura muenzaniso unoratidza kuti Jehovha anozadzisa uprofita hwake panguva chaiyo yaanenge asarudza . +Uprofita hwaJehovha hwagara huchizadzika panguva chaiyo yaanenge asarudza ! +Pane imwe nguva , Jehovha akazoudza Abrahamu kuti : “ Chokwadi ziva kuti vana vako vachava vatorwa munyika isiri yavo , vachavashandira , uye ivava vachavatambudza kwemakore mazana mana . ” +Nei tingava nechokwadi chekuti Jehovha achanunura vanhu vake ? +7 , 8 . ( a ) Murindi aiita basa rei kare , uye izvozvo zvinotidzidzisei ? +( b ) Taura muenzaniso wezvaigona kuitika kana varindi vakarara pabasa . +Chii chisiri kuzivikanwa nevanhu vakawanda mazuva ano ? +10 , 11 . ( a ) Chii chatinofanira kungwarira kuti chisaitika , uye nei ? +( b ) Chii chinokuratidza kuti Dhiyabhorosi ari kupofumadza vanhu kuti vasateerere uprofita hweBhaibheri ? +Nei tisingafaniri kurega Dhiyabhorosi achitinyengera ? +Jesu akatinyevera kuti : “ Rambai makagadzirira , nokuti Mwanakomana womunhu anouya paawa yamusingafungidziri . ” +Mudzimu wenyika uri kukanganisa sei vanhu uye tingaita sei kuti tizvidzivirire ? +Ruka 21 : 34 , 35 inotinyevera nezvei ? +( Verenga Ruka 21 : 34 , 35 . ) +Chii chakaitika kuna Petro , Jakobho naJohani , uye izvozvo zvingaitikawo sei kwatiri ? +Maererano naRuka 21 : 36 Jesu akati tinofanira kuita sei kuti ‘ tirambe takamuka ’ ? +4 : 7 . Tingava sei nechokwadi chekuti tagadzirira zviri mberi ? +[ 1 ] ( ndima 14 ) Ona chitsauko 21 chebhuku raUmambo hwaMwari Huri Kutonga ! +Pataiva pagungano , imwe hama yakandibvunza kana ndaida kuparidza . +Takaenda kundima yatainoparidza , uye hama iya yakandipa tumabhuku twaitaura nezveUmambo hwaMwari . +Imwe hanzvadzi yaitiitisa zvidzidzo kubva muBhaibheri uye mubhuku rinonzi The Harp of God . +Semukomana wechidiki , ndainakidzwa nekuzivisa vanhu tariro iri muShoko raMwari . +Hama yacho yakamisa bhasikoro ikandikumbira kuti timbogara pane rimwe danda . +Yakabva yati : “ Wakapiwa nani simba rekuti utonge kuti mbudzi ndedzipi ? +Ngatingofarira kupa vanhu mashoko akanaka tosiyira Jehovha kuti atonge . ” +Imwewo hama yechikuru yakandidzidzisa kuti dzimwe nguva tinofanira kutsungirira tichiratidza mwoyo murefu kuti tiwane mufaro . +Papera makore , yakawana mubayiro wekuratidza mwoyo murefu pakabhabhatidzwa mudzimai wayo kuti ave mumwe weZvapupu zvaJehovha . +Hondo payakapera , ndakapayona kwemakore maviri nechekumaodzanyemba kweIreland . +Taisaziva simba raiva nemapristi . +Ndainge ndisati ndambofamba nemugungwa , saka ndaifara chaizvo . +Kwemakore mashanu , tainyanya kuparidza muzvitsuwa zvaiva kwazvo zvega zvakanga zvisina Zvapupu . +Mamishinari ari muSibia ( kubva kuruboshwe tichienda kurudyi ) : Ron Parkin , Dick Ryde , Gust Maki , naStanley Carter +Vaiwanzotipa hove nemakotapeya nenzungu . +Kana kwadoka tairidza bhero rechikepe . +Zvaifadza chaizvo kuona kuti vamwe vacho vaikoshesa zvikuru basa rataivasiira . +Patakasvika , ndakaonana naMaxine Boyd , imwe tsvarakadenga yaiva mumishinari , tikabva tadanana . +Saka ndakazviudza kuti , ‘ Ronald , kana uchida musikana uyu , wotomira - mira nekukurumidza . ’ +Papera mavhiki matatu ndakamuudza kuti ndaida kumuroora uye takachata pashure pamavhiki matanhatu . +Ini naMaxine takanzi tishande semamishinari muPuerto Rico , saka handina kuzombofamba nebhoti riya remainjini . +Semuenzaniso , mumusha wePotala Pastillo maiva nemhuri mbiri dzeZvapupu dzine vana vakawanda , uye ndaiwanzovaridzira chiridzwa chinonzi flute . +Ndakabvunza kamwe kasikana kainzi Hilda kuti kaida here kunoparidza nesu . +Takakatengera bhutsu , tikabva taenda kunoparidza tose . +Yakanga yava pedyo kuenda kuEcuador kwayaizoshumira , uye yakati : “ Hamuna kundiziva handiti ? +Ndini kasikana kekuPastillo kainge kasina bhutsu . ” +Pakutanga , ini naLennart Johnson tisu taiita basa rakawanda . +Hama Nathan Knorr , avo vaitungamirira Zvapupu zvaJehovha panguva iyoyo , vakauya kuPuerto Rico . +Vakazondipa zano rakasimba panyaya yekurongeka uye vakati vainge vasina kufara nazvo . +Ini naAmai patakagamuchira chokwadi , Baba havana . +Mudzimai wangu Maxine akashaya muna 2011 . +Ndinotarisira kuzomuona zvakare pachamutswa vanhu . +Pashure pemakore 60 ndiri pachitsuwa ichi , ndakanga ndava kunzwa sekuti ndiri chizvarwa chekuPuerto Rico , sekadatya kanogara mumuti kanozivikanwa zvikuru ikoko kanonzi coquí , kanorira kachiti ko - kee ko - kee kana zuva ravira . +Vamwe vanondishanyira kuti tikurukure nezvematambudziko avo kana kuti emhuri . +Zvose zvatinoita paBheteri ibasa dzvene . +Chero kwatinoshumira Jehovha tiri , tine mikana yekumurumbidza . +Nyaya youpenyu yaLeonard Smith iri muNharireyomurindi yaApril 15 , 2012 . +Nei tichigona kuti wanano chipo chinobva kuna Mwari ? +Ungarondedzera sei nhoroondo yewanano kubva panguva yaAdhamu kusvika panguva yaJesu ? +Chii chinogona kubatsira muKristu kuti asarudze kuti opinda muwanano here kana kuti kwete ? +1 , 2 . ( a ) Wanano yakatanga sei ? +( b ) Murume nemudzimai vekutanga vanofanira kunge vakanzwisisei nezvewanano ? +( Verenga Genesisi 2 : 20 - 24 . ) +Chinangwa chinokosha chewanano chaiva chekuti panyika pazare nevanhu . +Tinodzidzei pamapinduriro akaita Adhamu naEvha pavakabvunzwa naJehovha ? +Ungatsanangura sei Genesisi 3 : 15 ? +( a ) Chii chiri kuitika muwanano kubva pakapanduka Adhamu naEvha ? +( b ) Bhaibheri rinorayira kuti varume nemadzimai vaite sei ? +Tsanangura nhoroondo yewanano kubva panguva yaAdhamu kusvika paMafashamo . +Jehovha akaitei kune vakaipa panguva yaNoa uye tinodzidzei pane zvakaitika panguva iyoyo ? +( a ) Mutsika dzakawanda , vanhu vaiona sei unzenza ? +( b ) Abrahamu naSara vakaratidza sei muenzaniso wakanaka muwanano yavo ? +( Verenga 1 Petro 3 : 3 - 6 . ) +Mutemo waMosesi waichengetedza sei vaIsraeri ? +( Verenga Dheuteronomio 7 : 3 , 4 . ) +12 , 13 . ( a ) Munguva yaMaraki , vamwe varume vaibata sei madzimai avo ? +( b ) Mazuva ano , munhu akabhabhatidzwa akatiza nemurume kana kuti nemudzimai wemumwe , zvinoguma nei ? +( a ) Muungano yechiKristu , wanano yaizofanira kunge yakaita sei ? +Pauro akawedzera kuti : “ Kana vasingakwanisi kuzvidzora , ngavaroore kana kuroorwa , nokuti zviri nani kuroora kana kuroorwa pane kutsva . ” +18 , 19 . ( a ) Wanano yechiKristu inofanira kutanga sei ? +( b ) Nyaya inotevera ichataura nezvei ? +Mwari akati varume nemadzimai vanofanira kuitei ? +Nei rudo uye unyoro zvichikosha chaizvo muwanano ? +Bhaibheri ringabatsira sei kana wanano iine matambudziko ? +Kunyange zvazvo wanano ichiwanzotanga nemufaro , vanopinda muwanano vangatarisira chii ? +Vari muwanano vanofanira kuratidzana rudo rwakaita sei ? +Rudo runofanira kunge rwakasimba zvakadini muwanano ? +Pauro akanyora kuti : “ Varume , rambai muchida madzimai enyu , Kristu zvaakadawo ungano , akazvipa nokuda kwayo . ” +( Verenga Johani 13 : 34 , 35 ; 15 : 12 , 13 . ) +4 , 5 . ( a ) Zvii zvinofanira kuitwa nemurume semusoro wemba ? +( b ) Mudzimai anofanira kuona sei nyaya yekuzviisa pasi pemurume wake ? +( c ) Zvii zvaifanira kuchinjwa nemumwe murume nemudzimai pavakaroorana ? +Kuva nemba kwaida kuti ndichinje zvimwe zvinhu sezvandaidzidza kuitirwa zvimwe zvinhu nemurume wangu . +Dzimwe nguva zvakanga zvisiri nyore , asi kuita zvinhu sezvinodiwa naJehovha kwakaita kuti tiwedzere kudanana . ” +Kusarudzira vanhu vaviri kwakatonyanya kuoma . +Asi kunyengetera ndichitsvaka kutungamirirwa naJehovha uye kunyatsoteerera zvinotaurwa nemudzimai wangu kuri kuita kuti zvirambe zvichiita nyore . +Ndinoona sekuti tiri kuita mushandirapamwe chaiwo ! ” +Panomuka matambudziko muwanano , rudo runoshanda sei ‘ sechisungo chakakwana chokubatana ’ ? +7 , 8 . ( a ) Bhaibheri rinopa zano ripi kune vari muwanano panyaya yebonde ? +( b ) Nei vari muwanano vachifanira kuva neunyoro ? +( Verenga 1 VaKorinde 7 : 3 - 5 . ) +Hapana anofanira kuita zvekumanikidza mumwe kuti vaende pabonde , zvinofanira kungoitika zvega . +Nei kuva nechido chekuenda pabonde nemunhu wausina kuroorana naye kwakaipa zvikuru ? +10 , 11 . ( a ) Dambudziko rekurambana rakakura zvakadini ? +( b ) Bhaibheri rinotii nezvekuparadzana ? +( c ) Chii chingabatsira vari muwanano kuti vasakurumidza kuparadzana ? +Chii chingaita kuti vari muwanano vafunge kuparadzana ? +Bhaibheri rinotii kumuKristu ane murume kana mudzimai asiri mushumiri waJehovha ? +( Verenga 1 VaKorinde 7 : 12 - 14 . ) +Kana kuti , iwe murume , unoziva sei kuti hauzoponesi mudzimai wako ? ” +15 , 16 . ( a ) Bhaibheri rinopa zano ripi kumadzimai echiKristu ane varume vasiri vashumiri vaMwari ? +( b ) ‘ Kana asingatendi akasarudza kuenda , ’ muKristu angaitei pakadaro ? +Muapostora Petro anopa madzimai echiKristu zano rekuti zviisei pasi pevarume venyu , “ kuti kana paine vasingateereri shoko , muvawane nomufambiro wenyu pasina shoko rinotaurwa , nokuva kwavo zvapupu zvakaona mufambiro wenyu wakachena pamwe chete noruremekedzo rukuru . ” +Ko kana asingatendi wacho akasarudza kuenda ? +Bhaibheri rinoti : “ Kana asingatendi akabva , ngaabve hake ; hama kana hanzvadzi haisi muuranda [ haimanikidzwi ] mumamiriro ezvinhu akadaro , asi Mwari akakudanirai rugare . ” +VaKristu vari muwanano vanofanira kuisa chii pekutanga ? +VaKristu vangaita sei kuti vave newanano inofadza uye inobudirira ? +[ 1 ] ( ndima 5 ) Mazita akachinjwa . +[ 2 ] ( ndima 13 ) Ona bhuku rinonzi “ Rambai Muri Murudo rwaMwari , ” mashoko okuwedzera , “ Zvinotaura Bhaibheri Nezvokurambana Uye Kuparadzana . ” +Zvinofadza chaizvo kuparidza mangwanani mumugwagwa unotevedza Danube River ! +Vaparidzi ava vari kuudza munhu anoda kuteerera mashoko eUmambo paVigadó Square muBudapest , kuHungary +Zvii zvaungaita kuti ufambire mberi pakunamata ? +Ungaita sei kuti ufambire mberi pakunamata usinganeti ? +Zvii zvaungachinja zvingakubatsira kuti unyatsobudirira muushumiri ? +1 , 2 . ( a ) Isaya 60 : 22 iri kuzadzika sei mumazuva ano ekupedzisira ? +( b ) Iye zvino chii chiri kudiwa muchikamu chepanyika chesangano raJehovha ? +“ MUDUKU achava chiuru uye akadukupa achava rudzi rune simba . ” +Zvii zvaunoda kuita kuti ufambire mberi pakunamata ? +Vechidiki vangashandisa sei simba ravo mumabasa echiKristu ? +6 - 8 . ( a ) Imwe hama yechidiki yakachinja sei maonero ayaiita zvekunamata , uye zvakaguma nei ? +( b ) ‘ Tingaravira sei toona kuti Jehovha akanaka ’ ? +Kukomborera kwaanondiita kunoita kuti ndinzwe ndiine chikwereti chekuti ndiitewo zvakawanda mubasa rake , uye izvi zvinoita kuti ndiwane mamwe makomborero . ” +( Verenga Pisarema 34 : 8 - 10 . ) +Nei zvichikosha kuti uve munhu ‘ anomirira ’ ? +Unhu hupi hwechiKristu hwatingashandira kuti tive nahwo , uye nei huchikosha ? +Vari muungano vangaratidza sei kuti vanogona kuvimbwa navo ? +Ungatevedzera sei muenzaniso waJosefa kana vamwe vakakubata zvisina kunaka ? +Ungaita sei kana vamwe vakakubata zvisina kunaka ? +14 , 15 . ( a ) Nei tichifanira ‘ kuchenjerera ’ nzira dzatinoparidza nadzo ? +( b ) Ungachinja sei maererano nemamiriro ezvinhu ? +( Ona mufananidzo uri panotangira nyaya ino uye bhokisi rakanzi “ Unoda Here Kumboedza Imwe Nzira ? ” ) +Kuparidzira munzvimbo dzinowanikwa vanhu vakawanda kunogona kubudirira sei ? +17 , 18 . ( a ) Ungaita sei kuti uwedzere kuva nechivimbo pakuparidza munzvimbo dzinowanikwa vanhu vakawanda ? +( b ) Nei ungati zvaiitwa naDhavhidhi pakurumbidza Jehovha zvinogona kukubatsira paunenge uri muushumiri ? +Anoti : “ Pakunamata kwedu kwemhuri , ini nemudzimai wangu tinotsvakurudza mapinduriro atingaita zvinotaurwa nevanhu , kusanganisira vaya vanoramba kuparidzirwa . +Tinokumbirawo mazano kune zvimwe Zvapupu . ” +( Verenga 1 Timoti 4 : 15 . ) +Vachataura nezvokukudzwa kwoumambo hwenyu , uye vachataura nezvesimba renyu , kuti vazivise vanakomana vevanhu mabasa ake esimba nokukudzwa kwokubwinya kwoumambo hwake . ” +Kana uine zvakawanda zvekuita musangano raJehovha , ungavawo sei chikomborero kune vamwe ? +Iye zvino Venecia anoti : “ Kuparidzira pafoni kunoshanda ! ” +Mudzimai wangu akashaya makore matatu akapfuura , uye gore rakapera , mwanakomana wangu akafira mutsaona . ” +Ndiri kukunyorerai pashure pemakore maviri sehanzvadzi yenyu yechiKristu . ” +Nei tichifanira kuita kuti vadzidzi veBhaibheri vave nechido chakasimba chekudzidza Magwaro vari vega ? +Tingabatsira sei vatsva kuti vataure navanasaimba nevamwewo vanhu ? +Nei vakuru vachifanira kuita zvese zvavanogona kuti vadzidzise vamwe kuti vazova vafudzi veboka raMwari ? +Nei tichifanira kudzidzisa vamwe kuti vaite mabasa ane chekuita nekunamata ? +3 , 4 . ( a ) Pauro akaratidza sei kuti kudzidza Magwaro kwakabatana nekubudirira muushumiri ? +( b ) Tisati takurudzira vatinodzidza navo kuti vadzidze Bhaibheri vari vega , tinofanira kunge tichiita sei ? +Taura kuti vatsva vangabatsirwa sei kuti vagare vachidzidza Bhaibheri vari vega . +Ungazvibvunza kuti , ‘ Ndingabatsira sei mudzidzi wangu kuti agare achidzidza Bhaibheri ? ’ +Mukurudzire kuti averenge magazini imwe neimwe yeNharireyomurindi uye Mukai ! . +( a ) Ungabatsira sei waunodzidza naye kuti awedzere kuda Bhaibheri ? +( b ) Kana mudzidzi weBhaibheri akasvika pakuda Magwaro nemwoyo wese , kazhinji kacho chii chaanozoita ? +Jesu akadzidzisa sei vazivisi vemashoko akanaka ? +8 , 9 . ( a ) Jesu aitaura sei nevanhu paaiita ushumiri hwake ? +( b ) Tingabatsira sei vaparidzi vatsva kuti vakurukure nevanhu sezvaiita Jesu ? +10 - 12 . ( a ) Jesu aiita sei kuti vamwe varambe vachifarira mashoko akanaka ? +( b ) Tingabatsira sei vaparidzi vatsva kuti vavandudze unyanzvi hwavo hwekudzidzisa chokwadi cheBhaibheri ? +13 , 14 . ( a ) Unofungei nezvevanhu vari muBhaibheri vakaita mabasa ekuzvipira vachibatsira vamwe ? +( b ) Ungadzidzisa sei vaparidzi vatsva uye vechidiki kuti varatidze rudo kuhama nehanzvadzi dzavo ? +Nei zvichikosha kuti vakuru vave nehanya nekufambira mberi kwevarume vari muungano ? +16 , 17 . ( a ) Pauro akaratidza sei kuti aiva nehanya nekufambira mberi kwaTimoti ? +( b ) Vakuru vangabudirira sei pakudzidzisa hama kuti dzizova vafudzi muungano ? +Nei tichifanira kukoshesa nyaya yekudzidzisa vamwe kuita basa raJehovha ? +Nei uchifanira kuva nechivimbo chekuti uchabudirira kana ukashanda nesimba pakudzidzisa vamwe kuita basa raJehovha ? +Vanoramba vachindinamata pasina , nokuti vanodzidzisa mirayiro yevanhu sedzidziso . ’ +Munobatisisa tsika yevanhu muchirega murayiro waMwari . ” — Mako 7 : 6 - 8 . +3 “ Maoko Ako Ngaarege Kushayiwa Simba ” +Jehovha akasimbisa sei maoko aMosesi , Asa , naNehemiya ? +Zvii zvatingaita kuti tisimbise maoko ehama nehanzvadzi dzedu ? +( b ) Chii chingaita kuti maoko edu ashaye simba ? +Semuenzaniso , pane mazana emavhesi anotaura nezveruoko . +Ungawana sei simba rekutsungirira wova nemufaro ? +Asi maoko aMosesi paakanga ava kurema ndokutanga kudzika , vaAmareki vakatanga kukunda . +( b ) Mwari akapindura sei munyengetero waNehemiya ? +( Verenga Nehemiya 1 : 10 ; 2 : 17 - 20 ; 6 : 9 . ) +Unotenda here kuti Jehovha anoshandisa ‘ simba rake guru ’ uye ‘ ruoko rwake rune simba ’ kuti asimbise vashumiri vake mazuva ano ? +10 , 11 . ( a ) Satani anoedza sei kuita kuti maoko edu ashaye simba ? +( b ) Jehovha anoshandisei kuti atisimbise ? +Anoshandisa nhema uye kutyisidzira kunoitwa nehurumende , vatungamiriri vemachechi uye vanhu vakapandukira sangano . +13 , 14 . ( a ) Imwe hama yakasimbiswa sei pakafa mudzimai wayo ? +Kunyengetera uye kudzidza ndiri ndega kunondibatsira kuti ndisafa pakunamata . +Ndava kuona kukosha kwazvakaita kuti munhu ave neukama hwakanaka naJehovha asati awirwa nematambudziko . ” +Mwari anotidzidzisa sei kuti tirwise vavengi vedu ? +Anotibatsirawo achishandisa misangano yechiKristu , magungano , uye mabhuku anotsanangura Bhaibheri . +Tingaita sei kuti tisakurirwa nezvakaipa ? +( b ) Vanhu vapi vemuBhaibheri vatichakurukura nezvavo ? +Chii chakabatsira Jakobho kuti ashingirire , uye Mwari akamukomborera sei ? +( Verenga Genesisi 32 : 24 - 28 . ) +Vamwe vaKristu vaviri vakabatsirwa sei kuti vadzore zvido zvakaipa ? +Mukomana uyu akabatsirwawo nenyaya ine musoro unoti “ Mararamiro Asiri Omuzvarirwo ​ — Mwari Anoabvumira Here ? ” +Akati , “ Nechikonzero ichocho , ndinofunga kuti ndinogona kuramba ndakavimbika zuva rimwe nerimwe . +Ndinotenda Jehovha nekushandisa kwaari kuita sangano rake pakutibatsira kuti tirarame zuva rimwe nerimwe munyika ino yakaipa . ” +Fungawo zvakaitika kune imwe hanzvadzi yekuUnited States . +Yakanyora kuti : “ Ndinoda kukutendai nekugara muchitipa zvekudya zvekunamata zvatinenge tichida uye panguva yakakodzera . +Kakawanda ndinonzwa sekuti nyaya idzi dzakanyorerwa ini . +Ndava nemakore akawanda ndichirwisana nechido chakasimba chekuita chimwe chinhu chinovengwa naJehovha . +Dzimwe nguva ndinombofunga zvekukanda mapfumo pasi , ndorega kurwa . +Ndinoziva kuti Jehovha ane ngoni uye anoregerera , asi nemhaka yekuti ndine chido ichi uye kuti nechepasi pasi pemwoyo wangu handichivengi , ndinonzwa sekuti handikodzeri kubatsirwa naye . +Hondo iyi yaita kuti upenyu hwangu huome chaizvo . . . . +Pandakaverenga nyaya ine musoro unoti ‘ Une “ Mwoyo Wokuti Uzive ” Jehovha Here ? ’ +iri muNharireyomurindi yaMarch 15 , 2013 , ndakanyatsoona kuti zvechokwadi Jehovha anoda kundibatsira . ” +( a ) Pauro ainzwa sei nezvekurwisa kwaaiita zvido zvenyama ? +Tinodzidzei panyaya yezvipfeko kubva paMutemo waMwari waakapa vaIsraeri ? +Chii chingabatsira vaKristu kusarudza zvakanaka panyaya yekupfeka ? +Ndepapi pazvinonyanya kukosha kuti tipfeke zvakakodzera ? +Asi zvimwe zvipfeko zvakakodzera kune dzimwe nzvimbo zvinogona kunge zvisina kukodzera kune dzimwe . +( Verenga 1 VaKorinde 10 : 32 , 33 . ) +Zvii zvinogona kuita kuti hama ichengete ndebvu kana kusadzichengeta ? +Mutemo waMosesi waida kuti varume vachengete ndebvu . +Dzimwe hama dzakagadzwa dzinotova nadzo . +Kunyange zvakadaro , dzimwe hama dzingasarudza kusachengeta ndebvu . +Mapfekero uye kushambidzika kwedu kunofanira kuita kuti vamwe vaite sei ? +Imwe hama yekuGermany yakanyora kuti : “ Vadzidzisi vangu vanoona nhoroondo iri muBhaibheri yekusikwa kwezvinhu sengano . +Uye vanongofunga kuti vadzidzi vanotenda kuti zvinhu zvakashanduka - shanduka . ” +Imwe hanzvadzi yechidiki yekuFrance yakati : “ Vadzidzisi vekuchikoro kwedu vanoshamisika kuti kune vadzidzi vachiri kutenda zvinotaurwa neBhaibheri . ” +nerinonzi The Origin of Life ​ — Five Questions Worth Asking , uye bhuku rinonzi Is There a Creator Who Cares About You ? +Mabhurocha iwayo ndakaadzidza kakawanda . ” +Dzinoratidza kuti mainjiniya angatevedzera zvinhu zvakasikwa asi zvinhu zvaanogadzira hazvizombofi zvakaenzana nezvakasikwa . ” +Nei Mwari achida kuti ushandise simba rako rekufunga ? +( Verenga VaRoma 12 : 1 , 2 ; 1 Timoti 2 : 4 . ) +Uye vazhinji vavo vakararama panguva dzakasiyana uye vakanga vasingazivani . ” +Ndakatombomira ndichifungisisa nezvekushamisa kwepaseka iyoyo . ” +Imwe hama yechidiki yekuBritain yakati , “ Panongova nevanhu vashoma vakavimbika zvakadaro . +Izvi zvinotiwedzera chivimbo chekuti zvechokwadi Bhaibheri rinobva kuna Jehovha . ” +Imwe hanzvadzi yechidiki yekuJapan yakanyora kuti : “ Mhuri yedu payakashandisa zvinodzidziswa neBhaibheri , takatanga kuva nemufaro . +Takava vanhu vane rugare , vakabatana , uye vane rudo . ” +Uye vamwe vanorega kutenda muna Mwari nekuti vakaodzwa mwoyo nezvitendero . +Akawedzera kuti : “ Zvinoshamisa chaizvo kuti kunyange miviri yetupukanana tusingaoneki nemaziso ine tunhu twakawanda twakaoma kunzwisisa . ” +Akanyora kuti : “ Imba imwe neimwe inovakwa nomumwe munhu , asi iye akavaka zvinhu zvose ndiMwari . ” +Nei zvichikosha chaizvo kuti munyatsoziva vana venyu ? +Vana vedu vanova nekutenda zvishoma nezvishoma . ” +Vanondibvunza kuti : ‘ Bhaibheri rinotii ? ’ +‘ Unotenda zvarinotaura here ? ’ +Vanoda kuti ndipindure nemashoko angu kwete kungodzokorora mashoko avo kana kuti aAmai . +Makore zvaaifamba , ndaifanira kupa mhinduro dzakadzama . ” +Vakapindura mibvunzo yangu yose vachishandisa Bhaibheri . ” +( Verenga Dheuteronomio 6 : 5 - 8 ; Ruka 6 : 45 . ) +Saka kana upenyu hwakatangira patunhu tudikidiki , nei zvipuka izvi zvekare kare zvakanga zvakaoma kuzvinzwisisa ? +Zvandakadzidza zvakandinakidza chaizvo uye ndakazviudzawo mwana wangu . ” +Vakabva vati mumwe nemumwe avabikire kofi . +“ Vakanyatsoibika nemwoyo wese , ” vakadaro mai vacho . +“ Pandakavabvunza kuti nei vakaibika nemwoyo wese , vakati vaida kuti kofi yacho inyatsoita sezvandaifarira chaizvo . +Ndakatsanangura kuti Mwari akasanganisawo magasi ari mumhepo nemwoyo wese achiitira kuti zvitinakire . ” +Unotii nezvekutinhira kwendege uchikuenzanisa nekuimba kweshiri ? +Saka ndiani akangwara kupfuura mumwe pakati pemugadziri wendege neMusiki weshiri ? ” +Vamwe baba vakati , “ Musamboneta pakuedza nzira itsva dzekudzidza nadzo zvinhu zvamakambodzidza . ” +Kubvira pavaiva vadiki chaizvo , ndaidzidza navo kwemaminitsi 15 zuva rega rega kunze kwemisi yataiva nemisangano yechiKristu . +Nekufamba kwenguva , zvakawanda zvacho zvakajekeswa pamisangano kana kuti pakudzidza semhuri kana kuti pandaidzidza ndega . +Ndokusaka zvichikosha kuti vabereki varambe vachidzidzisa . ” +Itai kuti vana venyu vaone kuti Jehovha munhu chaiye kwamuri . +Vanoti : “ Tinoudzawo mwanasikana wedu mukuru kuti , ‘ Nyatsovimba naJehovha , gara uchiita basa reUmambo , uye usanyanya kunetseka . ’ +Paanoona zvinozoitika , anobva aziva kuti Jehovha ari kutibatsira . +Izvi zviri kusimbisa kutenda kwake muna Mwari uye mune zvinotaurwa neBhaibheri . ” +Nyaya yekutanga inoratidza kuti kutenda kwedu kungakura sei kworamba kwakasimba . +Regai nditsanangure zvakaitika kusvika paakazondifonera . +NDAKABEREKERWA muWichita , kuKansas , U.S.A . , musi wa10 December , 1936 , uye ndini dangwe pavana 4 . +Pakabva papfuura mumwe musoja , chiremba ndokubva ashevedzera kwaari achiti , “ Gadzirisa gwara iri ! ” +Musoja wacho akaona kuti chiremba uyu akanga akadhakwa , ndokubva amuti , “ Enda kumba unorara iwe ! ” +Vaiva nemabhabhashopu maviri muWichita , uye chiremba wacho aitogerwawo ikoko ! +Ndiine vabereki vangu tichienda kugungano kuWichita kuma1940 +Ungano yakatangwa nekuti vaishanda nesimba uye vaikomborerwa naJehovha . +Hama yekutitora yakatengesawo mota yangu ne $ 25 . +Takanzi tinoshanda semapiyona chaiwo kuWalnut Ridge , Arkansas . +Muna 1962 , takafara patakakokwa kukirasi yechi37 yeGiriyedhi . +Tiina Mary naChris Kanaiya muushumiri kuNairobi vedu +Papera nguva pfupi , takava nemwanasikana wedu wekutanga , Kimberly , uye papera gore nemwedzi mishanu , Stephany akaberekwawo . +Taimboenda kunokemba navo uye tainakidzwa chaizvo nekukurukura tichidziya moto . +Takaronga kuti vamwe vaiva mubasa renguva yakazara vagare pamba pedu . +Zvakavavhundutsa , ndokutanga kuchema , uye vakati vaida kudzidza . +Tichitungamirirwa nesangano raMwari , takaita zvose zvataigona kuti vakure vachida Jehovha . +Pavakazoenda zvakare , Kimberly akaonana naBrian Llewellyn , uyo aishanda naPaul . +Saka vese vakazoroorwa vasvitsa makore 23 . +Panguva iyoyo , Brian naKimberly vakakokwa kunoshanda paBheteri rekuLondon uye vakazonzi vaende kunoshanda paBheteri rekuMalawi . +Patakaenda kuWatchtower Educational Center kuPatterson , mangwana acho Linda akatifonera achitiudza kuti Amai vashaya . +Takazoenda kunoitisa kosi iyi kuZimbabwe uyewo kuZambia . +Muna 2006 , Brian naKimberly vakatamira paimba iri padivi pedu kuti varere vanasikana vavo vaviri , Mackenzie naElizabeth . +Paul naStephany vachiri kuMalawi , uye Paul ari muDare Rebazi . +Nei tingafanira kugadzirisa maonero atinoita vaeni ? +Pandakabva panhandare yendege , ndakarohwa nechando zvandainge ndisati ndamboita , ndikatanga kuchema . ” +VaJudha vaitaura chiGiriki vakagunun’una kuti chirikadzi dzavo dzakanga dzisiri kubatwa zvakanaka . +Kunyange tingasazviziva hedu , tose tinoita zvinhu zvichienderana netsika dzedu . +( Verenga 1 Petro 1 : 22 . ) +Ratidza mwoyo murefu kune vatsva vari kuedza kujairana nenyika yaunogara . +Pakutanga , tingasanzwisisa mafungiro avo kana kuti maitiro avanoita zvimwe zvinhu . +Tinogamuchira zvakanaka vanobva kune dzimwe nyika here ? ( Ona ndima 16 , 17 ) +Chekutanga , akaremekedza tsika dzemunyika yaakanga ava paakakumbira kuunganidza zvaisaririra . +[ 1 ] ( ndima 1 ) Zita rakachinjwa . +Uri mumwe wevaya vari kudzidza mumwe mutauro here ? +( Verenga Nehemiya 13 : 23 , 24 . ) +( b ) Tingazadzisa sei chinangwa chedu ? +Tinofanira kuziva kuti patinogadzirira ushumiri , misangano , kana hurukuro , isu vacho tingasashandisa zvatinenge taverenga . +Sezvo pfungwa dzangu dzichinyanya kungova pakunzwisisa mutauro wacho , zvekudya zvekunamata zvandinenge ndichiverenga hazvinyatsonditi dyoo pamwoyo . +Ndokusaka ndichironga kuti ndigare ndiine nguva yekudzidza Bhaibheri nemamwe mabhuku mururimi rwaamai . ” +“ Kuparidza nemumwe mutauro kwaimusvota , nepo aimbofarira kuparidza mumutauro wake wechiFrench , ” anodaro Muriel . +Serge anoti , “ Patakaona kuti izvi zvaitadzisa mwanakomana wedu kukura pakunamata , takasarudza kudzokera kuungano yataimbopinda nayo . ” +Ivai nechokwadi chekuti shoko raMwari rasvika pamwoyo yevana venyu ( Ona ndima 14 , 15 ) +Asi tinodzidzirawo zvatichazotaura muushumiri kana pamisangano uye tinoita mitambo muchiLingala kuitira kuti vana vedu vadzidze mutauro uyu patinenge tichimbofara . ” +Shanda nesimba pakudzidza mumwe mutauro uye edza kupindurawo pamisangano ( Ona ndima 16 , 17 ) +Takarongawo kupinda misangano yechiFrench kamwe chete pamwedzi , uye tinopinda magungano mumutauro wedu patinenge tiri pazororo . ” +( Verenga VaRoma 15 : 1 , 2 . ) +Tingaratidza sei kuti tinoda Shoko raMwari ? +Hama dziri mundima yebhizinesi dziri kuparidzira makanika ari pagaraji . +( Verenga Zvakazarurwa 21 : 3 - 6 . ) +Abrahamu nemhuri yake vakaita sei kuti varambe vaine kutenda kwakasimba ? +( Verenga 1 Johani 5 : 14 , 15 . ) +Vamwe vaprofita vakatsungirira miedzo ipi pamusana pekutenda kwavo ? +Vamwe vakadai saEriya “ vakadzungaira mumarenje nomumakomo nemapako nomuninga dzepanyika . ” +Muenzaniso waNoa unotibatsira sei kuti tinzwisise chinonzi kuva nekutenda ? +Tingaratidza sei kuti tine kutenda ? +VaHebheru 11 : 1 inotsanangura kutenda nenzira mbiri dzipi ? +Unoona kuti kutenda kwavo kwakashanda pamwe chete nemabasa avo uye kutenda kwavo kwakaitwa kwakakwana nemabasa avo . ” +Semuenzaniso , Johani akati : “ Anotenda muMwanakomana ane upenyu husingaperi ; asingateereri Mwanakomana haazooni upenyu , asi hasha dzaMwari dzinoramba dziri paari . ” +Kutenda kunokosha zvakadini kana kuchienzaniswa nerudo ? +Jakobho akabvunza hama dzake dzakazodzwa kuti : “ Mwari haana kusarudza varombo mune zvenyika kuti vapfume mukutenda uye vave vagari venhaka youmambo , hwaakapikira vaya vanomuda here ? ” +Vanhu pavakanga vakarara , muvengi wake akauya akadyarawo masora pakati pegorosi , akaenda . +Chipande chakati chabuda chikabereka zvibereko , masora akabva aonekawo . ” +Jehovha akapa vanhu vake tariro ipi , uye nei vimbiso iyi yaishamisa ? +VaIsraeri vaizokwanisa kunamata Mwari zvakare nenzira inonyatsogamuchirika here ? +Saka hazviiti kuti titi vanhu vaJehovha vakatapwa neBhabhironi Guru muna 1918 . +( Verenga 1 Petro 2 : 9 , 10 . ) +( Verenga Mateu 13 : 24 , 25 , 37 - 39 . ) +VaKristu vaizombonamata Mwari vakasununguka uye zvinogamuchirika here ? +Vakazodzwa vakasunungurwa riini kubva muutapwa hweBhabhironi ? +Hama Rutherford vakakumbira kuti tironge magungano mumaguta akati kuti kumadokero kweUnited States totumira vakurukuri kuti vaedze nepavaigona napo kukurudzira hama . ” +13 : 15 . +Saka ndinogara ndichichema uye ndinoona zviri nani kusataura navo . +Akanyatsonditeerera pandaitaura zvaindinetsa . +Akabva andiyeuchidza zvakanaka zvandaiita . +Akandiyeuchidzawo nezvemashoko aJesu ekuti mumwe nemumwe wedu anokosha kupfura shiri duku dzakawanda . +Ndinowanzoyeuka rugwaro irworwo , uye ruchiri kundikurudzira . +Tingadzidzei kubva pane zvaiitwa naJehovha , Jesu , uye Pauro pakukurudzira vamwe ? +( Verenga Muparidzi 4 : 9 , 10 . ) +Tingadzidzei pamabatiro akaita Jesu vadzidzi vake ? +Pashure pokupfuura nomumativi iwayo uye achikurudzira vaivamo nemashoko mazhinji , akasvika kuGirisi . ” +( Verenga 1 VaTesaronika 5 : 12 , 13 . ) +Dzinotikurudzira chaizvo . ” +Andreas , uyo ane vana vaviri , anoti : “ Kukurudzira kunobatsira vana kuti vakure pakunamata uye mupfungwa . +Kunyange zvazvo vana vedu vachiziva kuti zvakanaka ndezvipi , kuti varambe vachizviita muupenyu hwavo tinofanira kuramba tichivakurudzira . ” +( Verenga Ruka 21 : 1 - 4 ; 2 VaKorinde 8 : 12 . ) +( Verenga Zvakazarurwa 2 : 18 , 19 . ) +Pamakataura nemutsa kudaro , muri pachikuva uye patakazotaura tose , ndakanyatsonzwa kuti chaiva chipo chakabva kuna Jehovha . ” +[ 1 ] ( ndima 1 ) Mamwe mazita akachinjwa . +( b ) Munyaya ino tichakurukura nezvei ? +Ungano dzaibatsirwa sei nekutevedzera mirayiridzo yedare raitungamirira ? +( Verenga 3 Johani 9 , 10 . ) +( Verenga Mateu 5 : 23 , 24 ; 18 : 15 - 17 . ) +Bhaibheri rinotirayira kuti tigare tichipinda misangano . +Uri kushandisawo here jw.org muushumiri uye pakunamata kwemhuri ? +Takakurudzirwawo kuti kana tadzidza bhuku raBhaibheri Rinombodzidzisei ? +Ndezvipi zvimwe zvikonzero zvinoita kuti tionge Jehovha ? +Pane zvikonzero zvakawanda zvinoita kuti tionge Jehovha . +Inoratidzawo kuti tariro yekuwana mubayiro inotibatsira sei . +Panguva iyoyo , ndaingova nemakore 8 chete . +Baba vaisada kuti amai vandiudze zvavaidzidza . +Zvisinei , ndaida kuziva zvavaidzidza uye ndaibvunza mibvunzo , saka amai vaindidzidzisa kana baba vasipo pamba . +Izvi zvakaita kuti ndizosarudzawo kutsaurira upenyu hwangu kuna Jehovha . +Amai vakati ndaifanira kutanga ndataura nemuranda kune hama ( uyo ava kunzi mutariri wedunhu ) . +Akanditi , “ Hapana chekumirira ! ” +Pashure pemwedzi 4 , ndakasarudza hama yandaizopayona nayo . +Amai vaipayona neimwe hanzvadzi mune imwe ungano . +Muna 1951 , ndakanyorera kuti ndipinde Chikoro cheBhaibheri cheWatchtower cheGiriyedhi . +Pandaiva mujeri , ndakagamuchira tsamba yaindikoka kuti ndipinde kirasi yechi22 yeGiriyedhi . +Ndakabva ndaenda nechitima kuSouth Lansing , New York , kwaiva nechikoro chacho . +Ndiina Janet tiri pane chimwe chezvitsuwa zviri muPhilippines +Tichiri kushumira pahofisi yebazi muguta reQuezon +Ungava sei ‘ nerugare rwaMwari ’ ? +Ungano ingakubatsira sei kuti usanyanya kuzvidya mwoyo ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Tichakurukurei munyaya ino ? +Asi ungazviita sei ? +Munyori wemapisarema Dhavhidhi akateterera kuna Jehovha achiti : “ Haiwa Mwari , teererai munyengetero wangu . ” +Nei kunyengetera kuchikosha patinozvidya mwoyo ? +( Verenga Mateu 11 : 28 - 30 . ) +Jesu airevei paakati : “ Musambozvidya mwoyo ” ? +Akati : “ Ndauura nokuda kwokugomera kwomwoyo wangu . ” +( Ona bhokisi rakanzi “ Zvaungaita Kuti Usanyanya Kuzvidya Mwoyo . ” ) +Zvinorehwa nezita raMwari zvingasimbisa sei kutenda kwako ? +Zita rake rinoreva kuti “ Anoita Kuti Zvinhu Zvive Sezvaanoda . ” +Nei uchigona kuva nechivimbo chekuti ukama hwako naMwari huchakupa simba ? +( a ) Tingakanda sei kuzvidya mwoyo kwedu pana Mwari ? +Tingava sei nechokwadi chekuti Jehovha anopa vashumiri vake mubayiro ? +Jehovha akakomborera sei vashumiri vake vekare ? +1 , 2 . ( a ) Rudo nekutenda zvinodyidzana papi ? +Asi tariro yekuwana mubayiro inotibatsira sei ? +Jesu akaratidza kuti vadzidzi vake vaizopiwa mubayiro wekuzvipira kwavo ( Ona ndima 5 ) +Muapostora Petro akabvunza Jesu kuti : “ Isu takasiya zvinhu zvose tikakuteverai ; chokwadi chii chatichawana ? ” +MuMharidzo yake yepaGomo , Jesu akati : “ Farai musvetuke nomufaro , nokuti mubayiro wenyu mukuru kumatenga ; nokuti vakatambudza vaprofita vakakutangirai saizvozvo . ” +Mosesi akaudza vaIsraeri kuti : “ Chokwadi Jehovha achakukomborera munyika yauri kupiwa naJehovha Mwari wako senhaka kuti uitore ive yako , kana ukangoteerera inzwi raJehovha Mwari wako kuti uchenjerere kuita murayiro uyu wose wandiri kukurayira nhasi . +Nokuti Jehovha Mwari wako achakukomborera sezvaakakupikira . ” +Akatumidza wechipiri kuti Efremu , nokuti , sezvaakataura , ‘ Mwari aita kuti ndibereke munyika yokutambudzika kwangu . ’ ” +Shoko raMwari rinoti : “ Iye akatsungirira padanda rokutambudzikira nokuda kwomufaro wakaiswa pamberi pake , asina hanya nokunyadziswa . ” +Jesu akawana mufaro pakutsvenesa zita raMwari . +Jehovha anoona sei zvatinomuitira ? +“ Munhu anonzwira nyasha munhu akaderera , anokweretesa Jehovha , uye Iye achamuripa zvaanoita . ” +Tinowana nyaradzo ipi pana 1 Johani 3 : 19 , 20 ? +( Verenga 1 Johani 3 : 19 , 20 . ) +Ndeipi mimwe mibayiro yatiri kuwana iye zvino ? +Vashumiri vaJehovha vanonzwa sei nezvemibayiro yavanowana ? +Semuenzaniso , Bianca wekuGermany anoti : “ Ndinoshaya kuti ndotenda sei Jehovha nekundibatsira kwaanoita pandinenge ndichinetseka uye kunditsigira zuva nezuva . +Munyika mune nyonganyonga uye vanhu havana tariro . +Asi sezvandinoshanda naJehovha , ndinonzwa ndakachengeteka mumaoko ake . +Pese pandinozvipira kuitira Jehovha zvimwe zvinhu , anondipa makomborero akapetwa zvine zana . ” +Kuti ndiwane zvinondikurudzira , ndinochengeta kabhuku kandinonyora magwaro nezvandinenge ndadzidza kuti ndizokwanisa kuzviverenga pane imwe nguva . +Ndinokati ‘ Kabhuku Kanondibatsira Pakunamata . ’ +Kana tikaisa pfungwa dzedu pane zvakavimbiswa naJehovha hatizogari takaora mwoyo . +Jehovha akagadzirira kutibatsira pasinei nekuti tiri mumamiriro ezvinhu akaita sei . ” +Kunyange zvakadaro , unogona kufunga nezvekupiwa kwawakaitwa mubayiro naJehovha uye kwaakaita vanhu vaunoziva . +Pauro nevamwe vaKristu vakasunungurwa sei kubva muchivi nerufu ? +( Verenga VaRoma 6 : 1 , 2 . ) +Mumwe nemumwe wedu anogona kusarudzei ? +( Verenga Zvirevo 14 : 5 ; VaEfeso 4 : 25 . ) +Vanowana “ mudzimu ” sevaya vari ‘ kumirira nomwoyo wose kugamuchirwa sevanakomana , iko kusunungurwa mumiviri yavo yenyama . ’ +( Verenga VaRoma 4 : 20 - 22 . ) +( Verenga Mabasa 18 : 2 - 4 ; 20 : 20 , 21 , 34 , 35 . ) +Vashanyi vakawanda vanouya kuguta reAveiro riri nechekuchamhembe kwePortugal kuti vaone nzvimbo inoomeserwa mvura ine munyu . +Zvapupu zveko zvinoshandisa mukana iwoyo kupa mashoko akanaka kuvanhu vanotengesa munyu wacho . +Ndezvipi zvimwe zvatinodzidza muBhaibheri ? +Munyaya ino , tichadzidza kuti tingakoshesa sei chipo chatakapiwa naMwari cherusununguko rwekusarudza kuburikidza nekuchishandisa nenzira inomufadza . +Nyaya yekutanga inotsanangura kuti kuva nemwero kunorevei uye kuti hakurevi chii . +Jehovha anotarisira kuti tishandise sei zvipo zvedu ? +Zviri pachena kuti Jehovha anoda kuti tiite zvatinogona kuti zvinhu zvitifambire zvakanaka uye kuti tibatsirewo vamwe . +Noa akararama munyika yainge “ yakazara nechisimba ” uye unzenza . +Vanhu pavanoramba kuparidzirwa ( Ona ndima 6 - 9 ) +6 , 7 . ( a ) Noa aisagona kuitei ? +( b ) Tiri mumamiriro ezvinhu akafanana neaNoa pakudini ? +Isuwo tiri kurarama munyika yakazara neuipi , uye tinoziva kuti Jehovha akavimbisa kuiparadza . +Parizvino , hatigoni kumanikidza vanhu kuti vagamuchire “ mashoko akanaka oUmambo . ” +Zvaigona kuitwa naNoa : Noa haana kukanda mapfumo pasi pamusana pezvaakanga asingagoni kuita ; akaisa pfungwa pane zvaaigona kuita . +Dhavhidhi akaita sei ? +Zvivi zvawakamboita ( Ona ndima 11 - 14 ) +11 , 12 . ( a ) Chii chaisagona kuitwa naDhavhidhi pashure pekunge aita chivi ? +Zvaisagona kuitwa naDhavhidhi : Dhavhidhi aisagona kuchinja zvaakanga atoita kare . +Sezvo ainge apfidza zvechokwadi , aifanira kuva nechivimbo chekuti Jehovha aizomuregerera , omubatsira kuti atsungirire matambudziko aikonzerwa nekutadza kwake . +Aifanira kusiyira nyaya yacho mumaoko aJehovha . +Imwe hama yainzi Malcolm yakaramba yakatendeka kusvikira payakazoshaya muna 2015 . +Isa pfungwa dzako pane zvaunokwanisa kuita kwete pane zvausingakwanisi . ” +( b ) Uchashandisa sei rugwaro rwegore rwa2017 muupenyu hwako ? +Rugwaro rwedu rwegore rwa2017 : “ Vimba naJehovha Uite Zvakanaka . ” ​ — Pisarema 37 : 3 +Tingaratidza sei kuti tinoremekedza zvisarudzo zvevamwe ? +Ndichavada ndisingatumwi nomumwe munhu . ” +4 , 5 . ( a ) Ndiani akatanga kupiwa chipo cherusununguko rwekusarudza uye akachishandisa sei ? +( b ) Mumwe nemumwe wedu anofanira kuzvibvunza mubvunzo upi ? +Maonero atinoita miganhu yacho achaita kuti tiwane upenyu husingaperi kana kuti kwete . +Mwari “ akatanga kuzviunza kumunhu kuti aone kuti aizotumidza chimwe nechimwe kuti chii . ” +Chii chatisingambofaniri kuita nechipo cherusununguko rwekusarudza ? +Ngatiti wakapa shamwari yako chipo chinokosha . +Tingadzivisa sei kushandisa rusununguko rwedu zvisina kunaka ? +( Verenga 1 Petro 2 : 16 . ) +Tinodzidzei pana VaGaratiya 6 : 5 ? +Yeuka pfungwa iri pana VaGaratiya 6 : 5 . +Ucharatidza sei kuti unokoshesa chipo chako cherusununguko rwekusarudza ? +( a ) Vanhu vakawanda vanofungei nezvekuva nemwero ? +Kuva nemwero kunorevei , uye hakurevi chii ? +Nei tisingafaniri kufunga kuti vavariro dzevamwe hadzina kunaka ? +Tingadzidzei kubva pamuenzaniso waJesu panochinja mabasa edu ? +( Verenga VaGaratiya 6 : 4 , 5 . ) +( Verenga Muparidzi 11 : 4 - 6 . ) +Chii chichatibatsira kuramba tiine mwero nokusingaperi ? +Nei zvichiomera vamwe kuti vape vamwe mabasa ekuita ? +Akaudza Natani kuti anoudza Dhavhidhi kuti : “ Hausi iwe uchandivakira imba yokuti ndigare . ” +( Verenga Numeri 11 : 24 - 29 . ) +Aiwa , ndaizoda kuti dai vanhu vose vaJehovha vaiva vaprofita , nokuti Jehovha aizoisa [ mweya ] wake pavari ! ” +( Verenga VaFiripi 2 : 20 - 22 . ) +Hofisi yebazi yakatitumira magazini 800 ekushandisa muushumiri . +Ndakaitisa makirasi echikoro ichi muManaus , Belém , Fortaleza , Recife uye Salvador . +Takasvika muLisbon , Portugal , muna August 1964 . +Ndiro rega riri kuita basa iro Jesu akarayira vadzidzi vake kuti vaite , basa rekuparidza mashoko akanaka eUmambo hwaMwari ! ” +Douglas Guest akafa akavimbika kuna Jehovha musi wa25 October 2015 , patakanga tichiri kugadzirira kuti tibudise nyaya ino . +Uye ‘ mweya waJehovha wakatanga kushanda pana Dhavhidhi . ’ +Nei Mwari aida kuti vanhu vake varemekedze vatungamiriri vaiva muIsraeri ? +( Verenga VaHebheru 1 : 7 , 14 . ) +MuBhaibheri , Mutemo wakapiwa vaIsraeri unonzi “ Mutemo waMosesi . ” +11 , 12 . ( a ) Joshua nemamwe madzimambo aitonga vanhu vaMwari vaifanira kuita sei ? +“ Paakangonzwa mashoko ebhuku romutemo , akabva abvarura nguo dzake . ” +Nei Jehovha airanga vamwe vatungamiriri vevanhu vake ? +Dzimwe nguva Jehovha aivaranga kana kuvatsiva nevamwe . +Chii chinoratidza kuti mweya mutsvene waiita kuti Jesu ave nesimba ? +Pashure pekunge Jesu abhabhatidzwa , “ ngirozi dzakauya , dzikatanga kumushumira . ” +Maawa mashomanana asati afa , ‘ ngirozi yakabva kudenga ikazviratidza kwaari , ikamusimbisa . ’ +Shoko raMwari rakatungamirira sei Jesu muupenyu hwake uye pakudzidzisa kwake ? +Vanoramba vachindinamata pasina , nokuti vanodzidzisa mirayiro yevanhu sedzidziso . ” +Hapana munhu akanaka , kunze kwomumwe chete , iye Mwari . ” +“ Ngirozi yaJehovha yakabva yamurova , nokuti haana kukudza Mwari ; uye akadyiwa nehonye , akafa . ” +Nyaya inotevera ichapindura mibvunzo iyoyo . +Ichi chingangodaro chaiva chinyorwa chakanyorwa naMosesi pachake . +Nei izvi zvaikosha kwavari uye kuna Jehovha ? +Sedare rinotungamirira , vaipa mirayiridzo kuungano dzose . ​ — Mab . 15 : 2 . +5 , 6 . ( a ) Mweya mutsvene waibatsira sei dare rinotungamirira ? +( c ) Shoko raMwari raitungamirira sei dare rinotungamirira ? +Kutanga , mweya mutsvene waibatsira dare rinotungamirira . +Chechitatu , Shoko raMwari raitungamirira dare iroro . +Nei tichigona kuti Jesu aitungamirira vaKristu vepakutanga ? +( a ) Jesu akagadza “ muranda akatendeka , akangwara ” riini ? +Muna 1919 , makore matatu Hama Russell vafa , Jesu akagadza “ muranda akatendeka , akangwara . ” +Nharireyomurindi yaJuly 15 , 2013 yakatsanangura kuti “ muranda akatendeka , akangwara ” iboka duku rehama dzakazodzwa dzinoumba Dare Rinotungamirira . +Saka tingapindura sei mubvunzo waJesu wekuti : “ Chokwadi ndiani muranda akatendeka , akangwara ? ” +Mweya mutsvene wakabatsira sei Dare Rinotungamirira ? +Ndeipi imwe nzira yatingayeuka nayo Dare Rinotungamirira ? +Nei uchida kutevera Mutungamiriri wedu Jesu , kunyange zvodini ? +Paakadzokera kudenga , Jesu haana kubva akanganwa vateveri vake . +Munguva pfupi iri kuuya achatitungamirira kuupenyu husingaperi . +Kubvira muna 1955 , sangano iroro rinozivikanwa seWatch Tower Bible and Tract Society of Pennsylvania . +Jehovha “ anotinyaradza pakutambudzika kwedu kwose ” +“ Ndakazvitaura ; ndichazviunzawo . +1 , 2 . ( a ) Jehovha akaita kuti tizive chii ? +MASHOKO ekutanga eBhaibheri mashoma asi anoreva zvakawanda . Anoti : “ Pakutanga Mwari akasika matenga nenyika . ” +( c ) Mibvunzo ipi yatichakurukura ? +Uye nei chibayiro cherudzikinuro chaJesu chiri icho chinovhura nzira yekuti chinangwa chaMwari chizadzike ? +Ndezvipi zvimwe zvipo zvakapiwa Adhamu naEvha ? +Zvaiita sekuti aiti : ‘ Saka hamugoni kuita zvamunoda ? ’ +Asi Jehovha anoita zvinoenderana nemitemo yake , haambofi akaityora . +( Verenga Dheuteronomio 32 : 4 , 5 . ) +Nei rudzikinuro chiri chipo chinokosha chaizvo ? +Jehovha akatidzikinura achishandisa chipo chinokosha zvikuru . +Jehovha achava “ zvinhu zvose kuvanhu vose ” riini ? +( Verenga 1 Petro 1 : 15 , 16 . ) +Nei Jehovha achigona kutiona setakarurama kunyange zvazvo tiine chivi ? +Vaya vanozvitsaurira kwaari anovagamuchira sevanamati vake . +Jesu airevei paakazoti : “ Kuda kwenyu ngakuitwe ” ? +Vakafa vanobatsirwa sei nerudzikinuro ? +Mwari anoda kuti “ boka guru ” riite sei ? +( a ) Makomborero api atinopiwa naJehovha iye zvino ? +( Verenga Mabasa 3 : 19 - 21 . ) +Jehovha haangogumiri pakutipa chipo cheupenyu . +“ Takasvika pakuziva uye takatenda rudo urwo Mwari anarwo kwatiri . +Uye dzimwe nguva tinofanira kuchinja chisarudzo chatinenge takaita here ? +Nyaya ino ichatibatsira kupindura mibvunzo iyoyo . +Asi Jehovha akati madzimambo iwayo aiva nemwoyo yakakwana kwaari . +Mwari achatiwo tine mwoyo yakakwana kwaari here pasinei nezvikanganiso zvatinoita ? +Taigara papurazi diki nechekumabvazuva kweSouth Dakota . +Mhuri yedu yaikoshesa kurima asi zvekurima handizvo zvainyanya kukosha . +Vabereki vangu vakabhabhatidzwa kuti vave Zvapupu zvaJehovha muna 1934 . +Baba vangu Clarence , vaishumira semuranda wekambani ( ava kunzi murongi mudare revakuru ) muungano yedu diki yaiva muConde , South Dakota , uye nekufamba kwenguva babamukuru vangu Alfred , vakazoshumirawo semuranda wekambani . +Hanzvadzi yangu , Dorothy , akava muparidzi aine makore 6 , uye ini ndakavawo muparidzi ndava nemakore 6 . +Taikoshesa chaizvo magungano muupenyu hwedu . +Bhaibheri rinoti : “ Munhu anofamba nevanhu vakachenjera achava akachenjera . ” Paiva nevakawanda vakachenjera vemumhuri neveukama vakatsigira chisarudzo changu chekupayona . +Pavaishanyira ungano dzaiva pedyo nesu , dzimwe nguva vaindikoka kuti ndiende navo muushumiri . +Ndichangosvika paBheteri , ndiine mota yepapurazi +Papurazi raiva muStaten Island paivawo nenhepfenyuro yeWBBR . +Papurazi iri paingoshanda vanhu 15 kusvika ku20 vemhuri yeBheteri . +Vazhinji vedu taiva vadiki uye taisava neruzivo rwakawanda . +Vainyatsoita basa ravo paBheteri asi vaisamborega kuita basa rekuparidza . +Ndiina Angela muna 1975 , takamirira kuita nhaurirano nevatori venhau paTV +Pashure pemakore matatu , takashevedzwa kuBheteri . +Nei Jehovha naKristu vakakodzera kukudzwa ? +Vanhu vakasikwa “ nomufananidzo waMwari . ” +8 , 9 . ( a ) Zvapupu zvaJehovha zvinoona sei vakuru vehurumende ? +( Verenga 1 Timoti 5 : 17 . ) +Uyewo musanzi ‘ vatungamiriri , ’ nokuti Mutungamiriri wenyu mumwe chete , iye Kristu . +Munhu wose anozvikwidziridza achaninipiswa , uye munhu wose anozvininipisa achakwidziridzwa . ” +Nei vamwe vasingafaniri kutiitira zvisarudzo ? +( a ) Kana tichida kuita zvisarudzo nekuchenjera , tinofanira kuva nekutenda muchii ? +Chii chichatibatsira kuita zvisarudzo nekuchenjera ? +( Verenga 2 VaKorinde 1 : 24 . ) +Vakuru vane rudo vanobatsira vamwe kuti vaite zvisarudzo vega ( Ona ndima 11 ) +Vakuru vanofanirawo kutsvakurudza . +Chichaita kuti mhuri yangu ifare uye ive nerugare here ? +Uye chicharatidza here kuti ndine mwoyo murefu nemutsa ? ’ +Nei Jehovha achitarisira kuti tizvisarudzire tega ? +Zvinorevei kushumira Jehovha nemwoyo wakakwana ? +Pamadzimambo mana aya ndeupi waungada kutevedzera uye nei ? +( Verenga 2 Makoronike 14 : 11 . ) +Mwoyo wako waizokukurudzira kuitei ? +Mwanakomana waAsa , Jehoshafati , “ akaramba achifamba nenzira yababa vake Asa . ” +( Verenga 2 Makoronike 20 : 2 - 4 . ) +( Verenga Isaya 37 : 15 - 20 . ) +( Verenga 2 Madzimambo 20 : 1 - 3 . ) +( Verenga 2 Makoronike 34 : 18 , 19 . ) +Nei tava kuda kuongorora mienzaniso yemadzimambo mana aJudha ? +( Verenga 2 Makoronike 16 : 7 - 9 . ) +( Verenga 2 Makoronike 32 : 31 . ) +Vakawanda vanoirumbidza pamusana pehurukuro yacho . +( Verenga 2 Makoronike 35 : 20 - 22 . ) +Bhaibheri rinoti mashoko aNeko “ akabva mumuromo maMwari . ” +Ngatifungisisei nyaya idzi dzemuBhaibheri toratidza kuti tinoonga kuti Jehovha akatipa mienzaniso yakadaro ! +Wakaita mhiko ngani kuna Jehovha ? +Zvakadini nemhiko yako yekuzvitsaurira kana kuti mhiko yako yemuchato ? +Patinofunga kuti tabatwa zvisina kunaka kana kuti patinoona sekuti pane kusaruramisira kwaitika , kutenda , kuvimbika uye kuzvininipisa kwedu kungaedzwa . +“ Nyika iri kupfuura pamwe chete nokuchiva kwayo , asi uyo anoita kuda kwaMwari anoramba aripo nokusingaperi . ” ​ — 1 JOH . 2 : 17 . +Jehovha achaita sei nevanhu vakaipa uye nemasangano ane unyengeri ? +Bhaibheri rinoti : “ Nyika iri kupfuura . ” +Hakuna rima kana zarima chero ripi zvaro rokuti vaya vanoita zvinhu zvinokuvadza vavande imomo . ” +MuPisarema iroro tinoverengawo kuti : “ Vakarurama vachagara nhaka yenyika , vachagara mairi nokusingaperi . ” +“ Vanyoro ” uye “ vakarurama ” ndivanaani ? +Nei tingava nechokwadi chekuti nyika itsva ichange yakanyatsorongeka ? +Pashure peAmagedhoni , pane sangano richange riripo panyika here ? +Saka zvinhu zvichange zvakarongeka ‘ munyika itsva . ’ +Ndeapi mabasa akaipa ari kunyanya kuitwa kwaunogara , uye ari kukanganisa sei iwe nemhuri yako ? +Tinodzidzei pakuparadzwa kwakaitwa Sodhoma neGomora naJehovha ? +( Verenga 2 Petro 2 : 6 - 8 . ) +( Verenga Pisarema 46 : 8 , 9 . ) +Ndezvipi zvimwe zvinhu zvinenge zvisisipo zvachose pashure peAmagedhoni ? +Taura muenzaniso . ( b ) Tingaita sei kuti tive nechokwadi chekuti tinoramba tiripo nyika ino paichange isisipo ? +“ MUTONGI wenyika yose haasi kuzoita zvakarurama here ? ” +Nekuti Jehovha ndiye anoratidza muenzaniso mukuru wekururamisira uye wekururama . +VaKristu vanotarisira kubatwa zvisina kururama nevanhu vasiri muungano yechiKristu . +Muna 1946 , vakapinda kirasi yechi8 yechikoro cheGiriyedhi muNew York , U.S.A . +Pashure pekunge vagirajuweta , vakapiwa basa remudunhu muSwitzerland . +Mienzaniso ipi yatichakurukura munyaya ino neinotevera ? +Munyaya ino tichakurukura nezvaJosefa , muzukuruchibvi waAbrahamu , uye zvaakaitirwa nevakoma vake . +10 , 11 . ( a ) Josefa akasangana nekusaruramisira kwakaita sei ? +( Verenga Mateu 5 : 23 , 24 ; 18 : 15 . ) +Kuvimbika kuna Jehovha uye kuhama dzedu kuchatidzivirira kuti tisaita chikanganiso chakadaro . +Chinonyanya kukosha ndechekuti haana kubvumira kuti kukanganisa kwevamwe kumuparadzanise naJehovha . +Nei tichifanira kuwedzera kuswedera pedyo naJehovha kana tikabatwa zvisina kururama muungano ? +Tingaratidza sei kuti tinovimba ‘ neMutongi wenyika yose ’ ? +Ona nyaya youpenyu yaWilli Diehl inoti , “ Jehovha ndiMwari Wangu , Wandichavimba Naye , ” iri muNharireyomurindi yaNovember 1 , 1991 . +( Ona mifananidzo iri panotangira nyaya ino . ) ( b ) Mibvunzo ipi ichapindurwa munyaya ino ? +Vakaratidza muenzaniso wakanaka kuvarume nevakadzi vanosarudza kuita mhiko kuna Jehovha mazuva ano . +Kuita mhiko kuna Mwari inyaya yakakura zvakadini ? +Tinowana zvidzidzo zvipi pana Jefta naHana ? +2 , 3 . ( a ) Chii chinonzi mhiko ? +( b ) Magwaro anotii nezvekuita mhiko kuna Mwari ? +( a ) Kuita mhiko kuna Mwari inyaya yakakura zvakadini ? +( b ) Tichadzidzei nezvaJefta naHana ? +( a ) Zvaiva nyore here kuti Jefta nemwanasikana wake varipe mhiko yaJefta ? +Jefta akati : “ Ndashama muromo wangu kuna Jehovha , uye handikwanisi kurega . ” +( b ) Mhiko yakaitwa naHana yaizoita kuti Samueri ave neupenyu hwakaita sei ? +Akaenda naSamueri kuna Eri , Mupristi Mukuru , kutebhenekeri yaiva muShiro ndokuti : “ Ndakanyengetera pamusoro pomukomana uyu [ uye Jehovha akandipa ] chikumbiro changu chandakamukumbira . +Mhiko yechipiri inonyanya kukosha ingaitwa nemunhu imhiko yemuchato . +Bhaibheri rinotii nezvekurambana uye kuparadzana ? +( Verenga 1 VaKorinde 7 : 10 , 11 . ) +Mumwe murume nemudzimai vakati : “ Kubva patakatanga kudzidza bhurocha iri , tiri kufara muwanano yedu zvatanga tisati tamboita . ” +Zvinhu zvava nani chaizvo muwanano yedu . ” +18 , 19 . ( a ) Vabereki vakawanda vechiKristu vari kuitei ? +( b ) Tingatii nezvevaya vari mubasa chairo renguva yakazara ? +Mhiko yebasa chairo renguva yakazara ( Ona ndima 19 ) +Vanonzi vashumiri chaivo kwete nekuti vakakosha kupfuura vamwe vashumiri vese vaMwari asi mabasa avanoita ndiwo anokosha . +Kakawanda kacho vanodzidzisira paDzimba Dzemagungano , paDzimba dzeUmambo kana pazvivako zvinoitirwa zvikoro zvesangano . +Wemasimbaose anofara nokuti iwe wakarurama here , kana kuti ane chaanowana here nokuti iwe unoita kuti nzira yako isava nechainopomerwa ? ” +( b ) VaIsraeri vakakunda sei uto raJabhini ? +( Verenga Vatongi 4 : 14 - 16 . ) +Rukova rwaKishoni rwakavakukura . ” +Ona nyaya inoti , “ Kuzvidya Mwoyo Nenyaya Dzemari ” iri muNharireyomurindi yaJuly 1 , 2015 . +1 , 2 . ( a ) Nabhoti nevanakomana vake vakasangana nekusaruramisira kwakaita sei ? +( b ) Tichadzidza zvinhu zvipi zviviri munyaya ino ? +Nabhoti aiva munhu akaita sei , uye akarambirei kutengesera Ahabhi munda wake wemizambiringa ? +Nabhoti ainge akatendeka kuna Jehovha panguva iyo vaIsraeri vakawanda vaitevedzera zvinhu zvakashata zvaiitwa naMambo Ahabhi nemudzimai wake akanga akaipa , Mambokadzi Jezebheri . +Verenga 1 Madzimambo 21 : 1 - 3 . +Akatsanangura zvine ruremekedzo kuti : “ Handingambofungi zvakadaro , mukuona kwaJehovha , kuti ndikupei nhaka yemadzitateguru angu . ” +Nei kuzvininipisa kwaigona kuchengetedza hama neshamwari dzaNabhoti ? +( Verenga Dheuteronomio 32 : 3 , 4 . ) +( b ) Kuzvininipisa kuchatichengetedza sei ? +Uchaita sei kana vakuru vakazivisa chisarudzo chausingabvumirani nacho ? +Inyaya ipi yatichaongorora , uye nei ? +Petro akaruramiswa sei , uye mibvunzo ipi inovapo ? +Akatozofemerwa kuti anyore tsamba mbiri dziri muBhaibheri . +3 Kubatsira ‘ Vatorwa ’ Kuti ‘ Vashumire Jehovha Vachifara ’ +Nyaya yechipiri inoratidza kuti kushandisa mazano eBhaibheri kungabatsira sei vabereki vanenge vatamira kune dzimwe nyika kuti vaite zvisarudzo zvinobatsira vana vavo . +“ Taiona vanhu vachimhanya vachiridza pfuti . +Vabereki vangu nesu vana 11 takatiza tiine zvinhu zvishomanana chete . +Jesu uye vamwe vateveri vake vakawanda vakasvika sei pakuva vapoteri ? +Akati : “ Pavanokutambudzai muguta rimwe , tizirai kune rimwe . ” +( b ) pavanenge vachigara mumusasa wevapoteri ? +Makumbo angu akazvimba zvekuti ndakaudza vamwe vemumba medu kuti vaende havo vachindisiya . +Baba vangu havana kuda kundisiya kuti ndizotorwa nevapanduki saka vakanditakura . +Vaiita makuhwa , vaidhakwa , vaiita zvekubheja , vaiba uye vaiita unzenza . ” +( Verenga 1 Johani 3 : 17 , 18 . ) +( b ) Nei tichifanira kuva nemwoyo murefu patinenge tichivabatsira ? +Dzinofanira kuona kuti tine hanya nadzo . +( b ) Vapoteri vangaratidza sei kuti vanoonga ? +Tingabatsira sei hama nehanzvadzi dzedu dzinenge dziri vapoteri ? +( a ) Vapoteri vanofanira kurwisa muedzo upi ? +Pakupedzisira , vakasimudza bhegi rakanga risisina chinhu ndokutaura vachinyemwerera kuti : ‘ Maonaka ? +Zvinhu zvese zvaiva mubhegi umu hazvikoshi muupenyu ! ’ ” ​ — Verenga 1 Timoti 6 : 8 . +Hama dzavo dzechiKristu dzinofanira kuvabata nenzira inoita kuti vaone kuti Jehovha anovada uye kuti ane tsitsi . +Mazuva ano vapoteri vakawanda vanobva kunyika dzatinorambidzwa kuita basa redu takasununguka . +Hanzvadzi yacho yakati : “ Hama dzeko dzakavabata sehama dzepedyo dzichivapa zvekudya , zvokupfeka , pekugara uye mari yekufambisa . +Ndivanaani vangagamuchira vanhu vavasingazivi mudzimba dzavo nemhaka bedzi yekuti vanonamata Mwari mumwe chete ? +Zvapupu zvaJehovha chete ndizvo zvinodaro ! ” ​ — Verenga Johani 13 : 35 . +Mupoteri paanongosvika , vakuru vanofanira kukurumidza kutevedzera mirayiridzo iri mubhuku raTakarongwa Kuti Tiite Zvinoda Jehovha , chitsauko 8 ndima 30 . +Pavanenge vakamirira mhinduro , vanogona kushandisa ungwaru pakubvunza mupoteri wacho nezveungano yake uye ushumiri hwake kuti vazive kuti akasimba zvakadini pakunamata . +“ Handina chikonzero chikuru chokuonga chinopfuura zvinhu izvi , kuti ndinzwe kuti vana vangu vari kuramba vachifamba muchokwadi . ” — 3 JOH . 4 . +Vabereki vangaratidza sei vana vavo muenzaniso wakanaka ? +Misoro yemhuri ingasarudza sei kuti mhuri ichapinda neungano yemutauro upi ? +Vamwe vangabatsira sei vabereki nevana vavo vakatamira kune imwe nyika ? +1 , 2 . ( a ) Vana vakawanda vevanhu vakatamira kune dzimwe nyika vanosangana nedambudziko ripi ? +( b ) Nyaya ino ichakurukura mibvunzo ipi ? +“ Asi pandakatanga kuenda kuchikoro , ndakatanga kufarira mutauro wemunyika yatakatamira . +Pasina makore akawanda , ndakanga ndatochinja zvachose . +Ndaisanzwisisa zvaidzidziswa kumisangano uye tsika dzangu nedzevabereki vangu dzakanga dzakatosiyana . ” +3 , 4 . ( a ) Vabereki vangaratidza sei vana vavo muenzaniso wakanaka ? +( b ) Vabereki havafaniri kutarisirei kubva kuvana vavo ? +Pavanoona “ muchitanga kutsvaka umambo , ” vanodzidza kuvimba naJehovha kuti avape zvekurarama nazvo zuva rimwe nerimwe . +Musambofa makabatikana zvekuti munoshayira vana venyu nguva . +Vana venyu vangabatsirwa sei nekudzidza mutauro wenyu ? +Vabereki , kana vana venyu vakadaro , mungaedza here kudzidza mutauro wemunyika macho ? +Handizvo here zvinofanira kuitwa kana mwana achinyatsokwanisa kukurukura nemumwe mutauro ? +Kana zviri izvo zviri kuitika mumhuri menyu hazvirevi kuti hamukwanisi kubatsira vana venyu kuti vazive uye vade Jehovha . +“ Asi pataiona vachidzidza Bhaibheri , vachinyengetera uye vachiita zvese zvavaigona kuti vaitise kunamata kwemhuri vhiki imwe neimwe , takanzwisisa kuti kuziva Jehovha kunokosha zvikuru . ” +Vabereki vangabatsira sei vana vangada kudzidza nezvaJehovha mumitauro miviri ? +( a ) Ndiani anofanira kusarudza kuti mhuri yopinda neungano yemutauro upi ? +Asi kana vana vasinganyatsonzwisisi mutauro wacho , havakwanisi kudzidza zvakawanda . +( Verenga 1 VaKorinde 14 : 9 , 11 . ) +Mhinduro yeminyengetero yedu yaisava nyore kwatiri . +Asi patakaona kuti vana vakanga vasiri kunyatsobatsirwa nemisangano yemutauro wedu , takasarudza kupinda neungano yemutauro wemunyika yatakatamira . +Taigara tichipinda misangano uye tichiparidzira tese . +Taikokawo hama dzemuungano kuti tidye tese uye tishanyire dzimwe nzvimbo . +Zvese izvi zvakabatsira vana vedu kuti vazive hama dzemuungano uyewo kuti vazive Jehovha saMwari wavo , Baba vavo uye Shamwari yavo . +Taiona izvi zvichikosha zvikuru kupfuura kuti vanyatsogona mutauro wedu . ” +Samuel anowedzera kuti : “ Kuti tirambe takasimba pakunamata , ini nemudzimai wangu taipindawo misangano mumutauro wedu . +Taigara takabatikana uye takaneta . +Asi tinotenda Jehovha kuti akakomborera zvataiita uye kuzvipira kwedu . +Vana vedu vese vari vatatu vari kushumira Jehovha mubasa renguva yakazara . ” +Kristina anoti : “ Ndaiti zivei mutauro wevabereki vangu , asi zvaitaurwa kumisangano ndakanga ndisingazvinzwisisi . +Pandaiva nemakore 12 , ndakapinda gungano mumutauro wandaishandisa kuchikoro . +Apa ndipo pandakatanga kunzwisisa kuti zvaitaurwa ipapo ndicho chaiva chokwadi . +Ndakabatsirwawo pandakatanga kunyengetera mumutauro wandaishandisa kuchikoro . +Zvaiva nyore kutaura naJehovha zvichibva pamwoyo . ” +Vechidiki , munofunga kuti zviri nani kuva muungano yemutauro wemunyika yamunogara here ? +Nadia , uyo ava kushanda paBheteri anoti , “ Ini nevamwe vana vemumba medu patakanga tava kuyaruka , taida kutamira kuungano yemutauro wemunyika matinogara . ” +“ Iye zvino tinoonga kuti vabereki vedu vakashanda nesimba kuti vatidzidzise mutauro wavo uye vakaita kuti tirambe tiri muungano yemutauro iwoyo . +Izvi zviri kutibatsira chaizvo uye zviri kuita kuti tive nemikana yakawanda yekubatsira vamwe kuti vazive Jehovha . ” +( b ) Vabereki vangawana sei rubatsiro rwekudzidzisa vana vavo chokwadi ? +( Verenga Zvirevo 1 : 8 ; 31 : 10 , 27 , 28 . ) +Kunyange zvakadaro , vabereki vasingazivi mutauro wemunyika yavari kugara vangada kubatsirwa kuti vadzidzise vana vavo zvinosvika pamwoyo . +Vana nevabereki vanobatsirwa nekuwadzana neungano ( Ona ndima 18 , 19 ) +( b ) Vabereki vanofanira kuramba vachiitei ? +“ Ndaidzidza zvakawanda padzaindibatsira kugadzirira hurukuro . +Uye ndainakidzwa nekutandara kwataiita tiri boka . ” +Vabereki , nyengeterai kuna Jehovha uye itai zvese zvamunogona pakubatsira vana venyu . +( Verenga 2 Makoronike 15 : 7 . ) +Koshesai ushamwari hwemwana wenyu naJehovha kupfuura zvamunoda imi pachenyu . +Asi ndakazonyatsonzwisisa chokwadi cheBhaibheri muna 1946 . +Nekufamba kwenguva , ndakadzidza mutauro wemasaini uye ndakanga ndava kunakidzwa nekutamba nevamwe vana . +Akabvuma kunyoresa kuti apote achitumirwa magazini uye aida kuti ndionane nemurume wake , Gary . +Pakupedzisira , vanhu 5 vemukirasi mavo vakava Zvapupu zvaJehovha . +Panguva iyoyo akandipa suwiti ndokundiudza kuti aida kuti tive shamwari . +Paakanga ava kuda kubhabhatidzwa , vabereki vake vakamuudza kuti , “ Kana ukangoita Chapupu chaJehovha chete , ibva warongedza twako ! ” +Akaenderera mberi nekudzidza Bhaibheri ndokuzobhabhatidzwa . +Patakachata muna 1960 , vabereki vake havana kuuya kumuchato wedu . +Mwanakomana wangu Nicholas nemudzimai wake , Deborah , vanoshumira paBheteri remuLondon +Faye naJames , Jerry naEvelyn , Shannan naSteven +Iye zvino tava muungano yeCalgary Sign - Language , mandiri kuenderera mberi nekushumira semukuru . +Tingaitei kuti kuda kwatinoita Jehovha kurambe kwakasimba ? +Tingawedzera sei kuda kwatinoita chokwadi cheBhaibheri ? +Nei zvichikosha kuti tide hama dzedu ? +Chii chingangodaro chakaita kuti rudo rwevamwe vaKristu rutonhore ? +Vanhu vari kuwedzera kusada Mwari . +Ratidza kuti unoda Jehovha ( Ona ndima 10 ) +( Verenga Pisarema 119 : 97 - 100 . ) +Ratidza kuti unoda chokwadi cheBhaibheri ( Ona ndima 14 ) +Pausiku hwake hwekupedzisira ari panyika , Jesu akaudza vadzidzi vake kuti : “ Ndiri kukupai murayiro mutsva , kuti mudanane ; sokuda kwandakakuitai , kuti nemiwo mudanane . +Vose vachaziva kuti muri vadzidzi vangu neizvi , kana muine rudo pakati penyu . ” ​ — Joh . 13 : 34 , 35 . +Muapostora Johani akanyora kuti : “ Uyo asingadi hama yake , yaakaona , haangavi achida Mwari , waasina kumboona . ” +Ratidza kuti unoda hama nehanzvadzi ( Ona ndima 17 ) +Ndedzipi dzimwe nzira dzatingaratidza nadzo kuti tinoda hama dzedu ? +Verenga 1 VaTesaronika 4 : 9 , 10 . +21 : 15 . +Akati kwavari : “ ‘ Kandai mambure kurutivi rwokurudyi rwechikepe uye muchawana . ’ +Vakabva vaakanda , asi vakanga vasingachakwanisi kuakwevera mukati nokuda kwehove zhinji . ” ​ — Joh . 21 : 1 - 6 . +( b ) Imwe hama yekuThailand yakawana chidzidzo chipi chinokosha nezvebasa rayo ? +Saka raindisiya ndiine nguva shomanana yekuita zvinhu zvekunamata . +Ndakazoona kuti ndaifanira kuchinja basa rangu kuti ndikwanise kuisa Umambo pekutanga . ” +“ Pashure pekuronga zvinhu zvangu kwerinenge gore , ” yakadaro hama yacho , “ ndakasarudza kufamba ndichitengesa maice cream . +Pakutanga , ndaisawana mari inokwana uye zvakandiodza mwoyo . +Pandaisangana nevandaimboshanda navo , vaindiseka uye vaindibvunza kuti nei ndaifunga kuti kutengesa maice cream kwaiva nani pane kugadzira makombiyuta ndiri munzvimbo inotonhorera . +Ndakanyengetera kuna Jehovha ndichikumbira kuti andibatsire kuzadzisa chinangwa changu chekuwana nguva yakawanda yekuita zvinhu zvekunamata . +Ndakasvika pakunyatsoziva maice cream aifarirwa nemakasitoma angu uye ndakawedzera kuva nyanzvi pakuagadzira . +Pasina nguva , ndakanga ndava kutengesa maice cream angu ese zuva nezuva . +Ndakanga ndatova nemari yakawanda kupfuura pandaigadzira makombiyuta . +Mufaro wangu wakawedzera nekuti ndaisazvidya mwoyo sezvandaiita pandaigadzira makombiyuta . +Uye chinonyanya kukosha ndechekuti iye zvino ndava pedyo zvikuru naJehovha . ” ​ — Verenga Mateu 5 : 3 , 6 . +Pashure pekunge abhabhatidzwa , akati : “ Chandinongodemba ndechekuti ndakanga ndatotambisa nguva yakawanda pandakazoziva kuti kushumira Jehovha kunounza mufaro kupfuura zvinhu zvekuzvivaraidza nazvo zviri munyika . ” +Jesu akati “ hapana munhu anogona kushandira vanatenzi vaviri . ” +Akawedzera kuti : “ Hamungagoni kushandira Mwari pamwe chete nePfuma . ” +( Verenga 1 VaKorinde 2 : 14 . ) +Ona nyaya inoti “ Zvaunovaraidzwa Nazvo Zvinobatsira Here ? ” +Taigarawo tichiita basa rekuparidza . ” +Tairwadziwa chaizvo nekusiya vadzidzi vedu veBhaibheri . ” +Asi pashure pemwedzi mumwe chete , vakagamuchira mashoko anofadza . +Miriam anoti : “ Takanzi tishumire semapiyona chaiwo . +Takafara kuti taizokwanisa kuramba tiri mundima yacho . ” +Vakavimba nezvinotaurwa pana Pisarema 37 : 5 kuti : “ Isa nzira yako pana Jehovha , uvimbe naye , uye iye achazviita . ” +Iye zvino ndizvo zvatiri kuita uye hapana zvinokosha zvatinoshaya . ” +Nei tingatarisira kuti muwanano uye mumhuri muchava nematambudziko ? +Jehovha akaita kuti zvinhu zvifambire zvakanaka vashumiri vake vekare uye tinogona kuva nechokwadi chekuti anoda kuti zvidarowo kwatiri . ​ — Verenga Jeremiya 29 : 11 , 12 . +( Verenga 1 Samueri 1 : 4 - 7 . ) +Paula anoti : “ Kunyange zvazvo Ann aisava neukama neni , kundida kwaaiita kwakandibatsira zvikuru . +Kwakandibatsira kuti ndirambe ndichishumira Jehovha . ” +( Verenga Pisarema 145 : 18 , 19 . ) +“ Pane pfuma yenyu , ndipo pachavawo nemwoyo yenyu . ” ​ — RUKA 12 : 34 . +Patinenge tichikurukura , fungisisa kuti iwe pachako ungawedzera sei kuda kwaunoita pfuma iyi yekunamata . +Fungidzira kuti parera iroro raikosha zvakadini kwaari . +( Verenga Mako 10 : 28 - 30 . ) +( a ) Nei muapostora Pauro akati ushumiri hwedu hwakaita ‘ sepfuma iri mumidziyo yevhu ’ ? +( Verenga VaRoma 1 : 14 , 15 ; 2 Timoti 4 : 2 . ) +Vamwe vacho vanoshumira paBheteri , vamwe mapiyona uye vamwe vakuru muungano . +Irene anoti , “ Pandinofunga nezvezvimwe zvinangwa zvandaigona kuva nazvo , handioni paine chimwe chaigona kundipa mufaro unopfuura wandiinawo . ” +‘ Dura repfuma ’ rakataurwa naJesu pana Mateu 13 : 52 chii , uye tinorizadza sei ? +( Verenga Zvirevo 2 : 4 - 7 . ) +Funga nezvemuenzaniso weimwe hama inonzi Peter . +Achida kuedza Peter , rabhi wacho akamubvunza kuti , “ Saka nhai chikomana , bhuku raDhanieri rakanyorwa nemutauro upi ? ” +Paakaenda kumba akatsvaga magazini eNharireyomurindi neMukai ! +emwedzi yainge yapfuura uye akawana nyaya yaitsanangura kuti bhuku raDhanieri rakanyorwa nechiAramaiki . +Paunoramba uchidaro , uchava ‘ nepfuma kumatenga , uko mbavha isingaswederi pedyo uyewo chitemamachira chisingadyi . +Nokuti pane pfuma yako , ndipo pachavawo nemwoyo wako . ’ — Ruka 12 : 33 , 34 . +“ Taisanzwisisana neimwe hama yandaishanda nayo . +Rimwe zuva , vanhu vaviri vakapinda mataishandira vakationa tichipopotedzana . ” — CHRIS . +“ Imwe hanzvadzi yandaiwanzoparidza nayo yakangoerekana yati timire urongwa hwedu hwekuparidza . +Handina kuziva kuti yaizviitirei . ” — JANET . +“ Taitaura pafoni tiri vatatu . +Mumwe wevandaitaura navo akabva aoneka uye ndakafunga kuti akanga aisa foni pasi . +Ndakabva ndataura zvakashata nezvake nemumwe akanga achiri pafoni asi ndakazoziva kuti uya ainge aoneka akanga asina kuisa foni pasi . ” — MICHAEL . +“ Mamwe mapiyona maviri emuungano medu akatanga kunetsana . +Kunetsana kwavaiita nezvinhu zvisina basa kwaiita kuti vamwe vaore mwoyo . ” — GARY . +“ Musanetsana parwendo . ” +“ Pasina kurangana , zvirongwa hazvibudiriri . ” +Michael anoti , “ Hama yangu yakandiregerera nemwoyo wese . ” +“ Rambai muchishivirirana nokukanganwirana nomwoyo wose kana paine munhu ane chikonzero chokunyunyutira mumwe . ” +Iye zvino ava kuwirirana sezvaanoparidza mashoko akanaka . +Kusiyana ikoko kungaita sekusina basa ; asi kunogona kuita kuti pave nematambudziko akakura . ” +Kusvotwa kwacho zvakwaiwedzera , ndakatanga kutaura nayo zvisina ruremekedzo . +Ndaizviudza kuti , ‘ Haandiremekedzi semunhu mukuru , saka handisi kuzomuremekedzawo . ’ ” +“ Ndakatanga kuona zvikanganiso zvangu uye ndakazvishora chaizvo . +Ndakaona kuti ndaifanira kuchinja mafungiro angu . +Pashure pekunyengetera kuna Jehovha nezvenyaya yacho , ndakatengera hanzvadzi yacho chipo ndikanyora kadhi ndichikumbira ruregerero nemhaka yemaitiro angu akashata . +Takambundirana tikabvumirana kusiyana nenyaya yacho . +Kubvira ipapo , hatina kuzombonetsana zvakare . ” +VANHU vakawanda mazuva ano vanokoshesa mari . +Nei nyaya yeuchangamire ichifanira kugadziriswa ? +Kurevererwa kweuchangamire hwaJehovha kunokosha zvakadini ? +Chokwadi , kubvira pazuva rakarara madzitateguru edu murufu , zvinhu zvose zviri kuramba zvakaita sezvazvakanga zvakangoita kubvira pazvakatanga kusikwa . ” +( Verenga Isaya 55 : 10 , 11 . ) +( Verenga Jobho 1 : 7 - 12 . ) +( Verenga Jobho 38 : 18 - 21 . ) +( Verenga VaRoma 5 : 3 - 5 . ) +Chimwe chikonzero ndechekuti anotonga nerudo . +Anotichengeta kupfuura kuzvichengeta kwatingazviita isu pachedu . +Vakuru nemisoro yemhuri vangatevedzera sei Jehovha ? +Pisarema rechi147 rinokurudzira rakurudzirazve vanhu vaMwari kuti varumbidze Jehovha . +Munyori wepisarema akafarira chii nezvaJehovha zvekuti aida kuti Mwari arumbidzwe ? +Hama nehanzvadzi dzechidiki dzakawanda dziri kupinda mubasa renguva yakazara . +“ Zviitirei shamwari nepfuma isina kururama . ” ​ — RUKA 16 : 9 . +Tingaitei kuti tisava varanda vechikamu chezvekutengeserana chenyika ino ? +Munyika ino , nei varombo vachiramba varipo ? +Tingadzidzei pazano raJesu ? +Tinoziva sei kuti zvekutengeserana zvaisava pachinangwa chaMwari ? +Taura mienzaniso yezviri kuitwa nevamwe pakushandisa pfuma isina kururama vachiratidza kuti vakatendeka . +Ndakaona kuti pandinowedzera kupa ndinowedzerawo kuva munhu anoregerera , ane mwoyo murefu nevamwe , asingagari akaora mwoyo uye anobvuma mazano . ” +Abrahamu akaratidza sei kuti aivimba naMwari ? +( b ) Tingashandisa sei zano raPauro mazuva ano ? +Pashure pekunge Pauro amudana kuti “ murwi akanaka kwazvo waKristu Jesu , ” akamuudza kuti : “ Hapana munhu anoshanda somurwi anozvipinza mumabasa okutengeserana oupenyu , kuti afarirwe nouya akamupinza basa somurwi . ” +Jehovha anokomborera vaya ‘ vakapfuma pamabasa akanaka . ’ +Miti , matombo uye simbi zvemhando yepamusoro zvichange zvichiwanika mahara kuti vanhu vazvishandise pakuvaka misha yakanaka . +Kuti upe chipo paindaneti munyika dzinobvumirwa kudaro , enda pajw.org wobaya pakanzi “ Ipa Chipo Chekutsigira Basa Redu Remunyika Yose ” nechepazasi pepeji chero ipi zvayo . +“ PATAKAFIRWA nemwanakomana wedu takaita rinenge gore tichirwadziwa zvikuru , ” akadaro Susi . +Nguva imwe neimwe rugare rwaMwari rwairinda mwoyo nepfungwa dzedu . ” ​ — Verenga VaFiripi 4 : 6 , 7 . +Jesu akaratidza sei tsitsi pakafa Razaro ? +Kana uri kurwadziwa , unogonawo kunyaradzwa nemagwaro anotevera : +( Verenga 1 VaTesaronika 5 : 11 . ) +Chii chatinofanira kuyeuka panyaya yekurwadziwa ? +Kunyange mumwe akataura manzwiro ake , hazvisi nyore nguva dzese kuti vamwe vanzwisise zvaanenge achiedza kutaura . +Panguva iyoyo handinzwi sendiri ndega pakurwadziwa kwangu . ” +“ Kugamuchira meseji inokurudzira kana kukokwa kuti ndimbotandara nemumwe muKristu zvinondibatsira chaizvo , ” anodaro Junia . +“ Izvozvo zvinoita kuti ndione kuti ndinodiwa uye vamwe vane hanya neni . ” +Dalene anoti , “ Dzimwe nguva , panouya hanzvadzi kuzondinyaradza ndinodzikumbira kuti kana dzichida dzindinyengeterere . +Vanotanga kunyengetera , dzimwe nguva vachitamburira kubudisa mashoko pakutanga , asi nguva dzese , pashure pemashoko mashoma izwi ravo rinogadzikana uye vanonyengetera zvichibva pamwoyo . +Kutenda kwavo kwakasimba uye rudo rwavo zvinosimbisa kutenda kwangu chaizvo . ” +“ Shamwari yechokwadi ine rudo nguva dzose , uye ihama inoberekerwa kubatsira pakunenge kuine kutambudzika . ” +Imwe hama yakati : “ Ndaitarisira kuti ndaizorwadziwa zvikuru paizosvika zuva randakachata nemudzimai wangu , uyo akanga ashaya . +Asi hama nehanzvadzi shomanana dzakaronga kuti tiungane pamwe chete neshamwari dzangu dzepedyo kuitira kuti ndisava ndega musi wacho . ” +“ Kazhinji zvinobatsira chaizvo vanhu vakataura kuti vanoda kukubatsira kana kuva newe panguva isiri yechiitiko chinokosha , ” anodaro Junia . +“ Nguva dzakadaro dzinokosha chaizvo uye dzinonyaradza zvikuru . ” +Vakaita kuti ndinzwe sekuti Jehovha ainge akandimbundira . ” +Nei zvakavimbiswa naJehovha zvichinyaradza zvikuru ? +Mwari anovimbisa kuti “ achaparadza rufu nokusingaperi , uye Changamire Ishe Jehovha achapukuta misodzi pazviso zvose . ” +Mamwe magwaro akanyaradza vakawanda ndeaya Pisarema 20 : 1 , 2 ; 31 : 7 ; 38 : 8 , 9 , 15 ; 55 : 22 ; 121 : 1 , 2 ; Isaya 57 : 15 ; 66 : 13 ; VaFiripi 4 : 13 uye 1 Petro 5 : 7 . +Onawo nyaya inoti , “ Nyaradza Vakafirwa Sezvakaitwa naJesu , ” iri muNharireyomurindi yaNovember 1 , 2010 . +“ Hatizivi kuti tingataura kutii kunze kwekuti tinokudai . +Hatikwanisi kunzwisisa manzwiro enyu chaiwo , asi Jehovha anoanzwisisa uye acharamba achikusimudzai . +Tinovimba kuti minyengetero yedu ichabatsirawo zvishoma . ” +“ Jehovha ngaakusimbisei panguva yekurasikirwa zvikuru kwakadai . ” +“ Dai mukanyaradzwa nekuziva kuti Mwari achiri kuziva nezvemumwe wenyu , uye achayeuka zvese nezvake omumutsa . ” +“ Mumwe wenyu haazooni zvakare muvengi wekupedzisira , rufu . +Parizvino , mabasa ake ekutenda anoramba achiyeukwa kusvika paachamutswa muparadhiso . ” +“ Kunyange zvazvo mashoko achitadza kubudisa kurwadza kunoita kufirwa nemunhu waunoda , tinotarisira nguva yekuti mashoko achatadza kunyatsobudisa mufaro wekuona Baba vedu vekudenga vachimumutsa . ” +Pakutambudzika kukuru , vaKristu vachavimba naJehovha uye havazoedzi kuzvidzivirira +Muparidzi ari kuparidzira mumwe wevashandi vemumunda wemaapuro mutaundi reGrójec +( b ) Tingadzidzei muPisarema rechi147 ? +Uye kunogona kunge kuine zviuru zvemabhiriyoni emapoka enyeredzi ! +Ndinoda kuti unakidzwe neupenyu semumwe weZvapupu zvangu ! ” +( Verenga Pisarema 147 : 8 , 9 . ) +Mutsuo anoti : “ Ndakaona kuti Jehovha aiva pedyo nemumwe nemumwe wedu uye aitichengeta . +12 , 13 . ( a ) Kuti tibatsirwe naMwari tinofanira kudzivisei ? +Asi Mwari “ anowisira vakaipa pasi . ” +“ Jehovha anofarira vaya vanomutya , vaya vanomirira [ rudo rwake rwakavimbika ] . ” +15 - 17 . ( a ) Dzimwe nguva tinganzwa sei nezvematambudziko edu , asi Jehovha anoshandisa sei Shoko rake kuti atibatsire ? +Mazuva ano , Jehovha anotitungamirira achishandisa Shoko rake , Bhaibheri . +( Verenga Pisarema 147 : 19 , 20 . ) +Zvirongwa zvipi zvingaita kuti ufare mune ramangwana ? +Kupayona kunogona kuvhura mikana yei ? +IMI vechidiki munogona kubvumirana nazvo kuti hautangi rwendo usati waronga kwauri kuda kuenda . +Upenyu hwakafanana nerwendo , uye paunenge uchiri mudiki ndipo paunofanira kuronga kwaunoda kuzoenda . +Unoziva sei kuti Jehovha anoda kuti uronge kuti uzova neramangwana rinofadza ? +Musiki wako ‘ ndiMwari worudo , ’ “ Mwari anofara , ” uyo akasika vanhu “ nomufananidzo wake . ” +Uchafara paunotevedzera Mwari wedu ane rudo . +Jesu Kristu akakusiyirai muenzaniso wakanaka zvikuru imi vechidiki . +Jesu akaswederawo pedyo naJehovha kuburikidza nekudzidza Magwaro . +“ Pasina kurangana , zvirongwa hazvibudiriri , asi pane vanhu vazhinji vanopa mazano pane zvinobudirira . ” +Kungofanana nemamwe mabasa , unoda nguva yekuti uve neunyanzvi . +Pandakatanga kupayona handina kukwanisa kuitisa kunyange chidzidzo cheBhaibheri chimwe chete , asi ndakazoenda kune imwe ndima uye ndakakwanisa kutanga zvidzidzo zvakati wandei mumwedzi mumwe chete . +Mumwe wandaidzidza naye akatanga kuuya kuImba yoUmambo . +Semuenzaniso , Jacob wekuNorth America akanyora kuti : “ Pandaiva nemakore 7 , vanhu vakawanda vandaidzidza navo vaibva kuVietnam . +Ndaida kuvaudza nezvaJehovha , saka papera kanguva ndakaronga kuti ndidzidze mutauro wavo . +Kakawanda kacho ndaidzidza ndichiita zvekuenzanisa Nharireyomurindi yeChirungu neyechiVietnamese . +Ndakatangawo kushamwaridzana nehama dzaiva muungano yemutauro wechiVietnamese yaiva pedyo . +Pandakanga ndava nemakore 18 , ndakatanga kupayona . +Pava paya ndakapinda Chikoro cheBhaibheri Chehama Dzisina Kuroora . +Chikoro ichi chiri kundibatsira sezvo ndiri kushumira ndingori mukuru mumwe chete mune rimwe boka remutauro wechiVietnamese . +Vanhu vakawanda vechiVietnamese vanoshamiswa kuti ndakadzidza mutauro wavo . +Vanondipinza mumba uye kazhinji ndinotanga kudzidza Bhaibheri navo . +Vamwe vavo vakatobhabhatidzwa . ” ​ — Enzanisa naMabasa 2 : 7 , 8 . +Ndinonakidzwa nekukurudzira hama dzechidiki muungano uye kudziona dzichifambira mberi pakunamata . +Pashure pekunge ndapinda Chikoro cheBhaibheri Chehama Dzisina Kuroora , ndakanzi ndinopayona kune imwe ndima . +Handisati hangu ndambowana munhu anosvika pakubhabhatidzwa , asi vamwe vakavawana . +Kupayona kungaita sei kuti munhu awane nemimwe mikana yekushumira Jehovha ? +Imwe hama inonzi Kevin inoti : “ Kubva ndichiri kakomana , ndaida kuzoshumira Jehovha mubasa renguva yakazara . +Ndakazotanga kupayona ndava nemakore 19 . +Kuti ndikwanise kuzviriritira ndaipota ndichishandira imwe hama yaiita zvekuvaka . +Ndakadzidza kuturika matenga edzimba uye kuisa mahwindo nemadhoo . +Pava paya , ndakaita makore maviri ndichishanda neboka raibatsira vainge vawirwa nenjodzi , tichigadzirisa Dzimba dzeUmambo nedzimba dzehama . +Pandakanzwa kuti kuSouth Africa kwaidiwa vanhu vanobatsira pakuvaka , ndakanyorera uye ndakashevedzwa . +Muno muAfrica , tinopedza kuvaka Imba yeUmambo mumavhiki mashomanana toenda kunovaka imwe . +Tinogara pamwe chete , tinodzidza Bhaibheri pamwe chete uye tinoshanda pamwe chete . +Ndinonakidzwawo nekuparidzira nehama dzemuungano vhiki yega yega . +Zvirongwa zvandakaita ndichiri kakomana zviri kuita kuti ndifare zvandaisatarisira . ” +Kushumira paBheteri kunounza mufaro nekuti zvese zvaunoita ipapo unozviitira Jehovha . +Pashure pegore nehafu , ndakashevedzwa kuBheteri , kwandakadzidza kushandisa michina yekuprinda uye kwandakazodzidzawo kugadzira mapurogiramu emakombiyuta . +PaBheteri , ndinonakidzwa nekutanga kunzwa nezvekufambira mberi kuri kuita basa rekuita kuti vanhu vave vadzidzi pasi rese . +Ndinoda kushumira pano nekuti zvatinoita zvinobatsira vanhu kuti vaswedere pedyo naJehovha . ” +Unogona kuva nechokwadi chekuti Jehovha anoda kuti ‘ ubatisise ’ ramangwana rinofadza . +( Verenga 1 Timoti 6 : 18 , 19 . ) +Zvadaro , ibva waronga kuita zvinomufadza . +Anga achidzidza maitiro evanhu kubvira pavakasikwa . +Kuti uchiwane unofanira kuzvitsvagira wega . ” +uye “ Usarega vachikupinza muna taisireva ! ” +Jesu akati : “ Musatya vaya vanouraya muviri asi vasingazokwanisi kuita chimwe chinhu chinopfuura izvozvo . ” +Usavhunduka kana kutya , nokuti Jehovha Mwari wako anewe kwose kwaunoenda . ” +Teerera Jehovha uvimbe naye pane zvese zvaunoita . +Nyaya yechipiri inoratidza kuti Jehovha anoita sei zvinenge zvisingatarisirwi kuburikidza nekuita zvatisingambofungidziri . +Kufanana nemurimi , tinofanira kumirira nemwoyo murefu . +Tingadzidzei pane zvakaitwa nemuprofita Mika ? +( Verenga Mika 7 : 1 - 3 . ) +Kana tiine kutenda kwakafanana nekwaMika , tichava nechido chekumirira Jehovha . +Saka ‘ tinotsungirira zvizere nemwoyo murefu uye nemufaro . ’ +Abrahamu aitofanira kumirira makore akawanda kuti vazukuru vake , Isau naJakobho vaberekwe ( Ona ndima 9 , 10 ) +( Verenga VaHebheru 11 : 8 - 12 . ) +Asi fungidzira kufara kuchaita Abrahamu paachamutswa kuti ararame muparadhiso . +Mwari aifunga zvakanaka kuti vanhu vazhinji vachengetedzwe vari vapenyu sezvazvakaita nhasi . ” +( b ) Chii chakabatsira Dhavhidhi kuti amirire nemwoyo murefu ? +Ndichaimbira Jehovha , nokuti akandipa mubayiro . ” +( Verenga 2 Petro 3 : 9 . ) +Chii chichatibatsira kuti tive nechido chekumirira nemwoyo murefu ? +Tinodzidzei pane zvakaitika kumuapostora Pauro paaiva muFiripi ? +( Verenga Mabasa 16 : 8 - 10 . ) +Achangosvika kuMakedhoniya , akaiswa mujeri . +Nei Jehovha akabvumira kuti izvozvo zviitike kuna Pauro ? +Iye naSirasi vakatanga ‘ kunyengetera vachirumbidza Mwari nerwiyo . ’ +4 , 5 . ( a ) Mamiriro edu ezvinhu anogona kufanana sei neaPauro ? +( b ) Zvinhu zvakangoerekana zvachinja sei kuna Pauro ? +Iye zvino tichakurukurei uye tichaongororei ? +( Verenga 1 Petro 5 : 6 , 7 . ) +Dzimwe nguva anotishamisa nekuita zvatisingatarisiri . +Jehovha akatuma ngirozi kuti iparadze masoja 185 000 aSaniheribhi muusiku humwe chete . +( a ) Tinodzidzei pane zvakaitika kuna Josefa ? +Hapana mubvunzo kuti zvakaitwa naJehovha zvaipfuura zvese zvaitarisirwa naJosefa . +Fungawo nezvaSara , ambuya vaJosefa . +( Verenga Isaya 43 : 10 - 13 . ) +Tinoziva kuti Jehovha ane hanya nesu uye anoda kuti tive nemufaro muupenyu . +Tingapfekenura sei unhu hwekare torega kuhupfekazve ? +Pakazosvika gore ra1939 , [ mumisasa yevasungwa ] makanga mava neZvapupu 6 000 . ” +Uye machenesa nzvimbo ino zvakanaka . +Asi kupfuura zvese , imi muri sangano revanhu vemarudzi akasiyana - siyana . ” +Asi pandairamba ndichiita zvepabonde , ndaitowedzera kunzwa ndisina kuchengeteka . ” +Sakura akaramba achirarama saizvozvo kusvika ava nemakore 23 . +Ndakasvika pekuti ndaitononokerwa kuti mukadzi wandaigara naye abude kuti ndisare ndichiona mavhidhiyo ezvinonyadzisira . ” +Chii chakabatsira Stephen kuti abvise kutsamwa uye kutuka ? +Anoti : “ Zvinhu zvakachinja zvinoshamisa mumba medu . ” +Iye zvino Stephen ava mushumiri anoshumira uye mudzimai wake ava nemakore akati kuti ari piyona wenguva dzose . +Ndakakurudzirwa nemavhesi eBhaibheri akadai saIsaya 55 : 7 iyo inoti : ‘ Munhu akaipa ngaasiye nzira yake , ’ uyewo 1 VaKorinde 6 : 11 iyo inotaura nezvevanhu vakasiya mabasa akaipa ichiti : ‘ Vamwe venyu ndizvo zvamakanga makaita . ’ +Kwemakore akawanda , Jehovha akandibatsira nemwoyo murefu achishandisa mweya wake mutsvene kuti ndipfeke unhu hutsva . ” +Tinobatsirwawo neShoko raMwari nemweya wake mutsvene patinogadzirira misangano yeungano uye patinoipinda . +Ona chitsauko 25 mubhuku rinonzi Mibvunzo Inobvunza Vechiduku — Mhinduro Dzinoshanda , Bhuku 1 . +( Verenga VaKorose 3 : 10 - 14 . ) +Akati : “ Hapana muGiriki kana muJudha , kudzingiswa kana kusadzingiswa , munhu wokune imwe nyika , muSitiya , muranda , [ kana ] munhu akasununguka . ” +( a ) Vashumiri vaJehovha vanofanira kubata sei vamwe ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Zvakaguma nei ? +Akabva aenda kumisangano yeZvapupu zvaJehovha . +Unonyatsoona kubatana kunoshamisa kwakaita sangano redu rehama dziri pasi rese . ” +Pataivaratidza magwaro akadai saZvakazarurwa 21 : 3 , 4 kana kuti Pisarema 37 : 10 , 11 , 29 , muBhaibheri ravo rechiPortuguese , vainyatsoteerera uye dzimwe nguva vaisvimha misodzi . ” +Tinotenda Jehovha zvikuru . ” — Verenga Mabasa 10 : 34 , 35 . +Jesu akasiya muenzaniso upi pakuratidza unyoro nemwoyo murefu ? +Akabva awedzera kuti : “ Kana muchiramba muchisarurana , muri kutadza . ” +Nei zvichikosha kuti tipfeke rudo ? +Rudo runewo “ mwoyo murefu uye rune mutsa ” uye “ haruzvitutumadzi . ” +Pauro akati pasina rudo , ‘ aisava chinhu . ’ +Rudo ruri pachinhu ichi , kwete kuti isu takada Mwari , asi kuti iye akatida , akatuma Mwanakomana wake kuti ave chibayiro chokuyananisira zvivi zvedu . ” +Jesu akati : “ Hapana ane rudo rukuru kune urwu , kuti mumwe munhu ape [ upenyu hwake ] nokuda kweshamwari dzake . ” +Ngationei kuti tingazviita sei . +Johani akanyora kuti : “ Vana vaduku , ngatiregei kudanana neshoko kana norurimi , asi nemabasa nechokwadi . ” +Asi ndakabva ndazvibvunza kuti , ‘ Ndingatevedzera sei Jesu pamabatiro andichaita munhu uyu ? ’ +Pashure pekufunga kuti Jesu aizoita sei , ndakasarudza kusiyana nenyaya yacho . +Pava paya , ndakazoziva kuti mukadzi iyeye aiva nedambudziko reutano uye aiva nezvaimushungurudza . +Ndakazongofunga kuti zvichida haana kunyora mashoko iwayo nechinangwa chekundirwadzisa . +Kufungisisa muenzaniso waJesu wekuratidza rudo kunyange paaiitirwa zvakaipa , kwakandibatsira kuti ndiratidzewo rudo rwakadaro kumukadzi iyeye wandinoshanda naye . ” +“ Akazvidurura ” kuburikidza nekubva kudenga uye ‘ akatosvika pakufa ’ achiitira isu . +RUGARE : ‘ Kushivirirana murudo ’ kunoita kuti tikwanise kunakidzwa nekubatana “ muchisungo chorugare . ” +Haubvumi here kuti munyika ino ine vanhu vasina kubatana , hakuna kumwe kwaungawana rugare rwakadaro ? +Pauro akanyora kuti : “ Rudo runovaka . ” +Zuva rakatevera racho vakanga vawanda zvekutadza kukwana mavaipindira . ” +Pasi pemufananidzo wacho paiva nemashoko ekuti : “ Kuzara mumigwagwa . ” +Imwe ungano yakanyora kuti : “ Chinhu chega chinopfuura pedyo nenzvimbo ino itambo yetelegraph . ” +Vanhu 2 262 646 vakapinda chirangaridzo muMexico muna 2016 . +Nhoroondo yaMateu inonyanya kutaura zvakaitika kuna Josefa . +1 , 2 . ( a ) Chii chinogona kuitika kana vanhu vakasazvidzora ? +Nyengetera kuti uve neuchenjeri hwekutaura kana hwekuita zvakarurama . +Ungagadzirira sei kuti ukurire miedzo ? +Chii chakaitika kune imwe hama , uye nei zvatinoita patinosangana nezvinhu zvakaita saizvozvo zvichikosha ? +Vabereki vangabatsira sei vana vavo kuti vazvidzore ? +Mungabatsira sei vana venyu kuti vazvidzore ? +( Verenga Eksodho 34 : 5 - 7 . ) +( b ) Nei uchifanira kuva nechido chekudzidza zvinotaurwa neBhaibheri nezvetsitsi ? +( a ) Nei Jehovha akatumira ngirozi kuSodhoma ? +( Verenga Eksodho 22 : 26 , 27 . ) +Tinoverenga kuti : “ Jehovha Mwari wemadzitateguru avo akaramba achivatumira shoko achishandisa nhume dzake , achivatumira avatumirazve , nokuti ainzwira tsitsi vanhu vake nenzvimbo yake yokugara . ” +“ Akatanga kuvadzidzisa zvinhu zvizhinji . ” +Panzvimbo pezvo , tinofanira kuita zvese zvatinogona iye zvino kuti tibatsire vanhu . +Shoko rekuti tsitsi rinorevawo “ kutambura pamwe chete . ” +“ Shinga , usimbe uye uzviite . +Vechidiki nevabereki vavo vangaratidza sei ushingi ? +1 , 2 . ( a ) Soromoni akapiwa basa ripi raikosha ? +Kuti abudirire , Soromoni aifanira kuva neushingi oita basa racho . +Soromoni aigona kudzidzei nezveushingi kubva kuna baba vake ? +( Verenga 1 Makoronike 28 : 20 . ) +Ushingi hwaiva naJesu hwakabatsira sei vaapostora ? +Ngationei kuti tingava sei neushingi mumhuri uye muungano . +( b ) Vechidiki vangatevedzera sei muenzaniso waMosesi ? +Achavabatsira kuti vakwanise kuriritira mhuri dzavo . +Yakanyora kuti : “ Ndakakura ndiri munhu anonyara . +Zvaindiomera kutaura nevanhu paImba yeUmambo , uye zvainge zvakatonyanya kuoma kuti ndigogodze padhoo revanhu vandisingazivi . ” +Ichibatsirwa nevabereki vayo nevamwe vaiva muungano , hanzvadzi iyi yechidiki yakazokwanisa kuva piyona wenguva dzose . +Vabereki vangabatsirwa sei naPisarema 37 : 25 uye VaHebheru 13 : 5 ? +( Verenga Pisarema 37 : 25 ; VaHebheru 13 : 5 . ) +Imwe hama ine vana vaviri yakanyora kuti : “ Vabereki vakawanda vanoshanda nesimba uye vanoshandisa zvinhu zvavo zvakawanda pakubatsira vana vavo kuti vabudirire pakuita zvinhu zvakadai semitambo , kudhirowa kana kuridza zviridzwa , uye kudzidza . +Zviri nani chaizvo kushanda nesimba uye kushandisa zvatiinazvo pakubatsira vana vedu kuti vazadzise zvinangwa zvichavabatsira kuti varambe vaine ushamwari hwakanaka naJehovha . +Tiri kugutsikana kuti vana vedu vakazadzisa zvinangwa zvekunamata uye kuti takavabatsira kuzvizadzisa . ” +Taura mienzaniso yepanodiwa ushingi muungano yechiKristu . +( a ) Hama dzakabhabhatidzwa dzingava sei neushingi ? +( Verenga VaFiripi 2 : 13 ; 4 : 13 . ) +Tinokurudzira hama dzese dzakabhabhatidzwa kuti dzive neushingi uye dzishande nesimba muungano . +Saka , “ Shinga . . . uzviite . ” +1 , 2 . ( a ) Upenyu hungadai hwakaita sei kudai pasina Bhaibheri ? +Muapostora Petro akanyora mashoko aakatora pana Isaya 40 : 8 . +( Verenga 1 Petro 1 : 24 , 25 . ) +( a ) Mitauro inochinja sei nekufamba kwenguva ? +( Verenga Zvakazarurwa 14 : 6 . ) +Parakazoprindwa makore akatevera rakanga rava kushandisawo shoko rekuti “ ISHE ” rakanyorwa nemabhii makuru mune mamwe mavhesi muMagwaro echiKristu echiGiriki . +Nei tichionga kuti tine Shanduro yeNyika Itsva ? +( b ) Chii chinonzi Greek Septuagint ? +( Verenga Pisarema 119 : 162 - 165 . ) +Ona nyaya inoti “ Unofanira Kudzidzira chiHebheru nechiGiriki Here ? ” +iri muNharireyomurindi yaNovember 1 , 2009 . +Musi wa3 April 2017 , miziyamu yeBhaibheri yakavhurwa pamahofisi edu makuru muWarwick , New York , U.S.A . +Chikamu chinogara chiripo mumiziyamu iyi chine musoro unoti “ Bhaibheri Uye Zita raMwari . ” +Tinokukoka kuti ushanyire miziyamu yeBhaibheri nedzimwe miziyamu dziri kumahofisi edu makuru . +Enda pawebsite yedu inonzi www.jw.org kuti ubhuke kuzoshanya . +Tarisa pakanzi NEZVEDU > MAHOFISI UYE KURATIDZWA ZVINOITWAPO . +Yakaverenga 2 VaKorinde 1 : 3 , 4 iyo inoti : “ Baba vengoni huru kwazvo uye Mwari wokunyaradza kwose anotinyaradza pakutambudzika kwedu kwose . ” +Hama dzinodzidzisa dziri pachikuva dzine basa rei ? +Tinoonga chaizvo Jehovha nekutipa Shoko rake , Bhaibheri . +Ona bhokisi rakanzi “ Chakaita Kuti Achinje . ” +Tsanangura , enzanisira uye ratidza kuti mavhesi awaverenga anoshanda sei +“ Zvinhu zvakachinja pashure pemakore 15 ndabhabhatidzwa . +Pandaiteerera hurukuro muImba yeUmambo . . . , mukurukuri akashandisa Jakobho 1 : 23 , 24 . +“ Pashure pemazuva mashoma , ndakaverenga rugwaro rwakachinja upenyu hwangu . +Vhesi yacho ndiIsaya 1 : 18 , iyo inotaura mashoko aJehovha ekuti : ‘ Chiuyai zvino , tiruramise zvinhu . . . . +Kunyange zvivi zvenyu zvikava somucheka wakati piriviri , zvichacheneswa sechando . ’ +Ndakanzwa sekuti Jehovha aitaura neni achiti : ‘ Vicky , uya tiruramise zvinhu . +Ndinokuziva , ndinoziva zvivi zvako , ndinoziva zvakaita mwoyo wako uye ndinokuda . ’ +“ Musi iwoyo ndakatadza kurara . +Asi ndaiita sendaimuudza kuti : ‘ Hamungambodi munhu akaita seni . +Chibayiro cheMwanakomana wenyu hachikwanisi kundibatsira . ’ +Asi kubvira ipapo , nemhaka yekufungisisa nezvechipo cherudzikinuro , ndakatanga kuona kuti Jehovha anondida . ” +Nyaya idzi dzinokurukura zvakaratidzwa Zekariya pechi6 , pechi7 uye pechi8 . +Kutanga , regai ndimbokuudzai nezvangu . +NDAKABEREKWA muna 1923 muHemsworth , taundi riri muYorkshire , England . +Gore rakatevera , ndakagadzwa kuva piyona chaiye pamwe chete naMary Henshall . +Takatumirwa kundima yaisava neungano kunharaunda yeCheshire . +Zvinofadza chaizvo kuti munharaunda yacho mava neZvapupu zvakawanda . +Hanzvadzi yangu nemudzimai wayo Lottie , vainge vachitoshumira semapiyona chaiwo muNorthern Ireland , uye muna 1952 tese tiri 4 takapinda gungano reruwa muBelfast . +Manheru iwayo tese tiri 4 takarara mumota . +Chinoshamisa ndechekuti hatina kumbosangana nedambudziko pataipaka karavhani yedu pamayadhi evarimi vaiva neushamwari . +Tainakidzwa chaizvo nebasa redu remudunhu . +Gungano renyika dzakawanda rekutanga muIreland rakaitirwa muDublin muna 1965 . +Vanhu 3 948 vakapinda gungano racho uye 65 vakabhabhatidzwa . +Arthur achikwazisa Hama Nathan Knorr pavakasvika pagungano ra1965 +Arthur achibudisa Bhuku Rangu Renhau dzeBhaibheri muchiGaelic muna 1983 +Muna 2011 , upenyu hwedu hwakachinja zvikuru pakabatanidzwa bazi reBritain nereIreland , tichibva tanzi tiende kuBheteri reLondon . +Mumakore mashoma apfuura , ndainzwa ndakaora mwoyo uye ndairwadziwa chaizvo . +Kare Arthur ndiye aigara achinditsigira . +Asi paunosangana nezvakadai unowedzera kuva pedyo naJehovha . +“ Ngatiregei kudanana neshoko kana norurimi , asi nemabasa nechokwadi . ” ​ — 1 JOH . 3 : 18 . +“ Rudo rusina unyengeri ” rwakaita sei ? +Jehovha akaratidza sei kuti anoda vanhu zvisina udyire ? +Jehovha akaratidza kuti anoda vanhu asati atombosika Adhamu naEvha . +Tingaratidza rudo chairwo munzira dzipi ? +6 , 7 . ( a ) “ Rudo rusina unyengeri ” rwakaita sei ? +( Verenga Mateu 6 : 1 - 4 . ) +Tingaratidza sei rudo chairwo patinogamuchira vamwe ? +( Verenga 1 Johani 3 : 17 . ) +( Verenga VaRoma 12 : 17 , 18 . ) +Tingaratidza sei kuti kukanganwira kwedu ndekwechokwadi ? +Nderipi “ bakatwa ” iro Jesu akati aizounza ? +Ungaramba sei wakavimbika kuna Jehovha kana veukama vachipikisa kunamata kwechokwadi ? +3 , 4 . ( a ) Dzidziso dzaJesu dzinogona kuita sei ? +Jesu akati : “ Musafunga kuti ndakauya kuzounza rugare panyika ; handina kuuya kuzounza rugare , asi bakatwa . +Nokuti ndakauya kuzoita kuti pave nokupesana , pakati pomwanakomana nababa vake , mwanasikana naamai vake , uye muroora navamwene vake . +VaKristu vangadzidzisa sei vana vavo kuti vakudze mubereki asingatendi ? +Pane kudaro , vatsanangurire kuti munhu mumwe nemumwe anofanira kusarudza kushumira Jehovha kana kurega . +“ Kutaura kwenyu ngakuve nenyasha nguva dzose , ” rinodaro Bhaibheri . +( Verenga 1 Petro 3 : 1 , 2 , 16 . ) +Ungakurira sei manzwiro ekuzvipa mhosva panyaya yekuita zvisingafadzi veukama ? +Imwe yenzvimbo dzakawanda dzekuparidzira veruzhinji muLagos , guta rine vanhu vakawanda kupfuura ese muAfrica . +Chii chaiitika kuvaIsraeri panguva iyoyo ? +( Verenga Zekariya 1 : 3 , 4 . ) +Chitsauko 5 chaZekariya chinotanga nechiratidzo chisina kujairika . +( Verenga Zekariya 5 : 1 , 2 . ) +8 - 10 . ( a ) Chii chinonzi mhiko ? +Tinodzidzei pachiratidzo chechi6 chakaonekwa naZekariya ? +( Verenga Zekariya 5 : 5 - 8 . ) +( Verenga Zekariya 5 : 9 - 11 . ) +Unonzwa sei nezvebasa rekuvaka rakakura kupfuura ese riri kuitwa mazuva ano ? +( Verenga Zekariya 6 : 1 - 3 . ) +Jehovha achiri kushandisa ngirozi dzake kuti adzivirire uye asimbise vanhu vake +7 , 8 . ( a ) Makomo maviri anomiririrei ? +( b ) Nei makomo acho ari emhangura ? +Vatyairi vengoro ndivanaani uye vakapiwa basa rei ? +( Verenga Zekariya 6 : 5 - 8 . ) +( Verenga Zekariya 6 : 9 - 12 . ) +Pakupedzisira kunamata kwechokwadi kuchadzorerwa zvizere . +Jehovha haambokanganwi kuda kwatinomuita ! +MUNE rimwe guta diki muGujarat , India , baba vaJohn vakabhabhatidzwa semumwe weZvapupu zvaJehovha makore ekuma1950 ava kunopera . +Akaona kuti chigunwe chaJohn chainge chakuvara ndokutaura kuti aida kumubatsira . +Akaenda kumupristi wake ndokumubvunza mibvunzo yacho miviri . +Ndiratidze muBhaibheri panoti Jesu haasi Mwari . +Ndiratidze parinoti haufaniri kunamata Mariya . +Tinogona kuwana zvidzidzo zvinokosha kubva paurongwa hwemaguta ekupotera emunguva yevaIsraeri . +Kuimba kunokosha zvakadini pakunamata kwechokwadi ? +Asi paunoimba , mashoko acho anosvika pamwoyo . ” +( b ) Tinofanira kuimba sei nziyo dzekurumbidza Jehovha , uye ndiani anofanira kuva pamberi ? +Verenga mashoko acho zvinonzwika nenzwi rakasimba rine chivimbo . +( a ) Kunyatsovhura muromo wedu kunotibatsira sei pakuimba ? +( a ) Chii chakaziviswa pamusangano wepagore wa2016 ? +Dzidzirai nziyo pakunamata kwemhuri ( Ona ndima 18 ) +( Verenga Numeri 35 : 24 , 25 . ) +Achifunga zvakaitika panguva yacho , anoti : “ Chokwadi ndaitya kutaura navo . +Akanyora kuti : “ Chinhu ichochi , iko kusuruvariswa kwenyu sezvinodiwa naMwari , . . . kwakaita kuti muve vomwoyo wose zvikuru sei , pakuzvichenesa kwenyu , pakutsamwa , pakutya , pakusuwa , pakushingaira , pakururamisa zvakaipa ! ” +Kana chivi charegererwa , chinenge chatoregererwa . +Sekutaura kwaakaita , Jehovha anobvisa mitoro yako oiisa kure newe . +Hauzomboioni zvakare . ” +Nei uchida kupotera kuna Jehovha ? +Tingatevedzera sei ngoni dzaJehovha vamwe pavanoda kuregererwa nesu ? +1 , 2 . ( a ) Jesu aiona sei Mutemo waMwari ? +( b ) Izvi zvinotidzidzisei nezvaJehovha ? +( Verenga Mabasa 20 : 26 , 27 . ) +( Verenga Numeri 35 : 20 - 24 . ) +Saka endai , mudzidze kuti izvi zvinorevei , ‘ Ndinoda ngoni , kwete chibayiro . ’ +Nokuti handina kuuya kuzoshevedza vanhu vakarurama , asi vatadzi . ” +Vakanga vasina kungofambira zvekudya . +Uri kuronga kushandisa chidzidzo chipi chinowanika pamaguta ekupotera ? +Hanzvadzi mbiri dziri kuparidza mashoko eBhaibheri kumunhu ari kutengesa pamusika mutaundi rinonzi Tipitapa +Muapostora Pauro akapa zano ripi nezvemafungiro enyika ? +Ndeapi mamwe mafungiro enyika uye tingaaramba sei ? +Chenjerai : zvichida pangava nomumwe munhu angaenda nemi semhuka yake yaabata nouzivi uye nounyengeri husina zvahunobatsira maererano netsika yevanhu , maererano nezvinhu zvokutanga zvenyika , kwete maererano naKristu . ” +“ Ndinogona kuva munhu akanaka kunyange ndisingatendi muna Mwari . ” +“ Unogona kufara usina chitendero chaunopinda . ” +Jehovha ane kodzero yekutipa mitemo nekuti akatisika . +Jesu akati : “ Hapana munhu anogona kushandira vanatenzi vaviri ; nokuti zvimwe achavenga mumwe oda mumwe wacho , kana kuti achaomerera kune mumwe ozvidza mumwe wacho . +( Verenga 1 VaTesaronika 2 : 13 , 19 , 20 . ) +“ Vanhu vanogona kugadzirisa vega matambudziko avo . ” +Tingawana sei mubayiro semhuri ? +( b ) Chii chinotibatsira kuti tirambe takaisa pfungwa pakuwana mubayiro ? +Tingazvidzivirira sei mumamiriro ezvinhu ane ngozi ? +Kuti tiuraye zvido zvekuita unzenza , tinofanira kudzivisa varaidzo yeunzenza . +( Verenga Muparidzi 7 : 21 , 22 . ) +10 , 11 . ( a ) Nei kuva negodo kuine ngozi ? +Shoko raMwari rinoti : “ Rudo rune mwoyo murefu uye rune mutsa . +Tingatevedzerawo here Jonatani pakuva nemutsa uye rudo ? +Imi varume , rambai muchida madzimai enyu uye musaatsamwira kwazvo . +Imi vana , teererai vabereki venyu pazvinhu zvose , nokuti izvi zvinofadza kwazvo munaShe . +Murume wechiKristu anofanira kuita sei kana asiri kuremekedzwa nemudzimai wake asingatendi ? +Shoko raMwari rinoti : “ Munhu anorega kutaura mashoko ake ane zivo , uye munhu ane ungwaru akadzikama . ” +Nyaya idzi dzinofanira kuita kuti unyatsova nechivimbo chekuti kuchava nerumuko . +11 : 11 . +Inyaya dzipi dzemuBhaibheri dzakaita kuti Marita ave nechivimbo chekuti vakafa vachamutswa ? +Kufanana naMarita , chii chinofadza chaunotarisira kuzoona chichiitika ? +Akati : “ Ndinoziva kuti achamuka . ” +Mwanakomana wacho akazorwara ndokufa . +Mwari akanzwa Eriya , uye mwana wacho akavazve mupenyu . +( Verenga 1 Madzimambo 17 : 17 - 24 . ) +( Verenga 2 Madzimambo 4 : 32 - 37 . ) +Chii chakaitika kune imwe hanzvadzi yechiKristu uye Petro akaita sei ? +Rimwe zuva muapostora Pauro aiva pamusangano mukamuri repamusoro muTroasi . +Mumwe mukomana ainzi Yutiko aiteerera agare pahwindo . +Jehovha akataurawo kuti mwana wacho aizouya “ nokuna Isaka . ” +Izvozvo zvaisareva hazvo kuti Mwari haagoni kumutsa munhu . +( Verenga Jobho 14 : 13 - 15 . ) +( b ) Nei rumuko ruchikosha chaizvo ? +Asi unotaura here nezverumuko sechimwe chezvinhu zvinokosha chaizvo pane zvaunotenda ? +( Verenga 1 VaKorinde 15 : 12 - 19 . ) +Zvisinei , tinoziva kuti Jesu akamutswa . +Jesu akabatanidzwa sei pakuzadzika kwemashoko ari muPisarema 118 ? +‘ Vavaki vakaramba ’ Mesiya ( Ona ndima 7 ) +Jesu aizova sei “ musoro wekona ” ? +Kana Jesu akarambwa uye akaurayiwa , aizova sei “ musoro wekona ” ? +( a ) Pisarema 16 : 10 yakafanotaura nezvei ? +Hamuzobvumiri akavimbika wenyu kuti aone gomba . ” +( Verenga Mabasa 2 : 29 - 32 . ) +( Verenga Mabasa 2 : 33 - 36 . ) +( Verenga Mabasa 13 : 32 - 37 , 42 . ) +Pane mamwe mashoko ane chekuita “ nezvenguva kana mwaka zvakaiswa naBaba musimba ravo . ” +Pauro akanyora kuti “ Kristu akamutswa kuvakafa , icho chibereko chokutanga pane vaya vakarara murufu . ” +Chii chichaitika kune vamwe vakazodzwa munguva yekuvapo kwaKristu ? +Nokuti kana tichitenda kuti Jesu akafa akamukazve , saizvozvowo , vaya vakarara murufu . . . +Mwari achavaunzawo pamwe chete naye . . . . Isu vapenyu tinenge tichirarama pakuvapo kwaShe hatizombotangiri vakarara murufu ; nokuti Ishe achaburuka kudenga achishevedzera nesimba , . . . uye vaya vakafa vari pamwe naKristu vachatanga kumuka . +Vakazodzwa vanenge vachiri vapenyu pakutambudzika kukuru ‘ vachatorwa mumakore . ’ +Ukadzoka ndinokutyora makumbo . ” +Ndakaberekwa musi wa29 July 1929 , uye ndakakurira mumusha uri mupurovhinzi yeBulacan , muPhilippines . +Izvozvo zvaiita kuti ndide kutevera muenzaniso waJesu . — Joh . +10 : 27 . +Panenge panguva iyoyo , vabereki vangu vakanditi ndidzoke kumba . +Mumwe wavo ainge ati kurei akauya pamba pedu , ndokutsanangura zvinotaurwa neBhaibheri ‘ nezvemazuva ekupedzisira . ’ +Akabva atikoka kuchidzidzo cheBhaibheri chaiitirwa mune rimwe raini raiva pedyo . +Takaita nguva yakareba tichikurukura nezveBhaibheri manheru iwayo . +Ndakapindura kuti , “ Ehe , ndinoda . ” +Ndaiziva kuti ndinoda ‘ kushandira Tenzi , iye Kristu . ’ +Takaenda kurwizi rwaiva pedyo , uye ini nemumwe mukomana takabhabhatidzwa musi wa15 February 1946 . +Mhuri yekwaCruz yakandikoka kuti ndinogara nayo muAngat . +Akaipa neChirungu , uye pashure pacho ndakazopa pfupiso yehurukuro yacho muchiTagalog . +Ndaimuka mangwanani ngwanani ndichibatsira mukicheni . +Pandakagirajuweta ndakamboshanda sapiyona chaiye muBronx muNew York City . +Pashure pekunge tachata , takaita vhiki rekutanga tiri muungano yaiva paRapu Rapu Island . +Takatozotengawo nzvimbo yemurume uya wekuti “ MaChina haatengesi . ” +Zai rainge richangobva kusangana nembeu yemurume raigona kutanga kukura muchubhu inofamba nemazai ( ectopic pregnancy ) kana kuti raipinda muchibereko . +Izvi zvinoita kuti pamuviri pacho pabve . +Rimwe bhuku rakabudiswa neEngland’s National Health Service rinoti : “ Kushanda kwemaIUD ane kopa yakawanda kunopfuura 99 % . +Izvi zvinoreva kuti pavakadzi 100 vanoshandisa maIUD akadaro panogona kushayika mumwe chete anobata pamuviri mugore rimwe chete . +MaIUD ane kopa shoma haashandi kusvika ipapo . ” +( a ) Zvinorevei ‘ kuitwa kuti uve nechokwadi ’ ? +( b ) Tinoziva sei kuti Timoti akaitwa kuti ave nechokwadi nemashoko akanaka pamusoro paJesu ? +Kutaura chokwadi , ndinganetseka kana akangobvuma chimwe chinhu asingabvunzi mibvunzo . ” +Zvinotsanangurwa neBhaibheri zvine musoro here kwavari ? +Chii chinokosha pakudzidzisa kwako ? +Vamwe amai vane vanasikana vatatu vanonzi Stephanie , vanoti : “ Kubvira vana vangu pavaiva vadiki diki , ndaifanira kugara ndichizvibvunza kuti , ‘ Ndinotaura here nevana vangu nezvekuti nei ndiine chokwadi chekuti Jehovha ariko , ane rudo , uye nzira dzake dzakarurama ? +Vana vangu vanonyatsoona here kuti ini ndinoda Jehovha chaizvo ? ’ +Handingatarisiri kuti vana vangu vave nechokwadi nazvo kana ini ndisina . ” +Bhaibheri rinotaura kuti upenzi hwakasungirirwa pamwoyo wemwana . +Uchenjeri hwakadaro hunodiwa kuti tiwane ruponeso . +Vabereki vangabatsira sei vana vavo kuti vave ‘ vakachenjera kuti vawane ruponeso ’ ? +Enda pakanzi ZVINODZIDZISWA NEBHAIBHERI > ZVEKUSHANDISA PAKUDZIDZA BHAIBHERI . +Ungashandira sei kuponeswa kwako ? +Vanogona kunge vakarererwa muchokwadi . +Asi pashure pemakore mashomanana chido chekuita zvebonde pachinosimba , mwana wacho anofanira kunyatsotenda kuti chisarudzo chakanaka kupfuura zvese ndechekuteerera mitemo yaJehovha . ” +( b ) Unodzidzei pana VaFiripi 4 : 11 - 13 ? +Zvinorevei kushandira kuponeswa kwako “ nokutya nokudedera ” ? +Zvinhu zvipi zvakakubatsira pakudzidza uri wega ? +Ndinofanirawo kusununguka saizvozvo . +Saka pandinenge ndichitaura nyaya , ndinogona kungoti , ‘ Mumwe musi pandaidzidzisa Bhaibheri . . . +’ Ndinobva ndaenderera nenyaya yandanga ndichitaura . +Nyaya yandinenge ndichitaura inenge isiri hayo yeBhaibheri , asi kazhinji kacho vamwe vanenge vava kutoda kuziva zvandinoita pandinodzidzisa Bhaibheri . +Pandinoramba ndichishandisa nzira iyi , kutaura zvandinotenda kunowedzera kuva nyore . +Uye pashure pacho ndinofara zvikuru ! ” +Tisu tega Zvapupu zvavanoonana nazvo . +Saka zvavachatiitira zvichaenderana nemaitiro edu . +Ko kana tichinyara kana kutya kutaura zvatinotenda kana kuti tichidedera patinenge tichitaura ? +Vanogona kubva vatanga kutiona sevanhu vasingafariri zvavari . +Vanogona kusatibata zvakanaka nekuti tinenge tisina chivimbo . +Zvisinei , kana tikataura zvatinotenda takasununguka uye tiine chivimbo , tichitaura sezvatinongoitawo dzimwe nyaya , vanogona kutiremekedza . ” +Jesu akati : “ Kana munhu achida kunditevera , ngaazvirambe , atore danda rake rokutambudzikira , arambe achinditevera . ” +Kuti uwane mamwe mazano ona nyaya yakanzi “ Vechidiki Vanobvunza Kuti ​ — Nei Ndichifanira Kunyengetera ? ” +Chidzidzo chipi chatingawana pana Isaya 40 : 26 ? +Hapana munhu ati akwanisa kuverenga nyeredzi dzese . +Tingava sei nechokwadi chekuti Jehovha anokwanisa kutipa simba ? +Uye akawedzera kuti : “ Muchawana zororo remweya yenyu . +Asi tinonzwa sei patinodzoka ? +Yapiwa nenzira inoratidza tsitsi nehanya zvekuti misodzi yangu yabuda . +Zvandiyeuchidza kuti ndinofanira kuvapo pamisangano . ” +Muapostora Pauro airevei paakanyora kuti : “ Pandinenge ndisina simba , ndipo pandiine simba ” ? +Akaimba kuti : “ Nokuti nemi ndinogona kumhanyira boka revapambi ; naMwari wangu ndinogona kukwira rusvingo . ” +Kana kuti tichatevera here uchenjeri huri muBhaibheri hwekuti tikurumidze kugadzirisa zvinhu ? +Uye ramba uchiyeuka kuti unogonawo kunge uine zvawakaita zvakazokonzera kuti musawirirana . Unogona kutanga kutaura naye uchiti , “ Pamwe ndini ndakakurumidza hangu kutsamwa , asi patakataura tese nezuro ndakanzwa sekuti . . . +Akanyora kuti : “ Ndakazoreurura chivi changu kwamuri , uye . . . imi makaregerera kukanganisa kwezvivi zvangu . ” +( 4 ) Kuchazombova neChirangaridzo chekupedzisira here ? +( Verenga Johani 3 : 16 ; 17 : 3 . ) +( a ) Jesu akanyengeterera chii musi wakatangwa Kudya kwaShe Kwemanheru ? +( b ) Chii chinoratidza kuti Jehovha akapindura munyengetero waJesu ? +( Verenga Johani 17 : 20 , 21 . ) +( Verenga Ezekieri 37 : 15 - 17 . ) +Tingasimudzira sei kubatana pakati pevanhu vaMwari ? +Tingaratidza sei kuti tiri ‘ kushivirirana murudo ’ ? +Tinoziva sei kuti pachava neChirangaridzo chekupedzisira ? +Hama mbiri nemadzimai adzo vari kuisa mabhuku mundege mutaundi reRiberalta , muBeni . +Nei Jehovha achitarisira kuti timupewo chimwe chinhu kubva pazvinhu zvinokosha zvaakatipa ? +Sangano rinoshandisa sei mari yezvipo mazuva ano ? +Chii chatinoratidza Jehovha patinotsigira basa rake ? +( Verenga 2 VaKorinde 8 : 18 - 21 . ) +Zvipo zvamunopa zvinobatsira pabasa redu remunyika yese ( Ona ndima 14 - 16 ) +Saka dzimwe nguva tinonzwa sekuti tiri tega , uye tinokurumidza kukanganwa kuti basa raJehovha riri kuitwa munzvimbo dzakawanda zvakadini . +Asi patinongoona mapurogiramu akasiyana - siyana eJW Broadcasting , tinoyeuka kuti tiri chikamu chesangano riri pasi rese . +Hama nehanzvadzi dzedu dziri kuno dzinofarira chaizvo JW Broadcasting . +Tinowanzonzwa dzichitaura kuti padzinopedza kuona purogiramu yemwedzi nemwedzi dzinonzwa dziri pedyo chaizvo nehama dzeDare Rinotungamirira . +Iye zvino dzinotodada nekuva chikamu chesangano raMwari . ” +( Verenga Zvirevo 11 : 24 , 25 . ) +Anoda mudzimai wake anozvida , nokuti hapana murume akambovenga nyama yake ; asi anoipa zvokudya uye anoitarisira . ” +Tingadzivisa sei kuzvida , kuda mari , kana kuda mafaro ? +Pauro akanyora kuti vanhu vaizova “ vanoda mari . ” +Makore apfuura , mumwe piyona akaudza mumwe murume muIreland nezvaMwari . +Bhaibheri rinotii nezveupfumi uye urombo ? +Akanyora kuti : “ Kuti ndirege kuguta ndikazokurambai ndichiti : ‘ Jehovha ndianiko ? ’ ” +Aiwanzoti , ‘ Ndina bhosi akanaka kupfuura vese ! ’ +Iye zvino zvandava kupayonawo , tese tiri kushandira Munhu mumwe chete , Jehovha . ” +Tingadzivisa sei kuzvida , kuda mari , kana kuda mafaro ? +Inoreva kuti havatombodi Mwari . ” +Tingadzivisa sei kuzvida , kuda mari , kana kuda mafaro ? +Tinozivawo kuti rudo “ haruzvikudzi , haruzvitutumadzi . ” +Ndaigona kuona kuti vanondida , uye izvozvo zvaiita kuti ndide kuvafadza . ” +( Verenga Isaya 11 : 6 , 7 . ) +Unogona kuverenga nezvevamwe vavo munyaya dzine musoro unoti “ Bhaibheri Rinochinja Upenyu , ” dzinowanika pajw.org . +Tinofanira kuita kuti vamwe vazive kuti tiri Zvapupu zvaJehovha . +3 Tevedzera Kutenda Uye Kuteerera kwaNoa , Dhanieri naJobho +28 Mufaro Unobva Kuna Mwari +9 , 10 . ( a ) Tingatevedzera sei kutenda uye kuteerera kwaNoa ? +( Verenga Maraki 3 : 17 , 18 . ) +( b ) Jehovha aiona sei Dhanieri ? +( b ) Vabereki mazuva ano vangadzidzei kubva kuvabereki vaDhanieri ? +( Verenga Jobho 1 : 9 , 10 . ) +19 , 20 . ( a ) Tingatevedzera sei kutenda uye kuteerera kwaJobho ? +1 - 3 . ( a ) Chii chichatibatsira kuti tirambe takatendeka kuna Mwari mumazuva ano ekupedzisira ? +( Verenga Dhanieri 6 : 7 - 10 . ) +( Verenga Jobho 31 : 24 - 28 . ) +( Verenga Pisarema 11 : 5 ; 26 : 4 . ) +Saka zvibvunze kuti , ‘ Ndinoziva Jehovha sezvaiita Noa , Dhanieri , naJobho here ? ’ +Inoki , tateguru vaNoa ‘ akafambawo naMwari wechokwadi . ’ +Jesu akati : “ Abrahamu baba venyu vakafara kwazvo vachitarisira kuona zuva rangu . ” +Handikwanisi kutsanangura mufaro watiinawo . ” +Nokuti Mwari akazvizarurira isu achishandisa [ mweya ] wake . ” +Jesu akati : “ Ndataura zvinhu izvi kwamuri , kuti mufaro wangu uve mamuri uye mufaro wenyu uzadziswe . ” +( 3 ) Zvatinoedza kuita kuti tive ‘ nepfungwa dzaKristu ’ zvichatibatsira sei kuti tive nemafungiro aMwari ? +( Verenga 1 VaKorinde 2 : 14 - 16 . ) +Bhaibheri rinotii nezvevanhu vane mafungiro aMwari ? +Tingadzidzei kubva pamuenzaniso waJakobho ? +Tingadzidzei kubva pamuenzaniso waMariya ? +( Verenga Ruka 1 : 46 - 55 . ) +( Verenga Isaya 63 : 9 ; Mako 6 : 34 . ) +Rachel , hanzvadzi yekuBrazil , anoti : “ Ndaida chaizvo kutevera mafashoni enyika . +Saka ndaisapfeka zvine mwero . +Asi kudzidza chokwadi kwakaita kuti ndishande nesimba kuti ndive nemafungiro aMwari . +Kuchinja kwaisava nyore , asi ndakawedzera kufara uye upenyu hwangu hwakava nechinangwa . ” +Saka tikava saJesu tinoswedera pedyo naJehovha . +Vakati : “ Tiri zvapupu zvezvinhu zvose zvaakaita . ” +Kuva nepfungwa dzaKristu kuchakubatsira sei pane zvaunoita zuva nezuva ? +Anoti : “ Handina kumbobvira ndaita zvakaipa , asi ndaisaita zvinhu zvekunamata nemwoyo wese . +Ndaiita sendakasimba pakunamata , ndichipinda misangano yese uye ndichiita upiyona hwebetsero kanoverengeka pagore . +Anoti : “ Zvaiita sekuti handina chandaiziva . +Ndakazviudza kuti , ‘ Kana ndichizobudirira kutungamirira mudzimai wangu pakunamata , ndinotofanira kusunga dzisimbe . ’ ” +Anoti : “ Ndakadzidza Bhaibheri uye ndakaridzidza ndikaridzidzazve , uye zvinhu zvakatanga kujeka . +Ndakanga ndava kunzwisisa , uye chinotonyanya kukosha ndechekuti ndakatanga kuva neushamwari hwepedyo naJehovha . ” +( 3 ) Kuva neushamwari hwakasimba naJehovha kunotibatsira sei muupenyu hwedu hwezuva nezuva ? +( b ) Chinangwa chedu patinenge tichidzidza uye kufungisisa ndechei ? +( b ) Muenzaniso upi wemuBhaibheri watingatevedzera ? +12 , 13 . ( a ) Chii chichatibatsira kushandisa zviri pana VaRoma 15 : 5 ? +( Verenga 2 Petro 1 : 5 - 8 . ) +Kuva nemafungiro aMwari kuchatibatsira sei muupenyu hwedu ? +Ndeapi “ mabasa akafa ” atinofanira kudzivisa ? +Zvisarudzo zvangu zvichandibatsira here kuva nezvinangwa zvekunamata ? +Nei uchida kufambira mberi pakuva nemafungiro aMwari ? +Muapostora Petro akakurudzira vaKristu vepanguva yake kuti : “ Gamuchiranai zvakanaka . ” +Simuka , ubhabhatidzwe . ” — MAB . 22 : 16 . +Vabereki vechiKristu vanoda kuva nechokwadi chei vana vavo vasati vabhabhatidzwa ? +“ KWEMWEDZI yakawanda ndaigara ndichiudza baba naamai kuti ndaida kubhabhatidzwa , uye vaiwanzotaura neni nezvazvo . +Chiitiko ichi chinokosha muupenyu hwangu chakaitika musi wa31 December , 1934 . ” +5 , 6 . ( a ) Zvinotaurwa neBhaibheri nezvaTimoti zvinoita kuti titaure kutii nezvekubhabhatidzwa kwake ? +( Verenga VaKorose 1 : 9 , 10 . ) +Vakaudza Jehovha kuti vaifara zvikuru nechisarudzo chemwanasikana wavo chekuzvitsaurira kwaari . ” +( Verenga 1 Petro 3 : 20 , 21 . ) +Nei tisingamanikidzi chero ani zvake kuti abhabhatidzwe ? +Kana uri mubereki , unogona kunge wakambozvibvunza kuti : Mwana wangu anyatsogadzirira kubhabhatidzwa here ? +Mubvunzo wekutanga ndewekuti , “ Sezvo Jesu Kristu akatifira , wakapfidza zvivi zvako ndokuzvitsaurira kuna Jehovha kuti uite zvaanoda here ? ” +Tingagamuchira sei vaeni zvakanaka pamisangano yedu yechiKristu ? +( Verenga 3 Johani 5 - 8 . ) +Inoti : “ Pakutanga ndaizeza nekuti tainge tichangochata uye tichigara muimba diki . +Asi kugara nevadzidzi kwaifadza zvikuru . +Sevanhu vainge vachangobva kuchata , taiona kuti murume nemudzimai vanogona kufara chaizvo pavanoshumira Jehovha uye kuzadzisa zvinangwa zvekunamata pamwe chete . ” +Nei zvingava zvakanaka kuti mukoke vatsva muungano yenyu ? +( Verenga Ruka 10 : 41 , 42 . ) +Mumwe musi ari manheru , mudzimai wangu aisuwa kumba uye zvandaiedza kuita kuti ndimubatsire zvaisashanda . +Kwava kuma7 : 30 , dhoo rakabva ragogodzwa . +Aiva mudzidzi weBhaibheri ainge atiunzira maranjisi matatu . +Ainge auya kuzochingamidza mamishinari matsva . +Takamuti apinde ndokubva tamupa mvura yekunwa . +Kana uchinetseka nezvekugamuchira vaeni , hausi wega . +Mumwe mukuru ari kuBritain anoti : “ Kugadzirira kuva nevaeni kunoti tyisei . +Asi sezvakangoita chero chii zvacho chine chekuita nekushumira Jehovha , makomborero nekugutsikana zvaunowana zvinoita kuti kunetseka chero kupi kwaungaita kusatombova chinhu . +Ndinonakidzwa nekungogara pasi nevaeni tichinwa hedu kofi nekuita nyaya . ” +Mumwe mukuru akanyora kuti : “ Kuva nevamwe vemuungano pamba pangu kunondibatsira kuti ndivanzwisise zviri nani uye kunondipa nguva yekuti ndivazive , zvikurukuru mawaniro avakaita chokwadi . ” +Mudzimai wemumwe murayiridzi akaita kuti ndisanetseke . +Akati iye nemurume wake pavanenge vachiita basa rekufambira , mavhiki akanaka zvikuru ndeaya avanogara nemunhu akasimba pakunamata angangodaro asina zvinhu zvakawanda asi aine zvinangwa zvakafanana nezvavo zvekushumira Jehovha uye kusava netwakawandawanda . +Izvi zvakandiyeuchidza zvataiudzwa naamai tiri vadiki . Vaiti : ‘ Zviri nani kuva nezvokudya zvomuriwo paine rudo . ’ ” +( Verenga Zvirevo 25 : 21 , 22 . ) +Vanhu vanowanzogadzirira zvakanaka vachiitira vaeni vavo ( Ona ndima 20 ) +Munyori wemapisarema Dhavhidhi akabvunza kuti : “ Haiwa Jehovha , ndiani angava mueni mutende renyu ? ” +Zvinokoshawo kuti tiremekedze tsika dzekwatinenge tiri . +Nei zvichikosha chaizvo kuti ‘ tigamuchirane zvakanaka ’ ? +Hama mbiri dziri kupa turakiti murume anoita zvekupenda uyo akagara pabhiriji pamberi pechivako chemakore ekuma1500 , chinonzi Kaštilac , pedyo neguta reSplit +( Verenga Tito 2 : 11 - 14 . ) +Mukuru wacho anoti : “ Graham aiva nedambudziko rekuzvikudza . +Aitsoropodza vakuru vakatonga nyaya yake paakadzingwa . +Saka pazvidzidzo zvakatevera , takakurukura magwaro anotaura nezvekuzvikudza uye zvakunokonzera . +Graham akatanga kunyatsoona zvaari mugirazi reShoko raMwari , uye haana kufarira zvaakaona . +Pashure pekunge aona kuti ainge apofumadzwa ‘ nedanda ’ rekuzvikudza uye kuti kutsoropodza vamwe ndiro raiva dambudziko rake , akatanga kuchinja nekukurumidza . +Akatanga kupinda misangano nguva dzese , kunyatsodzidza Shoko raMwari , uye kugara achinyengetera . +‘ Ndava nemakore ndiri muchokwadi , ’ akadaro , ‘ uye ndakatomboshumira sapiyona . +Muapostora Petro akanyora kuti : “ Fudzai boka raMwari ramunotarisira , musingaiti nokugombedzerwa , asi nokuzvidira ; musingaitiri kuda pfuma inowanikwa nenzira dzokusatendeseka , asi nomwoyo wose ; musingazviiti madzishe pane vaya vari nhaka yaMwari , asi muchiva mienzaniso kuboka . ” +Vabereki vangarera sei vana mukuranga kwaJehovha ? +( Verenga VaHebheru 12 : 5 - 11 . ) +Mwana anodzidza sei kuzviranga ? +4 , 5 . ( a ) Nei kuzviranga chiri chinhu chinokosha ‘ paunhu hutsva ’ ? +Tingava sei vadzidzi vakanaka veShoko raMwari ? +Imwe hama yakanyora kuti : “ Ndinotenda chaizvo marererwo andakaitwa nevabereki vangu . +( b ) Vamwe vabereki pavakateerera Jehovha , zvakabatsira sei mhuri yavo ? +( b ) Tingaita sei kuti vakuru vawedzere kufara pavanoita basa ravo ? +Havana kundituka kana kunditsoropodza , asi vakandikurudzira uye vakandisimbisa . +Pashure pemusangano mumwe nemumwe , pasinei nekuti vainge vakabatikana sei , paitoita mumwe wavo aindibvunza upenyu . +Nemhaka yezvakamboitika kwandiri , zvaindiomera kuti ndione sendakakodzera kudiwa naMwari . +Zvisinei , Jehovha akaramba achishandisa ungano nevakuru kuti andiratidze kuti anondida . +Ndinoteterera Jehovha kuti andibatsire kuti ndisambofa ndakamusiya . ” +Kana ukaita zvakanaka , haungakwidziridzwi here ? +Asi kana ukasaita zvakanaka , chivi chiri kukuvandira pasuo , chiri kuda iwe ; asi iwe uchachikunda here ? ” +Saka ‘ ngatiteererei chirango tive vakachenjera . ’ +Pasi rese , vanhu vari kurwira rusununguko . +15 Kutevedzera Jehovha ​ — Mwari Anokurudzira Vanhu Vake +8 : 36 . +( Verenga 1 Makoronike 29 : 11 , 12 . ) +Kuti zvivafambire ‘ zvakanaka , ’ vanhu vanofanira kuvimba naMwari uye kumuteerera . +Kana vakasateerera , vanosiyiwa vachisarudza vega zvakanaka . . . uye zvakaipa . ” +Kufanana nemutyairi wendege iyeye , Adhamu naEvha vaida kuita zvinhu nenzira yavo . +Akati : “ Kana mukaramba muri mushoko rangu , chokwadi muri vadzidzi vangu , muchaziva chokwadi , uye chokwadi chichakusunungurai . ” +Nei rusununguko rwakavimbiswa naJesu ruchiita kuti ‘ tisununguke zvechokwadi ’ ? +( Verenga VaRoma 8 : 1 , 2 , 20 , 21 . ) +( c ) Mibvunzo ipi yatinofanira kupindura ? +( Enda pakanzi KUBVUNZWA NEKUTAURA ZVAKAITIKA > KUTSUNGIRIRA MIEDZO . ) +Zvinhu zvose zvinobvumirwa nomutemo ; asi hazvisi zvinhu zvose zvinovaka . ” +Noa nemhuri yake vakatisiyira muenzaniso upi ? +Vakararama munyika yainge yakazara kurwisana uye unzenza . +“ Noa akaita maererano nezvose zvaakanga arayirwa naMwari . +Jehovha akatirayira kuti tiitei mazuva ano ? +( Verenga Ruka 4 : 18 , 19 . ) +Ndakanyatsonzwisisa zvinorehwa naJakobho 4 : 8 iyo inoti : ‘ Swederai pedyo naMwari , uye iye achaswedera pedyo nemi . ’ +Ndakaziva kuti ndakanga ndawana zvandaitsvaga , chinangwa chinogutsa muupenyu . ” +Murume nemudzimai , avo vanoshanda semapiyona chaiwo , vari kuparidza munzvimbo iri kwayo yega pedyo neguta reBalykchy +( b ) Jehovha akakurudzira sei Mwanakomana wake ? +Hezekiya akakurudzira sei vakuru vehondo nevanhu vemuJudha ? +Petro ‘ akasimbisa sei hama dzake ’ ? +Asi ndakakutetererera kuti kutenda kwako kurege kupera ; uye iwe , kana wangodzoka , simbisa hama dzako . ” ​ — Ruka 22 : 31 , 32 . +Ndivanaani vatinogona kukurudzira mazuva ano , uye nei tichifanira kudaro ? +Vakuru vangapa sei vamwe zano nenzira inokurudzira ? +Vabereki , muri kudzidzisa vana venyu kuti vakurudzire vamwe here ? +Yakandiudzawo zvayakaita payakasangana nemuedzo wakafanana newandaiva nawo , uye ndakabva ndaona kuti ndaisava ndega . ” +Mambo Soromoni akanyora kuti : “ Shoko rinotaurwa panguva yakakodzera , haiwa rakanaka sei ! +Kupenya kwemaziso kunofadza mwoyo ; mashoko akanaka anokodza mapfupa . ” +Nokuti makaita kuti ndifare , haiwa Jehovha , nokuda kwebasa renyu ; ndinoshevedzera nomufaro nokuda kwemabasa emaoko enyu . ” +Unogona kuva nezvinangwa zvekunamata kunyange uri mudiki chaizvo . +Zvirevo 21 : 5 inoti : “ Zvirongwa zvomunhu anoshingaira [ zvinobudirira ] . ” +Ukakurumidza kuronga upenyu hwako kuburikidza nekuva nezvinangwa zvakanaka , unokurumidzawo kubudirira . +Dhigirii rezvemutemo raigona kundiwanisa mari yakawanda chaizvo , asi ndaigona kutadza kuwana mukana wekushanda mazuva mashoma pavhiki . ” +17 , 18 . ( a ) Jehovha anoda kuti vechidiki vaite sei ? +Ndakaberekerwa muimba yemapango mutaundi diki chaizvo rinonzi Liberty , muIndiana , U.S.A . +Amai vangu vakazobereka vanin’ina vangu vaviri neimwe hanzvadzi yangu . +MUMAKORE andaienda kuchikoro hapana zvakawanda zvaichinja . +Taundi reLiberty rainge rakapoteredzwa nemapurazi madiki ainyanyorimwa chibage . +Musi weSvondo wega wega vaienda nesu kuchechi yeBaptist . +Vaida kuti ndirambe ndiri muchiuto . +Zvisinei , musi uyu vakandikoka kuChidzidzo Chebhuku Cheungano . Uyu waiva musangano wekudzidza uye kukurukura Bhaibheri waiitirwa kumba kwavo . +Ndakavaudza kuti ndaizofunga nezvazvo . +Zvakandishamisa kuti vaiziva Bhaibheri zvakadaro . +Makore ainge apfuura pandakabvunza amai nezveZvapupu zvaJehovha , vakangonditi , “ Haa , vanonamata mumwe murume akwegura anonzi Jehovha . ” +Asi iye zvino ndakaona kuti maziso angu akanga achivhurwa . +Ndakatanga kupayona gore rakatevera racho muna 1958 . +Gloria aiva dhaimondi chairo pandakamuroora uye nanhasi achiri dhaimondi . +Ndakachata naGloria muna February 1959 . +Hama Simon Kraker ndivo vakakurukura nesu nezvazvo . +Vakatiudza kuti paBheteri paisatorwa vanhu vakaroorana panguva iyoyo . +Pamabasa akawanda ataiita taipiwa madhora matatu pazuva . +Vhiki yega yega Gloria aiaina hembe dzeimwe mhuri . +Ndinoyeuka mumwe musi patakamira pane rimwe garaji . +Pasinei nematambudziko iwayo , taiva nenguva yakanaka nehama uye taida chaizvo ushumiri hwedu . +Ini ndakabva ndatanga kudzidza nemwanasikana wavo pamwe chete nemurume wake . +Amai vacho nemwanasikana wavo vakasarudza kushumira Jehovha ndokubhabhatidzwa . +Taiva neshamwari dzepedyo muungano yevachena . +Sangano rinonzi Ku Klux Klan ( KKK ) , iro rinosimudzira rusaruraganda uye kurwisana , raipisa - pisa chaizvo mazuva iwayo . +Muna 1962 , ndakakokwa kuChikoro Choushumiri hwoUmambo chaiitirwa muSouth Lansing , New York . +Zvisinei , imwe kambani yemafoni yemuPine Bluff yainge yambokurukura neni nezvebasa . +Kudai vaizondipinza basa ndaizova munhu mutema wekutanga kushandira kambani iyoyo . +Ndaisava nemari yekuti ndiende kuNew York . +Yakati , “ Endai kuchikoro munodzidza zvakawanda , mozouya motidzidzisawo ! ” +Ndinofara chaizvo kuti handina kuita basa iroro . +Izvi ndizvo zvinoyeukwa naGloria nezvenguva yataiva muPine Bluff : “ Ndaida chaizvo ndima yacho ! +Saka taiita basa repaimba neimba mangwanani , uye taizoswera tichiitisa zvidzidzo zveBhaibheri , dzimwe nguva tichisvika na11 manheru . +Pataipayona muPine Bluff takanyorera kuti tive mapiyona chaiwo . +Hama Leon Weaver , avo vava murongi mudare reBazi reUnited States , vakagadzwawo kuti vashumire semutariri wedunhu panguva iyoyo . +Ndaizeza kuva mutariri wedunhu . +Pandakagadzwa , Hama Thompson ndivo mutariri weruwa wandakatanga kushanda naye . +Mumazuva iwayo , mutariri wedunhu aingodzidziswa zvishoma . +Ndinoyeuka ndichiti kuna Gloria , “ Vava kutofanira kuenda izvozvi here ? ” +Pane imwe nguva , veKKK vakafora mutaundi rataishanyira muTennessee . +Mwedzi wakatevera wacho , takatanga kushumira paBheteri . +Gloria aiva dhaimondi pandakamuroora , uye ndizvo zvaachiri +Muna 1999 ndakagadzwa kuva nhengo yeDare Rinotungamirira . +Isaya 32 : 17 inoti : “ Basa rokururama kwechokwadi richava rugare ; uye kubatsira kwokururama kwechokwadi , kuchava runyararo nokuchengeteka nokusingagumi . ” +Yechipiri , tinofanira kunyengeterera mweya mutsvene waMwari . +Kana tikateerera zano raJesu , tinogona kubva pamba ipapo tiine rugare rwedu uye tiine tariro yekuti tichakwanisa kubatsira munhu wacho pane imwe nguva . +Saka ndakamukwazisa nerurimi rwaamai vake . +Akashamisika ndokundibvunza kuti , ‘ Nei matishanyira ? ’ +Ndakamuudza neruremekedzo kuti ndaida kuona mumiririri wenyika yacho . +Mukadzi wacho akamufonera , ndokubva auya kuzondiona ndokundikwazisa nemutauro wekunyika yake . +Zvadaro akanyatsonditeerera pandaitsanangura mabasa eZvapupu zvaJehovha anoitwa zvine rugare . ” +‘ Kana iri iya yepaivhu rakanaka , iyi ndivo vaya . . . vanobereka zvibereko nekutsungirira . ’ ​ — RUKA 8 : 15 . +Chii chichatibatsira kuramba tichibereka zvibereko nekutsungirira ? +( Ona mufananidzo uri panotangira nyaya ino . ) ( b ) Jesu akatii nezvekuparidza “ munharaunda yokumusha kwake ” ? +“ Kutendeka kwavo kunondikurudzira kuti nditsungirire uye kuti ndive neushingi muushumiri hwangu . ” +Mibvunzo ipi mitatu yatichakurukura , uye nechikonzero chei ? +Kunyange zvakadaro , hapana rimwe basa randingada kuita . ” +Verenga Johani 15 : 1 - 5 , 8 . +Tinodaro patinoita basa rekuparidza mashoko akanaka eUmambo hwaMwari . +Verenga Ruka 8 : 5 - 8 , 11 - 15 . +Tinobereka sei ‘ zvibereko nekutsungirira ’ ? +Nokuti ndinovapupurira kuti vanoshingairira kushumira Mwari ; asi havazviiti maererano nezivo yakarurama . ” +Patakazoenda , vanhu vaipfuura vaiti , ‘ Ko kurova kudai ? +Nei watsunga kubereka ‘ zvibereko nekutsungirira ’ ? +15 : 8 . +( Verenga Johani 15 : 1 , 8 . ) +Jesu akaudza vaapostora vake kuti : “ Baba vangu vanokudzwa neizvi , kuti munoramba muchibereka zvibereko zvizhinji . ” +( b ) Unonzwa sei nezvekuva neropafadzo yekutsvenesa zita raMwari ? +Kunoita kuti ndive nechido chekuramba ndichiparidza . ” +( a ) Chikonzero chipi chekuparidza chatinowana pana Johani 15 : 9 , 10 ? +Tinoratidza sei kuti tinoda kuramba tiri murudo rwaKristu ? +MuBhaibheri , Noa anonzi aiva “ muparidzi . ” +( a ) Mateu 22 : 39 inotaura chikonzero chipi chinoita kuti tiparidze ? +Vanofanira kuwana mukana wekunzwa mashoko akanaka . ” +13 , 14 . ( a ) Johani 15 : 11 inotaura nezvechipo chipi ? +( a ) Johani 14 : 27 inotaura nezvechipo chipi ? +( a ) Johani 15 : 15 inotaura nezvechipo chipi ? +( b ) Vaapostora vaigona sei kuramba vari shamwari dzaJesu ? +( Verenga Johani 15 : 14 - 16 . ) +Tinogona kuva nechivimbo chekuti Jehovha anopindura minyengetero yedu yekukumbira kubatsirwa ( Ona ndima 18 ) +Muapostora Petro anotaura nezvaSatani Dhiyabhorosi “ seshumba inodzvova , ” uye Johani anomudana kuti “ nyoka ” uye “ dhiragoni . ” +Tichibatsirwa navo , tinokwanisa kurwisa muvengi wedu . +Vaya vanobvuma nhema idzi vanorarama upenyu hwekushumira “ Pfuma ” pane kushumira Mwari . +Tinofanira kuziva muvengi wedu , asi hatifaniri kumutya . +Kana tikamurwisa , achatitiza . +Nhumbi dzekuzvidzivirira nadzo pakunamata ndedzipi ? +Uye vabereki vangu neshamwari dzangu vanoziva kuti vanogona kuvimba neni . ” +Asi kuita izvi kunobatsira chaizvo . Unova nechivimbo , unoswedera pedyo naJehovha uye unoremekedzwa nevanhu vanokuda . ” +Bhandi rechokwadi ( Ona ndima 3 - 5 ) +Izvi zvakamboita kuti ndisava nechivimbo uye ndiore mwoyo kwekanguva . ” +Vamwe vandaidzidza navo vakatanga kuita zvemadhiragi uye vamwe vakasiyira chikoro panzira . +Zvaisiririsa kuona zvakazoitika kwavari . +Anoti : “ Ndinozviyeuchidza kuti ndakatakura zita raJehovha uye kuti miedzo ingori nzira yaSatani yekundirwisa . +Pandinokunda muedzo , ndinofara . ” +Chinovhariridza chipfuva chokururama ( Ona ndima 6 - 8 ) +Iye zvino ndinofarira kuparidzira vezera rangu . ” +Izvi zvinoita kuti ndifunge kuti ndezvipi zvingavabatsira . +Kana ndakagadzirira , ndinokwanisa kutaura navo nezvezvinhu zvinonyatsovabatsira . ” +Ndinova nechokwadi chekuti ndaverenga zvinhu zvese zvinobudisirwa vechidiki . +Izvi zvinoita kuti ndikwanise kuratidza vezera rangu zvinhu zvinovabatsira zviri muBhaibheri kana pajw.org . ” +Tsoka dzakapfeka kugadzirira ( Ona ndima 9 - 11 ) +Ndezvipi zvimwe “ zvombo zvinopisa ” zvaungakandirwa naSatani ? +Iye zvino ndinogadzirira misangano yacho uye ndinoedza kupindura kaviri kana katatu . +Zvakaoma , asi pandinozviita ndinonzwa kufara . +Uye hama nehanzvadzi dzinondikurudzira chaizvo . +Nguva dzese ndinobva pamisangano ndiine chokwadi chekuti Jehovha anondida . ” +Nhoo huru yokutenda ( Ona ndima 12 - 14 ) +Ngowani yoruponeso ( Ona ndima 15 - 18 ) +Ndakaona kuti vanhu vanowanzoteerera kana vakaona kuti unonyatsotaura zviri muBhaibheri nechido uye kuti uri kuedza zvese zvaunogona kuti uvabatsire . ” +Bakatwa remweya ( Ona ndima 19 - 20 ) +Tichibatsirwa naJehovha tinogona kumira takasimba pakurwisana naye . diff --git a/benchmarks/sn-en - Copy/jw300-baseline/trg_vocab.txt b/benchmarks/sn-en - Copy/jw300-baseline/trg_vocab.txt new file mode 100644 index 0000000..202486a --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/trg_vocab.txt @@ -0,0 +1,4438 @@ + + + + +, +. +the +: +to +of +“ +” +a +and +kuti +in +? +ku@@ +s +) +( +’ +that +— +mu@@ +ed +uye +is +ne@@ +t@@ +ing +pa@@ +a@@ +y@@ +M@@ +ar@@ +for +s@@ +m@@ +we +; +1 +i +va@@ +f@@ +e@@ +r@@ +p@@ +re@@ +in@@ +aka@@ +be +es +are +Jehovah +on +was +o@@ +God +S@@ +i@@ +with +his +as +I +ch@@ +at@@ +u@@ +it +dz@@ +an@@ +as@@ +not +or@@ +2 +w@@ +d@@ +v@@ +b@@ +wa +e +The +you +A@@ +h@@ +ur@@ +n@@ +g@@ +kana +it@@ +zv@@ +P@@ +E@@ +or +er +is@@ +he +er@@ +o +T@@ +y +H@@ +c@@ +have +t +l@@ +k@@ +R@@ +on@@ +3 +iri +will +ir@@ +vanhu +se@@ +un@@ +ita +by +5 +an +4 +K@@ +us +I@@ +Jehovha +ha@@ +N@@ +al@@ +am@@ +V@@ +al +no@@ +ye@@ +es@@ +from +we@@ +en@@ +their +Mwari +-@@ +ano@@ +B@@ +one +at +im@@ +! +D@@ +- +nd@@ +they +ap@@ +6 +ak@@ +were +ti@@ +Jesus +kut@@ +our +z@@ +ro@@ +who +C@@ +va +all +ma@@ +ers +ad@@ +can +this +wa@@ +Bible +isa +‘ +chi@@ +ana +W@@ +Jesu +G@@ +ira +ari +7 +asi +ab@@ +vaka@@ +do +st@@ +na@@ +da +8 +9 +irwa +ino@@ +L@@ +what +kwa@@ +akanga +10 +ra@@ +kur@@ +munhu +par@@ +noku@@ +us@@ +ai@@ +ac@@ +15 +had +12 +ation +kw@@ +O@@ +yo@@ +ate +ts +ang@@ +U@@ +ine +end@@ +11 +ag@@ +era +zvino@@ +ya@@ +your +ly +A +What +ted +zva@@ +ing@@ +ic@@ +idz@@ +el@@ +In +vano@@ +zvinhu +them +ik@@ +F@@ +sei +iro +here +people +13 +kwe@@ +om@@ +yaka@@ +os@@ +14 +zvi@@ +op@@ +ya +has +kuva +Bhaibheri +ona +ev@@ +th@@ +em@@ +tr@@ +him +ot@@ +il@@ +amb@@ +ika +nem@@ +u +de@@ +j@@ +ve +my +about +cha@@ +ent +kuita +av@@ +ora +when +con@@ +ep@@ +17 +would +wo +Ku@@ +ach@@ +et@@ +zvikuru +16 +sh@@ +ose +pe@@ +and@@ +m +ri@@ +id@@ +dis@@ +ou@@ +ol@@ +may +for@@ +but +Ch@@ +imwe +ara +edza +1@@ +idza +ig@@ +adz@@ +uno@@ +kus@@ +ano +iswa +time +nguva +ava +ated +um@@ +hw@@ +ati@@ +ire +Mu@@ +di@@ +J@@ +ent@@ +out +19 +did +kun@@ +basa +van@@ +life +mumwe +so +20 +fanira +eng@@ +18 +akas@@ +k +How +ec@@ +[ +] +Asi +ho@@ +l +more +kuno@@ +so@@ +b +amba +wan@@ +n +en +Zv@@ +sa@@ +zvaka@@ +ut@@ +akat@@ +kuny@@ +those +ndi@@ +ity +ve@@ +some +me +mun@@ +Va@@ +bva +ence +th +ong@@ +res@@ +He +isi +ment +ina +ung@@ +Y@@ +able +ek@@ +mum@@ +her +also +le@@ +rino@@ +per@@ +ia +It +ai +qu@@ +been +ance +vat@@ +ane +d +wo@@ +anga +wana +vamwe +akar@@ +ed@@ +such +nezv@@ +be@@ +oku@@ +var@@ +many +akanaka +kup@@ +24 +Kristu +no +imba +ting +le +ex@@ +vari +ati +yo +ako +chir@@ +ziva +19@@ +zvin@@ +21 +iv@@ +pro@@ +h +up +ary +man +ani +tion +there +pl@@ +22 +achi@@ +chete +kuna +az@@ +wake +its +chit@@ +mut@@ +vas@@ +ts@@ +other +how +pamusoro +ip@@ +Witnesses +oro +ere +yoku@@ +ar +mashoko +ok@@ +ter@@ +chokwadi +Kana +ter +vake +che@@ +ib@@ +up@@ +har@@ +nokuda +mus@@ +mur@@ +ies +way +akati +me@@ +itwa +enyu +good +aiva +ru@@ +hand@@ +si@@ +than +he@@ +uka +awo +gr@@ +enyika +li@@ +if +work +We +day +enda +ind@@ +umb@@ +com@@ +ero +help +pasi +Paul +itika +ul@@ +pre@@ +world +dh@@ +any@@ +ings +rw@@ +said +/ +vana +cl@@ +should +chino@@ +zvo@@ +even +But +ely +eri +po@@ +mudzimu +chis@@ +ga +cho@@ +things +zo@@ +5@@ +mat@@ +waka@@ +ations +avo +Pauro +pres@@ +war@@ +dzino@@ +se +inga@@ +ous +Z@@ +John +ite +erwa +Christian +does +lo@@ +est +kudz@@ +Zvapupu +these +into +love +ei +aro +iwa +ish@@ +ura +iko +ise +su@@ +zuva +ure +Nd@@ +udza +pa +man@@ +ful +This +go@@ +which +funga +te@@ +onga +make +zi +23 +years +Ak@@ +nokuti +muna +uri +When +zviri +wor@@ +apo +could +imb@@ +to@@ +They +ally +ver@@ +sp@@ +ama +uk@@ +ning +6@@ +children +nor@@ +ion +ake +ng@@ +age +she +co@@ +ness +vachi@@ +kwaka@@ +mo@@ +mis@@ +ant +ud@@ +Christ +angu +iye +zvaJehovha +2@@ +end +ic +upenyu +wi +kutanga +Christians +nh@@ +gona +earth +raka@@ +p +chinhu +zvose +idzi +str@@ +vak@@ +Pa@@ +gara +ay@@ +mar@@ +vakanga +Umambo +iti +ying +ce +pane +akore +For +sur@@ +only +chin@@ +oun@@ +chaka@@ +nam@@ +ds +ch +because +iyi +over +dzaka@@ +handisa +ipa +iso +et +if@@ +des@@ +aura +zvis@@ +others +kura +then +ats@@ +says +kutaura +yacho +first +If +adza +ha +ents +oni +25 +Kingdom +ndoku@@ +rin@@ +Matthew +family +28 +vai@@ +kunyange +vose +batsira +As +fanana +come +ities +being +sion +pam@@ +ef@@ +hama +dze@@ +Mar@@ +vane +S +iya +zvino +Why +vo@@ +like +yake +ungano +Kunyange +daro +evera +ect +must +ty +ive +made +car@@ +zvakanaka +af@@ +rem@@ +mas@@ +eka +iz@@ +idzo +E +ear@@ +need +uro +huri +zve@@ +mwoyo +munyika +kutenda +vakawanda +rec@@ +erera +spirit +ambo +od +faith +ah +irira +ipi +kuru +jo@@ +ge +izvi +woku@@ +amwe +You +ob@@ +ess@@ +example +Zvisinei +vanot@@ +oratidza +chai@@ +ich@@ +* +vo +hwa@@ +dzose +vis@@ +just +ever +atu +g +ill@@ +ish +kune +od@@ +tions +Ne@@ +used +take +wacho +ene +7@@ +simba +Th@@ +r +king +aya +chimwe +edz@@ +udzi +see +now +nes@@ +akap@@ +pfungwa +kwazvo +most +own +30 +Saka +orwa +iyo +ones +naMwari +after +men +oka +chiri +ons +zvit@@ +ther@@ +chaizvo +spiritual +know +hum@@ +w +udz@@ +emb@@ +ta@@ +vap@@ +And +att@@ +kwem@@ +kuf@@ +enge +ain@@ +yose +O +arira +mug@@ +ony@@ +idzwa +chik@@ +very +dec@@ +bat@@ +oma +akaita +use +00 +reg@@ +kud@@ +congregation +zvo +true +pan@@ +pakati +kunamata +ating +nde@@ +vaKristu +new +akany@@ +Pisarema +uyo +vavo +zvazvo +kum@@ +nenzira +words +Psalm +nyika +inos@@ +before +anda +become +kosha +rwa@@ +raMwari +cre@@ +x +murume +rake +ice +ris@@ +ther +idzira +parents +acho +x@@ +ered +tis@@ +nezve@@ +gu@@ +any +br@@ +hur@@ +nzira +tino@@ +kuk@@ +dza@@ +angan@@ +give +por@@ +1-@@ +26 +kuts@@ +where +4@@ +igh@@ +do@@ +akak@@ +dzimwe +ikana +ave +paku@@ +death +esa +est@@ +hwe@@ +akawanda +hu@@ +pamwe +well +29 +enga +8@@ +Peter +An@@ +thing +zita +zvir@@ +bedzi +kupfuura +pas@@ +kuva@@ +el +ors +Ano@@ +Re@@ +27 +ember +Se@@ +pedzisira +ci@@ +too +ned +AN@@ +heart +9@@ +comm@@ +une +over@@ +another +mon@@ +vakat@@ +bo@@ +zvimwe +bl@@ +sed +through +kumb@@ +New +chiKristu +kwo@@ +Shoko +odz@@ +two +choku@@ +uts@@ +much +yokuti +iva +tichi@@ +kush@@ +nomu@@ +ike +ess +off@@ +am +ement +angano +arudza +Uye +ore +ser@@ +ws +pri@@ +omb@@ +No@@ +handa +ye +fe@@ +ory +ied +atino@@ +Petro +great +hi@@ +ova +ima +cr@@ +ast +kudaro +ality +onz@@ +pfuura +□ +uva +vabereki +aizo@@ +duku +han@@ +yedu +ond@@ +ori +ema +33 +That +mit@@ +times +person +vach@@ +ans +today +cho +ay +name +inter@@ +iy@@ +get +pur@@ +pr@@ +akan@@ +ide +ndaka@@ +kung@@ +land +zvakawanda +ves +ue +ariro +199@@ +kwake +c +3@@ +mukuru +rwe@@ +pedyo +angariro +uta +zvik@@ +• +truth +ually +naJehovha +31 +mag@@ +les +uya +makore +map@@ +found +ner@@ +enguva +might +ited +fara +yem@@ +vang@@ +ini +urwa +book +iyoyo +kubva +old +though +human +wedzera +One +So +omu@@ +ino +da@@ +each +woyo +dza +ently +muts@@ +mune +aka +und@@ +led +oupenyu +say +Chii +ug@@ +part +wose +kuda +nemhaka +fin@@ +uku +pf@@ +Ndi@@ +omo +akatanga +tly +ily +ry +eny@@ +prom@@ +Kut@@ +young +ks +bhuku +tive +vh@@ +Corinthians +mudz@@ +Is@@ +muk@@ +za +study +out@@ +akasiyana +St@@ +panguva +chokuti +Ma@@ +zvoku@@ +edzo +acc@@ +zano +NW +eg@@ +feel +fac@@ +Kuti +zvimbo +read +zvichi@@ +anya +vakar@@ +compl@@ +uch@@ +find +kuramba +against +Baba +kurudzira +ichi@@ +gare +atso@@ +place +vakuru +Word +ection +hi +apostle +vaya +act +less +ial +mak@@ +akarurama +isina +huno@@ +hondo +Luke +Vanhu +To +dic@@ +tain@@ +her@@ +po +atidza +Israel +udo +Ruka +Nei +ates +gar@@ +brothers +wis@@ +zvakadaro +David +naye +Isaya +ard +Satani +red +sec@@ +fu@@ +aff@@ +Isaiah +ach +fully +als +aurwa +ths +himself +yavo +Do +fung@@ +Zvirevo +However +wedu +fur@@ +dai +32 +pos@@ +Ha@@ +kupfurikidza +ions +Proverbs +Acts +0@@ +word +oko +ened +go +home +Vamwe +rudo +mir@@ +au@@ +pachena +keep +right +zvip@@ +adzwa +Ar@@ +rimwe +Tino@@ +kuona +vakas@@ +Al@@ +ist +same +.@@ +She +son +eni +wangu +ipo +In@@ +Satan +ked +never +bata +ious +often +asina +hau +Somuenzaniso +gl@@ +mb@@ +uny@@ +Magwaro +ombo +angarira +gre@@ +amu +akataura +ding +kuri +upon +tim@@ +sub@@ +yakanga +means +ase +pashure +Some +atur@@ +Dz@@ +irana +ition +nav@@ +Uno@@ +musoro +ual +nzvimbo +wrote +gamuchira +every +kunge +ight +izvo +Jud@@ +ad +trib@@ +tic +nomumwe +dzo@@ +fadza +At +iny@@ +ph@@ +boka +tic@@ +are@@ +inc@@ +There +course +hu +fa +ens +wira +nz@@ +ist@@ +asing@@ +why +mi@@ +came +atidz@@ +akasimba +tur@@ +iti@@ +dem@@ +Johani +vasina +sho@@ +34 +ical +famba +del@@ +kudzidza +Izvi +ished +yaya +vaiva +hwo@@ +35 +ven@@ +all@@ +urira +Kus@@ +put +taura +became +40 +Mabasa +iki +hope +wn +Iye +kwete +under +spe@@ +you@@ +serve +let +ndo@@ +Timothy +uru +Mateu +set +Par@@ +days +pana +mh@@ +kusvikira +down +anot@@ +sin@@ +among +vadzidzi +zvai@@ +ny@@ +the@@ +nou@@ +IN@@ +muenzaniso +ashoko +appro@@ +000 +chenget@@ +After +called +kupar@@ +Mateo +dzidza +inor@@ +view +racho +show +bvuma +de +ass@@ +pat@@ +bur@@ +anoti +vasing@@ +zvokudya +denga +enzi +edu +zvokuti +publ@@ +low@@ +poku@@ +Dhavhidhi +aris@@ +ikwa +ume +dzi +gore +ain +faithful +uchi@@ +fo@@ +Un@@ +back +imbisa +kuziva +worship +much@@ +Israeri +eerera +N +ord@@ +hap@@ +learn +fir@@ +id +Chokwadi +nayo +wife +hear@@ +ore@@ +kuch@@ +akakwana +Father +uko +erek@@ +nevanhu +min@@ +betsera +riri +Mus@@ +century +dir@@ +Revelation +Is +mutsa +kure@@ +want +37 +ongwa +ound@@ +news +vika +oreva +vi +United +year +ait@@ +zviv@@ +Zvakazarurwa +given +inda +vapo +during +Mumwe +sig@@ +important +anenge +ected +hom@@ +onzi +hwake +muviri +still +la@@ +mari +shand@@ +bvira +arama +away +ized +conf@@ +bvum@@ +kwoku@@ +kushandisa +izvozvo +Con@@ +live +munguva +mazuva +pol@@ +muchi@@ +adzi +nhasi +akanyora +told +ungamirira +zivo +navo +bv@@ +wako +wise +ba +mup@@ +ga@@ +anh@@ +wem@@ +mutemo +later +tain +rel@@ +om +Johane +doing +ungwa +eas@@ +kwavo +anos@@ +ref@@ +kazhinji +mudzimai +knowledge +muf@@ +yi +Com@@ +As@@ +Romans +appe@@ +ets@@ +ans@@ +taka@@ +enz@@ +ses +fananidzo +hanya +mind +began +zwa +expres@@ +inenge +Sa@@ +ais@@ +aita +zvid@@ +pano +gadz@@ +50 +ead +inge +hon@@ +while +By +ars +haana +gra@@ +themselves +kuz@@ +add@@ +kare +bless@@ +holy +vaka +nyore +edzwa +uyu +apa +waMwari +ran@@ +Judha +Pane +ezvinhu +zvem@@ +bh@@ +inot@@ +yai@@ +mufaro +zivisa +peace +Naizvozvo +amene +char@@ +long +anc@@ +Kup@@ +engetera +Kur@@ +preaching +hor@@ +fan@@ +pris@@ +nema@@ +child +KU@@ +shoko +ministry +zhinji +ular +kwedu +shamwari +pedza +Noku@@ +ivirira +Lo@@ +ough +service +gave +power +tice +without +wavo +living +dzidz@@ +bel@@ +Genesis +D +sy@@ +Ex@@ +ca@@ +loy@@ +ised +ising@@ +imi +diwa +kusvika +however +bu@@ +eswa +cor@@ +musha +chose +zana +chap@@ +vangu +uram@@ +ke@@ +iver@@ +vi@@ +With +ian +anofanira +ound +vanofanira +dzoku@@ +ians +idzirwa +C.E. +siyana +zve +int@@ +kurumidza +mberi +teach@@ +On +kumbira +hwaMwari +wara +Pro@@ +hamwari +anor@@ +T +gir@@ +VaRoma +order +kunzwisisa +nyaya +house +anogona +handiswa +tsika +tinofanira +kuwana +budirira +Ndaka@@ +unhu +fl@@ +ti +ust +Scriptures +ell@@ +nei +father +three +unung@@ +14@@ +muupenyu +AR@@ +ast@@ +abv@@ +ep +ef +Zvino@@ +Bh@@ +dziri +20@@ +wal@@ +chii +muBhaibheri +Then +huru +mwana +R +wat@@ +tariro +tik@@ +mukadzi +Jo@@ +ill +ango@@ +angana +varume +ges +ham@@ +nezva@@ +sol@@ +fact +sing +vanos@@ +emba +chake +ways +happ@@ +kurarama +zvakaipa +bvunza +chengeta +sal@@ +low +both +self +religious +ek +zvisina +mukati +vaIsraeri +Pas@@ +chava +His +ize +mor@@ +ship +Many +disciples +nevamwe +chip@@ +King +atidzwa +ments +streng@@ +cont@@ +zvat@@ +ative +sure +Be@@ +10@@ +akanyorwa +making +guru +homa +vene +atidzira +States +Here +0 +vimbika +kupa +help@@ +ages +inst@@ +enh@@ +sign@@ +,@@ +ito +azve +pasina +azuva +ER@@ +faniri +reas@@ +ests +umira +ening +ble +ivo +ambira +ough@@ +unz@@ +,000 +ously +De@@ +tiv@@ +Mambo +Yet +nokut@@ +Mes@@ +den +akadaro +anoda +muku@@ +My +Mosesi +Mun@@ +succ@@ +ndiye +uma +Yes +Ad@@ +every@@ +kund@@ +loc@@ +always +vanenge +sel@@ +roku@@ +piwa +mother +ets +ater +indura +nesimba +upi +beg@@ +zvar@@ +Mwanakomana +ture +emp@@ +zvakanga +took +ome +ward +Jerusalem +ambura +city +So@@ +fa@@ +verenga +having +ys +eff@@ +umo +Hebrews +vachit@@ +uraya +ences +asked +te +chang@@ +wh@@ +mhuri +jeka +ikan@@ +look +oup@@ +sup@@ +asa +Zva@@ +between +wadz@@ +ters +Pashure +Our +He@@ +vanor@@ +nechi@@ +ete +ambe +ata +James +fort +emberi +form@@ +mer@@ +ext@@ +iwo +whom +chikonzero +yeuka +Ndino@@ +explain@@ +something +unga +dzake +World +zving@@ +appreci@@ +mabasa +ute +kwenguva +ivisa +ash@@ +really +Fr@@ +wedzi +ver +reason +Jakobho +runo@@ +atidzo +itiro +provid@@ +kwanisa +mush@@ +hwo +chikoro +zvatino@@ +far@@ +tiri +muzana +um +batanidza +woman +bre@@ +marriage +concer@@ +vic@@ +ved +taurwa +Tr@@ +humans +ital +Sezvo +lead@@ +il +felt +chena +rist@@ +angar@@ +adzo +zvakaita +sezvo +vimb@@ +Munhu +hand +consid@@ +servants +mamwe +oga +kubatsira +of@@ +possible +air@@ +real@@ +Job +wanisa +little +rinonzi +tal@@ +chenjera +tor@@ +VaHebheru +personal +arisira +ack +Apo +endi +ez@@ +ended +mankind +together +akats@@ +Africa +inv@@ +chinja +Col@@ +zvib@@ +amai +zivikanwa +gener@@ +ands +ndino@@ +Roma +pamberi +isiro +list@@ +raJehovha +fuura +wond@@ +ll +dzavo +thr@@ +hapana +dzakawanda +bats@@ +198@@ +uteronom@@ +ff@@ +kururama +AI@@ +anoita +ingly +kunzwa +osh@@ +ature +Son +kurukura +form +Even +mambo +vaMwari +ava@@ +dra@@ +aida +encourag@@ +sigira +fellow +stud@@ +joy +inei +rose +chi +ong +ution +ire@@ +itsva +echi@@ +vimba +stand@@ +number +Jerusarema +problems +try +think +few +Gre@@ +dikanwa +toward +evedzera +ible +food +muungano +result +amira +ost +fi@@ +ind +milli@@ +Let +believ@@ +achit@@ +All +consider +body +gadzir@@ +kuro@@ +enget@@ +Mup@@ +gover@@ +future +ner +yaMwari +activ@@ +vanoda +These +hurumende +face +point +hanzvadzi +36 +kuenda +vaviri +kuratidza +women +onzwa +anisa +yor@@ +du@@ +itiko +Per@@ +di +Moses +ism +zvinetso +ese +vanop@@ +husband +chipi +lives +bring +ple +ikoku +vechi@@ +onal +isira +known +vereng@@ +jus@@ +wr@@ +Y +religion +ichi +care +39 +clo@@ +tem@@ +prot@@ +osha +Mur@@ +yam@@ +itira +Muna +ility +No +dev@@ +enti@@ +unogona +exp@@ +rutivi +anganisira +zvine +since +anzvi +pap@@ +ching@@ +Eng@@ +ects +guma +exam@@ +akaratidza +pione@@ +again +zvake +rokuti +sin +giving +rus@@ +kunze +experience +C.E +neva@@ +aiz@@ +kind +waro +Ng@@ +exc@@ +CH@@ +asati +’@@ +ask +akakodzera +asha +sor@@ +hold +blood +buda +ikoko +chinangwa +prayer +nations +achiti +perfect +accep@@ +kushanda +happy +under@@ +aking +ipapo +vura +els +ambo@@ +From +cul@@ +ame +st +si +ere@@ +muri +died +zova +rep@@ +thy +ziv@@ +ongo@@ +different +45 +elders +kwakanga +yed +righteous +off +last +chechi +En@@ +wisisa +change +hamisa +water +VaKorinte +H +tin@@ +rul@@ +ply +Muk@@ +lar@@ +done +pray@@ +emek@@ +meetings +inoti +chitendero +udzidziso +ropa +38 +io +kushand@@ +naJesu +isvonaka +purpose +arudzi +ongorora +continu@@ +kurukur@@ +fe +akaramba +ever@@ +left +ambudziko +soci@@ +AK@@ +yangu +needed +heaven +ering +yaiva +Watchtower +zvozvo +sia +zvidz@@ +better +ns +ongi +Jobho +learned +kumu@@ +gum@@ +Zvaka@@ +went +ists +col@@ +ten +voku@@ +kuteerera +f +bas@@ +kwam@@ +ron@@ +5-@@ +nechokwadi +kuchi@@ +ange +munzvimbo +sha@@ +ege +yechiKristu +ication +rudzi +sto@@ +val@@ +oti +vako +yakawanda +zvinoita +hamu +zvinos@@ +gan@@ +arly +hwaka@@ +ugare +umi +cer@@ +line +IR@@ +Ab@@ +counsel +bro@@ +Mashoko +mutsvene +muka +pose +tre@@ +nor +batanidzwa +dzin@@ +irozi +loving +ON@@ +B.@@ +ship@@ +ving +wai +let@@ +ikira +fear +muno@@ +refu +wisdom +Lord +fine +udzwa +wing +ufu +decis@@ +ofita +vedu +discus@@ +vave +enzan@@ +practic@@ +eful +cannot +ety +DZ@@ +homan@@ +chaizvoizvo +qual@@ +Your +ged +Rus@@ +questions +U +chokuita +irawo +plac@@ +describ@@ +induro +present +18@@ +awa +kufunga +Greek +okor@@ +angwa +coun@@ +early +kwaari +kuitira +zvak@@ +ling +dzedu +Thus +ace +teaching +school +heavenly +vava +anangura +using +Mum@@ +ately +sc@@ +hamo +wisa +vanogona +olog@@ +akandi@@ +AT@@ +vir@@ +amata +less@@ +3-@@ +V +ell +pra@@ +includ@@ +una +who@@ +system +wicked +mil@@ +Abra@@ +maviri +ikirwa +associ@@ +ada +ines +EN@@ +heav@@ +ungirira +wirirana +Nh@@ +someone +zvam@@ +arudzo +kunoita +sezva@@ +kuparidza +matter +200@@ +zvavo +viol@@ +ndichi@@ +farira +spec@@ +iness +Genesi +ondo +chiny@@ +fre@@ +hem@@ +wawo +fulfill@@ +Pe@@ +occ@@ +sl@@ +ign +friends +sive +aigona +rechi@@ +yako +war +wed@@ +eso +nani +hard +row +Mut@@ +helped +kurudz@@ +ko +vazhinji +anointed +ous@@ +rinoti +ree +vamba +utsa +experi@@ +▪ +language +Giriki +ungamiriri +hwedu +aradza +following +dzidzisa +Israelites +pfuma +going +apostora +pare +share +law +tinogona +article +bad +self-@@ +doc@@ +relationship +Ezek@@ +brother +yakati +44 +baba +ident +believe +azi +icha@@ +bir@@ +thers +Nokudaro +govera +certain +ending +Ung@@ +pleas@@ +continue +zvand@@ +ented +kudenga +ined +rugare +batira +ge@@ +hwa +zvininipisa +Vaka@@ +sk@@ +ither +ild +thought +kure +ick@@ +spok@@ +yourself +oneka +hwoku@@ +ancient +okera +best +kupinda +ato +akatendeka +Christ@@ +aifanira +isisa +compan@@ +ne +members +situation +mubasa +moved +chacho +Because +vie@@ +Who +cond@@ +requir@@ +light +pinda +baptized +omborero +ould +tif@@ +Jews +IS@@ +Bro@@ +Jos@@ +hin@@ +kwakaita +saying +mutauro +kunogona +sem@@ +indic@@ +berekwa +amiriro +Society +2-@@ +money +imiro +icho +vait@@ +ld +pain +nen@@ +head +thus +anz@@ +until +enzaniso +panzvimbo +muapostora +dia +yet +irwo +position +run@@ +OR@@ +ild@@ +UN@@ +message +support +dly +serving +vag@@ +kuzvi@@ +yechi@@ +im +pem@@ +VaKorinde +unity +cent +resp@@ +eyes +close +enc@@ +Mark +vakadzi +zor@@ +zvipira +will@@ +net@@ +ZV@@ +kutonga +dzidziso +mvura +maererano +batana +ject +vanoita +nation +60 +pand@@ +ekare +mean +anotaura +wero +increas@@ +vimbo +Sh@@ +ombor@@ +case +Timoti +Since +guta +far +dya +ably +transl@@ +around +wechi@@ +ce@@ +ches +apfuura +wit@@ +enjoy +writ@@ +efore +iah +orera +mwari +Abraham +especially +gif@@ +speak +inde@@ +profita +commun@@ +der +Ephesians +imo +ndizvo +vacha@@ +main@@ +kusa@@ +redu +haka +irano +emo@@ +dies +achir@@ +ango +eredza +mabhuku +produc@@ +batsirwa +tir@@ +high@@ +ested +42 +Kw@@ +yisa +vany@@ +rup@@ +kuitwa +70 +anger +cause +hab@@ +look@@ +eld@@ +respect +along +wers +pic@@ +ir +brought +ut +ariri +ayo +ukama +ondedzera +oned +govern@@ +reat@@ +turned +cap@@ +vara +yeBhaibheri +ide@@ +Daniel +sense +anganisa +next +eti +free +answer +mbiri +ites +arr@@ +Brit@@ +feelings +vaJehovha +York +ramakore +understand +served +attention +kwai@@ +born +mubvunzo +ak +ms +iring@@ +panyika +chinj@@ +Ipapo +akare@@ +Germany +Vano@@ +talk +Rev@@ +dead +develop@@ +Europe +Chin@@ +kwose +ku +received +engo +iroro +tion@@ +Van@@ +desire +zvechokwadi +ements +VaEfeso +regar@@ +AM@@ +hiz@@ +opa +lead +influ@@ +lands +ond +kwaMwari +uc@@ +irai +wane +trav@@ +aring +echokwadi +chall@@ +ental +lim@@ +tor +ourselves +eless +wanda +muma@@ +zos@@ +taken +aur@@ +chat@@ +avoid +kurumbira +reve@@ +rine +pati@@ +akava +Mutemo +bayiro +ndakanga +ram@@ +zvirokwazvo +akakomba +needs +illustr@@ +partic@@ +zvikurusa +hat@@ +hwavo +6-@@ +soon +kungo@@ +misangano +ender@@ +akapa +ress +zvokwadi +trans@@ +43 +kuit@@ +small +ingaira +Although +fanan@@ +beli@@ +ple@@ +isters +yakat@@ +saw +contr@@ +row@@ +privil@@ +states +dzem@@ +iting +Of +ants +difficult +reading +nomwoyo +muduku +munzira +ope +well@@ +vaJudha +iwe +sue +respon@@ +health +yakanaka +z +ived +nezvoku@@ +iku +em +Those +chipiri +vacho +taking +akasvika +havana +coming +leg@@ +pros@@ +itions +Hapana +learly +enced +Read +iwayo +gadzirira +ununguko +person@@ +consci@@ +Hungu +ting@@ +7-@@ +iye@@ +prove +Adam +oss +eness +offer@@ +real +likely +rakanga +Nenzira +discip@@ +ached +its@@ +poss@@ +imu +emo +agona +side +aiita +rufu +our@@ +night +train@@ +sions +appoin@@ +put@@ +including +ze@@ +saka +wanzo@@ +rokutanga +iving +question +ican +Gar@@ +kwat@@ +mission@@ +wer@@ +apar@@ +Law +iriro +Nguva +Nyika +vaduku +fru@@ +high +ern@@ +orig@@ +earth@@ +adhiso +cou@@ +isati +account +married +Je@@ +abh@@ +liter@@ +zvikurukuru +ems +chet@@ +wrong +dzine +ples +zadz@@ +ls +chem@@ +kunda +mura@@ +kwana +Gal@@ +Such +etting +amiriyoni +imbo@@ +Hama +Zvino +false +with@@ +kukuru +gumi +Are +atidzika +nhau +fungo +conduct +While +seen +turn +control +pli@@ +claim@@ +ularly +Can +hus@@ +arudz@@ +suffering +wanted +mwanakomana +Creator +dedic@@ +temple +wand@@ +ongo +endero +abl@@ +imambo +liv@@ +fungiro +Today +Me@@ +trust +advan@@ +adise +ambudz@@ +special +itical +Musiki +zvakaitika +sent +wedz@@ +follow +Am@@ +nokukurumidza +entif@@ +ann@@ +vais@@ +upu +shor@@ +Hebheru +Tru@@ +anok@@ +bus@@ +hanu +cy@@ +ards +famil@@ +obedi@@ +HO@@ +kurira +opport@@ +sva +budiswa +benefit +ring +haraunda +kugara +sokuti +makes +vakafa +41 +Nokuti +ins +Uyezve +K +wide +achis@@ +moral +Verenga +enjo@@ +isham@@ +kudza +national +zvinokosha +conven@@ +val +sing@@ +magaz@@ +ost@@ +eld +whole +kuchinja +hosva +knew +Chir@@ +Timotio +kwand@@ +instruc@@ +pfupi +tern +eji +thous@@ +principles +thinking +zot@@ +receive +nothing +umwe +Wor@@ +Ikoku +benef@@ +simply +anim@@ +taught +valu@@ +ick +pasinei +courage +Pan@@ +ld@@ +circum@@ +oondo +involved +attitude +ndiri +kufamba +strong +responsib@@ +tine +vem@@ +ra +kindness +provide +bhabhatidzwa +kutsvaka +remakore +ende +build@@ +anwa +resul@@ +chivi +erg@@ +star@@ +bvisa +group +marudzi +righteousness +nenguva +iled +ulation +fav@@ +Sim@@ +emera +Babyl@@ +educ@@ +Jerem@@ +warira +Bib@@ +Imwe +Le@@ +divine +ibatsira +ayira +Muapostora +ipp@@ +nazvo +vand@@ +Fir@@ +minis@@ +Ino@@ +Does +maj@@ +THE +Dhanieri +my@@ +Now +doub@@ +four +wisana +works +cal@@ +equ@@ +entr@@ +peri@@ +judg@@ +aberek@@ +mweya +table +‘@@ +rai@@ +prophet +oshesa +zvicha@@ +zvinor@@ +kunaka +ises +ided +acha@@ +fundisi +world@@ +dar@@ +posed +enem@@ +clos@@ +vomu@@ +asikana +U.@@ +great@@ +gen@@ +sai@@ +crip@@ +whether +occas@@ +Not +chero +Joshua +Egyp@@ +betsero +akanzwa +nokusingaperi +vanz@@ +heard +ambiro +Jap@@ +Or@@ +Li@@ +Ver@@ +Be +akanak@@ +unofanira +illi@@ +zvinogona +Jewish +Kutaura +zira +chen@@ +ign@@ +necess@@ +Philipp@@ +enhema +act@@ +followers +sons +exerc@@ +onyanya +ass +kingdom +vadz@@ +according +ly@@ +problem +kudzidzisa +repor@@ +page +ability +bha@@ +idzisa +wewo +wed +Ona +Can@@ +Kun@@ +Hebrew +muKristu +matters +umiri +ota +rap@@ +soul +work@@ +handi +Ho@@ +Chi@@ +certainly +aram@@ +chakanga +expec@@ +truc@@ +batwa +kutambudz@@ +hava@@ +ery +Bhabhironi +ich +ives +ok +invol@@ +ta +Watch +den@@ +satis@@ +Jeremiah +bi@@ +195@@ +kug@@ +rwo@@ +Panguva +once +pakutanga +arisana +hun@@ +ices +abasa +recogn@@ +Up@@ +half +mugumo +amat@@ +seka +Ru@@ +ayiro +akomana +action +distr@@ +ics +similar +ote +svaka +II +itate +zara +Consider +musi +ties +sis@@ +comes +ES@@ +rwoku@@ +gives +dr@@ +zvedu +paradz@@ +ath +Solomon +ongor@@ +everlasting +Zvi@@ +uses +On@@ +peji +pes@@ +unza +obe@@ +yp@@ +engetero +nezuva +Inter@@ +large +Na@@ +neZvapupu +nezvinhu +ucha@@ +congreg@@ +ends +stand +rwaka@@ +budisa +refl@@ +becom@@ +move +pet@@ +munyori +inh@@ +Inst@@ +kwou@@ +material +sen@@ +Zvinhu +vice +yakazara +vakatendeka +pop@@ +mba +ukira +promise +viny@@ +gadziriro +determin@@ +aziv@@ +ka +WA +sacrifice +pach@@ +masimba +bvumira +According +onzero +fungidzira +zvinot@@ +tsanangura +vol@@ +asikirwa +vhiki +kuma@@ +During +kutarisira +tsitsi +vam@@ +organization +vashumiri +atonger@@ +don +zvakadini +pafadzo +full +dzeBhaibheri +vana@@ +country +magazini +L +amir@@ +zivi +teach +fuurira +log@@ +dom@@ +ces +based +Bo@@ +Kud@@ +gura +nokus@@ +Dhe@@ +resurrection +UR@@ +yaJehovha +Tower +hol@@ +apostles +ber@@ +inj@@ +akaona +inogona +Soromoni +sever@@ +zvishoma +Tim@@ +abhuku +May +dzi@@ +therefore +God@@ +individuals +isika +struc@@ +crow@@ +shows +IT@@ +interest +ush@@ +ri +tho@@ +fles@@ +command@@ +wanikwa +Ec@@ +ingi +ale +Samuel +dambudziko +heal@@ +Rather +physical +wakanga +stu@@ +Gen@@ +inza +refer@@ +evidence +okuti +ago +mig@@ +pray +win@@ +vation +remain +ungamir@@ +ically +rit@@ +remain@@ +zvakat@@ +nezvem@@ +tell@@ +zvav@@ +wechokwadi +dini +drin@@ +onesa +wi@@ +sex@@ +ouya +anonzi +head@@ +munyengetero +wagwa +ove +vakaita +gamuch@@ +requ@@ +prof@@ +uchenjeri +urs +onero +ende@@ +See +onekwa +sav@@ +fungisisa +zvakadai +daugh@@ +kuru@@ +edzi +reli@@ +expl@@ +akadz@@ +Cha@@ +zvinodiwa +Tinofanira +mentioned +neigh@@ +already +uted +humira +1914 +hiy@@ +ful@@ +history +etimes +det@@ +An +Mak@@ +super@@ +neBhaibheri +Neiko +Chik@@ +Inde@@ +authority +mab@@ +nga@@ +tom@@ +cas@@ +started +ov@@ +hos@@ +Their +yakadaro +full@@ +etsika +forts +iver +yakarurama +esi@@ +Ser@@ +chikuru +gg@@ +iana +Indi@@ +past +clear +vengi +America +pakuvamba +atong@@ +loved +prophecy +eer@@ +truly +pite +waJehovha +hanyira +poin@@ +kuwedzera +sheep +andi@@ +pfuurira +near +irei +anodaro +edly +public +friend +arrang@@ +unda +vaig@@ +Mudz@@ +cop@@ +reason@@ +anyone +inga +held +rather +lear@@ +second +fundo +vers@@ +sou@@ +itive +adi +nemakore +Kuno@@ +cam@@ +kwakadaro +bereka +tell +pen@@ +sight +standing +Ye@@ +gadzira +desir@@ +chinokosha +asvika +ot +return +aw@@ +nyanzvi +anang@@ +fungwa +stances +davira +Firipi +longer +Dzimwe +Q@@ +46 +ped +iro@@ +power@@ +showed +leave +ravo +ungan@@ +onzera +mumwoyo +common +ext +fun@@ +yar@@ +die +apupu +moder@@ +anony@@ +formed +duc@@ +idence +hakuna +vakazodzwa +overse@@ +oorana +eta +vateveri +agoni +gn@@ +inspired +Che@@ +book@@ +spiritually +mibvunzo +G +cur@@ +evedz@@ +Joseph +mamiriro +mukana +destro@@ +F +abhorosi +mitemo +house@@ +meaning +lov@@ +happiness +kept +zvising@@ +clean +read@@ +edom +ban@@ +Nharireyomurindi +Far@@ +information +lost +ngozi +erful +․ +e-@@ +perhaps +slave +inz@@ +Witness +gain +enza +ded +written +ikin@@ +ile +sch@@ +yat@@ +chinetso +irire +local +Austr@@ +eration +proved +ials +nezvo@@ +rug@@ +witness +uyewo +heyo +wid@@ +pot@@ +Sam@@ +ikisa +rwomunhu +rule +-time +Catholic +ought +ount +ared +ense +orudzidziso +48 +Go@@ +clud@@ +takes +Roman +serious +4-@@ +Samu@@ +ord +cour@@ +Will +Nemhaka +ective +odza +mumhuri +emor@@ +prepar@@ +crim@@ +angeri +understanding +naizvozvo +husingaperi +muushumiri +church +rwake +hurukuro +vawo +akashata +vid@@ +ched +vanam@@ +foret@@ +hana +angobva +edzera +yeuch@@ +countries +got +Im@@ +accept +Fe@@ +alone +Matt +zvach@@ +Devil +working +South +usina +aba +cons@@ +ol +vadzidz@@ +ji +viri +hop@@ +Mat@@ +feel@@ +meet@@ +bud@@ +sm@@ +fu +isarema +call@@ +ople +der@@ +port +tle +wari +angu@@ +prop@@ +righ@@ +berek@@ +pec@@ +pers@@ +ushumiri +esi +bereki +ererano +yu +lik@@ +du +yika +till +sacrif@@ +vha +relati@@ +som@@ +hoko +veng@@ +long@@ +Scriptur@@ +div@@ +Mag@@ +bet@@ +dzwa +TH@@ +ibv@@ +omana +ungu +eve +ingap@@ +ungam@@ +– +iel +sim@@ +v +cle@@ +ven +wer +organ@@ +fill@@ +tru@@ +ational +itu@@ +muny@@ +ieri +sham@@ +pi@@ +Amer@@ +ur +Zvir@@ +bvunz@@ +courag@@ +individ@@ +kno@@ +one@@ +Ger@@ +urch +fri@@ +usa +Wh@@ +$ +preci@@ +zvi +ikidza +M +bap@@ +ʹ@@ +Krist@@ +sac@@ +ingaperi +bor@@ +differ@@ +faith@@ +perf@@ +servan@@ +wir@@ +jud@@ +pedz@@ +chenjeri +proph@@ +ult +Genes@@ +zar@@ +To@@ +weya +endeka +VaKor@@ +aching +Hap@@ +centur@@ +onom@@ +Cho@@ +nec@@ +prac@@ +spir@@ +your@@ +Uye@@ +akash@@ +uth +ibvunzo +youn@@ +resurrec@@ +tivi +avira +Christi@@ +oor@@ +Zvin@@ +onek@@ +author@@ +ustr@@ +suffer@@ +ul +Kuny@@ +eep +devel@@ +kurumb@@ +enly +kunz@@ +ica +chool +odzera +furikidza +nesses +follow@@ +ith +hist@@ +C +giv@@ +evil +kusv@@ +Phil@@ +ip +ath@@ +ibvunz@@ +eru +iyana +langu@@ +W +circ@@ +Jer@@ +Ik@@ +know@@ +é@@ +ready +self@@ +· +·@@ +hel@@ +cent@@ +kind@@ +haps +oth +atis@@ +The@@ +fai@@ +disc@@ +inde +erer@@ +relig@@ +selves +atsira +Ez@@ +ildren +● +ization +Mos@@ +azhinji +crib@@ +hal@@ +itude +iyoni +outh +ances +princip@@ +omba +B +mater@@ +◆ +zodzwa +import@@ +fel@@ +phys@@ +Gir@@ +Ac@@ +okwazvo +ys@@ +ugh@@ +adh@@ +thor@@ +tiz@@ +kurum@@ +ques@@ +Somu@@ +tro@@ +Do@@ +hure +kurusa +igh +anci@@ +ft +prob@@ +situ@@ +pu@@ +evo +respons@@ +é +Nem@@ +blo@@ +them@@ +Afr@@ +rece@@ +ept +Isa@@ +rif@@ +fam@@ +ention +conduc@@ +Eg@@ +Su@@ +gozi +enzira +uring +ikanwa +heri +sion@@ +bs +mean@@ +diffic@@ +Eur@@ +udzidz@@ +fol@@ +osi +humiri +dzera +dom +zvoizvo +yira +ffic@@ +apost@@ +deter@@ +prophec@@ +Chokwa@@ +lasting +P +wayo +contro@@ +Yo@@ +indi@@ +criptur@@ +some@@ +ially +wic@@ +itsi +uke +Zvis@@ +ousness +evel@@ +prov@@ +J +knowled@@ +him@@ +prophe@@ +Israel@@ +ped@@ +Jeho@@ +priv@@ +yes +husb@@ +Sin@@ +paf@@ +ro +can@@ +ught +main +inted +blic +avo@@ +X@@ +numb@@ +itud@@ +wish +mess@@ +wom@@ +anguva +hara@@ +umende +ʹ +La@@ +whe@@ +iyo@@ +í@@ +hil@@ +Bha@@ +æ@@ +hou@@ +bhabh@@ +tak@@ +indi +siy@@ +spiritu@@ +vera +Acc@@ +port@@ +reco@@ +Jes@@ +disi +need@@ +dy +bvunzo +okwadi +las@@ +ames +Cath@@ +á@@ +olic +sid@@ +inspir@@ +cc@@ +everi +simil@@ +Sat@@ +formation +onaka +wanakomana +relation@@ +Tho@@ +Efeso +led@@ +guva +Bec@@ +Jehova@@ +etso +ü@@ +batan@@ +ather +contin@@ +muta@@ +Josep@@ +aim@@ +okwa@@ +Corin@@ +erc@@ +ffer@@ +Pet@@ +thin@@ +& +oub@@ +Ephes@@ +amberi +syst@@ +sel +E. +chenj@@ +yl@@ +ã@@ +© +etim@@ +orinte +⁠ +isv@@ +bets@@ +lic +Af@@ +zvadzi +fal@@ +Rom@@ +marri@@ +ey +vhid@@ +bef@@ +fut@@ +urama +ó@@ +certain@@ +infl@@ +Dan@@ +kurukuru +ukuro +% +ainst +embers +ren +ö@@ +Z +hinji +ben@@ +ukur@@ +Johan@@ +orosi +irc@@ +Sol@@ +Yor@@ +Soci@@ +X +è@@ +tries +Joh@@ +princ@@ +—@@ +ham +oug@@ +Bab@@ +q +Psal@@ +Ef@@ +ween +▫ +lit@@ +ako@@ +wag@@ +til +bhir@@ +oku +ú@@ +ô@@ +imbo +° +baptiz@@ +dam +hat +Dha@@ +gether +Wit@@ +Dav@@ +ñ@@ +lem +tower +uals +ʼ@@ +yewo +ause +blems +| +orin@@ +urrec@@ +ä@@ +Sor@@ +Eph@@ +ł@@ +Consid@@ +:@@ +ç@@ +zarurwa +q@@ +zvininip@@ +Wat@@ +ā@@ +á +murindi +aizvozvo +❑ +Corinth@@ +Watch@@ +secon@@ +✔ +ḥ@@ +bec@@ +⁠@@ +ording +inip@@ +Á@@ +verbs +VaK@@ +righte@@ +menti@@ +ticle +uter@@ +○ +_@@ +nex@@ +ë@@ +É@@ +◯ +í +ë +ê@@ +> +▶ +ʽ@@ +à +papo +j +Nhar@@ +❏ +ה@@ +■ +Zvap@@ +י@@ +ו@@ +ה +# +oup += +espec@@ +▸ +Creat@@ +® +rote +❖ +aiah +â@@ +Q +Bhaib@@ +č@@ +tio +Dhan@@ +C.@@ +Jerusal@@ +→ +‛ +ī +ð@@ +Chris@@ +greg@@ +ū@@ +↓ +ʼ +⇩ +ï@@ +ś@@ +è +Bhabhir@@ +ø@@ +Mate@@ +Hebre@@ +š@@ +å@@ +ş@@ +ž@@ +ł +← ++ +↑ +Š@@ +ī@@ +◇ +Solom@@ +É +bho +Í@@ +ē@@ +ē +arema +ä +ü +− +ą@@ +rom +ā +_ +Ã@@ +£ +Matthe@@ +ń@@ +ý@@ +Ö@@ +ö +ŏ@@ +ň +̆@@ +Timo@@ +î@@ +ę@@ +― +ý +⇨ +­@@ +ó +ō@@ +hua +ã +̩@@ +Ś@@ +mudzim@@ +û@@ +š +Ó@@ +Ž@@ +ú +Ü@@ +­ +ō +œ@@ +ε@@ +\ +Ḥ@@ +Ż@@ +ß@@ +ş +ě@@ +ι@@ +õ@@ +΄ +Revel@@ +Ú@@ +▾ +ẹ@@ +ū +ṣ@@ +È@@ +ć +ż@@ +σ@@ +⁄ +Ł@@ +Æ@@ +ׁ +ש@@ +ς +Ṭ@@ +ν@@ +פ@@ +נ@@ +Jerus@@ +æ +γ@@ +☞ +ß +κ@@ +ν +ἰ@@ +¡ +Ô@@ +à@@ +Ä@@ +Ō@@ +Ş@@ +◗ +Á +Α@@ +Å@@ +€ +ireyo@@ +Isra@@ +Nharireyo@@ +™ +ʺ +ř@@ +Ñ@@ +ő@@ +ʽ +ı@@ +י +ύ@@ +ο@@ +Å +ְ@@ +ֹ +א +ṭ@@ +å +Jako@@ +Â@@ +̗@@ +ò@@ +ẹ +Î@@ +ă@@ +ù +÷ +μ@@ +Ō +ώ@@ +@ +ω +₦ +π@@ +➊ +‐ +Sorom@@ +Hebh@@ +Dhavhid@@ +;@@ +◀ +¢ +È +ê +¿ +ḍ@@ +Ë@@ +υ +ό@@ +ᾶ@@ +ę +Ç@@ +ć@@ +ï +ǒ +À +Ò +ů@@ +đ@@ +ś +Í +Ω +Ρ@@ +Υ@@ +Ε@@ +ì +ọ +Ọ@@ +< +נ +ט +ש +Ä +ç +ă +ρ@@ +ĕ@@ +ֹ@@ +ָ@@ +ź +ė@@ +â +̧@@ +ì@@ +ţ@@ +λ@@ +δ@@ +ά@@ +ò +α@@ +τ@@ +ל@@ +Ẹ@@ +ẓ@@ +̇@@ +Κ@@ +ŭ@@ +û +ק@@ +ד +ń +Ø@@ +Ā@@ +̀@@ +”@@ +☒ +ḥ +▲ +× +ι +α +❍ +› +‐@@ +̆ +⁄@@ diff --git a/benchmarks/sn-en - Copy/jw300-baseline/validations.txt b/benchmarks/sn-en - Copy/jw300-baseline/validations.txt new file mode 100644 index 0000000..f74ff70 --- /dev/null +++ b/benchmarks/sn-en - Copy/jw300-baseline/validations.txt @@ -0,0 +1,27 @@ +Steps: 1000 Loss: 124557.21094 PPL: 75.35435 bleu: 1.29052 LR: 0.00030000 * +Steps: 2000 Loss: 109178.89062 PPL: 44.19297 bleu: 3.56178 LR: 0.00030000 * +Steps: 3000 Loss: 98195.44531 PPL: 30.18769 bleu: 8.23560 LR: 0.00030000 * +Steps: 4000 Loss: 90816.25781 PPL: 23.36812 bleu: 10.16057 LR: 0.00030000 * +Steps: 5000 Loss: 85376.87500 PPL: 19.34866 bleu: 12.27505 LR: 0.00030000 * +Steps: 6000 Loss: 81222.75781 PPL: 16.75126 bleu: 13.51794 LR: 0.00030000 * +Steps: 7000 Loss: 77519.04688 PPL: 14.73097 bleu: 16.05029 LR: 0.00030000 * +Steps: 8000 Loss: 74685.28906 PPL: 13.35137 bleu: 17.13591 LR: 0.00030000 * +Steps: 9000 Loss: 72094.25781 PPL: 12.20333 bleu: 18.98226 LR: 0.00030000 * +Steps: 10000 Loss: 70140.50000 PPL: 11.40341 bleu: 20.38207 LR: 0.00030000 * +Steps: 11000 Loss: 68007.14062 PPL: 10.58972 bleu: 21.25755 LR: 0.00030000 * +Steps: 12000 Loss: 66288.57031 PPL: 9.97667 bleu: 22.91710 LR: 0.00030000 * +Steps: 13000 Loss: 64858.72266 PPL: 9.49374 bleu: 23.56431 LR: 0.00030000 * +Steps: 14000 Loss: 63373.39062 PPL: 9.01681 bleu: 24.37476 LR: 0.00030000 * +Steps: 15000 Loss: 62393.19531 PPL: 8.71527 bleu: 24.98249 LR: 0.00030000 * +Steps: 16000 Loss: 61200.83594 PPL: 8.36203 bleu: 25.47115 LR: 0.00030000 * +Steps: 17000 Loss: 60173.83594 PPL: 8.06928 bleu: 26.07269 LR: 0.00030000 * +Steps: 18000 Loss: 59267.05859 PPL: 7.81933 bleu: 26.64978 LR: 0.00030000 * +Steps: 19000 Loss: 58393.38672 PPL: 7.58583 bleu: 26.54915 LR: 0.00030000 * +Steps: 20000 Loss: 57597.96094 PPL: 7.37931 bleu: 27.60620 LR: 0.00030000 * +Steps: 21000 Loss: 56684.15625 PPL: 7.14899 bleu: 27.62866 LR: 0.00030000 * +Steps: 22000 Loss: 56058.71094 PPL: 6.99550 bleu: 28.40451 LR: 0.00030000 * +Steps: 23000 Loss: 55747.76953 PPL: 6.92043 bleu: 28.74283 LR: 0.00030000 * +Steps: 24000 Loss: 54921.59766 PPL: 6.72484 bleu: 28.86502 LR: 0.00030000 * +Steps: 25000 Loss: 54217.17578 PPL: 6.56246 bleu: 29.50662 LR: 0.00030000 * +Steps: 26000 Loss: 53581.72656 PPL: 6.41933 bleu: 29.94442 LR: 0.00030000 * +Steps: 27000 Loss: 53129.02734 PPL: 6.31928 bleu: 30.31836 LR: 0.00030000 *