diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml
index d929ab44..1fe2e0d1 100644
--- a/.github/workflows/pypi.yml
+++ b/.github/workflows/pypi.yml
@@ -18,9 +18,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- run: python -m pip install --upgrade pip setuptools wheel
+ run: python -m pip install --upgrade pip setuptools wheel build
- name: Create the source distribution
- run: python setup.py sdist
+ run: python -m build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7ac7d541..91d66992 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -23,7 +23,7 @@ jobs:
python -m pip install --upgrade pip wheel setuptools
pip install opencv-python
pip install -r requirements-dev.txt
- pip install .
+ pip install .[ai]
pip list
- name: Test with pytest
run: pytest
diff --git a/Dockerfile b/Dockerfile
index f7f30364..0fe3c2b4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -63,10 +63,19 @@ RUN wget https://github.com/gramps-project/addons/archive/refs/heads/master.zip
RUN python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
gunicorn
+# install PyTorch - CPU only
+RUN python3 -m pip install --break-system-packages --no-cache-dir --index-url https://download.pytorch.org/whl/cpu \
+ torch
+
# copy package source and install
COPY . /app/src
RUN python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
- /app/src
+ /app/src[ai]
+
+# download and cache sentence transformer model
+RUN python3 -c "\
+from sentence_transformers import SentenceTransformer; \
+model = SentenceTransformer('sentence-transformers/distiluse-base-multilingual-cased-v2')"
EXPOSE 5000
diff --git a/alembic_users/versions/a8e57fe0d82e_add_columns_for_ai_quota.py b/alembic_users/versions/a8e57fe0d82e_add_columns_for_ai_quota.py
new file mode 100644
index 00000000..f2b921eb
--- /dev/null
+++ b/alembic_users/versions/a8e57fe0d82e_add_columns_for_ai_quota.py
@@ -0,0 +1,40 @@
+"""Add coloumns for AI quota
+
+Revision ID: a8e57fe0d82e
+Revises: 84960b7d968c
+Create Date: 2024-09-03 18:48:00.917543
+
+"""
+
+from alembic import op
+import sqlalchemy as sa
+from sqlalchemy.engine.reflection import Inspector
+
+
+# revision identifiers, used by Alembic.
+revision = "a8e57fe0d82e"
+down_revision = "84960b7d968c"
+branch_labels = None
+depends_on = None
+
+
+def upgrade():
+ # ### commands auto generated by Alembic - please adjust! ###
+ conn = op.get_bind()
+ inspector = Inspector.from_engine(conn)
+ columns = [col["name"] for col in inspector.get_columns("trees")]
+ if "quota_ai" not in columns:
+ op.add_column("trees", sa.Column("quota_ai", sa.Integer(), nullable=True))
+ if "usage_ai" not in columns:
+ op.add_column("trees", sa.Column("usage_ai", sa.Integer(), nullable=True))
+ if "min_role_ai" not in columns:
+ op.add_column("trees", sa.Column("min_role_ai", sa.Integer(), nullable=True))
+ # ### end Alembic commands ###
+
+
+def downgrade():
+ # ### commands auto generated by Alembic - please adjust! ###
+ op.drop_column("trees", "usage_ai")
+ op.drop_column("trees", "quota_ai")
+ op.drop_column("trees", "min_role_ai")
+ # ### end Alembic commands ###
diff --git a/gramps_webapi/__main__.py b/gramps_webapi/__main__.py
index 2879b845..b4cba0b2 100644
--- a/gramps_webapi/__main__.py
+++ b/gramps_webapi/__main__.py
@@ -19,10 +19,13 @@
"""Command line interface for the Gramps web API."""
+from __future__ import annotations
+
import logging
import os
import subprocess
import sys
+import time
import warnings
import click
@@ -120,8 +123,13 @@ def migrate_db(ctx):
@cli.group("search", help="Manage the full-text search index.")
@click.option("--tree", help="Tree ID", default=None)
+@click.option(
+ "--semantic/--fulltext",
+ help="Semantic rather than full-text search index",
+ default=False,
+)
@click.pass_context
-def search(ctx, tree):
+def search(ctx, tree, semantic):
app = ctx.obj["app"]
if not tree:
if app.config["TREE"] == TREE_MULTI:
@@ -135,14 +143,16 @@ def search(ctx, tree):
tree = dbmgr.dirname
with app.app_context():
ctx.obj["db_manager"] = get_db_manager(tree=tree)
- ctx.obj["search_indexer"] = get_search_indexer(tree=tree)
+ ctx.obj["search_indexer"] = get_search_indexer(tree=tree, semantic=semantic)
-def progress_callback_count(current: int, total: int) -> None:
+def progress_callback_count(current: int, total: int, prev: int | None = None) -> None:
if total == 0:
return
pct = int(100 * current / total)
- pct_prev = int(100 * (current - 1) / total)
+ if prev is None:
+ prev = current - 1
+ pct_prev = int(100 * prev / total)
if current == 0 or pct != pct_prev:
LOG.info(f"Progress: {pct}%")
@@ -156,13 +166,14 @@ def index_full(ctx):
indexer = ctx.obj["search_indexer"]
db = db_manager.get_db().db
+ t0 = time.time()
try:
indexer.reindex_full(db, progress_cb=progress_callback_count)
except:
LOG.exception("Error during indexing")
finally:
db.close()
- LOG.info("Done building search index.")
+ LOG.info(f"Done building search index in {time.time() - t0:.0f} seconds.")
@search.command("index-incremental")
diff --git a/gramps_webapi/_version.py b/gramps_webapi/_version.py
index b5cbbded..27d10005 100644
--- a/gramps_webapi/_version.py
+++ b/gramps_webapi/_version.py
@@ -17,4 +17,5 @@
# along with this program. If not, see .
#
-__version__ = "2.4.2"
+# make sure to match this version with the one in apispec.yaml
+__version__ = "2.5.0"
diff --git a/gramps_webapi/api/__init__.py b/gramps_webapi/api/__init__.py
index 9c36a4c9..f1349b59 100644
--- a/gramps_webapi/api/__init__.py
+++ b/gramps_webapi/api/__init__.py
@@ -34,6 +34,7 @@
BookmarkResource,
BookmarksResource,
)
+from .resources.chat import ChatResource
from .resources.citations import CitationResource, CitationsResource
from .resources.config import ConfigResource, ConfigsResource
from .resources.dna import PersonDnaMatchesResource
@@ -330,6 +331,9 @@ def register_endpt(resource: Type[Resource], url: str, name: str):
register_endpt(SearchResource, "/search/", "search")
register_endpt(SearchIndexResource, "/search/index/", "search_index")
+# Chat
+register_endpt(ChatResource, "/chat/", "chat")
+
# Config
register_endpt(
ConfigsResource,
diff --git a/gramps_webapi/api/llm/__init__.py b/gramps_webapi/api/llm/__init__.py
new file mode 100644
index 00000000..7fd59760
--- /dev/null
+++ b/gramps_webapi/api/llm/__init__.py
@@ -0,0 +1,160 @@
+"""Functions for working with large language models (LLMs)."""
+
+from __future__ import annotations
+
+from flask import current_app
+from openai import OpenAI, RateLimitError, APIError
+
+from ..search import get_search_indexer
+from ..util import abort_with_message, get_logger
+
+
+def get_client(config: dict) -> OpenAI:
+ """Get an OpenAI client instance."""
+ if not config.get("LLM_MODEL"):
+ raise ValueError("No LLM specified")
+ return OpenAI(base_url=config.get("LLM_BASE_URL"))
+
+
+def answer_prompt(prompt: str, system_prompt: str, config: dict | None = None) -> str:
+ """Answer a question given a system prompt."""
+ if not config:
+ if current_app:
+ config = current_app.config
+ else:
+ raise ValueError("Outside of the app context, config needs to be provided")
+
+ messages = []
+
+ if system_prompt:
+ messages.append(
+ {
+ "role": "system",
+ "content": str(system_prompt),
+ }
+ )
+
+ messages.append(
+ {
+ "role": "user",
+ "content": str(prompt),
+ }
+ )
+
+ client = get_client(config=config)
+ model = config.get("LLM_MODEL")
+
+ try:
+ response = client.chat.completions.create(
+ messages=messages,
+ model=model,
+ )
+ except RateLimitError:
+ abort_with_message(500, "Chat API rate limit exceeded.")
+ except APIError:
+ abort_with_message(500, "Chat API error encountered.")
+ except Exception:
+ abort_with_message(500, "Unexpected error.")
+
+ try:
+ answer = response.to_dict()["choices"][0]["message"]["content"]
+ except (KeyError, IndexError):
+ abort_with_message(500, "Error parsing chat API response.")
+
+ return answer
+
+
+def answer_prompt_with_context(prompt: str, context: str) -> str:
+
+ system_prompt = (
+ "You are an assistant for answering questions about a user's family history. "
+ "Use the following pieces of context retrieved from a genealogical database "
+ "to answer the question. "
+ "If you don't know the answer, just say that you don't know. "
+ "Use three sentences maximum and keep the answer concise."
+ "In your answer, preserve relative Markdown links."
+ )
+
+ system_prompt = f"""{system_prompt}\n\n{context}"""
+ return answer_prompt(prompt=prompt, system_prompt=system_prompt)
+
+
+def contextualize_prompt(prompt: str, context: str) -> str:
+
+ system_prompt = (
+ "Given a chat history and the latest user question "
+ "which might reference context in the chat history, "
+ "formulate a standalone question which can be understood "
+ "without the chat history. Do NOT answer the question, "
+ "just reformulate it if needed and otherwise return it as is."
+ )
+
+ system_prompt = f"""{system_prompt}\n\n{context}"""
+
+ return answer_prompt(prompt=prompt, system_prompt=system_prompt)
+
+
+def retrieve(tree: str, prompt: str, include_private: bool, num_results: int = 10):
+ searcher = get_search_indexer(tree, semantic=True)
+ total, hits = searcher.search(
+ query=prompt,
+ page=1,
+ pagesize=num_results,
+ include_private=include_private,
+ include_content=True,
+ )
+ return [hit["content"] for hit in hits]
+
+
+def answer_prompt_retrieve(
+ prompt: str,
+ tree: str,
+ include_private: bool,
+ history: list | None = None,
+) -> str:
+ logger = get_logger()
+
+ if not history:
+ # no chat history present - we directly retrieve the context
+
+ search_results = retrieve(
+ prompt=prompt, tree=tree, include_private=include_private, num_results=20
+ )
+ if not search_results:
+ abort_with_message("Unexpected problem while retrieving context")
+
+ context = ""
+ max_length = current_app.config["LLM_MAX_CONTEXT_LENGTH"]
+ for search_result in search_results:
+ if len(context) + len(search_result) > max_length:
+ break
+ context += search_result + "\n\n"
+ context = context.strip()
+
+ logger.debug("Answering prompt '%s' with context '%s'", prompt, context)
+ logger.debug("Context length: %s characters", len(context))
+ return answer_prompt_with_context(prompt=prompt, context=context)
+
+ # chat history is present - we first need to call the LLM to merge the history
+ # and the prompt into a new, standalone prompt.
+
+ context = ""
+ for message in history:
+ if "role" not in message or "message" not in message:
+ raise ValueError(f"Invalid message format: {message}")
+ if message["role"].lower() in ["ai", "system", "assistant"]:
+ context += f"*Assistant message:* {message['message']}\n\n"
+ elif message["role"].lower() == "error":
+ pass
+ else:
+ context += f"*Human message:* {message['message']}\n\n"
+ context = context.strip()
+
+ logger.debug("Contextualizing prompt '%s' with context '%s'", prompt, context)
+ new_prompt = contextualize_prompt(prompt=prompt, context=context)
+ logger.debug("New prompt: '%s'", new_prompt)
+
+ # we can now feed the standalone prompt into the same function but without history.
+ return answer_prompt_retrieve(
+ prompt=new_prompt, tree=tree, include_private=include_private
+ )
diff --git a/gramps_webapi/api/resources/base.py b/gramps_webapi/api/resources/base.py
index 9a91a3c4..5aae05cb 100644
--- a/gramps_webapi/api/resources/base.py
+++ b/gramps_webapi/api/resources/base.py
@@ -56,6 +56,7 @@
from .util import (
abort_with_message,
add_object,
+ app_has_semantic_search,
filter_missing_files,
fix_object_dict,
get_backlinks,
@@ -294,6 +295,12 @@ def put(self, handle: str) -> Response:
handle = _trans_dict["handle"]
class_name = _trans_dict["_class"]
indexer.add_or_update_object(handle, db_handle, class_name)
+ if app_has_semantic_search():
+ indexer: SearchIndexer = get_search_indexer(tree, semantic=True)
+ for _trans_dict in trans_dict:
+ handle = _trans_dict["handle"]
+ class_name = _trans_dict["_class"]
+ indexer.add_or_update_object(handle, db_handle, class_name)
return self.response(200, trans_dict, total_items=len(trans_dict))
@@ -471,6 +478,12 @@ def post(self) -> Response:
handle = _trans_dict["handle"]
class_name = _trans_dict["_class"]
indexer.add_or_update_object(handle, db_handle, class_name)
+ if app_has_semantic_search():
+ indexer: SearchIndexer = get_search_indexer(tree, semantic=True)
+ for _trans_dict in trans_dict:
+ handle = _trans_dict["handle"]
+ class_name = _trans_dict["_class"]
+ indexer.add_or_update_object(handle, db_handle, class_name)
return self.response(201, trans_dict, total_items=len(trans_dict))
diff --git a/gramps_webapi/api/resources/chat.py b/gramps_webapi/api/resources/chat.py
new file mode 100644
index 00000000..6e8a3ac7
--- /dev/null
+++ b/gramps_webapi/api/resources/chat.py
@@ -0,0 +1,68 @@
+#
+# Gramps Web API - A RESTful API for the Gramps genealogy program
+#
+# Copyright (C) 2024 David Straub
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+
+"""AI chat endpoint."""
+
+from marshmallow import Schema
+from webargs import fields
+
+from ..llm import answer_prompt_retrieve
+from ..util import (
+ get_tree_from_jwt,
+ use_args,
+ abort_with_message,
+ check_quota_ai,
+ update_usage_ai,
+)
+from . import ProtectedResource
+from ...auth.const import PERM_USE_CHAT, PERM_VIEW_PRIVATE
+from ..auth import has_permissions, require_permissions
+
+
+class ChatMessageSchema(Schema):
+ role = fields.Str(required=True)
+ message = fields.Str(required=True)
+
+
+class ChatResource(ProtectedResource):
+ """AI chat resource."""
+
+ @use_args(
+ {
+ "query": fields.Str(required=True),
+ "history": fields.List(fields.Nested(ChatMessageSchema), required=False),
+ },
+ location="json",
+ )
+ def post(self, args):
+ """Create a chat response."""
+ require_permissions({PERM_USE_CHAT})
+ check_quota_ai(requested=1)
+ tree = get_tree_from_jwt()
+ try:
+ response = answer_prompt_retrieve(
+ prompt=args["query"],
+ tree=tree,
+ include_private=has_permissions({PERM_VIEW_PRIVATE}),
+ history=args.get("history"),
+ )
+ except ValueError:
+ abort_with_message(422, "Invalid message format")
+ update_usage_ai(new=1)
+ return {"response": response}
diff --git a/gramps_webapi/api/resources/metadata.py b/gramps_webapi/api/resources/metadata.py
index 5dd3ffcc..9ef7875d 100644
--- a/gramps_webapi/api/resources/metadata.py
+++ b/gramps_webapi/api/resources/metadata.py
@@ -76,6 +76,8 @@ def get(self, args) -> Response:
is_multi_tree = current_app.config["TREE"] == TREE_MULTI
has_task_queue = bool(current_app.config["CELERY_CONFIG"])
+ has_semantic_search = bool(current_app.config["VECTOR_EMBEDDING_MODEL"])
+ has_chat = has_semantic_search and bool(current_app.config["LLM_MODEL"])
try:
pytesseract.get_tesseract_version()
@@ -91,6 +93,16 @@ def get(self, args) -> Response:
search_count = searcher.count(
include_private=has_permissions({PERM_VIEW_PRIVATE})
)
+ sifts_info = {
+ "version": sifts.__version__,
+ "count": search_count,
+ }
+ if current_app.config.get("VECTOR_EMBEDDING_MODEL"):
+ searcher_s = get_search_indexer(tree, semantic=True)
+ search_count_s = searcher_s.count(
+ include_private=has_permissions({PERM_VIEW_PRIVATE})
+ )
+ sifts_info["count_semantic"] = search_count_s
result = {
"database": {
@@ -128,12 +140,16 @@ def get(self, args) -> Response:
"tags": db_handle.get_number_of_tags(),
},
"researcher": db_handle.get_researcher(),
- "search": {"sifts": {"version": sifts.__version__, "count": search_count}},
+ "search": {
+ "sifts": sifts_info,
+ },
"server": {
"multi_tree": is_multi_tree,
"task_queue": has_task_queue,
"ocr": has_ocr,
"ocr_languages": ocr_languages,
+ "semantic_search": has_semantic_search,
+ "chat": has_chat,
},
}
if args["surnames"]:
diff --git a/gramps_webapi/api/resources/objects.py b/gramps_webapi/api/resources/objects.py
index bad4b97c..80deb28b 100644
--- a/gramps_webapi/api/resources/objects.py
+++ b/gramps_webapi/api/resources/objects.py
@@ -44,7 +44,13 @@
use_args,
)
from . import FreshProtectedResource, ProtectedResource
-from .util import add_object, fix_object_dict, transaction_to_json, validate_object_dict
+from .util import (
+ add_object,
+ app_has_semantic_search,
+ fix_object_dict,
+ transaction_to_json,
+ validate_object_dict,
+)
class CreateObjectsResource(ProtectedResource):
@@ -96,6 +102,12 @@ def post(self) -> Response:
handle = _trans_dict["handle"]
class_name = _trans_dict["_class"]
indexer.add_or_update_object(handle, db_handle, class_name)
+ if app_has_semantic_search():
+ indexer: SearchIndexer = get_search_indexer(tree, semantic=True)
+ for _trans_dict in trans_dict:
+ handle = _trans_dict["handle"]
+ class_name = _trans_dict["_class"]
+ indexer.add_or_update_object(handle, db_handle, class_name)
res = Response(
response=json.dumps(trans_dict),
status=201,
diff --git a/gramps_webapi/api/resources/search.py b/gramps_webapi/api/resources/search.py
index adfba50d..0021eaaf 100644
--- a/gramps_webapi/api/resources/search.py
+++ b/gramps_webapi/api/resources/search.py
@@ -108,6 +108,7 @@ def get_object_from_handle(
load_default=None, validate=validate.Length(min=1, max=5)
),
"query": fields.Str(required=True, validate=validate.Length(min=1)),
+ "semantic": fields.Boolean(load_default=False),
"page": fields.Int(load_default=1, validate=validate.Range(min=1)),
"pagesize": fields.Int(load_default=20, validate=validate.Range(min=1)),
"sort": fields.DelimitedList(fields.Str(validate=validate.Length(min=1))),
@@ -131,7 +132,14 @@ def get_object_from_handle(
def get(self, args: Dict):
"""Get search result."""
tree = get_tree_from_jwt()
- searcher = get_search_indexer(tree)
+ try:
+ searcher = get_search_indexer(tree, semantic=args["semantic"])
+ except ValueError:
+ abort_with_message(500, "Failed initializing semantic search")
+ if args["semantic"] and args.get("sort"):
+ abort_with_message(
+ 422, "the sort parameter is not allowed with semantic search"
+ )
if args.get("change"):
match = re.match(r"^(<=|>=|<|>)(\d+(\.\d+)?)$", args["change"])
if match:
@@ -177,6 +185,7 @@ class SearchIndexResource(ProtectedResource):
@use_args(
{
"full": fields.Boolean(load_default=False),
+ "semantic": fields.Boolean(load_default=False),
},
location="query",
)
@@ -189,7 +198,9 @@ def post(self, args: Dict):
task_func = search_reindex_full
else:
task_func = search_reindex_incremental
- task = run_task(task_func, tree=tree, user_id=user_id)
+ task = run_task(
+ task_func, tree=tree, user_id=user_id, semantic=args["semantic"]
+ )
if isinstance(task, AsyncResult):
return make_task_response(task)
return Response(status=201)
diff --git a/gramps_webapi/api/resources/token.py b/gramps_webapi/api/resources/token.py
index e7495f03..9897667a 100644
--- a/gramps_webapi/api/resources/token.py
+++ b/gramps_webapi/api/resources/token.py
@@ -88,7 +88,7 @@ def post(self, args):
tree_id = get_tree_id(user_id)
if is_tree_disabled(tree=tree_id):
abort_with_message(503, "This tree is temporarily disabled")
- permissions = get_permissions(args["username"])
+ permissions = get_permissions(username=args["username"], tree=tree_id)
return get_tokens(
user_id=user_id,
permissions=permissions,
@@ -112,7 +112,7 @@ def post(self):
tree_id = get_tree_id(user_id)
if is_tree_disabled(tree=tree_id):
abort_with_message(503, "This tree is temporarily disabled")
- permissions = get_permissions(username)
+ permissions = get_permissions(username=username, tree=tree_id)
return get_tokens(
user_id=user_id,
permissions=permissions,
diff --git a/gramps_webapi/api/resources/transactions.py b/gramps_webapi/api/resources/transactions.py
index 67219d56..bb33a177 100644
--- a/gramps_webapi/api/resources/transactions.py
+++ b/gramps_webapi/api/resources/transactions.py
@@ -43,7 +43,7 @@
use_args,
)
from . import ProtectedResource
-from .util import reverse_transaction, transaction_to_json
+from .util import app_has_semantic_search, reverse_transaction, transaction_to_json
trans_code = {"delete": TXNDEL, "add": TXNADD, "update": TXNUPD}
@@ -124,6 +124,15 @@ def post(self, args) -> Response:
indexer.delete_object(handle, class_name)
else:
indexer.add_or_update_object(handle, db_handle, class_name)
+ if app_has_semantic_search():
+ indexer: SearchIndexer = get_search_indexer(tree, semantic=True)
+ for _trans_dict in trans_dict:
+ handle = _trans_dict["handle"]
+ class_name = _trans_dict["_class"]
+ if _trans_dict["type"] == "delete":
+ indexer.delete_object(handle, class_name)
+ else:
+ indexer.add_or_update_object(handle, db_handle, class_name)
res = Response(
response=json.dumps(trans_dict),
status=200,
diff --git a/gramps_webapi/api/resources/trees.py b/gramps_webapi/api/resources/trees.py
index fd0ab1d5..5bbc2a23 100644
--- a/gramps_webapi/api/resources/trees.py
+++ b/gramps_webapi/api/resources/trees.py
@@ -32,15 +32,17 @@
from ...auth import (
disable_enable_tree,
+ get_tree_permissions,
get_tree_usage,
is_tree_disabled,
- set_tree_quota,
+ set_tree_details,
)
from ...auth.const import (
PERM_ADD_TREE,
PERM_DISABLE_TREE,
PERM_EDIT_OTHER_TREE,
PERM_EDIT_TREE,
+ PERM_EDIT_TREE_MIN_ROLE_AI,
PERM_EDIT_TREE_QUOTA,
PERM_REPAIR_TREE,
PERM_UPGRADE_TREE_SCHEMA,
@@ -75,7 +77,8 @@ def get_tree_details(tree_id: str) -> Dict[str, str]:
abort(404)
usage = get_tree_usage(tree_id) or {}
enabled = not is_tree_disabled(tree=tree_id)
- return {"name": dbmgr.name, "id": tree_id, **usage, "enabled": enabled}
+ perms = get_tree_permissions(tree_id) or {}
+ return {"name": dbmgr.name, "id": tree_id, **usage, "enabled": enabled, **perms}
def get_tree_path(tree_id: str) -> Optional[str]:
@@ -120,6 +123,7 @@ def get(self):
"name": fields.Str(required=True),
"quota_media": fields.Integer(required=False),
"quota_people": fields.Integer(required=False),
+ "min_role_ai": fields.Integer(required=False),
},
location="json",
)
@@ -138,10 +142,11 @@ def post(self, args):
ignore_lock=current_app.config["IGNORE_DB_LOCK"],
)
if args.get("quota_media") or args.get("quota_people"):
- set_tree_quota(
+ set_tree_details(
tree=tree_id,
quota_media=args.get("quota_media"),
quota_people=args.get("quota_people"),
+ min_role_ai=args.get("min_role_ai"),
)
return get_tree_details(tree_id), 201
@@ -168,6 +173,7 @@ def get(self, tree_id: str):
"name": fields.Str(required=False, load_default=None),
"quota_media": fields.Integer(required=False),
"quota_people": fields.Integer(required=False),
+ "min_role_ai": fields.Integer(required=False),
},
location="json",
)
@@ -198,7 +204,7 @@ def put(self, args, tree_id: str):
rv.update({"old_name": old_name, "new_name": new_name})
if args.get("quota_media") is not None or args.get("quota_people") is not None:
require_permissions([PERM_EDIT_TREE_QUOTA])
- set_tree_quota(
+ set_tree_details(
tree=tree_id,
quota_media=args.get("quota_media"),
quota_people=args.get("quota_people"),
@@ -206,6 +212,13 @@ def put(self, args, tree_id: str):
for quota in ["quota_media", "quota_people"]:
if args.get(quota) is not None:
rv.update({quota: args[quota]})
+ if args.get("min_role_ai") is not None:
+ require_permissions([PERM_EDIT_TREE_MIN_ROLE_AI])
+ set_tree_details(
+ tree=tree_id,
+ min_role_ai=args.get("min_role_ai"),
+ )
+ rv.update({"min_role_ai": args["min_role_ai"]})
return rv
diff --git a/gramps_webapi/api/resources/util.py b/gramps_webapi/api/resources/util.py
index 3b523571..06db2d47 100644
--- a/gramps_webapi/api/resources/util.py
+++ b/gramps_webapi/api/resources/util.py
@@ -1255,3 +1255,8 @@ def dry_run_import(
"notes": db_handle.get_number_of_notes(),
"tags": db_handle.get_number_of_tags(),
}
+
+
+def app_has_semantic_search() -> bool:
+ """Indicate whether the app supports semantic search."""
+ return bool(current_app.config.get("VECTOR_EMBEDDING_MODEL"))
diff --git a/gramps_webapi/api/search/__init__.py b/gramps_webapi/api/search/__init__.py
index 43fe9116..cc4690e8 100644
--- a/gramps_webapi/api/search/__init__.py
+++ b/gramps_webapi/api/search/__init__.py
@@ -25,11 +25,20 @@
from flask import current_app
-from .indexer import SearchIndexer
+from .indexer import SearchIndexer, SemanticSearchIndexer, SearchIndexerBase
+from .embeddings import embedding_function_factory
+_KEY_INDEXER = "_SEARCH_INDEXER"
+_KEY_INDEXER_SEMANTIC = "_SEARCH_INDEXER_SEMANTIC"
-def get_search_indexer(tree: str) -> SearchIndexer:
+
+def get_search_indexer(tree: str, semantic: bool = False) -> SearchIndexerBase:
"""Get the search indexer for the tree."""
+ # return cached instances if possible
+ if not semantic and (indexer := current_app.config.get(_KEY_INDEXER)):
+ return indexer
+ if semantic and (indexer := current_app.config.get(_KEY_INDEXER_SEMANTIC)):
+ return indexer
db_url = current_app.config["SEARCH_INDEX_DB_URI"] or None
if not db_url and current_app.config["SEARCH_INDEX_DIR"]:
# backwards compatibility...
@@ -47,5 +56,19 @@ def get_search_indexer(tree: str) -> SearchIndexer:
path = Path(path[1:])
if not path.exists() and not path.parent.exists():
path.parent.mkdir(parents=True, exist_ok=True)
-
- return SearchIndexer(db_url=db_url, tree=tree)
+ if semantic:
+ model = current_app.config.get("VECTOR_EMBEDDING_MODEL")
+ if not model:
+ raise ValueError("VECTOR_EMBEDDING_MODEL option not set")
+ try:
+ embedding_function = embedding_function_factory(model)
+ except OSError:
+ raise ValueError(f"Failed initializing model {model}")
+ # cache on app instance
+ current_app.config[_KEY_INDEXER_SEMANTIC] = SemanticSearchIndexer(
+ db_url=db_url, tree=tree, embedding_function=embedding_function
+ )
+ return current_app.config[_KEY_INDEXER_SEMANTIC]
+ # cache on app instance
+ current_app.config[_KEY_INDEXER] = SearchIndexer(db_url=db_url, tree=tree)
+ return current_app.config[_KEY_INDEXER]
diff --git a/gramps_webapi/api/search/embeddings.py b/gramps_webapi/api/search/embeddings.py
new file mode 100644
index 00000000..89587072
--- /dev/null
+++ b/gramps_webapi/api/search/embeddings.py
@@ -0,0 +1,29 @@
+"""Functions to compute vector embeddings."""
+
+from __future__ import annotations
+
+from ..util import get_logger
+
+
+def embedding_function_factory(model_name: str):
+ model = load_model(model_name)
+
+ def embedding_function(queries: list[str]):
+ return model.encode(queries)
+
+ return embedding_function
+
+
+def load_model(model_name: str):
+ """Load the sentence transformer model.
+
+ Since the model takes time to load and is subsequently cached,
+ this can also be used for preloading the model in the flask app.
+ """
+ logger = get_logger()
+ logger.debug("Initializing embedding model.")
+ from sentence_transformers import SentenceTransformer
+
+ model = SentenceTransformer(model_name)
+ logger.debug("Done initializing embedding model.")
+ return model
diff --git a/gramps_webapi/api/search/indexer.py b/gramps_webapi/api/search/indexer.py
index 67595738..e9fe132c 100644
--- a/gramps_webapi/api/search/indexer.py
+++ b/gramps_webapi/api/search/indexer.py
@@ -19,49 +19,71 @@
"""Full-text search indexer."""
+from __future__ import annotations
+
from typing import Any, Callable, Dict, List, Optional, Set
import sifts
-from flask import current_app
from gramps.gen.db.base import DbReadBase
from .text import iter_obj_strings, obj_strings_from_handle
from ..util import get_total_number_of_objects, get_object_timestamps
-class SearchIndexer:
- """Full-text search indexer."""
+class SearchIndexerBase:
+ """Search indexer base class."""
- def __init__(self, tree: str, db_url: Optional[str] = None):
- """Initialize given an index dir path."""
+ SUFFIX = ""
+ SUFFIX_PUBLIC = "__p"
+
+ def __init__(
+ self,
+ tree: str,
+ db_url: Optional[str] = None,
+ embedding_function: Callable | None = None,
+ use_fts: bool = True,
+ use_semantic_text: bool = False,
+ ):
+ """Initialize the indexer."""
if not tree:
raise ValueError("`tree` is required for the search index")
- if tree.endswith("__p"):
- # we can't allow tree IDs ending in __p since it would
- # interfere with our private-aware index
+ if tree.endswith("__p") or tree.endswith("__s"):
+ # we can't allow tree IDs ending in __p or __s since it would
+ # interfere with our default collection names
raise ValueError("Invalid tree ID")
self.tree = tree
+ self.use_semantic_text = use_semantic_text
# index for all objects
- self.engine = sifts.Collection(db_url=db_url, name=tree)
+ self.index = sifts.Collection(
+ db_url=db_url or "",
+ name=f"{tree}{self.SUFFIX}",
+ embedding_function=embedding_function,
+ use_fts=use_fts,
+ )
# index for view with only non-private objects
- self.engine_public = sifts.Collection(db_url=db_url, name=f"{tree}__p")
+ self.index_public = sifts.Collection(
+ db_url=db_url or "",
+ name=f"{tree}{self.SUFFIX_PUBLIC}",
+ embedding_function=embedding_function,
+ use_fts=use_fts,
+ )
def count(self, include_private: bool):
"""Return the number of items in the collection."""
if include_private:
- return self.engine.count()
- return self.engine_public.count()
+ return self.index.count()
+ return self.index_public.count()
def _object_id(self, handle: str, class_name: str) -> str:
"""Return the object ID for class name and handle."""
- return f"{class_name.lower()}_{handle}_{self.tree}"
+ return f"{class_name.lower()}_{handle}_{self.tree}{self.SUFFIX}"
def _object_id_public(self, handle: str, class_name: str) -> str:
"""Return the object ID for class name and handle."""
- return f"{class_name.lower()}_{handle}_{self.tree}__p"
+ return f"{class_name.lower()}_{handle}_{self.tree}{self.SUFFIX_PUBLIC}"
def _get_object_data(self, obj_dict: Dict[str, Any], public_only: bool = False):
- """Add or update an object to the index."""
+ """Get the object data (content, ID, metadata) from an object dictioanry."""
if public_only:
obj_id = self._object_id_public(
handle=obj_dict["handle"], class_name=obj_dict["class_name"]
@@ -77,9 +99,9 @@ def _get_object_data(self, obj_dict: Dict[str, Any], public_only: bool = False):
"change": obj_dict["change"],
}
if public_only:
- contents = obj_dict["string"]
+ contents = obj_dict["string_public"]
else:
- contents = " ".join([obj_dict["string"], obj_dict["string_private"]])
+ contents = obj_dict["string_all"]
return {
"contents": contents,
"id": obj_id,
@@ -94,35 +116,44 @@ def _add_objects(self, obj_dicts: List[Dict[str, Any]]):
contents = [dat["contents"] for dat in data]
ids = [dat["id"] for dat in data]
metadatas = [dat["metadata"] for dat in data]
- self.engine.add(contents=contents, ids=ids, metadatas=metadatas)
+ self.index.add(contents=contents, ids=ids, metadatas=metadatas)
data = [
self._get_object_data(obj_dict, public_only=True) for obj_dict in obj_dicts
]
contents = [dat["contents"] for dat in data]
ids = [dat["id"] for dat in data]
metadatas = [dat["metadata"] for dat in data]
- self.engine_public.add(contents=contents, ids=ids, metadatas=metadatas)
+ self.index_public.add(contents=contents, ids=ids, metadatas=metadatas)
def reindex_full(
self, db_handle: DbReadBase, progress_cb: Optional[Callable] = None
):
"""Reindex the whole database."""
- if progress_cb:
- total = get_total_number_of_objects(db_handle)
+ total = get_total_number_of_objects(db_handle)
+ self.index.delete_all()
+ self.index_public.delete_all()
obj_dicts = []
- for i, obj_dict in enumerate(iter_obj_strings(db_handle)):
+ chunk_size = max(100, total // 10)
+ prev: int | None = None
+ for i, obj_dict in enumerate(
+ iter_obj_strings(db_handle, semantic=self.use_semantic_text)
+ ):
obj_dicts.append(obj_dict)
+ if i % chunk_size == 0 and i != 0:
+ self._add_objects(obj_dicts)
+ obj_dicts = []
if progress_cb:
- progress_cb(current=i, total=total)
- self.engine.delete_all()
- self.engine_public.delete_all()
+ progress_cb(current=i, total=total, prev=prev)
+ prev = i
self._add_objects(obj_dicts)
+ if progress_cb:
+ progress_cb(current=total - 1, total=total)
def _get_object_timestamps(self):
"""Get a dictionary with the timestamps of all objects in the index."""
d = {}
- all_docs = self.engine.get()["results"]
+ all_docs = self.index.get()["results"]
for doc in all_docs:
meta = doc["metadata"]
class_name = meta["type"]
@@ -159,13 +190,15 @@ def _get_update_info(self, db_handle: DbReadBase) -> Dict[str, Dict[str, Set[str
def delete_object(self, handle: str, class_name: str) -> None:
"""Delete an object from the index."""
obj_id = self._object_id(handle=handle, class_name=class_name)
- self.engine.delete([obj_id])
+ self.index.delete([obj_id])
obj_id = self._object_id_public(handle=handle, class_name=class_name)
- self.engine_public.delete([obj_id])
+ self.index_public.delete([obj_id])
def add_or_update_object(self, handle: str, db_handle: DbReadBase, class_name: str):
"""Add an object to the index or update it if it exists."""
- obj_dict = obj_strings_from_handle(db_handle, class_name, handle)
+ obj_dict = obj_strings_from_handle(
+ db_handle, class_name, handle, semantic=self.use_semantic_text
+ )
self._add_objects([obj_dict])
def reindex_incremental(
@@ -192,12 +225,12 @@ def progress(i):
self._object_id(handle=handle, class_name=class_name)
for handle in handles
]
- self.engine.delete(obj_ids)
+ self.index.delete(obj_ids)
obj_ids = [
self._object_id_public(handle=handle, class_name=class_name)
for handle in handles
]
- self.engine_public.delete(obj_ids)
+ self.index_public.delete(obj_ids)
for _ in handles:
i = progress(i)
@@ -205,26 +238,37 @@ def progress(i):
for class_name, handles in update_info["new"].items():
obj_dicts = []
for handle in handles:
- obj_dicts.append(obj_strings_from_handle(db_handle, class_name, handle))
+ obj_dicts.append(
+ obj_strings_from_handle(
+ db_handle, class_name, handle, semantic=self.use_semantic_text
+ )
+ )
i = progress(i)
self._add_objects(obj_dicts)
# update objects
for class_name, handles in update_info["updated"].items():
obj_dicts = []
for handle in handles:
- obj_dicts.append(obj_strings_from_handle(db_handle, class_name, handle))
+ obj_dicts.append(
+ obj_strings_from_handle(
+ db_handle, class_name, handle, semantic=self.use_semantic_text
+ )
+ )
i = progress(i)
self._add_objects(obj_dicts)
@staticmethod
- def _format_hit(hit, rank) -> Dict[str, Any]:
+ def _format_hit(hit, rank, include_content: bool) -> Dict[str, Any]:
"""Format a search hit."""
- return {
+ formatted_hit = {
"handle": hit["metadata"]["handle"],
"object_type": hit["metadata"]["type"],
"score": hit.get("rank"),
"rank": rank,
}
+ if include_content:
+ formatted_hit["content"] = hit["content"]
+ return formatted_hit
def search(
self,
@@ -236,13 +280,14 @@ def search(
object_types: Optional[List[str]] = None,
change_op: Optional[str] = None,
change_value: Optional[float] = None,
+ include_content: bool = False,
):
"""Search the index.
If `include_private` is true, include also private objects and
search in private fields.
"""
- search = self.engine if include_private else self.engine_public
+ search = self.index if include_private else self.index_public
where = {}
if object_types:
where["type"] = {"$in": object_types}
@@ -267,10 +312,47 @@ def search(
offset=offset,
order_by=sort,
where=where,
+ vector_search=self.use_semantic_text,
)
total = results["total"]
hits = [
- self._format_hit(hit, rank=offset + i)
+ self._format_hit(hit, rank=offset + i, include_content=include_content)
for i, hit in enumerate(results["results"])
]
return total, hits
+
+
+class SearchIndexer(SearchIndexerBase):
+ """Full-text search indexer."""
+
+ def __init__(
+ self,
+ tree: str,
+ db_url: Optional[str] = None,
+ ):
+ """Initialize the indexer."""
+ super().__init__(
+ tree=tree, db_url=db_url, embedding_function=None, use_fts=True
+ )
+
+
+class SemanticSearchIndexer(SearchIndexerBase):
+ """Semantic (vector embedding) search indexer."""
+
+ SUFFIX = "__s"
+ SUFFIX_PUBLIC = "__s__p"
+
+ def __init__(
+ self,
+ tree: str,
+ db_url: Optional[str] = None,
+ embedding_function: Callable | None = None,
+ ):
+ """Initialize the indexer."""
+ super().__init__(
+ tree=tree,
+ db_url=db_url,
+ embedding_function=embedding_function,
+ use_fts=False,
+ use_semantic_text=True,
+ )
diff --git a/gramps_webapi/api/search/text.py b/gramps_webapi/api/search/text.py
index 3ad0683c..f582580e 100644
--- a/gramps_webapi/api/search/text.py
+++ b/gramps_webapi/api/search/text.py
@@ -22,12 +22,34 @@
from typing import Any, Dict, Generator, Optional, Sequence, Tuple
from gramps.gen.db.base import DbReadBase
-from gramps.gen.lib import Event, Family, Name
+from gramps.gen.lib import (
+ Event,
+ Family,
+ Name,
+ Person,
+ Place,
+ Citation,
+ Source,
+ Repository,
+ Note,
+ Media,
+)
from gramps.gen.lib.primaryobj import BasicPrimaryObject as GrampsObject
from unidecode import unidecode
from ...const import GRAMPS_OBJECT_PLURAL, PRIMARY_GRAMPS_OBJECTS
from ..resources.util import get_event_participants_for_handle
+from .text_semantic import (
+ person_to_text,
+ family_to_text,
+ event_to_text,
+ place_to_text,
+ citation_to_text,
+ source_to_text,
+ repository_to_text,
+ note_to_text,
+ media_to_text,
+)
def object_to_strings(obj: GrampsObject, db_handle: DbReadBase) -> Tuple[str, str]:
@@ -36,7 +58,7 @@ def object_to_strings(obj: GrampsObject, db_handle: DbReadBase) -> Tuple[str, st
This function returns a tuple of two strings: the first one contains
the concatenated string of the object and the strings of all
non-private child objects. The second contains the concatenated
- strings of all private child objects."""
+ strings of the objects and all non-private *and* private child objects."""
strings = obj.get_text_data_list()
private_strings = []
if hasattr(obj, "gramps_id") and obj.gramps_id not in strings:
@@ -76,7 +98,7 @@ def object_to_strings(obj: GrampsObject, db_handle: DbReadBase) -> Tuple[str, st
private_strings += grandchild_obj.get_text_data_list()
else:
strings += grandchild_obj.get_text_data_list()
- return process_strings(strings), process_strings(private_strings)
+ return process_strings(strings), process_strings(strings + private_strings)
def process_strings(strings: Sequence[str]) -> str:
@@ -100,41 +122,79 @@ def generator():
return " ".join(generator())
+def object_to_strings_semantic(
+ obj: GrampsObject, db_handle: DbReadBase
+) -> Tuple[str, str]:
+ """Create strings from a Gramps object's textual pieces.
+
+ This function returns a tuple of two strings: the first one contains
+ the concatenated string of the object and the strings of all
+ non-private child objects. The second contains the concatenated
+ strings of all private child objects."""
+ if isinstance(obj, Person):
+ return person_to_text(obj, db_handle)
+ if isinstance(obj, Family):
+ return family_to_text(obj, db_handle)
+ if isinstance(obj, Event):
+ return event_to_text(obj, db_handle)
+ if isinstance(obj, Place):
+ return place_to_text(obj, db_handle)
+ if isinstance(obj, Citation):
+ return citation_to_text(obj, db_handle)
+ if isinstance(obj, Source):
+ return source_to_text(obj, db_handle)
+ if isinstance(obj, Repository):
+ return repository_to_text(obj, db_handle)
+ if isinstance(obj, Media):
+ return media_to_text(obj, db_handle)
+ if isinstance(obj, Note):
+ return note_to_text(obj, db_handle)
+ else:
+ return "", ""
+
+
def obj_strings_from_handle(
- db_handle: DbReadBase, class_name: str, handle
+ db_handle: DbReadBase, class_name: str, handle, semantic: bool = False
) -> Optional[Dict[str, Any]]:
"""Return object strings from a handle and Gramps class name."""
query_method = db_handle.method("get_%s_from_handle", class_name)
obj = query_method(handle)
- return obj_strings_from_object(db_handle=db_handle, class_name=class_name, obj=obj)
+ return obj_strings_from_object(
+ db_handle=db_handle, class_name=class_name, obj=obj, semantic=semantic
+ )
def obj_strings_from_object(
- db_handle: DbReadBase, class_name: str, obj: GrampsObject
+ db_handle: DbReadBase, class_name: str, obj: GrampsObject, semantic: bool = False
) -> Optional[Dict[str, Any]]:
"""Return object strings from a handle and Gramps class name."""
- obj_string, obj_string_private = object_to_strings(obj, db_handle)
+ if semantic:
+ obj_string_public, obj_string_all = object_to_strings_semantic(obj, db_handle)
+ else:
+ obj_string_public, obj_string_all = object_to_strings(obj, db_handle)
private = hasattr(obj, "private") and obj.private
- if obj_string:
+ if obj_string_all:
return {
"class_name": class_name,
"handle": obj.handle,
"private": private,
- "string": obj_string,
- "string_private": obj_string_private,
+ "string_public": obj_string_public,
+ "string_all": obj_string_all,
"change": obj.change,
}
return None
def iter_obj_strings(
- db_handle: DbReadBase,
+ db_handle: DbReadBase, semantic: bool = False
) -> Generator[Dict[str, Any], None, None]:
"""Iterate over object strings in the whole database."""
for class_name in PRIMARY_GRAMPS_OBJECTS:
plural_name = GRAMPS_OBJECT_PLURAL[class_name]
iter_method = db_handle.method("iter_%s", plural_name)
for obj in iter_method():
- obj_strings = obj_strings_from_object(db_handle, class_name, obj)
+ obj_strings = obj_strings_from_object(
+ db_handle, class_name, obj, semantic=semantic
+ )
if obj_strings:
yield obj_strings
diff --git a/gramps_webapi/api/search/text_semantic.py b/gramps_webapi/api/search/text_semantic.py
new file mode 100644
index 00000000..a065c108
--- /dev/null
+++ b/gramps_webapi/api/search/text_semantic.py
@@ -0,0 +1,782 @@
+"""Object to text conversion for semantic search."""
+
+from __future__ import annotations
+import re
+from typing import Sequence
+
+from gramps.gen.const import GRAMPS_LOCALE as glocale
+from gramps.gen.db.base import DbReadBase
+from gramps.gen.errors import HandleError
+from gramps.gen.lib import (
+ Event,
+ Date,
+ Family,
+ Person,
+ Place,
+ Citation,
+ Source,
+ Repository,
+ Name,
+ Note,
+ NoteType,
+ Media,
+ ChildRef,
+ ChildRefType,
+)
+from gramps.gen.utils.location import get_location_list
+from gramps.gen.utils.place import conv_lat_lon
+
+from ..resources.util import get_event_participants_for_handle
+
+
+class PString:
+ """String representation of an object with or without private strings.
+
+ The class supports string addition with + or +=, but does not support
+ inserting into f-strings.
+
+ The `string_public` property contains the string that remains when all
+ private information has been stripped. The `string_all` property contains
+ the full string.
+
+ If `private=True` is passed to the constructor, the string is assumed to
+ be fully private. If `public_only=True` is passed, the string is assumed
+ to only be present in the non-private case (this can be used e.g. for
+ placeholders).
+
+ To construct partially private strings, simply concatenate (add) several
+ PStrings.
+
+ Example:
+
+ ```
+ (
+ PString("His father was ")
+ + PString("Darth Vader.", private=True)
+ + PString("a Jedi knight.", public_only=True)
+ )
+ ```
+ """
+
+ def __init__(
+ self,
+ string: str | PString = "",
+ private: bool = False,
+ public_only: bool = False,
+ ):
+ if isinstance(string, PString):
+ self.string_public: str = "" if private else string.string_public
+ self.string_all: str = "" if public_only else string.string_all
+ else:
+ if not isinstance(string, str):
+ raise ValueError(f"Not a string: {string}")
+ self.string_public = "" if private else string
+ self.string_all = "" if public_only else string
+
+ def __add__(self, other):
+ """Add two object strings."""
+ rhs = other if isinstance(other, PString) else PString(other)
+ result = PString()
+ result.string_public = self.string_public + rhs.string_public
+ result.string_all = self.string_all + rhs.string_all
+ return result
+
+ def __radd__(self, other):
+ """Add two object strings."""
+ rhs = other if isinstance(other, PString) else PString(other)
+ return rhs + self
+
+ def __iadd__(self, other):
+ """Add an object string to self."""
+ rhs = other if isinstance(other, PString) else PString(other)
+ self.string_public += rhs.string_public
+ self.string_all += rhs.string_all
+ return self
+
+ def __repr__(self):
+ """String representation."""
+ return f""
+
+ def __bool__(self) -> bool:
+ return bool(self.string_all) or bool(self.string_public)
+
+
+def pjoin(sep: str, pstrings: Sequence[PString | str]) -> PString:
+ """Join a sequence of PStrings.
+
+ Analogue of `string.join` for PStrings.
+ """
+ string = PString()
+ pstrings_cast = [
+ pstring if isinstance(pstring, PString) else PString(pstring)
+ for pstring in pstrings
+ ]
+ string.string_all = sep.join(
+ [pstring.string_all for pstring in pstrings_cast if pstring.string_all]
+ )
+ string.string_public = sep.join(
+ [pstring.string_public for pstring in pstrings_cast if pstring.string_public]
+ )
+ return string
+
+
+def pwrap(
+ before: str | PString, pstring: str | PString, after: str | PString
+) -> PString:
+ """Wrap a PString with a string before and after, if the string is not empty.
+
+ Example:
+ ```
+ pwrap("(", PString("married", private=True), ")")
+ ```
+ will lead to "(married)" in the full string but an empty string (rather than "()")
+ in the public case.
+ """
+ lhs = PString(before)
+ rhs = PString(after)
+ new = PString(pstring)
+ if new.string_all:
+ new.string_all = lhs.string_all + new.string_all + rhs.string_all
+ if new.string_public:
+ new.string_public = lhs.string_public + new.string_public + rhs.string_public
+ return new
+
+
+# Secondary objects
+
+
+def date_to_text(date: Date) -> str:
+ """Convert a date to text."""
+ return glocale.date_displayer.display(date)
+
+
+def name_to_text(name: Name) -> str:
+ """Convert a name to a text."""
+ given = name.first_name
+ surname = name.get_surname()
+ suffix = name.suffix
+ return f"{given} {surname} {suffix}".strip()
+
+
+def tags_to_text(tag_list: Sequence[str], db_handle: DbReadBase) -> str:
+ """Convert a tag list to text."""
+ tags = []
+ for tag_handle in tag_list:
+ try:
+ tag = db_handle.get_tag_from_handle(tag_handle)
+ tags.append(tag.get_name())
+ except HandleError:
+ pass
+
+ return ", ".join(tags)
+
+
+def place_to_line(
+ place: Place, db_handle: DbReadBase, include_hierarchy: bool = True
+) -> str | PString:
+ """Convert a place to a single line of text without participants."""
+ place_hierarchy = get_location_list(db_handle, place)
+ place_name = f"[{place_hierarchy[0][0]}](/place/{place.gramps_id})"
+ if not include_hierarchy:
+ return place_name
+ # TODO while place refs cannot be private, there is the theoretical
+ # possibility that a referenced parent place is private. This is
+ # currently not accounted for.
+ place_hierarchy[0] = place_name, ""
+ return pjoin(", ", [name for name, _ in place_hierarchy])
+
+
+def event_to_line(event: Event, db_handle: DbReadBase) -> PString:
+ """Convert an event to a single line of text without participants."""
+ event_type = event.type.xml_str()
+ if event.date and not event.date.is_empty():
+ date = date_to_text(event.date)
+ else:
+ date = ""
+ string = PString(f"[{event_type}](/event/{event.gramps_id})")
+ if date:
+ string += f": {date}"
+ if event.place:
+ try:
+ place = db_handle.get_place_from_handle(event.place)
+ place_string = place_to_line(place, db_handle, include_hierarchy=False)
+ string += PString(" in " + place_string, private=place.private)
+ except HandleError:
+ pass
+ if event.description:
+ if date or event.place:
+ string += " - "
+ string += f" {event.description}"
+ return string
+
+
+def child_ref_to_text(child_ref: ChildRef) -> str:
+ """Convert a child reference to text."""
+ frel = child_ref.frel.xml_str()
+ mrel = child_ref.mrel.xml_str()
+ return f"relation to father: {frel}, relation to mother: {mrel}"
+
+
+def person_name_linked(person: Person) -> PString:
+ """Format a person as a linked name."""
+ person_name = PString(
+ name_to_text(person.primary_name), private=person.primary_name.private
+ )
+ if person.primary_name.private:
+ person_name = PString("N. N.", public_only=True)
+ person_name = "[" + person_name + f"](/person/{person.gramps_id})"
+ return person_name
+
+
+def person_to_line(person: Person, db_handle: DbReadBase) -> PString:
+ """Convert a person to a single line of text."""
+ string = person_name_linked(person)
+ try:
+ if person.birth_ref_index < 0:
+ raise IndexError # negative index means event does not exist
+ birth_ref = person.event_ref_list[person.birth_ref_index]
+ birth = db_handle.get_event_from_handle(birth_ref.ref)
+ if birth.date and not birth.date.is_empty():
+ birth_date: str | PString = PString(
+ date_to_text(birth.date), private=birth.private or birth_ref.private
+ )
+ else:
+ birth_date = ""
+ except (IndexError, HandleError):
+ birth_date = ""
+ try:
+ if person.death_ref_index < 0:
+ raise IndexError # negative index means event does not exist
+ death_ref = person.event_ref_list[person.death_ref_index]
+ death = db_handle.get_event_from_handle(death_ref.ref)
+ if death.date and not death.date.is_empty():
+ death_date: str | PString = PString(
+ date_to_text(death.date), private=death.private or death_ref.private
+ )
+ else:
+ death_date = ""
+ except (IndexError, HandleError):
+ death_date = ""
+ birth_date = pwrap("born ", birth_date, "")
+ death_date = pwrap("died ", death_date, "")
+ life_dates = pjoin(", ", [birth_date, death_date])
+ if life_dates:
+ string += pwrap(" (", life_dates, ")")
+ return string
+
+
+genders = {
+ Person.FEMALE: "female",
+ Person.MALE: "male",
+ Person.UNKNOWN: "unknown",
+ Person.OTHER: "other",
+}
+
+
+pronouns_poss = {
+ Person.FEMALE: "her",
+ Person.MALE: "his",
+ Person.UNKNOWN: "their",
+ Person.OTHER: "their",
+}
+
+pronouns_pers = {
+ Person.FEMALE: "she",
+ Person.MALE: "he",
+ Person.UNKNOWN: "they",
+ Person.OTHER: "they",
+}
+
+
+def get_family_title(obj: Family, db_handle: DbReadBase) -> PString:
+ """Get a title for a family."""
+ if obj.father_handle:
+ person = db_handle.get_person_from_handle(obj.father_handle)
+ private = person.private or person.primary_name.private
+ father_name = PString(
+ name_to_text(person.primary_name),
+ private=private,
+ )
+ if private:
+ father_name += PString("Unknown father", public_only=True)
+ else:
+ father_name = PString("Unknown father")
+ if obj.mother_handle:
+ person = db_handle.get_person_from_handle(obj.mother_handle)
+ private = person.private or person.primary_name.private
+ mother_name = PString(
+ name_to_text(person.primary_name),
+ private=private,
+ )
+ if private:
+ mother_name += PString("unknown mother", public_only=True)
+ else:
+ mother_name = PString("unknown mother")
+ return father_name + " and " + mother_name
+
+
+# Primary objects
+# TODO continue here
+
+
+def person_to_text(obj: Person, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a person to text."""
+ person_name = person_name_linked(obj)
+ pronoun_poss = pronouns_poss[obj.gender]
+ pronoun_pers = pronouns_pers[obj.gender]
+ string = PString("## Person: " + person_name + "\n")
+ string += (
+ "This document contains information about the person " + person_name + ": "
+ f"{pronoun_poss} name, life dates, and the events {pronoun_pers} participated "
+ "in, such as birth, death, occupation, education, religious events, "
+ "and others. "
+ )
+ if obj.alternate_names:
+ for name in obj.alternate_names:
+ name_type = name.type.xml_str()
+ alt_name = (
+ f"{pronoun_poss.capitalize()} {name_type} is {name_to_text(name)}. "
+ )
+ string += PString(alt_name, private=name.private)
+ if obj.event_ref_list:
+ event_strings: dict[str, list[PString]] = {}
+ for event_ref in obj.event_ref_list:
+ role = event_ref.role.xml_str()
+ if role not in event_strings:
+ event_strings[role] = []
+ try:
+ event = db_handle.get_event_from_handle(event_ref.ref)
+ except HandleError:
+ continue
+ event_text = PString(
+ event_to_line(event, db_handle),
+ private=event_ref.private or event.private,
+ )
+ event_strings[role].append(event_text)
+ if event_strings.get("Primary"):
+ private = not any(
+ pstring.string_public for pstring in event_strings["Primary"]
+ )
+ string += PString(
+ private=private,
+ )
+ string += pwrap(
+ person_name + " had the following personal events: ",
+ pjoin("; ", event_strings["Primary"]),
+ ". ",
+ )
+ other_roles = set(event_strings.keys()) - {"Primary"}
+ if other_roles:
+ other_role_string = PString()
+ for role in other_roles:
+ other_role_string += pwrap(
+ "",
+ pjoin(
+ "; ",
+ [
+ pwrap("", event_string, " (" + role + ")")
+ for event_string in event_strings[role]
+ ],
+ ),
+ ". ",
+ )
+ string += pwrap(
+ person_name + " participated in the following events: ",
+ other_role_string,
+ " ",
+ )
+ for person_ref in obj.person_ref_list:
+ if person_ref.rel == "DNA":
+ rel_string = "has a DNA match with"
+ else:
+ rel_string = f"has an association of type {person_ref.rel} with"
+ try:
+ ref_person = db_handle.get_person_from_handle(person_ref.ref)
+ except HandleError:
+ continue
+ name_ref = (
+ f"[{name_to_text(ref_person.primary_name)}]"
+ f"(/person/{ref_person.gramps_id})"
+ )
+ string += PString(
+ " " + person_name + f" {rel_string} {name_ref}. ",
+ private=person_ref.private,
+ )
+ if obj.tag_list:
+ string += pwrap(
+ person_name + " has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ # not included:
+ # media, address, attribute, URL, citation, note
+ # eventref citations, notes, attributes
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def family_to_text(obj: Family, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a family to text."""
+ string = PString()
+ name = get_family_title(obj, db_handle)
+ name = "[" + name + f"](/family/{obj.gramps_id})"
+ string += "## Family: " + name + "\n"
+ string += "This document contains information about the family "
+ string += name
+ string += ": "
+ string += (
+ "The name and life dates of the parents, the names "
+ "and life dates of all children, "
+ "and the events the family participated in, such as marriage and residence. "
+ )
+ if obj.father_handle:
+ try:
+ person = db_handle.get_person_from_handle(obj.father_handle)
+ father = person_to_line(person, db_handle)
+ string += "The family's father was " + father + ". "
+ except HandleError:
+ pass
+ if obj.mother_handle:
+ try:
+ person = db_handle.get_person_from_handle(obj.mother_handle)
+ mother = person_to_line(person, db_handle)
+ string += "The family's mother was " + mother + ". "
+ except HandleError:
+ pass
+ if obj.type:
+ string += f"Their relationship was: {obj.type.xml_str()}. "
+ if obj.event_ref_list:
+ string += name + " had the following family events: "
+ event_strings = []
+ for event_ref in obj.event_ref_list:
+ event = db_handle.get_event_from_handle(event_ref.ref)
+ event_text = event_to_line(event, db_handle)
+ event_strings.append(event_text)
+ string += pjoin(";", event_strings) + ". "
+ if obj.child_ref_list:
+ string += PString(
+ name + " had the following children: ",
+ private=all([child_ref.private for child_ref in obj.child_ref_list]),
+ )
+ child_strings = []
+ for child_ref in obj.child_ref_list:
+ try:
+ person = db_handle.get_person_from_handle(child_ref.ref)
+ except HandleError:
+ continue
+ string_child = PString(
+ person_to_line(person, db_handle),
+ private=child_ref.private or person.private,
+ )
+ if (
+ child_ref.frel.value != ChildRefType.BIRTH
+ or child_ref.mrel.value != ChildRefType.BIRTH
+ ):
+ string_child += PString(
+ " (" + child_ref_to_text(child_ref) + ")",
+ private=child_ref.private or person.private or child_ref.private,
+ )
+ if string_child:
+ child_strings.append(string_child)
+ string += pjoin(", ", child_strings)
+ # not included:
+ # media, attribute, citation, note
+ # childref citation, note, gender
+ if obj.tag_list:
+ string += pwrap(
+ "The family has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def event_to_text(obj: Event, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert an event to text."""
+ title = obj.gramps_id
+ name = PString("[" + title + f"](/event/{obj.gramps_id})")
+ string = PString("## Event: " + name + "\n")
+ string += "This document contains information about the event " + title + ", "
+ string += "such as when and where it happened and who participated in it. "
+ if obj.type:
+ string += f"It was an event of type {obj.type.xml_str()}. "
+ if obj.date and not obj.date.is_empty():
+ string += f"It happened on the following date: {date_to_text(obj.date)}. "
+ if obj.place:
+ place = db_handle.get_place_from_handle(obj.place)
+ place_string = place_to_line(place, db_handle)
+ string += PString(
+ "The event location was " + place_string + ". ", private=place.private
+ )
+ if obj.description:
+ string += f'The event description is as follows: "{obj.description}". '
+ participants = get_event_participants_for_handle(
+ db_handle=db_handle, handle=obj.handle
+ )
+ roles: dict[str, list[PString]] = {}
+ if participants.get("people"):
+ for role, person in participants["people"]:
+ role_str = role.xml_str()
+ if role.xml_str() not in roles:
+ roles[role_str] = []
+ ref_private = all(
+ [
+ event_ref.private
+ for event_ref in person.event_ref_list
+ if event_ref.ref == obj.handle
+ ]
+ )
+ role_pstring = PString(
+ f"[{name_to_text(person.primary_name)}](/person/{person.gramps_id})",
+ private=person.private or ref_private,
+ )
+ roles[role_str].append(role_pstring)
+ if roles.get("Primary"):
+ string += pwrap(
+ "The primary participant of the event was ",
+ pjoin(", ", roles["Primary"]),
+ ". ",
+ )
+ for k, v in roles.items():
+ if k == "Primary":
+ continue
+ string += pwrap(
+ f"The participants with role {k} of the event were ",
+ pjoin(", ", v),
+ ". ",
+ )
+ roles = {}
+ if participants.get("families"):
+ for role, family in participants["families"]:
+ role_str = role.xml_str()
+ if role_str not in roles:
+ roles[role_str] = []
+ ref_private = all(
+ [
+ event_ref.private
+ for event_ref in family.event_ref_list
+ if event_ref.ref == obj.handle
+ ]
+ )
+ family_title = get_family_title(family, db_handle)
+ role_pstring = PString(
+ "[" + family_title + f"](/family/{family.gramps_id})",
+ private=family.private or ref_private,
+ )
+
+ roles[role_str].append(role_pstring)
+ if roles.get("Family"):
+ string += pwrap(
+ "The primary participant family of the event was ",
+ pjoin(", ", roles["Family"]),
+ ". ",
+ )
+ # not included:
+ # citation, media, note, attribute
+ if obj.tag_list:
+ string += pwrap(
+ "The event has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def place_to_text(obj: Place, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a place to text."""
+ if obj.title and not obj.name:
+ name = obj.title
+ else:
+ name = obj.get_name().value
+ title = f"[{name}](/place/{obj.gramps_id})"
+ string = PString(f"## Place: {title}\n")
+ string += (
+ f"This document contains data about the place {name}: "
+ "its place type, geographic location, and enclosing places. "
+ )
+ if obj.place_type:
+ string += f"{title} is a place of type {obj.place_type.xml_str()}. "
+ if obj.alt_names:
+ string += "It is also known as: "
+ string += ", ".join([name.value for name in obj.alt_names])
+ string += ". "
+ if obj.code:
+ string += f"Its place code is {obj.code}. "
+ parent_list = get_location_list(db_handle, obj)
+ latitude, longitude = conv_lat_lon(obj.lat, obj.long, format="D.D8")
+ if latitude and longitude:
+ string += (
+ f"The greographical coordinates (latitude and longitude) of {title} "
+ f"are {float(latitude):.4f}, {float(longitude):.4f}. "
+ )
+ if parent_list and len(parent_list) > 1:
+ string += f"{title} is part of "
+ string += pjoin(", ", [name for name, _ in parent_list[1:]])
+ string += ". "
+ # not included:
+ # urls, media, citations, notes
+ if obj.tag_list:
+ string += pwrap(
+ "The place " + title + " has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def citation_to_text(obj: Citation, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a citation to text."""
+ string = PString(f"## Citation: [{obj.gramps_id}](/citation/{obj.gramps_id})\n")
+ string += (
+ "This document contains the metadata of a citation, "
+ "which is a reference to a source. "
+ )
+ if obj.source_handle:
+ try:
+ source = db_handle.get_source_from_handle(obj.source_handle)
+ string += PString(
+ "It cites the source "
+ f"[{source.title or source.gramps_id}](/source/{source.gramps_id}). ",
+ private=source.private,
+ )
+ except HandleError:
+ pass
+ if obj.page.strip():
+ string += f"It cites page/volume: {obj.page}. "
+ if obj.date and not obj.date.is_empty():
+ string += f"The citation's date is {date_to_text(obj.date)}. "
+ # not included:
+ # note, media, attribute
+ if obj.tag_list:
+ string += pwrap(
+ "The citation has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def source_to_text(obj: Source, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a source to text."""
+ title = f"[{obj.title or obj.gramps_id}](/source/{obj.gramps_id})"
+ string = PString(f"## Source: {title}\n")
+ if obj.author:
+ string += f"The source's author was {obj.author}. "
+ if obj.pubinfo:
+ string += f"Source publication info: {obj.pubinfo}. "
+ if obj.abbrev:
+ string += f"The source is abbreviated as {obj.abbrev}. "
+ # TODO reporef
+ # notes, media, attributes
+ if obj.tag_list:
+ string += pwrap(
+ "The source has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def repository_to_text(obj: Repository, db_handle: DbReadBase) -> tuple[str, str]:
+ title = f"[{obj.name}](/repository/{obj.gramps_id})"
+ """Convert a repository to text."""
+ string = PString(f"## Repository: {title}\n")
+ string += f"{title} is a repository of type {obj.type.xml_str()}. "
+ sources = []
+ for _, source_handle in db_handle.find_backlink_handles(
+ obj.handle, include_classes=["Source"]
+ ):
+ try:
+ source = db_handle.get_source_from_handle(source_handle)
+ ref_private = all(
+ [
+ reporef.private
+ for reporef in source.reporef_list
+ if reporef.ref == obj.handle
+ ]
+ )
+ sources.append(
+ PString(
+ f"[{source.title}](/source/{source.gramps_id})",
+ private=source.private or ref_private,
+ )
+ )
+ except HandleError:
+ pass
+ if sources:
+ string += pwrap(
+ f"The repository {title} contains the following sources: ",
+ pjoin(", ", sources),
+ ". ",
+ )
+ if obj.tag_list:
+ string += pwrap(
+ f"The repository {title} has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ if obj.private:
+ return "", string.string_all
+ return string.string_public, string.string_all
+
+
+def note_to_text(obj: Note, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a note to text."""
+ string = PString(f"## Note [{obj.gramps_id}](/note/{obj.gramps_id})\n")
+ string += (
+ "This document contains the contents of the "
+ f"[Note {obj.gramps_id}](/note/{obj.gramps_id}). "
+ )
+ if obj.type.value not in {NoteType.UNKNOWN, NoteType.GENERAL}:
+ string += f"It is a note of type {obj.type.xml_str()}. "
+ string += "Contents:\n"
+ string += re.sub(r"\n+", "\n", obj.text.string)
+ # not included: tags
+ if obj.private:
+ return "", string.string_all
+ if obj.tag_list:
+ string += pwrap(
+ "The note has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ return string.string_public, string.string_all
+
+
+def media_to_text(obj: Media, db_handle: DbReadBase) -> tuple[str, str]:
+ """Convert a media object to text."""
+ name = f"[{obj.desc or obj.gramps_id}](/media/{obj.gramps_id})"
+ string = PString(
+ f"## Media object: {name}\n"
+ "This document contains metadata about the media object "
+ f"{name}. "
+ f"Its media type is {obj.mime or 'unknown'}. "
+ )
+ if obj.desc:
+ string += f"The media description is: {obj.desc}. "
+ if obj.date and not obj.date.is_empty():
+ string += f"The date of the media object is {date_to_text(obj.date)}. "
+ if obj.path:
+ string += f"The media object's path is {obj.path}. "
+ # not included:
+ # citations, attributes, notes, tags
+ if obj.private:
+ return "", string.string_all
+ if obj.tag_list:
+ string += pwrap(
+ "The media object has the following tags in the database: ",
+ tags_to_text(obj.tag_list, db_handle),
+ ". ",
+ )
+ return string.string_public, string.string_all
diff --git a/gramps_webapi/api/tasks.py b/gramps_webapi/api/tasks.py
index e22f2a88..de6d8c36 100644
--- a/gramps_webapi/api/tasks.py
+++ b/gramps_webapi/api/tasks.py
@@ -18,6 +18,8 @@
"""Execute tasks."""
+from __future__ import annotations
+
import os
import uuid
from gettext import gettext as _
@@ -104,10 +106,10 @@ def send_email_new_user(
def _search_reindex_full(
- tree: str, user_id: str, progress_cb: Optional[Callable] = None
+ tree: str, user_id: str, semantic: bool, progress_cb: Optional[Callable] = None
) -> None:
"""Rebuild the search index."""
- indexer = get_search_indexer(tree)
+ indexer = get_search_indexer(tree, semantic=semantic)
db = get_db_outside_request(
tree=tree, view_private=True, readonly=True, user_id=user_id
)
@@ -118,7 +120,7 @@ def _search_reindex_full(
def progress_callback_count(self, title: str = "", message: str = "") -> Callable:
- def callback(current: int, total: int) -> None:
+ def callback(current: int, total: int, prev: int | None = None) -> None:
if total == 0:
return
self.update_state(
@@ -136,20 +138,21 @@ def callback(current: int, total: int) -> None:
@shared_task(bind=True)
-def search_reindex_full(self, tree: str, user_id: str) -> None:
+def search_reindex_full(self, tree: str, user_id: str, semantic: bool) -> None:
"""Rebuild the search index."""
return _search_reindex_full(
tree=tree,
user_id=user_id,
+ semantic=semantic,
progress_cb=progress_callback_count(self, title="Updating search index..."),
)
def _search_reindex_incremental(
- tree: str, user_id: str, progress_cb: Optional[Callable] = None
+ tree: str, user_id: str, semantic: bool, progress_cb: Optional[Callable] = None
) -> None:
"""Run an incremental reindex of the search index."""
- indexer = get_search_indexer(tree)
+ indexer = get_search_indexer(tree, semantic=semantic)
db = get_db_outside_request(
tree=tree, view_private=True, readonly=True, user_id=user_id
)
@@ -160,11 +163,12 @@ def _search_reindex_incremental(
@shared_task(bind=True)
-def search_reindex_incremental(self, tree: str, user_id: str) -> None:
+def search_reindex_incremental(self, tree: str, user_id: str, semantic: bool) -> None:
"""Run an incremental reindex of the search index."""
return _search_reindex_incremental(
tree=tree,
user_id=user_id,
+ semantic=semantic,
progress_cb=progress_callback_count(self, title="Updating search index..."),
)
@@ -195,8 +199,20 @@ def import_file(
_search_reindex_incremental(
tree=tree,
user_id=user_id,
- progress_cb=progress_callback_count(self, title="Updating search index..."),
+ semantic=False,
+ progress_cb=progress_callback_count(
+ self, title="Updating full-text search index..."
+ ),
)
+ if current_app.config.get("VECTOR_EMBEDDING_MODEL"):
+ _search_reindex_incremental(
+ tree=tree,
+ user_id=user_id,
+ semantic=True,
+ progress_cb=progress_callback_count(
+ self, title="Updating semantic search index..."
+ ),
+ )
@shared_task(bind=True)
@@ -367,5 +383,17 @@ def delete_objects(
_search_reindex_incremental(
tree=tree,
user_id=user_id,
- progress_cb=progress_callback_count(self, title="Updating search index..."),
+ semantic=False,
+ progress_cb=progress_callback_count(
+ self, title="Updating full-text search index..."
+ ),
)
+ if current_app.config.get("VECTOR_EMBEDDING_MODEL"):
+ _search_reindex_incremental(
+ tree=tree,
+ user_id=user_id,
+ semantic=True,
+ progress_cb=progress_callback_count(
+ self, title="Updating semantic search index..."
+ ),
+ )
diff --git a/gramps_webapi/api/util.py b/gramps_webapi/api/util.py
index 6f88f665..51ab669a 100644
--- a/gramps_webapi/api/util.py
+++ b/gramps_webapi/api/util.py
@@ -1,7 +1,7 @@
#
# Gramps Web API - A RESTful API for the Gramps genealogy program
#
-# Copyright (C) 2020-2022 David Straub
+# Copyright (C) 2020-2024 David Straub
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
@@ -21,6 +21,7 @@
import hashlib
import io
+import logging
import json
import os
import smtplib
@@ -31,7 +32,16 @@
from typing import BinaryIO, List, Optional, Sequence, Tuple
from celery import Task
-from flask import Response, abort, current_app, g, jsonify, make_response, request
+from flask import (
+ Response,
+ abort,
+ current_app,
+ g,
+ has_app_context,
+ jsonify,
+ make_response,
+ request,
+)
from flask_jwt_extended import get_jwt, get_jwt_identity
from gramps.cli.clidbman import NAME_FILE, CLIDbManager
from gramps.gen.config import config
@@ -630,7 +640,7 @@ def check_quota_people(
usage_dict = get_tree_usage(tree)
if not usage_dict or usage_dict.get("usage_people") is None:
update_usage_people(tree=tree, user_id=user_id)
- usage_dict = get_tree_usage(tree)
+ usage_dict = get_tree_usage(tree)
usage = usage_dict["usage_people"]
quota = usage_dict.get("quota_people")
if quota is None:
@@ -639,6 +649,35 @@ def check_quota_people(
abort_with_message(405, "Not allowed by people quota")
+def update_usage_ai(new: int, tree: Optional[str] = None) -> int:
+ """Update the usage of AI by adding `new` units to the usage."""
+ if not tree:
+ tree = get_tree_from_jwt()
+ usage_dict = get_tree_usage(tree)
+ if not usage_dict:
+ old_usage = 0
+ else:
+ old_usage = usage_dict.get("usage_ai") or 0
+ new_usage = old_usage + new
+ set_tree_usage(tree, usage_ai=new_usage)
+ return new_usage
+
+
+def check_quota_ai(requested: int, tree: Optional[str] = None) -> None:
+ """Check whether the AI quota allows consuming another `requested` units."""
+ if not tree:
+ tree = get_tree_from_jwt()
+ usage_dict = get_tree_usage(tree)
+ if not usage_dict:
+ return
+ usage = usage_dict.get("usage_ai") or 0
+ quota = usage_dict.get("quota_ai")
+ if quota is None:
+ return
+ if usage + requested > quota:
+ abort_with_message(405, "Not allowed by AI quota")
+
+
def abort_with_message(status: int, message: str):
"""Abort with a JSON response."""
payload = {"error": {"code": status, "message": message}}
@@ -687,3 +726,16 @@ def get_object_timestamps(db_handle: DbReadBase):
obj = query_method(handle)
d[class_name].add((handle, obj.change))
return d
+
+
+def get_logger() -> logging.Logger:
+ """Get an appropriate logger instance."""
+ if has_app_context() and current_app.logger:
+ return current_app.logger
+ else:
+ # Fallback to a standard logger
+ logger = logging.getLogger(__name__)
+ if not logger.hasHandlers():
+ # If the logger is not configured yet, set up basic configuration
+ logging.basicConfig(level=logging.INFO)
+ return logger
diff --git a/gramps_webapi/app.py b/gramps_webapi/app.py
index 4d83eb46..310f2b72 100644
--- a/gramps_webapi/app.py
+++ b/gramps_webapi/app.py
@@ -33,7 +33,7 @@
from .api import api_blueprint
from .api.cache import thumbnail_cache
from .api.ratelimiter import limiter
-from .api.search import SearchIndexer
+from .api.search.embeddings import load_model
from .auth import user_db
from .config import DefaultConfig, DefaultConfigJWT
from .const import API_PREFIX, ENV_CONFIG_FILE, TREE_MULTI
@@ -103,6 +103,9 @@ def create_app(config: Optional[Dict[str, Any]] = None):
if not app.config.get(option):
raise ValueError(f"{option} must be specified")
+ if app.config.get("LOG_LEVEL"):
+ app.logger.setLevel(app.config["LOG_LEVEL"])
+
if app.config["TREE"] != TREE_MULTI:
# create database if missing (only in single-tree mode)
WebDbManager(
@@ -187,4 +190,7 @@ def close_user_db(exception) -> None:
user_db.session.rollback() # pylint: disable=no-member
user_db.session.remove() # pylint: disable=no-member
+ if app.config.get("VECTOR_EMBEDDING_MODEL"):
+ load_model(app.config["VECTOR_EMBEDDING_MODEL"])
+
return app
diff --git a/gramps_webapi/auth/__init__.py b/gramps_webapi/auth/__init__.py
index 96a74680..4207d878 100644
--- a/gramps_webapi/auth/__init__.py
+++ b/gramps_webapi/auth/__init__.py
@@ -19,10 +19,10 @@
"""Define methods of providing authentication for users."""
+from __future__ import annotations
+
import secrets
import uuid
-from abc import ABCMeta, abstractmethod
-from contextlib import contextmanager
from typing import Any, Dict, List, Optional, Sequence, Set, Union
import sqlalchemy as sa
@@ -31,7 +31,7 @@
from sqlalchemy.sql.functions import coalesce
from ..const import DB_CONFIG_ALLOWED_KEYS
-from .const import PERMISSIONS, ROLE_ADMIN, ROLE_OWNER
+from .const import PERMISSIONS, PERM_USE_CHAT, ROLE_ADMIN, ROLE_OWNER
from .passwords import hash_password, verify_password
from .sql_guid import GUID
@@ -235,11 +235,18 @@ def get_all_user_details(
return [_get_user_detail(user, include_guid=include_guid) for user in users]
-def get_permissions(username: str) -> Set[str]:
+def get_permissions(username: str, tree: str) -> Set[str]:
"""Get the permissions of a given user."""
query = user_db.session.query(User) # pylint: disable=no-member
user = query.filter_by(name=username).one()
- return PERMISSIONS[user.role]
+ permissions = PERMISSIONS[user.role].copy()
+ # check & add chat permissions
+ query = user_db.session.query(Tree) # pylint: disable=no-member
+ tree_obj = query.filter_by(id=tree).scalar()
+ if tree_obj and tree_obj.min_role_ai is not None:
+ if user.role >= tree_obj.min_role_ai:
+ permissions.add(PERM_USE_CHAT)
+ return permissions
def get_owner_emails(tree: str, include_admins: bool = False) -> List[str]:
@@ -320,47 +327,62 @@ def config_delete(key: str) -> None:
user_db.session.commit() # pylint: disable=no-member
-def get_tree_usage(tree: str) -> Optional[Dict[str, int]]:
+def get_tree_usage(tree: str) -> Optional[dict[str, int]]:
"""Get tree usage info."""
query = user_db.session.query(Tree) # pylint: disable=no-member
- tree_obj = query.filter_by(id=tree).scalar()
+ tree_obj: Tree = query.filter_by(id=tree).scalar()
if tree_obj is None:
return None
return {
"quota_media": tree_obj.quota_media,
"quota_people": tree_obj.quota_people,
+ "quota_ai": tree_obj.quota_ai,
"usage_media": tree_obj.usage_media,
"usage_people": tree_obj.usage_people,
+ "usage_ai": tree_obj.usage_ai,
}
+def get_tree_permissions(tree: str) -> Optional[dict[str, int]]:
+ """Get tree permissions."""
+ query = user_db.session.query(Tree) # pylint: disable=no-member
+ tree_obj: Tree = query.filter_by(id=tree).scalar()
+ if tree_obj is None:
+ return None
+ return {"min_role_ai": tree_obj.min_role_ai}
+
+
def set_tree_usage(
tree: str,
usage_media: Optional[int] = None,
usage_people: Optional[int] = None,
+ usage_ai: Optional[int] = None,
) -> None:
"""Set the tree usage data."""
- if usage_media is None and usage_people is None:
+ if usage_media is None and usage_people is None and usage_ai is None:
return
query = user_db.session.query(Tree) # pylint: disable=no-member
- tree_obj = query.filter_by(id=tree).scalar()
+ tree_obj: Tree = query.filter_by(id=tree).scalar()
if not tree_obj:
tree_obj = Tree(id=tree)
if usage_media is not None:
tree_obj.usage_media = usage_media
if usage_people is not None:
tree_obj.usage_people = usage_people
+ if usage_ai is not None:
+ tree_obj.usage_ai = usage_ai
user_db.session.add(tree_obj) # pylint: disable=no-member
user_db.session.commit() # pylint: disable=no-member
-def set_tree_quota(
+def set_tree_details(
tree: str,
quota_media: Optional[int] = None,
quota_people: Optional[int] = None,
+ min_role_ai: Optional[int] = None,
) -> None:
- """Set the tree quotas."""
- if quota_media is None and quota_people is None:
+ """Set the tree details like quotas and minimum role for chat."""
+ if quota_media is None and quota_people is None and min_role_ai is None:
return
query = user_db.session.query(Tree) # pylint: disable=no-member
tree_obj = query.filter_by(id=tree).scalar()
@@ -370,6 +392,8 @@ def set_tree_quota(
tree_obj.quota_media = quota_media
if quota_people is not None:
tree_obj.quota_people = quota_people
+ if min_role_ai is not None:
+ tree_obj.min_role_ai = min_role_ai
user_db.session.add(tree_obj) # pylint: disable=no-member
user_db.session.commit() # pylint: disable=no-member
@@ -434,8 +458,11 @@ class Tree(user_db.Model):
id = sa.Column(sa.String, primary_key=True)
quota_media = sa.Column(sa.BigInteger)
quota_people = sa.Column(sa.Integer)
+ quota_ai = sa.Column(sa.Integer)
usage_media = sa.Column(sa.BigInteger)
usage_people = sa.Column(sa.Integer)
+ usage_ai = sa.Column(sa.Integer)
+ min_role_ai = sa.Column(sa.Integer)
enabled = sa.Column(sa.Integer, default=1, server_default="1")
def __repr__(self):
diff --git a/gramps_webapi/auth/const.py b/gramps_webapi/auth/const.py
index e4169b69..c99df27d 100644
--- a/gramps_webapi/auth/const.py
+++ b/gramps_webapi/auth/const.py
@@ -65,6 +65,10 @@
PERM_EDIT_TREE = "EditTree"
PERM_REPAIR_TREE = "RepairTree"
PERM_UPGRADE_TREE_SCHEMA = "UpgradeSchema"
+PERM_EDIT_TREE_MIN_ROLE_AI = "EditTreeMinRoleAI"
+
+# permission to use chat
+PERM_USE_CHAT = "UseChat"
PERMISSIONS = {}
@@ -102,6 +106,7 @@
PERM_EDIT_TREE,
PERM_REPAIR_TREE,
PERM_UPGRADE_TREE_SCHEMA,
+ PERM_EDIT_TREE_MIN_ROLE_AI,
PERM_DEL_OBJ_BATCH,
}
diff --git a/gramps_webapi/config.py b/gramps_webapi/config.py
index 9af5cdaa..1a35aa05 100644
--- a/gramps_webapi/config.py
+++ b/gramps_webapi/config.py
@@ -58,6 +58,11 @@ class DefaultConfig(object):
NEW_DB_BACKEND = "sqlite"
RATE_LIMIT_MEDIA_ARCHIVE = "1 per day"
REGISTRATION_DISABLED = False
+ LOG_LEVEL = "INFO"
+ LLM_BASE_URL = None
+ LLM_MODEL = ""
+ LLM_MAX_CONTEXT_LENGTH = 50000
+ VECTOR_EMBEDDING_MODEL = ""
class DefaultConfigJWT(object):
diff --git a/gramps_webapi/data/apispec.yaml b/gramps_webapi/data/apispec.yaml
index 92faa6e8..ab0afad7 100644
--- a/gramps_webapi/data/apispec.yaml
+++ b/gramps_webapi/data/apispec.yaml
@@ -1,7 +1,7 @@
swagger: "2.0"
info:
title: "Gramps Web API"
- version: "2.4.2"
+ version: "2.5.0"
description: >
The Gramps Web API is a REST API that provides access to family tree databases generated and maintained with Gramps, a popular Open Source genealogical research software package.
@@ -70,6 +70,8 @@ tags:
description: Work with timelines.
- name: search
description: Work with search engine.
+- name: chat
+ description: Work with AI chat.
- name: reports
description: Work with reports.
- name: facts
@@ -6117,6 +6119,12 @@ paths:
span | Returns elapsed time span from union that formed the family and familial events
events | Returns event list with name, date and location
families | Returns family information with parents, children, and key relationship between parents
+ - name: semantic
+ in: query
+ required: false
+ type: boolean
+ default: false
+ description: "Indicates whether semantic search should be used rather than full-text search (the default)."
responses:
200:
description: "OK: Successful operation."
@@ -6144,6 +6152,12 @@ paths:
type: boolean
default: false
description: "Perform a full or incremental (default) reindex."
+ - name: semantic
+ in: query
+ required: false
+ type: boolean
+ default: false
+ description: "Indicates whether the semantic search index should be updated rather than full-text search index (the default)."
responses:
201:
description: "OK: Successful operation."
@@ -6161,6 +6175,43 @@ paths:
422:
description: "Unprocessable Entity: Invalid or bad parameter provided."
+##############################################################################
+# Endpoint - Chat
+##############################################################################
+
+ /chat:
+ get:
+ tags:
+ - chat
+ summary: "Answer a chat prompt."
+ operationId: completeChat
+ security:
+ - Bearer: []
+ parameters:
+ - name: query
+ in: query
+ required: true
+ type: string
+ description: "The query prompt."
+ - name: history
+ in: query
+ required: false
+ type: string
+ description: >
+ An optional JSON object with a history of chat messages.
+ It should be an array of objects that have two string properties: `role` being one of `human` or `ai`, and `mÌessage` being the message content.
+ example: "[{\"role\":\"human\",\"message\":\"Hello AI!\"},{\"role\":\"ai\",\"message\":\"Hello Human!\"}]"
+ responses:
+ 200:
+ description: "OK: Successful operation."
+ schema:
+ $ref: "#/definitions/ChatResponse"
+ 401:
+ description: "Unauthorized: Missing authorization header."
+ 403:
+ description: "Unauthorized: insufficient permissions."
+ 422:
+ description: "Unprocessable Entity: Invalid or bad parameter provided."
##############################################################################
# Endpoint - Reports
@@ -7097,13 +7148,18 @@ paths:
- name: quota_media
in: body
type: integer
- required: true
+ required: false
description: "The maxium size of media objects."
- name: quota_people
in: body
type: integer
- required: true
+ required: false
description: "The maxium number of people."
+ - name: min_role_ai
+ in: body
+ type: integer
+ required: false
+ description: "The minimum user role required to use the chat endpoint."
tags:
- trees
summary: "Create a new empty tree."
@@ -7117,6 +7173,8 @@ paths:
$ref: "#/definitions/Tree"
401:
description: "Unauthorized: Missing authorization header."
+ 403:
+ description: "Unauthorized: insufficient permissions."
404:
description: "Not found: tree does not exist."
422:
@@ -9961,7 +10019,7 @@ definitions:
description: "Indicates whether the server is using a task queue for long running operations."
type: boolean
example: false
- has_ocr:
+ ocr:
description: "Indicates whether the server supports text recognition (OCR)."
type: boolean
example: false
@@ -9973,6 +10031,14 @@ definitions:
example:
- eng
- deu
+ semantic_search:
+ description: "Indicates whether the server supports semantic search."
+ type: boolean
+ example: false
+ chat:
+ description: "Indicates whether the server supports AI chat."
+ type: boolean
+ example: false
surnames:
description: "A list of all surnames found in the database."
@@ -10532,6 +10598,17 @@ definitions:
type: number
example: 5.522300827719273
+##############################################################################
+# Model - ChatResponse
+##############################################################################
+
+ ChatResponse:
+ type: object
+ properties:
+ response:
+ type: string
+ example: "I don't know."
+
##############################################################################
# Model - Living
##############################################################################
@@ -10846,3 +10923,7 @@ definitions:
description: "Whether the tree is enabled."
type: boolean
example: true
+ min_role_ai:
+ description: "The minimum user role required to use the chat endpoint."
+ type: integer
+ example: 5
diff --git a/pyproject.toml b/pyproject.toml
index ae6e80b7..207759b6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -42,6 +42,9 @@ dependencies = [
"sifts>=0.8.3",
]
+[project.optional-dependencies]
+ai = ["sentence-transformers", "openai"]
+
[project.urls]
homepage = "https://github.com/gramps-project/gramps-web-api"
repository = "https://github.com/gramps-project/gramps-web-api"
diff --git a/semantic_index.txt b/semantic_index.txt
new file mode 100644
index 00000000..9fbc3039
--- /dev/null
+++ b/semantic_index.txt
@@ -0,0 +1,62492 @@
+============================= test session starts ==============================
+platform linux -- Python 3.12.3, pytest-8.2.2, pluggy-1.5.0
+rootdir: /home/david/Dokumente/Code/gramps/web-api
+plugins: celery-1.0.1, docker-tools-3.1.3, anyio-4.4.0
+collected 1 item
+
+tests/test_endpoints/test_search_semantic.py Starte Import, Importiere Daten...
+Import abgeschlossen...
+Type: person
+Gramps ID: I0044
+Gender: male
+Name: Lewis Anderson Garner von ZieliĆski Sr
+Also Known As: Louis Garner
+Other Name: Louie Garner
+Birth: 1855-06-21 in Great Falls, MT, USA - Birth of Garner, Lewis Anderson
+Death: 1911-06-28 in Twin Falls, Twin Falls, ID, USA - Death of Garner, Lewis Anderson
+Burial: 1911-07-01 in Twin Falls, Twin Falls, ID, USA - Burial of Garner, Lewis Anderson
+
+Type: person
+Gramps ID: I0552
+Gender: female
+Name: Martha Nielsen
+
+Type: person
+Gramps ID: I1370
+Gender: male
+Name: Armand E. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Armand E.
+
+Type: person
+Gramps ID: I1487
+Gender: female
+Name: Mary ĐДЎĐČДЎДĐČ
+
+Type: person
+Gramps ID: I0342
+Gender: male
+Name: Christopher Randall Floyd
+Birth: 1985-04-18 in Chillicothe, OH, USA - Birth of Floyd, Christopher Randall
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1776
+Gender: male
+Name: Niall Caldwell
+Birth: 1985 - Birth of Caldwell, Niall
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0665
+Gender: male
+Name: Daniel Burton WĂłjcik
+Birth: 1949-08-25 - Birth of WĂłjcik, Daniel Burton
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0667
+Gender: male
+Name: Edward ĐĐŸŃŃлОŃĐžĐœ
+
+Type: person
+Gramps ID: I0612
+Gender: male
+Name: Harmonas II Oliver
+Death in Napa, Napa, CA, USA - Death of Oliver, Harmonas II
+
+Type: person
+Gramps ID: I0566
+Gender: female
+Name: Martha ĐĐ»ĐŸĐ±ĐžĐœ
+Birth: 1790-01-29 in Searcy, White, AR, USA - Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Death: 1849-06-27 - Death of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Burial: 1849-06-29 in Payson, Gila, AZ, USA - Burial of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+
+Type: person
+Gramps ID: I1087
+Gender: male
+Name: Kevin Wayne West
+Birth: 1989-05-05 in Rockland, ME, USA - Birth of West, Kevin Wayne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1384
+Gender: female
+Name: Matilda Neal
+Birth: 1877-02-09 in McAllen, Hidalgo, TX, USA - Birth of Neal, Matilda
+Death: 1946 - Death of Neal, Matilda
+
+Type: person
+Gramps ID: I0229
+Gender: male
+Name: William Walker Garrett
+Birth: 1890-11-07 - Birth of Garrett, William Walker
+
+Type: person
+Gramps ID: I0569
+Gender: male
+Name: Joseph Hopkins
+Birth: 1786-05-11 in Lawrenceburg, TN, USA - Birth of Hopkins, Joseph
+Death in Sandusky, OH, USA - Death of Hopkins, Joseph
+
+Type: person
+Gramps ID: I1505
+Gender: male
+Name: Abraham Douglas
+
+Type: person
+Gramps ID: I1793
+Gender: female
+Name: Mary Howell
+Birth: 1945-11-17 in Oneonta, Otsego, NY, USA - Birth of Howell, Mary
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0180
+Gender: female
+Name: Kathryn Mary Garner
+Birth: 1952-09-10 in Ottawa, La Salle, IL, USA - Birth of Garner, Kathryn Mary
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0679
+Gender: female
+Name: Hannah Christiansen
+Birth: 1688-02-04 in Lake County, IL, USA - Birth of Christiansen, Hannah
+Death: 1742-06-26 in Red Bluff, Tehama, CA, USA - Death of Christiansen, Hannah
+
+Type: person
+Gramps ID: I1284
+Gender: male
+Name: Peter Shelton
+
+Type: person
+Gramps ID: I1982
+Gender: female
+Name: Martha Morris
+Birth: 1837 in Palatka, Putnam, FL, USA - Birth of Morris, Martha
+
+Type: person
+Gramps ID: I0470
+Gender: male
+Name: James Park
+
+Type: person
+Gramps ID: I1725
+Gender: male
+Name: Mordica Rodriquez
+Birth: 1772-01-06 in La Follette, TN, USA - Birth of Rodriquez, Mordica
+Death: 1853-07 in Augusta, ME, USA - Death of Rodriquez, Mordica
+
+Type: person
+Gramps ID: I0122
+Gender: male
+Name: Jeffrey Brian Hale
+Birth: 1988-12-23 in Jefferson City, MO, USA - Birth of Hale, Jeffrey Brian
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0988
+Gender: male
+Name: John Howell
+Birth in Loveland, Larimer, CO, USA - Birth of Howell, John
+Death in Del Rio, Val Verde, TX, USA - Death of Howell, John
+Burial in Del Rio, Val Verde, TX, USA - Burial of Howell, John
+
+Type: person
+Gramps ID: I1039
+Gender: female
+Name: Margaret Ann Garner
+Birth: 1951-07-18 in Ottawa, La Salle, IL, USA - Birth of Garner, Margaret Ann
+Death: 1952-02-10 in Ottawa, La Salle, IL, USA - Death of Garner, Margaret Ann
+
+Type: person
+Gramps ID: I1218
+Gender: male
+Name: Elias Webb
+
+Type: person
+Gramps ID: I0127
+Gender: male
+Name: David Luther Warner
+Birth: 1921-05-19 in Portland, ME, USA - Birth of Warner, David Luther
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1519
+Gender: female
+Name: Christena Wiseman Larson
+Death: 1834-11-18 in Riverside, CA, USA - Death of Larson, Christena Wiseman
+Burial: 1834-11-20 in Angola, Steuben, IN, USA - Burial of Larson, Christena Wiseman
+
+Type: person
+Gramps ID: I0904
+Gender: male
+Name: Steven Joseph Boucher
+Birth: 1963-07-17 in Vallejo, Solano, CA, USA - Birth of Boucher, Steven Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1049
+Gender: female
+Name: ?? Harper
+
+Type: person
+Gramps ID: I1523
+Gender: female
+Name: Elizabeth Douglas
+
+Type: person
+Gramps ID: I1932
+Gender: female
+Name: Elizabeth Reeves
+
+Type: person
+Gramps ID: I0631
+Gender: female
+Name: Cecile Elizabeth Garner
+Birth: 1908-03-13 in McMinnville, TN, USA - Birth of Garner, Cecile Elizabeth
+Death: 1975-03-22 in Baraboo, WI, USA - Death of Garner, Cecile Elizabeth
+Burial in Sterling, Whiteside, IL, USA - Burial of Garner, Cecile Elizabeth
+
+Type: person
+Gramps ID: I0250
+Gender: female
+Name: Kitty Landry
+
+Type: person
+Gramps ID: I0313
+Gender: female
+Name: Maria Christine Mortensen
+Birth: 1981-07-01 in Mount Vernon, OH, USA - Birth of Mortensen, Maria Christine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0995
+Gender: female
+Name: Mary Ann Delgado
+Birth: 1825 in Madera, Madera, CA, USA - Birth of Delgado, Mary Ann
+Death in London, Laurel, KY, USA - Death of Delgado, Mary Ann
+
+Type: person
+Gramps ID: I1232
+Gender: male
+Name: John McCrea Webb
+Birth: 1837 in Decatur, Adams, IN, USA - Birth of Webb, John McCrea
+
+Type: person
+Gramps ID: I1599
+Gender: male
+Name: Samuel Sr. Benson
+Birth: 1740-03 - Birth of Benson, Samuel Sr.
+
+Type: person
+Gramps ID: I0534
+Gender: male
+Name: John GonzĂĄlez
+
+Type: person
+Gramps ID: I0912
+Gender: male
+Name: Daniel Arthur Warner
+Birth: 1992-12-29 in Forest City, NC, USA - Birth of Warner, Daniel Arthur
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0138
+Gender: female
+Name: Mary Grace Elizabeth Warner
+Birth: 1906-09-05 in Central City, Muhlenberg, KY, USA - Birth of Warner, Mary Grace Elizabeth
+Death: 1993-06-06 in Sevierville, TN, USA - Death of Warner, Mary Grace Elizabeth
+Burial: 1993-06-08 in Wenatchee, WA, USA - Burial of Warner, Mary Grace Elizabeth
+
+Type: person
+Gramps ID: I2072
+Gender: male
+Name: Joseph
+
+Type: person
+Gramps ID: I0589
+Gender: female
+Name: Anna June Kristensen
+Birth: 1899-09-19 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Anna June
+Death: 1988-11-17 in Ottawa, La Salle, IL, USA - Death of Kristensen, Anna June
+Burial: 1988-11-19 in Lexington, NC, USA - Burial of Kristensen, Anna June
+
+Type: person
+Gramps ID: I1406
+Gender: male
+Name: John James Page
+Birth in Crescent City North, CA, USA - Birth of Page, John James
+Death: 1943-11-18 in Troy, Pike, AL, USA - Death of Page, John James
+Burial: 1943-11-20 in Oskaloosa, Mahaska, IA, USA - Burial of Page, John James
+
+Type: person
+Gramps ID: I0139
+Gender: male
+Name: Joseph William MarĂn
+Birth: 1920-10-27 in Ottawa, La Salle, IL, USA - Birth of MarĂn, Joseph William
+Death in Ottawa, La Salle, IL, USA - Death of MarĂn, Joseph William
+Burial in Ottawa, La Salle, IL, USA - Burial of MarĂn, Joseph William
+
+Type: person
+Gramps ID: I0143
+Gender: female
+Name: Marylou ĐДлŃĐœĐžĐșĐŸĐČ
+Birth: 1930-05-20 in Batavia, Genesee, NY, USA - Birth of ĐДлŃĐœĐžĐșĐŸĐČ, Marylou
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0199
+Gender: male
+Name: Albert MarĂn
+Birth: 1895-08-27 - Birth of MarĂn, Albert
+Death: 1965-06-14 - Death of MarĂn, Albert
+Burial in Mitchell, SD, USA - Burial of MarĂn, Albert
+
+Type: person
+Gramps ID: I1816
+Gender: male
+Name: Duncan
+Death: um 1996 in Columbus, MS, USA - Death of Duncan
+
+Type: person
+Gramps ID: I0324
+Gender: female
+Name: Laurie Ann Nguyen
+Birth: 1981-07-04 in Ottawa, La Salle, IL, USA - Birth of Nguyen, Laurie Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1362
+Gender: male
+Name: ?? Mack
+
+Type: person
+Gramps ID: I1884
+Gender: male
+Name: George Payne
+
+Type: person
+Gramps ID: I0097
+Gender: male
+Name: Thomas Fernandez
+Birth: 1825-11-27 in Escanaba, MI, USA - Birth of Fernandez, Thomas
+Death: 1902-11-26 in Ottawa, La Salle, IL, USA - Death of Fernandez, Thomas
+Burial: 1902 in The Villages, Sumter, FL, USA - Burial of Fernandez, Thomas
+
+Type: person
+Gramps ID: I0549
+Gender: male
+Name: Jonathan Burns
+Death in Guayama, PR, USA - Death of Burns, Jonathan
+
+Type: person
+Gramps ID: I0781
+Gender: male
+Name: Jason Earl Wheeler
+Birth: 1977-01-04 in Ottawa, La Salle, IL, USA - Birth of Wheeler, Jason Earl
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1547
+Gender: male
+Name: Walter Crockett James
+Birth in La Follette, TN, USA - Birth of James, Walter Crockett
+
+Type: person
+Gramps ID: I1886
+Gender: female
+Name: Dorcas C. Lawrence
+
+Type: person
+Gramps ID: I0333
+Gender: male
+Name: Matthew Vincent Alvarado
+Birth: 1986-04-05 in Rockland, ME, USA - Birth of Alvarado, Matthew Vincent
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0926
+Gender: male
+Name: Bendicht Blanco
+Birth: 1555 in Middlesborough, KY, USA - Birth of Blanco, Bendicht
+
+Type: person
+Gramps ID: I0785
+Gender: male
+Name: Terry Lee Garrett
+Birth: 1956-04-14 in Ottawa, La Salle, IL, USA - Birth of Garrett, Terry Lee
+Death: 1998-04-23 - Death of Garrett, Terry Lee
+
+Type: person
+Gramps ID: I0715
+Gender: female
+Name: Mary Jane Rhodes
+Birth: 1922-05-16 in Ottawa, La Salle, IL, USA - Birth of Rhodes, Mary Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2096
+Gender: female
+Name: Leah Moreno
+Birth: 1794-09-10 - Birth of Moreno, Leah
+Death: 1875-11-05 - Death of Moreno, Leah
+
+Type: person
+Gramps ID: I0557
+Gender: female
+Name: Virginia Margaret Rice
+Birth: 1723 in Arkadelphia, Clark, AR, USA - Birth of Rice, Virginia Margaret
+Death: 1780 in Lafayette, Lafayette, LA, USA - Death of Rice, Virginia Margaret
+Burial in Lafayette, Lafayette, LA, USA - Burial of Rice, Virginia Margaret
+
+Type: person
+Gramps ID: I0935
+Gender: male
+Name: Peter Jenkins
+Birth: 1607 - Birth of Jenkins, Peter
+Death: 1680-10-14 - Death of Jenkins, Peter
+
+Type: person
+Gramps ID: I1376
+Gender: female
+Name: Elizabeth Page
+Birth: 1841 in Watertown, SD, USA - Birth of Page, Elizabeth
+Death: 1915 - Death of Page, Elizabeth
+Death: 1887-04-07 in Oakland, Alameda, CA, USA - Death of Garner, Anderson (Witness)
+
+Type: person
+Gramps ID: I1429
+Gender: female
+Name: Evelyn Cross
+Birth in Racine, WI, USA - Birth of Cross, Evelyn
+
+Type: person
+Gramps ID: I1491
+Gender: male
+Name: Jacob Douglas
+Birth: 1813-08-21 in Port Angeles, WA, USA - Birth of Douglas, Jacob
+Death in Dixon, Lee, IL, USA - Death of Douglas, Jacob
+
+Type: person
+Gramps ID: I1633
+Gender: male
+Name: Dr. Charles J. ĐĐłĐŸŃĐŸĐČ
+Death in Troy, Pike, AL, USA - Death of ĐĐłĐŸŃĐŸĐČ, Dr. Charles J.
+
+Type: person
+Gramps ID: I0663
+Gender: male
+Name: James WĂłjcik
+Birth: 1932-03-24 - Birth of WĂłjcik, James
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0722
+Gender: female
+Name: Jane Coppage Payne
+Birth in Laredo, Webb, TX, USA - Birth of Payne, Jane Coppage
+Death: 1873-06-07 in Norfolk, NE, USA - Death of Payne, Jane Coppage
+Burial: 1873-06-07 in Ottawa, La Salle, IL, USA - Burial of Payne, Jane Coppage
+
+Type: person
+Gramps ID: I0611
+Gender: male
+Name: Harmonas I Oliver
+Birth in Rockford, Winnebago, IL, USA - Birth of Oliver, Harmonas I
+Death in Napa, Napa, CA, USA - Death of Oliver, Harmonas I
+Burial in Napa, Napa, CA, USA - Burial of Oliver, Harmonas I
+
+Type: person
+Gramps ID: I1024
+Gender: male
+Name: John Knudsen
+Birth: 1325 in Atchison, Atchison, KS, USA - Birth of Knudsen, John
+Death: 1368 - Death of Knudsen, John
+
+Type: person
+Gramps ID: I1496
+Gender: male
+Name: Samuel Douglas
+Birth: 1815-06-19 in Port Angeles, WA, USA - Birth of Douglas, Samuel
+
+Type: person
+Gramps ID: I0171
+Gender: female
+Name: Lucinda Elinor ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1958-04-12 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Lucinda Elinor
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2038
+Gender: female
+Name: Janelle Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1971
+Gender: female
+Name: Eliza Jane Gonzalez
+
+Type: person
+Gramps ID: I0803
+Gender: female
+Name: Catherine Boucher
+Birth: 1816 in Andrews, Andrews, TX, USA - Birth of Boucher, Catherine
+Death: 1857 in Hinesville, Liberty, GA, USA - Death of Boucher, Catherine
+Burial: 1857 in Urbana, OH, USA - Burial of Boucher, Catherine
+
+Type: person
+Gramps ID: I1509
+Gender: unknown
+Name: Douglas
+
+Type: person
+Gramps ID: I1915
+Gender: female
+Name: Mary Polly Woods
+Birth: 1777-11-29 in Waterloo-Cedar Falls, IA, USA - Birth of Woods, Mary Polly
+Death: 1854-11-15 in Indiana, PA, USA - Death of Woods, Mary Polly
+
+Type: person
+Gramps ID: I1152
+Gender: male
+Name: John Curtis
+
+Type: person
+Gramps ID: I1216
+Gender: male
+Name: Robert ĐĄĐŸŃĐŸĐșĐžĐœ
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1392
+Gender: female
+Name: Sarah Jankowski
+Birth: 1874-12-08 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Sarah
+Death: 1948-02-17 in Troy, Pike, AL, USA - Death of Jankowski, Sarah
+
+Type: person
+Gramps ID: I0124
+Gender: male
+Name: Stephen Gerard Garner
+Birth: 1983-10-05 in Ottawa, La Salle, IL, USA - Birth of Garner, Stephen Gerard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0365
+Gender: female
+Name: Flora Alice Farmer
+Birth: 1858-02-19 in Palatka, Putnam, FL, USA - Birth of Farmer, Flora Alice
+
+Type: person
+Gramps ID: I0807
+Gender: female
+Name: Monica ĐĐžĐșĐžŃĐžĐœ
+Birth in Lexington, Fayette, KY, USA - Birth of ĐĐžĐșĐžŃĐžĐœ, Monica
+Death in Mountain Home, White, AR, USA - Death of ĐĐžĐșĐžŃĐžĐœ, Monica
+
+Type: person
+Gramps ID: I1396
+Gender: female
+Name: Isabella Belle Jankowski
+Birth: 1878-03-20 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Isabella Belle
+Death: 1925-03-31 in Troy, Pike, AL, USA - Death of Jankowski, Isabella Belle
+
+Type: person
+Gramps ID: I0013
+Gender: male
+Name: Fred Loren Warner
+Birth: 1956-11-27 in Ottawa, La Salle, IL, USA - Birth of Warner, Fred Loren
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0905
+Gender: female
+Name: Arlene Nelson
+
+Type: person
+Gramps ID: I0016
+Gender: female
+Name: Anne Therese Garner
+Birth: 1950-09-10 in Ottawa, La Salle, IL, USA - Birth of Garner, Anne Therese
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0192
+Gender: male
+Name: John Raymond Webb
+Birth: 1908-12-15 in Bridgeport, Fairfield, CT, USA - Birth of Webb, John Raymond
+Death: 1996-02-07 in Longview-Kelso, WA, USA - Death of Webb, John Raymond
+Burial: 1996-02-10 in Warrensburg, MO, USA - Burial of Webb, John Raymond
+
+Type: person
+Gramps ID: I2065
+Gender: male
+Name: Ălvarez
+
+Type: person
+Gramps ID: I0375
+Gender: male
+Name: Michael J. Boucher
+Birth: 1883-05-10 in Ottawa, La Salle, IL, USA - Birth of Boucher, Michael J.
+
+Type: person
+Gramps ID: I0814
+Gender: female
+Name: Rose Mary Boucher
+Birth: 1926-09-15 in Philadelphia, PA, USA - Birth of Boucher, Rose Mary
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1230
+Gender: female
+Name: Sarah Margarite Webb
+Birth: 1832 in Rockingham, NC, USA - Birth of Webb, Sarah Margarite
+
+Type: person
+Gramps ID: I0632
+Gender: female
+Name: Helen Bernice Garner
+Birth: 1909-11-05 in Ponca City, OK, USA - Birth of Garner, Helen Bernice
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0815
+Gender: male
+Name: Thomas Hansen
+Birth in Willimantic, Windham, CT, USA - Birth of Hansen, Thomas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1403
+Gender: male
+Name: Thomas ЧДŃĐșĐ°ŃĐžĐœ
+Birth: 1883-08-09 - Birth of ЧДŃĐșĐ°ŃĐžĐœ, Thomas
+Death: 1973-12-08 in Troy, Pike, AL, USA - Death of ЧДŃĐșĐ°ŃĐžĐœ, Thomas
+
+Type: person
+Gramps ID: I0769
+Gender: male
+Name: Thomas Simard
+Birth in Sweetwater, Nolan, TX, USA - Birth of Simard, Thomas
+
+Type: person
+Gramps ID: I1529
+Gender: female
+Name: Leonnah Cummings
+
+Type: person
+Gramps ID: I1673
+Gender: male
+Name: Henry Blanco
+Death: 1847 - Death of Blanco, Henry
+
+Type: person
+Gramps ID: I0914
+Gender: male
+Name: Dennis ĐĄĐ”ŃгДДĐČ
+
+Type: person
+Gramps ID: I1531
+Gender: male
+Name: Robert James
+Birth: 1729 - Birth of James, Robert
+
+Type: person
+Gramps ID: I0022
+Gender: female
+Name: Abigail Ball
+Birth: 1869-07-08 in Oxnard, Ventura, CA, USA - Birth of Ball, Abigail
+Death: 1942-04-21 in Kokomo, Howard, IN, USA - Death of Ball, Abigail
+Burial: 1942-04-23 in Henderson, NC, USA - Burial of Ball, Abigail
+
+Type: person
+Gramps ID: I1239
+Gender: male
+Name: James Marshall Webb
+Birth: 1856-12-04 in Eau Claire, WI, USA - Birth of Webb, James Marshall
+Death: 1938-08-04 in Pullman, WA, USA - Death of Webb, James Marshall
+Burial: 1938-08-06 in Seaford, Sussex, DE, USA - Burial of Webb, James Marshall
+
+Type: person
+Gramps ID: I1240
+Gender: male
+Name: Charles Edward Webb
+Birth: 1901-09-23 in Reno-Sparks, NV, USA - Birth of Webb, Charles Edward
+
+Type: person
+Gramps ID: I1874
+Gender: male
+Name: Michael Reed
+Birth in El Centro, Imperial, CA, USA - Birth of Reed, Michael
+
+Type: person
+Gramps ID: I0776
+Gender: female
+Name: Harriet Soto
+
+Type: person
+Gramps ID: I1537
+Gender: male
+Name: Mr. Page
+
+Type: person
+Gramps ID: I0704
+Gender: female
+Name: Elizabeth ĐĐ°ŃĐČДДĐČ
+Birth in Albany, Dougherty, GA, USA - Birth of ĐĐ°ŃĐČДДĐČ, Elizabeth
+Death: 1829-07-19 in Menomonie, WI, USA - Death of ĐĐ°ŃĐČДДĐČ, Elizabeth
+
+Type: person
+Gramps ID: I1313
+Gender: male
+Name: Johann Adam Frazier
+Birth: 1746 - Birth of Frazier, Johann Adam
+
+Type: person
+Gramps ID: I2082
+Gender: female
+Name: Lelia L. Moreno
+Birth: 1858-12-12 - Birth of Moreno, Lelia L.
+
+Type: person
+Gramps ID: I0545
+Gender: female
+Name: Frances Christiansen
+Death: 1796-07-06 - Death of Christiansen, Frances
+
+Type: person
+Gramps ID: I0492
+Gender: male
+Name: Anthony David Lane
+Birth: 1972-07-12 in Sierra Vista, Cochise, AZ, USA - Birth of Lane, Anthony David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0645
+Gender: male
+Name: George ĐŻĐșĐŸĐČлДĐČ
+Burial in Sterling, Whiteside, IL, USA - Burial of ĐŻĐșĐŸĐČлДĐČ, George
+
+Type: person
+Gramps ID: I0053
+Gender: female
+Name: Frances Lucille (Babe) Reed
+Birth: 1902-07-08 in Worthington, MN, USA - Birth of Reed, Frances Lucille (Babe)
+Death: 1988-08-09 in Worthington, MN, USA - Death of Reed, Frances Lucille (Babe)
+Burial: 1988-08-11 in Worthington, MN, USA - Burial of Reed, Frances Lucille (Babe)
+
+Type: person
+Gramps ID: I0922
+Gender: male
+Name: Mr. Blanco
+Birth: um 1462 in Albany, OR, USA - Birth of Blanco, Mr.
+
+Type: person
+Gramps ID: I0924
+Gender: male
+Name: Hans Blanco
+Birth: 1528 in Traverse City, MI, USA - Birth of Blanco, Hans
+
+Type: person
+Gramps ID: I1364
+Gender: male
+Name: ?? Blais
+
+Type: person
+Gramps ID: I0098
+Gender: female
+Name: Catherine Ortega
+Birth: 1843 in Loveland, Larimer, CO, USA - Birth of Ortega, Catherine
+Death: 1876 - Death of Ortega, Catherine
+
+Type: person
+Gramps ID: I1625
+Gender: male
+Name: Henry Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Henry
+
+Type: person
+Gramps ID: I1890
+Gender: female
+Name: Lucretia Payne
+
+Type: person
+Gramps ID: I0212
+Gender: male
+Name: Paul Eugene Cruz
+Birth: 1918-11-03 - Birth of Cruz, Paul Eugene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1959
+Gender: male
+Name: Robert Warner
+
+Type: person
+Gramps ID: I2098
+Gender: female
+Name: Delilah Moreno
+
+Type: person
+Gramps ID: I0659
+Gender: male
+Name: William Arthur Andrews
+Birth: 1933-11-24 - Birth of Andrews, William Arthur
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0457
+Gender: female
+Name: Eleanor Irene Page
+Birth: 1921-03-25 in Bozeman, MT, USA - Birth of Page, Eleanor Irene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1019
+Gender: female
+Name: Bertrama Huff
+Birth: 1220 - Birth of Huff, Bertrama
+
+Type: person
+Gramps ID: I1078
+Gender: male
+Name: Justin Matthew Weaver
+Birth: 1995-06-07 in Gainesville, Alachua, FL, USA - Birth of Weaver, Justin Matthew
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0408
+Gender: male
+Name: Gary ĐĐ»ŃĐžĐœ
+Birth: 1950-05-12 - Birth of ĐĐ»ŃĐžĐœ, Gary
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0460
+Gender: male
+Name: John Henry Bergeron
+Death in Richmond, Madison, KY, USA - Death of Bergeron, John Henry
+Burial in Evansville, Vanderburgh, IN, USA - Burial of Bergeron, John Henry
+
+Type: person
+Gramps ID: I0883
+Gender: female
+Name: Nina Mae Myers
+Birth: 1897 - Birth of Myers, Nina Mae
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0939
+Gender: female
+Name: Margaret Jenkins
+Birth: 1630-02 - Birth of Jenkins, Margaret
+Death: 1708-07-25 - Death of Jenkins, Margaret
+
+Type: person
+Gramps ID: I0562
+Gender: female
+Name: Elizabeth Nielsen
+
+Type: person
+Gramps ID: I1026
+Gender: male
+Name: John Knudsen
+Birth: 1345 - Birth of Knudsen, John
+Death: 1388 - Death of Knudsen, John
+
+Type: person
+Gramps ID: I1641
+Gender: male
+Name: Merritt ЧДŃĐșĐ°ŃĐžĐœ
+
+Type: person
+Gramps ID: I1969
+Gender: female
+Name: Ann Louisa Snyder
+Death: 1840-02-20 - Death of Snyder, Ann Louisa
+
+Type: person
+Gramps ID: I1643
+Gender: female
+Name: D. WiĆniewski
+
+Type: person
+Gramps ID: I0173
+Gender: female
+Name: Julia Marie Osborne
+Birth: 1967-10-06 - Birth of Osborne, Julia Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1437
+Gender: male
+Name: Morin
+Death in Albany, Albany, NY, USA - Death of Morin
+
+Type: person
+Gramps ID: I1645
+Gender: female
+Name: Martha Andersen
+
+Type: person
+Gramps ID: I0467
+Gender: male
+Name: William Philip Cunningham
+Birth: 1765-04-05 in Woodward, OK, USA - Birth of Cunningham, William Philip
+Death: 1871-04-28 in Morristown, TN, USA - Death of Cunningham, William Philip
+Burial: 1871-04-29 in Brainerd, MN, USA - Burial of Cunningham, William Philip
+
+Type: person
+Gramps ID: I1719
+Gender: female
+Name: Mary Ann Rodriquez
+Birth: 1823-06-17 in MayagĂŒez, PR, USA - Birth of Rodriquez, Mary Ann
+
+Type: person
+Gramps ID: I1844
+Gender: male
+Name: Poulin
+
+Type: person
+Gramps ID: I0072
+Gender: male
+Name: John Piotrowski
+Birth: 1613 in Daphne, Baldwin, AL, USA - Birth of Piotrowski, John
+Death: 1670 in Ashtabula, OH, USA - Death of Piotrowski, John
+
+Type: person
+Gramps ID: I1846
+Gender: male
+Name: Owen Reed
+Birth in Kearney, NE, USA - Birth of Reed, Owen
+
+Type: person
+Gramps ID: I0804
+Gender: male
+Name: Patrick Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, Patrick
+Death in Port St, Lucie, FL, USA - Death of Boucher, Patrick
+Burial in Celina, OH, USA - Burial of Boucher, Patrick
+
+Type: person
+Gramps ID: I1581
+Gender: male
+Name: John Benson
+Birth: 1707-06-10 in Hope, Hempstead, AR, USA - Birth of Benson, John
+
+Type: person
+Gramps ID: I1102
+Gender: female
+Name: Isabella Guzman
+Birth: um 1695 in McAlester, OK, USA - Birth of Guzman, Isabella
+Death: nach 1700 in McAlester, OK, USA - Death of Guzman, Isabella
+
+Type: person
+Gramps ID: I1585
+Gender: female
+Name: Martha Ellen Benson
+Birth: 1719-09-10 in Waterloo-Cedar Falls, IA, USA - Birth of Benson, Martha Ellen
+
+Type: person
+Gramps ID: I1220
+Gender: male
+Name: Alex Webb
+
+Type: person
+Gramps ID: I1923
+Gender: male
+Name: Esiquio Pelletier
+
+Type: person
+Gramps ID: I0686
+Gender: male
+Name: Robert Lefebvre
+Birth: 1511 in Phoenix, Maricopa, AZ, USA - Birth of Lefebvre, Robert
+Death: 1558-10-20 in Caguas, PR, USA - Death of Lefebvre, Robert
+
+Type: person
+Gramps ID: I0760
+Gender: female
+Name: Ursula Saunders
+Birth: um 1680 in Greenville, MS, USA - Birth of Saunders, Ursula
+Death: 1740 in Bucyrus, OH, USA - Death of Saunders, Ursula
+
+Type: person
+Gramps ID: I1857
+Gender: male
+Name: Terrence (TyNed) Reed
+Birth in Greeley, Weld, CO, USA - Birth of Reed, Terrence (TyNed)
+Death: um 1940 in Centralia, Marion, IL, USA - Death of Reed, Terrence (TyNed)
+
+Type: person
+Gramps ID: I1344
+Gender: female
+Name: Amanda E. Jiménez
+Birth: 1835-07-13 - Birth of Jiménez, Amanda E.
+Death: 1883-04-25 in Marquette, MI, USA - Death of Jiménez, Amanda E.
+Burial: 1835-07-15 in Stillwater, OK, USA - Burial of Jiménez, Amanda E.
+
+Type: person
+Gramps ID: I1735
+Gender: male
+Name: Dean Serrano
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2061
+Gender: male
+Name: Marion Andersen
+
+Type: person
+Gramps ID: I0689
+Gender: female
+Name: Mary Gregory
+
+Type: person
+Gramps ID: I1737
+Gender: male
+Name: MartĂnez
+
+Type: person
+Gramps ID: I0478
+Gender: female
+Name: Martha Ellen M. Benson
+Birth: um 1747 in Laredo, Webb, TX, USA - Birth of Benson, Martha Ellen M.
+Death: vor 1806 in Davenport, Scott, IA, USA - Death of Benson, Martha Ellen M.
+
+Type: person
+Gramps ID: I0583
+Gender: female
+Name: Catherine Virginia Kristensen
+Birth: 1892-02-22 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Catherine Virginia
+Death: 1926-03-01 - Death of Kristensen, Catherine Virginia
+
+Type: person
+Gramps ID: I1741
+Gender: female
+Name: Ellen Boucher
+
+Type: person
+Gramps ID: I0486
+Gender: male
+Name: Thomas Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, Thomas
+Death in Andrews, Andrews, TX, USA - Death of Boucher, Thomas
+Burial in Somerset, PA, USA - Burial of Boucher, Thomas
+
+Type: person
+Gramps ID: I0538
+Gender: female
+Name: Annabell Gordon ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I1308
+Gender: female
+Name: Elisabeth Margaretha Morgan
+Birth: 1742 - Birth of Morgan, Elisabeth Margaretha
+
+Type: person
+Gramps ID: I1407
+Gender: female
+Name: Margaret Mcdaniel
+Birth in Rexburg, Madison, ID, USA - Birth of Mcdaniel, Margaret
+
+Type: person
+Gramps ID: I2006
+Gender: female
+Name: Mary Barker
+
+Type: person
+Gramps ID: I2077
+Gender: male
+Name: Solon Moreno
+Birth: 1832-12-26 - Birth of Moreno, Solon
+
+Type: person
+Gramps ID: I1943
+Gender: male
+Name: David Foster
+Birth: um 1653 - Birth of Foster, David
+
+Type: person
+Gramps ID: I1062
+Gender: male
+Name: Joshua David ĐĄĐ”ŃгДДĐČ
+Birth: 1984-04-07 in Ottawa, La Salle, IL, USA - Birth of ĐĄĐ”ŃгДДĐČ, Joshua David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0050
+Gender: female
+Name: Eleanor (Nellie) Therese Landry
+Birth: 1864-12 in Worthington, MN, USA - Birth of Landry, Eleanor (Nellie) Therese
+Death: 1935-12-12 in Adjuntas, PR, USA - Death of Landry, Eleanor (Nellie) Therese
+Burial: 1935-12-14 in Worthington, MN, USA - Burial of Landry, Eleanor (Nellie) Therese
+
+Type: person
+Gramps ID: I0390
+Gender: male
+Name: Michael Boucher
+Death: 1920-02-18 - Death of Boucher, Michael
+
+Type: person
+Gramps ID: I1413
+Gender: male
+Name: Dean McCormick
+
+Type: person
+Gramps ID: I0095
+Gender: male
+Name: Michael Boucher
+Birth: 1820 in Andrews, Andrews, TX, USA - Birth of Boucher, Michael
+Death: 1859-01-09 in Beaumont, Jefferson, TX, USA - Death of Boucher, Michael
+Burial: 1859 in Lexington, NE, USA - Burial of Boucher, Michael
+
+Type: person
+Gramps ID: I1248
+Gender: male
+Name: Eden Warner
+
+Type: person
+Gramps ID: I0708
+Gender: female
+Name: Mary Reed
+Birth: 1839-03-08 in Mount Sterling, Montgomery, KY, USA - Birth of Reed, Mary
+Death in Mount Sterling, Montgomery, KY, USA - Death of Reed, Mary
+
+Type: person
+Gramps ID: I0496
+Gender: female
+Name: Marie Howell
+Burial in Newberry, SC, USA - Burial of Howell, Marie
+
+Type: person
+Gramps ID: I0398
+Gender: male
+Name: James Reeves
+
+Type: person
+Gramps ID: I1888
+Gender: male
+Name: William Ford
+
+Type: person
+Gramps ID: I0335
+Gender: female
+Name: Amber Lynne Warner
+Birth: 1985-05-27 in Bluefield, WV-VA, USA - Birth of Warner, Amber Lynne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0275
+Gender: female
+Name: Ella Mae Harris
+
+Type: person
+Gramps ID: I1016
+Gender: male
+Name: Robert Knudsen
+Birth: 1192 - Birth of Knudsen, Robert
+Death: 1252-12-07 - Death of Knudsen, Robert
+
+Type: person
+Gramps ID: I0661
+Gender: male
+Name: Richard WĂłjcik
+Birth: 1929-08-14 - Birth of WĂłjcik, Richard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0106
+Gender: male
+Name: Robert W. Garner
+Birth: 1826/7-04-24 (Julianisch) in Aberdeen, WA, USA - Birth of Garner, Robert W.
+Death: 1916-02-03 in Portsmouth, OH, USA - Death of Garner, Robert W.
+Burial: 1916-02-05 (Mar25) in Knoxville, TN, USA - Burial of Garner, Robert W.
+Marriage: 1875-04-01 in Paragould, Greene, AR, USA - Marriage of Garner, Lewis Anderson and Martel, Luella Jacques (Witness)
+
+Type: person
+Gramps ID: I0795
+Gender: female
+Name: Julia Pena
+
+Type: person
+Gramps ID: I0410
+Gender: male
+Name: Timothy Ryan ĐĐ»ŃĐžĐœ
+Birth: 1981-03 in Ottawa, La Salle, IL, USA - Birth of ĐĐ»ŃĐžĐœ, Timothy Ryan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1323
+Gender: male
+Name: Johann Adam Beaulieu
+Birth: 1717 - Birth of Beaulieu, Johann Adam
+Death: 1803 - Death of Beaulieu, Johann Adam
+
+Type: person
+Gramps ID: I1908
+Gender: male
+Name: William ĐĐŒĐžŃŃОДĐČ
+Birth: 1768-04-01 in York, PA, USA - Birth of ĐĐŒĐžŃŃОДĐČ, William
+Death: 1853 in New Orleans, Orleans, LA, USA - Death of ĐĐŒĐžŃŃОДĐČ, William
+
+Type: person
+Gramps ID: I0846
+Gender: male
+Name: Rev. Edmund Warner
+Birth in Durant, OK, USA - Birth of Warner, Rev. Edmund
+Death in Naples, Collier, FL, USA - Death of Warner, Rev. Edmund
+
+Type: person
+Gramps ID: I0945
+Gender: female
+Name: Margaret Baker
+Birth: 1667-05 - Birth of Baker, Margaret
+Death: 1741-10-25 - Death of Baker, Margaret
+
+Type: person
+Gramps ID: I0292
+Gender: male
+Name: Robert Warren Warner
+Birth: 1977-04-16 in Santa Rosa-Petaluma, CA, USA - Birth of Warner, Robert Warren
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0356
+Gender: female
+Name: Cora Olive Todd
+Birth: 1889-06-18 - Birth of Todd, Cora Olive
+Death in Nashville, TN, USA - Death of Todd, Cora Olive
+Burial in Shreveport, Caddo, LA, USA - Burial of Todd, Cora Olive
+
+Type: person
+Gramps ID: I1031
+Gender: male
+Name: Christopher Christiansen
+Birth: 1495 - Birth of Christiansen, Christopher
+Death: 1570 - Death of Christiansen, Christopher
+
+Type: person
+Gramps ID: I1207
+Gender: male
+Name: John Diaz
+Death: 1631-02-01 in Redding, Shasta, CA, USA - Death of Diaz, John
+
+Type: person
+Gramps ID: I1650
+Gender: female
+Name: Margaret ĐĐ°Ń
Đ°ŃĐŸĐČ
+
+Type: person
+Gramps ID: I1652
+Gender: male
+Name: Mr. Young
+
+Type: person
+Gramps ID: I1980
+Gender: male
+Name: Cyrus Morris
+Birth: 1832 in Palatka, Putnam, FL, USA - Birth of Morris, Cyrus
+
+Type: person
+Gramps ID: I1390
+Gender: male
+Name: George Jankowski
+Birth: 1847-01-01 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, George
+Death: 1930-02-01 in Troy, Pike, AL, USA - Death of Jankowski, George
+Burial: 1930-02-03 in Point Pleasant, WV, USA - Burial of Jankowski, George
+
+Type: person
+Gramps ID: I0182
+Gender: female
+Name: Bernadette Garner
+Birth: 1957-08-31 in Ottawa, La Salle, IL, USA - Birth of Garner, Bernadette
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1214
+Gender: female
+Name: Louise ĐĄĐŸĐșĐŸĐ»ĐŸĐČ
+
+Type: person
+Gramps ID: I1446
+Gender: female
+Name: Sarah Armstrong
+
+Type: person
+Gramps ID: I0473
+Gender: male
+Name: Col. Charles Alvarado
+Birth in Mineral Wells, Palo Pinto, TX, USA - Birth of Alvarado, Col. Charles
+Death: 1864-02 in Marshall, Harrison, TX, USA - Death of Alvarado, Col. Charles
+Burial: 1864-02 in Marshall, Harrison, TX, USA - Burial of Alvarado, Col. Charles
+
+Type: person
+Gramps ID: I0955
+Gender: male
+Name: George Payne
+Birth: 1747-08-22 in Lock Haven, PA, USA - Birth of Payne, George
+Death: 1821-07-09 in Jackson, MI, USA - Death of Payne, George
+Burial: 1821-07-11 in Jackson, MI, USA - Burial of Payne, George
+
+Type: person
+Gramps ID: I0369
+Gender: female
+Name: Marilyn Jean Webb
+Birth: 1950-03-18 in Ottawa, La Salle, IL, USA - Birth of Webb, Marilyn Jean
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0475
+Gender: male
+Name: Capt.Jacob C. Parent
+Birth in Marshall, MO, USA - Birth of Parent, Capt.Jacob C.
+Death: 1811-11-09 in Cleveland, MS, USA - Death of Parent, Capt.Jacob C.
+Burial: 1811-11-11 in Des Moines, Polk, IA, USA - Burial of Parent, Capt.Jacob C.
+
+Type: person
+Gramps ID: I0580
+Gender: female
+Name: Mary Elizabeth Kristensen
+Birth: 1887-06-14 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Mary Elizabeth
+Death: 1918-10-22 - Death of Kristensen, Mary Elizabeth
+
+Type: person
+Gramps ID: I1045
+Gender: female
+Name: Heather Jo Garner
+Birth: 1972-03-14 - Birth of Garner, Heather Jo
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0191
+Gender: female
+Name: Lucy Mabel Webb
+Birth: 1899-01-20 in La Crosse, WI, USA - Birth of Webb, Lucy Mabel
+Death: 1971-05-10 in Ada, OK, USA - Death of Webb, Lucy Mabel
+Burial: 1971-05-13 in Crawfordsville, Montgomery, IN, USA - Burial of Webb, Lucy Mabel
+
+Type: person
+Gramps ID: I0308
+Gender: male
+Name: Dennis John ĐĐžŃДлДĐČ
+Birth: 1952-07-16 in Fond du Lac, WI, USA - Birth of ĐĐžŃДлДĐČ, Dennis John
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1047
+Gender: male
+Name: Jason Richard Garner
+Birth: 1975-10-20 - Birth of Garner, Jason Richard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1930
+Gender: male
+Name: Mathew Reeves
+
+Type: person
+Gramps ID: I1995
+Gender: female
+Name: Mary Allen
+Birth: 1666-12-07 in Beeville, Bee, TX, USA - Birth of Allen, Mary
+
+Type: person
+Gramps ID: I0860
+Gender: female
+Name: Rosalie Jane Welch
+Birth: 1956-08-03 in Medford, OR, USA - Birth of Welch, Rosalie Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1229
+Gender: male
+Name: William John Webb
+Birth: 1829-07-14 in Rockingham, NC, USA - Birth of Webb, William John
+Death: 1888-04-17 - Death of Webb, William John
+
+Type: person
+Gramps ID: I1458
+Gender: male
+Name: Don Ortiz
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0694
+Gender: male
+Name: ??????? ĐŃĐșĐŸĐČ
+Birth in Sheboygan, WI, USA - Birth of ĐŃĐșĐŸĐČ, ???????
+
+Type: person
+Gramps ID: I1807
+Gender: female
+Name: Hanora ĐŃĐ·ĐœĐ”ŃĐŸĐČ
+Death: 1972-08-08 - Death of ĐŃĐ·ĐœĐ”ŃĐŸĐČ, Hanora
+
+Type: person
+Gramps ID: I0429
+Gender: female
+Name: Hyla Rae ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+Birth: 1973-08-25 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Hyla Rae
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0961
+Gender: female
+Name: Elizabeth Hall
+Death: vor 1745 in Duluth, MN, USA - Death of Hall, Elizabeth
+Burial in Duluth, MN, USA - Burial of Hall, Elizabeth
+
+Type: person
+Gramps ID: I1055
+Gender: male
+Name: William George Jr. DĂez
+Birth: 1972-10-10 - Birth of DĂez, William George Jr.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1868
+Gender: male
+Name: Terry Sandoval
+
+Type: person
+Gramps ID: I0771
+Gender: male
+Name: William Benson
+Birth: 1709-08-10 in Wahpeton, ND, USA - Birth of Benson, William
+
+Type: person
+Gramps ID: I1116
+Gender: female
+Name: Garner
+
+Type: person
+Gramps ID: I0592
+Gender: female
+Name: Judith Ann Manning
+Birth: 1940-09-05 in Ottawa, La Salle, IL, USA - Birth of Manning, Judith Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0821
+Gender: female
+Name: Sarah ĐĐ°ŃĐżĐŸĐČ
+Birth: 1987 in West Helena, Phillips, AR, USA - Birth of ĐĐ°ŃĐżĐŸĐČ, Sarah
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1680
+Gender: female
+Name: Barbara Blanco
+
+Type: person
+Gramps ID: I1945
+Gender: female
+Name: Mary Warner
+Birth: 1679-01-02 in Brownsville, TN, USA - Birth of Warner, Mary
+
+Type: person
+Gramps ID: I0777
+Gender: female
+Name: Katherine ĐĐ”Đ»ĐŸĐČ
+
+Type: person
+Gramps ID: I1068
+Gender: female
+Name: Leigh Ann Hill
+Birth: 1979-01-23 - Birth of Hill, Leigh Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1360
+Gender: male
+Name: ?? Gilbert
+
+Type: person
+Gramps ID: I1619
+Gender: male
+Name: Kenner S. Curry
+
+Type: person
+Gramps ID: I2016
+Gender: male
+Name: Jonathan Allen
+Birth: 1683-05-29 in Sikeston, MO, USA - Birth of Allen, Jonathan
+Death: 1733-05-08 in Topeka, Shawnee, KS, USA - Death of Allen, Jonathan
+
+Type: person
+Gramps ID: I2089
+Gender: female
+Name: Elizabeth Moreno
+
+Type: person
+Gramps ID: I0649
+Gender: male
+Name: ??????? Arnold
+
+Type: person
+Gramps ID: I1824
+Gender: male
+Name: Dawson
+
+Type: person
+Gramps ID: I0268
+Gender: female
+Name: Patricia Anne Harris
+
+Type: person
+Gramps ID: I0337
+Gender: male
+Name: Timothy Christian Bates
+Birth: 1977-03-14 in Ottawa, La Salle, IL, USA - Birth of Bates, Timothy Christian
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0503
+Gender: male
+Name: James Boucher
+
+Type: person
+Gramps ID: I0717
+Gender: male
+Name: James Patrick Evans
+Birth: 1945-10-02 in Ottawa, La Salle, IL, USA - Birth of Evans, James Patrick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1187
+Gender: male
+Name: Quirinus Bishop
+Birth: nach 1626 in Akron, OH, USA - Birth of Bishop, Quirinus
+Death: 1683-05-17 in Akron, OH, USA - Death of Bishop, Quirinus
+
+Type: person
+Gramps ID: I2028
+Gender: male
+Name: Alfred Wayne Stone
+
+Type: person
+Gramps ID: I0215
+Gender: female
+Name: Linda Helen Cruz
+Birth: 1942-02-06 - Birth of Cruz, Linda Helen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0105
+Gender: female
+Name: Lucy Edwards
+Birth: 1799-01-17 in Jamestowna, NY, USA - Birth of Edwards, Lucy
+Death: 1879-04-02 - Death of Edwards, Lucy
+Burial: 1879-04-04 in Logan, UT-ID, USA - Burial of Edwards, Lucy
+
+Type: person
+Gramps ID: I0164
+Gender: male
+Name: Thomas Frederick Warner
+Birth: 1954-11-25 in Medford, OR, USA - Birth of Warner, Thomas Frederick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1318
+Gender: male
+Name: Johann Valentin Beaulieu
+Birth: 1708 - Birth of Beaulieu, Johann Valentin
+Death: 1802 - Death of Beaulieu, Johann Valentin
+
+Type: person
+Gramps ID: I1196
+Gender: female
+Name: Jane ĐĐŸĐŒĐ°ŃĐŸĐČ
+
+Type: person
+Gramps ID: I0107
+Gender: female
+Name: Phoebe Emily ZieliĆski
+Married Name: Phoebe Emily Garner
+Birth: 1827-04-12 in Bogalusa, Washington, LA, USA - Birth of ZieliĆski, Phoebe Emily
+Death: 1882-03-07 in Albuquerque, NM, USA - Death of ZieliĆski, Phoebe Emily
+Burial: 1882-03-09 in Michigan City, LaPorte, IN, USA - Burial of ZieliĆski, Phoebe Emily
+
+Type: person
+Gramps ID: I0510
+Gender: male
+Name: Edward Warner
+Birth: 1713-01-06 in Anchorage, AK, USA - Birth of Warner, Edward
+Death: 1776-09-27 in Vicksburg, MS, USA - Death of Warner, Edward
+Burial in Grand Rapids, MI, USA - Burial of Warner, Edward
+
+Type: person
+Gramps ID: I0842
+Gender: male
+Name: Prof. William Joseph Boucher
+Birth: 1886 in Summerville, Chattooga, GA, USA - Birth of Boucher, Prof. William Joseph
+Death: 1977-01-26 in Emporia, Lyon, KS, USA - Death of Boucher, Prof. William Joseph
+
+Type: person
+Gramps ID: I1274
+Gender: female
+Name: Mary Elizabeth ĐĐŸŃĐŸĐ·ĐŸĐČ
+Birth: 1788 - Birth of ĐĐŸŃĐŸĐ·ĐŸĐČ, Mary Elizabeth
+
+Type: person
+Gramps ID: I1201
+Gender: male
+Name: William (Rev.) Diaz
+Birth: um 1530 in Kennewick, WA, USA - Birth of Diaz, William (Rev.)
+Death: um 1587-10-12 in McAlester, OK, USA - Death of Diaz, William (Rev.)
+
+Type: person
+Gramps ID: I1089
+Gender: female
+Name: Nicole Lynn Warner
+Birth: 1996-09-19 in Weirton, WV, USA - Birth of Warner, Nicole Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1570
+Gender: male
+Name: Henry King
+
+Type: person
+Gramps ID: I1788
+Gender: male
+Name: John Lindsey
+
+Type: person
+Gramps ID: I1976
+Gender: female
+Name: Ida E. Ball
+
+Type: person
+Gramps ID: I0294
+Gender: female
+Name: Belle Marie Warner
+Birth: 1974-07-14 in Wheeling, WV-OH, USA - Birth of Warner, Belle Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0892
+Gender: female
+Name: Dorothy Louise Norman
+Birth: 1914-10-16 in Alma, MI, USA - Birth of Norman, Dorothy Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1574
+Gender: male
+Name: John Lawson
+
+Type: person
+Gramps ID: I0518
+Gender: male
+Name: Jacob, Sr. Fox
+Birth: 1769-02 - Birth of Fox, Jacob, Sr.
+Death: 1824-09-03 in Springfield, MO, USA - Death of Fox, Jacob, Sr.
+
+Type: person
+Gramps ID: I0573
+Gender: male
+Name: Hans Peter Douglas
+Birth in Albany, Dougherty, GA, USA - Birth of Douglas, Hans Peter
+Death in Terre Haute, Vigo, IN, USA - Death of Douglas, Hans Peter
+Burial in Fort Valley, Peach, GA, USA - Burial of Douglas, Hans Peter
+
+Type: person
+Gramps ID: I0895
+Gender: female
+Name: Sylvia Louise Page
+Birth: 1939-08-21 in Wheeling, WV-OH, USA - Birth of Page, Sylvia Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1150
+Gender: female
+Name: Margaret Curtis
+Birth: um 1478 in Phoenix, Maricopa, AZ, USA - Birth of Curtis, Margaret
+
+Type: person
+Gramps ID: I1442
+Gender: female
+Name: Grace Đ€ĐŸĐŒĐžĐœ
+
+Type: person
+Gramps ID: I1579
+Gender: male
+Name: Henry Clay Parent
+
+Type: person
+Gramps ID: I0300
+Gender: female
+Name: Laura Gail Warner
+Birth: 1952-09-27 in Wheeling, WV-OH, USA - Birth of Warner, Laura Gail
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0953
+Gender: male
+Name: John Aguilar
+Birth: vor 1665 in Ketchikan, AK, USA - Birth of Aguilar, John
+Death: vor 1745-02 in Wooster, OH, USA - Death of Aguilar, John
+
+Type: person
+Gramps ID: I1154
+Gender: male
+Name: Robert Molina
+Birth: 1450 in Phoenix, Maricopa, AZ, USA - Birth of Molina, Robert
+
+Type: person
+Gramps ID: I1583
+Gender: male
+Name: Jason Spotswood Benson
+Birth: 1713-11 in Waterloo-Cedar Falls, IA, USA - Birth of Benson, Jason Spotswood
+
+Type: person
+Gramps ID: I1851
+Gender: male
+Name: Peter Reed
+Birth in Columbus, NE, USA - Birth of Reed, Peter
+
+Type: person
+Gramps ID: I0078
+Gender: female
+Name: Eurydice Cole
+Birth: 1727-08-15 - Birth of Cole, Eurydice
+
+Type: person
+Gramps ID: I1921
+Gender: male
+Name: Thomas Swanson
+
+Type: person
+Gramps ID: I0187
+Gender: male
+Name: Ralph Raymond Lessard
+Birth: 1895-07-20 in Sanford, NC, USA - Birth of Lessard, Ralph Raymond
+Death: 1969-07-08 - Death of Lessard, Ralph Raymond
+
+Type: person
+Gramps ID: I0956
+Gender: male
+Name: Marquis I Brooks
+Birth: 1675 in Tampa, Hillsborough, FL, USA - Birth of Brooks, Marquis I
+Death: 1741 in Martinsville, VA, USA - Death of Brooks, Marquis I
+
+Type: person
+Gramps ID: I1043
+Gender: male
+Name: Tyler William MartĂn
+Birth: 1993-11-29 - Birth of MartĂn, Tyler William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0371
+Gender: female
+Name: Nancy Lou Webb
+Birth in Ottawa, La Salle, IL, USA - Birth of Webb, Nancy Lou
+Death in Ottawa, La Salle, IL, USA - Death of Webb, Nancy Lou
+
+Type: person
+Gramps ID: I1928
+Gender: female
+Name: Madeline Kathleen Osborne
+Birth: 1998-09-19 in Worthington, MN, USA - Birth of Osborne, Madeline Kathleen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1993
+Gender: female
+Name: Lulu Munoz
+
+Type: person
+Gramps ID: I1227
+Gender: female
+Name: Nancy Webb
+
+Type: person
+Gramps ID: I0747
+Gender: female
+Name: Elizabeth Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ
+Birth: 1657-02 in Brevard, NC, USA - Birth of Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+Death: 1747-09-03 in Anchorage, AK, USA - Death of Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+
+Type: person
+Gramps ID: I1162
+Gender: female
+Name: Susannah Murray
+Birth: um 1647 - Birth of Murray, Susannah
+
+Type: person
+Gramps ID: I0696
+Gender: female
+Name: Marcy Greene
+
+Type: person
+Gramps ID: I0137
+Gender: female
+Name: Julia Angeline Warner
+Birth: 1892-09-25 in New Castle, Henry, IN, USA - Birth of Warner, Julia Angeline
+Death: 1970-12-17 - Death of Warner, Julia Angeline
+Burial in Monroe, MI, USA - Burial of Warner, Julia Angeline
+
+Type: person
+Gramps ID: I1165
+Gender: female
+Name: Margaret Crawford
+Birth: um 1610 - Birth of Crawford, Margaret
+Death: vor 1669 in Greenville, SC, USA - Death of Crawford, Margaret
+
+Type: person
+Gramps ID: I1234
+Gender: male
+Name: Newton Kitridge Webb
+Birth: 1842-10-13 in Orlando, Orange, FL, USA - Birth of Webb, Newton Kitridge
+Death: 1912-07-28 in Lafayette, Tippecanoe, IN, USA - Death of Webb, Newton Kitridge
+Burial: 1912-07-30 in Seaford, Sussex, DE, USA - Burial of Webb, Newton Kitridge
+
+Type: person
+Gramps ID: I0752
+Gender: male
+Name: Joseph Grenier
+Birth: 1605 in Hilo, HI, USA - Birth of Grenier, Joseph
+Death: 1647-12-04 in Roswell, NM, USA - Death of Grenier, Joseph
+Burial in Dunn, NC, USA - Burial of Grenier, Joseph
+
+Type: person
+Gramps ID: I1235
+Gender: male
+Name: Joseph ĐĐ°ĐșĐ°ŃĐŸĐČ
+Birth in Canton, Fulton, IL, USA - Birth of ĐĐ°ĐșĐ°ŃĐŸĐČ, Joseph
+
+Type: person
+Gramps ID: I1604
+Gender: male
+Name: William Pedersen
+
+Type: person
+Gramps ID: I1750
+Gender: female
+Name: Mary Boucher
+
+Type: person
+Gramps ID: I1754
+Gender: female
+Name: Honora Bush
+
+Type: person
+Gramps ID: I1170
+Gender: female
+Name: Martha Powell
+Birth in Connersville, Fayette, IN, USA - Birth of Powell, Martha
+Burial: 1611-01-11 in Milwaukee, WI, USA - Burial of Powell, Martha
+
+Type: person
+Gramps ID: I0596
+Gender: male
+Name: Walter Savard
+
+Type: person
+Gramps ID: I1474
+Gender: male
+Name: Hines
+
+Type: person
+Gramps ID: I0147
+Gender: female
+Name: Mary Helen ЧДŃĐœŃŃ
+Birth: 1916-05-08 in Cleveland, TN, USA - Birth of ЧДŃĐœŃŃ
, Mary Helen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1476
+Gender: male
+Name: Jacob Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, Jacob
+
+Type: person
+Gramps ID: I1544
+Gender: male
+Name: Joseph James
+Birth: 1773-03-03 in Waterloo-Cedar Falls, IA, USA - Birth of James, Joseph
+Death: 1824 in Orlando, Orange, FL, USA - Death of James, Joseph
+
+Type: person
+Gramps ID: I0264
+Gender: female
+Name: Josephine Grace Landry
+Birth: 1902-06-15 in Alexandria, MN, USA - Birth of Landry, Josephine Grace
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1070
+Gender: female
+Name: Lori Crawford
+
+Type: person
+Gramps ID: I0152
+Gender: male
+Name: David Warren Warner
+Birth: 1945-02-13 in Ottawa, La Salle, IL, USA - Birth of Warner, David Warren
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1253
+Gender: male
+Name: Lewis Warner
+
+Type: person
+Gramps ID: I0876
+Gender: male
+Name: Paris Blanco
+Birth: 1846 in Scottsbluff, NE, USA - Birth of Blanco, Paris
+
+Type: person
+Gramps ID: I1420
+Gender: male
+Name: John Page
+
+Type: person
+Gramps ID: I0714
+Gender: male
+Name: Donald E. Rhodes
+Birth: 1928 in Springfield, OH, USA - Birth of Rhodes, Donald E.
+Death: um 1988 in Clearlake, Lake, CA, USA - Death of Rhodes, Donald E.
+Burial: um 1988 in Lexington, NC, USA - Burial of Rhodes, Donald E.
+
+Type: person
+Gramps ID: I1013
+Gender: male
+Name: Ralph ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ
+Birth: 1080 - Birth of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph
+Death: 1168 - Death of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph
+
+Type: person
+Gramps ID: I0878
+Gender: male
+Name: Stephen Blanco
+Birth: 1851-04-14 in Burlington, VT, USA - Birth of Blanco, Stephen
+Death: 1903-04-08 in Corbin, Whitley, KY, USA - Death of Blanco, Stephen
+Burial: 1903-04-10 in Brownsville, Cameron, TX, USA - Burial of Blanco, Stephen
+
+Type: person
+Gramps ID: I1185
+Gender: male
+Name: James ĐĐŒĐžŃŃОДĐČ
+Birth: um 1741 - Birth of ĐĐŒĐžŃŃОДĐČ, James
+Death: um 1778 - Death of ĐĐŒĐžŃŃОДĐČ, James
+
+Type: person
+Gramps ID: I0454
+Gender: female
+Name: Chelsea Dawn Poulsen
+Birth: 1986-12-30 in Vallejo, Solano, CA, USA - Birth of Poulsen, Chelsea Dawn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1832
+Gender: male
+Name: White
+
+Type: person
+Gramps ID: I0606
+Gender: female
+Name: Eva ĐĐŸŃĐŸĐ±ŃĐ”ĐČ
+
+Type: person
+Gramps ID: I1374
+Gender: male
+Name: George H. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, George H.
+
+Type: person
+Gramps ID: I1427
+Gender: male
+Name: Ralph (Scotty) Cross
+Birth in Racine, WI, USA - Birth of Cross, Ralph (Scotty)
+
+Type: person
+Gramps ID: I1897
+Gender: female
+Name: Margaret Newman
+
+Type: person
+Gramps ID: I1191
+Gender: female
+Name: Catherine Madsen
+
+Type: person
+Gramps ID: I1267
+Gender: male
+Name: Nathaniel M. Warner
+
+Type: person
+Gramps ID: I1272
+Gender: male
+Name: Dr. Brent ĐĐŸĐłĐŽĐ°ĐœĐŸĐČ
+
+Type: person
+Gramps ID: I1708
+Gender: male
+Name: Robert Lessard
+
+Type: person
+Gramps ID: I1902
+Gender: male
+Name: James Woods
+
+Type: person
+Gramps ID: I1139
+Gender: female
+Name: Katherine ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ
+Birth: 1858 - Birth of ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+Death: 1913-09-02 in Hutchinson, Reno, KS, USA - Death of ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+
+Type: person
+Gramps ID: I1639
+Gender: unknown
+Name: Carroll Lewandowski
+
+Type: person
+Gramps ID: I2036
+Gender: female
+Name: Gail Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0287
+Gender: female
+Name: Deirdra Denise Warner
+Birth: 1973-03-20 in Wheeling, WV-OH, USA - Birth of Warner, Deirdra Denise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1276
+Gender: female
+Name: Anna Maria ĐŃĐžĐłĐŸŃŃĐ”ĐČ
+Birth: 1754 - Birth of ĐŃĐžĐłĐŸŃŃĐ”ĐČ, Anna Maria
+
+Type: person
+Gramps ID: I0731
+Gender: male
+Name: Joseph Louis(Jr.) Benson
+Birth: 1702-05-06 in Cordele, Crisp, GA, USA - Birth of Benson, Joseph Louis(Jr.)
+Death in Anderson, Madison, IN, USA - Death of Benson, Joseph Louis(Jr.)
+Burial in Anderson, Madison, IN, USA - Burial of Benson, Joseph Louis(Jr.)
+
+Type: person
+Gramps ID: I1501
+Gender: male
+Name: John Parent
+
+Type: person
+Gramps ID: I0234
+Gender: male
+Name: William Forest Garrett
+Birth: 1927-05-13 - Birth of Garrett, William Forest
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0574
+Gender: male
+Name: John Sr. Douglas
+Birth: 1739-11-25 in Colorado Springs, El Paso, CO, USA - Birth of Douglas, John Sr.
+Death: 1821-10 in Selinsgrove, PA, USA - Death of Douglas, John Sr.
+Burial in Yakima, WA, USA - Burial of Douglas, John Sr.
+
+Type: person
+Gramps ID: I1796
+Gender: male
+Name: Liam Michael Stokes
+Birth: 1997-03-27 in Jackson, WY, USA - Birth of Stokes, Liam Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1849
+Gender: male
+Name: Terence Reed
+Birth: 1876-11-25 in Laconia, NH, USA - Birth of Reed, Terence
+
+Type: person
+Gramps ID: I0236
+Gender: female
+Name: Doris Mae Garrett
+Birth: 1950-08-22 in Ottawa, La Salle, IL, USA - Birth of Garrett, Doris Mae
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1037
+Gender: male
+Name: John Foster
+Birth: um 1555 in Wilmington, OH, USA - Birth of Foster, John
+Death: 1598-01-31 in Wilmington, OH, USA - Death of Foster, John
+
+Type: person
+Gramps ID: I1291
+Gender: female
+Name: Mary Bradley
+Birth: 1789 - Birth of Bradley, Mary
+
+Type: person
+Gramps ID: I2056
+Gender: female
+Name: Delilah Moreno
+Birth: 1818-01-05 in Paris, TN, USA - Birth of Moreno, Delilah
+Death: 1871-01-08 in Kokomo, Howard, IN, USA - Death of Moreno, Delilah
+
+Type: person
+Gramps ID: I0474
+Gender: female
+Name: Eleanor Parent
+Birth: 1799-05-09 in Santa Cruz, Santa Cruz, CA, USA - Birth of Parent, Eleanor
+Death in Marshall, Harrison, TX, USA - Death of Parent, Eleanor
+Burial in Marshall, Harrison, TX, USA - Burial of Parent, Eleanor
+
+Type: person
+Gramps ID: I1041
+Gender: female
+Name: Melissa Sue Garner
+Birth: 1969-12-03 - Birth of Garner, Melissa Sue
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1991
+Gender: male
+Name: Robert Munoz
+Birth in Washington, District of Columbia, DC, USA - Birth of Munoz, Robert
+
+Type: person
+Gramps ID: I1593
+Gender: male
+Name: Gabriel Gustav ć±±æŹ
+Birth: 1672-10-12 in Tallahassee, Leon, FL, USA - Birth of ć±±æŹ, Gabriel Gustav
+
+Type: person
+Gramps ID: I0813
+Gender: male
+Name: Stephen Francis Boucher
+Birth in Summerville, Chattooga, GA, USA - Birth of Boucher, Stephen Francis
+Death: 1975-08-24 in Summerville, Chattooga, GA, USA - Death of Boucher, Stephen Francis
+Burial: 1975-08 in Marysville, Yuba, CA, USA - Burial of Boucher, Stephen Francis
+
+Type: person
+Gramps ID: I1346
+Gender: male
+Name: James T. Jiménez
+Birth: 1839-08-06 in New Ulm, MN, USA - Birth of Jiménez, James T.
+Death: 1839-08-06 in Marquette, MI, USA - Death of Jiménez, James T.
+Burial: 1839-08-07 in Fort Smith, Sebastian, AR-OK, USA - Burial of Jiménez, James T.
+
+Type: person
+Gramps ID: I1595
+Gender: female
+Name: Margaret Steel Ellis
+
+Type: person
+Gramps ID: I0043
+Gender: female
+Name: Louella Jane Todd
+Birth: 1877-03-26 in Gardnerville Ranchos, NV, USA - Birth of Todd, Louella Jane
+Death: 1965-01-26 in Saginaw, MI, USA - Death of Todd, Louella Jane
+Burial: 1965-01 in Boone, Boone, IA, USA - Burial of Todd, Louella Jane
+
+Type: person
+Gramps ID: I0585
+Gender: male
+Name: John Francis"Chick" Kristensen
+Birth: 1889-10-10 - Birth of Kristensen, John Francis"Chick"
+Death: 1938-10-23 - Death of Kristensen, John Francis"Chick"
+
+Type: person
+Gramps ID: I1670
+Gender: male
+Name: Abraham Quinn
+Birth: 1838-04-25 - Birth of Quinn, Abraham
+Death: 1916-02-18 in Reno-Sparks, NV, USA - Death of Quinn, Abraham
+
+Type: person
+Gramps ID: I1463
+Gender: male
+Name: Ted Ortiz
+
+Type: person
+Gramps ID: I1866
+Gender: female
+Name: Liz Sandoval
+
+Type: person
+Gramps ID: I2070
+Gender: female
+Name: Minerva Moreno
+Birth: 1830-03-17 - Birth of Moreno, Minerva
+
+Type: person
+Gramps ID: I0638
+Gender: male
+Name: Harold Andrews
+Death in Albert Lea, MN, USA - Death of Andrews, Harold
+
+Type: person
+Gramps ID: I1169
+Gender: male
+Name: Ralph Goodman
+Birth in Grenada, MS, USA - Birth of Goodman, Ralph
+Burial: 1626-06-25 in Milwaukee, WI, USA - Burial of Goodman, Ralph
+
+Type: person
+Gramps ID: I1354
+Gender: female
+Name: Izora Lessard
+Birth in Orlando, Orange, FL, USA - Birth of Lessard, Izora
+Death: 1902-05-06 in Lake Charles, Calcasieu, LA, USA - Death of Lessard, Izora
+
+Type: person
+Gramps ID: I0145
+Gender: female
+Name: Merida Lorene Robbins
+Birth: 1924-03-07 in Dubuque, Dubuque, IA, USA - Birth of Robbins, Merida Lorene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0259
+Gender: female
+Name: Catherine M. Landry
+Birth: 1895-04-28 in Ottawa, La Salle, IL, USA - Birth of Landry, Catherine M.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1064
+Gender: female
+Name: Allison Renee Garner
+Birth: 1984-03-20 - Birth of Garner, Allison Renee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0826
+Gender: female
+Name: Roisine Alonso
+Birth: 1985 in Erie, PA, USA - Birth of Alonso, Roisine
+
+Type: person
+Gramps ID: I1315
+Gender: male
+Name: Johann Walter Frazier
+Birth: 1748 - Birth of Frazier, Johann Walter
+
+Type: person
+Gramps ID: I0204
+Gender: male
+Name: Arthur Otto Thornton
+Birth in Flint, MI, USA - Birth of Thornton, Arthur Otto
+
+Type: person
+Gramps ID: I1181
+Gender: female
+Name: Lucy ĐĐŒĐžŃŃОДĐČ
+Birth: um 1733 - Birth of ĐĐŒĐžŃŃОДĐČ, Lucy
+
+Type: person
+Gramps ID: I2093
+Gender: male
+Name: Absalom Moreno
+Birth: 1786-01-13 - Birth of Moreno, Absalom
+Death: 1838-04-15 - Death of Moreno, Absalom
+Burial: 1838-04-17 in Oxnard, Ventura, CA, USA - Burial of Moreno, Absalom
+
+Type: person
+Gramps ID: I1551
+Gender: male
+Name: Dr. John Poole
+
+Type: person
+Gramps ID: I0339
+Gender: male
+Name: John Allen Bates
+Birth: 1984-10-29 in Ottawa, La Salle, IL, USA - Birth of Bates, John Allen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0159
+Gender: female
+Name: Stephanie Sue Warner
+Birth: 1950-06-23 in Jonesboro, Craighead, AR, USA - Birth of Warner, Stephanie Sue
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0657
+Gender: male
+Name: Albert Raymond Robinson
+
+Type: person
+Gramps ID: I1262
+Gender: male
+Name: Johnathan Warner
+
+Type: person
+Gramps ID: I2026
+Gender: female
+Name: Dorothy Jean Gutiérrez
+Birth: 1924-02-01 - Birth of Gutiérrez, Dorothy Jean
+
+Type: person
+Gramps ID: I0933
+Gender: male
+Name: Hans Austin
+
+Type: person
+Gramps ID: I0507
+Gender: male
+Name: Capt. George Warner
+Birth: 1650 in Chicago, Cook, IL, USA - Birth of Warner, Capt. George
+Death: 1710-11-08 in State College, PA, USA - Death of Warner, Capt. George
+Burial in Cape Girardeau, MO, USA - Burial of Warner, Capt. George
+
+Type: person
+Gramps ID: I1704
+Gender: female
+Name: Frances Mae Webb
+Birth: 1899-02-04 in Reno-Sparks, NV, USA - Birth of Webb, Frances Mae
+Death: 1989-05-05 - Death of Webb, Frances Mae
+
+Type: person
+Gramps ID: I1136
+Gender: male
+Name: Patrick Reed
+Birth: 1836-02-22 in Mount Sterling, Montgomery, KY, USA - Birth of Reed, Patrick
+Death in Decatur, Morgan, AL, USA - Death of Reed, Patrick
+
+Type: person
+Gramps ID: I0064
+Gender: male
+Name: George Henry, Jr. Jiménez
+Birth: 1802-09-29 in Springfield, Hampden, MA, USA - Birth of Jiménez, George Henry, Jr.
+Death: 1869-02-19 in Guaynabo, PR, USA - Death of Jiménez, George Henry, Jr.
+Burial: 1869-02-21 in Danville, VA, USA - Burial of Jiménez, George Henry, Jr.
+
+Type: person
+Gramps ID: I0166
+Gender: male
+Name: Robert Douglas Warner
+Birth: 1962-09-07 in Medford, OR, USA - Birth of Warner, Robert Douglas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2033
+Gender: male
+Name: Richard W. Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0001
+Gender: female
+Name: Sarah Suzanne Warner
+Birth: 1987-08-29 in Gainesville, Llano, TX, USA - Birth of Warner, Sarah Suzanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0511
+Gender: female
+Name: Mary Molly Anderson
+Birth: 1719 in Shelby, NC, USA - Birth of Anderson, Mary Molly
+Death: 1795-04-20 - Death of Anderson, Mary Molly
+
+Type: person
+Gramps ID: I0845
+Gender: male
+Name: Thomas Warner
+Birth: 1556 in Nogales, Santa Cruz, AZ, USA - Birth of Warner, Thomas
+
+Type: person
+Gramps ID: I1499
+Gender: male
+Name: Montgomery Parent
+Birth: 1797 in San SebastiĂĄn, PR, USA - Birth of Parent, Montgomery
+
+Type: person
+Gramps ID: I0111
+Gender: male
+Name: Michael Edward Warner
+Birth: 1985-02-26 in Forest City, NC, USA - Birth of Warner, Michael Edward
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0675
+Gender: female
+Name: Mary Sanders
+Birth: um 1629 in Camden, NJ, USA - Birth of Sanders, Mary
+
+Type: person
+Gramps ID: I0983
+Gender: female
+Name: Whitney Lianne Warner
+Birth: 1986-08-26 in Bluefield, WV-VA, USA - Birth of Warner, Whitney Lianne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1440
+Gender: male
+Name: Cecil Waters
+Birth in Harrisburg, PA, USA - Birth of Waters, Cecil
+Death in Troy, Pike, AL, USA - Death of Waters, Cecil
+
+Type: person
+Gramps ID: I1978
+Gender: male
+Name: Roland Morris
+Birth: 1824 in Palatka, Putnam, FL, USA - Birth of Morris, Roland
+
+Type: person
+Gramps ID: I1209
+Gender: male
+Name: William Diaz
+
+Type: person
+Gramps ID: I0363
+Gender: female
+Name: Miranda Keziah Farmer
+Birth: 1852-09-27 in Thomaston, Upson, GA, USA - Birth of Farmer, Miranda Keziah
+Death: 1887-04-07 in Oakland, Alameda, CA, USA - Death of Garner, Anderson (Witness)
+
+Type: person
+Gramps ID: I0416
+Gender: female
+Name: Evelyn Almazon Ross
+Birth: 1955-04-23 in Tullahoma, TN, USA - Birth of Ross, Evelyn Almazon
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1395
+Gender: male
+Name: John Jankowski
+Birth: 1876-04-01 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, John
+Death: 1939-10-15 in Troy, Pike, AL, USA - Death of Jankowski, John
+Burial: 1939-10-15 in Oskaloosa, Mahaska, IA, USA - Burial of Jankowski, John
+
+Type: person
+Gramps ID: I1517
+Gender: male
+Name: Calvin ĐĐ°ĐČĐ»ĐŸĐČ
+Birth in Cookeville, TN, USA - Birth of ĐĐ°ĐČĐ»ĐŸĐČ, Calvin
+
+Type: person
+Gramps ID: I1589
+Gender: male
+Name: Robert Watkins Benson
+Birth: 1678-07-18 in Peoria, Peoria, IL, USA - Birth of Benson, Robert Watkins
+
+Type: person
+Gramps ID: I1591
+Gender: female
+Name: Mary Frances Benson
+Birth: 1682-02-20 in Peoria, Peoria, IL, USA - Birth of Benson, Mary Frances
+
+Type: person
+Gramps ID: I0378
+Gender: male
+Name: Thomas Gutierrez
+
+Type: person
+Gramps ID: I0431
+Gender: female
+Name: Joyce Inez Briggs
+Birth: 1939-08-05 - Birth of Briggs, Joyce Inez
+Death: 1985 in Iron Mountain, MI, USA - Death of Briggs, Joyce Inez
+
+Type: person
+Gramps ID: I1465
+Gender: male
+Name: John Alvarado
+Birth: 1825-03-13 in Marshall, MN, USA - Birth of Alvarado, John
+
+Type: person
+Gramps ID: I1057
+Gender: male
+Name: William Christensen
+
+Type: person
+Gramps ID: I0090
+Gender: female
+Name: Sarah Goodwin
+Birth in Shelbyville, TN, USA - Birth of Goodwin, Sarah
+Death in Shelbyville, TN, USA - Death of Goodwin, Sarah
+Burial: 1886 in Loveland, Larimer, CO, USA - Burial of Goodwin, Sarah
+
+Type: person
+Gramps ID: I0963
+Gender: male
+Name: David Reynolds
+Birth: 1669 in Spokane, WA, USA - Birth of Reynolds, David
+Death: 1695 in Sidney, OH, USA - Death of Reynolds, David
+Burial in Pierre, SD, USA - Burial of Reynolds, David
+
+Type: person
+Gramps ID: I0198
+Gender: male
+Name: Frank MarĂn
+Death: 1956-10 in Ottawa, La Salle, IL, USA - Death of MarĂn, Frank
+Burial in Ames, Story, IA, USA - Burial of MarĂn, Frank
+
+Type: person
+Gramps ID: I1609
+Gender: female
+Name: Elizabeth Jiménez
+Birth: 1790-11-28 - Birth of Jiménez, Elizabeth
+Death: 1828-04 - Death of Jiménez, Elizabeth
+
+Type: person
+Gramps ID: I0049
+Gender: male
+Name: Moses Wallace MarĂn
+Birth: 1862-04-08 in Riverton, WY, USA - Birth of MarĂn, Moses Wallace
+Death: 1909-08-08 in Worthington, MN, USA - Death of MarĂn, Moses Wallace
+Burial: 1909-08-10 in Worthington, MN, USA - Burial of MarĂn, Moses Wallace
+
+Type: person
+Gramps ID: I0542
+Gender: male
+Name: Edward Green
+Birth: 1685-06-06 in Bellingham, WA, USA - Birth of Green, Edward
+Death: 1756-10-20 - Death of Green, Edward
+
+Type: person
+Gramps ID: I0594
+Gender: male
+Name: Bruce Lynn Russell
+Birth: 1964-12-28 in Ottawa, La Salle, IL, USA - Birth of Russell, Bruce Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1119
+Gender: female
+Name: Zelpha Josephine Carr
+Birth: 1858-12-31 in Brownwood, Harris, TX, USA - Birth of Carr, Zelpha Josephine
+Death: 1895-02-08 in Beckley, WV, USA - Death of Carr, Zelpha Josephine
+Burial: 1895-02-10 in Storm Lake, Buena Vista, IA, USA - Burial of Carr, Zelpha Josephine
+
+Type: person
+Gramps ID: I2080
+Gender: female
+Name: Phebe J. Moreno
+Birth: 1856-08-07 - Birth of Moreno, Phebe J.
+
+Type: person
+Gramps ID: I1412
+Gender: female
+Name: Florence Page
+Birth in Racine, WI, USA - Birth of Page, Florence
+Death in Brookings, OR, USA - Death of Page, Florence
+
+Type: person
+Gramps ID: I0051
+Gender: male
+Name: William Bernard Boucher
+Birth: 1854-01-25 in Union, SC, USA - Birth of Boucher, William Bernard
+Death: 1928-12-27 in Worthington, MN, USA - Death of Boucher, William Bernard
+Burial: 1928-12-29 in Worthington, MN, USA - Burial of Boucher, William Bernard
+
+Type: person
+Gramps ID: I0872
+Gender: female
+Name: Mary Walters
+Birth: 1864 in Del Rio, Val Verde, TX, USA - Birth of Walters, Mary
+Death: 1937-04-06 in Ann Arbor, MI, USA - Death of Walters, Mary
+Burial: 1937-04-08 in Marysville, Yuba, CA, USA - Burial of Walters, Mary
+
+Type: person
+Gramps ID: I0052
+Gender: female
+Name: Maria Reeves
+Birth: 1856-11-26 in Big Spring, Howard, TX, USA - Birth of Reeves, Maria
+Death: 1929-01-29 in Worthington, MN, USA - Death of Reeves, Maria
+Burial: 1929-01-31 in Worthington, MN, USA - Burial of Reeves, Maria
+
+Type: person
+Gramps ID: I0967
+Gender: male
+Name: John Reynolds
+Death: 1788 in Easton, MD, USA - Death of Reynolds, John
+Burial in Laredo, Webb, TX, USA - Burial of Reynolds, John
+
+Type: person
+Gramps ID: I1006
+Gender: male
+Name: Hugh Jones
+Birth: um 1518 in Safford, Graham, AZ, USA - Birth of Jones, Hugh
+
+Type: person
+Gramps ID: I0096
+Gender: female
+Name: Honora Boucher
+Birth: 1824 in Loveland, Larimer, CO, USA - Birth of Boucher, Honora
+Death: 1895-02-09 in Ottawa, La Salle, IL, USA - Death of Boucher, Honora
+Burial: 1895-02 in Lexington, NE, USA - Burial of Boucher, Honora
+
+Type: person
+Gramps ID: I1621
+Gender: female
+Name: Jane Blair
+Birth: 1803-05-23 - Birth of Blair, Jane
+Death: 1866-03-10 - Death of Blair, Jane
+
+Type: person
+Gramps ID: I0154
+Gender: female
+Name: Martha Ellen Warner
+Birth: 1950-02-07 in Wheeling, WV-OH, USA - Birth of Warner, Martha Ellen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2091
+Gender: female
+Name: Rosan Moreno
+
+Type: person
+Gramps ID: I0832
+Gender: female
+Name: Agnes Boucher
+Birth: 1968 in Andrews, Andrews, TX, USA - Birth of Boucher, Agnes
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1623
+Gender: male
+Name: Fred Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Fred
+
+Type: person
+Gramps ID: I0057
+Gender: male
+Name: Johann Henrich Moreno
+Birth in McComb, MS, USA - Birth of Moreno, Johann Henrich
+Death in Campbellsville, Taylor, KY, USA - Death of Moreno, Johann Henrich
+
+Type: person
+Gramps ID: I0402
+Gender: female
+Name: Jesse Reeves
+
+Type: person
+Gramps ID: I0452
+Gender: male
+Name: William Austin Bell
+Birth: 1977-04-26 - Birth of Bell, William Austin
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0787
+Gender: male
+Name: Wayne Allen Garrett
+Birth: 1961-11-21 in Ottawa, La Salle, IL, USA - Birth of Garrett, Wayne Allen
+Death: 1967-01 in Ottawa, La Salle, IL, USA - Death of Garrett, Wayne Allen
+
+Type: person
+Gramps ID: I0277
+Gender: male
+Name: John Chandler Landry
+Birth: 1926-11-07 in Ottawa, La Salle, IL, USA - Birth of Landry, John Chandler
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0882
+Gender: male
+Name: James Joseph Jr. Myers
+Birth: 1857-12-22 in Staunton-Waynesboro, VA, USA - Birth of Myers, James Joseph Jr.
+Death: 1934-04-05 in Ottawa, La Salle, IL, USA - Death of Myers, James Joseph Jr.
+Burial: 1934 - Burial of Myers, James Joseph Jr.
+
+Type: person
+Gramps ID: I0937
+Gender: male
+Name: Mathas Fortin
+
+Type: person
+Gramps ID: I1021
+Gender: female
+Name: Theophania(Tiffany) Walton
+Birth: 1250 - Birth of Walton, Theophania(Tiffany)
+
+Type: person
+Gramps ID: I1493
+Gender: male
+Name: Alfred Douglas
+Birth: 1827-05-01 in Marshall, MN, USA - Birth of Douglas, Alfred
+Death: 1913-06-26 - Death of Douglas, Alfred
+
+Type: person
+Gramps ID: I0727
+Gender: female
+Name: Olive Todd
+
+Type: person
+Gramps ID: I0843
+Gender: male
+Name: William Donel Boucher
+Birth in Cornelia, Habersham, GA, USA - Birth of Boucher, William Donel
+
+Type: person
+Gramps ID: I1141
+Gender: male
+Name: John Dean
+
+Type: person
+Gramps ID: I1712
+Gender: male
+Name: William Frederick Rodriquez
+Birth: 1806-12-17 in MayagĂŒez, PR, USA - Birth of Rodriquez, William Frederick
+
+Type: person
+Gramps ID: I0466
+Gender: female
+Name: Catherine Ruiz
+Birth: 1786-04-20 in Laredo, Webb, TX, USA - Birth of Ruiz, Catherine
+Death: 1877-09-25 in Dallas, Dallas, TX, USA - Death of Ruiz, Catherine
+Burial in Laurel, MS, USA - Burial of Ruiz, Catherine
+
+Type: person
+Gramps ID: I1503
+Gender: male
+Name: Jacob G. Parent
+
+Type: person
+Gramps ID: I2046
+Gender: male
+Name: ĐĐ°ĐČŃĐŽĐŸĐČ
+
+Type: person
+Gramps ID: I1507
+Gender: male
+Name: Samuel Douglas
+
+Type: person
+Gramps ID: I2054
+Gender: unknown
+Name: Moreno
+
+Type: person
+Gramps ID: I0303
+Gender: female
+Name: Elizabeth Ellen Haynes
+Birth: 1980-11-18 in Bremerton, WA, USA - Birth of Haynes, Elizabeth Ellen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0759
+Gender: male
+Name: Johanne(John) Webster
+Birth: 1679-05-01 in Jesup, Wayne, GA, USA - Birth of Webster, Johanne(John)
+Death in Savannah, Chatham, GA, USA - Death of Webster, Johanne(John)
+
+Type: person
+Gramps ID: I1587
+Gender: unknown
+Name: Benson
+
+Type: person
+Gramps ID: I1664
+Gender: female
+Name: Lucinda E. Webb
+Birth in Carlsbad, NM, USA - Birth of Webb, Lucinda E.
+
+Type: person
+Gramps ID: I1733
+Gender: male
+Name: Thomas Rodriquez
+Birth in La Follette, TN, USA - Birth of Rodriquez, Thomas
+
+Type: person
+Gramps ID: I1454
+Gender: male
+Name: Adrian BĂ©langer
+
+Type: person
+Gramps ID: I0529
+Gender: male
+Name: Nathaniel Christiansen
+Birth: 1642-05-15 in Plainview, Houston, TX, USA - Birth of Christiansen, Nathaniel
+Death: 1713-11-21 in Poplar Bluff, MO, USA - Death of Christiansen, Nathaniel
+
+Type: person
+Gramps ID: I0958
+Gender: female
+Name: Winifred Rubio
+Birth: 1709 in Pittsburgh, PA, USA - Birth of Rubio, Winifred
+Death: 1751-10-06 in Laredo, Webb, TX, USA - Death of Rubio, Winifred
+Burial: 1751 in Marshfield, WI, USA - Burial of Rubio, Winifred
+
+Type: person
+Gramps ID: I1456
+Gender: female
+Name: Joanne Pierce
+
+Type: person
+Gramps ID: I1806
+Gender: male
+Name: Peter Reed
+Birth: um 1904 in Worcester, Worcester, MA, USA - Birth of Reed, Peter
+Death: 1981-04-12 in Faribault-Northfield, MN, USA - Death of Reed, Peter
+
+Type: person
+Gramps ID: I0248
+Gender: male
+Name: Earl Kieble éŽæš
+
+Type: person
+Gramps ID: I1526
+Gender: male
+Name: Frederick Douglas
+
+Type: person
+Gramps ID: I1998
+Gender: male
+Name: Edward Harrison
+
+Type: person
+Gramps ID: I0315
+Gender: female
+Name: Laura Kathryn Watkins
+Birth: 1980-09-26 in Lafayette, Tippecanoe, IN, USA - Birth of Watkins, Laura Kathryn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1938
+Gender: female
+Name: Catherine Reeves
+Death: vor 1901 in Mount Vernon, WA, USA - Death of Reeves, Catherine
+
+Type: person
+Gramps ID: I0635
+Gender: male
+Name: Raymond Webster Garner
+Birth: 1918-02-17 in Columbus, Bartholomew, IN, USA - Birth of Garner, Raymond Webster
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0818
+Gender: female
+Name: Irene Hansen
+Birth in Tifton, Tift, GA, USA - Birth of Hansen, Irene
+
+Type: person
+Gramps ID: I1678
+Gender: female
+Name: Elizabeth Blanco
+
+Type: person
+Gramps ID: I0141
+Gender: male
+Name: Earl William ĐĐ°ĐœĐžĐ»ĐŸĐČ
+
+Type: person
+Gramps ID: I1471
+Gender: male
+Name: James Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, James
+Death in Cookeville, TN, USA - Death of Alvarado, James
+
+Type: person
+Gramps ID: I1611
+Gender: male
+Name: James Williams
+
+Type: person
+Gramps ID: I0388
+Gender: male
+Name: Michael Boucher
+
+Type: person
+Gramps ID: I1357
+Gender: female
+Name: Olive LĂ©vesque
+Birth in Reno-Sparks, NV, USA - Birth of LĂ©vesque, Olive
+
+Type: person
+Gramps ID: I0643
+Gender: male
+Name: Edward Burgess
+
+Type: person
+Gramps ID: I1004
+Gender: female
+Name: Frances Abbott
+Birth: um 1592 - Birth of Abbott, Frances
+Death: um 1642-01 - Death of Abbott, Frances
+
+Type: person
+Gramps ID: I1066
+Gender: male
+Name: Hill
+
+Type: person
+Gramps ID: I0392
+Gender: female
+Name: Catherine Boucher
+Birth: 1869-07-05 - Birth of Boucher, Catherine
+Death: 1890-01-19 - Death of Boucher, Catherine
+
+Type: person
+Gramps ID: I0647
+Gender: female
+Name: Esther Faye ĐŻĐșĐŸĐČлДĐČ
+
+Type: person
+Gramps ID: I1010
+Gender: male
+Name: Ribald ĐĄĐŒĐžŃĐœĐŸĐČ
+Birth: 1050 - Birth of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald
+Death: 1121 - Death of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald
+
+Type: person
+Gramps ID: I1694
+Gender: male
+Name: Ernest Arlington Webb
+Birth: 1884-11-17 in Reno-Sparks, NV, USA - Birth of Webb, Ernest Arlington
+Death: 1957-10-07 - Death of Webb, Ernest Arlington
+
+Type: person
+Gramps ID: I1957
+Gender: male
+Name: John Warner
+
+Type: person
+Gramps ID: I0719
+Gender: male
+Name: Michael Patrick Evans
+Birth: 1973-03-05 in Ottawa, La Salle, IL, USA - Birth of Evans, Michael Patrick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1133
+Gender: female
+Name: Ellen Reed
+Birth in Jacksonville, NC, USA - Birth of Reed, Ellen
+
+Type: person
+Gramps ID: I0279
+Gender: female
+Name: Pansy L. Warren
+
+Type: person
+Gramps ID: I0217
+Gender: male
+Name: Arthur Ray Cruz
+Birth: 1921-03-04 - Birth of Cruz, Arthur Ray
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1964
+Gender: female
+Name: Lucy A. Ball
+Birth in Columbus, OH, USA - Birth of Ball, Lucy A.
+
+Type: person
+Gramps ID: I0283
+Gender: male
+Name: Lee William Lopez
+Birth: 1958-06-10 in Wheeling, WV-OH, USA - Birth of Lopez, Lee William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0285
+Gender: female
+Name: Andrea Susan Warner
+Birth: 1969-04-21 in Wheeling, WV-OH, USA - Birth of Warner, Andrea Susan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0941
+Gender: female
+Name: Cathern ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ
+Birth: 1645 - Birth of ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+Death: 1699-03-02 - Death of ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+
+Type: person
+Gramps ID: I0798
+Gender: female
+Name: Margaret Mary? Dunn
+Burial in San Angelo, Tom Green, TX, USA - Burial of Dunn, Margaret Mary?
+
+Type: person
+Gramps ID: I1085
+Gender: male
+Name: Mark Townsend
+
+Type: person
+Gramps ID: I0414
+Gender: male
+Name: Simon йаŃĐ°ŃĐŸĐČ
+
+Type: person
+Gramps ID: I1436
+Gender: female
+Name: Belle Page
+Birth in Palm Coast, Flagler, FL, USA - Birth of Page, Belle
+Death in Albany, Albany, NY, USA - Death of Page, Belle
+
+Type: person
+Gramps ID: I0113
+Gender: female
+Name: Melissa Lee Warner
+Birth: 1987-06-13 in Palm Bay, Brevard, FL, USA - Birth of Warner, Melissa Lee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1205
+Gender: unknown
+Name: Urselie Diaz
+
+Type: person
+Gramps ID: I0070
+Gender: male
+Name: John Todd
+
+Type: person
+Gramps ID: I1387
+Gender: male
+Name: Robert Page
+Birth: 1847-06-11 in Palm Coast, Flagler, FL, USA - Birth of Page, Robert
+Death: 1928-03-22 in Newton, Jasper, IA, USA - Death of Page, Robert
+Marriage: 1875-04-01 in Paragould, Greene, AR, USA - Marriage of Garner, Lewis Anderson and Martel, Luella Jacques (Clergy)
+
+Type: person
+Gramps ID: I0231
+Gender: male
+Name: Raymond A. ĐĐŸĐżĐ°ŃĐžĐœ
+Birth: 1922-04-14 - Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Raymond A.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1094
+Gender: male
+Name: Marquis IV Brooks
+Birth: 1755-02-26 - Birth of Brooks, Marquis IV
+Death: 1839-02-09 - Death of Brooks, Marquis IV
+
+Type: person
+Gramps ID: I2050
+Gender: female
+Name: Letitia C. DÄ
browski
+
+Type: person
+Gramps ID: I0575
+Gender: male
+Name: Andrew Moran
+Birth in Miami, Miami-Dade, FL, USA - Birth of Moran, Andrew
+Death in Manhattan, Riley, KS, USA - Death of Moran, Andrew
+Burial in Madison, Jefferson, IN, USA - Burial of Moran, Andrew
+
+Type: person
+Gramps ID: I0898
+Gender: female
+Name: Gail Darlene Morton
+
+Type: person
+Gramps ID: I1659
+Gender: female
+Name: Helen M. Rodriguez
+
+Type: person
+Gramps ID: I0740
+Gender: female
+Name: Anastasia? Smith
+Birth in Del Rio, Val Verde, TX, USA - Birth of Smith, Anastasia?
+Death in Del Rio, Val Verde, TX, USA - Death of Smith, Anastasia?
+
+Type: person
+Gramps ID: I1337
+Gender: unknown
+Name: Gibbs
+
+Type: person
+Gramps ID: I1661
+Gender: female
+Name: June Christine Pittman
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1853
+Gender: male
+Name: Reed
+Birth: 1878-08-25 in South Bend, St. Joseph, IN, USA - Birth of Reed
+
+Type: person
+Gramps ID: I0126
+Gender: male
+Name: Michael Warren Warner
+Birth: 1913-10-29 in Lancaster, PA, USA - Birth of Warner, Michael Warren
+Death: 1983-01-18 in Ottawa, La Salle, IL, USA - Death of Warner, Michael Warren
+
+Type: person
+Gramps ID: I0129
+Gender: male
+Name: Robert Eugene Warner
+Birth: 1923-10-08 in Portland, ME, USA - Birth of Warner, Robert Eugene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1666
+Gender: female
+Name: Catherine Delgado
+Birth in Waterloo-Cedar Falls, IA, USA - Birth of Delgado, Catherine
+
+Type: person
+Gramps ID: I1803
+Gender: male
+Name: Matthew Reed
+Birth: um 1847 - Birth of Reed, Matthew
+Death: 1927-10-21 in Worcester, Worcester, MA, USA - Death of Reed, Matthew
+
+Type: person
+Gramps ID: I1108
+Gender: male
+Name: Willoughby M. ĐąĐžĐŒĐŸŃДДĐČ
+Birth: 1813-02-04 in Miami Beach, Miami-Dade, FL, USA - Birth of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+Death: 1877-01-16 in Jamestown, ND, USA - Death of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+Burial: um 1877-01-18 in Jamestown, ND, USA - Burial of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+
+Type: person
+Gramps ID: I1345
+Gender: male
+Name: Nathan M. Jiménez
+Birth: 1844-10-10 - Birth of Jiménez, Nathan M.
+Death: 1848-07-01 in New Ulm, MN, USA - Death of Jiménez, Nathan M.
+Burial: 1848-07-03 in Danville, VA, USA - Burial of Jiménez, Nathan M.
+
+Type: person
+Gramps ID: I1399
+Gender: female
+Name: Matilda Jankowski
+Birth: 1885-06-07 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Matilda
+Death: 1925-01-22 in Troy, Pike, AL, USA - Death of Jankowski, Matilda
+
+Type: person
+Gramps ID: I0042
+Gender: male
+Name: Francis Irvin Webb
+Birth: 1869-04-28 in Richmond, Wayne, IN, USA - Birth of Webb, Francis Irvin
+Death: 1957-02-07 in Granbury, Hood, TX, USA - Death of Webb, Francis Irvin
+Burial: 1957-02 in Boone, Boone, IA, USA - Burial of Webb, Francis Irvin
+
+Type: person
+Gramps ID: I0193
+Gender: male
+Name: Lewis I. Webb
+Birth: 1903-03-31 in Billings, MT, USA - Birth of Webb, Lewis I.
+Death: 1942-12-25 in Kendallville, Noble, IN, USA - Death of Webb, Lewis I.
+Burial in San Antonio, Bexar, TX, USA - Burial of Webb, Lewis I.
+
+Type: person
+Gramps ID: I1305
+Gender: female
+Name: Elizabeth Dubé
+Birth: 1786 - Birth of Dubé, Elizabeth
+
+Type: person
+Gramps ID: I1746
+Gender: female
+Name: Susan Dennis
+Death: 1932-12-03 in Summerville, Chattooga, GA, USA - Death of Dennis, Susan
+
+Type: person
+Gramps ID: I0536
+Gender: female
+Name: Mary Lefebvre
+Birth: 1654-03-22 - Birth of Lefebvre, Mary
+
+Type: person
+Gramps ID: I1811
+Gender: female
+Name: Carmel Reed
+Birth: 1938-02 in Niles, MI, USA - Birth of Reed, Carmel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2004
+Gender: male
+Name: James Mendoza
+
+Type: person
+Gramps ID: I2075
+Gender: female
+Name: Joseph
+
+Type: person
+Gramps ID: I0820
+Gender: male
+Name: Damian ĐĐ°ŃĐżĐŸĐČ
+Birth in Indianola, MS, USA - Birth of ĐĐ°ŃĐżĐŸĐČ, Damian
+
+Type: person
+Gramps ID: I1469
+Gender: male
+Name: Thomas C. Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, Thomas C.
+
+Type: person
+Gramps ID: I0321
+Gender: female
+Name: Janelle Marie Poirier
+Birth: 1971-08-02 in DuBois, PA, USA - Birth of Poirier, Janelle Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0384
+Gender: male
+Name: William C. Boucher
+Death: 1944-01-13 - Death of Boucher, William C.
+
+Type: person
+Gramps ID: I0868
+Gender: male
+Name: Mark John Matthews
+
+Type: person
+Gramps ID: I0823
+Gender: male
+Name: Barry Hansen
+Birth: 1982 in Omaha, NE, USA - Birth of Hansen, Barry
+
+Type: person
+Gramps ID: I1120
+Gender: male
+Name: John Morgan Floyd
+
+Type: person
+Gramps ID: I1243
+Gender: male
+Name: Noble A. Webb
+Birth: 1925 in Eau Claire, WI, USA - Birth of Webb, Noble A.
+Death in Reno-Sparks, NV, USA - Death of Webb, Noble A.
+
+Type: person
+Gramps ID: I0261
+Gender: female
+Name: Sarah Landry
+Birth: um 1857 - Birth of Landry, Sarah
+
+Type: person
+Gramps ID: I1478
+Gender: male
+Name: William Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, William
+
+Type: person
+Gramps ID: I1617
+Gender: male
+Name: Valentine Thomas McCarthy
+
+Type: person
+Gramps ID: I1882
+Gender: male
+Name: Brendan Reed
+
+Type: person
+Gramps ID: I0494
+Gender: female
+Name: Rose Dubé
+
+Type: person
+Gramps ID: I0548
+Gender: female
+Name: Sabra Davis
+Birth: 1762-09-06 - Birth of Davis, Sabra
+Death: 1845-11-01 in Keene, NH, USA - Death of Davis, Sabra
+Burial in Keene, NH, USA - Burial of Davis, Sabra
+
+Type: person
+Gramps ID: I1764
+Gender: male
+Name: Bishop Patrick Boucher
+Birth in Ellensburg, WA, USA - Birth of Boucher, Bishop Patrick
+
+Type: person
+Gramps ID: I0710
+Gender: male
+Name: John йОŃ
ĐŸĐœĐŸĐČ
+Birth in Hutchinson, Reno, KS, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, John
+
+Type: person
+Gramps ID: I1765
+Gender: male
+Name: John Hamilton
+Birth: 1968 - Birth of Hamilton, John
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0712
+Gender: male
+Name: ????? Brown
+
+Type: person
+Gramps ID: I0928
+Gender: female
+Name: Elsbeth Buchanan
+Birth: 1584-09-27 - Birth of Buchanan, Elsbeth
+
+Type: person
+Gramps ID: I1075
+Gender: female
+Name: Margaret(?) ĐŃĐ»ĐŸĐČ
+Birth in Del Rio, Val Verde, TX, USA - Birth of ĐŃĐ»ĐŸĐČ, Margaret(?)
+Death in Del Rio, Val Verde, TX, USA - Death of ĐŃĐ»ĐŸĐČ, Margaret(?)
+
+Type: person
+Gramps ID: I0554
+Gender: female
+Name: Jane Adams
+Birth: zwischen 1746 und 1755 in Plattsburgh, Clinton, NY, USA - Birth of Adams, Jane
+Death: geschÀtzt von 1800 bis 1805 in Jefferson City, MO, USA - Death of Adams, Jane
+
+Type: person
+Gramps ID: I0930
+Gender: female
+Name: Barbli Schmidt
+Birth: um 1655 in Cheyenne, WY, USA - Birth of Schmidt, Barbli
+
+Type: person
+Gramps ID: I0789
+Gender: female
+Name: Shawna Marie Rodgers
+Birth: 1979-08-05 in Santa Rosa-Petaluma, CA, USA - Birth of Rodgers, Shawna Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0344
+Gender: female
+Name: Rebecca Kristine Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1982-12-31 in Wheeling, WV-OH, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Rebecca Kristine Ramos
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0281
+Gender: male
+Name: Darin Kane Warner
+Birth: 1960-05-01 in Wheeling, WV-OH, USA - Birth of Warner, Darin Kane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0508
+Gender: female
+Name: Mary Alvarez
+Birth in Ukiah, Mendocino, CA, USA - Birth of Alvarez, Mary
+Death: 1727 - Death of Alvarez, Mary
+
+Type: person
+Gramps ID: I1635
+Gender: female
+Name: Ruth Ellen Page
+
+Type: person
+Gramps ID: I0219
+Gender: male
+Name: Gerald Ray Cruz
+Birth: 1944-01-09 - Birth of Cruz, Gerald Ray
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1081
+Gender: male
+Name: Cole Randall Poulsen
+Birth: 1991-12-08 in Vallejo, Solano, CA, USA - Birth of Poulsen, Cole Randall
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1567
+Gender: female
+Name: Janie ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I1325
+Gender: male
+Name: Johann Theobald Beaulieu
+Birth: 1719 - Birth of Beaulieu, Johann Theobald
+Death: 1780 - Death of Beaulieu, Johann Theobald
+
+Type: person
+Gramps ID: I0890
+Gender: female
+Name: Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+Birth in Mountain Home, Elmore, ID, USA - Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Death: 1849-05-08 in Pontiac, St. Clair, IL, USA - Death of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Burial: 1849-05-09 in Glens Falls, Warren, NY, USA - Burial of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+
+Type: person
+Gramps ID: I1326
+Gender: female
+Name: Anna Maria Sutton
+Birth: 1718 - Birth of Sutton, Anna Maria
+
+Type: person
+Gramps ID: I0005
+Gender: male
+Name: Allen Carl Warner
+Birth: 1952-02-01 in Worthington, MN, USA - Birth of Warner, Allen Carl
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0069
+Gender: female
+Name: Lucinda Catherine Blanco
+Birth: 1849-01-25 in Lynchburg, VA, USA - Birth of Blanco, Lucinda Catherine
+Death: 1932-10-21 in Oxford, MS, USA - Death of Blanco, Lucinda Catherine
+Burial: 1932-10-23 in Crawfordsville, Montgomery, IN, USA - Burial of Blanco, Lucinda Catherine
+
+Type: person
+Gramps ID: I1974
+Gender: female
+Name: Mary Elizabeth Ball
+
+Type: person
+Gramps ID: I1281
+Gender: male
+Name: Simon Farmer
+Birth: 1815 - Birth of Farmer, Simon
+Death: 1875 - Death of Farmer, Simon
+
+Type: person
+Gramps ID: I1911
+Gender: female
+Name: Lucy Gibbs
+
+Type: person
+Gramps ID: I2044
+Gender: male
+Name: Andrew Joseph Garner
+Birth: 1999-04-11 in Worthington, MN, USA - Birth of Garner, Andrew Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0617
+Gender: female
+Name: Cathy Sue Henderson
+Birth: 1965-05-08 in Ottawa, La Salle, IL, USA - Birth of Henderson, Cathy Sue
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0753
+Gender: female
+Name: Rose Peters
+Birth: 1608 in Hilo, HI, USA - Birth of Peters, Rose
+Death: 1695 in Florence, Lauderdale, AL, USA - Death of Peters, Rose
+Burial in Dunn, NC, USA - Burial of Peters, Rose
+
+Type: person
+Gramps ID: I1331
+Gender: female
+Name: Anna Margaretha Beaulieu
+Birth: 1726 - Birth of Beaulieu, Anna Margaretha
+
+Type: person
+Gramps ID: I0520
+Gender: female
+Name: ??????? ĐĐŸĐżĐŸĐČ
+
+Type: person
+Gramps ID: I0851
+Gender: male
+Name: George Sr. Peters
+Birth: vor 1583 in Salisbury, NC, USA - Birth of Peters, George Sr.
+Death: 1648 in Lamesa, Dawson, TX, USA - Death of Peters, George Sr.
+Burial in Longview, Gregg, TX, USA - Burial of Peters, George Sr.
+
+Type: person
+Gramps ID: I0522
+Gender: male
+Name: Christopher Christiansen
+Birth: 1530 in Hilo, HI, USA - Birth of Christiansen, Christopher
+Death: 1588 in Elizabeth City, NC, USA - Death of Christiansen, Christopher
+Burial in Hilo, HI, USA - Burial of Christiansen, Christopher
+
+Type: person
+Gramps ID: I1098
+Gender: male
+Name: Fielding Brooks
+
+Type: person
+Gramps ID: I2052
+Gender: male
+Name: Green P. Moreno
+Birth: 1844-11-24 - Birth of Moreno, Green P.
+
+Type: person
+Gramps ID: I1513
+Gender: male
+Name: Edgar Douglas
+
+Type: person
+Gramps ID: I0037
+Gender: female
+Name: Clara Belle Page
+Birth: 1889-10-14 in Oskaloosa, Mahaska, IA, USA - Birth of Page, Clara Belle
+Death: 1969-12-20 in Scranton, PA, USA - Death of Page, Clara Belle
+Burial: 1969-12-23 in Henderson, NC, USA - Burial of Page, Clara Belle
+
+Type: person
+Gramps ID: I0900
+Gender: male
+Name: Mitchell Lee Page
+Birth: 1983-08-17 in Santa Rosa-Petaluma, CA, USA - Birth of Page, Mitchell Lee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0038
+Gender: male
+Name: David Page
+Birth: 1850-01-01 in Watertown, SD, USA - Birth of Page, David
+Death: 1922-10-13 in Point Pleasant, WV, USA - Death of Page, David
+Burial: 1922-10-15 in Point Pleasant, WV, USA - Burial of Page, David
+Death: 1887-04-07 in Oakland, Alameda, CA, USA - Death of Garner, Anderson (Informant)
+
+Type: person
+Gramps ID: I0685
+Gender: male
+Name: John Sanchez
+Birth: um 1480 in Phoenix, Maricopa, AZ, USA - Birth of Sanchez, John
+Death: 1545 in Phoenix, Maricopa, AZ, USA - Death of Sanchez, John
+
+Type: person
+Gramps ID: I1104
+Gender: male
+Name: Thomas Grant
+
+Type: person
+Gramps ID: I1855
+Gender: female
+Name: Jane Reed
+
+Type: person
+Gramps ID: I0578
+Gender: male
+Name: Henry Johnson
+
+Type: person
+Gramps ID: I0857
+Gender: female
+Name: Penelope Walsh
+Birth: 1955-01-06 - Birth of Walsh, Penelope
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0190
+Gender: female
+Name: Laura Eloise Lessard
+Birth: 1898-07-22 in Edwards, Eagle, CO, USA - Birth of Lessard, Laura Eloise
+Death: um 1975 - Death of Lessard, Laura Eloise
+
+Type: person
+Gramps ID: I2059
+Gender: male
+Name: Samuel A. Andersen
+
+Type: person
+Gramps ID: I0477
+Gender: male
+Name: Thomas Sr. James
+Birth: 1745 in Philadelphia, PA, USA - Birth of James, Thomas Sr.
+Death in Marshall, MN, USA - Death of James, Thomas Sr.
+
+Type: person
+Gramps ID: I0582
+Gender: female
+Name: Sarah "Sr. Sabina" Kristensen
+Birth: 1885-06-25 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Sarah "Sr. Sabina"
+Death: 1926-01-04 in Ottawa, La Salle, IL, USA - Death of Kristensen, Sarah "Sr. Sabina"
+Burial: 1926-01-05 in Lexington, NC, USA - Burial of Kristensen, Sarah "Sr. Sabina"
+
+Type: person
+Gramps ID: I0746
+Gender: male
+Name: Samuel Anderson
+Birth: 1654 in Baton Rouge, East Baton Rouge, LA, USA - Birth of Anderson, Samuel
+Death in Gettysburg, PA, USA - Death of Anderson, Samuel
+
+Type: person
+Gramps ID: I1347
+Gender: male
+Name: John T. L. Jiménez
+Birth: 1829-08-30 in Marquette, MI, USA - Birth of Jiménez, John T. L.
+Death: 1851-06-20 in New Ulm, MN, USA - Death of Jiménez, John T. L.
+Burial: 1851-06-21 in Kennett, MO, USA - Burial of Jiménez, John T. L.
+
+Type: person
+Gramps ID: I1460
+Gender: female
+Name: Rhonda Lynch
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0863
+Gender: female
+Name: Celeste Ellen Brock
+Birth: 1971-11-10 in Statesboro, Bulloch, GA, USA - Birth of Brock, Celeste Ellen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1303
+Gender: male
+Name: Samuel Ford
+
+Type: person
+Gramps ID: I1348
+Gender: female
+Name: Mary C. Jiménez
+Birth: 1849-12-08 in Marquette, MI, USA - Birth of Jiménez, Mary C.
+Death: 1869-10-10 in Marquette, MI, USA - Death of Jiménez, Mary C.
+Burial: 1869-10-11 in Fort Smith, Sebastian, AR-OK, USA - Burial of Jiménez, Mary C.
+
+Type: person
+Gramps ID: I0089
+Gender: male
+Name: John Reed
+Birth in Shelbyville, TN, USA - Birth of Reed, John
+Death: 1886-08-11 in Shelbyville, TN, USA - Death of Reed, John
+Burial: 1886-08 in Shelbyville, TN, USA - Burial of Reed, John
+
+Type: person
+Gramps ID: I1115
+Gender: female
+Name: Mary M. Garner
+Birth: 1851-10-12 - Birth of Garner, Mary M.
+Death: 1858-05-24 - Death of Garner, Mary M.
+Burial: 1858-05 in Storm Lake, Buena Vista, IA, USA - Burial of Garner, Mary M.
+
+Type: person
+Gramps ID: I1307
+Gender: male
+Name: Johann Valentin Beaulieu
+Birth: 1735 - Birth of Beaulieu, Johann Valentin
+
+Type: person
+Gramps ID: I1467
+Gender: male
+Name: Franklin Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, Franklin
+
+Type: person
+Gramps ID: I1748
+Gender: male
+Name: William Boucher
+
+Type: person
+Gramps ID: I1752
+Gender: male
+Name: Patrick Bush
+Birth: 1879-04 - Birth of Bush, Patrick
+
+Type: person
+Gramps ID: I0047
+Gender: male
+Name: Francis Vincent Reed
+Birth: 1857-05-02 in Mount Sterling, Montgomery, KY, USA - Birth of Reed, Francis Vincent
+Death: 1945-03-02 in Ottawa, La Salle, IL, USA - Death of Reed, Francis Vincent
+Burial: 1945-03-04 in Ottawa, La Salle, IL, USA - Burial of Reed, Francis Vincent
+
+Type: person
+Gramps ID: I0048
+Gender: female
+Name: Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ
+Birth: 1864-01-27 in Ottawa, La Salle, IL, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Death: 1903-11-27 in Ottawa, La Salle, IL, USA - Death of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Burial: 1903-11-29 in Lexington, NC, USA - Burial of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+
+Type: person
+Gramps ID: I0870
+Gender: female
+Name: April Lynn VĂĄzquez
+Birth: 1963-09-17 in Aberdeen, SD, USA - Birth of VĂĄzquez, April Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0871
+Gender: female
+Name: Mary Jane Gardner
+Death: 1963-01-10 in Whitewater, WI, USA - Death of Gardner, Mary Jane
+Burial: 1963-01-12 in Marysville, Yuba, CA, USA - Burial of Gardner, Mary Jane
+
+Type: person
+Gramps ID: I2012
+Gender: female
+Name: Experience Griffith
+
+Type: person
+Gramps ID: I0547
+Gender: male
+Name: Randolph Green
+Birth: 1768-03-17 - Birth of Green, Randolph
+Death: 1838-03-17 in Keene, NH, USA - Death of Green, Randolph
+Burial in Keene, NH, USA - Burial of Green, Randolph
+
+Type: person
+Gramps ID: I2087
+Gender: male
+Name: Christian Moreno
+
+Type: person
+Gramps ID: I0266
+Gender: male
+Name: Lawrence Harris
+
+Type: person
+Gramps ID: I1481
+Gender: male
+Name: Charles Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, Charles
+Death in Cookeville, TN, USA - Death of Alvarado, Charles
+
+Type: person
+Gramps ID: I1256
+Gender: female
+Name: Sarah Jane Walker
+
+Type: person
+Gramps ID: I1258
+Gender: male
+Name: Greenleaf Warner
+
+Type: person
+Gramps ID: I1423
+Gender: female
+Name: Anna Page
+Birth: 1867 in Palm Coast, Flagler, FL, USA - Birth of Page, Anna
+
+Type: person
+Gramps ID: I1769
+Gender: female
+Name: Clara Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0210
+Gender: male
+Name: Philip Thornton
+
+Type: person
+Gramps ID: I1895
+Gender: female
+Name: Catherine Salazar
+
+Type: person
+Gramps ID: I0456
+Gender: male
+Name: Vernett Gail Page
+Birth: 1911-02-26 in Gaithersburg, MD, USA - Birth of Page, Vernett Gail
+Death: 1998-08-29 - Death of Page, Vernett Gail
+
+Type: person
+Gramps ID: I2103
+Gender: male
+Name: Martin
+
+Type: person
+Gramps ID: I1637
+Gender: male
+Name: Everett Lewandowski
+
+Type: person
+Gramps ID: I0029
+Gender: male
+Name: John ĐŃĐșĐŸĐČ
+Birth: 1795-11-06 in Ardmore, OK, USA - Birth of ĐŃĐșĐŸĐČ, John
+Death: 1875-12-12 in Visalia, Tulare, CA, USA - Death of ĐŃĐșĐŸĐČ, John
+Burial in Bowling Green, Warren, KY, USA - Burial of ĐŃĐșĐŸĐČ, John
+
+Type: person
+Gramps ID: I0352
+Gender: male
+Name: George Walter Todd
+Birth: 1879-03-03 - Birth of Todd, George Walter
+Death: 1919-06-28 - Death of Todd, George Walter
+
+Type: person
+Gramps ID: I0800
+Gender: female
+Name: Elizabeth Henry
+Birth: 1770-04 - Birth of Henry, Elizabeth
+Death: 1836-05-14 in Springfield, Hampden, MA, USA - Death of Henry, Elizabeth
+Burial: 1836-05-15 in Fitzgerald, Ben Hill, GA, USA - Burial of Henry, Elizabeth
+
+Type: person
+Gramps ID: I1278
+Gender: female
+Name: Anna Elisabeth LĂłpez
+Birth: 1715 - Birth of LĂłpez, Anna Elisabeth
+
+Type: person
+Gramps ID: I1787
+Gender: female
+Name: Tracy Boucher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1203
+Gender: male
+Name: Edward Swanson
+
+Type: person
+Gramps ID: I0732
+Gender: female
+Name: Jeanne Richard
+Birth: 1703 in Bartlesville, OK, USA - Birth of Richard, Jeanne
+Death: 1792 in Lawrence, Douglas, KS, USA - Death of Richard, Jeanne
+Burial in Albertville, Marshall, AL, USA - Burial of Richard, Jeanne
+
+Type: person
+Gramps ID: I1648
+Gender: male
+Name: Col. Robert Strickland
+
+Type: person
+Gramps ID: I0571
+Gender: male
+Name: Michael Howard
+
+Type: person
+Gramps ID: I0297
+Gender: male
+Name: Jimmy Michael French
+Birth: 1947-04-06 in Muskogee, OK, USA - Birth of French, Jimmy Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0986
+Gender: male
+Name: Charles Sr. ĐĐŒĐžŃŃОДĐČ
+Birth: um 1687 in Keokuk, Lee, IA, USA - Birth of ĐĐŒĐžŃŃОДĐČ, Charles Sr.
+Death: 1750-05-13 in Seneca, SC, USA - Death of ĐĐŒĐžŃŃОДĐČ, Charles Sr.
+
+Type: person
+Gramps ID: I0755
+Gender: female
+Name: Ellen ĐĐŸĐœŃĐ°ŃĐŸĐČ
+Birth: um 1515 - Birth of ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+Death: 1572 in Phoenix, Maricopa, AZ, USA - Death of ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+
+Type: person
+Gramps ID: I0897
+Gender: male
+Name: Marvin Ray Page
+Birth: 1941-07-30 in Wheeling, WV-OH, USA - Birth of Page, Marvin Ray
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1100
+Gender: unknown
+Name: Miriam Brooks
+
+Type: person
+Gramps ID: I0238
+Gender: male
+Name: Lloyd Willis Garrett
+Birth: 1936-08-29 - Birth of Garrett, Lloyd Willis
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0418
+Gender: male
+Name: Douglas Glenn Harrison
+Birth: 1988-01-19 in Rockland, ME, USA - Birth of Harrison, Douglas Glenn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1515
+Gender: male
+Name: Reuben ĐĐ°ĐČĐ»ĐŸĐČ
+
+Type: person
+Gramps ID: I1799
+Gender: male
+Name: Kieran Thomas Obrien
+Birth: 1981-09-03 in Tallulah, Madison, LA, USA - Birth of Obrien, Kieran Thomas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0305
+Gender: male
+Name: David J. Ward
+Birth: 1944-12-31 in Frankfort, Clinton, IN, USA - Birth of Ward, David J.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1926
+Gender: male
+Name: Jack Beck
+
+Type: person
+Gramps ID: I0244
+Gender: female
+Name: Nancy H. MarĂn
+Birth in Paris, TN, USA - Birth of MarĂn, Nancy H.
+
+Type: person
+Gramps ID: I0246
+Gender: male
+Name: ??????? Olson
+
+Type: person
+Gramps ID: I0692
+Gender: male
+Name: Benjamin Davis
+
+Type: person
+Gramps ID: I1401
+Gender: male
+Name: David Jankowski
+Birth: 1886-08-10 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, David
+Death: 1951-04-10 in Troy, Pike, AL, USA - Death of Jankowski, David
+Burial: 1957-04-12 in Oskaloosa, Mahaska, IA, USA - Burial of Jankowski, David
+
+Type: person
+Gramps ID: I1863
+Gender: male
+Name: Johnnie Sandoval
+
+Type: person
+Gramps ID: I0086
+Gender: male
+Name: Benjamin H. Farmer
+Birth: 1812-01-03 in Plattsburgh, Clinton, NY, USA - Birth of Farmer, Benjamin H.
+Death: 1873-08-13 in Fremont, NE, USA - Death of Farmer, Benjamin H.
+Burial: 1873-08-14 in Charlotte, NC, USA - Burial of Farmer, Benjamin H.
+
+Type: person
+Gramps ID: I1402
+Gender: female
+Name: Margaret Jane "Maggie" Jankowski
+Birth: 1889-05-28 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Margaret Jane "Maggie"
+Death: 1960-01-05 in Troy, Pike, AL, USA - Death of Jankowski, Margaret Jane "Maggie"
+Birth: 1911-07-12 - Birth of Thornton, James Arthur (Witness)
+
+Type: person
+Gramps ID: I0533
+Gender: male
+Name: Joseph Lefebvre
+Birth in Winona, MN, USA - Birth of Lefebvre, Joseph
+
+Type: person
+Gramps ID: I0634
+Gender: male
+Name: Daniel Burton Garner
+Birth: 1914-09-07 in Bloomington, Monroe, IN, USA - Birth of Garner, Daniel Burton
+Death: 1916-10-02 in Paragould, Greene, AR, USA - Death of Garner, Daniel Burton
+Burial in Sterling, Whiteside, IL, USA - Burial of Garner, Daniel Burton
+
+Type: person
+Gramps ID: I2002
+Gender: female
+Name: Abigail Allen
+Birth: 1690 in Topeka, Shawnee, KS, USA - Birth of Allen, Abigail
+
+Type: person
+Gramps ID: I0380
+Gender: male
+Name: Thomas Boucher
+Birth: 1840-12-24 - Birth of Boucher, Thomas
+Death: 1885-07-29 - Death of Boucher, Thomas
+
+Type: person
+Gramps ID: I0773
+Gender: male
+Name: John Benson
+Birth: 1750 - Birth of Benson, John
+
+Type: person
+Gramps ID: I1059
+Gender: male
+Name: ?? Demers
+
+Type: person
+Gramps ID: I0964
+Gender: male
+Name: Col. John Reynolds
+Birth: 1622 in Las Vegas, NM, USA - Birth of Reynolds, Col. John
+Death: 1670 in Laredo, Webb, TX, USA - Death of Reynolds, Col. John
+Burial in Laredo, Webb, TX, USA - Burial of Reynolds, Col. John
+
+Type: person
+Gramps ID: I0386
+Gender: male
+Name: Thomas Boucher
+
+Type: person
+Gramps ID: I0439
+Gender: male
+Name: Douglas Krawczyk
+Birth: 1956-06-14 - Birth of Krawczyk, Douglas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1613
+Gender: female
+Name: Sarah Palmer
+
+Type: person
+Gramps ID: I1686
+Gender: male
+Name: Adam Stephens
+
+Type: person
+Gramps ID: I1880
+Gender: male
+Name: John Noel Reed
+
+Type: person
+Gramps ID: I0149
+Gender: female
+Name: Betty Louise Warner
+Birth: 1940-01-16 in Big Rapids, MI, USA - Birth of Warner, Betty Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2014
+Gender: female
+Name: Elizabeth Norris
+Birth: um 1679 in Sikeston, MO, USA - Birth of Norris, Elizabeth
+Death: 1731-05-10 in Garden City, Finney, KS, USA - Death of Norris, Elizabeth
+Burial: 1731-05-12 in Sioux City, Woodbury, IA-NE-SD, USA - Burial of Norris, Elizabeth
+
+Type: person
+Gramps ID: I0443
+Gender: male
+Name: Randall Lee Poulsen
+Birth: 1963-01-25 - Birth of Poulsen, Randall Lee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1123
+Gender: male
+Name: Robert F. Garner
+Birth: 1863-04-04 in Paragould, Greene, AR, USA - Birth of Garner, Robert F.
+Marriage: 1927-12-25 - Marriage of WĂłjcik, Arnold and Garner, Helen Bernice (Witness)
+Death: 1940-02-17 in Marshalltown, Marshall, IA, USA - Death of Garner, Robert F.
+Burial: 1940-02-19 in Denver-Aurora, CO, USA - Burial of Garner, Robert F.
+
+Type: person
+Gramps ID: I1415
+Gender: male
+Name: Everett Glenn (Ezra) Page
+Birth in Racine, WI, USA - Birth of Page, Everett Glenn (Ezra)
+
+Type: person
+Gramps ID: I1762
+Gender: male
+Name: Garrett Boucher
+
+Type: person
+Gramps ID: I1008
+Gender: male
+Name: Eudo ĐĄĐŒĐžŃĐœĐŸĐČ
+Birth: 1014 - Birth of ĐĄĐŒĐžŃĐœĐŸĐČ, Eudo
+
+Type: person
+Gramps ID: I1124
+Gender: female
+Name: Mary Jane Cannon
+
+Type: person
+Gramps ID: I1251
+Gender: female
+Name: Lucy Warner
+
+Type: person
+Gramps ID: I1417
+Gender: male
+Name: Wong
+
+Type: person
+Gramps ID: I0449
+Gender: female
+Name: Karen Kay Cruz
+Birth: 1975-09-08 - Birth of Cruz, Karen Kay
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1697
+Gender: male
+Name: John David Webb
+
+Type: person
+Gramps ID: I1954
+Gender: female
+Name: Elizabeth Nichols
+Birth: 1711-01-03 in Williston, ND, USA - Birth of Nichols, Elizabeth
+Death: 1768-04-15 in Williston, ND, USA - Death of Nichols, Elizabeth
+
+Type: person
+Gramps ID: I0271
+Gender: male
+Name: Maurice, Jr. Landry
+Birth: 1921-01-11 - Birth of Landry, Maurice, Jr.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1828
+Gender: male
+Name: Poulin
+
+Type: person
+Gramps ID: I0501
+Gender: female
+Name: Jacqueline Alvarado
+
+Type: person
+Gramps ID: I1830
+Gender: male
+Name: Đ€Đ”ĐŽĐŸŃĐŸĐČ
+
+Type: person
+Gramps ID: I2024
+Gender: male
+Name: Walter Harmon Gutiérrez
+Birth: 1896-05-09 - Birth of Gutiérrez, Walter Harmon
+
+Type: person
+Gramps ID: I0341
+Gender: male
+Name: Gregory Scott Floyd
+Birth: 1983-04-18 in Hot Springs, Garland, AR, USA - Birth of Floyd, Gregory Scott
+Death: 1983-06-15 in Hot Springs, Garland, AR, USA - Death of Floyd, Gregory Scott
+
+Type: person
+Gramps ID: I0879
+Gender: male
+Name: Milton Blanco
+Birth: 1854 in Stephenville, Erath, TX, USA - Birth of Blanco, Milton
+
+Type: person
+Gramps ID: I1132
+Gender: male
+Name: Edward Reed
+Birth: 1847-06-28 in El Campo, Wharton, TX, USA - Birth of Reed, Edward
+Death: 1892-03-05 in Plymouth, Marshall, IN, USA - Death of Reed, Edward
+
+Type: person
+Gramps ID: I1701
+Gender: female
+Name: Anna Mabel Webb
+Birth: 1890-10-02 in Reno-Sparks, NV, USA - Birth of Webb, Anna Mabel
+Death: 1967-07-12 - Death of Webb, Anna Mabel
+
+Type: person
+Gramps ID: I0791
+Gender: male
+Name: John ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ
+Birth: 1956-01-14 - Birth of ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ, John
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0880
+Gender: female
+Name: L. J. Blanco
+Birth: 1856 in Cambridge, OH, USA - Birth of Blanco, L. J.
+Marriage: 1875-04-01 in Paragould, Greene, AR, USA - Marriage of Garner, Lewis Anderson and Martel, Luella Jacques (Clergy)
+
+Type: person
+Gramps ID: I1265
+Gender: male
+Name: Edward Warner
+
+Type: person
+Gramps ID: I0027
+Gender: male
+Name: Matthias, Jr. Ball
+Birth: 1810-08-07 in Amarillo, Potter, TX, USA - Birth of Ball, Matthias, Jr.
+Death: 1887-12-23 in Portland, OR, USA - Death of Ball, Matthias, Jr.
+Burial: 1887-12-24 in Payson, Gila, AZ, USA - Burial of Ball, Matthias, Jr.
+
+Type: person
+Gramps ID: I1561
+Gender: male
+Name: Charles ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I2031
+Gender: male
+Name: Beckham Hawkins
+
+Type: person
+Gramps ID: I0346
+Gender: male
+Name: Paul Allen Harrison
+Birth: 1958-10-26 - Birth of Harrison, Paul Allen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1194
+Gender: male
+Name: Peter Baldwin
+
+Type: person
+Gramps ID: I1270
+Gender: male
+Name: John Quincy Adams Warner
+
+Type: person
+Gramps ID: I1706
+Gender: male
+Name: Robert B. éŽæš
+
+Type: person
+Gramps ID: I0841
+Gender: male
+Name: Fr. Daniel Gabriel Boucher
+Birth in Summerville, Chattooga, GA, USA - Birth of Boucher, Fr. Daniel Gabriel
+Death in Emporia, Lyon, KS, USA - Death of Boucher, Fr. Daniel Gabriel
+
+Type: person
+Gramps ID: I1083
+Gender: female
+Name: Madeleine Christine Welch
+Birth: 1995-11-01 in Vallejo, Solano, CA, USA - Birth of Welch, Madeleine Christine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0670
+Gender: female
+Name: Jane McClellan Garner
+Birth: 1950-04-27 in Norwich, New London, CT, USA - Birth of Garner, Jane McClellan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0002
+Gender: male
+Name: James Jeffrey Warner
+Birth: 1984-05-03 in Gainesville, Llano, TX, USA - Birth of Warner, James Jeffrey
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0729
+Gender: male
+Name: James James
+
+Type: person
+Gramps ID: I1714
+Gender: male
+Name: Alvin Rodriquez
+Birth in MayagĂŒez, PR, USA - Birth of Rodriquez, Alvin
+
+Type: person
+Gramps ID: I2040
+Gender: male
+Name: Gerald L. Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0226
+Gender: female
+Name: Ellen Marie Hawkins
+Birth: 1929-09-24 - Birth of Hawkins, Ellen Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0615
+Gender: male
+Name: Cyrus Morris
+Birth: 20 in Roanoke, VA, USA - Birth of Morris, Cyrus
+Death: 1852-08-10 in Silver City, NM, USA - Death of Morris, Cyrus
+Burial in Fayetteville, Washington, AR, USA - Burial of Morris, Cyrus
+
+Type: person
+Gramps ID: I0175
+Gender: female
+Name: Louise Nielsen
+
+Type: person
+Gramps ID: I0006
+Gender: female
+Name: Rita Marie Garner
+Birth: 1952-09-07 in Worthington, MN, USA - Birth of Garner, Rita Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1843
+Gender: female
+Name: Elizabeth Gibbs
+Death: 1979-10-01 in Kingsport, TN, USA - Death of Gibbs, Elizabeth
+
+Type: person
+Gramps ID: I0948
+Gender: male
+Name: William MarĂn
+Death in Lewisburg, PA, USA - Death of MarĂn, William
+Burial in Sheridan, WY, USA - Burial of MarĂn, William
+
+Type: person
+Gramps ID: I0985
+Gender: female
+Name: Anne Baldwin
+Birth: um 1656 - Birth of Baldwin, Anne
+Death in Louisville, Jefferson, KY, USA - Death of Baldwin, Anne
+Burial in Louisville, Jefferson, KY, USA - Burial of Baldwin, Anne
+
+Type: person
+Gramps ID: I1149
+Gender: male
+Name: John Ramos
+Birth: 1526 in McAlester, OK, USA - Birth of Ramos, John
+
+Type: person
+Gramps ID: I1577
+Gender: female
+Name: Permelia Lawson
+
+Type: person
+Gramps ID: I0359
+Gender: female
+Name: Sarah Jane Farmer
+Birth: 1840-05-07 in Thomaston, Upson, GA, USA - Birth of Farmer, Sarah Jane
+
+Type: person
+Gramps ID: I1096
+Gender: male
+Name: Spencer Brooks
+
+Type: person
+Gramps ID: I0361
+Gender: female
+Name: Susanne Delilah Farmer
+Birth: 1844-12-02 in Thomaston, Upson, GA, USA - Birth of Farmer, Susanne Delilah
+
+Type: person
+Gramps ID: I0852
+Gender: female
+Name: Joan Ramsey
+
+Type: person
+Gramps ID: I1287
+Gender: female
+Name: Magdalena Farmer
+Birth: 1832 - Birth of Farmer, Magdalena
+
+Type: person
+Gramps ID: I1657
+Gender: male
+Name: William Waters
+Birth in Memphis, TN, USA - Birth of Waters, William
+
+Type: person
+Gramps ID: I0184
+Gender: female
+Name: Cecilia Garner
+Birth: 1960-07-14 in Ottawa, La Salle, IL, USA - Birth of Garner, Cecilia
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0523
+Gender: female
+Name: Anne Barrett
+Birth: um 1600 in Durant, OK, USA - Birth of Barrett, Anne
+
+Type: person
+Gramps ID: I1919
+Gender: male
+Name: Charles Swanson
+
+Type: person
+Gramps ID: I0576
+Gender: female
+Name: Ann Delilah "Tilley" Moran
+Birth in Homosassa Springs, Citrus, FL, USA - Birth of Moran, Ann Delilah "Tilley"
+Death: 1801 in Las Cruces, NM, USA - Death of Moran, Ann Delilah "Tilley"
+
+Type: person
+Gramps ID: I0080
+Gender: female
+Name: Elizabeth ĐалДŃĐžĐœ
+
+Type: person
+Gramps ID: I0420
+Gender: male
+Name: Isaac Lessard
+Birth: 1828-10 in Mountain Home, Elmore, ID, USA - Birth of Lessard, Isaac
+
+Type: person
+Gramps ID: I1293
+Gender: male
+Name: Jacob Taylor
+Birth: 1780 - Birth of Taylor, Jacob
+
+Type: person
+Gramps ID: I1342
+Gender: male
+Name: Howard Lane Hudson
+
+Type: person
+Gramps ID: I0041
+Gender: female
+Name: Lucinda Ellen Jiménez
+Birth: 1870-02-05 in Guaynabo, PR, USA - Birth of Jiménez, Lucinda Ellen
+Death: 1949-02-21 in Kendallville, Noble, IN, USA - Death of Jiménez, Lucinda Ellen
+Burial: 1949-02 in Crawfordsville, Montgomery, IN, USA - Burial of Jiménez, Lucinda Ellen
+
+Type: person
+Gramps ID: I0766
+Gender: male
+Name: Antoine Desaure Perronett ć±±æŹ
+Birth: 1643-07-10 in San Luis Obispo, San Luis Obispo, CA, USA - Birth of ć±±æŹ, Antoine Desaure Perronett
+
+Type: person
+Gramps ID: I2068
+Gender: unknown
+Name: Porter
+
+Type: person
+Gramps ID: I0911
+Gender: female
+Name: Susan Stevenson
+
+Type: person
+Gramps ID: I0088
+Gender: female
+Name: Elizabeth Ellen Farmer
+Birth: 1850-06-09 in Salinas, Monterey, CA, USA - Birth of Farmer, Elizabeth Ellen
+Death: 1931-08-03 in Milledgeville, Baldwin, GA, USA - Death of Farmer, Elizabeth Ellen
+Burial: 1931-08 in Crawfordsville, Montgomery, IN, USA - Burial of Farmer, Elizabeth Ellen
+
+Type: person
+Gramps ID: I0817
+Gender: female
+Name: Nula Hansen
+Birth in Tifton, Tift, GA, USA - Birth of Hansen, Nula
+
+Type: person
+Gramps ID: I1602
+Gender: male
+Name: Jacob ĐлДĐșŃДДĐČ
+
+Type: person
+Gramps ID: I1351
+Gender: female
+Name: Lucinda Jiménez
+Birth in Marquette, MI, USA - Birth of Jiménez, Lucinda
+
+Type: person
+Gramps ID: I0637
+Gender: male
+Name: Richard F. Johnson
+Birth: 1917-01-13 in Tupelo, MS, USA - Birth of Johnson, Richard F.
+Death: 1982-09-22 - Death of Johnson, Richard F.
+Burial in Sterling, Whiteside, IL, USA - Burial of Johnson, Richard F.
+
+Type: person
+Gramps ID: I0437
+Gender: male
+Name: Gary Richard Bell
+Birth: 1950-09-06 - Birth of Bell, Gary Richard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2078
+Gender: female
+Name: Lydia Perkins
+
+Type: person
+Gramps ID: I0641
+Gender: female
+Name: Viola Taylor
+
+Type: person
+Gramps ID: I1541
+Gender: male
+Name: James
+Birth: 1742 - Birth of James
+
+Type: person
+Gramps ID: I1684
+Gender: male
+Name: Daniel Blanco
+Birth: 1752 - Birth of Blanco, Daniel
+Death: 1805 - Death of Blanco, Daniel
+
+Type: person
+Gramps ID: I1246
+Gender: male
+Name: Samuel Harvey Warner
+
+Type: person
+Gramps ID: I0707
+Gender: female
+Name: Bridgette Reed
+Birth: 1850-01-19 in Gulfport, MS, USA - Birth of Reed, Bridgette
+Death: 1901-08-13 in Alexandria, Rapides, LA, USA - Death of Reed, Bridgette
+
+Type: person
+Gramps ID: I1317
+Gender: male
+Name: Valentine Steele
+
+Type: person
+Gramps ID: I0445
+Gender: female
+Name: Laura Joy Cruz
+Birth: 1973-04-30 - Birth of Cruz, Laura Joy
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0396
+Gender: female
+Name: Catherine Reeves
+
+Type: person
+Gramps ID: I0447
+Gender: female
+Name: Marsha Ann Cruz
+Birth: 1968-10-04 - Birth of Cruz, Marsha Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0651
+Gender: female
+Name: Maude Garner
+
+Type: person
+Gramps ID: I2020
+Gender: female
+Name: Carmen Alberta Boyd
+Birth: 1897-08-14 - Birth of Boyd, Carmen Alberta
+Death: 1949-06-17 - Death of Boyd, Carmen Alberta
+
+Type: person
+Gramps ID: I0499
+Gender: male
+Name: Wayne Alvarado
+
+Type: person
+Gramps ID: I0834
+Gender: female
+Name: Bridget M. Fields
+Birth in Del Rio, Val Verde, TX, USA - Birth of Fields, Bridget M.
+Death in Lumberton, NC, USA - Death of Fields, Bridget M.
+Burial in Somerset, PA, USA - Burial of Fields, Bridget M.
+
+Type: person
+Gramps ID: I1484
+Gender: male
+Name: Capt. Boyd
+
+Type: person
+Gramps ID: I0273
+Gender: female
+Name: Caroline Metzger Vargas
+
+Type: person
+Gramps ID: I1260
+Gender: male
+Name: Ezra Warner
+
+Type: person
+Gramps ID: I1320
+Gender: female
+Name: Anna Catharina Beaulieu
+Birth: 1709 - Birth of Beaulieu, Anna Catharina
+
+Type: person
+Gramps ID: I0108
+Gender: female
+Name: JenniferMae(Ganoe) Warner
+Birth: 1973-02-06 in Clovis, NM, USA - Birth of Warner, JenniferMae(Ganoe)
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1785
+Gender: male
+Name: Tony Boucher
+Birth: 1984 - Birth of Boucher, Tony
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0289
+Gender: female
+Name: Mary Grace Watson
+Birth: 1983-06-16 in Santa Rosa-Petaluma, CA, USA - Birth of Watson, Mary Grace
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0674
+Gender: male
+Name: William Foster
+Birth: um 1625 in Ukiah, Mendocino, CA, USA - Birth of Foster, William
+
+Type: person
+Gramps ID: I1028
+Gender: female
+Name: Joan ĐĐ°Đ»ŃŃĐ”ĐČ
+Birth: 1420 - Birth of ĐĐ°Đ»ŃŃĐ”ĐČ, Joan
+
+Type: person
+Gramps ID: I2042
+Gender: female
+Name: Jean Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0228
+Gender: female
+Name: Judy Denise Cruz
+Birth: 1952-11-29 - Birth of Cruz, Judy Denise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0355
+Gender: female
+Name: Irene Frances Todd
+Birth: 1886-09-14 - Birth of Todd, Irene Frances
+Death in Nashville, TN, USA - Death of Todd, Irene Frances
+Burial in Shreveport, Caddo, LA, USA - Burial of Todd, Irene Frances
+
+Type: person
+Gramps ID: I0616
+Gender: female
+Name: Martha Graves
+Birth: 1798-08-16 in Lock Haven, PA, USA - Birth of Graves, Martha
+Death: 1862-12-12 in Fort Walton Beach, Okaloosa, FL, USA - Death of Graves, Martha
+Burial in Fayetteville, Washington, AR, USA - Burial of Graves, Martha
+
+Type: person
+Gramps ID: I1573
+Gender: male
+Name: Mr. Lawson
+
+Type: person
+Gramps ID: I0115
+Gender: male
+Name: David Martin Gosselin
+Birth: 1983-08-02 in Statesboro, Bulloch, GA, USA - Birth of Gosselin, David Martin
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0468
+Gender: female
+Name: Susannah Park
+Death: 1871-04-28 in Mountain Home, Elmore, ID, USA - Death of Park, Susannah
+
+Type: person
+Gramps ID: I0894
+Gender: female
+Name: Cheryl Lee Scott
+
+Type: person
+Gramps ID: I0009
+Gender: male
+Name: Matthew Steven Warner
+Birth: 1977-06-23 in New Haven, New Haven, CT, USA - Birth of Warner, Matthew Steven
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1035
+Gender: male
+Name: Thomas Foster
+Birth in Bainbridge, Decatur, GA, USA - Birth of Foster, Thomas
+Death: 1557-06-23 in Hilo, HI, USA - Death of Foster, Thomas
+
+Type: person
+Gramps ID: I1212
+Gender: female
+Name: Anne Diaz
+
+Type: person
+Gramps ID: I1334
+Gender: female
+Name: Anna Margaretha ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ
+Birth: 1730 - Birth of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+Death: 1817 - Death of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+
+Type: person
+Gramps ID: I0682
+Gender: male
+Name: William Fox
+Birth in Sherman-Denison, TX, USA - Birth of Fox, William
+Death: 1709 in Raleigh-Cary, NC, USA - Death of Fox, William
+Burial in Arcadia, DeSoto, FL, USA - Burial of Fox, William
+
+Type: person
+Gramps ID: I1289
+Gender: female
+Name: Anna Catherine Miller
+
+Type: person
+Gramps ID: I0011
+Gender: female
+Name: Mary Anne MarĂn
+Birth: 1927-01-13 in Worthington, MN, USA - Birth of MarĂn, Mary Anne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1798
+Gender: female
+Name: Paula McCoy
+Birth: 1979-02-07 in Tallulah, Madison, LA, USA - Birth of McCoy, Paula
+Death: 1983-07-03 in Havre, MT, USA - Death of McCoy, Paula
+
+Type: person
+Gramps ID: I0625
+Gender: female
+Name: Jennie S. Garner
+Birth: 1880-09-11 in Paragould, Greene, AR, USA - Birth of Garner, Jennie S.
+Death: 1964-06-20 in Columbus, Bartholomew, IN, USA - Death of Garner, Jennie S.
+Burial: 1964-06 in Sterling, Whiteside, IL, USA - Burial of Garner, Jennie S.
+
+Type: person
+Gramps ID: I1394
+Gender: male
+Name: Willie Jankowski
+Birth in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Willie
+Death in Palm Coast, Flagler, FL, USA - Death of Jankowski, Willie
+
+Type: person
+Gramps ID: I0241
+Gender: female
+Name: Janet Gail Russell
+Birth: 1942-07-23 - Birth of Russell, Janet Gail
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0040
+Gender: male
+Name: Ira Willis Lessard
+Birth: 1871-06-15 in Macon, Bibb, GA, USA - Birth of Lessard, Ira Willis
+Death: 1924-12-15 in Ogden, UT, USA - Death of Lessard, Ira Willis
+Burial: 1924-12-18 in Crawfordsville, Montgomery, IN, USA - Burial of Lessard, Ira Willis
+
+Type: person
+Gramps ID: I0957
+Gender: male
+Name: Major Marquis II Brooks
+Birth: 1705 in Bennettsville, SC, USA - Birth of Brooks, Major Marquis II
+Death: 1755-05-10 in Duluth, MN, USA - Death of Brooks, Major Marquis II
+
+Type: person
+Gramps ID: I1225
+Gender: male
+Name: Robert Webb
+
+Type: person
+Gramps ID: I0131
+Gender: male
+Name: Andrew Vincent Walker
+Birth: 1928-01-12 in Portland, ME, USA - Birth of Walker, Andrew Vincent
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0310
+Gender: male
+Name: Aaron D. ĐĐžŃДлДĐČ
+Birth: 1985-08-08 in Wheeling, WV-OH, USA - Birth of ĐĐžŃДлДĐČ, Aaron D.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0426
+Gender: female
+Name: Joy Leanne Cruz
+Birth: 1978-03-14 in Ottawa, La Salle, IL, USA - Birth of Cruz, Joy Leanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0630
+Gender: female
+Name: Cora Ellen Jackson
+Birth in Denver-Aurora, CO, USA - Birth of Jackson, Cora Ellen
+Burial in Sterling, Whiteside, IL, USA - Burial of Jackson, Cora Ellen
+
+Type: person
+Gramps ID: I0764
+Gender: female
+Name: Maria Catharina ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ
+Birth: 1704-01-26 in Danville, Boyle, KY, USA - Birth of ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ, Maria Catharina
+
+Type: person
+Gramps ID: I1161
+Gender: female
+Name: Mary Meriwether Vaughn
+Birth: um 1669 in Waterloo-Cedar Falls, IA, USA - Birth of Vaughn, Mary Meriwether
+Death in Waterloo-Cedar Falls, IA, USA - Death of Vaughn, Mary Meriwether
+
+Type: person
+Gramps ID: I0909
+Gender: male
+Name: Darvin Ray Page
+Birth: 1967-03-02 in Palm Bay, Brevard, FL, USA - Birth of Page, Darvin Ray
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1112
+Gender: female
+Name: ĐąĐžĐŒĐŸŃДДĐČ
+Birth: nach 1824 - Birth of ĐąĐžĐŒĐŸŃДДĐČ
+
+Type: person
+Gramps ID: I1744
+Gender: female
+Name: Margaret Boucher
+
+Type: person
+Gramps ID: I1349
+Gender: female
+Name: Nancy E. Jiménez
+Birth in Marquette, MI, USA - Birth of Jiménez, Nancy E.
+
+Type: person
+Gramps ID: I0317
+Gender: female
+Name: Diana Richards
+
+Type: person
+Gramps ID: I0433
+Gender: female
+Name: Linda Gill
+Birth: 1946-11-10 - Birth of Gill, Linda
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0699
+Gender: male
+Name: Melvin Patrick
+
+Type: person
+Gramps ID: I0382
+Gender: female
+Name: Nancy A. Boucher
+
+Type: person
+Gramps ID: I1534
+Gender: female
+Name: Mary James
+Birth: 1735 - Birth of James, Mary
+
+Type: person
+Gramps ID: I1607
+Gender: female
+Name: Polly Mary Jiménez
+Birth: 1788-09-24 - Birth of Jiménez, Polly Mary
+
+Type: person
+Gramps ID: I1873
+Gender: female
+Name: Jennie Gibbs
+Death in Sioux Falls, SD, USA - Death of Gibbs, Jennie
+
+Type: person
+Gramps ID: I1310
+Gender: female
+Name: Anna Gertrude Barnett
+Birth: 1752 - Birth of Barnett, Anna Gertrude
+
+Type: person
+Gramps ID: I1409
+Gender: female
+Name: Ferne Page
+Birth in Findlay, OH, USA - Birth of Page, Ferne
+
+Type: person
+Gramps ID: I0490
+Gender: male
+Name: Phillip James Thornton
+Birth: 1949-06-17 in Midland, MI, USA - Birth of Thornton, Phillip James
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1947
+Gender: female
+Name: Hannah Warner
+Birth: 1681-09-03 - Birth of Warner, Hannah
+
+Type: person
+Gramps ID: I0326
+Gender: male
+Name: James Andrew Warner
+Birth: 1979-05-17 in Altoona, PA, USA - Birth of Warner, James Andrew
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0441
+Gender: female
+Name: Jane Elizabeth Cruz
+Birth: 1972-03-04 - Birth of Cruz, Jane Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1174
+Gender: male
+Name: John Lapointe
+
+Type: person
+Gramps ID: I1615
+Gender: female
+Name: Mary Palmer
+
+Type: person
+Gramps ID: I0394
+Gender: female
+Name: Bridget Boucher
+Birth: 1850-05-14 - Birth of Boucher, Bridget
+Death: 1922-05-11 - Death of Boucher, Bridget
+
+Type: person
+Gramps ID: I1178
+Gender: male
+Name: Charles ĐĐŒĐžŃŃОДĐČ
+Birth: um 1729 - Birth of ĐĐŒĐžŃŃОДĐČ, Charles
+Death: um 1786 - Death of ĐĐŒĐžŃŃОДĐČ, Charles
+
+Type: person
+Gramps ID: I1690
+Gender: male
+Name: Charles Day
+
+Type: person
+Gramps ID: I1073
+Gender: male
+Name: Robert? Mullins
+Birth: um 1789 in Laredo, Webb, TX, USA - Birth of Mullins, Robert?
+Death: 1828-08-13 in Dumas, Moore, TX, USA - Death of Mullins, Robert?
+Burial in Modesto, Stanislaus, CA, USA - Burial of Mullins, Robert?
+
+Type: person
+Gramps ID: I1699
+Gender: male
+Name: James Leslie Webb
+Birth: 1886-11-09 in Reno-Sparks, NV, USA - Birth of Webb, James Leslie
+Death: 1963-01-25 - Death of Webb, James Leslie
+
+Type: person
+Gramps ID: I0101
+Gender: male
+Name: James Reeves
+Birth: 1819-03-24 in Hereford, Deaf Smith, TX, USA - Birth of Reeves, James
+Death: 1897-07-11 in Cadillac, MI, USA - Death of Reeves, James
+Burial: 1897-07-13 in Fort Collins, Larimer, CO, USA - Burial of Reeves, James
+
+Type: person
+Gramps ID: I0655
+Gender: male
+Name: Robert Robinson
+
+Type: person
+Gramps ID: I1628
+Gender: female
+Name: Mattie Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Mattie
+
+Type: person
+Gramps ID: I1893
+Gender: male
+Name: Willis Payne
+
+Type: person
+Gramps ID: I1557
+Gender: female
+Name: Polly Parent
+
+Type: person
+Gramps ID: I0161
+Gender: male
+Name: Stuart Bogarte Warner
+Birth: 1955-12-09 in Bremerton, WA, USA - Birth of Warner, Stuart Bogarte
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1189
+Gender: male
+Name: Conrad Webster
+
+Type: person
+Gramps ID: I1490
+Gender: male
+Name: Julius Gauthier
+Birth: 1810-12-20 in Port Angeles, WA, USA - Birth of Gauthier, Julius
+
+Type: person
+Gramps ID: I0104
+Gender: male
+Name: Joseph Garner
+Birth: 1792 in Steubenville, OH, USA - Birth of Garner, Joseph
+Death in Shawnee, OK, USA - Death of Garner, Joseph
+
+Type: person
+Gramps ID: I0063
+Gender: female
+Name: Isabella Kaczmarek
+Birth in Boston, Suffolk, MA, USA - Birth of Kaczmarek, Isabella
+Death: 1904-04-21 in Point Pleasant, WV, USA - Death of Kaczmarek, Isabella
+Burial: 1904-04-23 in Point Pleasant, WV, USA - Burial of Kaczmarek, Isabella
+
+Type: person
+Gramps ID: I0348
+Gender: male
+Name: Michael Welch
+Birth: 1959-03-04 - Birth of Welch, Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0561
+Gender: female
+Name: Mary Bass
+Birth in Mexico, MO, USA - Birth of Bass, Mary
+Death: 1823-10-04 in Santa Fe, NM, USA - Death of Bass, Mary
+
+Type: person
+Gramps ID: I1565
+Gender: male
+Name: Samuel ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0168
+Gender: female
+Name: Elaine Suzanne ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1951-10-23 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Elaine Suzanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1905
+Gender: male
+Name: Isaac Hunt
+
+Type: person
+Gramps ID: I0068
+Gender: male
+Name: Livingstone Martin Webb
+Birth: 1846-02-11 in Concord, NH, USA - Birth of Webb, Livingstone Martin
+Death: 1902-04-10 in Ottawa, La Salle, IL, USA - Death of Webb, Livingstone Martin
+Burial: 1902-04-13 in Crawfordsville, Montgomery, IN, USA - Burial of Webb, Livingstone Martin
+
+Type: person
+Gramps ID: I0177
+Gender: male
+Name: Richard Eugene Garner
+Birth: 1947-02-28 in Ottawa, La Salle, IL, USA - Birth of Garner, Richard Eugene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0733
+Gender: male
+Name: John Harvey
+
+Type: person
+Gramps ID: I1147
+Gender: male
+Name: Thomas Kowalski
+Birth in Decatur, Morgan, AL, USA - Birth of Kowalski, Thomas
+
+Type: person
+Gramps ID: I0735
+Gender: female
+Name: Mary Malone
+
+Type: person
+Gramps ID: I0949
+Gender: male
+Name: Rev.Isaac Schultz
+Birth in Peru, Miami, IN, USA - Birth of Schultz, Rev.Isaac
+Death: um 1818 in Seneca Falls, Seneca, NY, USA - Death of Schultz, Rev.Isaac
+Burial: um 1818 in PR, USA - Burial of Schultz, Rev.Isaac
+
+Type: person
+Gramps ID: I0987
+Gender: female
+Name: Lucy aka Sarah Lapointe
+Birth: um 1718 - Birth of Lapointe, Lucy aka Sarah
+Death: um 1741 - Death of Lapointe, Lucy aka Sarah
+
+Type: person
+Gramps ID: I0077
+Gender: male
+Name: Charles Todd
+Birth: 1727-08-15 in Natchez, Natchitoches, MS-LA, USA - Birth of Todd, Charles
+Death: 1805-07-06 in West Palm Beach, Palm Beach, FL, USA - Death of Todd, Charles
+
+Type: person
+Gramps ID: I0472
+Gender: female
+Name: Nancy Alvarado
+Birth in Mountain Home, Elmore, ID, USA - Birth of Alvarado, Nancy
+Death: 1861-03-12 in Clearlake, Lake, CA, USA - Death of Alvarado, Nancy
+
+Type: person
+Gramps ID: I0854
+Gender: male
+Name: Otis Earl Padilla
+
+Type: person
+Gramps ID: I1449
+Gender: female
+Name: Dorothy Peters
+
+Type: person
+Gramps ID: I0577
+Gender: male
+Name: John Jr. Douglas
+Birth: um 1761 in Bogalusa, Washington, LA, USA - Birth of Douglas, John Jr.
+Death in Rome, Floyd, GA, USA - Death of Douglas, John Jr.
+
+Type: person
+Gramps ID: I0626
+Gender: male
+Name: Walter E. Garner
+Birth: 1882-02-17 in Paragould, Greene, AR, USA - Birth of Garner, Walter E.
+Death: 1946-10-23 in Battle Creek, MI, USA - Death of Garner, Walter E.
+Burial: 1946-10 in Sterling, Whiteside, IL, USA - Burial of Garner, Walter E.
+
+Type: person
+Gramps ID: I0856
+Gender: female
+Name: Dorothy Norton
+Birth: 1945-11-25 - Birth of Norton, Dorothy
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1731
+Gender: female
+Name: Hannah ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0423
+Gender: female
+Name: Joella Lynn Cruz
+Birth: 1971-06-28 in Ottawa, La Salle, IL, USA - Birth of Cruz, Joella Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0476
+Gender: female
+Name: Jane James
+Birth in Lock Haven, PA, USA - Birth of James, Jane
+Death: 1846-09-03 in Marshall, MN, USA - Death of James, Jane
+
+Type: person
+Gramps ID: I0528
+Gender: female
+Name: Mary Grenier
+Birth: um 1638 in Lamesa, Dawson, TX, USA - Birth of Grenier, Mary
+Death: 1703-07-12 in Poplar Bluff, MO, USA - Death of Grenier, Mary
+
+Type: person
+Gramps ID: I1398
+Gender: male
+Name: George Jr. Jankowski
+Birth: 1882-03-28 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, George Jr.
+Death: 1942-11-17 in Troy, Pike, AL, USA - Death of Jankowski, George Jr.
+Burial: 1942-11-19 in Oskaloosa, Mahaska, IA, USA - Burial of Jankowski, George Jr.
+
+Type: person
+Gramps ID: I1522
+Gender: male
+Name: Frederick Douglas
+
+Type: person
+Gramps ID: I2064
+Gender: female
+Name: Mahala J. Porter
+
+Type: person
+Gramps ID: I1109
+Gender: female
+Name: Mary Ann ĐąĐžĐŒĐŸŃДДĐČ
+Birth: 1812-03-07 in Duluth, MN, USA - Birth of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+Death: 1880-11-27 in Starkville, MS, USA - Death of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+Burial: 1880-11-29 in Aguadilla, PR, USA - Burial of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+
+Type: person
+Gramps ID: I0532
+Gender: male
+Name: Rev. John L. Lefebvre
+Birth: 1584-12-20 in Caguas, PR, USA - Birth of Lefebvre, Rev. John L.
+Death: 1653-11-03 in Plainview, Houston, TX, USA - Death of Lefebvre, Rev. John L.
+
+Type: person
+Gramps ID: I1865
+Gender: male
+Name: Michael Reed
+Birth in Kingsport, TN, USA - Birth of Reed, Michael
+Death in Rock Springs, WY, USA - Death of Reed, Michael
+
+Type: person
+Gramps ID: I1164
+Gender: male
+Name: William Mazur
+Birth: um 1606 - Birth of Mazur, William
+
+Type: person
+Gramps ID: I1809
+Gender: female
+Name: Joan Reed
+Birth: 1943-05-13 in Niles, MI, USA - Birth of Reed, Joan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0698
+Gender: female
+Name: Lucille Todd
+Birth: 1905-09-05 - Birth of Todd, Lucille
+Death: 1995-11-29 in Cortland, Cortland, NY, USA - Death of Todd, Lucille
+Burial: 1995-12-04 in Clearwater, Pinellas, FL, USA - Burial of Todd, Lucille
+
+Type: person
+Gramps ID: I0046
+Gender: male
+Name: Eugene Stanley Garner
+Birth: 1895-12-01 in Portsmouth, OH, USA - Birth of Garner, Eugene Stanley
+Death: 1984-03-01 in Twin Falls, Twin Falls, ID, USA - Death of Garner, Eugene Stanley
+Burial: 1984-03-03 in Twin Falls, Twin Falls, ID, USA - Burial of Garner, Eugene Stanley
+
+Type: person
+Gramps ID: I0435
+Gender: male
+Name: Ronald David West
+Birth: 1953-07-13 - Birth of West, Ronald David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0999
+Gender: female
+Name: Ann Rose
+Birth: 1607 - Birth of Rose, Ann
+
+Type: person
+Gramps ID: I1353
+Gender: male
+Name: James W. LĂ©vesque
+Birth: 1866-03 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, James W.
+Death: 1918 in Van Wert, OH, USA - Death of LĂ©vesque, James W.
+
+Type: person
+Gramps ID: I1942
+Gender: female
+Name: Elizabeth Ryan
+Birth: um 1556 in Wilmington, OH, USA - Birth of Ryan, Elizabeth
+Death: 1628 in Wilmington, OH, USA - Death of Ryan, Elizabeth
+
+Type: person
+Gramps ID: I0256
+Gender: female
+Name: Mary A. Landry
+Birth: 1889-05-28 in Ottawa, La Salle, IL, USA - Birth of Landry, Mary A.
+Death: 1955-11-18 - Death of Landry, Mary A.
+
+Type: person
+Gramps ID: I1172
+Gender: female
+Name: Elizabeth Stevens
+Birth in Wisconsin Rapids, WI, USA - Birth of Stevens, Elizabeth
+
+Type: person
+Gramps ID: I0829
+Gender: female
+Name: Mary Boucher
+Birth: 1963 in Andrews, Andrews, TX, USA - Birth of Boucher, Mary
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1363
+Gender: female
+Name: Mary LĂ©vesque
+Birth: 1896-10 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, Mary
+
+Type: person
+Gramps ID: I0969
+Gender: male
+Name: Moses Aaron ĐĐŒĐžŃŃОДĐČ
+Birth: 1735-11-09 in Willmar, MN, USA - Birth of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+Death in Richmond, VA, USA - Death of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+Burial in Danville, Vermilion, IL, USA - Burial of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+
+Type: person
+Gramps ID: I1074
+Gender: female
+Name: Ellender Houston
+Birth: 1790-06-21 - Birth of Houston, Ellender
+Death: 1855-07-30 in Stevens Point, WI, USA - Death of Houston, Ellender
+Burial in Modesto, Stanislaus, CA, USA - Burial of Houston, Ellender
+
+Type: person
+Gramps ID: I1367
+Gender: male
+Name: Howard LĂ©vesque
+Birth: 1899-10 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, Howard
+
+Type: person
+Gramps ID: I1549
+Gender: male
+Name: Henry Lavoie
+
+Type: person
+Gramps ID: I1767
+Gender: male
+Name: Michael Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0100
+Gender: male
+Name: John Schultz
+Birth in Lock Haven, PA, USA - Birth of Schultz, John
+Death: 1860 - Death of Schultz, John
+Burial Burial of Schultz, John
+
+Type: person
+Gramps ID: I0156
+Gender: female
+Name: Nancy Elizabeth Warner
+Birth: 1951-10-20 in Wheeling, WV-OH, USA - Birth of Warner, Nancy Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0553
+Gender: male
+Name: John Adkins
+Birth: nach 1737-10-01 in Maryville, MO, USA - Birth of Adkins, John
+Death: 1787-05-20 in Wooster, OH, USA - Death of Adkins, John
+
+Type: person
+Gramps ID: I2022
+Gender: female
+Name: Martha Elizabeth Jones
+Birth: 1876-08-24 - Birth of Jones, Martha Elizabeth
+
+Type: person
+Gramps ID: I0605
+Gender: male
+Name: Matthias Sr. Carroll
+Birth: 1742 in Lock Haven, PA, USA - Birth of Carroll, Matthias Sr.
+Death: 1817 in Merced, Merced, CA, USA - Death of Carroll, Matthias Sr.
+
+Type: person
+Gramps ID: I0836
+Gender: female
+Name: Mary Gardner
+Birth in Del Rio, Val Verde, TX, USA - Birth of Gardner, Mary
+Death in Andrews, Andrews, TX, USA - Death of Gardner, Mary
+Burial in Somerset, PA, USA - Burial of Gardner, Mary
+
+Type: person
+Gramps ID: I1488
+Gender: female
+Name: Jane Bouchard
+
+Type: person
+Gramps ID: I0506
+Gender: male
+Name: Fr.Lawrence M. Boucher
+Birth: 1896-07-24 - Birth of Boucher, Fr.Lawrence M.
+Death: 1972-05-03 - Death of Boucher, Fr.Lawrence M.
+Burial in Selma, Dallas, AL, USA - Burial of Boucher, Fr.Lawrence M.
+
+Type: person
+Gramps ID: I1378
+Gender: male
+Name: Andrew Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, Andrew
+
+Type: person
+Gramps ID: I1563
+Gender: female
+Name: Margaret ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0221
+Gender: male
+Name: James Richard Cruz
+Birth: 1950-04-11 - Birth of Cruz, James Richard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0668
+Gender: female
+Name: Pamela Ann BĂ©langer
+Birth: 1946-03-10 - Birth of BĂ©langer, Pamela Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0797
+Gender: male
+Name: Lawrence Webb
+Birth: 1878-04-15 in Burlington, VT, USA - Birth of Webb, Lawrence
+Death: 1948-08-29 in Troy, Pike, AL, USA - Death of Webb, Lawrence
+Burial: 1948-08-31 in Crawfordsville, Montgomery, IN, USA - Burial of Webb, Lawrence
+
+Type: person
+Gramps ID: I1783
+Gender: male
+Name: Michael Boucher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0565
+Gender: male
+Name: Thomas Ball
+Birth: 1728-04-18 in Mooresville, NC, USA - Birth of Ball, Thomas
+
+Type: person
+Gramps ID: I1435
+Gender: female
+Name: Rebecca Page
+Birth: 1880 in Palm Coast, Flagler, FL, USA - Birth of Page, Rebecca
+Death: 1880 in Palm Coast, Flagler, FL, USA - Death of Page, Rebecca
+
+Type: person
+Gramps ID: I0980
+Gender: female
+Name: Carissa Nicole Willis
+Birth: 1993-10-27 in Wheeling, WV-OH, USA - Birth of Willis, Carissa Nicole
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0514
+Gender: male
+Name: Edward Maldonado
+
+Type: person
+Gramps ID: I1328
+Gender: male
+Name: Hans Valentin LĂłpez
+
+Type: person
+Gramps ID: I1790
+Gender: male
+Name: Michael Fernandez
+Birth: 1855-05-27 in Worthington, MN, USA - Birth of Fernandez, Michael
+
+Type: person
+Gramps ID: I1913
+Gender: male
+Name: William Petersen
+
+Type: person
+Gramps ID: I0117
+Gender: female
+Name: Andrea Lynn Gosselin
+Birth: 1988-07-10 in Palm Bay, Brevard, FL, USA - Birth of Gosselin, Andrea Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0619
+Gender: male
+Name: Casey John Russell
+Birth: 1990-03-16 in Ottawa, La Salle, IL, USA - Birth of Russell, Casey John
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1283
+Gender: female
+Name: Caroline Farmer
+Birth: 1818 - Birth of Farmer, Caroline
+
+Type: person
+Gramps ID: I1285
+Gender: female
+Name: Elizabeth Farmer
+
+Type: person
+Gramps ID: I1985
+Gender: female
+Name: Frances Coppage MarĂn
+Birth: 1813-03-25 in Ottumwa, Wapello, IA, USA - Birth of MarĂn, Frances Coppage
+Death: 1891-10-01 in Spearfish, SD, USA - Death of MarĂn, Frances Coppage
+Burial: 1891-10-03 in Spearfish, SD, USA - Burial of MarĂn, Frances Coppage
+
+Type: person
+Gramps ID: I1729
+Gender: male
+Name: James Rodriquez
+Birth: 1776-07-22 in La Follette, TN, USA - Birth of Rodriquez, James
+
+Type: person
+Gramps ID: I0039
+Gender: female
+Name: Elizabeth Douglas
+Birth: 1853-02-26 in Dixon, Lee, IL, USA - Birth of Douglas, Elizabeth
+Death: 1890-02-14 in Point Pleasant, WV, USA - Death of Douglas, Elizabeth
+Burial: 1890-02-16 in Point Pleasant, WV, USA - Burial of Douglas, Elizabeth
+
+Type: person
+Gramps ID: I1159
+Gender: male
+Name: Walter Guerrero
+
+Type: person
+Gramps ID: I1861
+Gender: male
+Name: Jamesy Reed
+
+Type: person
+Gramps ID: I0085
+Gender: male
+Name: John M. Todd
+Birth: 1851-06-07 in Fayetteville, Washington, AR, USA - Birth of Todd, John M.
+Death: 1921-02-23 in Milledgeville, Baldwin, GA, USA - Death of Todd, John M.
+Burial: 1921-02-25 in Crawfordsville, Montgomery, IN, USA - Burial of Todd, John M.
+
+Type: person
+Gramps ID: I0133
+Gender: female
+Name: Mary Alice Lessard
+Birth: 1937-01-17 in Ottawa, La Salle, IL, USA - Birth of Lessard, Mary Alice
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0374
+Gender: female
+Name: Nora A. Boucher
+Birth: 1879-07-18 in Ottawa, La Salle, IL, USA - Birth of Boucher, Nora A.
+Death: 1939-08-15 - Death of Boucher, Nora A.
+
+Type: person
+Gramps ID: I1050
+Gender: female
+Name: Vanichia Elaine Garner
+Birth: 1993-10-01 - Birth of Garner, Vanichia Elaine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1299
+Gender: male
+Name: George Patterson
+
+Type: person
+Gramps ID: I1524
+Gender: female
+Name: Barbara Douglas
+
+Type: person
+Gramps ID: I0018
+Gender: male
+Name: David Walter Garner
+Birth: 1956-12-21 in Ottawa, La Salle, IL, USA - Birth of Garner, David Walter
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1997
+Gender: female
+Name: Sarah Allen
+Birth: 1668-01 in Sikeston, MO, USA - Birth of Allen, Sarah
+Death: 1702 in Topeka, Shawnee, KS, USA - Death of Allen, Sarah
+
+Type: person
+Gramps ID: I1598
+Gender: male
+Name: Robert Benson
+Death in Paris, TN, USA - Death of Benson, Robert
+
+Type: person
+Gramps ID: I0020
+Gender: male
+Name: Martin Bogarte Warner
+Birth: 1889-08-11 in Panama City, Bay, FL, USA - Birth of Warner, Martin Bogarte
+Death: 1961-08-12 in Butte, MT, USA - Death of Warner, Martin Bogarte
+Burial: 1961-08-14 in Henderson, NC, USA - Burial of Warner, Martin Bogarte
+
+Type: person
+Gramps ID: I0481
+Gender: female
+Name: Monica Jane Warner
+Birth: 1990-10-20 in Palm Bay, Brevard, FL, USA - Birth of Warner, Monica Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0535
+Gender: male
+Name: Edward Green
+Birth in Ketchikan, AK, USA - Birth of Green, Edward
+Death: 1688-07-31 in Minot, ND, USA - Death of Green, Edward
+
+Type: person
+Gramps ID: I1114
+Gender: female
+Name: Mary J. Garner
+Birth: 1851-10-12 - Birth of Garner, Mary J.
+Death: 1852-04-01 - Death of Garner, Mary J.
+Burial: 1858-04 in Storm Lake, Buena Vista, IA, USA - Burial of Garner, Mary J.
+
+Type: person
+Gramps ID: I2073
+Gender: male
+Name: Joseph
+
+Type: person
+Gramps ID: I0866
+Gender: female
+Name: Jennifer Leigh Hawkins
+Birth: 1973 in Hutchinson, Reno, KS, USA - Birth of Hawkins, Jennifer Leigh
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0915
+Gender: male
+Name: Gerhard Blanco
+Birth: 1718-01-27 in Norwalk, OH, USA - Birth of Blanco, Gerhard
+Death: 1783-04-26 in Monroe, WI, USA - Death of Blanco, Gerhard
+
+Type: person
+Gramps ID: I0319
+Gender: male
+Name: Clayton James Warner
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1818
+Gender: female
+Name: Noella Duncan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1820
+Gender: male
+Name: Colin Duncan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0330
+Gender: female
+Name: Michelle Lynn Alvarado
+Birth: 1968-09-30 in Rockland, ME, USA - Birth of Alvarado, Michelle Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1885
+Gender: male
+Name: Fielding Payne
+Birth: 1788-01-03 in De Ridder, LA, USA - Birth of Payne, Fielding
+
+Type: person
+Gramps ID: I0208
+Gender: male
+Name: Joseph Robert Lane
+Birth: 1908-12-13 in Dalton, Madison, GA, USA - Birth of Lane, Joseph Robert
+Death: 1988-12-27 in Midland, MI, USA - Death of Lane, Joseph Robert
+Burial in Maysville, Mason, KY, USA - Burial of Lane, Joseph Robert
+
+Type: person
+Gramps ID: I0399
+Gender: female
+Name: Mary Reeves
+Birth: 1880-11-28 - Birth of Reeves, Mary
+Death: 1950-03-12 - Death of Reeves, Mary
+
+Type: person
+Gramps ID: I0653
+Gender: female
+Name: Marguarite Garner
+
+Type: person
+Gramps ID: I1486
+Gender: female
+Name: Martha Moody
+
+Type: person
+Gramps ID: I0102
+Gender: female
+Name: Catherine Meyer
+Birth: 1825-06-19 in Las Vegas, NV, USA - Birth of Meyer, Catherine
+Death: 1911-01-30 in Cadillac, MI, USA - Death of Meyer, Catherine
+Burial: 1911-02-01 in Fort Collins, Larimer, CO, USA - Burial of Meyer, Catherine
+
+Type: person
+Gramps ID: I1773
+Gender: male
+Name: Enda Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0103
+Gender: female
+Name: Alma Katherine Klein
+Birth: 1885-12-25 in Punta Gorda, Charlotte, FL, USA - Birth of Klein, Alma Katherine
+Death: 1913-11-22 in Palatka, Putnam, FL, USA - Death of Klein, Alma Katherine
+Burial: 1913-11-24 in Ocala, Marion, FL, USA - Burial of Klein, Alma Katherine
+
+Type: person
+Gramps ID: I0974
+Gender: male
+Name: Thomas Riley
+Death in Ruston, Lincoln, LA, USA - Death of Riley, Thomas
+Burial in Hays, Ellis, KS, USA - Burial of Riley, Thomas
+
+Type: person
+Gramps ID: I1632
+Gender: male
+Name: John H. Nowak
+Death in Palatka, Putnam, FL, USA - Death of Nowak, John H.
+
+Type: person
+Gramps ID: I1834
+Gender: male
+Name: ĐĐ°ŃŃŃĐœĐŸĐČ
+
+Type: person
+Gramps ID: I1836
+Gender: male
+Name: Đ€Đ”ĐŽĐŸŃĐŸĐČ
+
+Type: person
+Gramps ID: I1963
+Gender: female
+Name: Katie E. Ball
+Birth: 1870-10-09 in Columbus, OH, USA - Birth of Ball, Katie E.
+Death: 1870-11-11 in Baltimore, MD, USA - Death of Ball, Katie E.
+
+Type: person
+Gramps ID: I0885
+Gender: female
+Name: Linda S. Gonzales
+Birth: 1949 in Ottawa, La Salle, IL, USA - Birth of Gonzales, Linda S.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1322
+Gender: male
+Name: Jakob Hardy
+Birth: 1705 - Birth of Hardy, Jakob
+
+Type: person
+Gramps ID: I0170
+Gender: female
+Name: Barbara Joanne ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1955-04-30 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Barbara Joanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1907
+Gender: female
+Name: Elizabeth Payne
+Birth: 1772-08-08 - Birth of Payne, Elizabeth
+Death in Seymour, Jackson, IN, USA - Death of Payne, Elizabeth
+
+Type: person
+Gramps ID: I1091
+Gender: male
+Name: John III Rubio
+
+Type: person
+Gramps ID: I0230
+Gender: female
+Name: Carmen Eloise Garrett
+Birth: 1923-12-08 in Gloversville, Fulton, NY, USA - Birth of Garrett, Carmen Eloise
+Death: 1997-03-25 in Ottawa, La Salle, IL, USA - Death of Garrett, Carmen Eloise
+
+Type: person
+Gramps ID: I0848
+Gender: male
+Name: Yelverton Green
+Death: 1683-10-24 - Death of Green, Yelverton
+
+Type: person
+Gramps ID: I1506
+Gender: male
+Name: Jacob Douglas
+
+Type: person
+Gramps ID: I1033
+Gender: male
+Name: John Foster
+Birth: um 1504 in Hilo, HI, USA - Birth of Foster, John
+
+Type: person
+Gramps ID: I0074
+Gender: female
+Name: Lucy Piotrowski
+
+Type: person
+Gramps ID: I0471
+Gender: male
+Name: Abraham Douglas
+Birth: 1821-02-17 in Fallon, NV, USA - Birth of Douglas, Abraham
+Death: 1901-01-12 in Dixon, Lee, IL, USA - Death of Douglas, Abraham
+Burial: 1901-01-14 in Dixon, Lee, IL, USA - Burial of Douglas, Abraham
+
+Type: person
+Gramps ID: I0036
+Gender: female
+Name: Luella Florence Webb
+Birth: 1906-11-07 in Tuscaloosa, Tuscaloosa, AL, USA - Birth of Webb, Luella Florence
+Death: 1986-10-08 in Worthington, MN, USA - Death of Webb, Luella Florence
+Burial: 1986-10-11 in Boone, Boone, IA, USA - Burial of Webb, Luella Florence
+
+Type: person
+Gramps ID: I1917
+Gender: male
+Name: Robert Gove Doyle
+Birth: 1773-09-21 in Waterloo-Cedar Falls, IA, USA - Birth of Doyle, Robert Gove
+
+Type: person
+Gramps ID: I1986
+Gender: male
+Name: Prince Alfred Roy
+
+Type: person
+Gramps ID: I0683
+Gender: female
+Name: Hannah Mason
+
+Type: person
+Gramps ID: I1338
+Gender: unknown
+Name: Gibbs
+
+Type: person
+Gramps ID: I1988
+Gender: male
+Name: Shadrach M. Munoz
+
+Type: person
+Gramps ID: I0810
+Gender: male
+Name: Michael Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, Michael
+
+Type: person
+Gramps ID: I1223
+Gender: female
+Name: Mary Webb
+Birth: 1803 in Niles, MI, USA - Birth of Webb, Mary
+
+Type: person
+Gramps ID: I1802
+Gender: female
+Name: Sarah Reed
+Birth: 1906-04 in Worcester, Worcester, MA, USA - Birth of Reed, Sarah
+Death: 1984-05-12 in Worcester, Worcester, MA, USA - Death of Reed, Sarah
+
+Type: person
+Gramps ID: I1157
+Gender: male
+Name: Walter Guerrero
+Birth: um 1380 - Birth of Guerrero, Walter
+
+Type: person
+Gramps ID: I0425
+Gender: female
+Name: Gayle Joan Cruz
+Birth: 1975-09-17 in Ottawa, La Salle, IL, USA - Birth of Cruz, Gayle Joan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0906
+Gender: male
+Name: Kyle Joseph Boucher
+Birth: 1991-04-16 - Birth of Boucher, Kyle Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0993
+Gender: female
+Name: Mary A. Tyler
+Birth: 1785 in Meridian, MS, USA - Birth of Tyler, Mary A.
+Death in Rolla, MO, USA - Death of Tyler, Mary A.
+Burial in Rolla, MO, USA - Burial of Tyler, Mary A.
+
+Type: person
+Gramps ID: I0312
+Gender: male
+Name: Robert Alan Mortensen
+Birth: 1980-01-04 in Mount Vernon, OH, USA - Birth of Mortensen, Robert Alan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1052
+Gender: male
+Name: Michael Christopher Garner
+Birth: 1975-06-01 - Birth of Garner, Michael Christopher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1301
+Gender: male
+Name: George Butler
+
+Type: person
+Gramps ID: I0087
+Gender: female
+Name: Isabella Mills
+Birth: 1818-01-05 in Plattsburgh, Clinton, NY, USA - Birth of Mills, Isabella
+Death: 1874-08-20 in Monroe, Ouachita, LA, USA - Death of Mills, Isabella
+Burial: 1874-08-21 in Charlotte, NC, USA - Burial of Mills, Isabella
+
+Type: person
+Gramps ID: I1935
+Gender: male
+Name: J. Terry
+
+Type: person
+Gramps ID: I0045
+Gender: female
+Name: Luella Jacques Martel
+Birth: 1852-01-23 in Eureka, Humboldt, CA, USA - Birth of Martel, Luella Jacques
+Death: 1921-04-28 in Myrtle Beach, SC, USA - Death of Martel, Luella Jacques
+Burial: 1921-04-30 in Myrtle Beach, SC, USA - Burial of Martel, Luella Jacques
+
+Type: person
+Gramps ID: I2000
+Gender: female
+Name: Mary (Hannah?) Dennis
+
+Type: person
+Gramps ID: I0483
+Gender: male
+Name: Craig Richard Gosselin
+Birth: 1990-12-20 in Palm Bay, Brevard, FL, USA - Birth of Gosselin, Craig Richard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1530
+Gender: male
+Name: Hugh James
+
+Type: person
+Gramps ID: I1676
+Gender: female
+Name: Catherine Leonard
+
+Type: person
+Gramps ID: I1871
+Gender: male
+Name: Johnston
+
+Type: person
+Gramps ID: I0701
+Gender: male
+Name: William Adams
+Birth: um 1700-10-26 in Dyersburg, TN, USA - Birth of Adams, William
+Death: 1787-03-10 in Hattiesburg, MS, USA - Death of Adams, William
+Burial: 1787 in Pensacola, Escambia, FL, USA - Burial of Adams, William
+
+Type: person
+Gramps ID: I1813
+Gender: male
+Name: Valdez
+
+Type: person
+Gramps ID: I0918
+Gender: female
+Name: Elizabeth Glover
+
+Type: person
+Gramps ID: I2011
+Gender: male
+Name: Benjamin Allen
+Birth: um 1700 in Topeka, Shawnee, KS, USA - Birth of Allen, Benjamin
+Death: 1762-03-10 in Crossville, TN, USA - Death of Allen, Benjamin
+
+Type: person
+Gramps ID: I1359
+Gender: female
+Name: Wilma LĂ©vesque
+Birth in Reno-Sparks, NV, USA - Birth of LĂ©vesque, Wilma
+
+Type: person
+Gramps ID: I2085
+Gender: female
+Name: Martha A. Moreno
+Birth: 1862-11-11 - Birth of Moreno, Martha A.
+
+Type: person
+Gramps ID: I1887
+Gender: female
+Name: Winifred Payne
+Birth in De Ridder, LA, USA - Birth of Payne, Winifred
+
+Type: person
+Gramps ID: I1127
+Gender: male
+Name: Frank R. Parker
+
+Type: person
+Gramps ID: I1826
+Gender: male
+Name: Martinez
+
+Type: person
+Gramps ID: I0604
+Gender: male
+Name: Joseph Douglas
+Birth: 1787-09-07 in Sterling, Logan, CO, USA - Birth of Douglas, Joseph
+Death: 1857-03-09 in Marshall, MN, USA - Death of Douglas, Joseph
+Burial: 1857-03-11 in Marshall, Harrison, TX, USA - Burial of Douglas, Joseph
+
+Type: person
+Gramps ID: I1371
+Gender: male
+Name: Tolbert A. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Tolbert A.
+
+Type: person
+Gramps ID: I1771
+Gender: female
+Name: Roisin Brady
+Birth: 1988 - Birth of Brady, Roisin
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0405
+Gender: male
+Name: Willis MarĂn
+
+Type: person
+Gramps ID: I1559
+Gender: female
+Name: Harriet ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I2101
+Gender: female
+Name: Mary E. Caron
+
+Type: person
+Gramps ID: I1135
+Gender: female
+Name: Catherine Reed
+Birth: 1842-01-09 in Gulfport, MS, USA - Birth of Reed, Catherine
+Death in Ottawa, La Salle, IL, USA - Death of Reed, Catherine
+
+Type: person
+Gramps ID: I1432
+Gender: female
+Name: Gertrude Cross
+Birth: 1911-02-14 in Williamsport, PA, USA - Birth of Cross, Gertrude
+Death: 1992-07-16 in Grand Forks, ND, USA - Death of Cross, Gertrude
+Burial: 1992-07-18 in Grand Forks, ND, USA - Burial of Cross, Gertrude
+
+Type: person
+Gramps ID: I1779
+Gender: female
+Name: Laura Hart
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1781
+Gender: female
+Name: Lisa Hart
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0065
+Gender: female
+Name: Mildred Silva
+Birth: 1805-10-06 in Davenport, Scott, IA, USA - Birth of Silva, Mildred
+Death: 1869-05-10 in Guaynabo, PR, USA - Death of Silva, Mildred
+Burial: 1869-05-12 in Guaynabo, PR, USA - Burial of Silva, Mildred
+
+Type: person
+Gramps ID: I0350
+Gender: female
+Name: Flora Belle Todd
+Birth: 1873-07-13 - Birth of Todd, Flora Belle
+Death: 1950-02-18 in Frederick, MD, USA - Death of Todd, Flora Belle
+Burial in Chattanooga, TN-GA, USA - Burial of Todd, Flora Belle
+
+Type: person
+Gramps ID: I1198
+Gender: female
+Name: Elizabeth Jensen
+
+Type: person
+Gramps ID: I1642
+Gender: male
+Name: Richard C. Page
+Death: 1974-11 - Death of Page, Richard C.
+
+Type: person
+Gramps ID: I1644
+Gender: female
+Name: Nancy Floyd
+Birth: 1774-01-01 in Steubenville, OH, USA - Birth of Floyd, Nancy
+Death: 1849-11-26 in Orlando, Orange, FL, USA - Death of Floyd, Nancy
+
+Type: person
+Gramps ID: I1972
+Gender: male
+Name: William M. Ball
+
+Type: person
+Gramps ID: I0465
+Gender: male
+Name: Conrad Blake
+Birth in Laredo, Webb, TX, USA - Birth of Blake, Conrad
+Death in Dallas, Dallas, TX, USA - Death of Blake, Conrad
+
+Type: person
+Gramps ID: I0032
+Gender: female
+Name: Julia Colville Fox
+Birth: 1823-12-25 in Lawton, OK, USA - Birth of Fox, Julia Colville
+Death: 1904-02-12 in Bridgeton, NJ, USA - Death of Fox, Julia Colville
+Burial: 1904 in Fort Leonard Wood, MO, USA - Burial of Fox, Julia Colville
+
+Type: person
+Gramps ID: I1655
+Gender: female
+Name: Lola Waters
+Birth in Memphis, TN, USA - Birth of Waters, Lola
+
+Type: person
+Gramps ID: I1795
+Gender: male
+Name: Gabriel Stokes
+Birth: 1966-11-27 in Missoula, MT, USA - Birth of Stokes, Gabriel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1983
+Gender: female
+Name: Mary Morris
+Birth: 1839 in Palatka, Putnam, FL, USA - Birth of Morris, Mary
+
+Type: person
+Gramps ID: I0805
+Gender: female
+Name: Bridget Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, Bridget
+
+Type: person
+Gramps ID: I1153
+Gender: female
+Name: Margaret Gibbs
+Birth: um 1460 in Deming, NM, USA - Birth of Gibbs, Margaret
+
+Type: person
+Gramps ID: I1511
+Gender: male
+Name: Thomas HernĂĄndez
+
+Type: person
+Gramps ID: I0366
+Gender: male
+Name: John Farmer
+Birth: 1860-03-17 in Troy, Pike, AL, USA - Birth of Farmer, John
+
+Type: person
+Gramps ID: I1156
+Gender: male
+Name: Robert Guerrero
+Birth: um 1405 - Birth of Guerrero, Robert
+
+Type: person
+Gramps ID: I1219
+Gender: female
+Name: Nancy Gibbs
+
+Type: person
+Gramps ID: I1221
+Gender: female
+Name: Nancy ĐĐ°ĐșĐ°ŃĐŸĐČ
+
+Type: person
+Gramps ID: I1451
+Gender: female
+Name: Eleanor Peters
+
+Type: person
+Gramps ID: I1663
+Gender: male
+Name: Joseph LeRoy Webb
+Birth: 1847-10 in Concord, NH, USA - Birth of Webb, Joseph LeRoy
+
+Type: person
+Gramps ID: I0743
+Gender: female
+Name: Alice Jacobs
+
+Type: person
+Gramps ID: I1453
+Gender: female
+Name: Helen M. Neal
+Birth: 1916-08-30 in Grand Forks, ND, USA - Birth of Neal, Helen M.
+
+Type: person
+Gramps ID: I1295
+Gender: male
+Name: Jacob Dubé
+
+Type: person
+Gramps ID: I0690
+Gender: male
+Name: John Davis
+
+Type: person
+Gramps ID: I1110
+Gender: male
+Name: John P. ĐąĐžĐŒĐŸŃДДĐČ
+Birth: um 1818 in Waterloo-Cedar Falls, IA, USA - Birth of ĐąĐžĐŒĐŸŃДДĐČ, John P.
+
+Type: person
+Gramps ID: I1742
+Gender: male
+Name: Daniel Walters
+
+Type: person
+Gramps ID: I1106
+Gender: male
+Name: Anderson Garner
+Birth: 1825-01-28 in Steubenville, OH, USA - Birth of Garner, Anderson
+Death: 1887-04-07 in Oakland, Alameda, CA, USA - Death of Garner, Anderson
+Burial: 1887-04-08 in Oakland, Alameda, CA, USA - Burial of Garner, Anderson
+
+Type: person
+Gramps ID: I0136
+Gender: male
+Name: John Roger Garner
+Birth: 1925-10-29 in Lafayette, Tippecanoe, IN, USA - Birth of Garner, John Roger
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1600
+Gender: female
+Name: Jane Wong
+
+Type: person
+Gramps ID: I0539
+Gender: female
+Name: Elizabeth GonzĂĄlez
+Birth: 1708-06-01 - Birth of GonzĂĄlez, Elizabeth
+
+Type: person
+Gramps ID: I1312
+Gender: female
+Name: Anna Eva Hicks
+Birth: 1751 - Birth of Hicks, Anna Eva
+Death: 1817 - Death of Hicks, Anna Eva
+
+Type: person
+Gramps ID: I1473
+Gender: female
+Name: Eliza Jane Douglas
+Birth: 1850-08-07 in Cookeville, TN, USA - Birth of Douglas, Eliza Jane
+Death: 1915 - Death of Douglas, Eliza Jane
+
+Type: person
+Gramps ID: I1538
+Gender: female
+Name: Jane James
+Birth: 1739 - Birth of James, Jane
+
+Type: person
+Gramps ID: I1877
+Gender: female
+Name: Carmel Reed
+
+Type: person
+Gramps ID: I0544
+Gender: male
+Name: Jonathan Davis
+Birth: 1743-08-09 - Birth of Davis, Jonathan
+Death: 1824-12-28 - Death of Davis, Jonathan
+
+Type: person
+Gramps ID: I1414
+Gender: male
+Name: George Kenneth (Red) Page
+Birth: 1914-09-28 in Racine, WI, USA - Birth of Page, George Kenneth (Red)
+Death: 1936-03-18 in Troy, Pike, AL, USA - Death of Page, George Kenneth (Red)
+Burial: 1936-03-20 in Oskaloosa, Mahaska, IA, USA - Burial of Page, George Kenneth (Red)
+
+Type: person
+Gramps ID: I1760
+Gender: male
+Name: John Boucher
+
+Type: person
+Gramps ID: I0328
+Gender: female
+Name: Debra J. Carter
+Birth: 1954-09-30 - Birth of Carter, Debra J.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1688
+Gender: male
+Name: Roy Hammond
+
+Type: person
+Gramps ID: I0968
+Gender: female
+Name: Mary Jane Reynolds
+Birth in Carson City, NV, USA - Birth of Reynolds, Mary Jane
+Death in Winchester, VA, USA - Death of Reynolds, Mary Jane
+
+Type: person
+Gramps ID: I0332
+Gender: male
+Name: Andrew David Alvarado
+Birth: 1984-04-04 in Rockland, ME, USA - Birth of Alvarado, Andrew David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1126
+Gender: female
+Name: Anetta Garner
+Birth: 1870-06-13 in Centralia, WA, USA - Birth of Garner, Anetta
+Death: 1900-10-04 in Columbus, Bartholomew, IN, USA - Death of Garner, Anetta
+Burial: 1900-10 in Storm Lake, Buena Vista, IA, USA - Burial of Garner, Anetta
+
+Type: person
+Gramps ID: I1889
+Gender: female
+Name: Nancy Payne
+
+Type: person
+Gramps ID: I1369
+Gender: female
+Name: Mary C. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Mary C.
+
+Type: person
+Gramps ID: I1891
+Gender: male
+Name: Moses Payne
+
+Type: person
+Gramps ID: I0158
+Gender: female
+Name: Mary Christine Warner
+Birth: 1954-11-10 in Wheeling, WV-OH, USA - Birth of Warner, Mary Christine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2095
+Gender: male
+Name: Enoch Moreno
+
+Type: person
+Gramps ID: I0972
+Gender: male
+Name: George КДŃŃĐ°ĐșĐŸĐČ
+Birth: um 1784-09 in Bogalusa, Washington, LA, USA - Birth of КДŃŃĐ°ĐșĐŸĐČ, George
+Death: 1864-03-09 in Orlando, Orange, FL, USA - Death of КДŃŃĐ°ĐșĐŸĐČ, George
+Burial: 1864-03 in Michigan City, LaPorte, IN, USA - Burial of КДŃŃĐ°ĐșĐŸĐČ, George
+
+Type: person
+Gramps ID: I1130
+Gender: male
+Name: Don Muñoz
+
+Type: person
+Gramps ID: I1425
+Gender: female
+Name: Alta M. Cross
+Birth: 1896-07-13 in Lake Havasu City, Mohave, AZ, USA - Birth of Cross, Alta M.
+Death: 1988-05-16 in Montrose, Montrose, CO, USA - Death of Cross, Alta M.
+Burial: 1988-05-18 in Warsaw, Kosciusko, IN, USA - Burial of Cross, Alta M.
+
+Type: person
+Gramps ID: I1630
+Gender: female
+Name: Matilda Page
+Birth in Alpena, MI, USA - Birth of Page, Matilda
+
+Type: person
+Gramps ID: I1018
+Gender: male
+Name: Ranulf Knudsen
+Birth: 1220 - Birth of Knudsen, Ranulf
+Death: 1294 - Death of Knudsen, Ranulf
+
+Type: person
+Gramps ID: I1962
+Gender: female
+Name: Maude Waldon Ball
+Birth in Columbus, OH, USA - Birth of Ball, Maude Waldon
+Burial in Honolulu, HI, USA - Burial of Ball, Maude Waldon
+
+Type: person
+Gramps ID: I0163
+Gender: female
+Name: Sharon Lynette Walker
+Birth: 1951-11-24 in Medford, OR, USA - Birth of Walker, Sharon Lynette
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1020
+Gender: male
+Name: Ralph Knudsen
+Birth: 1250 in Atchison, Atchison, KS, USA - Birth of Knudsen, Ralph
+Death: 1316 - Death of Knudsen, Ralph
+
+Type: person
+Gramps ID: I1430
+Gender: female
+Name: Louise Cross
+Birth in Racine, WI, USA - Birth of Cross, Louise
+
+Type: person
+Gramps ID: I0028
+Gender: female
+Name: Abigail Chapman Moreno
+Birth: 1823-03-13 in Bismarck, ND, USA - Birth of Moreno, Abigail Chapman
+Death: 1853-06-02 in Hutchinson, MN, USA - Death of Moreno, Abigail Chapman
+Burial: 1853-06-04 in Payson, Gila, AZ, USA - Burial of Moreno, Abigail Chapman
+
+Type: person
+Gramps ID: I0666
+Gender: female
+Name: Linda Ellen BĂ©langer
+Birth: 1940-12-30 - Birth of BĂ©langer, Linda Ellen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0796
+Gender: male
+Name: Clarence Webb
+Birth: 1878-04-15 in Burlington, VT, USA - Birth of Webb, Clarence
+Death: 1953-12-24 in Troy, Pike, AL, USA - Death of Webb, Clarence
+Burial: 1953-12-26 in Crawfordsville, Montgomery, IN, USA - Burial of Webb, Clarence
+
+Type: person
+Gramps ID: I0563
+Gender: male
+Name: William Maxwell
+
+Type: person
+Gramps ID: I1497
+Gender: female
+Name: Susan Douglas
+Birth: 1836-12-01 in Marshall, MN, USA - Birth of Douglas, Susan
+
+Type: person
+Gramps ID: I0223
+Gender: female
+Name: Bettie Lou Gagnon
+Birth: 1923-10-22 - Birth of Gagnon, Bettie Lou
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0887
+Gender: male
+Name: ??? Lessard
+Birth in Mountain Home, Elmore, ID, USA - Birth of Lessard, ???
+
+Type: person
+Gramps ID: I0944
+Gender: male
+Name: Matthias Fortin
+Birth: 1664 - Birth of Fortin, Matthias
+Death: 1744-06-23 - Death of Fortin, Matthias
+
+Type: person
+Gramps ID: I0354
+Gender: female
+Name: Lena Viola Todd
+Birth: 1884-06-26 - Birth of Todd, Lena Viola
+Death in Nashville, TN, USA - Death of Todd, Lena Viola
+Burial in Shreveport, Caddo, LA, USA - Burial of Todd, Lena Viola
+
+Type: person
+Gramps ID: I1716
+Gender: male
+Name: William M. Rodriquez
+Birth: 1818-05-07 in MayagĂŒez, PR, USA - Birth of Rodriquez, William M.
+
+Type: person
+Gramps ID: I1841
+Gender: male
+Name: Francis McCoy
+
+Type: person
+Gramps ID: I1651
+Gender: female
+Name: Edith Waters
+Birth in Memphis, TN, USA - Birth of Waters, Edith
+
+Type: person
+Gramps ID: I1845
+Gender: male
+Name: Peter James? Reed
+Birth in Hayward, Alameda, CA, USA - Birth of Reed, Peter James?
+
+Type: person
+Gramps ID: I0179
+Gender: female
+Name: Barbara Jo Garner
+Birth: 1949-11-08 in Ottawa, La Salle, IL, USA - Birth of Garner, Barbara Jo
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1653
+Gender: female
+Name: Nellie Waters
+Birth in Memphis, TN, USA - Birth of Waters, Nellie
+
+Type: person
+Gramps ID: I1722
+Gender: male
+Name: Peter Rodriquez
+Birth in La Follette, TN, USA - Birth of Rodriquez, Peter
+
+Type: person
+Gramps ID: I0119
+Gender: male
+Name: Joseph Brendan Hale
+Birth: 1975-07-17 in Ottawa, La Salle, IL, USA - Birth of Hale, Joseph Brendan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2049
+Gender: male
+Name: Joseph McDowell Moreno
+Birth: 1816-01-26 in Paris, TN, USA - Birth of Moreno, Joseph McDowell
+Death: 1842-06-28 - Death of Moreno, Joseph McDowell
+
+Type: person
+Gramps ID: I0950
+Gender: female
+Name: Elizabeth Francis
+Death in Little Rock, Pulaski, AR, USA - Death of Francis, Elizabeth
+Burial in Little Rock, Pulaski, AR, USA - Burial of Francis, Elizabeth
+
+Type: person
+Gramps ID: I0121
+Gender: female
+Name: Gina Marie Hale
+Birth: 1982-10-03 in Ottawa, La Salle, IL, USA - Birth of Hale, Gina Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1036
+Gender: female
+Name: Margret KozĆowski
+Birth: um 1535 in Wilmington, OH, USA - Birth of KozĆowski, Margret
+Death: vor 1598 in Wilmington, OH, USA - Death of KozĆowski, Margret
+
+Type: person
+Gramps ID: I1215
+Gender: female
+Name: Holly Ruth ĐĄĐŸŃĐŸĐșĐžĐœ
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0368
+Gender: female
+Name: Joan Lorinda Webb
+Birth: 1946-10-29 in Wheeling, WV-OH, USA - Birth of Webb, Joan Lorinda
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1801
+Gender: male
+Name: Francis McCoy
+Birth: 1890-05-23 in Reading, PA, USA - Birth of McCoy, Francis
+Death: 1962-05-19 in Evanston, WY, USA - Death of McCoy, Francis
+
+Type: person
+Gramps ID: I1924
+Gender: female
+Name: Sesaria Leclerc
+
+Type: person
+Gramps ID: I0015
+Gender: male
+Name: Barry Joseph Garner
+Birth: 1948-12-14 in Ottawa, La Salle, IL, USA - Birth of Garner, Barry Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0084
+Gender: female
+Name: Jane Morris
+Birth: 1822-11-20 in Champaign, Champaign, IL, USA - Birth of Morris, Jane
+Death: 1877-04-23 in Fayetteville, Washington, AR, USA - Death of Morris, Jane
+Burial in Fayetteville, Washington, AR, USA - Burial of Morris, Jane
+
+Type: person
+Gramps ID: I2062
+Gender: female
+Name: Mary H. Moreno
+Birth: 1820-08-20 in Paris, TN, USA - Birth of Moreno, Mary H.
+
+Type: person
+Gramps ID: I1297
+Gender: female
+Name: Elizabeth Bowen
+
+Type: person
+Gramps ID: I1738
+Gender: male
+Name: Lessard
+Birth in Waterloo-Cedar Falls, IA, USA - Birth of Lessard
+
+Type: person
+Gramps ID: I0749
+Gender: female
+Name: Martha Harmon
+Birth: 1671 - Birth of Harmon, Martha
+
+Type: person
+Gramps ID: I1054
+Gender: male
+Name: William George DĂez
+
+Type: person
+Gramps ID: I0485
+Gender: male
+Name: Jesse Christopher Cruz
+Birth: 1990-12-29 in Youngstown, OH, USA - Birth of Cruz, Jesse Christopher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1532
+Gender: male
+Name: Joseph James
+
+Type: person
+Gramps ID: I1940
+Gender: male
+Name: John Reeves
+
+Type: person
+Gramps ID: I0254
+Gender: female
+Name: CatherineJosephine Brady
+
+Type: person
+Gramps ID: I2007
+Gender: male
+Name: Job Allen
+Birth: 1694-06-09 - Birth of Allen, Job
+
+Type: person
+Gramps ID: I1681
+Gender: female
+Name: Catarina Blanco
+
+Type: person
+Gramps ID: I1944
+Gender: male
+Name: George Warner
+Birth: 1678-08-04 - Birth of Warner, George
+Death: 1679 - Death of Warner, George
+
+Type: person
+Gramps ID: I1949
+Gender: female
+Name: Charity Higgins
+Birth: um 1682 - Birth of Higgins, Charity
+
+Type: person
+Gramps ID: I1249
+Gender: female
+Name: Mary Warner
+
+Type: person
+Gramps ID: I1361
+Gender: female
+Name: Elsie LĂ©vesque
+Birth: 1893-01 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, Elsie
+
+Type: person
+Gramps ID: I1822
+Gender: male
+Name: Patrick Reed
+Death: 1967-07-07 in St, Louis, St, Louis, MO-IL, USA - Death of Reed, Patrick
+Burial: 1967-07-09 in Lima, OH, USA - Burial of Reed, Patrick
+
+Type: person
+Gramps ID: I1951
+Gender: female
+Name: Johanna Warner
+
+Type: person
+Gramps ID: I0780
+Gender: female
+Name: Lynnett Diane Wheeler
+Birth: 1970-10-05 in Ottawa, La Salle, IL, USA - Birth of Wheeler, Lynnett Diane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0601
+Gender: male
+Name: John Reeves
+Birth in Toccoa, Stephens, GA, USA - Birth of Reeves, John
+Death in Lewiston, ME, USA - Death of Reeves, John
+Burial in Sturgis, MI, USA - Burial of Reeves, John
+
+Type: person
+Gramps ID: I0650
+Gender: female
+Name: Maude GarcĂa
+Burial in Sterling, Whiteside, IL, USA - Burial of GarcĂa, Maude
+
+Type: person
+Gramps ID: I1365
+Gender: male
+Name: John C. LĂ©vesque
+Birth: 1898-11 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, John C.
+
+Type: person
+Gramps ID: I2018
+Gender: female
+Name: Ann Kennedy
+
+Type: person
+Gramps ID: I0269
+Gender: female
+Name: Theresa Frances Harris
+
+Type: person
+Gramps ID: I1421
+Gender: female
+Name: Edith (Dolly) Page
+
+Type: person
+Gramps ID: I1129
+Gender: female
+Name: Catherine Rhodes
+Birth in Crowley, Acadia, LA, USA - Birth of Rhodes, Catherine
+Death in Crowley, Acadia, LA, USA - Death of Rhodes, Catherine
+
+Type: person
+Gramps ID: I1184
+Gender: male
+Name: Lazarus ĐĐŒĐžŃŃОДĐČ
+Birth: um 1739 - Birth of ĐĐŒĐžŃŃОДĐČ, Lazarus
+Death: 1762 - Death of ĐĐŒĐžŃŃОДĐČ, Lazarus
+
+Type: person
+Gramps ID: I1626
+Gender: female
+Name: Mary Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Mary
+
+Type: person
+Gramps ID: I1015
+Gender: female
+Name: Helewisa Schwartz
+Birth: 1110 - Birth of Schwartz, Helewisa
+Death: 1195 - Death of Schwartz, Helewisa
+
+Type: person
+Gramps ID: I1554
+Gender: male
+Name: Thomas Poole
+
+Type: person
+Gramps ID: I1373
+Gender: male
+Name: Philip Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Philip
+
+Type: person
+Gramps ID: I0061
+Gender: male
+Name: Aaron Moreno
+Birth: 1784-02-05 in Harriman, TN, USA - Birth of Moreno, Aaron
+Death: 1846-02-18 in Clearlake, Lake, CA, USA - Death of Moreno, Aaron
+Burial: 1846-02-20 in Fairbanks, AK, USA - Burial of Moreno, Aaron
+
+Type: person
+Gramps ID: I1960
+Gender: male
+Name: John Warner
+
+Type: person
+Gramps ID: I1775
+Gender: male
+Name: Colm Caldwell
+Birth: 1984 - Birth of Caldwell, Colm
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0062
+Gender: male
+Name: John Page
+Birth in Muncie, Delaware, IN, USA - Birth of Page, John
+Death in Point Pleasant, WV, USA - Death of Page, John
+Burial in Point Pleasant, WV, USA - Burial of Page, John
+
+Type: person
+Gramps ID: I0721
+Gender: female
+Name: Heather Lee Evans
+Birth: 1977-07-12 in Ottawa, La Salle, IL, USA - Birth of Evans, Heather Lee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1192
+Gender: male
+Name: William Lapointe
+
+Type: person
+Gramps ID: I1777
+Gender: male
+Name: Fergl Caldwell
+Birth: 1986 - Birth of Caldwell, Fergl
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1197
+Gender: male
+Name: William Swanson
+Birth: 1620 in Hannibal, MO, USA - Birth of Swanson, William
+Death: 1684-10-15 in Mobile, Mobile, AL, USA - Death of Swanson, William
+
+Type: person
+Gramps ID: I1709
+Gender: male
+Name: Rodriquez
+
+Type: person
+Gramps ID: I1966
+Gender: female
+Name: Margaret Ball
+Birth: 1878-11-21 in Columbus, OH, USA - Birth of Ball, Margaret
+
+Type: person
+Gramps ID: I1640
+Gender: male
+Name: Louis ЧДŃĐșĐ°ŃĐžĐœ
+Death: 1928 - Death of ЧДŃĐșĐ°ŃĐžĐœ, Louis
+
+Type: person
+Gramps ID: I0067
+Gender: female
+Name: M. Susannah Blake
+Birth: 1832-09-05 in Lock Haven, PA, USA - Birth of Blake, M. Susannah
+Death: 1921-05-25 in Guaynabo, PR, USA - Death of Blake, M. Susannah
+Burial: 1921-05-27 in Guaynabo, PR, USA - Burial of Blake, M. Susannah
+
+Type: person
+Gramps ID: I0672
+Gender: male
+Name: Robert C. Cox
+
+Type: person
+Gramps ID: I1143
+Gender: male
+Name: Eugene Stanley Hudson
+
+Type: person
+Gramps ID: I0291
+Gender: female
+Name: Sheryl Ann Warner
+Birth: 1972-10-10 in Salem, OR, USA - Birth of Warner, Sheryl Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1646
+Gender: female
+Name: Betsy Parent
+
+Type: person
+Gramps ID: I0947
+Gender: female
+Name: Anna Catherina Reid
+Birth: 1694-02-04 - Birth of Reid, Anna Catherina
+Death: 1740-11-20 in Kalamazoo, MI, USA - Death of Reid, Anna Catherina
+Burial in Liberal, Seward, KS, USA - Burial of Reid, Anna Catherina
+
+Type: person
+Gramps ID: I1575
+Gender: female
+Name: Phoebe Lawson
+
+Type: person
+Gramps ID: I0678
+Gender: female
+Name: Joanna Allen
+Birth: 1670-08 in Poplar Bluff, MO, USA - Birth of Allen, Joanna
+
+Type: person
+Gramps ID: I0621
+Gender: male
+Name: Curtis Dale ĐŃĐșĐŸĐČ
+Birth in Silverthorne, Summit, CO, USA - Birth of ĐŃĐșĐŸĐČ, Curtis Dale
+
+Type: person
+Gramps ID: I0737
+Gender: male
+Name: Capt. Francis Warner
+Birth: 1618 in Tahlequah, OK, USA - Birth of Warner, Capt. Francis
+Death: 1687-09-24 in Victoria, Limestone, TX, USA - Death of Warner, Capt. Francis
+
+Type: person
+Gramps ID: I1443
+Gender: female
+Name: Donna Hubbard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0035
+Gender: male
+Name: Carl Tolbert Lessard
+Birth: 1904-07-30 in Sanford, NC, USA - Birth of Lessard, Carl Tolbert
+Death: 1985-07-04 in Worthington, MN, USA - Death of Lessard, Carl Tolbert
+Burial: 1985-07-08 in Boone, Boone, IA, USA - Burial of Lessard, Carl Tolbert
+
+Type: person
+Gramps ID: I0739
+Gender: male
+Name: Miles? йОŃ
ĐŸĐœĐŸĐČ
+Birth in Del Rio, Val Verde, TX, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, Miles?
+Death in Del Rio, Val Verde, TX, USA - Death of йОŃ
ĐŸĐœĐŸĐČ, Miles?
+
+Type: person
+Gramps ID: I0125
+Gender: male
+Name: Daniel Patrick Garner
+Birth: 1985-02-11 in Ottawa, La Salle, IL, USA - Birth of Garner, Daniel Patrick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0525
+Gender: male
+Name: Edward Christiansen
+Birth: um 1583 in Corvallis, OR, USA - Birth of Christiansen, Edward
+Death: 1614 in Safford, Graham, AZ, USA - Death of Christiansen, Edward
+Burial in Hilo, HI, USA - Burial of Christiansen, Edward
+
+Type: person
+Gramps ID: I1586
+Gender: unknown
+Name: Benson
+
+Type: person
+Gramps ID: I0809
+Gender: female
+Name: Miread Boucher
+Birth: 1973 in Kerrville, Kerr, TX, USA - Birth of Boucher, Miread
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1990
+Gender: male
+Name: Moses Romulus? Munoz
+Birth in Washington, District of Columbia, DC, USA - Birth of Munoz, Moses Romulus?
+
+Type: person
+Gramps ID: I0189
+Gender: female
+Name: Helen Belle Lessard
+Birth: 1908-02-22 in Morehead City, NC, USA - Birth of Lessard, Helen Belle
+Death: 1997-01-29 in Ottawa, La Salle, IL, USA - Death of Lessard, Helen Belle
+
+Type: person
+Gramps ID: I0859
+Gender: male
+Name: Stephen Brock
+Birth: 1948-06-20 - Birth of Brock, Stephen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1736
+Gender: female
+Name: Reh Dawn Serrano
+
+Type: person
+Gramps ID: I1228
+Gender: female
+Name: Mary Webb
+Birth: 1827-01-31 in Greenwood, SC, USA - Birth of Webb, Mary
+
+Type: person
+Gramps ID: I1931
+Gender: male
+Name: William Reeves
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2066
+Gender: female
+Name: Rachel D. Porter
+
+Type: person
+Gramps ID: I0697
+Gender: male
+Name: Wayne Todd
+Death in Johnstown, PA, USA - Death of Todd, Wayne
+Burial in Crawfordsville, Montgomery, IN, USA - Burial of Todd, Wayne
+
+Type: person
+Gramps ID: I0253
+Gender: male
+Name: Michael Edward Landry
+Birth: 1855-05-27 in Ottawa, La Salle, IL, USA - Birth of Landry, Michael Edward
+Death: 1927-08-23 in Ottawa, La Salle, IL, USA - Death of Landry, Michael Edward
+Burial in Ottawa, La Salle, IL, USA - Burial of Landry, Michael Edward
+
+Type: person
+Gramps ID: I1061
+Gender: female
+Name: Jacqueline Denise ĐĄĐ”ŃгДДĐČ
+Birth: 1981-01-18 in Ottawa, La Salle, IL, USA - Birth of ĐĄĐ”ŃгДДĐČ, Jacqueline Denise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1242
+Gender: male
+Name: William Herman Webb
+Birth: 1881-10-27 in Pullman, WA, USA - Birth of Webb, William Herman
+Death: 1952-08-23 in Reno-Sparks, NV, USA - Death of Webb, William Herman
+
+Type: person
+Gramps ID: I1475
+Gender: male
+Name: Charles Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, Charles
+
+Type: person
+Gramps ID: I2083
+Gender: male
+Name: Adolph Patton
+
+Type: person
+Gramps ID: I0263
+Gender: female
+Name: Alice Landry
+Birth: 1900-03-06 in Alexandria, MN, USA - Birth of Landry, Alice
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0151
+Gender: female
+Name: Beverly Ann Warner
+Birth: 1947-08-19 in Big Rapids, MI, USA - Birth of Warner, Beverly Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1546
+Gender: male
+Name: Isaac James
+Birth in La Follette, TN, USA - Birth of James, Isaac
+
+Type: person
+Gramps ID: I1823
+Gender: female
+Name: Anastasia Reed
+Birth: um 1914 in Kingsport, TN, USA - Birth of Reed, Anastasia
+
+Type: person
+Gramps ID: I1953
+Gender: male
+Name: George Warner
+Birth: 1709-07-21 in Garden City, Finney, KS, USA - Birth of Warner, George
+
+Type: person
+Gramps ID: I0206
+Gender: female
+Name: Helen Lachance
+
+Type: person
+Gramps ID: I1254
+Gender: male
+Name: Sylvester Warner
+
+Type: person
+Gramps ID: I1552
+Gender: female
+Name: Lucy Poole
+
+Type: person
+Gramps ID: I1833
+Gender: female
+Name: Jane Reed
+Birth: um 1898 - Birth of Reed, Jane
+Death: 1976-02-25 in Poughkeepsie, Dutchess, NY, USA - Death of Reed, Jane
+
+Type: person
+Gramps ID: I1898
+Gender: male
+Name: Robert Reynolds
+
+Type: person
+Gramps ID: I2029
+Gender: male
+Name: William Colon
+
+Type: person
+Gramps ID: I0664
+Gender: male
+Name: Arnold Clark WĂłjcik
+Birth: 1944-09-04 - Birth of WĂłjcik, Arnold Clark
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0884
+Gender: female
+Name: Marilyn Coleman
+Birth: 1926 in Ottawa, La Salle, IL, USA - Birth of Coleman, Marilyn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1138
+Gender: male
+Name: William Jordan
+
+Type: person
+Gramps ID: I1273
+Gender: male
+Name: Jacob Farmer
+Birth: 1777 - Birth of Farmer, Jacob
+
+Type: person
+Gramps ID: I1495
+Gender: female
+Name: Lucinda J. Douglas
+Birth: 1833-05-06 in Marshall, MN, USA - Birth of Douglas, Lucinda J.
+
+Type: person
+Gramps ID: I1903
+Gender: female
+Name: Mary ĐŃŃŃĐœĐŸĐČ
+
+Type: person
+Gramps ID: I1275
+Gender: male
+Name: Johann Simon Beaulieu
+Birth: 1742 - Birth of Beaulieu, Johann Simon
+
+Type: person
+Gramps ID: I0464
+Gender: female
+Name: Sally Sarah Cunningham
+Birth: 1805-09-25 in Canon City, CO, USA - Birth of Cunningham, Sally Sarah
+Death: 1867-02-19 in San Diego, San Diego, CA, USA - Death of Cunningham, Sally Sarah
+Burial in Guaynabo, PR, USA - Burial of Cunningham, Sally Sarah
+
+Type: person
+Gramps ID: I0513
+Gender: female
+Name: Eunice Maldonado
+Birth: 1759-11-09 - Birth of Maldonado, Eunice
+Death in Grand Junction, Mesa, CO, USA - Death of Maldonado, Eunice
+Burial in Grand Junction, Mesa, CO, USA - Burial of Maldonado, Eunice
+
+Type: person
+Gramps ID: I1088
+Gender: male
+Name: Jeffery Alvarado
+Birth: 1955-04-15 - Birth of Alvarado, Jeffery
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1569
+Gender: female
+Name: Annie ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0030
+Gender: female
+Name: Mary Eve Hopkins
+Birth: 1805-10-18 in Ardmore, OK, USA - Birth of Hopkins, Mary Eve
+Death: 1865-05-11 in Visalia, Tulare, CA, USA - Death of Hopkins, Mary Eve
+Burial: 1865-05-13 in Bowling Green, Warren, KY, USA - Burial of Hopkins, Mary Eve
+
+Type: person
+Gramps ID: I0174
+Gender: female
+Name: Josephine Pelletier
+Birth: 1922-09-07 in Levelland, Hockley, TX, USA - Birth of Pelletier, Josephine
+Death: 1998-09-15 in Worthington, MN, USA - Death of Pelletier, Josephine
+
+Type: person
+Gramps ID: I1571
+Gender: female
+Name: Bettie ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I1977
+Gender: male
+Name: Avery Gill
+Birth in Washington, OH, USA - Birth of Gill, Avery
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1282
+Gender: female
+Name: Susan ĐĐ°ŃĐ°ĐœĐŸĐČ
+Birth: 1815 - Birth of ĐĐ°ŃĐ°ĐœĐŸĐČ, Susan
+
+Type: person
+Gramps ID: I1720
+Gender: female
+Name: Maria Louisa Rodriquez
+Birth: 1825-09-24 in MayagĂŒez, PR, USA - Birth of Rodriquez, Maria Louisa
+
+Type: person
+Gramps ID: I0358
+Gender: male
+Name: Percy Haye Todd
+Birth: 1894-09-09 - Birth of Todd, Percy Haye
+Death: 1950-05-29 in Shreveport, Caddo, LA, USA - Death of Todd, Percy Haye
+Burial in Shreveport, Caddo, LA, USA - Burial of Todd, Percy Haye
+
+Type: person
+Gramps ID: I0850
+Gender: male
+Name: John Peters
+
+Type: person
+Gramps ID: I0181
+Gender: male
+Name: Peter George Garner
+Birth: 1954-08-05 in Ottawa, La Salle, IL, USA - Birth of Garner, Peter George
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0623
+Gender: male
+Name: Jesse V. Garner
+Birth: 1876-06-18 in Paragould, Greene, AR, USA - Birth of Garner, Jesse V.
+Death: 1929-01-21 in Cedar City, UT, USA - Death of Garner, Jesse V.
+Burial: 1929 in Sterling, Whiteside, IL, USA - Burial of Garner, Jesse V.
+
+Type: person
+Gramps ID: I0123
+Gender: female
+Name: Elizabeth George
+Birth: 1957-01-31 - Birth of George, Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1217
+Gender: female
+Name: Candy ĐĄĐŸŃĐŸĐșĐžĐœ
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0302
+Gender: male
+Name: Michael Walter Haynes
+Birth: 1977-09-05 in Bremerton, WA, USA - Birth of Haynes, Michael Walter
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1922
+Gender: female
+Name: Judith Swanson
+
+Type: person
+Gramps ID: I0527
+Gender: female
+Name: Elizabeth Thomas
+Birth: 1620 in Ashland, OH, USA - Birth of Thomas, Elizabeth
+Death: 1713 in Wilmington, New Castle, DE-MD-NJ, USA - Death of Thomas, Elizabeth
+
+Type: person
+Gramps ID: I0627
+Gender: male
+Name: Daniel Webster Garner
+Birth: 1883-09-30 in Hood River, OR, USA - Birth of Garner, Daniel Webster
+Death: 1936-03-02 in Gary, Lake, IN, USA - Death of Garner, Daniel Webster
+Burial: 1936-03-04 in Sterling, Whiteside, IL, USA - Burial of Garner, Daniel Webster
+
+Type: person
+Gramps ID: I0992
+Gender: male
+Name: Delgado
+Death in Rolla, MO, USA - Death of Delgado
+Burial in Rolla, MO, USA - Burial of Delgado
+
+Type: person
+Gramps ID: I1520
+Gender: female
+Name: Catherine Douglas
+
+Type: person
+Gramps ID: I1859
+Gender: female
+Name: Alice Goodwin
+
+Type: person
+Gramps ID: I1994
+Gender: male
+Name: William Norris
+Birth: um 1600 in Phoenix Lake, Tuolumne, CA, USA - Birth of Norris, William
+
+Type: person
+Gramps ID: I0373
+Gender: male
+Name: Richard L. Webb
+Birth: 1928-03-14 in Ottawa, La Salle, IL, USA - Birth of Webb, Richard L.
+Death: 1994-03-05 in Ottawa, La Salle, IL, USA - Death of Webb, Richard L.
+Burial: 1994-03-08 in Manitowoc, WI, USA - Burial of Webb, Richard L.
+
+Type: person
+Gramps ID: I0428
+Gender: female
+Name: Heather Michelle ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+Birth: 1970-05-15 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Heather Michelle
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0862
+Gender: male
+Name: Lance Edward Brock
+Birth: 1969-11-13 in Chico, Butte, CA, USA - Birth of Brock, Lance Edward
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0768
+Gender: female
+Name: Sarah Simard
+Birth in Iowa City, Johnson, IA, USA - Birth of Simard, Sarah
+
+Type: person
+Gramps ID: I1464
+Gender: male
+Name: Jacob W. Alvarado
+Birth: 1821-01-25 in Marshall, MN, USA - Birth of Alvarado, Jacob W.
+Death in Racine, WI, USA - Death of Alvarado, Jacob W.
+
+Type: person
+Gramps ID: I1672
+Gender: male
+Name: Abraham Serrano
+Birth in Reno-Sparks, NV, USA - Birth of Serrano, Abraham
+
+Type: person
+Gramps ID: I1869
+Gender: male
+Name: John Joe Sandoval
+
+Type: person
+Gramps ID: I1605
+Gender: female
+Name: Nancy Benson
+
+Type: person
+Gramps ID: I0591
+Gender: female
+Name: Beth Ann Russell
+Birth: 1968-02-15 in Ottawa, La Salle, IL, USA - Birth of Russell, Beth Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1755
+Gender: male
+Name: Martin Bush
+
+Type: person
+Gramps ID: I0597
+Gender: male
+Name: William M. Rodriquez
+Birth: 1785-08-08 in Manhattan, Riley, KS, USA - Birth of Rodriquez, William M.
+Death in Juneau, AK, USA - Death of Rodriquez, William M.
+Burial in San GermĂĄn, PR, USA - Burial of Rodriquez, William M.
+
+Type: person
+Gramps ID: I1003
+Gender: female
+Name: Jane Black
+Birth: um 1584 - Birth of Black, Jane
+
+Type: person
+Gramps ID: I1758
+Gender: male
+Name: Thomas Bush
+
+Type: person
+Gramps ID: I0778
+Gender: male
+Name: Jacob Earl Wheeler
+
+Type: person
+Gramps ID: I0873
+Gender: female
+Name: Malvina Blanco
+Birth: 1836-11-15 in Scottsbluff, NE, USA - Birth of Blanco, Malvina
+Death: 1918-03-07 in Muskegon, MI, USA - Death of Blanco, Malvina
+Burial: 1918-03-09 in Camden, Ouachita, AR, USA - Burial of Blanco, Malvina
+
+Type: person
+Gramps ID: I1071
+Gender: female
+Name: Lori Gibbs
+
+Type: person
+Gramps ID: I0334
+Gender: female
+Name: Christina Norton
+Birth: 1983-12-17 - Birth of Norton, Christina
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0551
+Gender: male
+Name: Robert Sr. Adkins
+Birth in Ketchikan, AK, USA - Birth of Adkins, Robert Sr.
+
+Type: person
+Gramps ID: I0927
+Gender: male
+Name: Hans Blanco
+Birth: 1582-01-07 in Middlesborough, KY, USA - Birth of Blanco, Hans
+
+Type: person
+Gramps ID: I0403
+Gender: female
+Name: Catherine Boucher
+
+Type: person
+Gramps ID: I0835
+Gender: female
+Name: Bridget Thompson
+Birth in Del Rio, Val Verde, TX, USA - Birth of Thompson, Bridget
+Death in Lumberton, NC, USA - Death of Thompson, Bridget
+Burial in Somerset, PA, USA - Burial of Thompson, Bridget
+
+Type: person
+Gramps ID: I0213
+Gender: female
+Name: Marguerite Lambert
+Birth: 1917-09-19 in Minden, Webster, LA, USA - Birth of Lambert, Marguerite
+Death: 1991-07-14 in Ottawa, La Salle, IL, USA - Death of Lambert, Marguerite
+Burial in Columbia, TN, USA - Burial of Lambert, Marguerite
+
+Type: person
+Gramps ID: I0504
+Gender: female
+Name: Mary SzymaĆski
+
+Type: person
+Gramps ID: I1263
+Gender: male
+Name: Humphrey Martin Warner
+
+Type: person
+Gramps ID: I2099
+Gender: male
+Name: John Đ ĐŸĐŒĐ°ĐœĐŸĐČ
+
+Type: person
+Gramps ID: I0607
+Gender: female
+Name: Grace Carroll
+Birth: 1791-12-20 in City of The Dalles, OR, USA - Birth of Carroll, Grace
+Death: 1863-02-01 in Marshall, MN, USA - Death of Carroll, Grace
+Burial: 1863-02-03 in Marshall, Harrison, TX, USA - Burial of Carroll, Grace
+
+Type: person
+Gramps ID: I1077
+Gender: male
+Name: Steven Matthew Weaver
+Birth in Jasper, Dubois, IN, USA - Birth of Weaver, Steven Matthew
+
+Type: person
+Gramps ID: I1703
+Gender: male
+Name: Harry Noble Webb
+Birth: 1895-11-10 in Reno-Sparks, NV, USA - Birth of Webb, Harry Noble
+Death: 1925-12-07 - Death of Webb, Harry Noble
+
+Type: person
+Gramps ID: I1268
+Gender: female
+Name: Eunice Warner
+
+Type: person
+Gramps ID: I0459
+Gender: male
+Name: Andrew Cole Osborne
+Birth: 1996-10-20 in Ottawa, La Salle, IL, USA - Birth of Osborne, Andrew Cole
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0560
+Gender: male
+Name: Joseph Jr. ĐĐ»ĐŸĐ±ĐžĐœ
+Birth: 1756-02-15 in Moultrie, Colquitt, GA, USA - Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr.
+Death: 1801-08-11 in Altus, OK, USA - Death of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr.
+
+Type: person
+Gramps ID: I0938
+Gender: male
+Name: Johannas Austin
+Birth: 1632-05-15 - Birth of Austin, Johannas
+
+Type: person
+Gramps ID: I0409
+Gender: male
+Name: Eric Scott ĐĐ»ŃĐžĐœ
+Birth: 1977-05 in Ottawa, La Salle, IL, USA - Birth of ĐĐ»ŃĐžĐœ, Eric Scott
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0724
+Gender: male
+Name: Mathew Keller
+
+Type: person
+Gramps ID: I0462
+Gender: male
+Name: George, Sr. Jiménez
+Birth: 1760-02-10 - Birth of Jiménez, George, Sr.
+Death: 1827-07-28 in Effingham, Effingham, IL, USA - Death of Jiménez, George, Sr.
+Burial: 1827-07-29 in Fitzgerald, Ben Hill, GA, USA - Burial of Jiménez, George, Sr.
+
+Type: person
+Gramps ID: I1968
+Gender: female
+Name: Martha Ball
+Birth: 1852-03-02 in Vero Beach, Indian River, FL, USA - Birth of Ball, Martha
+
+Type: person
+Gramps ID: I0110
+Gender: male
+Name: Christopher Arthur Warner
+Birth: 1982-10-04 in Forest City, NC, USA - Birth of Warner, Christopher Arthur
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0172
+Gender: male
+Name: Paul Daniel Osborne
+Birth: 1963-05-18 - Birth of Osborne, Paul Daniel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2039
+Gender: male
+Name: Stewart
+
+Type: person
+Gramps ID: I0568
+Gender: male
+Name: Matthias Sr. Ball
+Birth: 1767-03-11 in Chillicothe, OH, USA - Birth of Ball, Matthias Sr.
+Death: 1848-01-22 in New Philadelphia, OH, USA - Death of Ball, Matthias Sr.
+
+Type: person
+Gramps ID: I0801
+Gender: male
+Name: David Boucher
+Birth in East Liverpool, OH, USA - Birth of Boucher, David
+Death in Fargo, ND, USA - Death of Boucher, David
+Burial in Somerset, PA, USA - Burial of Boucher, David
+
+Type: person
+Gramps ID: I1789
+Gender: male
+Name: Noah Stuart Warner
+Birth: 1998-06-30 in Birmingham, Jefferson, AL, USA - Birth of Warner, Noah Stuart
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0031
+Gender: male
+Name: Piatt D. Warner
+Birth: 1821-04-09 in Mount Pleasant, Taylor, TX, USA - Birth of Warner, Piatt D.
+Death: 1889-10-11 in Arlington, VA, USA - Death of Warner, Piatt D.
+Burial: 1889 in Fort Leonard Wood, MO, USA - Burial of Warner, Piatt D.
+
+Type: person
+Gramps ID: I1210
+Gender: male
+Name: John Diaz
+
+Type: person
+Gramps ID: I1981
+Gender: male
+Name: Robert Morris
+Birth: 1835 in Palatka, Putnam, FL, USA - Birth of Morris, Robert
+
+Type: person
+Gramps ID: I1580
+Gender: male
+Name: Thomas Stewart Benson
+Birth: 1704-03-09 in Cordele, Crisp, GA, USA - Birth of Benson, Thomas Stewart
+
+Type: person
+Gramps ID: I0299
+Gender: female
+Name: Erin Jenny French
+Birth: 1981-08-06 in Medford, OR, USA - Birth of French, Erin Jenny
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1727
+Gender: female
+Name: Katherine ĐĐŸŃĐŸĐœĐŸĐČ
+Birth: 1818 - Birth of ĐĐŸŃĐŸĐœĐŸĐČ, Katherine
+
+Type: person
+Gramps ID: I0079
+Gender: male
+Name: John Todd
+Birth: 1765-11-26 in Shelton, WA, USA - Birth of Todd, John
+Death in Clearlake, Lake, CA, USA - Death of Todd, John
+
+Type: person
+Gramps ID: I0186
+Gender: male
+Name: John Joseph Garner
+Birth: 1961-08-15 in Ottawa, La Salle, IL, USA - Birth of Garner, John Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1340
+Gender: female
+Name: Mary Anne ĐŃĐ·ŃĐŒĐžĐœ
+
+Type: person
+Gramps ID: I0903
+Gender: male
+Name: Merrick Cobb
+
+Type: person
+Gramps ID: I0083
+Gender: male
+Name: George W. Todd
+Birth: 1820-01-02 in Waco, McLennan, TX, USA - Birth of Todd, George W.
+Death: 1895-02-16 in Fayetteville, Washington, AR, USA - Death of Todd, George W.
+Burial in Fayetteville, Washington, AR, USA - Burial of Todd, George W.
+
+Type: person
+Gramps ID: I0017
+Gender: male
+Name: Gerard Stephen Garner
+Birth: 1955-07-31 in Ottawa, La Salle, IL, USA - Birth of Garner, Gerard Stephen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0994
+Gender: male
+Name: Alexander Webb
+Birth: 1821 in Ontario, OR-ID, USA - Birth of Webb, Alexander
+Death: 1854-02-02 in Janesville, WI, USA - Death of Webb, Alexander
+Burial: 1854-02 in Fort Worth, Tarrant, TX, USA - Burial of Webb, Alexander
+
+Type: person
+Gramps ID: I1596
+Gender: male
+Name: Hugh Benson
+
+Type: person
+Gramps ID: I1933
+Gender: male
+Name: M. Perry
+
+Type: person
+Gramps ID: I1231
+Gender: male
+Name: Charles Leroy Boyd Webb
+Birth: 1834 in Rockingham, NC, USA - Birth of Webb, Charles Leroy Boyd
+
+Type: person
+Gramps ID: I0251
+Gender: male
+Name: John S. Floyd
+Birth: 1802 in Lakeland, Polk, FL, USA - Birth of Floyd, John S.
+Death: 1893 in Norfolk, NE, USA - Death of Floyd, John S.
+Burial in Dubuque, Dubuque, IA, USA - Burial of Floyd, John S.
+
+Type: person
+Gramps ID: I1233
+Gender: male
+Name: James McPheeters Webb
+Birth in Sault Ste, MI, USA - Birth of Webb, James McPheeters
+
+Type: person
+Gramps ID: I1937
+Gender: male
+Name: Thomas Gagné
+Death: vor 1901 in Mount Vernon, WA, USA - Death of Gagné, Thomas
+
+Type: person
+Gramps ID: I0379
+Gender: female
+Name: Catherine Gutierrez
+Death in Ottawa, La Salle, IL, USA - Death of Gutierrez, Catherine
+Burial in Ottawa, La Salle, IL, USA - Burial of Gutierrez, Catherine
+
+Type: person
+Gramps ID: I0770
+Gender: male
+Name: Col. Joseph Benson
+Birth: 1742-05-07 in Olympia, WA, USA - Birth of Benson, Col. Joseph
+
+Type: person
+Gramps ID: I1405
+Gender: male
+Name: Ernest Romero
+
+Type: person
+Gramps ID: I0142
+Gender: female
+Name: Eileen Ruth Pearson
+Birth: 1930-04-03 - Birth of Pearson, Eileen Ruth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1536
+Gender: female
+Name: Martha James
+Birth: 1737 - Birth of James, Martha
+
+Type: person
+Gramps ID: I1815
+Gender: male
+Name: ĐДлŃĐ”ĐČ
+
+Type: person
+Gramps ID: I2009
+Gender: male
+Name: Thomas ĐĐŸĐČĐžĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0323
+Gender: male
+Name: John Harry Nguyen
+Birth: 1947-11-25 - Birth of Nguyen, John Harry
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0389
+Gender: male
+Name: David Boucher
+
+Type: person
+Gramps ID: I0706
+Gender: male
+Name: John Reed
+Birth: 1844-05-19 in Defiance, OH, USA - Birth of Reed, John
+Death: 1926-03-28 - Death of Reed, John
+
+Type: person
+Gramps ID: I1069
+Gender: male
+Name: Sean Michael Hill
+Birth: 1980-05-10 - Birth of Hill, Sean Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0923
+Gender: male
+Name: Hans Blanco
+Birth: 1494 in Albany, OR, USA - Birth of Blanco, Hans
+
+Type: person
+Gramps ID: I0782
+Gender: male
+Name: David Kelly
+
+Type: person
+Gramps ID: I0925
+Gender: female
+Name: Bendichtli Fisher
+Birth: 1559 - Birth of Fisher, Bendichtli
+
+Type: person
+Gramps ID: I1548
+Gender: female
+Name: Patsy James
+
+Type: person
+Gramps ID: I0056
+Gender: male
+Name: Herman Moreno
+Death in Campbellsville, Taylor, KY, USA - Death of Moreno, Herman
+
+Type: person
+Gramps ID: I1012
+Gender: female
+Name: Agatha RodrĂguez
+Birth: 1080 - Birth of RodrĂguez, Agatha
+Death: 1142 - Death of RodrĂguez, Agatha
+
+Type: person
+Gramps ID: I1375
+Gender: female
+Name: Mahala DomĂnguez
+Birth in Orlando, Orange, FL, USA - Birth of DomĂnguez, Mahala
+
+Type: person
+Gramps ID: I1428
+Gender: female
+Name: Loraine (Fanny) Cross
+Birth in Racine, WI, USA - Birth of Cross, Loraine (Fanny)
+
+Type: person
+Gramps ID: I0662
+Gender: female
+Name: Patricia WĂłjcik
+Birth: 1930-10-25 - Birth of WĂłjcik, Patricia
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0838
+Gender: female
+Name: Honora Savard
+Birth: 1817 in Del Rio, Val Verde, TX, USA - Birth of Savard, Honora
+Death: 1902-04-01 in Summerville, Chattooga, GA, USA - Death of Savard, Honora
+Burial in Marysville, Yuba, CA, USA - Burial of Savard, Honora
+
+Type: person
+Gramps ID: I0609
+Gender: female
+Name: Martha Mendez
+Birth in Magnolia, Columbia, AR, USA - Birth of Mendez, Martha
+Death in Marshall, Harrison, TX, USA - Death of Mendez, Martha
+Burial in Forrest City, St. Francis, AR, USA - Burial of Mendez, Martha
+
+Type: person
+Gramps ID: I1080
+Gender: female
+Name: Matea Elizabeth Willis
+Birth: 1996-08-09 in Russellville, Pope, AR, USA - Birth of Willis, Matea Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0610
+Gender: male
+Name: Hans Michael Oliver
+
+Type: person
+Gramps ID: I1023
+Gender: female
+Name: Isabel Huff
+Birth: 1300 - Birth of Huff, Isabel
+
+Type: person
+Gramps ID: I0411
+Gender: male
+Name: Lawrence Gill
+
+Type: person
+Gramps ID: I0726
+Gender: female
+Name: ????? Keller
+
+Type: person
+Gramps ID: I0463
+Gender: male
+Name: George Blake
+Birth: 1806-07-11 in Lock Haven, PA, USA - Birth of Blake, George
+Death: 1885-06-27 in San Diego, San Diego, CA, USA - Death of Blake, George
+Burial in Guaynabo, PR, USA - Burial of Blake, George
+
+Type: person
+Gramps ID: I0225
+Gender: male
+Name: William Everett Cruz
+Birth: 1927-04-05 - Birth of Cruz, William Everett
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0614
+Gender: male
+Name: Adam Morris
+Death: 1795 in Pottsville, PA, USA - Death of Morris, Adam
+
+Type: person
+Gramps ID: I1383
+Gender: male
+Name: Schneider
+
+Type: person
+Gramps ID: I1439
+Gender: male
+Name: Christy Moss
+Death in Cambridge, Middlesex, MA, USA - Death of Moss, Christy
+
+Type: person
+Gramps ID: I1504
+Gender: female
+Name: Patsy Parent
+
+Type: person
+Gramps ID: I1718
+Gender: female
+Name: Oma Rodriquez
+Birth: 1821-11-28 in MayagĂŒez, PR, USA - Birth of Rodriquez, Oma
+
+Type: person
+Gramps ID: I0071
+Gender: female
+Name: Elizabeth Warner
+Birth in Kill Devil Hills, NC, USA - Birth of Warner, Elizabeth
+
+Type: person
+Gramps ID: I1093
+Gender: female
+Name: Lucy ĐĐ°ŃОлŃĐ”ĐČ
+Birth: 1732-01-17 in Carson City, NV, USA - Birth of ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+Death: 1789-05-29 in Duluth, MN, USA - Death of ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+
+Type: person
+Gramps ID: I1792
+Gender: female
+Name: new Thomsen
+
+Type: person
+Gramps ID: I2047
+Gender: male
+Name: GonzĂĄlez
+
+Type: person
+Gramps ID: I0233
+Gender: female
+Name: Donna Elaine ĐĐŸĐżĐ°ŃĐžĐœ
+Birth: 1949-05-18 in Ottawa, La Salle, IL, USA - Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Donna Elaine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1724
+Gender: male
+Name: John Cook
+
+Type: person
+Gramps ID: I0364
+Gender: male
+Name: Cyrus Melville Farmer
+Birth: 1855-05-27 in Palatka, Putnam, FL, USA - Birth of Farmer, Cyrus Melville
+
+Type: person
+Gramps ID: I1447
+Gender: male
+Name: Reyes
+
+Type: person
+Gramps ID: I2055
+Gender: unknown
+Name: Moreno
+
+Type: person
+Gramps ID: I0128
+Gender: male
+Name: Donald Louis Warner
+Birth: 1922-08-22 in Portland, ME, USA - Birth of Warner, Donald Louis
+Death: 1979-08-09 in Palatka, Putnam, FL, USA - Death of Warner, Donald Louis
+
+Type: person
+Gramps ID: I0307
+Gender: female
+Name: Catherine Marie Ward
+Birth: 1980-09-28 in Allentown, PA, USA - Birth of Ward, Catherine Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1455
+Gender: male
+Name: Donald BĂ©langer
+Birth: 1944-05-16 in Mankato, MN, USA - Birth of BĂ©langer, Donald
+
+Type: person
+Gramps ID: I0629
+Gender: female
+Name: Elizabeth Garner
+Birth: 1883 - Birth of Garner, Elizabeth
+Burial in Hays, Ellis, KS, USA - Burial of Garner, Elizabeth
+
+Type: person
+Gramps ID: I0763
+Gender: male
+Name: Jacob A. Carroll
+Birth: 1705 in Albany, Dougherty, GA, USA - Birth of Carroll, Jacob A.
+Death: 1763 in Savannah, Chatham, GA, USA - Death of Carroll, Jacob A.
+
+Type: person
+Gramps ID: I1457
+Gender: female
+Name: Amy Jo BĂ©langer
+Birth: 1965-10-17 in Mankato, MN, USA - Birth of BĂ©langer, Amy Jo
+
+Type: person
+Gramps ID: I1668
+Gender: male
+Name: Joseph Serrano
+Birth: 1834-04-03 in Boulder, Boulder, CO, USA - Birth of Serrano, Joseph
+Death: 1899-11-02 in Reno-Sparks, NV, USA - Death of Serrano, Joseph
+Burial: 1899-11-04 in New Bern, NC, USA - Burial of Serrano, Joseph
+
+Type: person
+Gramps ID: I1805
+Gender: male
+Name: Michael Reed
+Death: 1925-03-19 in Worcester, Worcester, MA, USA - Death of Reed, Michael
+
+Type: person
+Gramps ID: I0695
+Gender: male
+Name: Abraham Wallace
+Birth in Chillicothe, OH, USA - Birth of Wallace, Abraham
+
+Type: person
+Gramps ID: I1163
+Gender: female
+Name: Elizabeth Mazur
+Birth: um 1632 - Birth of Mazur, Elizabeth
+Death in Greenville, SC, USA - Death of Mazur, Elizabeth
+
+Type: person
+Gramps ID: I0377
+Gender: male
+Name: James Boucher
+Birth in Ottawa, La Salle, IL, USA - Birth of Boucher, James
+
+Type: person
+Gramps ID: I0430
+Gender: female
+Name: Penelope Margot Morales
+Birth: 1952-12-20 in Yauco, PR, USA - Birth of Morales, Penelope Margot
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1528
+Gender: male
+Name: Andrew Douglas
+
+Type: person
+Gramps ID: I1867
+Gender: male
+Name: Goodwin
+
+Type: person
+Gramps ID: I2071
+Gender: male
+Name: Alfred Joseph
+
+Type: person
+Gramps ID: I1058
+Gender: male
+Name: John(?) Holloway
+Birth in Del Rio, Val Verde, TX, USA - Birth of Holloway, John(?)
+Death in Del Rio, Val Verde, TX, USA - Death of Holloway, John(?)
+
+Type: person
+Gramps ID: I1679
+Gender: female
+Name: Margareta Blanco
+
+Type: person
+Gramps ID: I0541
+Gender: female
+Name: Christina ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+Death: 1749-10-25 - Death of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Christina
+
+Type: person
+Gramps ID: I0775
+Gender: male
+Name: Romaine Thornton
+
+Type: person
+Gramps ID: I1241
+Gender: female
+Name: Judith Ellen Ballard
+Birth: 1861-10-19 - Birth of Ballard, Judith Ellen
+Death: 1903-05-20 - Death of Ballard, Judith Ellen
+
+Type: person
+Gramps ID: I1875
+Gender: female
+Name: Mary Gibbs
+
+Type: person
+Gramps ID: I0640
+Gender: male
+Name: James BĂ©langer
+Birth: 1916-04-06 - Birth of BĂ©langer, James
+Death: 1964-07-02 - Death of BĂ©langer, James
+Burial in Sterling, Whiteside, IL, USA - Burial of BĂ©langer, James
+
+Type: person
+Gramps ID: I1063
+Gender: female
+Name: Joy Gibbs
+
+Type: person
+Gramps ID: I1411
+Gender: male
+Name: Robert Francis Page
+Death in Findlay, OH, USA - Death of Page, Robert Francis
+
+Type: person
+Gramps ID: I0325
+Gender: female
+Name: Elizabeth Diane Nguyen
+Birth: 1982-11-10 in Ottawa, La Salle, IL, USA - Birth of Nguyen, Elizabeth Diane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1314
+Gender: female
+Name: Anna Margaretha Beaulieu
+Birth: 1755 - Birth of Beaulieu, Anna Margaretha
+Death: 1796 - Death of Beaulieu, Anna Margaretha
+
+Type: person
+Gramps ID: I0598
+Gender: female
+Name: Mariam Rodriquez
+Birth: 1814-05-14 in Santa Isabel, PR, USA - Birth of Rodriquez, Mariam
+Death: 1900-08-31 in Billings, MT, USA - Death of Rodriquez, Mariam
+Burial: 1900-09-02 in Grants Pass, OR, USA - Burial of Rodriquez, Mariam
+
+Type: person
+Gramps ID: I0644
+Gender: male
+Name: Victor Garner
+
+Type: person
+Gramps ID: I1067
+Gender: female
+Name: Jo Lynn Hill
+Birth: 1977-03-12 - Birth of Hill, Jo Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0599
+Gender: male
+Name: Rufus Blanco
+Birth: 20 in Cambridge, MD, USA - Birth of Blanco, Rufus
+Death: 1866-11-04 in Billings, MT, USA - Death of Blanco, Rufus
+Burial: 1866-11-06 in San Juan, PR, USA - Burial of Blanco, Rufus
+
+Type: person
+Gramps ID: I0646
+Gender: male
+Name: Everett ĐŻĐșĐŸĐČлДĐČ
+
+Type: person
+Gramps ID: I1176
+Gender: female
+Name: Sarah Page
+
+Type: person
+Gramps ID: I1620
+Gender: male
+Name: Cornelius Jiménez
+Birth: 1805-07-27 - Birth of Jiménez, Cornelius
+Death: 1866-03-05 - Death of Jiménez, Cornelius
+
+Type: person
+Gramps ID: I0831
+Gender: female
+Name: Bridget Boucher
+Birth: 1965 in Andrews, Andrews, TX, USA - Birth of Boucher, Bridget
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0875
+Gender: female
+Name: Mary F. Blanco
+Birth: 1846 in Scottsbluff, NE, USA - Birth of Blanco, Mary F.
+
+Type: person
+Gramps ID: I1182
+Gender: male
+Name: Charles Erickson
+
+Type: person
+Gramps ID: I0401
+Gender: female
+Name: Honora Reeves
+Birth: 1883-03-21 - Birth of Reeves, Honora
+Death: 1908-11-08 - Death of Reeves, Honora
+
+Type: person
+Gramps ID: I1956
+Gender: female
+Name: Mary Montgomery
+Birth: um 1686 in Topeka, Shawnee, KS, USA - Birth of Montgomery, Mary
+
+Type: person
+Gramps ID: I0932
+Gender: female
+Name: Anna Sullivan
+Birth: 1691 in Quincy, Adams, IL-MO, USA - Birth of Sullivan, Anna
+
+Type: person
+Gramps ID: I1426
+Gender: male
+Name: Frank O. Peters
+Death: 1981-06-02 - Death of Peters, Frank O.
+
+Type: person
+Gramps ID: I2027
+Gender: female
+Name: Joan Arlene Gutiérrez
+Birth: 1927-01-18 - Birth of Gutiérrez, Joan Arlene
+
+Type: person
+Gramps ID: I0214
+Gender: male
+Name: Thomas Everett Cruz
+Birth: 1940-10-15 - Birth of Cruz, Thomas Everett
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0660
+Gender: female
+Name: Suzanne WĂłjcik
+Birth: 1928-06-25 - Birth of WĂłjcik, Suzanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0934
+Gender: female
+Name: Maria Burke
+
+Type: person
+Gramps ID: I0216
+Gender: male
+Name: Dale Eugene Cruz
+Birth: 1947-11-11 - Birth of Cruz, Dale Eugene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0559
+Gender: female
+Name: Martha Adkins
+Birth: vor 1763-06-20 in Shelton, WA, USA - Birth of Adkins, Martha
+Death: 1828-09-05 in Jefferson City, MO, USA - Death of Adkins, Martha
+Burial in Jefferson City, MO, USA - Burial of Adkins, Martha
+
+Type: person
+Gramps ID: I1634
+Gender: male
+Name: David Page
+Birth in Troy, Pike, AL, USA - Birth of Page, David
+Death: 1909 in Troy, Pike, AL, USA - Death of Page, David
+
+Type: person
+Gramps ID: I0794
+Gender: male
+Name: Samuel C. ĐĐŸĐ·Đ»ĐŸĐČ
+
+Type: person
+Gramps ID: I0977
+Gender: male
+Name: Aaron Patrick Osborne
+Birth: 1993-09-23 in Ottawa, La Salle, IL, USA - Birth of Osborne, Aaron Patrick
+Death: 1995-02-15 in Ottawa, La Salle, IL, USA - Death of Osborne, Aaron Patrick
+Burial in Blackfoot, Bingham, ID, USA - Burial of Osborne, Aaron Patrick
+
+Type: person
+Gramps ID: I0978
+Gender: female
+Name: Heather Kathleen Gordon
+
+Type: person
+Gramps ID: I1711
+Gender: female
+Name: Eve ĐĐŸĐ»ŃĐșĐŸĐČ
+Birth: 1771 - Birth of ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+Death in Huntsville, Walker, TX, USA - Death of ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+
+Type: person
+Gramps ID: I0413
+Gender: female
+Name: Lorie Ann Gill
+Birth: um 1967 in Stockton, San Joaquin, CA, USA - Birth of Gill, Lorie Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1142
+Gender: female
+Name: Margaret Bernier
+Death: 1922-12-30 in Tyler, Smith, TX, USA - Death of Bernier, Margaret
+
+Type: person
+Gramps ID: I1970
+Gender: male
+Name: Matthias Ball
+Birth: 1840-01-13 - Birth of Ball, Matthias
+
+Type: person
+Gramps ID: I1438
+Gender: female
+Name: Matilda Page
+Birth in Palm Coast, Flagler, FL, USA - Birth of Page, Matilda
+Death in Cambridge, Middlesex, MA, USA - Death of Page, Matilda
+
+Type: person
+Gramps ID: I0293
+Gender: female
+Name: Nancy Lou Powers
+Birth: 1945-08-28 in Santa Rosa-Petaluma, CA, USA - Birth of Powers, Nancy Lou
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1030
+Gender: male
+Name: Culthbert Gomez
+Birth: 1473 - Birth of Gomez, Culthbert
+
+Type: person
+Gramps ID: I0295
+Gender: male
+Name: Curtis Andrew Warner
+Birth: 1976-08-26 in Wheeling, WV-OH, USA - Birth of Warner, Curtis Andrew
+Death: 1994-12-18 in Rockland, ME, USA - Death of Warner, Curtis Andrew
+Burial: 1994-12-22 in Mount Airy, NC, USA - Burial of Warner, Curtis Andrew
+
+Type: person
+Gramps ID: I1508
+Gender: male
+Name: John Douglas
+
+Type: person
+Gramps ID: I1510
+Gender: female
+Name: Barbara Rogers
+Birth: 1759-02-17 - Birth of Rogers, Barbara
+Death: um 1785 - Death of Rogers, Barbara
+
+Type: person
+Gramps ID: I0681
+Gender: female
+Name: Martha Christiansen
+Birth: 1693-04-25 in Poplar Bluff, MO, USA - Birth of Christiansen, Martha
+Death: 1766-04-18 - Death of Christiansen, Martha
+
+Type: person
+Gramps ID: I1445
+Gender: female
+Name: Debby Waters
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0624
+Gender: male
+Name: Raymond E. Garner
+Birth: 1878-09-16 in Paragould, Greene, AR, USA - Birth of Garner, Raymond E.
+Death: 1921-05-02 in Astoria, OR, USA - Death of Garner, Raymond E.
+Birth: 1911-07-12 - Birth of Thornton, James Arthur (Informant)
+
+Type: person
+Gramps ID: I1584
+Gender: female
+Name: Elizabeth Benson
+Birth: 1715-01-30 in Waterloo-Cedar Falls, IA, USA - Birth of Benson, Elizabeth
+
+Type: person
+Gramps ID: I0758
+Gender: male
+Name: Lord Samuel Ferguson
+Birth in Santa Ana, Orange, CA, USA - Birth of Ferguson, Lord Samuel
+
+Type: person
+Gramps ID: I1339
+Gender: female
+Name: Emma Jane Lessard
+Birth: 1868-08 in Orlando, Orange, FL, USA - Birth of Lessard, Emma Jane
+Death: 1933-08 in Dublin, Laurens, GA, USA - Death of Lessard, Emma Jane
+
+Type: person
+Gramps ID: I1518
+Gender: male
+Name: William ĐĐœĐŽŃДДĐČ
+
+Type: person
+Gramps ID: I1588
+Gender: male
+Name: James Benson
+Birth: 1674-11-20 in Peoria, Peoria, IL, USA - Birth of Benson, James
+
+Type: person
+Gramps ID: I1734
+Gender: female
+Name: Elizabeth Rodriquez
+Birth in La Follette, TN, USA - Birth of Rodriquez, Elizabeth
+
+Type: person
+Gramps ID: I1046
+Gender: female
+Name: Regina Lynne Garner
+Birth: 1973-08-27 - Birth of Garner, Regina Lynne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1048
+Gender: female
+Name: Victoria Laine Garner
+
+Type: person
+Gramps ID: I0531
+Gender: female
+Name: Mary Alvarado
+Birth in Rocky Mount, NC, USA - Birth of Alvarado, Mary
+Death: 1760-01-17 in Poplar Bluff, MO, USA - Death of Alvarado, Mary
+
+Type: person
+Gramps ID: I0959
+Gender: female
+Name: Elizabeth"Betty" Brooks
+Birth in Durham, NC, USA - Birth of Brooks, Elizabeth"Betty"
+Death in Dickinson, ND, USA - Death of Brooks, Elizabeth"Betty"
+Burial in Roseburg, OR, USA - Burial of Brooks, Elizabeth"Betty"
+
+Type: person
+Gramps ID: I1669
+Gender: male
+Name: Joseph Serrano
+Birth in Reno-Sparks, NV, USA - Birth of Serrano, Joseph
+
+Type: person
+Gramps ID: I1740
+Gender: male
+Name: Patrick Gardner
+
+Type: person
+Gramps ID: I0480
+Gender: female
+Name: Caroline Serrano
+Birth: 1711 in Waterloo-Cedar Falls, IA, USA - Birth of Serrano, Caroline
+Death in Auburn, Cayuga, NY, USA - Death of Serrano, Caroline
+
+Type: person
+Gramps ID: I1527
+Gender: male
+Name: Henry Douglas
+
+Type: person
+Gramps ID: I0314
+Gender: male
+Name: Bruce Edward Watkins
+Birth: 1950-12-12 in Beaver Dam, WI, USA - Birth of Watkins, Bruce Edward
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0588
+Gender: male
+Name: Guy ĐĐŸĐłĐžĐœĐŸĐČ
+
+Type: person
+Gramps ID: I1056
+Gender: male
+Name: Jon Dennis ĐĄĐ”ŃгДДĐČ
+Birth: 1978-02-10 in Ottawa, La Salle, IL, USA - Birth of ĐĄĐ”ŃгДДĐČ, Jon Dennis
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1674
+Gender: female
+Name: Peggy Fournier
+
+Type: person
+Gramps ID: I2005
+Gender: male
+Name: Joseph Allen
+Birth: 1692-05-17 - Birth of Allen, Joseph
+
+Type: person
+Gramps ID: I0144
+Gender: female
+Name: Mary Elizabeth Barber
+Birth: 1925-06-08 in Jacksonville, Duval, FL, USA - Birth of Barber, Mary Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0703
+Gender: female
+Name: Agnes Mann
+Birth in McComb, MS, USA - Birth of Mann, Agnes
+
+Type: person
+Gramps ID: I0965
+Gender: male
+Name: Nicholas Reynolds
+Birth: 1643 in Chester, SC, USA - Birth of Reynolds, Nicholas
+Death: vor 1695 in Sidney, OH, USA - Death of Reynolds, Nicholas
+Burial in Sunbury, PA, USA - Burial of Reynolds, Nicholas
+
+Type: person
+Gramps ID: I1002
+Gender: male
+Name: Thomas Foster
+Birth: 1582-04-14 in Wilmington, OH, USA - Birth of Foster, Thomas
+Death: 1658-06-01 in Portales, NM, USA - Death of Foster, Thomas
+
+Type: person
+Gramps ID: I1121
+Gender: female
+Name: Iola Elizabeth Betty Garner
+Birth: 1860-11-01 in Orlando, Orange, FL, USA - Birth of Garner, Iola Elizabeth Betty
+Death: 1941-04-17 in Killeen, Bell, TX, USA - Death of Garner, Iola Elizabeth Betty
+Burial: 1941-04-19 in College Station, Brazos, TX, USA - Burial of Garner, Iola Elizabeth Betty
+
+Type: person
+Gramps ID: I1883
+Gender: male
+Name: Jimenez
+
+Type: person
+Gramps ID: I0495
+Gender: male
+Name: William J. Boucher
+
+Type: person
+Gramps ID: I0267
+Gender: female
+Name: Mary Alice Harris
+
+Type: person
+Gramps ID: I1825
+Gender: female
+Name: Catherine Reed
+Birth: um 1901 in Dodge City, Ford, KS, USA - Birth of Reed, Catherine
+Death: 1994-05-02 - Death of Reed, Catherine
+
+Type: person
+Gramps ID: I0099
+Gender: male
+Name: Thomas Fernandez
+Birth: 1787 in Laramie, WY, USA - Birth of Fernandez, Thomas
+Death in Oshkosh, WI, USA - Death of Fernandez, Thomas
+
+Type: person
+Gramps ID: I0713
+Gender: male
+Name: William Jr. Rhodes
+Birth in Springfield, OH, USA - Birth of Rhodes, William Jr.
+
+Type: person
+Gramps ID: I0784
+Gender: male
+Name: David Lee Fitzgerald
+
+Type: person
+Gramps ID: I0877
+Gender: male
+Name: Abram Quinn
+Birth: 1838-04-25 in Mountain Home, Elmore, ID, USA - Birth of Quinn, Abram
+Death: 1916-02-18 in Deltona, Volusia, FL, USA - Death of Quinn, Abram
+Burial: 1916-02 in Athens, Henderson, TX, USA - Burial of Quinn, Abram
+
+Type: person
+Gramps ID: I0451
+Gender: female
+Name: Elissa Marie Peters
+Birth: 1979-05-26 - Birth of Peters, Elissa Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0211
+Gender: male
+Name: Everett Cruz
+Birth: 1894-04-24 - Birth of Cruz, Everett
+
+Type: person
+Gramps ID: I1958
+Gender: male
+Name: John Warner
+
+Type: person
+Gramps ID: I2097
+Gender: male
+Name: William Chambers
+
+Type: person
+Gramps ID: I0658
+Gender: male
+Name: Hugh Martin Robinson
+
+Type: person
+Gramps ID: I0936
+Gender: female
+Name: Margaret Marsh
+Birth: 1612 - Birth of Marsh, Margaret
+Death: 1680-05-20 - Death of Marsh, Margaret
+
+Type: person
+Gramps ID: I0975
+Gender: male
+Name: Henry Martel
+Birth: 1805-10-27 in Wauchula, Hardee, FL, USA - Birth of Martel, Henry
+Death: 1902-01-18 in Helena, MT, USA - Death of Martel, Henry
+Burial: 1902 in Helena, MT, USA - Burial of Martel, Henry
+Marriage: 1875-04-01 in Paragould, Greene, AR, USA - Marriage of Garner, Lewis Anderson and Martel, Luella Jacques (Witness)
+
+Type: person
+Gramps ID: I0165
+Gender: female
+Name: Shirley Kay Warner
+Birth: 1957-10-14 in Medford, OR, USA - Birth of Warner, Shirley Kay
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1636
+Gender: male
+Name: Marvin Lewandowski
+
+Type: person
+Gramps ID: I0940
+Gender: male
+Name: Hans Reid
+Birth: 1644 - Birth of Reid, Hans
+Death: 1707-12-06 - Death of Reid, Hans
+
+Type: person
+Gramps ID: I1434
+Gender: female
+Name: Mary Page
+Birth: 1880 in Palm Coast, Flagler, FL, USA - Birth of Page, Mary
+Death: 1880 in Palm Coast, Flagler, FL, USA - Death of Page, Mary
+
+Type: person
+Gramps ID: I2037
+Gender: male
+Name: Torres
+
+Type: person
+Gramps ID: I1086
+Gender: male
+Name: Douglas Wilson
+
+Type: person
+Gramps ID: I0946
+Gender: male
+Name: Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ
+Birth: 1690-02-23 in Kalamazoo, MI, USA - Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+Death: 1750-12-25 in Kalamazoo, MI, USA - Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+Burial in Liberal, Seward, KS, USA - Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+
+Type: person
+Gramps ID: I1204
+Gender: male
+Name: John Swanson
+
+Type: person
+Gramps ID: I1979
+Gender: male
+Name: Carlisle Morris
+Birth: 1830 in Palatka, Putnam, FL, USA - Birth of Morris, Carlisle
+
+Type: person
+Gramps ID: I1794
+Gender: female
+Name: Celine Bridget McCoy
+Birth: 1971-01-20 in Tallulah, Madison, LA, USA - Birth of McCoy, Celine Bridget
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0034
+Gender: female
+Name: Angeline ĐŃĐșĐŸĐČ
+Birth: 1846-08-17 in Fairmont, WV, USA - Birth of ĐŃĐșĐŸĐČ, Angeline
+Death: 1891-10-31 in Oxnard, Ventura, CA, USA - Death of ĐŃĐșĐŸĐČ, Angeline
+Burial: 1891-11-01 in Oxnard, Ventura, CA, USA - Burial of ĐŃĐșĐŸĐČ, Angeline
+
+Type: person
+Gramps ID: I0521
+Gender: female
+Name: Sarah Palmer
+Death: 1819-10-09 in Springfield, MO, USA - Death of Palmer, Sarah
+
+Type: person
+Gramps ID: I1151
+Gender: male
+Name: Thomas ĐĐŸĐœŃĐ°ŃĐŸĐČ
+
+Type: person
+Gramps ID: I1848
+Gender: female
+Name: Norah Reed
+Birth: 1928-07 in Decatur, Morgan, AL, USA - Birth of Reed, Norah
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0235
+Gender: female
+Name: Wilma Mae Perkins
+Birth: 1926-03-12 - Birth of Perkins, Wilma Mae
+
+Type: person
+Gramps ID: I0738
+Gender: female
+Name: Mary Ingram
+Birth: um 1625 in Fresno, Fresno, CA, USA - Birth of Ingram, Mary
+Death: 1688-07-29 in Sylacauga, Talladega, AL, USA - Death of Ingram, Mary
+
+Type: person
+Gramps ID: I0951
+Gender: female
+Name: Mary Turner
+
+Type: person
+Gramps ID: I1582
+Gender: male
+Name: James Edwin Benson
+Birth: 1711-11 in Waterloo-Cedar Falls, IA, USA - Birth of Benson, James Edwin
+
+Type: person
+Gramps ID: I0899
+Gender: male
+Name: David Alan Page
+Birth: 1981-05-28 in Santa Rosa-Petaluma, CA, USA - Birth of Page, David Alan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1514
+Gender: male
+Name: Henry Parsons
+
+Type: person
+Gramps ID: I1660
+Gender: male
+Name: Kenneth Fritz Page
+Birth: 1951-09-17 in Brenham, Washington, TX, USA - Birth of Page, Kenneth Fritz
+
+Type: person
+Gramps ID: I0014
+Gender: female
+Name: Marcia Jane Warner
+Birth: 1958-09-20 in Ottawa, La Salle, IL, USA - Birth of Warner, Marcia Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1992
+Gender: male
+Name: Willis E. Munoz
+Birth in Washington, District of Columbia, DC, USA - Birth of Munoz, Willis E.
+
+Type: person
+Gramps ID: I0628
+Gender: female
+Name: Bertha P. Garner
+Birth: 1888-03-13 in Hagerstown, MD, USA - Birth of Garner, Bertha P.
+Death: 1918-04-05 in Columbus, Bartholomew, IN, USA - Death of Garner, Bertha P.
+Burial: 1918-04 in Sterling, Whiteside, IL, USA - Burial of Garner, Bertha P.
+
+Type: person
+Gramps ID: I0249
+Gender: female
+Name: Mollie Landry
+
+Type: person
+Gramps ID: I0816
+Gender: male
+Name: Noel Hansen
+Birth: 1953-12 in Tifton, Tift, GA, USA - Birth of Hansen, Noel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1304
+Gender: male
+Name: Michael Farmer
+Birth: 1775 - Birth of Farmer, Michael
+
+Type: person
+Gramps ID: I0252
+Gender: female
+Name: Mary Coleman
+Birth: 1812 in Cincinnati, OH, USA - Birth of Coleman, Mary
+Death in Norfolk, NE, USA - Death of Coleman, Mary
+Burial in Dubuque, Dubuque, IA, USA - Burial of Coleman, Mary
+
+Type: person
+Gramps ID: I0913
+Gender: male
+Name: Michael Watts
+
+Type: person
+Gramps ID: I0196
+Gender: female
+Name: Edith Mae Page
+Birth: 1885-05-27 in Oskaloosa, Mahaska, IA, USA - Birth of Page, Edith Mae
+Death: 1965-05 in Clearlake, Lake, CA, USA - Death of Page, Edith Mae
+Burial: 1965-05 in Bay City, Matagorda, TX, USA - Burial of Page, Edith Mae
+
+Type: person
+Gramps ID: I0537
+Gender: male
+Name: George ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+
+Type: person
+Gramps ID: I1238
+Gender: female
+Name: Martha Ann Wagner
+
+Type: person
+Gramps ID: I1408
+Gender: female
+Name: Minnie Adkins
+Birth in Palm Coast, Flagler, FL, USA - Birth of Adkins, Minnie
+
+Type: person
+Gramps ID: I0593
+Gender: male
+Name: Raymond Patrick CÎté
+Birth: 1964-12-12 - Birth of CÎté, Raymond Patrick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0258
+Gender: male
+Name: Charles M. Landry
+Birth: 1894-06-18 in Ottawa, La Salle, IL, USA - Birth of Landry, Charles M.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0489
+Gender: male
+Name: John Boucher
+Birth: 1929 in Hastings, NE, USA - Birth of Boucher, John
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2081
+Gender: male
+Name: William M. Ball
+
+Type: person
+Gramps ID: I2013
+Gender: unknown
+Name: Lediah Allen
+Birth: 1679-01-01 in Sikeston, MO, USA - Birth of Allen, Lediah
+Death: um 1680 in Topeka, Shawnee, KS, USA - Death of Allen, Lediah
+
+Type: person
+Gramps ID: I0391
+Gender: female
+Name: Honorah Berry
+Birth: 1847-10-07 - Birth of Berry, Honorah
+Death: 1897-10-07 - Death of Berry, Honorah
+
+Type: person
+Gramps ID: I0546
+Gender: male
+Name: James Green
+Birth: 1739-04-07 in Minot, ND, USA - Birth of Green, James
+Death: 1805-11-28 - Death of Green, James
+
+Type: person
+Gramps ID: I1005
+Gender: female
+Name: ?? ĐĐžŃĐžĐ»Đ»ĐŸĐČ
+Birth: um 1520 in Safford, Graham, AZ, USA - Birth of ĐĐžŃĐžĐ»Đ»ĐŸĐČ, ??
+
+Type: person
+Gramps ID: I1543
+Gender: female
+Name: Molly James
+Birth: 1770 in La Follette, TN, USA - Birth of James, Molly
+
+Type: person
+Gramps ID: I0493
+Gender: female
+Name: Donna Elizabeth Lane
+Birth: 1974-09-10 in Bay City, MI, USA - Birth of Lane, Donna Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1618
+Gender: female
+Name: Rebecca Jiménez
+Birth: 1799-09-12 - Birth of Jiménez, Rebecca
+
+Type: person
+Gramps ID: I0205
+Gender: male
+Name: James Arthur Thornton
+Birth: 1911-07-12 - Birth of Thornton, James Arthur
+Death: 1983-12-02 - Death of Thornton, James Arthur
+Burial in St, George, UT, USA - Burial of Thornton, James Arthur
+
+Type: person
+Gramps ID: I0265
+Gender: female
+Name: Helen Margaret Landry
+Birth: 1906-10-16 in Alexandria, MN, USA - Birth of Landry, Helen Margaret
+Death in Ottawa, La Salle, IL, USA - Death of Landry, Helen Margaret
+
+Type: person
+Gramps ID: I0600
+Gender: male
+Name: P.D. Meyer
+Birth in Kapaa, HI, USA - Birth of Meyer, P.D.
+Death in Kapaa, HI, USA - Death of Meyer, P.D.
+Burial in Kapaa, HI, USA - Burial of Meyer, P.D.
+
+Type: person
+Gramps ID: I0153
+Gender: male
+Name: Harold Lowell Warner
+Birth: 1946-12-21 in Ottawa, La Salle, IL, USA - Birth of Warner, Harold Lowell
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0550
+Gender: female
+Name: Dorcas Rubio
+Death in Huntsville, Madison, AL, USA - Death of Rubio, Dorcas
+
+Type: person
+Gramps ID: I1257
+Gender: male
+Name: Christopher Warner
+
+Type: person
+Gramps ID: I1624
+Gender: male
+Name: Thomas Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Thomas
+
+Type: person
+Gramps ID: I0209
+Gender: male
+Name: Joseph Edward Lane
+Birth: 1943-10-10 in Midland, MI, USA - Birth of Lane, Joseph Edward
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0336
+Gender: male
+Name: William Robert Bates
+Birth: 1950-08-04 - Birth of Bates, William Robert
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0338
+Gender: male
+Name: Stephen Michael Bates
+Birth: 1982-08-03 in Ottawa, La Salle, IL, USA - Birth of Bates, Stephen Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0026
+Gender: female
+Name: Frances Green
+Birth: 1804-07-22 in Poplar Bluff, MO, USA - Birth of Green, Frances
+Death: 1886-07-31 in Arlington, VA, USA - Death of Green, Frances
+Burial: 1886-08-02 in Fort Leonard Wood, MO, USA - Burial of Green, Frances
+
+Type: person
+Gramps ID: I0453
+Gender: female
+Name: Brandy Nichole Bell
+Birth: 1980-02-12 - Birth of Bell, Brandy Nichole
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0716
+Gender: male
+Name: ?m.MaryJane Evans
+
+Type: person
+Gramps ID: I1831
+Gender: female
+Name: Mary Ann Reed
+
+Type: person
+Gramps ID: I0276
+Gender: female
+Name: Eleanor Jean Landry
+Birth: 1924-02-16 - Birth of Landry, Eleanor Jean
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0718
+Gender: female
+Name: Patricia Kay Evans
+Birth: 1976-01-19 in Ottawa, La Salle, IL, USA - Birth of Evans, Patricia Kay
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1896
+Gender: female
+Name: Elizabeth KamiĆski
+
+Type: person
+Gramps ID: I0343
+Gender: female
+Name: Joan Louise Floyd
+Birth: 1988-07-25 in Carbondale, Jackson, IL, USA - Birth of Floyd, Joan Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2104
+Gender: male
+Name: Enoch T. Moreno
+Birth: 1799-11-29 in Bloomsburg, PA, USA - Birth of Moreno, Enoch T.
+
+Type: person
+Gramps ID: I0976
+Gender: female
+Name: Ruth Ann HĂ©bert
+Birth in Ardmore, OK, USA - Birth of HĂ©bert, Ruth Ann
+Death: 1843 - Death of HĂ©bert, Ruth Ann
+
+Type: person
+Gramps ID: I1707
+Gender: male
+Name: Cliff Parks
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2034
+Gender: male
+Name: William Melvin Hawkins
+Birth: 1926-03-09 in Harrisonburg, VA, USA - Birth of Hawkins, William Melvin
+Death: 1999-03-25 in Worthington, MN, USA - Death of Hawkins, William Melvin
+Burial: 1999-03-29 in Worthington, MN, USA - Burial of Hawkins, William Melvin
+
+Type: person
+Gramps ID: I1380
+Gender: male
+Name: James Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, James
+
+Type: person
+Gramps ID: I2035
+Gender: female
+Name: Ruth Gibbs
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1025
+Gender: female
+Name: Maud ЧДŃĐœĐŸĐČ
+Birth: 1325 - Birth of ЧДŃĐœĐŸĐČ, Maud
+
+Type: person
+Gramps ID: I0613
+Gender: female
+Name: Elizabeth Oliver
+Birth in Texarkana, Miller, AR, USA - Birth of Oliver, Elizabeth
+Death in Clinton, Clinton, IA, USA - Death of Oliver, Elizabeth
+
+Type: person
+Gramps ID: I1277
+Gender: male
+Name: Johann Michael Beaulieu
+Birth: 1711 - Birth of Beaulieu, Johann Michael
+
+Type: person
+Gramps ID: I1324
+Gender: female
+Name: Anna Eva Michaud
+Birth: 1716 - Birth of Michaud, Anna Eva
+
+Type: person
+Gramps ID: I0112
+Gender: female
+Name: Jamie Lee Flores
+Birth: 1959-10-23 in Salina, Saline, KS, USA - Birth of Flores, Jamie Lee
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0891
+Gender: female
+Name: Edith Irene Zimmerman
+Birth: 1887-05-20 - Birth of Zimmerman, Edith Irene
+
+Type: person
+Gramps ID: I1146
+Gender: female
+Name: Alice Wells
+Birth in Burlington, Des Moines, IA, USA - Birth of Wells, Alice
+Death: 1653-11-08 in McAlester, OK, USA - Death of Wells, Alice
+
+Type: person
+Gramps ID: I1649
+Gender: female
+Name: Nancy HernĂĄndez
+
+Type: person
+Gramps ID: I0232
+Gender: female
+Name: Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ
+Birth: 1947-01-22 in Ottawa, La Salle, IL, USA - Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1847
+Gender: female
+Name: Bridget Ann Reed
+Birth: 1885-02-24 in Alexandria, MD, USA - Birth of Reed, Bridget Ann
+Death in Kearney, NE, USA - Death of Reed, Bridget Ann
+
+Type: person
+Gramps ID: I0183
+Gender: female
+Name: Louella Marie Garner
+Birth in Ottawa, La Salle, IL, USA - Birth of Garner, Louella Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2051
+Gender: male
+Name: Darius Moreno
+Birth: 1828-03-21 in Virginia Beach, VA, USA - Birth of Moreno, Darius
+
+Type: person
+Gramps ID: I2053
+Gender: unknown
+Name: Moreno
+
+Type: person
+Gramps ID: I1852
+Gender: female
+Name: Mary Reed
+Birth: 1878-05-10 in Columbus, NE, USA - Birth of Reed, Mary
+
+Type: person
+Gramps ID: I1040
+Gender: female
+Name: Connie Gibbs
+Birth: 1943-02-08 - Birth of Gibbs, Connie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1292
+Gender: female
+Name: Susanna Farmer
+Birth: 1784 - Birth of Farmer, Susanna
+
+Type: person
+Gramps ID: I1516
+Gender: male
+Name: Thomas ĐĐ°ĐČĐ»ĐŸĐČ
+Birth in Cookeville, TN, USA - Birth of ĐĐ°ĐČĐ»ĐŸĐČ, Thomas
+
+Type: person
+Gramps ID: I1856
+Gender: male
+Name: KamiĆski
+
+Type: person
+Gramps ID: I0082
+Gender: female
+Name: Mary (Polly) æžĄèŸș
+Birth: 1802-06-15 in Jefferson City, MO, USA - Birth of æžĄèŸș, Mary (Polly)
+Death: 1869-01-25 in Ottawa, La Salle, IL, USA - Death of æžĄèŸș, Mary (Polly)
+Burial in Fayetteville, Washington, AR, USA - Burial of æžĄèŸș, Mary (Polly)
+
+Type: person
+Gramps ID: I1590
+Gender: unknown
+Name: Louise DeSoix Benson
+Birth: 1680-03-15 in Peoria, Peoria, IL, USA - Birth of Benson, Louise DeSoix
+
+Type: person
+Gramps ID: I2060
+Gender: male
+Name: William Andersen
+
+Type: person
+Gramps ID: I1929
+Gender: male
+Name: John Reeves
+
+Type: person
+Gramps ID: I0997
+Gender: female
+Name: Barbara Stanley
+Death in Dover, Kent, DE, USA - Death of Stanley, Barbara
+
+Type: person
+Gramps ID: I0772
+Gender: male
+Name: David Benson
+Birth: 1730 - Birth of Benson, David
+Death: 1777 - Death of Benson, David
+
+Type: person
+Gramps ID: I0197
+Gender: female
+Name: Anita June Osborne
+Birth: 1961-06-21 - Birth of Osborne, Anita June
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2076
+Gender: female
+Name: Joseph
+
+Type: person
+Gramps ID: I1060
+Gender: female
+Name: Adria Maria ĐĄĐ”ŃгДДĐČ
+Birth: 1971-06-01 in Ottawa, La Salle, IL, USA - Birth of ĐĄĐ”ŃгДДĐČ, Adria Maria
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1117
+Gender: female
+Name: Rebecca Catharine Garner
+Birth: 1857-05-30 in Denver-Aurora, CO, USA - Birth of Garner, Rebecca Catharine
+Death: 1937-04-09 in Alice, Jim Wells, TX, USA - Death of Garner, Rebecca Catharine
+Burial: 1937-04-11 in Marion, OH, USA - Burial of Garner, Rebecca Catharine
+
+Type: person
+Gramps ID: I0702
+Gender: female
+Name: Eleanor Aguilar
+Birth: nach 1717 in Hickory-Morganton-Lenoir, NC, USA - Birth of Aguilar, Eleanor
+Death: nach 1760-02 in Plattsburgh, Clinton, NY, USA - Death of Aguilar, Eleanor
+
+Type: person
+Gramps ID: I0825
+Gender: male
+Name: Joseph Alonso
+Birth in Del Rio, Val Verde, TX, USA - Birth of Alonso, Joseph
+
+Type: person
+Gramps ID: I0148
+Gender: male
+Name: Michael Louis Warner
+Birth: 1936-12-22 in Big Rapids, MI, USA - Birth of Warner, Michael Louis
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2015
+Gender: male
+Name: John Hernandez
+
+Type: person
+Gramps ID: I0648
+Gender: female
+Name: Georgia ĐŻĐșĐŸĐČлДĐČ
+
+Type: person
+Gramps ID: I1418
+Gender: female
+Name: Maude Page
+Birth: 1900-09-21 in Corsicana, Navarro, TX, USA - Birth of Page, Maude
+Death: 1987-03-24 in Brookhaven, MS, USA - Death of Page, Maude
+Burial: 1987-03-26 in Point Pleasant, WV, USA - Burial of Page, Maude
+
+Type: person
+Gramps ID: I1180
+Gender: male
+Name: Swanson BĂ©dard
+
+Type: person
+Gramps ID: I1698
+Gender: male
+Name: David Festus Webb
+Birth: 1883-02-22 in Reno-Sparks, NV, USA - Birth of Webb, David Festus
+Death: 1950-08-23 - Death of Webb, David Festus
+
+Type: person
+Gramps ID: I0786
+Gender: female
+Name: Gail Holloway
+Birth: 1956-09-30 - Birth of Holloway, Gail
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1014
+Gender: male
+Name: Robert Hanson
+Birth: 1110 - Birth of Hanson, Robert
+Death: 1185 - Death of Hanson, Robert
+
+Type: person
+Gramps ID: I1259
+Gender: female
+Name: unnamed girl Warner
+Birth: 1865 in Palatka, Putnam, FL, USA - Birth of Warner, unnamed girl
+Death in Palatka, Putnam, FL, USA - Death of Warner, unnamed girl
+
+Type: person
+Gramps ID: I0274
+Gender: female
+Name: Rose Marie Landry
+
+Type: person
+Gramps ID: I2025
+Gender: female
+Name: Virginia Elizabeth Gutiérrez
+Birth: 1921-07-01 - Birth of Gutiérrez, Virginia Elizabeth
+
+Type: person
+Gramps ID: I0278
+Gender: male
+Name: Michael Douglas Warner
+Birth: 1958-06-10 in Wheeling, WV-OH, USA - Birth of Warner, Michael Douglas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0280
+Gender: female
+Name: Michelle Lorraine Warner
+Birth: 1962-11-19 in Isabela, PR, USA - Birth of Warner, Michelle Lorraine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0608
+Gender: male
+Name: Cadwallader Alvarado
+Birth in Orangeburg, SC, USA - Birth of Alvarado, Cadwallader
+Death in Clarksdale, MS, USA - Death of Alvarado, Cadwallader
+
+Type: person
+Gramps ID: I0793
+Gender: female
+Name: Ernestina Barnes
+Birth in Barnstable Town, MA, USA - Birth of Barnes, Ernestina
+Death: 1965-04-15 in Columbus, Jefferson, GA-AL, USA - Death of Barnes, Ernestina
+Burial in Maysville, Mason, KY, USA - Burial of Barnes, Ernestina
+
+Type: person
+Gramps ID: I1079
+Gender: male
+Name: Nicholas Ian Matthews
+Birth: 1995-07-11 in Ottawa, La Salle, IL, USA - Birth of Matthews, Nicholas Ian
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1271
+Gender: unknown
+Name: Warner
+
+Type: person
+Gramps ID: I1901
+Gender: female
+Name: Nancy Woods
+
+Type: person
+Gramps ID: I0284
+Gender: male
+Name: John Warren Lopez
+Birth: 1959-11-26 in Wheeling, WV-OH, USA - Birth of Lopez, John Warren
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0351
+Gender: male
+Name: Robert Arthur Todd
+Birth: 1874-11-19 - Birth of Todd, Robert Arthur
+Death: 1940-12-20 - Death of Todd, Robert Arthur
+
+Type: person
+Gramps ID: I1382
+Gender: female
+Name: Margaret Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, Margaret
+
+Type: person
+Gramps ID: I1280
+Gender: female
+Name: Anna Margaretha Holland
+Birth: 1685 - Birth of Holland, Anna Margaretha
+
+Type: person
+Gramps ID: I1975
+Gender: male
+Name: Nathanial Green Ball
+
+Type: person
+Gramps ID: I1206
+Gender: unknown
+Name: Clemence Diaz
+
+Type: person
+Gramps ID: I0033
+Gender: male
+Name: Jasper Ball
+Birth: 1846-12-14 in Wausau, WI, USA - Birth of Ball, Jasper
+Death: 1906-08-04 in Oxnard, Ventura, CA, USA - Death of Ball, Jasper
+Burial: 1906-08-06 in Oxnard, Ventura, CA, USA - Burial of Ball, Jasper
+
+Type: person
+Gramps ID: I0572
+Gender: female
+Name: Juliana Howard
+
+Type: person
+Gramps ID: I1332
+Gender: male
+Name: Johann Adam ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ
+Birth: 1721 - Birth of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Johann Adam
+
+Type: person
+Gramps ID: I1213
+Gender: male
+Name: Gabriel Gustave ć±±æŹ
+
+Type: person
+Gramps ID: I1101
+Gender: unknown
+Name: George Brooks
+
+Type: person
+Gramps ID: I0081
+Gender: male
+Name: William Todd
+Birth: 1790-10-01 in Jacksonville, Cherokee, TX, USA - Birth of Todd, William
+Death: 1846-07-08 in Branson, MO, USA - Death of Todd, William
+Burial in Fayetteville, Washington, AR, USA - Burial of Todd, William
+
+Type: person
+Gramps ID: I1042
+Gender: male
+Name: MartĂn
+
+Type: person
+Gramps ID: I0579
+Gender: female
+Name: Catherine Sparks
+
+Type: person
+Gramps ID: I1044
+Gender: female
+Name: Elaine Gibbs
+
+Type: person
+Gramps ID: I1343
+Gender: male
+Name: Conrad ĐĐŸĐ»Đ”ŃĐœĐžĐșĐŸĐČ
+
+Type: person
+Gramps ID: I0688
+Gender: female
+Name: Grace Navarro
+
+Type: person
+Gramps ID: I0745
+Gender: female
+Name: Sarah Carpenter
+Birth: um 1633 in Brevard, NC, USA - Birth of Carpenter, Sarah
+
+Type: person
+Gramps ID: I1592
+Gender: female
+Name: Elizabeth Benson
+Birth: 1685-04-13 in Peoria, Peoria, IL, USA - Birth of Benson, Elizabeth
+
+Type: person
+Gramps ID: I1667
+Gender: male
+Name: Archibald Serrano
+Birth: 1804-12-15 - Birth of Serrano, Archibald
+Death: 1842-11-17 in Reno-Sparks, NV, USA - Death of Serrano, Archibald
+Burial: 1842-11-19 in Goldsboro, NC, USA - Burial of Serrano, Archibald
+
+Type: person
+Gramps ID: I0309
+Gender: male
+Name: Timothy Andrew ĐĐžŃДлДĐČ
+Birth: 1983-07-07 in Wheeling, WV-OH, USA - Birth of ĐĐžŃДлДĐČ, Timothy Andrew
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1594
+Gender: male
+Name: Walter Benson
+
+Type: person
+Gramps ID: I1996
+Gender: male
+Name: Enos Allen
+Birth: 1667 in Beeville, Bee, TX, USA - Birth of Allen, Enos
+Death: 1689-11-21 in Topeka, Shawnee, KS, USA - Death of Allen, Enos
+
+Type: person
+Gramps ID: I0693
+Gender: female
+Name: Mary Alexander
+
+Type: person
+Gramps ID: I0861
+Gender: male
+Name: David Andrew SĂĄnchez
+Birth: 1951-03-02 - Birth of SĂĄnchez, David Andrew
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1999
+Gender: male
+Name: John Allen
+Birth: 1674-05-24 in Sikeston, MO, USA - Birth of Allen, John
+Death: 1727 in Topeka, Shawnee, KS, USA - Death of Allen, John
+
+Type: person
+Gramps ID: I2069
+Gender: male
+Name: Cyrus W. Moreno
+Birth: 1825-08-18 in Paris, TN, USA - Birth of Moreno, Cyrus W.
+
+Type: person
+Gramps ID: I0633
+Gender: female
+Name: Bernetha Ellen Garner
+Birth: 1912-10-21 - Birth of Garner, Bernetha Ellen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1466
+Gender: female
+Name: Eliza Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, Eliza
+
+Type: person
+Gramps ID: I1603
+Gender: female
+Name: Elizabeth Benson
+
+Type: person
+Gramps ID: I0819
+Gender: female
+Name: Monica Hansen
+Birth in Tifton, Tift, GA, USA - Birth of Hansen, Monica
+
+Type: person
+Gramps ID: I0916
+Gender: female
+Name: Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ
+Birth: 1717-01-26 in Enterprise, Coffee, AL, USA - Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Death: 1788-04-20 in Grants, NM, USA - Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Burial: 1788-04-22 in Jackson, TN, USA - Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+
+Type: person
+Gramps ID: I1470
+Gender: male
+Name: Marshall Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, Marshall
+
+Type: person
+Gramps ID: I0869
+Gender: male
+Name: Jeffrey George Warner
+Birth: 1992-10-30 in Palm Bay, Brevard, FL, USA - Birth of Warner, Jeffrey George
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1001
+Gender: female
+Name: Ann Spencer
+Birth: um 1585 in Valley, Chambers, AL, USA - Birth of Spencer, Ann
+Death: 1662-12-20 in Portales, NM, USA - Death of Spencer, Ann
+
+Type: person
+Gramps ID: I1683
+Gender: male
+Name: Samuel Blanco
+Birth: 1759-01-02 in Monroe, WI, USA - Birth of Blanco, Samuel
+Death: 1840-01-14 - Death of Blanco, Samuel
+
+Type: person
+Gramps ID: I1817
+Gender: male
+Name: Michael Duncan
+Birth: um 1978 in Columbus, MS, USA - Birth of Duncan, Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0260
+Gender: male
+Name: John Anthony Landry
+Birth: 1897-09-14 in Ottawa, La Salle, IL, USA - Birth of Landry, John Anthony
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0966
+Gender: male
+Name: William Reynolds
+Birth: um 1695 in Moses Lake, WA, USA - Birth of Reynolds, William
+Death: um 1788 in Manhattan, Riley, KS, USA - Death of Reynolds, William
+Burial in Manhattan, Riley, KS, USA - Burial of Reynolds, William
+
+Type: person
+Gramps ID: I1247
+Gender: female
+Name: Amanda Warner
+
+Type: person
+Gramps ID: I1316
+Gender: female
+Name: Anna Elisabeth Beaulieu
+Birth: 1706 - Birth of Beaulieu, Anna Elisabeth
+Death: 1772 - Death of Beaulieu, Anna Elisabeth
+
+Type: person
+Gramps ID: I1479
+Gender: male
+Name: Frank Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, Frank
+
+Type: person
+Gramps ID: I2088
+Gender: female
+Name: Mary Price
+
+Type: person
+Gramps ID: I1009
+Gender: female
+Name: Agnes Rios
+Birth: 1018 - Birth of Rios, Agnes
+
+Type: person
+Gramps ID: I1125
+Gender: female
+Name: Emma A. Garner
+Birth: 1868-08-18 - Birth of Garner, Emma A.
+Death: 1869-02-23 - Death of Garner, Emma A.
+Burial: 1869-02 in Storm Lake, Buena Vista, IA, USA - Burial of Garner, Emma A.
+
+Type: person
+Gramps ID: I1252
+Gender: male
+Name: David Brant Warner
+
+Type: person
+Gramps ID: I0397
+Gender: male
+Name: Mathew Reeves
+
+Type: person
+Gramps ID: I1419
+Gender: male
+Name: Elmer Page
+
+Type: person
+Gramps ID: I0500
+Gender: female
+Name: Cynthia Diane Alvarado
+
+Type: person
+Gramps ID: I0603
+Gender: female
+Name: Elizabeth Johnson
+Death in Coamo, PR, USA - Death of Johnson, Elizabeth
+
+Type: person
+Gramps ID: I0340
+Gender: male
+Name: Robert William Floyd
+Birth: 1950-07-27 - Birth of Floyd, Robert William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1186
+Gender: male
+Name: Veltin ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ
+
+Type: person
+Gramps ID: I0060
+Gender: male
+Name: Maj. Christopher Moreno
+Birth: 1752-11-23 in Roanoke Rapids, NC, USA - Birth of Moreno, Maj. Christopher
+Death: 1823-09-14 in Santa Fe, NM, USA - Death of Moreno, Maj. Christopher
+
+Type: person
+Gramps ID: I0160
+Gender: male
+Name: Stephen Paul Warner
+Birth: 1951-11-04 in Bremerton, WA, USA - Birth of Warner, Stephen Paul
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0407
+Gender: female
+Name: Lorinda Catherine Ford
+Birth: 1916-10-31 in Kendallville, Noble, IN, USA - Birth of Ford, Lorinda Catherine
+Death: 1983-11-27 in Ottawa, La Salle, IL, USA - Death of Ford, Lorinda Catherine
+Burial in Fostoria, OH, USA - Burial of Ford, Lorinda Catherine
+
+Type: person
+Gramps ID: I1266
+Gender: male
+Name: William Waller Warner
+
+Type: person
+Gramps ID: I0458
+Gender: female
+Name: Reese
+Death: vor 1750 in Mooresville, NC, USA - Death of Reese
+Burial in Mooresville, NC, USA - Burial of Reese
+
+Type: person
+Gramps ID: I1492
+Gender: female
+Name: Catherine Douglas
+Birth: 1818-04-09 in Port Angeles, WA, USA - Birth of Douglas, Catherine
+
+Type: person
+Gramps ID: I1321
+Gender: female
+Name: Anna Maria Beaulieu
+Birth: 1715 - Birth of Beaulieu, Anna Maria
+Death: 1762 - Death of Beaulieu, Anna Maria
+
+Type: person
+Gramps ID: I1638
+Gender: male
+Name: Paul Lewandowski
+
+Type: person
+Gramps ID: I0844
+Gender: male
+Name: Michael Gardner
+Birth in Loveland, Larimer, CO, USA - Birth of Gardner, Michael
+
+Type: person
+Gramps ID: I1200
+Gender: female
+Name: Avis Fernandez El FernĂĄndez III
+
+Type: person
+Gramps ID: I1027
+Gender: male
+Name: John Massey
+Birth: 1420 - Birth of Massey, John
+
+Type: person
+Gramps ID: I1279
+Gender: male
+Name: Johann Simon Beaulieu
+Birth: 1682 in Jennings, Jefferson Davis, LA, USA - Birth of Beaulieu, Johann Simon
+
+Type: person
+Gramps ID: I0004
+Gender: male
+Name: John Allen Warner
+Birth: 1979-05-04 in New Haven, New Haven, CT, USA - Birth of Warner, John Allen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0982
+Gender: female
+Name: Patricia Đ„ŃĐŽĐŸĐœĐŸĐłĐŸĐČ
+
+Type: person
+Gramps ID: I1090
+Gender: female
+Name: Mattea Elizabeth Willis
+Birth: 1996-08-19 in Hartford, Hartford, CT, USA - Birth of Willis, Mattea Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0984
+Gender: male
+Name: William Diaz
+Birth: um 1648 in Gaffney, SC, USA - Birth of Diaz, William
+Death: 1700-09-16 in Coldwater, MI, USA - Death of Diaz, William
+
+Type: person
+Gramps ID: I1912
+Gender: female
+Name: Margaret Jane ĐĐŒĐžŃŃОДĐČ
+Birth in Waterloo-Cedar Falls, IA, USA - Birth of ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+Death in Steubenville, OH, USA - Death of ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+
+Type: person
+Gramps ID: I0517
+Gender: female
+Name: Mary Harris
+
+Type: person
+Gramps ID: I0677
+Gender: male
+Name: Joseph Christiansen
+Birth: 1655-03-01 in Plainview, Houston, TX, USA - Birth of Christiansen, Joseph
+Death: 1726-01 in Lake County, IL, USA - Death of Christiansen, Joseph
+
+Type: person
+Gramps ID: I1330
+Gender: male
+Name: Valentin Michaud
+Birth: 1715 - Birth of Michaud, Valentin
+
+Type: person
+Gramps ID: I1578
+Gender: female
+Name: Susan Lawson
+
+Type: person
+Gramps ID: I1333
+Gender: male
+Name: Johann Simon Beaulieu
+Birth: 1728 - Birth of Beaulieu, Johann Simon
+Death: 1771 - Death of Beaulieu, Johann Simon
+
+Type: person
+Gramps ID: I0076
+Gender: female
+Name: Susannah Cole
+Death: 1757 in Ashtabula, OH, USA - Death of Cole, Susannah
+
+Type: person
+Gramps ID: I1850
+Gender: female
+Name: Catherine Reed
+
+Type: person
+Gramps ID: I1290
+Gender: male
+Name: George William Farmer
+
+Type: person
+Gramps ID: I1920
+Gender: male
+Name: Benjamin Swanson
+
+Type: person
+Gramps ID: I0239
+Gender: male
+Name: Norman Russell
+Birth: 1908-04-27 - Birth of Russell, Norman
+Death in Alexandria, Rapides, LA, USA - Death of Russell, Norman
+Burial: 1992 in Taylorville, Christian, IL, USA - Burial of Russell, Norman
+
+Type: person
+Gramps ID: I0304
+Gender: male
+Name: David William Sigfred Haynes
+Birth: 1986-12-06 in Bremerton, WA, USA - Birth of Haynes, David William Sigfred
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0526
+Gender: male
+Name: Edward Christiansen
+Birth: 1607 in Amsterdam, Montgomery, NY, USA - Birth of Christiansen, Edward
+Death: 1684 in Lake County, IL, USA - Death of Christiansen, Edward
+
+Type: person
+Gramps ID: I0370
+Gender: female
+Name: Ruth L. ĐĐ°ĐčŃĐ”ĐČ
+
+Type: person
+Gramps ID: I1927
+Gender: male
+Name: Matt ĐĐŸŃбŃĐœĐŸĐČ
+
+Type: person
+Gramps ID: I0372
+Gender: male
+Name: James Lee Webb
+Birth: 1939-04-23 in Ottawa, La Salle, IL, USA - Birth of Webb, James Lee
+Death: 1994-09-23 in Ottawa, La Salle, IL, USA - Death of Webb, James Lee
+Burial: 1994-09-27 in Ottawa, La Salle, IL, USA - Burial of Webb, James Lee
+
+Type: person
+Gramps ID: I0581
+Gender: male
+Name: John Pope
+Death: 1957-04-24 - Death of Pope, John
+
+Type: person
+Gramps ID: I0584
+Gender: male
+Name: Frank Kim
+
+Type: person
+Gramps ID: I1864
+Gender: female
+Name: Kate Reed
+Birth in Kingsport, TN, USA - Birth of Reed, Kate
+
+Type: person
+Gramps ID: I1745
+Gender: male
+Name: Patrick Boucher
+Birth in Summerville, Chattooga, GA, USA - Birth of Boucher, Patrick
+
+Type: person
+Gramps ID: I1751
+Gender: male
+Name: Martin Boucher
+
+Type: person
+Gramps ID: I0700
+Gender: male
+Name: Robert Patrick
+Death: 1999-04-18 in Warren, PA, USA - Death of Patrick, Robert
+
+Type: person
+Gramps ID: I1468
+Gender: male
+Name: William Alvarado
+Birth in Cookeville, TN, USA - Birth of Alvarado, William
+
+Type: person
+Gramps ID: I1749
+Gender: male
+Name: Thomas Boucher
+
+Type: person
+Gramps ID: I1753
+Gender: male
+Name: John Joseph Bush
+
+Type: person
+Gramps ID: I0774
+Gender: male
+Name: Col. David Benson
+Birth: 1786-08-17 in Valdosta, Lowndes, GA, USA - Birth of Benson, Col. David
+Death: 1836-03-06 in Holland-Grand Haven, MI, USA - Death of Benson, Col. David
+
+Type: person
+Gramps ID: I1168
+Gender: male
+Name: Lodowick Elliott
+
+Type: person
+Gramps ID: I1309
+Gender: male
+Name: Johann Franciskus Beaulieu
+Birth: 1745 - Birth of Beaulieu, Johann Franciskus
+Death: 1826 - Death of Beaulieu, Johann Franciskus
+
+Type: person
+Gramps ID: I0385
+Gender: female
+Name: Sylvia B. Boucher
+
+Type: person
+Gramps ID: I2079
+Gender: female
+Name: Mary J. Craig
+
+Type: person
+Gramps ID: I0595
+Gender: male
+Name: David ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I1946
+Gender: male
+Name: Thomas Dixon
+Birth: um 1671 in Hanover, PA, USA - Birth of Dixon, Thomas
+
+Type: person
+Gramps ID: I0146
+Gender: female
+Name: Joy A. Wade
+
+Type: person
+Gramps ID: I1065
+Gender: female
+Name: Amy Elizabeth Garner
+Birth: 1989-04-11 - Birth of Garner, Amy Elizabeth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1614
+Gender: male
+Name: John Jiménez
+Birth: 1794-11-05 - Birth of Jiménez, John
+Death: 1821-01-28 - Death of Jiménez, John
+
+Type: person
+Gramps ID: I1692
+Gender: male
+Name: O. D. Little
+
+Type: person
+Gramps ID: I2090
+Gender: male
+Name: Ford
+
+Type: person
+Gramps ID: I0711
+Gender: female
+Name: Mary Ellen йОŃ
ĐŸĐœĐŸĐČ
+Birth in Hutchinson, Reno, KS, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, Mary Ellen
+
+Type: person
+Gramps ID: I1622
+Gender: male
+Name: Mr. HĂ©bert
+Birth in Canton, Fulton, IL, USA - Birth of HĂ©bert, Mr.
+
+Type: person
+Gramps ID: I2092
+Gender: male
+Name: John Moreno
+Birth: 1782-01-07 - Birth of Moreno, John
+
+Type: person
+Gramps ID: I0498
+Gender: female
+Name: Sharon Boucher
+Birth: 1943-11-26 - Birth of Boucher, Sharon
+Death: 1973-06-11 - Death of Boucher, Sharon
+
+Type: person
+Gramps ID: I0602
+Gender: female
+Name: Mary McCarthy
+Birth in Malone, Franklin, NY, USA - Birth of McCarthy, Mary
+Death in Los Angeles, Los Angeles, CA, USA - Death of McCarthy, Mary
+Burial in Sturgis, MI, USA - Burial of McCarthy, Mary
+
+Type: person
+Gramps ID: I0929
+Gender: male
+Name: Heinrich Blanco
+Birth: 1639-11-10 in Middlesborough, KY, USA - Birth of Blanco, Heinrich
+
+Type: person
+Gramps ID: I0502
+Gender: male
+Name: Richard Alvarado
+
+Type: person
+Gramps ID: I1894
+Gender: male
+Name: Alexander Payne
+
+Type: person
+Gramps ID: I0455
+Gender: male
+Name: Curtis Theobald Poulsen
+Birth: 1988-08-19 in Vallejo, Solano, CA, USA - Birth of Poulsen, Curtis Theobald
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1190
+Gender: female
+Name: Margaretha Castillo
+
+Type: person
+Gramps ID: I1900
+Gender: male
+Name: James Diaz
+Birth: 1763-04-15 in Jamestowna, NY, USA - Birth of Diaz, James
+Death in Toledo, OH, USA - Death of Diaz, James
+Burial in Winchester, VA, USA - Burial of Diaz, James
+
+Type: person
+Gramps ID: I2032
+Gender: female
+Name: Angie ĐŃĐ°ĐœĐ°ŃŃĐ”ĐČ
+
+Type: person
+Gramps ID: I0218
+Gender: female
+Name: Myrabel Robbins
+Birth: 1922-01-15 - Birth of Robbins, Myrabel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0347
+Gender: male
+Name: Benjamin Allen Harrison
+Birth: 1986-07-10 - Birth of Harrison, Benjamin Allen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1022
+Gender: male
+Name: Ralph Knudsen
+Birth: 1300 in Bethesda, MD, USA - Birth of Knudsen, Ralph
+Death: 1343 - Death of Knudsen, Ralph
+
+Type: person
+Gramps ID: I1195
+Gender: female
+Name: ĐĐžĐșĐžŃĐŸŃĐŸĐČ
+
+Type: person
+Gramps ID: I0220
+Gender: female
+Name: Janis Marlene Cruz
+Birth: 1947-01-10 - Birth of Cruz, Janis Marlene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1433
+Gender: male
+Name: Teddy C. Armstrong
+Birth: 1906-07-24 in Williamsport, PA, USA - Birth of Armstrong, Teddy C.
+Death: 1995-07-09 in Alexandria, Rapides, LA, USA - Death of Armstrong, Teddy C.
+
+Type: person
+Gramps ID: I1838
+Gender: female
+Name: Đ€Đ”ĐŽĐŸŃĐŸĐČ
+
+Type: person
+Gramps ID: I0286
+Gender: female
+Name: Rebecca J. Miles
+
+Type: person
+Gramps ID: I0942
+Gender: male
+Name: Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ
+Birth: 1658 in Kalamazoo, MI, USA - Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+Death: 1718-08-16 in Kalamazoo, MI, USA - Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+Burial in Liberal, Seward, KS, USA - Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+
+Type: person
+Gramps ID: I0066
+Gender: male
+Name: George Henry, III Jiménez
+Birth: 1826-08-15 in Adrian, MI, USA - Birth of Jiménez, George Henry, III
+Death: 1907-10-25 in Sanford, NC, USA - Death of Jiménez, George Henry, III
+
+Type: person
+Gramps ID: I0288
+Gender: male
+Name: Alvin E. Watson
+Birth: 1948-05-09 in Red Wing, MN, USA - Birth of Watson, Alvin E.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1713
+Gender: male
+Name: John Rodriquez
+Birth: 1807-01-22 in MayagĂŒez, PR, USA - Birth of Rodriquez, John
+
+Type: person
+Gramps ID: I0730
+Gender: male
+Name: Robert James
+
+Type: person
+Gramps ID: I0889
+Gender: male
+Name: George DomĂnguez
+Birth: 1811 in Lock Haven, PA, USA - Birth of DomĂnguez, George
+
+Type: person
+Gramps ID: I1500
+Gender: female
+Name: Nancy Parent
+
+Type: person
+Gramps ID: I0515
+Gender: male
+Name: Samuel Fox
+Birth: 1700 in Yazoo City, MS, USA - Birth of Fox, Samuel
+Death: 1744 in Pecos, Reeves, TX, USA - Death of Fox, Samuel
+Burial in Thomasville, Fulton, GA, USA - Burial of Fox, Samuel
+
+Type: person
+Gramps ID: I1385
+Gender: male
+Name: William Waters
+Birth: 1871-08-24 in Watertown, SD, USA - Birth of Waters, William
+Death: 1938-07-12 - Death of Waters, William
+Burial: 1938-07-14 in Point Pleasant, WV, USA - Burial of Waters, William
+
+Type: person
+Gramps ID: I1502
+Gender: male
+Name: Harry Parent
+
+Type: person
+Gramps ID: I0802
+Gender: female
+Name: Nancy Morrison
+Birth in Loveland, Larimer, CO, USA - Birth of Morrison, Nancy
+Death in Fargo, ND, USA - Death of Morrison, Nancy
+Burial in Somerset, PA, USA - Burial of Morrison, Nancy
+
+Type: person
+Gramps ID: I0893
+Gender: male
+Name: Dwayne Alan Page
+Birth: 1950-04-04 in Wheeling, WV-OH, USA - Birth of Page, Dwayne Alan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0736
+Gender: female
+Name: ??? Frank
+Birth in Davenport, Scott, IA, USA - Birth of Frank, ???
+
+Type: person
+Gramps ID: I0896
+Gender: male
+Name: Roger Joseph Boucher
+Birth: 1940-01-04 - Birth of Boucher, Roger Joseph
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0362
+Gender: male
+Name: Winfield Scott Farmer
+Birth: 1847-07-29 in Thomaston, Upson, GA, USA - Birth of Farmer, Winfield Scott
+
+Type: person
+Gramps ID: I1288
+Gender: male
+Name: Valentine Farmer
+Birth: 1779 - Birth of Farmer, Valentine
+Death: 1833 - Death of Farmer, Valentine
+
+Type: person
+Gramps ID: I0237
+Gender: male
+Name: Keith William Garrett
+Birth: 1952-11-01 in Ottawa, La Salle, IL, USA - Birth of Garrett, Keith William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1393
+Gender: male
+Name: John Sanz
+Birth: 1869-12-25 - Birth of Sanz, John
+Death in Troy, Pike, AL, USA - Death of Sanz, John
+
+Type: person
+Gramps ID: I0902
+Gender: female
+Name: Cynthia Louise Boucher
+Birth: 1961-12-05 in Allentown, PA, USA - Birth of Boucher, Cynthia Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1732
+Gender: female
+Name: Margaret Rodriquez
+Birth: 1781-03-05 in La Follette, TN, USA - Birth of Rodriquez, Margaret
+
+Type: person
+Gramps ID: I0130
+Gender: male
+Name: Richard Kenneth Warner
+Birth: 1925-01-17 in Portland, ME, USA - Birth of Warner, Richard Kenneth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1226
+Gender: male
+Name: R. Eaken Webb
+
+Type: person
+Gramps ID: I0586
+Gender: male
+Name: Miles Joseph"Dutch" Kristensen
+Birth: 1897-01-01 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Miles Joseph"Dutch"
+Death: 1971-10-19 in Athens, Clarke, GA, USA - Death of Kristensen, Miles Joseph"Dutch"
+Burial: 1971-10-21 in Cape Coral-Fort Myers, FL, USA - Burial of Kristensen, Miles Joseph"Dutch"
+
+Type: person
+Gramps ID: I0960
+Gender: male
+Name: Leonard Payne
+Birth: um 1655 in Fort Lauderdale, Broward, FL, USA - Birth of Payne, Leonard
+Death: 1745-10 in Duluth, MN, USA - Death of Payne, Leonard
+Burial: 1745 in Duluth, MN, USA - Burial of Payne, Leonard
+
+Type: person
+Gramps ID: I1808
+Gender: male
+Name: Terrence Reed
+Birth: 1948-05-07 in Niles, MI, USA - Birth of Reed, Terrence
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0194
+Gender: male
+Name: Andrew Vincent Page
+Birth: 1887-02-05 in Oskaloosa, Mahaska, IA, USA - Birth of Page, Andrew Vincent
+Death: 1979-09-27 in Elmira, Chemung, NY, USA - Death of Page, Andrew Vincent
+Burial: 1979-09-29 in Oskaloosa, Mahaska, IA, USA - Burial of Page, Andrew Vincent
+
+Type: person
+Gramps ID: I0316
+Gender: female
+Name: Elisa Ann Long
+Birth: 1982-03-23 in Lafayette, Tippecanoe, IN, USA - Birth of Long, Elisa Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1166
+Gender: male
+Name: John Reynolds
+Birth: um 1599 in Las Vegas, NM, USA - Birth of Reynolds, John
+Death in Corning, Steuben, NY, USA - Death of Reynolds, John
+
+Type: person
+Gramps ID: I0636
+Gender: female
+Name: Betty Jane Garner
+Birth: 1920-08-25 in Denver-Aurora, CO, USA - Birth of Garner, Betty Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1352
+Gender: female
+Name: Zorada DomĂnguez
+Birth in New Ulm, MN, USA - Birth of DomĂnguez, Zorada
+
+Type: person
+Gramps ID: I0140
+Gender: male
+Name: Dwight Billington Osborne
+Birth: 1933-12-31 - Birth of Osborne, Dwight Billington
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1608
+Gender: male
+Name: Thomas äžæ
+
+Type: person
+Gramps ID: I0488
+Gender: male
+Name: Michael Boucher
+Birth: 1883 in Andrews, Andrews, TX, USA - Birth of Boucher, Michael
+Death in Andrews, Andrews, TX, USA - Death of Boucher, Michael
+Burial in Somerset, PA, USA - Burial of Boucher, Michael
+
+Type: person
+Gramps ID: I1118
+Gender: male
+Name: John B. RamĂrez
+
+Type: person
+Gramps ID: I1356
+Gender: female
+Name: Elizabeth DomĂnguez
+
+Type: person
+Gramps ID: I0642
+Gender: female
+Name: Marie Garner
+
+Type: person
+Gramps ID: I1948
+Gender: male
+Name: Daniel Warner
+Birth: 1682-12-05 in Williston, ND, USA - Birth of Warner, Daniel
+
+Type: person
+Gramps ID: I0150
+Gender: male
+Name: John William Warner
+Birth: 1944-08-11 in Big Rapids, MI, USA - Birth of Warner, John William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0444
+Gender: male
+Name: Christopher Paul Welch
+Birth: 1966-09-04 in Ottawa, La Salle, IL, USA - Birth of Welch, Christopher Paul
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0828
+Gender: female
+Name: Anne Boucher
+Birth: 1962 in Kerrville, Kerr, TX, USA - Birth of Boucher, Anne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1007
+Gender: female
+Name: Ann Jones
+Birth: 1550 in Safford, Graham, AZ, USA - Birth of Jones, Ann
+
+Type: person
+Gramps ID: I0874
+Gender: male
+Name: John W. Blanco
+Birth: 1838 in Scottsbluff, NE, USA - Birth of Blanco, John W.
+
+Type: person
+Gramps ID: I0497
+Gender: male
+Name: William J. Boucher
+Birth: 1941-01-11 in Newberry, SC, USA - Birth of Boucher, William J.
+Death: 1994-10-31 in Moberly, MO, USA - Death of Boucher, William J.
+Burial: 1994-11-03 in Lufkin, Angelina, TX, USA - Burial of Boucher, William J.
+
+Type: person
+Gramps ID: I0833
+Gender: female
+Name: Norene Boucher
+Birth: 1970 in Andrews, Andrews, TX, USA - Birth of Boucher, Norene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1550
+Gender: male
+Name: Mathias Santiago
+
+Type: person
+Gramps ID: I0272
+Gender: male
+Name: Charles Doyle Landry
+Birth: 1922-08-06 in Scottsburg, Scott, IN, USA - Birth of Landry, Charles Doyle
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1770
+Gender: male
+Name: Tony Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0656
+Gender: male
+Name: Luther Robinson
+
+Type: person
+Gramps ID: I1261
+Gender: female
+Name: Dorcas Warner
+
+Type: person
+Gramps ID: I0790
+Gender: female
+Name: Crystal Mae Rodgers
+Birth: 1975-12-12 in Santa Rosa-Petaluma, CA, USA - Birth of Rodgers, Crystal Mae
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1017
+Gender: female
+Name: Mary Copeland
+Birth: um 1196 in Hammond, Tangipahoa, LA, USA - Birth of Copeland, Mary
+
+Type: person
+Gramps ID: I1489
+Gender: female
+Name: Elizabeth Douglas
+Birth: 1808-09-20 in Port Angeles, WA, USA - Birth of Douglas, Elizabeth
+
+Type: person
+Gramps ID: I1134
+Gender: female
+Name: Sarah Reed
+Birth in Gadsden, Etowah, AL, USA - Birth of Reed, Sarah
+
+Type: person
+Gramps ID: I1319
+Gender: female
+Name: Maria Margaretha Frazier
+Birth: 1712 - Birth of Frazier, Maria Margaretha
+
+Type: person
+Gramps ID: I1140
+Gender: female
+Name: Pearline Washington
+
+Type: person
+Gramps ID: I1906
+Gender: male
+Name: Travis ĐĐŒĐžŃŃОДĐČ
+Birth: 1767-09-12 - Birth of ĐĐŒĐžŃŃОДĐČ, Travis
+Death in Winchester, VA, USA - Death of ĐĐŒĐžŃŃОДĐČ, Travis
+
+Type: person
+Gramps ID: I1786
+Gender: male
+Name: Martin Boucher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0114
+Gender: male
+Name: Martin Kelly Gosselin
+Birth: 1958-09-30 - Birth of Gosselin, Martin Kelly
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0415
+Gender: male
+Name: Daniel James Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1984-10-26 in Wheeling, WV-OH, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Daniel James Ramos
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1386
+Gender: male
+Name: David Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, David
+
+Type: person
+Gramps ID: I0357
+Gender: male
+Name: Benjamin Harrison Todd
+Birth: 1891-09-22 - Birth of Todd, Benjamin Harrison
+Death: 1968-02-13 in Nashville, TN, USA - Death of Todd, Benjamin Harrison
+Burial in Shreveport, Caddo, LA, USA - Burial of Todd, Benjamin Harrison
+
+Type: person
+Gramps ID: I0734
+Gender: female
+Name: Lydia Harvey
+
+Type: person
+Gramps ID: I1208
+Gender: male
+Name: Cuthbert Diaz
+
+Type: person
+Gramps ID: I0008
+Gender: female
+Name: Elinor Jane Lessard
+Birth: 1931-07-10 in Worthington, MN, USA - Birth of Lessard, Elinor Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0296
+Gender: male
+Name: Douglas Lowell Warner
+Birth: 1978-12-11 in Wheeling, WV-OH, USA - Birth of Warner, Douglas Lowell
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1095
+Gender: male
+Name: Henry Brooks
+
+Type: person
+Gramps ID: I0075
+Gender: male
+Name: Hardy Todd
+Birth: 1678 in Ashtabula, OH, USA - Birth of Todd, Hardy
+Death: 1750 in Ashtabula, OH, USA - Death of Todd, Hardy
+
+Type: person
+Gramps ID: I0680
+Gender: male
+Name: Rev. John Anderson
+Birth: 1685 in Miami, OK, USA - Birth of Anderson, Rev. John
+Death: 1774-11-27 in Pittsburg, Crawford, KS, USA - Death of Anderson, Rev. John
+
+Type: person
+Gramps ID: I1097
+Gender: female
+Name: Isabella Brooks
+
+Type: person
+Gramps ID: I1916
+Gender: female
+Name: Mary Polly Diaz
+Birth in York, PA, USA - Birth of Diaz, Mary Polly
+Death: 1822 - Death of Diaz, Mary Polly
+
+Type: person
+Gramps ID: I1658
+Gender: male
+Name: Everett Waters
+Birth in Memphis, TN, USA - Birth of Waters, Everett
+
+Type: person
+Gramps ID: I1797
+Gender: male
+Name: Canice Oliver McCoy
+Birth: 1975-07-18 in Tallulah, Madison, LA, USA - Birth of McCoy, Canice Oliver
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0855
+Gender: male
+Name: Russell Eugene Welch
+Birth: 1949-04-08 in Midland, MI, USA - Birth of Welch, Russell Eugene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0901
+Gender: male
+Name: Todd Christopher Page
+Birth: 1992-01-10 in Santa Rosa-Petaluma, CA, USA - Birth of Page, Todd Christopher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1854
+Gender: male
+Name: Edward Reed
+
+Type: person
+Gramps ID: I0240
+Gender: male
+Name: Melvin Glen Russell
+Birth: 1936-09-23 in Ottawa, La Salle, IL, USA - Birth of Russell, Melvin Glen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1397
+Gender: male
+Name: Thomas Lewandowski
+
+Type: person
+Gramps ID: I1665
+Gender: male
+Name: Homer Webb
+
+Type: person
+Gramps ID: I0762
+Gender: female
+Name: Anna Barbara Bishop
+Birth: 1664-09-29 in Houston, Harris, TX, USA - Birth of Bishop, Anna Barbara
+Death: nach 1717 in Waterloo-Cedar Falls, IA, USA - Death of Bishop, Anna Barbara
+
+Type: person
+Gramps ID: I1300
+Gender: female
+Name: Eva Farmer
+Birth: 1796 - Birth of Farmer, Eva
+Death: 1883 - Death of Farmer, Eva
+
+Type: person
+Gramps ID: I0135
+Gender: male
+Name: Eugene Stanley, Jr. Garner
+Birth in Vernon, Wilbarger, TX, USA - Birth of Garner, Eugene Stanley, Jr.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1462
+Gender: female
+Name: Nancy Lynch
+
+Type: person
+Gramps ID: I0587
+Gender: female
+Name: Margaret Agnes"Maudy" Kristensen
+Birth: 1894-12-02 in Ottawa, La Salle, IL, USA - Birth of Kristensen, Margaret Agnes"Maudy"
+Death: 1974-07-21 in Ottawa, La Salle, IL, USA - Death of Kristensen, Margaret Agnes"Maudy"
+Burial: 1974-07-23 in Lexington, NC, USA - Burial of Kristensen, Margaret Agnes"Maudy"
+
+Type: person
+Gramps ID: I1113
+Gender: female
+Name: Phebe Garner
+Birth: 1850 in Orlando, Orange, FL, USA - Birth of Garner, Phebe
+Death: vor 1860 - Death of Garner, Phebe
+
+Type: person
+Gramps ID: I0021
+Gender: male
+Name: Warren W. Warner
+Birth: 1867-01-23 in Durango, La Plata, CO, USA - Birth of Warner, Warren W.
+Death: 1919-03-10 in Kokomo, Howard, IN, USA - Death of Warner, Warren W.
+Burial in Henderson, NC, USA - Burial of Warner, Warren W.
+
+Type: person
+Gramps ID: I0865
+Gender: male
+Name: Jonathan Andrew SĂĄnchez
+Birth: 1991-05-06 in Statesboro, Bulloch, GA, USA - Birth of SĂĄnchez, Jonathan Andrew
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1677
+Gender: female
+Name: Mary Blanco
+
+Type: person
+Gramps ID: I0438
+Gender: female
+Name: Patti Jo Cruz
+Birth: 1959-08-14 - Birth of Cruz, Patti Jo
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0639
+Gender: male
+Name: Arnold WĂłjcik
+Death: 1967-06-25 - Death of WĂłjcik, Arnold
+Burial in Uvalde, Uvalde, TX, USA - Burial of WĂłjcik, Arnold
+
+Type: person
+Gramps ID: I0822
+Gender: female
+Name: Helen Ramirez
+Birth in Del Rio, Val Verde, TX, USA - Birth of Ramirez, Helen
+
+Type: person
+Gramps ID: I0824
+Gender: male
+Name: Kevin Hansen
+Birth: 1979 in Omaha, NE, USA - Birth of Hansen, Kevin
+
+Type: person
+Gramps ID: I0024
+Gender: female
+Name: Margaret Burns
+Birth: 1781-07-22 - Birth of Burns, Margaret
+Death: 1849-01-17 - Death of Burns, Margaret
+
+Type: person
+Gramps ID: I0440
+Gender: female
+Name: Ann Lynn Cruz
+Birth: 1968-11-17 - Birth of Cruz, Ann Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1879
+Gender: female
+Name: Maureen Reed
+
+Type: person
+Gramps ID: I0203
+Gender: female
+Name: Nellie MarĂn
+
+Type: person
+Gramps ID: I1416
+Gender: female
+Name: Mildred Page
+Birth in Racine, WI, USA - Birth of Page, Mildred
+
+Type: person
+Gramps ID: I0709
+Gender: male
+Name: Myles йОŃ
ĐŸĐœĐŸĐČ
+Birth in Hutchinson, Reno, KS, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, Myles
+
+Type: person
+Gramps ID: I0055
+Gender: female
+Name: Mary Cecilia Boucher
+Birth: 1890-02-17 in Worthington, MN, USA - Birth of Boucher, Mary Cecilia
+Death: 1945-06-03 in Worthington, MN, USA - Death of Boucher, Mary Cecilia
+Burial: 1945-06-05 in Worthington, MN, USA - Burial of Boucher, Mary Cecilia
+
+Type: person
+Gramps ID: I2017
+Gender: male
+Name: Gershom Allen
+Birth: um 1685 in Sikeston, MO, USA - Birth of Allen, Gershom
+Death: um 1711 in Topeka, Shawnee, KS, USA - Death of Allen, Gershom
+
+Type: person
+Gramps ID: I0654
+Gender: male
+Name: Clarence Robinson
+Burial in Sterling, Whiteside, IL, USA - Burial of Robinson, Clarence
+
+Type: person
+Gramps ID: I0837
+Gender: female
+Name: Nora Gil
+Birth in Del Rio, Val Verde, TX, USA - Birth of Gil, Nora
+Death in Andrews, Andrews, TX, USA - Death of Gil, Nora
+Burial in Somerset, PA, USA - Burial of Gil, Nora
+
+Type: person
+Gramps ID: I0345
+Gender: male
+Name: Jeffrey Adam Ramos Garza
+Birth: 1987-11-07 in Wheeling, WV-OH, USA - Birth of Garza, Jeffrey Adam Ramos
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1837
+Gender: male
+Name: Đ€Đ”ĐŽĐŸŃĐŸĐČ
+
+Type: person
+Gramps ID: I1566
+Gender: female
+Name: Nelly Larsen
+
+Type: person
+Gramps ID: I1568
+Gender: male
+Name: Joseph Logan
+
+Type: person
+Gramps ID: I0003
+Gender: male
+Name: Carl Thomas Warner
+Birth: 1981-05-11 in Gainesville, Llano, TX, USA - Birth of Warner, Carl Thomas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1145
+Gender: male
+Name: John Kowalski
+Birth: 1560 - Birth of Kowalski, John
+Death: 1630-08-30 in Burlington, Des Moines, IA, USA - Death of Kowalski, John
+
+Type: person
+Gramps ID: I1327
+Gender: female
+Name: Anna Ottilia Beaulieu
+Birth: 1722 - Birth of Beaulieu, Anna Ottilia
+Death: 1793 - Death of Beaulieu, Anna Ottilia
+
+Type: person
+Gramps ID: I2045
+Gender: male
+Name: Waters
+
+Type: person
+Gramps ID: I1148
+Gender: female
+Name: Alice Santos
+Birth in Decatur, Morgan, AL, USA - Birth of Santos, Alice
+
+Type: person
+Gramps ID: I0010
+Gender: male
+Name: Howard Lane Garner
+Birth: 1928-07-09 in LaGrange, GA, USA - Birth of Garner, Howard Lane
+
+Type: person
+Gramps ID: I1099
+Gender: unknown
+Name: William Brooks
+
+Type: person
+Gramps ID: I0417
+Gender: male
+Name: Paul Mcbride
+Birth: 1954-05-22 - Birth of Mcbride, Paul
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0989
+Gender: female
+Name: Sarah Yates
+Birth in Loveland, Larimer, CO, USA - Birth of Yates, Sarah
+Death in Del Rio, Val Verde, TX, USA - Death of Yates, Sarah
+Burial in Del Rio, Val Verde, TX, USA - Burial of Yates, Sarah
+
+Type: person
+Gramps ID: I1336
+Gender: male
+Name: John ĐлаŃĐŸĐČ
+
+Type: person
+Gramps ID: I0419
+Gender: male
+Name: Jeffrey JĂžrgensen
+Birth: 1966-11-24 - Birth of JĂžrgensen, Jeffrey
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0188
+Gender: female
+Name: Susanna Marie Lessard
+Birth: 1896-09-20 in Sanford, NC, USA - Birth of Lessard, Susanna Marie
+Death: 1981-10-16 - Death of Lessard, Susanna Marie
+
+Type: person
+Gramps ID: I2058
+Gender: male
+Name: Aaron B. Andersen
+
+Type: person
+Gramps ID: I0687
+Gender: male
+Name: Thomas Wise
+Birth: 1536-06-19 in Hanford-Corcoran, CA, USA - Birth of Wise, Thomas
+Death: 1606-10-09 in East Stroudsburg, PA, USA - Death of Wise, Thomas
+
+Type: person
+Gramps ID: I1107
+Gender: female
+Name: Cora Ellen Jackson
+
+Type: person
+Gramps ID: I1862
+Gender: female
+Name: Minnie Reed
+Birth in Kingsport, TN, USA - Birth of Reed, Minnie
+
+Type: person
+Gramps ID: I0247
+Gender: male
+Name: Allen éŽæš
+
+Type: person
+Gramps ID: I0479
+Gender: male
+Name: Hugh Sr. James
+Birth: 1705 in Cleveland, OH, USA - Birth of James, Hugh Sr.
+Death: 1785 in Coffeyville, Montgomery, KS, USA - Death of James, Hugh Sr.
+
+Type: person
+Gramps ID: I0748
+Gender: male
+Name: John Christiansen
+Birth: 1662-02-01 in Plainview, Houston, TX, USA - Birth of Christiansen, John
+Death: 1727 in Poplar Bluff, MO, USA - Death of Christiansen, John
+
+Type: person
+Gramps ID: I1459
+Gender: female
+Name: Shirley Welch
+
+Type: person
+Gramps ID: I1525
+Gender: male
+Name: Peter Douglas
+
+Type: person
+Gramps ID: I1302
+Gender: female
+Name: Catharine Farmer
+Birth: 1798 - Birth of Farmer, Catharine
+
+Type: person
+Gramps ID: I1936
+Gender: female
+Name: Ann Reeves
+Death: nach 1901 in Mount Vernon, WA, USA - Death of Reeves, Ann
+
+Type: person
+Gramps ID: I0195
+Gender: female
+Name: Eleanor Maude Page
+Birth: 1883-10-04 in Oskaloosa, Mahaska, IA, USA - Birth of Page, Eleanor Maude
+Death in Clearlake, Lake, CA, USA - Death of Page, Eleanor Maude
+Burial in Oskaloosa, Mahaska, IA, USA - Burial of Page, Eleanor Maude
+
+Type: person
+Gramps ID: I2074
+Gender: male
+Name: Joseph
+
+Type: person
+Gramps ID: I0381
+Gender: female
+Name: Margaret A. Nielsen
+
+Type: person
+Gramps ID: I1812
+Gender: female
+Name: Noreen Reed
+Birth: 1934-07 in Niles, MI, USA - Birth of Reed, Noreen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1000
+Gender: male
+Name: Henry Sanders
+Birth in Redwood City, San Mateo, CA, USA - Birth of Sanders, Henry
+Death: 1658-06-17 - Death of Sanders, Henry
+
+Type: person
+Gramps ID: I1610
+Gender: male
+Name: Thomas Jr. Williams
+
+Type: person
+Gramps ID: I0023
+Gender: male
+Name: Noah Warner
+Birth: 1779-09-24 in Morgan City, St. Mary, LA, USA - Birth of Warner, Noah
+Death: 1844-06-14 in Lake City, Columbia, FL, USA - Death of Warner, Noah
+Burial: 1844 in Kingston, Ulster, NY, USA - Burial of Warner, Noah
+
+Type: person
+Gramps ID: I1612
+Gender: male
+Name: Andrew Jiménez
+Birth: 1792-01-21 - Birth of Jiménez, Andrew
+
+Type: person
+Gramps ID: I0705
+Gender: male
+Name: Hugh Reed
+Birth: 1853-06-13 in Mount Sterling, Montgomery, KY, USA - Birth of Reed, Hugh
+Death: 1917-04-24 in Ottawa, La Salle, IL, USA - Death of Reed, Hugh
+
+Type: person
+Gramps ID: I0262
+Gender: female
+Name: Honora Couture
+Death in Anderson, SC, USA - Death of Couture, Honora
+
+Type: person
+Gramps ID: I0442
+Gender: female
+Name: Lisa Dawn Welch
+Birth: 1962-12-21 - Birth of Welch, Lisa Dawn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1175
+Gender: male
+Name: William ĐĐŒĐžŃŃОДĐČ
+Birth: 1727 in Pueblo, Pueblo, CO, USA - Birth of ĐĐŒĐžŃŃОДĐČ, William
+Death: 1766-05-12 - Death of ĐĐŒĐžŃŃОДĐČ, William
+
+Type: person
+Gramps ID: I1477
+Gender: female
+Name: Mary Wein Greer
+
+Type: person
+Gramps ID: I1616
+Gender: female
+Name: Sarah Jiménez
+Birth: 1797-04-20 - Birth of Jiménez, Sarah
+
+Type: person
+Gramps ID: I1881
+Gender: male
+Name: Thomas Reed
+
+Type: person
+Gramps ID: I2086
+Gender: female
+Name: Lydia M. Moreno
+Birth: 1864-04-15 - Birth of Moreno, Lydia M.
+
+Type: person
+Gramps ID: I1480
+Gender: male
+Name: Arthur Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, Arthur
+
+Type: person
+Gramps ID: I0448
+Gender: female
+Name: Karla Sue Cruz
+Birth: 1972-06-29 - Birth of Cruz, Karla Sue
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1011
+Gender: female
+Name: Beatrix Gray
+Birth: 1050 - Birth of Gray, Beatrix
+Death: 1112 - Death of Gray, Beatrix
+
+Type: person
+Gramps ID: I0450
+Gender: female
+Name: Erin Kathleen West
+Birth: 1985-11-06 in Coos Bay, OR, USA - Birth of West, Erin Kathleen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1827
+Gender: female
+Name: Rose Reed
+
+Type: person
+Gramps ID: I1829
+Gender: female
+Name: Bridget Reed
+
+Type: person
+Gramps ID: I0931
+Gender: male
+Name: Hans(Johannes) Blanco
+Birth: 1680-03-28 in Casper, WY, USA - Birth of Blanco, Hans(Johannes)
+Death in Plattsburgh, Clinton, NY, USA - Death of Blanco, Hans(Johannes)
+
+Type: person
+Gramps ID: I0720
+Gender: female
+Name: Christian Anne Evans
+Birth: 1969-05-26 in Pampa, Gray, TX, USA - Birth of Evans, Christian Anne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0792
+Gender: male
+Name: Remo Lane
+Birth in Barnstable Town, MA, USA - Birth of Lane, Remo
+Death: 1919-01-19 - Death of Lane, Remo
+Burial in Maysville, Mason, KY, USA - Burial of Lane, Remo
+
+Type: person
+Gramps ID: I0881
+Gender: male
+Name: James Myers
+Birth: 1813 in Yuma, Yuma, AZ, USA - Birth of Myers, James
+Death: 1896-06-04 in Staunton-Waynesboro, VA, USA - Death of Myers, James
+Burial: 1896 - Burial of Myers, James
+
+Type: person
+Gramps ID: I1835
+Gender: male
+Name: Patrick Đ€Đ”ĐŽĐŸŃĐŸĐČ
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2102
+Gender: female
+Name: Mary Ann Moreno
+
+Type: person
+Gramps ID: I1377
+Gender: male
+Name: James Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, James
+
+Type: person
+Gramps ID: I1705
+Gender: male
+Name: Phillip D. Ford
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0282
+Gender: male
+Name: Carl Ford
+
+Type: person
+Gramps ID: I0840
+Gender: male
+Name: Fr. Patrick Boucher
+Birth in Summerville, Chattooga, GA, USA - Birth of Boucher, Fr. Patrick
+
+Type: person
+Gramps ID: I1379
+Gender: female
+Name: Belle Neal
+Birth in Palm Coast, Flagler, FL, USA - Birth of Neal, Belle
+Death: 1903 in Newton, Jasper, IA, USA - Death of Neal, Belle
+
+Type: person
+Gramps ID: I1494
+Gender: female
+Name: Ellen Douglas
+Birth: 1830-05-24 in Marshall, MN, USA - Birth of Douglas, Ellen
+
+Type: person
+Gramps ID: I0167
+Gender: female
+Name: Kathryn Louise ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1948-12-23 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Kathryn Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0349
+Gender: male
+Name: Jeremy Quentin Welch
+Birth: 1982-08-09 in Ottawa, La Salle, IL, USA - Birth of Welch, Jeremy Quentin
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1082
+Gender: female
+Name: LeAnn Hayes
+Birth: 1969-06-23 - Birth of Hayes, LeAnn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0564
+Gender: female
+Name: Mary КаЎŃĐžĐœ
+Birth: 1734-09-04 - Birth of КаЎŃĐžĐœ, Mary
+
+Type: person
+Gramps ID: I1084
+Gender: male
+Name: Steve Graham
+
+Type: person
+Gramps ID: I1199
+Gender: male
+Name: Richard Swanson
+Birth in Flagstaff, Coconino, AZ, USA - Birth of Swanson, Richard
+Death in St, Marys, St, Marys, PA, USA - Death of Swanson, Richard
+
+Type: person
+Gramps ID: I1381
+Gender: male
+Name: John Neal
+Birth: 1872-09-11 in Crescent City North, CA, USA - Birth of Neal, John
+Death: 1928-12-26 in Newton, Jasper, IA, USA - Death of Neal, John
+
+Type: person
+Gramps ID: I0353
+Gender: male
+Name: Jesse Elmer Todd
+Birth: 1881-09-10 - Birth of Todd, Jesse Elmer
+Death: 1957-12-12 in Shreveport, Caddo, LA, USA - Death of Todd, Jesse Elmer
+
+Type: person
+Gramps ID: I1973
+Gender: male
+Name: John DeKalb Ball
+
+Type: person
+Gramps ID: I2041
+Gender: male
+Name: James R. Hawkins
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0176
+Gender: male
+Name: Francis William Garner
+Birth: 1945-01-03 - Birth of Garner, Francis William
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0516
+Gender: male
+Name: David Fox
+Birth: 1738 in Bangor, ME, USA - Birth of Fox, David
+Death in Thomasville, Fulton, GA, USA - Death of Fox, David
+Burial in Thomasville, Fulton, GA, USA - Burial of Fox, David
+
+Type: person
+Gramps ID: I1092
+Gender: male
+Name: William Waller Brooks
+Birth: 1727-01-18 in Martinsville, VA, USA - Birth of Brooks, William Waller
+Death: 1773-09-19 in Duluth, MN, USA - Death of Brooks, William Waller
+
+Type: person
+Gramps ID: I0007
+Gender: male
+Name: George Edward Warner
+Birth: 1926-11-01 in Corinth, MS, USA - Birth of Warner, George Edward
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0618
+Gender: male
+Name: Nicholas Glen Russell
+Birth: 1987-04-03 in Ottawa, La Salle, IL, USA - Birth of Russell, Nicholas Glen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1032
+Gender: female
+Name: Jane Joane Gomez
+Birth: 1499 - Birth of Gomez, Jane Joane
+Death: 1573 - Death of Gomez, Jane Joane
+
+Type: person
+Gramps ID: I0073
+Gender: male
+Name: Hodges Todd
+Death: 1699 in Ashtabula, OH, USA - Death of Todd, Hodges
+
+Type: person
+Gramps ID: I0519
+Gender: male
+Name: Robert Palmer
+
+Type: person
+Gramps ID: I0524
+Gender: male
+Name: Elder Thomas Thomas
+Birth: um 1580 - Birth of Thomas, Elder Thomas
+Death: 1632 in Hudson, Columbia, NY, USA - Death of Thomas, Elder Thomas
+
+Type: person
+Gramps ID: I1987
+Gender: male
+Name: John Franklin Nadeau
+Birth in Fort Morgan, Morgan, CO, USA - Birth of Nadeau, John Franklin
+
+Type: person
+Gramps ID: I0684
+Gender: female
+Name: Susannah Mason
+
+Type: person
+Gramps ID: I1103
+Gender: male
+Name: Guillaume de Brooks
+Birth: 1642 - Birth of Brooks, Guillaume de
+
+Type: person
+Gramps ID: I1800
+Gender: female
+Name: Orla Sarah McCoy
+Birth: 1984-04-12 in Tallulah, Madison, LA, USA - Birth of McCoy, Orla Sarah
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1989
+Gender: male
+Name: Alvah F. Munoz
+
+Type: person
+Gramps ID: I1452
+Gender: female
+Name: Belle Irene Schneider
+Birth: 1885-02-14 - Birth of Schneider, Belle Irene
+Death: 1960-10-11 - Death of Schneider, Belle Irene
+
+Type: person
+Gramps ID: I0744
+Gender: male
+Name: Thomas Anderson
+Birth: um 1628 in Lancaster, SC, USA - Birth of Anderson, Thomas
+Death: 1687 in Fort Dodge, Webster, IA, USA - Death of Anderson, Thomas
+
+Type: person
+Gramps ID: I1296
+Gender: male
+Name: Peter Simon Farmer
+Birth: 1790 - Birth of Farmer, Peter Simon
+Death: 1845 - Death of Farmer, Peter Simon
+
+Type: person
+Gramps ID: I1804
+Gender: female
+Name: Mary Gibbs
+Death: 1936-01-29 in Worcester, Worcester, MA, USA - Death of Gibbs, Mary
+
+Type: person
+Gramps ID: I0245
+Gender: female
+Name: Alice MarĂn
+
+Type: person
+Gramps ID: I0376
+Gender: male
+Name: Thomas W. Boucher
+Birth: 1888-12-06 in Ottawa, La Salle, IL, USA - Birth of Boucher, Thomas W.
+Death: 1942-04-02 - Death of Boucher, Thomas W.
+
+Type: person
+Gramps ID: I2001
+Gender: female
+Name: Sarah ĐĐŸĐČĐžĐșĐŸĐČ
+Birth: 1660 in Beeville, Bee, TX, USA - Birth of ĐĐŸĐČĐžĐșĐŸĐČ, Sarah
+
+Type: person
+Gramps ID: I1350
+Gender: male
+Name: Richard? Cornelius Jiménez
+Birth in Marquette, MI, USA - Birth of Jiménez, Richard? Cornelius
+
+Type: person
+Gramps ID: I2003
+Gender: male
+Name: ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+
+Type: person
+Gramps ID: I0318
+Gender: male
+Name: Martin B. Warner
+Birth: 1985-07-22 in Bremerton, WA, USA - Birth of Warner, Martin B.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1872
+Gender: male
+Name: Sean Sandoval
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0320
+Gender: male
+Name: James A. Poirier
+
+Type: person
+Gramps ID: I0436
+Gender: male
+Name: John C. Peters
+Birth: 1946-05-10 - Birth of Peters, John C.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0917
+Gender: male
+Name: Peter Blanco
+
+Type: person
+Gramps ID: I1472
+Gender: male
+Name: William Douglas
+Birth in Cookeville, TN, USA - Birth of Douglas, William
+Death in Cookeville, TN, USA - Death of Douglas, William
+
+Type: person
+Gramps ID: I0093
+Gender: male
+Name: Alfred Franklin(Frank) MarĂn
+Birth in Paducah, McCracken, KY-IL, USA - Birth of MarĂn, Alfred Franklin(Frank)
+Death: 1864-12-25 in Worthington, MN, USA - Death of MarĂn, Alfred Franklin(Frank)
+Burial: 1860-12-27 in Douglas, Coffee, GA, USA - Burial of MarĂn, Alfred Franklin(Frank)
+
+Type: person
+Gramps ID: I0387
+Gender: female
+Name: Honora Boucher
+
+Type: person
+Gramps ID: I0919
+Gender: male
+Name: John Sr. Blanco
+Birth: um 1779 in Cambridge, MD, USA - Birth of Blanco, John Sr.
+Death in Lincoln, Logan, IL, USA - Death of Blanco, John Sr.
+Burial in Burlington, NC, USA - Burial of Blanco, John Sr.
+
+Type: person
+Gramps ID: I1685
+Gender: female
+Name: Anna Maria Blanco
+
+Type: person
+Gramps ID: I1761
+Gender: female
+Name: woman Boucher
+
+Type: person
+Gramps ID: I0393
+Gender: male
+Name: William Boucher
+Birth: 1870-09-10 - Birth of Boucher, William
+Death: 1943-06-26 - Death of Boucher, William
+
+Type: person
+Gramps ID: I1763
+Gender: female
+Name: Kate Iglesias
+
+Type: person
+Gramps ID: I0446
+Gender: female
+Name: Susan Marguerite Cruz
+Birth: 1976-08-07 - Birth of Cruz, Susan Marguerite
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0207
+Gender: female
+Name: Dorothy Eleanor Thornton
+Birth: 1913-02-20 in Ottawa, La Salle, IL, USA - Birth of Thornton, Dorothy Eleanor
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1695
+Gender: male
+Name: James Webb
+Birth in Reno-Sparks, NV, USA - Birth of Webb, James
+
+Type: person
+Gramps ID: I0155
+Gender: female
+Name: Margaret Ruth Warner
+Birth: 1949-07-13 in Wheeling, WV-OH, USA - Birth of Warner, Margaret Ruth
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1128
+Gender: female
+Name: Antoinette Garner
+Birth: 1870-06-13 in Starkville, MS, USA - Birth of Garner, Antoinette
+Death: vor 1880 - Death of Garner, Antoinette
+
+Type: person
+Gramps ID: I1368
+Gender: female
+Name: Sarah M. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Sarah M.
+
+Type: person
+Gramps ID: I1768
+Gender: male
+Name: Shane Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0788
+Gender: male
+Name: John Rodgers
+
+Type: person
+Gramps ID: I1372
+Gender: male
+Name: Lincoln F. Jiménez
+Birth in Orlando, Orange, FL, USA - Birth of Jiménez, Lincoln F.
+
+Type: person
+Gramps ID: I1965
+Gender: female
+Name: Ida B. Ball
+Birth: 1876-03-17 in Columbus, OH, USA - Birth of Ball, Ida B.
+
+Type: person
+Gramps ID: I0512
+Gender: male
+Name: Andrew Warner
+Birth: 1740-08-15 in Morgan City, St. Mary, LA, USA - Birth of Warner, Andrew
+Death: 1827-10-14 - Death of Warner, Andrew
+
+Type: person
+Gramps ID: I0567
+Gender: female
+Name: Ann Maxwell
+
+Type: person
+Gramps ID: I0227
+Gender: female
+Name: Joyce Marie Cruz
+Birth: 1949-03-07 - Birth of Cruz, Joyce Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1647
+Gender: female
+Name: Kate Teel Marshall
+
+Type: person
+Gramps ID: I1910
+Gender: male
+Name: Peter Wood
+
+Type: person
+Gramps ID: I2043
+Gender: male
+Name: Becker
+
+Type: person
+Gramps ID: I0676
+Gender: female
+Name: Violet Louise ĐŃŃŃ
Đ°ĐœĐŸĐČ
+Birth: 1915-09-28 in Duncan, OK, USA - Birth of ĐŃŃŃ
Đ°ĐœĐŸĐČ, Violet Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0570
+Gender: female
+Name: Sarah Clark
+Birth: 1785-03-31 - Birth of Clark, Sarah
+
+Type: person
+Gramps ID: I0298
+Gender: male
+Name: Kevin Wayne French
+Birth: 1973-07-03 in Taos, NM, USA - Birth of French, Kevin Wayne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0360
+Gender: female
+Name: Mary Ann Farmer
+Birth: 1842-08-09 in Thomaston, Upson, GA, USA - Birth of Farmer, Mary Ann
+
+Type: person
+Gramps ID: I1512
+Gender: male
+Name: Thomas Kelley
+
+Type: person
+Gramps ID: I1726
+Gender: female
+Name: Jane ĐĐ°Đ·Đ°ĐșĐŸĐČ
+Birth: 1768-01-04 - Birth of ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+Death: 1828-12-21 in Gallup, NM, USA - Death of ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+
+Type: person
+Gramps ID: I1155
+Gender: male
+Name: Robert Guerrero
+Birth: 1430 - Birth of Guerrero, Robert
+
+Type: person
+Gramps ID: I0012
+Gender: male
+Name: Arthur Maurice Warner
+Birth: 1954-01-24 in Ottawa, La Salle, IL, USA - Birth of Warner, Arthur Maurice
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0741
+Gender: female
+Name: ??? Sharp
+Birth in Watertown-Fort Drum, NY, USA - Birth of Sharp, ???
+Death: 9 in Kahului, HI, USA - Death of Sharp, ???
+Burial in Wichita Falls, Wichita, TX, USA - Burial of Sharp, ???
+
+Type: person
+Gramps ID: I0808
+Gender: male
+Name: Flannan Boucher
+Birth: 1976 in Kerrville, Kerr, TX, USA - Birth of Boucher, Flannan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0990
+Gender: male
+Name: Andrew Webb
+Birth: 1788 in Loveland, Larimer, CO, USA - Birth of Webb, Andrew
+Death: vor 1850 in Rolla, MO, USA - Death of Webb, Andrew
+Burial in Enid, OK, USA - Burial of Webb, Andrew
+
+Type: person
+Gramps ID: I1662
+Gender: male
+Name: Brandon Kelly Page
+Birth: 1982-11-23 in Butte, MT, USA - Birth of Page, Brandon Kelly
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1730
+Gender: male
+Name: Richard Rodriquez
+Birth: 1778-07-31 in La Follette, TN, USA - Birth of Rodriquez, Richard
+
+Type: person
+Gramps ID: I0421
+Gender: female
+Name: Mary E. DomĂnguez
+Birth: 1839-03-15 in Mountain Home, Elmore, ID, USA - Birth of DomĂnguez, Mary E.
+Death: 1893-09-30 in Elkhart, Elkhart, IN, USA - Death of DomĂnguez, Mary E.
+Burial: 1893-10-01 in Pendleton-Hermiston, OR, USA - Burial of DomĂnguez, Mary E.
+
+Type: person
+Gramps ID: I0242
+Gender: male
+Name: Willis H. MarĂn
+Birth: 1822-11-11 in New Castle, PA, USA - Birth of MarĂn, Willis H.
+Death: 1894-01-02 in Ottawa, La Salle, IL, USA - Death of MarĂn, Willis H.
+Burial: 1894-01-03 in Ottawa, La Salle, IL, USA - Burial of MarĂn, Willis H.
+
+Type: person
+Gramps ID: I0858
+Gender: female
+Name: Annabelle Elaine Welch
+Birth: 1951-03-30 in Midland, MI, USA - Birth of Welch, Annabelle Elaine
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1294
+Gender: female
+Name: Anna Marie Farmer
+Birth: 1786 - Birth of Farmer, Anna Marie
+
+Type: person
+Gramps ID: I0132
+Gender: female
+Name: Dorothy Louise Lessard
+Birth: 1926-09-29 in Ottawa, La Salle, IL, USA - Birth of Lessard, Dorothy Louise
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0311
+Gender: male
+Name: Daniel Mortensen
+Birth: 1951-11-21 in Cullman, Cullman, AL, USA - Birth of Mortensen, Daniel
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0019
+Gender: male
+Name: Thomas James Garner
+Birth: 1965-12-10 in Worthington, MN, USA - Birth of Garner, Thomas James
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1671
+Gender: female
+Name: Elizabeth Marium Quinn
+Birth: 1867-02-24 in Reno-Sparks, NV, USA - Birth of Quinn, Elizabeth Marium
+Death in Reno-Sparks, NV, USA - Death of Quinn, Elizabeth Marium
+
+Type: person
+Gramps ID: I0864
+Gender: female
+Name: Roxanne Marie SĂĄnchez
+Birth: 1988-09-12 in Statesboro, Bulloch, GA, USA - Birth of SĂĄnchez, Roxanne Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1404
+Gender: female
+Name: Minnie Jankowski
+Birth: 1892-05-24 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Minnie
+Death: 1984-01-08 in Palm Coast, Flagler, FL, USA - Death of Jankowski, Minnie
+
+Type: person
+Gramps ID: I0432
+Gender: male
+Name: Paul Allen Welch
+Birth: 1940-09-30 - Birth of Welch, Paul Allen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0962
+Gender: male
+Name: Leonard? Payne
+Birth: vor 1720 in Duluth, MN, USA - Birth of Payne, Leonard?
+Death: nach 1757 in Duluth, MN, USA - Death of Payne, Leonard?
+Burial in Duluth, MN, USA - Burial of Payne, Leonard?
+
+Type: person
+Gramps ID: I1306
+Gender: male
+Name: Johann Adam Beaulieu
+Birth: 1738 - Birth of Beaulieu, Johann Adam
+
+Type: person
+Gramps ID: I1747
+Gender: male
+Name: James Bush
+Birth: 1846 - Birth of Bush, James
+
+Type: person
+Gramps ID: I1939
+Gender: male
+Name: J. Desjardins
+
+Type: person
+Gramps ID: I0434
+Gender: female
+Name: Barbara Ann Nunez
+Birth: 1948-09-12 - Birth of Nunez, Barbara Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0255
+Gender: female
+Name: Theresa A. Landry
+Birth: 1886-11-26 in Ottawa, La Salle, IL, USA - Birth of Landry, Theresa A.
+
+Type: person
+Gramps ID: I0383
+Gender: female
+Name: Ella Boucher
+
+Type: person
+Gramps ID: I1682
+Gender: male
+Name: John Johansen
+Birth: 1750-05-04 in Anniston, Calhoun, AL, USA - Birth of Johansen, John
+Death: 1835 in Newport, TN, USA - Death of Johansen, John
+
+Type: person
+Gramps ID: I1171
+Gender: male
+Name: John Reynolds
+Birth: um 1566 in Las Vegas, NM, USA - Birth of Reynolds, John
+
+Type: person
+Gramps ID: I1539
+Gender: male
+Name: John James
+Birth: 1741 - Birth of James, John
+
+Type: person
+Gramps ID: I1245
+Gender: male
+Name: George Warner
+
+Type: person
+Gramps ID: I1358
+Gender: female
+Name: Jennie LĂ©vesque
+Birth: 1890-08 in Orlando, Orange, FL, USA - Birth of LĂ©vesque, Jennie
+
+Type: person
+Gramps ID: I1542
+Gender: male
+Name: Hugh Jr. James
+Birth: 1768 in La Follette, TN, USA - Birth of James, Hugh Jr.
+Death: 1768 in Waterloo-Cedar Falls, IA, USA - Death of James, Hugh Jr.
+
+Type: person
+Gramps ID: I0202
+Gender: female
+Name: Lilla Estella MarĂn
+Birth: 1883-02-26 in Ottawa, La Salle, IL, USA - Birth of MarĂn, Lilla Estella
+Death: 1961-02-25 in Midland, MI, USA - Death of MarĂn, Lilla Estella
+
+Type: person
+Gramps ID: I0327
+Gender: female
+Name: Cindy Lynn Warner
+Birth: 1981-04-12 in Altoona, PA, USA - Birth of Warner, Cindy Lynn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0025
+Gender: male
+Name: David Fox
+Birth: 1798-07-22 in Warren-Farmington Hills-Troy, MI, USA - Birth of Fox, David
+Death: 1868-07-31 in Arlington, VA, USA - Death of Fox, David
+Burial: 1868-08-02 in Fort Leonard Wood, MO, USA - Burial of Fox, David
+
+Type: person
+Gramps ID: I1250
+Gender: female
+Name: Eliza Frances Warner
+
+Type: person
+Gramps ID: I1689
+Gender: female
+Name: Dot Serrano
+Birth in Reno-Sparks, NV, USA - Birth of Serrano, Dot
+
+Type: person
+Gramps ID: I1766
+Gender: male
+Name: Joe St-Pierre
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1076
+Gender: female
+Name: Sarah Holloway
+Birth: 1795-09-10 in Bishop, Inyo, CA, USA - Birth of Holloway, Sarah
+Death in Del Rio, Val Verde, TX, USA - Death of Holloway, Sarah
+
+Type: person
+Gramps ID: I1424
+Gender: male
+Name: Thomas Cross
+Birth in Detroit, MI, USA - Birth of Cross, Thomas
+
+Type: person
+Gramps ID: I1892
+Gender: male
+Name: James Payne
+Birth in Steubenville, OH, USA - Birth of Payne, James
+
+Type: person
+Gramps ID: I2023
+Gender: male
+Name: ĐĐŸŃĐžŃĐŸĐČ
+
+Type: person
+Gramps ID: I1131
+Gender: male
+Name: Don Wheeler
+
+Type: person
+Gramps ID: I1556
+Gender: female
+Name: Patsy Alvarado
+
+Type: person
+Gramps ID: I0406
+Gender: female
+Name: Sarah (Sally) Floyd
+Death in Olean, Cattaraugus, NY, USA - Death of Floyd, Sarah (Sally)
+Burial in Ottawa, La Salle, IL, USA - Burial of Floyd, Sarah (Sally)
+
+Type: person
+Gramps ID: I0973
+Gender: female
+Name: Phoebe Daniels
+Birth in Bogalusa, Washington, LA, USA - Birth of Daniels, Phoebe
+
+Type: person
+Gramps ID: I1188
+Gender: female
+Name: Maria Simmons
+Birth: um 1626 in Akron, OH, USA - Birth of Simmons, Maria
+
+Type: person
+Gramps ID: I1774
+Gender: male
+Name: Paul Caldwell
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0723
+Gender: male
+Name: Sir John Piotrowski
+Birth in Hilo, HI, USA - Birth of Piotrowski, Sir John
+Death in Hilo, HI, USA - Death of Piotrowski, Sir John
+
+Type: person
+Gramps ID: I1137
+Gender: female
+Name: Mary äŒè€
+Death: 1941-02-16 - Death of äŒè€, Mary
+
+Type: person
+Gramps ID: I1710
+Gender: male
+Name: John Rodriquez
+Death: 1849-12-25 in Huntsville, Walker, TX, USA - Death of Rodriquez, John
+
+Type: person
+Gramps ID: I0169
+Gender: male
+Name: Darrell Edwin ĐĐ°ĐœĐžĐ»ĐŸĐČ
+Birth: 1953-09-11 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Darrell Edwin
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0669
+Gender: female
+Name: Kathryn Ladon Bryant
+
+Type: person
+Gramps ID: I1784
+Gender: female
+Name: Michelle Boucher
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0728
+Gender: male
+Name: John Sr. Parent
+
+Type: person
+Gramps ID: I0799
+Gender: male
+Name: John Henry
+
+Type: person
+Gramps ID: I0943
+Gender: female
+Name: Marie SuĂĄrez
+Birth: 1656-05-21 - Birth of SuĂĄrez, Marie
+Death: 1731-01-05 - Death of SuĂĄrez, Marie
+
+Type: person
+Gramps ID: I0290
+Gender: female
+Name: Geraldine Ann Simpson
+Birth: 1945-12-17 in Pahrump, NV, USA - Birth of Simpson, Geraldine Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1202
+Gender: female
+Name: Fay Hoffman
+
+Type: person
+Gramps ID: I0847
+Gender: male
+Name: Sir Francis Warner
+Birth: 1543 in Tucson, Pima, AZ, USA - Birth of Warner, Sir Francis
+Death: 1596-01-28 in Lexington Park, MD, USA - Death of Warner, Sir Francis
+Burial: 1596-01-28 in Lexington Park, MD, USA - Burial of Warner, Sir Francis
+
+Type: person
+Gramps ID: I1842
+Gender: male
+Name: Mary Dawson
+
+Type: person
+Gramps ID: I1791
+Gender: male
+Name: Thomas Michael McCoy
+Birth: 1940-07-06 in Reading, PA, USA - Birth of McCoy, Thomas Michael
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0116
+Gender: male
+Name: Joel Thomas Gosselin
+Birth: 1985-10-03 in Palm Bay, Brevard, FL, USA - Birth of Gosselin, Joel Thomas
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0754
+Gender: male
+Name: Jeffrey Alvarado
+
+Type: person
+Gramps ID: I1286
+Gender: male
+Name: new Thomsen
+
+Type: person
+Gramps ID: I1391
+Gender: male
+Name: Robert Jankowski
+Birth: 1872-08-27 in Palm Coast, Flagler, FL, USA - Birth of Jankowski, Robert
+Death: 1943-01-02 in Troy, Pike, AL, USA - Death of Jankowski, Robert
+Burial: 1943-01-04 in Washington, Daviess, IN, USA - Burial of Jankowski, Robert
+
+Type: person
+Gramps ID: I0806
+Gender: male
+Name: William Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, William
+Death in Andrews, Andrews, TX, USA - Death of Boucher, William
+Burial in Somerset, PA, USA - Burial of Boucher, William
+
+Type: person
+Gramps ID: I0301
+Gender: male
+Name: Marc W. Haynes
+Birth: 1950-01-29 in San Francisco, San Francisco, CA, USA - Birth of Haynes, Marc W.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2057
+Gender: male
+Name: Samuel Andersen
+Birth in Marion, Edwards, IL, USA - Birth of Andersen, Samuel
+Death: 1858-02 in McPherson, McPherson, KS, USA - Death of Andersen, Samuel
+
+Type: person
+Gramps ID: I0742
+Gender: male
+Name: John Jr. Piotrowski
+Death: 1677 - Death of Piotrowski, John Jr.
+
+Type: person
+Gramps ID: I1222
+Gender: female
+Name: Sallie Webb
+Birth in Niles, MI, USA - Birth of Webb, Sallie
+
+Type: person
+Gramps ID: I1925
+Gender: male
+Name: Coleman
+
+Type: person
+Gramps ID: I0306
+Gender: male
+Name: Michael David Ward
+Birth: 1978-08-24 in Allentown, PA, USA - Birth of Ward, Michael David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0422
+Gender: female
+Name: Marilyn Joan Rasmussen
+Birth: 1944-09-11 in Medford, OR, USA - Birth of Rasmussen, Marilyn Joan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0761
+Gender: male
+Name: Zariakius Cyriacus æè€
+Birth: um 1675 in Canton, OH, USA - Birth of æè€, Zariakius Cyriacus
+Death: nach 1748-07-01 in Auburn, Lee, AL, USA - Death of æè€, Zariakius Cyriacus
+
+Type: person
+Gramps ID: I0811
+Gender: male
+Name: William Boucher
+Birth in Andrews, Andrews, TX, USA - Birth of Boucher, William
+Death in Summerville, Chattooga, GA, USA - Death of Boucher, William
+Burial in Marysville, Yuba, CA, USA - Burial of Boucher, William
+
+Type: person
+Gramps ID: I0243
+Gender: male
+Name: Noah, Jr. MarĂn
+
+Type: person
+Gramps ID: I0424
+Gender: female
+Name: Jill Suzanne Cruz
+Birth: 1973-11-19 in Ottawa, La Salle, IL, USA - Birth of Cruz, Jill Suzanne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0812
+Gender: male
+Name: William Boucher
+Birth: 1851-02-07 in Summerville, Chattooga, GA, USA - Birth of Boucher, William
+Death: 1952-08-02 in Summerville, Chattooga, GA, USA - Death of Boucher, William
+Burial: 1952-08-03 in Marysville, Yuba, CA, USA - Burial of Boucher, William
+
+Type: person
+Gramps ID: I0530
+Gender: male
+Name: Samuel Christiansen
+Birth: 1668 in Plainview, Houston, TX, USA - Birth of Christiansen, Samuel
+Death: 1754-06-25 in Poplar Bluff, MO, USA - Death of Christiansen, Samuel
+
+Type: person
+Gramps ID: I0691
+Gender: female
+Name: Hannah Knight
+
+Type: person
+Gramps ID: I1400
+Gender: male
+Name: Wilford Owens
+
+Type: person
+Gramps ID: I1739
+Gender: female
+Name: Mary Josephine Boucher
+Birth: 1885 in Summerville, Chattooga, GA, USA - Birth of Boucher, Mary Josephine
+
+Type: person
+Gramps ID: I0908
+Gender: male
+Name: Thomas WoĆșniak
+
+Type: person
+Gramps ID: I1051
+Gender: female
+Name: Sharon Gibbs
+
+Type: person
+Gramps ID: I2067
+Gender: unknown
+Name: Porter
+
+Type: person
+Gramps ID: I0910
+Gender: male
+Name: Loren Collins
+
+Type: person
+Gramps ID: I0482
+Gender: female
+Name: Molly Marie JĂžrgensen
+Birth: 1990-07-27 in Palm Bay, Brevard, FL, USA - Birth of JĂžrgensen, Molly Marie
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1601
+Gender: female
+Name: Mary Benson
+
+Type: person
+Gramps ID: I0998
+Gender: male
+Name: William J. Boucher
+Birth: 1971 in Hutchinson, Reno, KS, USA - Birth of Boucher, William J.
+
+Type: person
+Gramps ID: I0540
+Gender: male
+Name: Joseph Christiansen
+Birth: 1703 in Poplar Bluff, MO, USA - Birth of Christiansen, Joseph
+Death in Chillicothe, OH, USA - Death of Christiansen, Joseph
+
+Type: person
+Gramps ID: I1311
+Gender: female
+Name: Anna Maria Beaulieu
+Birth: 1749 - Birth of Beaulieu, Anna Maria
+Death: 1750 - Death of Beaulieu, Anna Maria
+
+Type: person
+Gramps ID: I0543
+Gender: female
+Name: Mary Mitchell
+Birth: 1740-02-23 - Birth of Mitchell, Mary
+Death: 1824-12-28 - Death of Mitchell, Mary
+
+Type: person
+Gramps ID: I1819
+Gender: female
+Name: Clare Duncan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0827
+Gender: female
+Name: Laura Alonso
+Birth: 1989 in Erie, PA, USA - Birth of Alonso, Laura
+
+Type: person
+Gramps ID: I0921
+Gender: female
+Name: Mary"Polly" Douglas
+Birth: 1785-04-27 in Lewistown, PA, USA - Birth of Douglas, Mary"Polly"
+Death: 1842-08-30 in Tuskegee, Macon, AL, USA - Death of Douglas, Mary"Polly"
+Burial: 1842-09-01 in Idaho Falls, Bonneville, ID, USA - Burial of Douglas, Mary"Polly"
+
+Type: person
+Gramps ID: I1122
+Gender: male
+Name: Stephen Jacob Ford
+
+Type: person
+Gramps ID: I1821
+Gender: female
+Name: Maria Gibbs
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1179
+Gender: female
+Name: Mary ĐĐŒĐžŃŃОДĐČ
+Birth: um 1731 - Birth of ĐĐŒĐžŃŃОДĐČ, Mary
+
+Type: person
+Gramps ID: I1255
+Gender: male
+Name: Edward Randolph Warner
+
+Type: person
+Gramps ID: I1482
+Gender: female
+Name: Marsha Alvarado
+Birth in Florence, SC, USA - Birth of Alvarado, Marsha
+Death in Cookeville, TN, USA - Death of Alvarado, Marsha
+
+Type: person
+Gramps ID: I2019
+Gender: female
+Name: Rosina M. Gibbs
+
+Type: person
+Gramps ID: I0400
+Gender: female
+Name: Margaret Reeves
+Birth: 1892-05-25 - Birth of Reeves, Margaret
+Death: 1938-03-30 - Death of Reeves, Margaret
+
+Type: person
+Gramps ID: I0970
+Gender: female
+Name: Frances Diaz
+Birth: 1761-08-07 in Columbia, MO, USA - Birth of Diaz, Frances
+Death: 1851-10-06 in Jackson, MI, USA - Death of Diaz, Frances
+Burial: 1851-10-08 in Jackson, MI, USA - Burial of Diaz, Frances
+
+Type: person
+Gramps ID: I1483
+Gender: female
+Name: Pamela James
+
+Type: person
+Gramps ID: I0971
+Gender: female
+Name: Maggie Leigh JĂžrgensen
+Birth: 1993-08-20 in Palm Bay, Brevard, FL, USA - Birth of JĂžrgensen, Maggie Leigh
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1627
+Gender: female
+Name: Florence Moss
+Birth in Cambridge, Middlesex, MA, USA - Birth of Moss, Florence
+
+Type: person
+Gramps ID: I1629
+Gender: female
+Name: Margaret Page
+Birth in Alpena, MI, USA - Birth of Page, Margaret
+
+Type: person
+Gramps ID: I1772
+Gender: male
+Name: Aidinn Brady
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1264
+Gender: male
+Name: Randolph Warner
+
+Type: person
+Gramps ID: I1558
+Gender: male
+Name: Herod ĐŃĐșĐŸĐČ
+
+Type: person
+Gramps ID: I1631
+Gender: male
+Name: John Page
+Birth in Boone, NC, USA - Birth of Page, John
+
+Type: person
+Gramps ID: I1961
+Gender: male
+Name: Robert Lee Ball
+Birth: 1871-10-14 in Boise City, ID, USA - Birth of Ball, Robert Lee
+
+Type: person
+Gramps ID: I1560
+Gender: male
+Name: Philip Taylor
+
+Type: person
+Gramps ID: I1899
+Gender: male
+Name: George ĐĐŒĐžŃŃОДĐČ
+Birth in Cabo Rojo, PR, USA - Birth of ĐĐŒĐžŃŃОДĐČ, George
+Death in Union City, TN, USA - Death of ĐĐŒĐžŃŃОДĐČ, George
+
+Type: person
+Gramps ID: I2030
+Gender: male
+Name: Wesley G. Medina
+
+Type: person
+Gramps ID: I1269
+Gender: female
+Name: Sarah Maria Warner
+
+Type: person
+Gramps ID: I1782
+Gender: male
+Name: Paul Hart
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1904
+Gender: female
+Name: Nancy Ann ĐĐŒĐžŃŃОДĐČ
+
+Type: person
+Gramps ID: I0888
+Gender: female
+Name: ??? Castro
+Birth in Davenport, Scott, IA, USA - Birth of Castro, ???
+
+Type: person
+Gramps ID: I1839
+Gender: female
+Name: Hannah Reed
+Birth: um 1991 in Coshocton, OH, USA - Birth of Reed, Hannah
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1144
+Gender: female
+Name: Hannah Kowalski
+Birth: 1590 in Burlington, Des Moines, IA, USA - Birth of Kowalski, Hannah
+Death in Allegan, MI, USA - Death of Kowalski, Hannah
+
+Type: person
+Gramps ID: I1840
+Gender: female
+Name: Ann McCoy
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1717
+Gender: female
+Name: Barbara Ann Rodriquez
+Birth: 1820-02-28 in MayagĂŒez, PR, USA - Birth of Rodriquez, Barbara Ann
+Death: 1902-07-20 in Juneau, AK, USA - Death of Rodriquez, Barbara Ann
+
+Type: person
+Gramps ID: I0178
+Gender: male
+Name: Michael Stanley Garner
+Birth: 1948-06-12 in Ottawa, La Salle, IL, USA - Birth of Garner, Michael Stanley
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1389
+Gender: female
+Name: Margaret Page
+Birth: 1851-02-10 in Muncie, Delaware, IN, USA - Birth of Page, Margaret
+Death: 1925-11-22 in Newton, Jasper, IA, USA - Death of Page, Margaret
+Burial: 1925-11-24 in Point Pleasant, WV, USA - Burial of Page, Margaret
+
+Type: person
+Gramps ID: I1576
+Gender: male
+Name: Willard Lawson
+
+Type: person
+Gramps ID: I0118
+Gender: male
+Name: Lawrence Paul Hale
+Birth: 1950-10-30 in Ottawa, La Salle, IL, USA - Birth of Hale, Lawrence Paul
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1034
+Gender: female
+Name: Elizabeth Ryan
+Birth: 1508 - Birth of Ryan, Elizabeth
+
+Type: person
+Gramps ID: I1335
+Gender: female
+Name: Alecia "Allie" Clare Garner
+Birth: 1997-12-26 in Fergus Falls, MN, USA - Birth of Garner, Alecia "Allie" Clare
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1918
+Gender: female
+Name: Joane Swanson
+
+Type: person
+Gramps ID: I0991
+Gender: female
+Name: Margaret Margarite? Webb
+Birth: 1800 in Loveland, Larimer, CO, USA - Birth of Webb, Margaret Margarite?
+Death: nach 1860 in Rolla, MO, USA - Death of Webb, Margaret Margarite?
+Burial: nach 1860 in Enid, OK, USA - Burial of Webb, Margaret Margarite?
+
+Type: person
+Gramps ID: I1105
+Gender: male
+Name: Lewis Garner
+Birth: 1823-11-18 in Moscow, Latah, ID, USA - Birth of Garner, Lewis
+Death: 1911-01-21 in Twin Falls, Twin Falls, ID, USA - Death of Garner, Lewis
+Burial: 1911-01-23 in Knoxville, TN, USA - Burial of Garner, Lewis
+
+Type: person
+Gramps ID: I1860
+Gender: female
+Name: Jenny Reed
+Birth in Kingsport, TN, USA - Birth of Reed, Jenny
+
+Type: person
+Gramps ID: I1160
+Gender: female
+Name: Sarah Pratt
+
+Type: person
+Gramps ID: I0134
+Gender: female
+Name: Elizabeth Therese MarĂn
+Birth: 1928-10-11 in Ottawa, La Salle, IL, USA - Birth of MarĂn, Elizabeth Therese
+Death: 1928-12-29 in Ottawa, La Salle, IL, USA - Death of MarĂn, Elizabeth Therese
+Burial in Ottawa, La Salle, IL, USA - Burial of MarĂn, Elizabeth Therese
+
+Type: person
+Gramps ID: I0765
+Gender: male
+Name: Rev. Samuel ĐĐŸŃĐŸĐ±ŃĐ”ĐČ
+
+Type: person
+Gramps ID: I1111
+Gender: unknown
+Name: Sarah Jane ĐąĐžĐŒĐŸŃДДĐČ
+Birth: 1825-07-29 in Steubenville, OH, USA - Birth of ĐąĐžĐŒĐŸŃДДĐČ, Sarah Jane
+
+Type: person
+Gramps ID: I1743
+Gender: female
+Name: Catherine Boucher
+
+Type: person
+Gramps ID: I0996
+Gender: male
+Name: Frederick Douglas
+Death in Dover, Kent, DE, USA - Death of Douglas, Frederick
+
+Type: person
+Gramps ID: I0590
+Gender: male
+Name: William Sr. Rhodes
+Burial in Ottawa, La Salle, IL, USA - Burial of Rhodes, William Sr.
+
+Type: person
+Gramps ID: I1533
+Gender: male
+Name: William James
+Birth: 1733 - Birth of James, William
+
+Type: person
+Gramps ID: I1756
+Gender: female
+Name: Bridget Bush
+
+Type: person
+Gramps ID: I2008
+Gender: female
+Name: Rachel Allen
+Birth: 1696-05-12 in Sikeston, MO, USA - Birth of Allen, Rachel
+Death: 1747 - Death of Allen, Rachel
+
+Type: person
+Gramps ID: I1355
+Gender: male
+Name: Charles Newton Boyd
+Birth: 1868-03-27 - Birth of Boyd, Charles Newton
+Death: 1920-03-21 - Death of Boyd, Charles Newton
+
+Type: person
+Gramps ID: I0200
+Gender: male
+Name: Thomas Willis MarĂn
+Birth: 1897-06-21 - Birth of MarĂn, Thomas Willis
+Death: 1962-06-28 - Death of MarĂn, Thomas Willis
+Burial in St, George, UT, USA - Burial of MarĂn, Thomas Willis
+
+Type: person
+Gramps ID: I1878
+Gender: male
+Name: Love
+Death in Morgantown, WV, USA - Death of Love
+
+Type: person
+Gramps ID: I0201
+Gender: male
+Name: Wilbur MarĂn
+Death: 1906-10 in Hutchinson, Reno, KS, USA - Death of MarĂn, Wilbur
+Burial: 1906-10-22 in Lexington, NC, USA - Burial of MarĂn, Wilbur
+
+Type: person
+Gramps ID: I0491
+Gender: female
+Name: Linda Mae ĐĐŸĐ·Đ»ĐŸĐČ
+
+Type: person
+Gramps ID: I1687
+Gender: female
+Name: Carrie Serrano
+Birth in Reno-Sparks, NV, USA - Birth of Serrano, Carrie
+
+Type: person
+Gramps ID: I1950
+Gender: female
+Name: Elizabeth Warner
+Birth: 1683-03-28 in Garden City, Finney, KS, USA - Birth of Warner, Elizabeth
+
+Type: person
+Gramps ID: I0779
+Gender: male
+Name: Richard Max Wheeler
+Birth: 1967-10-02 in Ottawa, La Salle, IL, USA - Birth of Wheeler, Richard Max
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1952
+Gender: male
+Name: Trustum ĐДбДЎДĐČ
+Birth in Klamath Falls, OR, USA - Birth of ĐДбДЎДĐČ, Trustum
+
+Type: person
+Gramps ID: I1072
+Gender: male
+Name: ?? Demers
+
+Type: person
+Gramps ID: I0783
+Gender: female
+Name: Ashley Diane Kelly
+Birth: 1990-06-06 in Rockland, ME, USA - Birth of Kelly, Ashley Diane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1366
+Gender: male
+Name: Clarence LĂ©vesque
+Birth in Reno-Sparks, NV, USA - Birth of LĂ©vesque, Clarence
+
+Type: person
+Gramps ID: I0270
+Gender: female
+Name: Mary Claire Estrada
+
+Type: person
+Gramps ID: I1422
+Gender: male
+Name: Daniels
+
+Type: person
+Gramps ID: I0157
+Gender: female
+Name: Sarah Jane Warner
+Birth: 1953-09-23 in Wheeling, WV-OH, USA - Birth of Warner, Sarah Jane
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2021
+Gender: female
+Name: Lauretta Esther Boyd
+Birth: 1901-07-08 - Birth of Boyd, Lauretta Esther
+
+Type: person
+Gramps ID: I2094
+Gender: male
+Name: Noah Moreno
+
+Type: person
+Gramps ID: I1485
+Gender: female
+Name: Comfort Hodges
+
+Type: person
+Gramps ID: I0059
+Gender: male
+Name: Johann Christian II Moreno
+Birth: 1726-11-15 in Albany, Dougherty, GA, USA - Birth of Moreno, Johann Christian II
+Death: 1797-12-10 in Harriman, TN, USA - Death of Moreno, Johann Christian II
+
+Type: person
+Gramps ID: I0404
+Gender: male
+Name: Charles Boucher
+
+Type: person
+Gramps ID: I0505
+Gender: male
+Name: Francis Boucher
+
+Type: person
+Gramps ID: I1702
+Gender: female
+Name: Mary Ruth Webb
+Birth: 1892-12-15 in Reno-Sparks, NV, USA - Birth of Webb, Mary Ruth
+Death: 1956-11-29 - Death of Webb, Mary Ruth
+
+Type: person
+Gramps ID: I0162
+Gender: male
+Name: Stanley Louis Warner
+Birth: 1963-06-17 in Statesboro, Bulloch, GA, USA - Birth of Warner, Stanley Louis
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I2100
+Gender: male
+Name: Esau Moreno
+Birth: 1790-01-17 - Birth of Moreno, Esau
+
+Type: person
+Gramps ID: I1193
+Gender: male
+Name: Sir Thomas Lapointe
+
+Type: person
+Gramps ID: I1431
+Gender: male
+Name: John Cross
+Birth in Racine, WI, USA - Birth of Cross, John
+
+Type: person
+Gramps ID: I1562
+Gender: female
+Name: Margaret Girard
+
+Type: person
+Gramps ID: I1778
+Gender: male
+Name: Gerry Hart
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0509
+Gender: male
+Name: Capt. Andrew Warner
+Birth: 1684-01-20 in Frankfort, Franklin, KY, USA - Birth of Warner, Capt. Andrew
+Death: 1754-01-11 in Lake County, IL, USA - Death of Warner, Capt. Andrew
+Burial in Waycross, Ware, GA, USA - Burial of Warner, Capt. Andrew
+
+Type: person
+Gramps ID: I1967
+Gender: female
+Name: Jane Ball
+Birth: 1848-07-09 in Vero Beach, Indian River, FL, USA - Birth of Ball, Jane
+
+Type: person
+Gramps ID: I0222
+Gender: male
+Name: Ivan Wayne Cruz
+Birth: 1925-02-14 - Birth of Cruz, Ivan Wayne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0886
+Gender: male
+Name: Mark R. Gonzales
+Birth: 1952 in Ottawa, La Salle, IL, USA - Birth of Gonzales, Mark R.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0224
+Gender: male
+Name: David Wayne Cruz
+Birth: 1948-01-25 - Birth of Cruz, David Wayne
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0671
+Gender: male
+Name: Raymond Scott Garner
+Birth: 1956-03-05 in Columbus, Bartholomew, IN, USA - Birth of Garner, Raymond Scott
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0979
+Gender: male
+Name: Corey Willis
+
+Type: person
+Gramps ID: I0673
+Gender: female
+Name: Angela Gay PĂ©rez
+
+Type: person
+Gramps ID: I0981
+Gender: female
+Name: Melany Haynes
+Birth: 1990 in Bremerton, WA, USA - Birth of Haynes, Melany
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1715
+Gender: female
+Name: Elizabeth Jane Rodriquez
+Birth: 1816-04-01 in MayagĂŒez, PR, USA - Birth of Rodriquez, Elizabeth Jane
+
+Type: person
+Gramps ID: I1572
+Gender: male
+Name: John W. Bergeron
+
+Type: person
+Gramps ID: I1441
+Gender: male
+Name: Cecil Glenn Waters
+Birth: 1940 - Birth of Waters, Cecil Glenn
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1721
+Gender: male
+Name: Michael Mordica Rodriquez
+Birth: 1828-08-27 in MayagĂŒez, PR, USA - Birth of Rodriquez, Michael Mordica
+
+Type: person
+Gramps ID: I1914
+Gender: male
+Name: Alexander Carroll Sr. ĐĐŒĐžŃŃОДĐČ
+Birth: 1771-04-20 in Greenwood, MS, USA - Birth of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr.
+Death: 1838-01-18 in Indiana, PA, USA - Death of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr.
+
+Type: person
+Gramps ID: I0469
+Gender: male
+Name: Peter Sr. Cunningham
+Birth in Ocean City, NJ, USA - Birth of Cunningham, Peter Sr.
+Death: 1832-05 in Marquette, MI, USA - Death of Cunningham, Peter Sr.
+Burial: 1832-05 in Somerset, Pulaski, KY, USA - Burial of Cunningham, Peter Sr.
+
+Type: person
+Gramps ID: I1211
+Gender: male
+Name: James Diaz
+
+Type: person
+Gramps ID: I0622
+Gender: female
+Name: Bernice Davidson
+Birth: 1894-09-27 - Birth of Davidson, Bernice
+Death: 1980-05-24 - Death of Davidson, Bernice
+
+Type: person
+Gramps ID: I1656
+Gender: male
+Name: Mr. Grabowski
+
+Type: person
+Gramps ID: I1984
+Gender: male
+Name: John Morris
+Birth: 1841 in Palatka, Putnam, FL, USA - Birth of Morris, John
+
+Type: person
+Gramps ID: I0954
+Gender: male
+Name: JOHN Howell
+Birth: 1615 in Fajardo, PR, USA - Birth of Howell, JOHN
+Death: 1644-12-28 - Death of Howell, JOHN
+
+Type: person
+Gramps ID: I1728
+Gender: male
+Name: Charles Rodriquez
+Birth in La Follette, TN, USA - Birth of Rodriquez, Charles
+
+Type: person
+Gramps ID: I1341
+Gender: male
+Name: Howard Lane Hudson
+
+Type: person
+Gramps ID: I1224
+Gender: male
+Name: John Waters
+
+Type: person
+Gramps ID: I1858
+Gender: male
+Name: Michael Reed
+Birth in Lebanon, MO, USA - Birth of Reed, Michael
+
+Type: person
+Gramps ID: I1158
+Gender: male
+Name: Walter Guerrero
+Birth: um 1350 - Birth of Guerrero, Walter
+
+Type: person
+Gramps ID: I1521
+Gender: male
+Name: Johnathon Douglas
+
+Type: person
+Gramps ID: I2063
+Gender: male
+Name: David Porter
+
+Type: person
+Gramps ID: I0907
+Gender: female
+Name: Debra Dale Page
+Birth: 1963-02-15 in Wheeling, WV-OH, USA - Birth of Page, Debra Dale
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1298
+Gender: female
+Name: Elizabeth Farmer
+Birth: 1792 - Birth of Farmer, Elizabeth
+
+Type: person
+Gramps ID: I0427
+Gender: male
+Name: Rodney Herman ĐĐ°ĐșŃĐžĐŒĐŸĐČ
+Birth: 1945-10-22 in Ottawa, La Salle, IL, USA - Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Rodney Herman
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0751
+Gender: female
+Name: Mary (Sarah) Howell
+Birth: 1641-02-12 in Ogdensburg, St. Lawrence, NY, USA - Birth of Howell, Mary (Sarah)
+Death: 1686 in Anchorage, AK, USA - Death of Howell, Mary (Sarah)
+Burial in Anchorage, AK, USA - Burial of Howell, Mary (Sarah)
+
+Type: person
+Gramps ID: I1810
+Gender: female
+Name: Peggy Reed
+Birth: 1936-07 in Niles, MI, USA - Birth of Reed, Peggy
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1870
+Gender: female
+Name: Jean Sandoval
+
+Type: person
+Gramps ID: I1606
+Gender: male
+Name: Henry Floyd
+
+Type: person
+Gramps ID: I0487
+Gender: male
+Name: Sean Boucher
+Birth: 1837 in Andrews, Andrews, TX, USA - Birth of Boucher, Sean
+Death in Andrews, Andrews, TX, USA - Death of Boucher, Sean
+Burial in Somerset, PA, USA - Burial of Boucher, Sean
+
+Type: person
+Gramps ID: I1814
+Gender: male
+Name: Berry
+
+Type: person
+Gramps ID: I0092
+Gender: female
+Name: Bridget Holt
+Birth: 1829-12 in Manchester, NH, USA - Birth of Holt, Bridget
+Death: 1904-02-14 in Ottawa, La Salle, IL, USA - Death of Holt, Bridget
+Burial in Lexington, NC, USA - Burial of Holt, Bridget
+
+Type: person
+Gramps ID: I0257
+Gender: male
+Name: Maurice T. Landry
+Birth: 1891-07-11 in Ottawa, La Salle, IL, USA - Birth of Landry, Maurice T.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0322
+Gender: male
+Name: Jeffrey Alan Poirier
+Birth: 1974-07-09 in Altoona, PA, USA - Birth of Poirier, Jeffrey Alan
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0920
+Gender: female
+Name: Christina Lucas
+Birth: 1780 in Cambridge, MD, USA - Birth of Lucas, Christina
+Death in Berlin, NH, USA - Death of Lucas, Christina
+Burial in Berlin, NH, USA - Burial of Lucas, Christina
+
+Type: person
+Gramps ID: I1173
+Gender: male
+Name: Nicholas Murray
+Birth: um 1617 - Birth of Murray, Nicholas
+
+Type: person
+Gramps ID: I1759
+Gender: male
+Name: Michael Shannon Boucher
+Birth in Willimantic, Windham, CT, USA - Birth of Boucher, Michael Shannon
+
+Type: person
+Gramps ID: I0329
+Gender: male
+Name: Jack D. Alvarado
+Birth: 1947-06 - Birth of Alvarado, Jack D.
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0054
+Gender: male
+Name: Walter Matthew MarĂn
+Birth: 1893-12-29 in Worthington, MN, USA - Birth of MarĂn, Walter Matthew
+Death: 1969-01-16 in Worthington, MN, USA - Death of MarĂn, Walter Matthew
+Burial: 1969-01-18 in Worthington, MN, USA - Burial of MarĂn, Walter Matthew
+
+Type: person
+Gramps ID: I0331
+Gender: male
+Name: Douglas David Alvarado
+Birth: 1971-04-15 in Rockland, ME, USA - Birth of Alvarado, Douglas David
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0395
+Gender: male
+Name: Mathew Reeves
+
+Type: person
+Gramps ID: I0830
+Gender: female
+Name: Martha Boucher
+Birth: 1963 in Kerrville, Kerr, TX, USA - Birth of Boucher, Martha
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0058
+Gender: male
+Name: Christian, I Moreno
+Birth: 1693 in Kinston, NC, USA - Birth of Moreno, Christian, I
+Death: 1772-04-16 in Spencer, Clay, IA, USA - Death of Moreno, Christian, I
+Burial in La Grande, OR, USA - Burial of Moreno, Christian, I
+
+Type: person
+Gramps ID: I1553
+Gender: female
+Name: Polly Poole
+
+Type: person
+Gramps ID: I1700
+Gender: male
+Name: Michael Christie Webb
+Birth: 1888-11-19 in Reno-Sparks, NV, USA - Birth of Webb, Michael Christie
+Death: 1970-07-23 - Death of Webb, Michael Christie
+
+Type: person
+Gramps ID: I0555
+Gender: male
+Name: Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ
+Birth in Eagle Pass, Maverick, TX, USA - Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+Death: 1771 in St, FL, USA - Death of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+Burial in Ponce, PR, USA - Burial of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+
+Type: person
+Gramps ID: I0558
+Gender: male
+Name: Ezekiel Ball
+Birth in Mooresville, NC, USA - Birth of Ball, Ezekiel
+Death in Mooresville, NC, USA - Death of Ball, Ezekiel
+
+Type: person
+Gramps ID: I1564
+Gender: male
+Name: George Moore
+
+Type: person
+Gramps ID: I1780
+Gender: male
+Name: Raymond Hart
+Birth: 1986 - Birth of Hart, Raymond
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0461
+Gender: male
+Name: Dr. Charles J. Wright
+Burial in Alexandria, MN, USA - Burial of Wright, Dr. Charles J.
+
+Type: person
+Gramps ID: I0725
+Gender: male
+Name: Sir Michael Piotrowski
+Birth in Hilo, HI, USA - Birth of Piotrowski, Sir Michael
+Death in Hilo, HI, USA - Death of Piotrowski, Sir Michael
+
+Type: person
+Gramps ID: I0412
+Gender: male
+Name: Lawrence Gill
+Birth: 1968-10-26 in Hobbs, NM, USA - Birth of Gill, Lawrence
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1498
+Gender: male
+Name: John Douglas
+Birth: 1824-10-17 in Marshall, MN, USA - Birth of Douglas, John
+Death in Bemidji, MN, USA - Death of Douglas, John
+
+Type: person
+Gramps ID: I0109
+Gender: female
+Name: Anita Irene Phillips
+Birth: 1947-07-16 in Decatur, Macon, IL, USA - Birth of Phillips, Anita Irene
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1909
+Gender: female
+Name: Polly Wood
+Birth: 1771-01-29 in Cedartown, Polk, GA, USA - Birth of Wood, Polly
+Death: vor 1850 in Burley, Cassia, ID, USA - Death of Wood, Polly
+
+Type: person
+Gramps ID: I1029
+Gender: male
+Name: John Christiansen
+Birth: 1455 - Birth of Christiansen, John
+Death: 1514 - Death of Christiansen, John
+
+Type: person
+Gramps ID: I1329
+Gender: female
+Name: Anna Eva Beaulieu
+Birth: 1724 - Birth of Beaulieu, Anna Eva
+Death: 1760 - Death of Beaulieu, Anna Eva
+
+Type: person
+Gramps ID: I0849
+Gender: female
+Name: Elizabeth Robertson
+Death: 1703-10-24 - Death of Robertson, Elizabeth
+
+Type: person
+Gramps ID: I2048
+Gender: male
+Name: Thomas H. Moreno
+Birth: 1814-08-22 in Paris, TN, USA - Birth of Moreno, Thomas H.
+
+Type: person
+Gramps ID: I0620
+Gender: male
+Name: Scott ĐŃĐșĐŸĐČ
+Birth in Silverthorne, Summit, CO, USA - Birth of ĐŃĐșĐŸĐČ, Scott
+
+Type: person
+Gramps ID: I1654
+Gender: male
+Name: Mr. ć°æ
+
+Type: person
+Gramps ID: I1723
+Gender: female
+Name: Mary Rodriquez
+Birth: 1770-03-03 in Lewiston, Nez Perce, ID, USA - Birth of Rodriquez, Mary
+
+Type: person
+Gramps ID: I0120
+Gender: male
+Name: Michael Patrick Hale
+Birth: 1977-07-27 in Ottawa, La Salle, IL, USA - Birth of Hale, Michael Patrick
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1444
+Gender: male
+Name: Randy Waters
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0756
+Gender: female
+Name: Mary Ramos
+Birth: um 1556 in Lebanon, PA, USA - Birth of Ramos, Mary
+Death: 1588-01-07 in Caguas, PR, USA - Death of Ramos, Mary
+Burial in Washington, NC, USA - Burial of Ramos, Mary
+
+Type: person
+Gramps ID: I0853
+Gender: male
+Name: Irwin Arthur Welch
+Birth: 1920-10-28 in Torrington, Litchfield, CT, USA - Birth of Welch, Irwin Arthur
+Death: 1979-06-25 in Medford, OR, USA - Death of Welch, Irwin Arthur
+Burial: 1979-06-27 in West Plains, MO, USA - Burial of Welch, Irwin Arthur
+
+Type: person
+Gramps ID: I0185
+Gender: male
+Name: Mark Gerard Garner
+Birth: 1962-10-16 in Ottawa, La Salle, IL, USA - Birth of Garner, Mark Gerard
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0757
+Gender: male
+Name: John ĐĐ»ĐŸĐ±ĐžĐœ
+Birth: 1695 in Ketchikan, AK, USA - Birth of ĐĐ»ĐŸĐ±ĐžĐœ, John
+Death in Eagle Pass, Maverick, TX, USA - Death of ĐĐ»ĐŸĐ±ĐžĐœ, John
+
+Type: person
+Gramps ID: I1448
+Gender: female
+Name: Linda Armstrong
+
+Type: person
+Gramps ID: I0367
+Gender: female
+Name: Melinda Lou Cruz
+Birth: 1956-12-18 - Birth of Cruz, Melinda Lou
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1450
+Gender: male
+Name: Gross
+
+Type: person
+Gramps ID: I1597
+Gender: female
+Name: Rebecca Ouellet
+
+Type: person
+Gramps ID: I1934
+Gender: female
+Name: Bridget Reeves
+
+Type: person
+Gramps ID: I0750
+Gender: male
+Name: John Norris
+Birth: 1633-09-08 in Rio Grande City, Starr, TX, USA - Birth of Norris, John
+Death: 1712-08-27 in Anchorage, AK, USA - Death of Norris, John
+Burial: 1712 in Keene, NH, USA - Burial of Norris, John
+
+Type: person
+Gramps ID: I0767
+Gender: male
+Name: Joseph Louis(Sr.) Benson
+Birth: 1676-01-09 in Iowa City, Johnson, IA, USA - Birth of Benson, Joseph Louis(Sr.)
+
+Type: person
+Gramps ID: I1053
+Gender: female
+Name: Megan Ann Garner
+Birth: 1978-07-17 - Birth of Garner, Megan Ann
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I0484
+Gender: female
+Name: Helen Lachance
+Birth: 1912-11-03 - Birth of Lachance, Helen
+LVG Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+
+Type: person
+Gramps ID: I1675
+Gender: male
+Name: Peter Blanco
+
+Type: person
+Gramps ID: I0867
+Gender: female
+Name: Edith Irene Zimmerman
+Birth: 1890-05-20 in Atlanta, Fulton, GA, USA - Birth of Zimmerman, Edith Irene
+Death: 1962-12-21 in Kokomo, Howard, IN, USA - Death of Zimmerman, Edith Irene
+Burial: 1962-12-23 in Oskaloosa, Mahaska, IA, USA - Burial of Zimmerman, Edith Irene
+
+Type: person
+Gramps ID: I1167
+Gender: female
+Name: Sarah ĐĐŸĐČалДĐČ
+Birth: um 1604 in McAlester, OK, USA - Birth of ĐĐŸĐČалДĐČ, Sarah
+Death in Las Vegas, NM, USA - Death of ĐĐŸĐČалДĐČ, Sarah
+
+Type: person
+Gramps ID: I0091
+Gender: male
+Name: Moses йОŃ
ĐŸĐœĐŸĐČ
+Birth: 1827 in Eugene, OR, USA - Birth of йОŃ
ĐŸĐœĐŸĐČ, Moses
+Death: 1872 in Ottawa, La Salle, IL, USA - Death of йОŃ
ĐŸĐœĐŸĐČ, Moses
+Burial in Lexington, NC, USA - Burial of йОŃ
ĐŸĐœĐŸĐČ, Moses
+
+Type: person
+Gramps ID: I1941
+Gender: female
+Name: Mary A. Flowers
+
+Type: person
+Gramps ID: I1535
+Gender: male
+Name: Mr. Gibson
+
+Type: person
+Gramps ID: I1410
+Gender: male
+Name: Raymond Ortiz
+
+Type: person
+Gramps ID: I1876
+Gender: male
+Name: Thomas Reed
+
+Type: person
+Gramps ID: I2010
+Gender: female
+Name: Lydia Allen
+Birth: 1698-04-28 in Topeka, Shawnee, KS, USA - Birth of Allen, Lydia
+
+Type: person
+Gramps ID: I1757
+Gender: female
+Name: Catherine Bush
+
+Type: person
+Gramps ID: I0094
+Gender: female
+Name: Martha Frances "Fannie" Floyd
+Birth: 1843-05-13 in Provo, UT, USA - Birth of Floyd, Martha Frances "Fannie"
+Death: 1913-04-17 in Syracuse, Onondaga, NY, USA - Death of Floyd, Martha Frances "Fannie"
+Burial: 1913-04-19 in Corpus Christi, Nueces, TX, USA - Burial of Floyd, Martha Frances "Fannie"
+
+Type: person
+Gramps ID: I2084
+Gender: female
+Name: Flora E. Moreno
+Birth: 1860-06-26 - Birth of Moreno, Flora E.
+
+Type: person
+Gramps ID: I1177
+Gender: female
+Name: new Thomsen
+
+Type: person
+Gramps ID: I1545
+Gender: male
+Name: Thomas James
+Birth in La Follette, TN, USA - Birth of James, Thomas
+
+Type: person
+Gramps ID: I0652
+Gender: male
+Name: ??????? Cooper
+
+Type: person
+Gramps ID: I1183
+Gender: male
+Name: Isaac ĐĐŒĐžŃŃОДĐČ
+Birth: um 1737 - Birth of ĐĐŒĐžŃŃОДĐČ, Isaac
+Death: 1807 - Death of ĐĐŒĐžŃŃОДĐČ, Isaac
+
+Type: person
+Gramps ID: I1955
+Gender: male
+Name: Johnathon Warner
+Birth: um 1689 in Garden City, Finney, KS, USA - Birth of Warner, Johnathon
+Death: 1754-07 - Death of Warner, Johnathon
+
+Type: person
+Gramps ID: I2110
+Gender: male
+Name: Ù
ŰÙ
ŰŻ
+Birth: 570-04-19
+Death: 632-06-08
+Marriage: 610
+
+Type: person
+Gramps ID: I2105
+Gender: female
+Name: Űčۧۊێ۩
+Marriage: 610
+
+Type: person
+Gramps ID: I2106
+Gender: female
+Name: ۟ۯÙŰŹŰ©
+
+Type: person
+Gramps ID: I2107
+Gender: male
+Name: ۧÙÙۧ۳Ù
+
+Type: person
+Gramps ID: I2108
+Gender: male
+Name: Űčۚۯ ۧÙÙÙ
+
+Type: person
+Gramps ID: I2109
+Gender: female
+Name: ŰŁÙ
 ÙÙŰ«ÙÙ
+
+Type: person
+Gramps ID: I2111
+Gender: male
+Name: ŰŁŰÙ
ŰŻ
+Birth: 164-03 (Islamisch)
+Marriage: 204 (Islamisch)
+Death: 241-03-12 (Islamisch)
+
+Type: person
+Gramps ID: I2112
+Gender: female
+Name: ۧÙŰčۚۧ۳۩ ۧÙÙ۶Ù
+Marriage: 204 (Islamisch)
+Death: 234 (Islamisch)
+
+Type: person
+Gramps ID: I2113
+Gender: female
+Name: ۱ÙŰۧÙŰ©
+
+Type: person
+Gramps ID: I2114
+Gender: male
+Name: Űčۚۯ ۧÙÙÙ
+Birth: 213 (Islamisch)
+Death: 290 (Islamisch)
+
+Type: person
+Gramps ID: I2115
+Gender: male
+Name: ۔ۧÙŰ
+Birth: 203 (Islamisch)
+
+Type: person
+Gramps ID: I2116
+Gender: male
+Name: Foon àžàžžàž
+Death: geschÀtzt um 1850
+
+Type: person
+Gramps ID: I0000
+Gender: male
+Name: The First Person
+
+Type: person
+Gramps ID: I0556
+Gender: female
+Name: B Fillin
+
+Type: person
+Gramps ID: I0839
+Gender: male
+Name: C Fillin
+
+Type: person
+Gramps ID: I0952
+Gender: female
+Name: D Fillin
+
+Type: person
+Gramps ID: I1038
+Gender: male
+Name: E Fillin
+
+Type: person
+Gramps ID: I1236
+Gender: female
+Name: F Fillin
+
+Type: person
+Gramps ID: I1237
+Gender: male
+Name: G Fillin
+
+Type: person
+Gramps ID: I1244
+Gender: female
+Name: H Fillin
+
+Type: person
+Gramps ID: I1388
+Gender: male
+Name: I Fillin
+
+Type: person
+Gramps ID: I1461
+Gender: female
+Name: J Fillin
+
+Type: person
+Gramps ID: I1540
+Gender: male
+Name: K Fillin
+
+Type: person
+Gramps ID: I1555
+Gender: female
+Name: L Fillin
+
+Type: person
+Gramps ID: I1691
+Gender: male
+Name: M Fillin
+
+Type: person
+Gramps ID: I1693
+Gender: female
+Name: N Fillin
+
+Type: person
+Gramps ID: I1696
+Gender: male
+Name: O Fillin
+
+Type: person
+Gramps ID: I2117
+Gender: male
+Name: ÎÎłÎ±ÎŒÎΌΜÏÎœ ÎΔληÏÎÏÏÎżÏ
+Birth: 1940-03-01 in ÎÏÎŹÎŒÎ±, Greece
+Marriage: 1970-09-09
+
+Type: person
+Gramps ID: I2118
+Gender: female
+Name: ÎÏ
ÏÎÏÏη ÎÏÎŹÎœÎœÎżÏ
+Birth: 1950-06-18 in ÎΔÏÏÎ±Î»ÎżÎœÎŻÎșη, Greece
+
+Type: person
+Gramps ID: I2119
+Gender: male
+Name: ÎΌηÏÎżÏ ÎΔληÏÎÏÏÎżÏ
+Birth: 1971-11-05 in ÎÏÎŹÎŒÎ±, Greece
+
+Type: person
+Gramps ID: I2120
+Gender: female
+Name: ÎÏ
ÏÏÎŻÎœÎ· ÎΔληÏÎÏÏÎżÏ
+Birth: 1973-04-11 in ÎÏÎŹÎŒÎ±, Greece
+
+Type: person
+Gramps ID: I2121
+Gender: female
+Name: ÎΔÏÎλη ÎΔληÏÎÏÏÎżÏ
+Birth: 1974-12-03 in ÎÏÎŹÎŒÎ±, Greece
+
+Type: person
+Gramps ID: I2122
+Gender: male
+Name: ÎÎÏÏÎżÏÎ±Ï ÎΔληÏÎÏÏÎżÏ
+Birth: 1976-09-29 in ÎÏÎŹÎŒÎ±, Greece
+
+Type: person
+Gramps ID: I2123
+Gender: male
+Name: ÎÎŹÏÏÎœ ÎΔληÏÎÏÏÎżÏ
+Birth: 1910-06-29 in ÎÏÎŹÎœÎœÎčΜα, Greece
+Death: 1990-02-02
+
+Type: person
+Gramps ID: I2124
+Gender: female
+Name: ÎΔΜΔÏία ÎÎœÎ±ÎłÎœÏÏÏÎżÏÎżÏλοÏ
+Birth: 1920-04-07 in ÎŁÎčÎŹÏÎčÏÏα, Greece
+Death: 1995-03-02
+
+Type: person
+Gramps ID: I2125
+Gender: male
+Name: ÎÏαΌΔÎčÎœÏÎœÎŽÎ±Ï ÎÏÎŹÎœÎœÎżÏ
+Birth: 1915-03-10 in ÎÏγοÏ, Greece
+Death: 2005-06-28
+
+Type: person
+Gramps ID: I2126
+Gender: female
+Name: ÎÎżÏ
λία ÎαλÎÏγη
+Birth: 1925-07-15 in ÎΔÏολÏγγÎč, Greece
+Death: 2006-01-11
+
+Type: person
+Gramps ID: I2127
+Gender: male
+Name: ÎÎłÎ·Ï ÎΔληÏÎÏÏÎżÏ
+Birth: 1978-11-30 in ÎÏÎŹÎŒÎ±, Greece
+
+Type: person
+Gramps ID: I2128
+Gender: male
+Name: æŒ èł
+
+Type: person
+Gramps ID: I2129
+Gender: male
+Name: 代ć èł
+
+Type: person
+Gramps ID: I2130
+Gender: male
+Name: æ· èł
+
+Type: person
+Gramps ID: I2131
+Gender: male
+Name: æŹ èł
+
+Type: person
+Gramps ID: I2132
+Gender: male
+Name: ç èł
+
+Type: person
+Gramps ID: I2133
+Gender: female
+Name: ææ„ èł
+
+Type: person
+Gramps ID: I2134
+Gender: female
+Name: ć°€ æ°
+
+Type: person
+Gramps ID: I2135
+Gender: male
+Name: è èł
+
+Type: person
+Gramps ID: I2136
+Gender: female
+Name: ćŻćż 秊
+
+Type: person
+Gramps ID: I2137
+Gender: male
+Name: æș èł
+
+Type: person
+Gramps ID: I2138
+Gender: male
+Name: 代ć èł
+
+Type: person
+Gramps ID: I2139
+Gender: female
+Name: ćČ ć€Șć
+
+Type: person
+Gramps ID: I2140
+Gender: male
+Name: 蔊 èł
+
+Type: person
+Gramps ID: I2141
+Gender: male
+Name: æż èł
+
+Type: person
+Gramps ID: I2142
+Gender: male
+Name: æ èł
+
+Type: person
+Gramps ID: I2143
+Gender: female
+Name: éą ć€«äșș
+
+Type: person
+Gramps ID: I2144
+Gender: male
+Name: ç èł
+
+Type: person
+Gramps ID: I2145
+Gender: female
+Name: èżæ„ èł
+
+Type: person
+Gramps ID: I2146
+Gender: female
+Name: çéłł ç
+
+Type: person
+Gramps ID: I2147
+Gender: female
+Name: ć·§ć§ èł
+
+Type: person
+Gramps ID: I2148
+Gender: female
+Name: ç 怫äșș
+
+Type: person
+Gramps ID: I2149
+Gender: male
+Name: ç èł
+
+Type: person
+Gramps ID: I2150
+Gender: female
+Name: ć
æ„ èł
+
+Type: person
+Gramps ID: I2151
+Gender: male
+Name: 毶ç èł
+
+Type: person
+Gramps ID: I2152
+Gender: female
+Name: è¶ ć§šćš
+
+Type: person
+Gramps ID: I2153
+Gender: female
+Name: æąæ„ èł
+
+Type: person
+Gramps ID: I2154
+Gender: male
+Name: ç° èł
+
+Type: person
+Gramps ID: I2155
+Gender: female
+Name: çŽ æ
+
+Type: person
+Gramps ID: I2156
+Gender: male
+Name: è èł
+
+Type: family
+Gramps ID: F0138
+Relationship type: Married
+Father: Robert Sr. Adkins (Gramps ID: I0551)
+Mother: Martha Nielsen (Gramps ID: I0552)
+Marriage Marriage of Adkins, Robert Sr. and Nielsen, Martha
+Children:
+- John Adkins (born nach 1737-10-01, died 1787-05-20) (Gramps ID: I0553)
+
+Type: family
+Gramps ID: F0015
+Relationship type: Married
+Father: George Henry, III Jiménez (born 1826-08-15, died 1907-10-25) (Gramps ID: I0066)
+Mother: M. Susannah Blake (born 1832-09-05, died 1921-05-25) (Gramps ID: I0067)
+Marriage: 1851-06-05 in San Diego, San Diego, CA, USA - Marriage of Jiménez, George Henry, III and Blake, M. Susannah
+Children:
+- Lucinda Ellen Jiménez (born 1870-02-05, died 1949-02-21) (Gramps ID: I0041)
+- Sarah M. Jiménez (Gramps ID: I1368)
+- Mary C. Jiménez (Gramps ID: I1369)
+- Armand E. Jiménez (Gramps ID: I1370)
+- Tolbert A. Jiménez (Gramps ID: I1371)
+- Lincoln F. Jiménez (Gramps ID: I1372)
+- Philip Jiménez (Gramps ID: I1373)
+- George H. Jiménez (Gramps ID: I1374)
+
+Type: family
+Gramps ID: F0487
+Relationship type: Married
+Father: Thomas C. Alvarado (Gramps ID: I1469)
+Mother: Mary ĐДЎĐČДЎДĐČ (Gramps ID: I1487)
+Marriage Marriage of Alvarado, Thomas C. and ĐДЎĐČДЎДĐČ, Mary
+
+Type: family
+Gramps ID: F0058
+Relationship type: Married
+Father: Robert William Floyd (born 1950-07-27) (Gramps ID: I0340)
+Mother: Kathryn Louise ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1948-12-23) (Gramps ID: I0167)
+Marriage: 1977-01-08 - Marriage of Floyd, Robert William and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Kathryn Louise
+Children:
+- Gregory Scott Floyd (born 1983-04-18, died 1983-06-15) (Gramps ID: I0341)
+- Christopher Randall Floyd (born 1985-04-18) (Gramps ID: I0342)
+- Joan Louise Floyd (born 1988-07-25) (Gramps ID: I0343)
+
+Type: family
+Gramps ID: F0571
+Relationship type: Married
+Father: Paul Caldwell (Gramps ID: I1774)
+Mother: Martha Boucher (born 1963) (Gramps ID: I0830)
+Marriage Marriage of Caldwell, Paul and Boucher, Martha
+Children:
+- Colm Caldwell (born 1984) (Gramps ID: I1775)
+- Niall Caldwell (born 1985) (Gramps ID: I1776)
+- Fergl Caldwell (born 1986) (Gramps ID: I1777)
+
+Type: family
+Gramps ID: F0183
+Relationship type: Married
+Father: Arnold WĂłjcik (died 1967-06-25) (Gramps ID: I0639)
+Mother: Helen Bernice Garner (born 1909-11-05) (Gramps ID: I0632)
+Marriage: 1927-12-25 - Marriage of WĂłjcik, Arnold and Garner, Helen Bernice
+Children:
+- Suzanne WĂłjcik (born 1928-06-25) (Gramps ID: I0660)
+- Richard WĂłjcik (born 1929-08-14) (Gramps ID: I0661)
+- Patricia WĂłjcik (born 1930-10-25) (Gramps ID: I0662)
+- James WĂłjcik (born 1932-03-24) (Gramps ID: I0663)
+- Arnold Clark WĂłjcik (born 1944-09-04) (Gramps ID: I0664)
+- Daniel Burton WĂłjcik (born 1949-08-25) (Gramps ID: I0665)
+
+Type: family
+Gramps ID: F0189
+Relationship type: Married
+Father: Edward ĐĐŸŃŃлОŃĐžĐœ (Gramps ID: I0667)
+Mother: Linda Ellen BĂ©langer (born 1940-12-30) (Gramps ID: I0666)
+Marriage Marriage of ĐĐŸŃŃлОŃĐžĐœ, Edward and BĂ©langer, Linda Ellen
+
+Type: family
+Gramps ID: F0216
+Relationship type: Married
+Father: Harmonas I Oliver (Gramps ID: I0611)
+Mother: Mary Malone (Gramps ID: I0735)
+Marriage Marriage of Oliver, Harmonas I and Malone, Mary
+Children:
+- Harmonas II Oliver (Gramps ID: I0612)
+
+Type: family
+Gramps ID: F0215
+Relationship type: Married
+Father: Harmonas II Oliver (Gramps ID: I0612)
+Mother: Lydia Harvey (Gramps ID: I0734)
+Marriage in Texarkana, Miller, AR, USA - Marriage of Oliver, Harmonas II and Harvey, Lydia
+Children:
+- Elizabeth Oliver (Gramps ID: I0613)
+
+Type: family
+Gramps ID: F0142
+Relationship type: Married
+Father: Joseph Jr. ĐĐ»ĐŸĐ±ĐžĐœ (born 1756-02-15, died 1801-08-11) (Gramps ID: I0560)
+Mother: Martha Adkins (born vor 1763-06-20, died 1828-09-05) (Gramps ID: I0559)
+Marriage: 1782-06-20 - Marriage of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr. and Adkins, Martha
+Children:
+- Martha ĐĐ»ĐŸĐ±ĐžĐœ (born 1790-01-29, died 1849-06-27) (Gramps ID: I0566)
+
+Type: family
+Gramps ID: F0146
+Relationship type: Married
+Father: Aaron Moreno (born 1784-02-05, died 1846-02-18) (Gramps ID: I0061)
+Mother: Martha ĐĐ»ĐŸĐ±ĐžĐœ (born 1790-01-29, died 1849-06-27) (Gramps ID: I0566)
+Marriage: 1813-09-02 - Marriage of Moreno, Aaron and ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Children:
+- Abigail Chapman Moreno (born 1823-03-13, died 1853-06-02) (Gramps ID: I0028)
+- Thomas H. Moreno (born 1814-08-22, died 1814-08-22) (Gramps ID: I2048)
+- Joseph McDowell Moreno (born 1816-01-26, died 1842-06-28) (Gramps ID: I2049)
+- Darius Moreno (born 1828-03-21, died 1828-03-21) (Gramps ID: I2051)
+- Delilah Moreno (born 1818-01-05, died 1871-01-08) (Gramps ID: I2056)
+- Mary H. Moreno (born 1820-08-20, died 1820-08-20) (Gramps ID: I2062)
+- Cyrus W. Moreno (born 1825-08-18, died 1825-08-18) (Gramps ID: I2069)
+- Minerva Moreno (born 1830-03-17, died 1830-03-17) (Gramps ID: I2070)
+- Solon Moreno (born 1832-12-26, died 1832-12-26) (Gramps ID: I2077)
+
+Type: family
+Gramps ID: F0098
+Relationship type: Married
+Father: Ronald David West (born 1953-07-13) (Gramps ID: I0435)
+Mother: Melinda Lou Cruz (born 1956-12-18) (Gramps ID: I0367)
+Marriage: 1984-05-12 - Marriage of West, Ronald David and Cruz, Melinda Lou
+Children:
+- Erin Kathleen West (born 1985-11-06) (Gramps ID: I0450)
+- Kevin Wayne West (born 1989-05-05) (Gramps ID: I1087)
+
+Type: family
+Gramps ID: F0452
+Relationship type: Married
+Father: James Neal (Gramps ID: I1377)
+Mother: Elizabeth Page (born 1841, died 1915) (Gramps ID: I1376)
+Marriage in Palm Coast, Flagler, FL, USA - Marriage of Neal, James and Page, Elizabeth
+Children:
+- Andrew Neal (Gramps ID: I1378)
+- Belle Neal (died 1903) (Gramps ID: I1379)
+- James Neal (Gramps ID: I1380)
+- John Neal (born 1872-09-11, died 1928-12-26) (Gramps ID: I1381)
+- Margaret Neal (Gramps ID: I1382)
+- Matilda Neal (born 1877-02-09, died 1946) (Gramps ID: I1384)
+- David Neal (Gramps ID: I1386)
+
+Type: family
+Gramps ID: F0454
+Relationship type: Married
+Father: William Waters (born 1871-08-24, died 1938-07-12) (Gramps ID: I1385)
+Mother: Matilda Neal (born 1877-02-09, died 1946) (Gramps ID: I1384)
+Marriage: 1901-12-12 in Palatka, Putnam, FL, USA - Marriage of Waters, William and Neal, Matilda
+Children:
+- Cecil Waters (Gramps ID: I1440)
+- Edith Waters (Gramps ID: I1651)
+- Nellie Waters (Gramps ID: I1653)
+- Lola Waters (Gramps ID: I1655)
+- William Waters (Gramps ID: I1657)
+- Everett Waters (Gramps ID: I1658)
+
+Type: family
+Gramps ID: F0063
+Relationship type: Married
+Father: William Walker Garrett (born 1890-11-07, died 1890-11-07) (Gramps ID: I0229)
+Mother: Laura Eloise Lessard (born 1898-07-22, died um 1975) (Gramps ID: I0190)
+Marriage Marriage of Garrett, William Walker and Lessard, Laura Eloise
+Children:
+- Carmen Eloise Garrett (born 1923-12-08, died 1997-03-25) (Gramps ID: I0230)
+- William Forest Garrett (born 1927-05-13) (Gramps ID: I0234)
+- Lloyd Willis Garrett (born 1936-08-29) (Gramps ID: I0238)
+
+Type: family
+Gramps ID: F0202
+Relationship type: Married
+Father: Abraham Wallace (Gramps ID: I0695)
+Mother: Marcy Greene (Gramps ID: I0696)
+Marriage Marriage of Wallace, Abraham and Greene, Marcy
+Children:
+- Joseph Hopkins (born 1786-05-11) (Gramps ID: I0569)
+
+Type: family
+Gramps ID: F0170
+Relationship type: Married
+Father: John Jr. Douglas (born um 1761) (Gramps ID: I0577)
+Mother: Elizabeth Johnson (Gramps ID: I0603)
+Marriage: 1787-04-09 in Lock Haven, PA, USA - Marriage of Douglas, John Jr. and Johnson, Elizabeth
+Children:
+- Joseph Douglas (born 1787-09-07, died 1857-03-09) (Gramps ID: I0604)
+- Abraham Douglas (Gramps ID: I1505)
+- Jacob Douglas (Gramps ID: I1506)
+- Samuel Douglas (Gramps ID: I1507)
+- John Douglas (Gramps ID: I1508)
+- Douglas (Gramps ID: I1509)
+
+Type: family
+Gramps ID: F0575
+Relationship type: Married
+Father: Thomas Michael McCoy (born 1940-07-06) (Gramps ID: I1791)
+Mother: Mary Howell (born 1945-11-17) (Gramps ID: I1793)
+Marriage: 1969-09-09 in Oneonta, Otsego, NY, USA - Marriage of McCoy, Thomas Michael and Howell, Mary
+Children:
+- Celine Bridget McCoy (born 1971-01-20) (Gramps ID: I1794)
+- Canice Oliver McCoy (born 1975-07-18) (Gramps ID: I1797)
+- Paula McCoy (born 1979-02-07, died 1983-07-03) (Gramps ID: I1798)
+- Kieran Thomas Obrien (born 1981-09-03) (Gramps ID: I1799)
+- Orla Sarah McCoy (born 1984-04-12) (Gramps ID: I1800)
+
+Type: family
+Gramps ID: F0031
+Relationship type: Married
+Father: Eugene Stanley, Jr. Garner (Gramps ID: I0135)
+Mother: Josephine Pelletier (born 1922-09-07, died 1998-09-15) (Gramps ID: I0174)
+Marriage Marriage of Garner, Eugene Stanley, Jr. and Pelletier, Josephine
+Children:
+- Francis William Garner (born 1945-01-03) (Gramps ID: I0176)
+- Richard Eugene Garner (born 1947-02-28) (Gramps ID: I0177)
+- Michael Stanley Garner (born 1948-06-12) (Gramps ID: I0178)
+- Barbara Jo Garner (born 1949-11-08) (Gramps ID: I0179)
+- Kathryn Mary Garner (born 1952-09-10) (Gramps ID: I0180)
+- Peter George Garner (born 1954-08-05) (Gramps ID: I0181)
+- Bernadette Garner (born 1957-08-31) (Gramps ID: I0182)
+- Louella Marie Garner (Gramps ID: I0183)
+- Cecilia Garner (born 1960-07-14) (Gramps ID: I0184)
+- Mark Gerard Garner (born 1962-10-16) (Gramps ID: I0185)
+- John Joseph Garner (born 1961-08-15) (Gramps ID: I0186)
+- Margaret Ann Garner (born 1951-07-18, died 1952-02-10) (Gramps ID: I1039)
+
+Type: family
+Gramps ID: F0282
+Relationship type: Married
+Father: Dennis ĐĄĐ”ŃгДДĐČ (Gramps ID: I0914)
+Mother: Kathryn Mary Garner (born 1952-09-10) (Gramps ID: I0180)
+Marriage: 1975-02-08 in Ottawa, La Salle, IL, USA - Marriage of ĐĄĐ”ŃгДДĐČ, Dennis and Garner, Kathryn Mary
+Children:
+- Jon Dennis ĐĄĐ”ŃгДДĐČ (born 1978-02-10) (Gramps ID: I1056)
+- Adria Maria ĐĄĐ”ŃгДДĐČ (born 1971-06-01) (Gramps ID: I1060)
+- Jacqueline Denise ĐĄĐ”ŃгДДĐČ (born 1981-01-18) (Gramps ID: I1061)
+- Joshua David ĐĄĐ”ŃгДДĐČ (born 1984-04-07) (Gramps ID: I1062)
+
+Type: family
+Gramps ID: F0195
+Relationship type: Married
+Father: Joseph Christiansen (born 1655-03-01, died 1726-01) (Gramps ID: I0677)
+Mother: Joanna Allen (born 1670-08, died 1670-08) (Gramps ID: I0678)
+Marriage: 1687-01-16 in Poplar Bluff, MO, USA - Marriage of Christiansen, Joseph and Allen, Joanna
+Children:
+- Hannah Christiansen (born 1688-02-04, died 1742-06-26) (Gramps ID: I0679)
+
+Type: family
+Gramps ID: F0196
+Relationship type: Married
+Father: Capt. Andrew Warner (born 1684-01-20, died 1754-01-11) (Gramps ID: I0509)
+Mother: Hannah Christiansen (born 1688-02-04, died 1742-06-26) (Gramps ID: I0679)
+Marriage: 1705-05-22 in Lake County, IL, USA - Marriage of Warner, Capt. Andrew and Christiansen, Hannah
+Children:
+- Edward Warner (born 1713-01-06, died 1776-09-27) (Gramps ID: I0510)
+- Johanna Warner (Gramps ID: I1951)
+- George Warner (born 1709-07-21, died 1709-07-21) (Gramps ID: I1953)
+
+Type: family
+Gramps ID: F0420
+Relationship type: Married
+Father: Peter Shelton (Gramps ID: I1284)
+Mother: Caroline Farmer (born 1818, died 1818) (Gramps ID: I1283)
+Marriage Marriage of Shelton, Peter and Farmer, Caroline
+
+Type: family
+Gramps ID: F0175
+Relationship type: Married
+Father: Cyrus Morris (born 20, died 1852-08-10) (Gramps ID: I0615)
+Mother: Martha Graves (born 1798-08-16, died 1862-12-12) (Gramps ID: I0616)
+Marriage: 1818-09-22 in Greenville, NC, USA - Marriage of Morris, Cyrus and Graves, Martha
+Children:
+- Jane Morris (born 1822-11-20, died 1877-04-23) (Gramps ID: I0084)
+- Roland Morris (born 1824, died 1824) (Gramps ID: I1978)
+- Carlisle Morris (born 1830, died 1830) (Gramps ID: I1979)
+- Cyrus Morris (born 1832, died 1832) (Gramps ID: I1980)
+- Robert Morris (born 1835, died 1835) (Gramps ID: I1981)
+- Martha Morris (born 1837, died 1837) (Gramps ID: I1982)
+- Mary Morris (born 1839, died 1839) (Gramps ID: I1983)
+- John Morris (born 1841, died 1841) (Gramps ID: I1984)
+
+Type: family
+Gramps ID: F0679
+Relationship type: Married
+Father: James Park (Gramps ID: I0470)
+Children:
+- Susannah Park (born 1871-04-28, died 1871-04-28) (Gramps ID: I0468)
+
+Type: family
+Gramps ID: F0729
+Relationship type: Married
+Father: Rodriquez (Gramps ID: I1709)
+Children:
+- William M. Rodriquez (born 1785-08-08) (Gramps ID: I0597)
+- John Rodriquez (born 1849-12-25, died 1849-12-25) (Gramps ID: I1710)
+- Peter Rodriquez (Gramps ID: I1722)
+- Mary Rodriquez (born 1770-03-03, died 1770-03-03) (Gramps ID: I1723)
+- Mordica Rodriquez (born 1772-01-06, died 1853-07) (Gramps ID: I1725)
+- Charles Rodriquez (Gramps ID: I1728)
+- James Rodriquez (born 1776-07-22, died 1776-07-22) (Gramps ID: I1729)
+- Richard Rodriquez (born 1778-07-31, died 1778-07-31) (Gramps ID: I1730)
+- Margaret Rodriquez (born 1781-03-05, died 1781-03-05) (Gramps ID: I1732)
+- Thomas Rodriquez (Gramps ID: I1733)
+- Elizabeth Rodriquez (Gramps ID: I1734)
+
+Type: family
+Gramps ID: F0559
+Relationship type: Married
+Father: Mordica Rodriquez (born 1772-01-06, died 1853-07) (Gramps ID: I1725)
+Mother: Jane ĐĐ°Đ·Đ°ĐșĐŸĐČ (born 1768-01-04, died 1828-12-21) (Gramps ID: I1726)
+Marriage: 1793-10-20 - Marriage of Rodriquez, Mordica and ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+
+Type: family
+Gramps ID: F0560
+Relationship type: Married
+Father: Mordica Rodriquez (born 1772-01-06, died 1853-07) (Gramps ID: I1725)
+Mother: Katherine ĐĐŸŃĐŸĐœĐŸĐČ (born 1818, died 1818) (Gramps ID: I1727)
+Marriage: 1849-02-02 in Augusta, ME, USA - Marriage of Rodriquez, Mordica and ĐĐŸŃĐŸĐœĐŸĐČ, Katherine
+
+Type: family
+Gramps ID: F0032
+Relationship type: Married
+Father: Lawrence Paul Hale (born 1950-10-30) (Gramps ID: I0118)
+Mother: Anne Therese Garner (born 1950-09-10) (Gramps ID: I0016)
+Marriage: 1973-09-15 in Ottawa, La Salle, IL, USA - Marriage of Hale, Lawrence Paul and Garner, Anne Therese
+Children:
+- Joseph Brendan Hale (born 1975-07-17) (Gramps ID: I0119)
+- Michael Patrick Hale (born 1977-07-27) (Gramps ID: I0120)
+- Gina Marie Hale (born 1982-10-03) (Gramps ID: I0121)
+- Jeffrey Brian Hale (born 1988-12-23) (Gramps ID: I0122)
+
+Type: family
+Gramps ID: F0315
+Relationship type: Married
+Father: John Howell (Gramps ID: I0988)
+Mother: Sarah Yates (Gramps ID: I0989)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Howell, John and Yates, Sarah
+Children:
+- Bridget Holt (born 1829-12, died 1904-02-14) (Gramps ID: I0092)
+
+Type: family
+Gramps ID: F0408
+Relationship type: Married
+Father: Elias Webb (Gramps ID: I1218)
+Mother: Nancy Gibbs (Gramps ID: I1219)
+Marriage Marriage of Webb, Elias and Gibbs, Nancy
+Children:
+- Andrew Webb (born 1788, died vor 1850) (Gramps ID: I0990)
+
+Type: family
+Gramps ID: F0011
+Relationship type: Married
+Father: Martin Bogarte Warner (born 1889-08-11, died 1961-08-12) (Gramps ID: I0020)
+Mother: Clara Belle Page (born 1889-10-14, died 1969-12-20) (Gramps ID: I0037)
+Marriage: 1920-02-22 in Oskaloosa, Mahaska, IA, USA - Marriage of Warner, Martin Bogarte and Page, Clara Belle
+Children:
+- George Edward Warner (born 1926-11-01) (Gramps ID: I0007)
+- David Luther Warner (born 1921-05-19) (Gramps ID: I0127)
+- Donald Louis Warner (born 1922-08-22, died 1979-08-09) (Gramps ID: I0128)
+- Robert Eugene Warner (born 1923-10-08) (Gramps ID: I0129)
+- Richard Kenneth Warner (born 1925-01-17) (Gramps ID: I0130)
+- Andrew Vincent Walker (born 1928-01-12) (Gramps ID: I0131)
+
+Type: family
+Gramps ID: F0023
+Relationship type: Married
+Father: David Luther Warner (born 1921-05-19) (Gramps ID: I0127)
+Mother: Merida Lorene Robbins (born 1924-03-07) (Gramps ID: I0145)
+Marriage: 1943-11-06 in Crawfordsville, Montgomery, IN, USA - Marriage of Warner, David Luther and Robbins, Merida Lorene
+Children:
+- David Warren Warner (born 1945-02-13) (Gramps ID: I0152)
+- Harold Lowell Warner (born 1946-12-21) (Gramps ID: I0153)
+- Martha Ellen Warner (born 1950-02-07) (Gramps ID: I0154)
+- Laura Gail Warner (born 1952-09-27) (Gramps ID: I0300)
+
+Type: family
+Gramps ID: F0495
+Relationship type: Married
+Father: John Sr. Douglas (born 1739-11-25, died 1821-10) (Gramps ID: I0574)
+Mother: Christena Wiseman Larson (born 1834-11-20, died 1834-11-18) (Gramps ID: I1519)
+Marriage: 1806-07-28 in Sterling, Logan, CO, USA - Marriage of Douglas, John Sr. and Larson, Christena Wiseman
+
+Type: family
+Gramps ID: F0274
+Relationship type: Married
+Father: Roger Joseph Boucher (born 1940-01-04) (Gramps ID: I0896)
+Mother: Sylvia Louise Page (born 1939-08-21) (Gramps ID: I0895)
+Marriage Marriage of Boucher, Roger Joseph and Page, Sylvia Louise
+Children:
+- Cynthia Louise Boucher (born 1961-12-05) (Gramps ID: I0902)
+- Steven Joseph Boucher (born 1963-07-17) (Gramps ID: I0904)
+
+Type: family
+Gramps ID: F0277
+Relationship type: Married
+Father: Steven Joseph Boucher (born 1963-07-17) (Gramps ID: I0904)
+Mother: Arlene Nelson (Gramps ID: I0905)
+Marriage Marriage of Boucher, Steven Joseph and Nelson, Arlene
+Children:
+- Kyle Joseph Boucher (born 1991-04-16) (Gramps ID: I0906)
+
+Type: family
+Gramps ID: F0342
+Relationship type: Married
+Father: Jason Richard Garner (born 1975-10-20) (Gramps ID: I1047)
+Mother: ?? Harper (Gramps ID: I1049)
+Marriage Marriage of Garner, Jason Richard and Harper, ??
+Children:
+- Victoria Laine Garner (Gramps ID: I1048)
+- Vanichia Elaine Garner (born 1993-10-01) (Gramps ID: I1050)
+
+Type: family
+Gramps ID: F0168
+Relationship type: Married
+Father: John Sr. Douglas (born 1739-11-25, died 1821-10) (Gramps ID: I0574)
+Mother: Ann Delilah "Tilley" Moran (died 1801) (Gramps ID: I0576)
+Marriage: um 1760 - Marriage of Douglas, John Sr. and Moran, Ann Delilah "Tilley"
+Children:
+- John Jr. Douglas (born um 1761) (Gramps ID: I0577)
+- Catherine Douglas (Gramps ID: I1520)
+- Johnathon Douglas (Gramps ID: I1521)
+- Frederick Douglas (Gramps ID: I1522)
+- Elizabeth Douglas (Gramps ID: I1523)
+- Barbara Douglas (Gramps ID: I1524)
+- Peter Douglas (Gramps ID: I1525)
+
+Type: family
+Gramps ID: F0166
+Relationship type: Married
+Father: John Reeves (Gramps ID: I0601)
+Mother: Mary McCarthy (Gramps ID: I0602)
+Marriage in Loveland, Larimer, CO, USA - Marriage of Reeves, John and McCarthy, Mary
+Children:
+- James Reeves (born 1819-03-24, died 1897-07-11) (Gramps ID: I0101)
+- John Reeves (Gramps ID: I1929)
+- Mathew Reeves (Gramps ID: I1930)
+- William Reeves (Gramps ID: I1931)
+- Elizabeth Reeves (Gramps ID: I1932)
+- Bridget Reeves (Gramps ID: I1934)
+- Ann Reeves (born nach 1901, died nach 1901) (Gramps ID: I1936)
+- Catherine Reeves (born vor 1901, died vor 1901) (Gramps ID: I1938)
+
+Type: family
+Gramps ID: F0620
+Relationship type: Married
+Father: M. Perry (Gramps ID: I1933)
+Mother: Elizabeth Reeves (Gramps ID: I1932)
+Marriage Marriage of Perry, M. and Reeves, Elizabeth
+
+Type: family
+Gramps ID: F0181
+Relationship type: Married
+Father: Harold Andrews (Gramps ID: I0638)
+Mother: Cecile Elizabeth Garner (born 1908-03-13, died 1975-03-22) (Gramps ID: I0631)
+Marriage: 1931-07-05 - Marriage of Andrews, Harold and Garner, Cecile Elizabeth
+Children:
+- William Arthur Andrews (born 1933-11-24) (Gramps ID: I0659)
+
+Type: family
+Gramps ID: F0079
+Relationship type: Married
+Father: Thomas Fernandez (born 1825-11-27, died 1902-11-26) (Gramps ID: I0097)
+Mother: Catherine Ortega (born 1843, died 1876) (Gramps ID: I0098)
+Marriage: 1863-04-27 in Wabash, Wabash, IN, USA - Marriage of Fernandez, Thomas and Ortega, Catherine
+Children:
+- Eleanor (Nellie) Therese Landry (born 1864-12, died 1935-12-12) (Gramps ID: I0050)
+- Mollie Landry (Gramps ID: I0249)
+- Kitty Landry (Gramps ID: I0250)
+
+Type: family
+Gramps ID: F0056
+Relationship type: Married
+Father: Daniel Mortensen (born 1951-11-21) (Gramps ID: I0311)
+Mother: Sarah Jane Warner (born 1953-09-23) (Gramps ID: I0157)
+Marriage: 1975-06-01 in Lafayette, Tippecanoe, IN, USA - Marriage of Mortensen, Daniel and Warner, Sarah Jane
+Children:
+- Robert Alan Mortensen (born 1980-01-04) (Gramps ID: I0312)
+- Maria Christine Mortensen (born 1981-07-01) (Gramps ID: I0313)
+
+Type: family
+Gramps ID: F0317
+Relationship type: Married
+Father: Delgado (Gramps ID: I0992)
+Mother: Mary A. Tyler (born 1785) (Gramps ID: I0993)
+Marriage Marriage of Delgado and Tyler, Mary A.
+Children:
+- Mary Ann Delgado (born 1825) (Gramps ID: I0995)
+- Catherine Delgado (Gramps ID: I1666)
+
+Type: family
+Gramps ID: F0318
+Relationship type: Married
+Father: Alexander Webb (born 1821, died 1854-02-02) (Gramps ID: I0994)
+Mother: Mary Ann Delgado (born 1825) (Gramps ID: I0995)
+Marriage: 1845-01-23 in Charleston, SC, USA - Marriage of Webb, Alexander and Delgado, Mary Ann
+Children:
+- Livingstone Martin Webb (born 1846-02-11, died 1902-04-10) (Gramps ID: I0068)
+- Joseph LeRoy Webb (born 1847-10, died 1847-10) (Gramps ID: I1663)
+- Lucinda E. Webb (Gramps ID: I1664)
+- Homer Webb (Gramps ID: I1665)
+
+Type: family
+Gramps ID: F0316
+Relationship type: Married
+Father: Andrew Webb (born 1788, died vor 1850) (Gramps ID: I0990)
+Mother: Margaret Margarite? Webb (born 1800, died nach 1860) (Gramps ID: I0991)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Webb, Andrew and Webb, Margaret Margarite?
+Children:
+- Alexander Webb (born 1821, died 1854-02-02) (Gramps ID: I0994)
+- Robert Webb (Gramps ID: I1225)
+- R. Eaken Webb (Gramps ID: I1226)
+- Nancy Webb (Gramps ID: I1227)
+- Mary Webb (born 1827-01-31, died 1827-01-31) (Gramps ID: I1228)
+- William John Webb (born 1829-07-14, died 1888-04-17) (Gramps ID: I1229)
+- Sarah Margarite Webb (born 1832, died 1832) (Gramps ID: I1230)
+- Charles Leroy Boyd Webb (born 1834, died 1834) (Gramps ID: I1231)
+- John McCrea Webb (born 1837, died 1837) (Gramps ID: I1232)
+- James McPheeters Webb (Gramps ID: I1233)
+- Newton Kitridge Webb (born 1842-10-13, died 1912-07-28) (Gramps ID: I1234)
+
+Type: family
+Gramps ID: F0212
+Relationship type: Married
+Father: Joseph Louis(Jr.) Benson (born 1702-05-06) (Gramps ID: I0731)
+Mother: Jeanne Richard (born 1703, died 1792) (Gramps ID: I0732)
+Marriage: 1728 - Marriage of Benson, Joseph Louis(Jr.) and Richard, Jeanne
+Children:
+- Martha Ellen M. Benson (born um 1747, died vor 1806) (Gramps ID: I0478)
+- Col. Joseph Benson (born 1742-05-07, died 1742-05-07) (Gramps ID: I0770)
+- Walter Benson (Gramps ID: I1594)
+- Hugh Benson (Gramps ID: I1596)
+- Robert Benson (Gramps ID: I1598)
+- Samuel Sr. Benson (born 1740-03, died 1740-03) (Gramps ID: I1599)
+- Mary Benson (Gramps ID: I1601)
+- Elizabeth Benson (Gramps ID: I1603)
+- Nancy Benson (Gramps ID: I1605)
+
+Type: family
+Gramps ID: F0515
+Relationship type: Married
+Father: Samuel Sr. Benson (born 1740-03, died 1740-03) (Gramps ID: I1599)
+Mother: Jane Wong (Gramps ID: I1600)
+Marriage Marriage of Benson, Samuel Sr. and Wong, Jane
+
+Type: family
+Gramps ID: F0004
+Relationship type: Married
+Father: Warren W. Warner (born 1867-01-23, died 1919-03-10) (Gramps ID: I0021)
+Mother: Abigail Ball (born 1869-07-08, died 1942-04-21) (Gramps ID: I0022)
+Marriage: 1888-08-09 in Springfield, Sangamon, IL, USA - Marriage of Warner, Warren W. and Ball, Abigail
+Children:
+- Martin Bogarte Warner (born 1889-08-11, died 1961-08-12) (Gramps ID: I0020)
+- Julia Angeline Warner (born 1892-09-25, died 1970-12-17) (Gramps ID: I0137)
+- Mary Grace Elizabeth Warner (born 1906-09-05, died 1993-06-06) (Gramps ID: I0138)
+
+Type: family
+Gramps ID: F0663
+Relationship type: Married
+Father: Alfred Joseph (Gramps ID: I2071)
+Mother: Minerva Moreno (born 1830-03-17, died 1830-03-17) (Gramps ID: I2070)
+Marriage Marriage of Joseph, Alfred and Moreno, Minerva
+Children:
+- Joseph (Gramps ID: I2072)
+- Joseph (Gramps ID: I2073)
+- Joseph (Gramps ID: I2074)
+- Joseph (Gramps ID: I2075)
+- Joseph (Gramps ID: I2076)
+
+Type: family
+Gramps ID: F0043
+Relationship type: Married
+Father: Francis Vincent Reed (born 1857-05-02, died 1945-03-02) (Gramps ID: I0047)
+Mother: Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ (born 1864-01-27, died 1903-11-27) (Gramps ID: I0048)
+Marriage: 1883-09-12 in Ottawa, La Salle, IL, USA - Marriage of Reed, Francis Vincent and йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Children:
+- Frances Lucille (Babe) Reed (born 1902-07-08, died 1988-08-09) (Gramps ID: I0053)
+- Mary Elizabeth Kristensen (born 1887-06-14, died 1918-10-22) (Gramps ID: I0580)
+- Sarah "Sr. Sabina" Kristensen (born 1885-06-25, died 1926-01-04) (Gramps ID: I0582)
+- Catherine Virginia Kristensen (born 1892-02-22, died 1926-03-01) (Gramps ID: I0583)
+- John Francis"Chick" Kristensen (born 1889-10-10, died 1938-10-23) (Gramps ID: I0585)
+- Miles Joseph"Dutch" Kristensen (born 1897-01-01, died 1971-10-19) (Gramps ID: I0586)
+- Margaret Agnes"Maudy" Kristensen (born 1894-12-02, died 1974-07-21) (Gramps ID: I0587)
+- Anna June Kristensen (born 1899-09-19, died 1988-11-17) (Gramps ID: I0589)
+
+Type: family
+Gramps ID: F0151
+Relationship type: Married
+Father: William Sr. Rhodes (Gramps ID: I0590)
+Mother: Anna June Kristensen (born 1899-09-19, died 1988-11-17) (Gramps ID: I0589)
+Marriage Marriage of Rhodes, William Sr. and Kristensen, Anna June
+Children:
+- William Jr. Rhodes (Gramps ID: I0713)
+- Donald E. Rhodes (born 1928, died um 1988) (Gramps ID: I0714)
+- Mary Jane Rhodes (born 1922-05-16) (Gramps ID: I0715)
+- Catherine Rhodes (Gramps ID: I1129)
+
+Type: family
+Gramps ID: F0229
+Relationship type: Married
+Father: John Page (Gramps ID: I0062)
+Mother: Isabella Kaczmarek (died 1904-04-21) (Gramps ID: I0063)
+Marriage in Charleston, WV, USA - Marriage of Page, John and Kaczmarek, Isabella
+Children:
+- David Page (born 1850-01-01, died 1922-10-13) (Gramps ID: I0038)
+- Elizabeth Page (born 1841, died 1915) (Gramps ID: I1376)
+- Robert Page (born 1847-06-11, died 1928-03-22) (Gramps ID: I1387)
+- Margaret Page (born 1851-02-10, died 1925-11-22) (Gramps ID: I1389)
+- John James Page (died 1943-11-18) (Gramps ID: I1406)
+- Anna Page (born 1867, died 1867) (Gramps ID: I1423)
+- Mary Page (born 1880, died 1880) (Gramps ID: I1434)
+- Rebecca Page (born 1880, died 1880) (Gramps ID: I1435)
+- Belle Page (Gramps ID: I1436)
+- Matilda Page (Gramps ID: I1438)
+
+Type: family
+Gramps ID: F0461
+Relationship type: Married
+Father: John James Page (died 1943-11-18) (Gramps ID: I1406)
+Mother: Margaret Mcdaniel (Gramps ID: I1407)
+Marriage Marriage of Page, John James and Mcdaniel, Margaret
+Children:
+- Maude Page (born 1900-09-21, died 1987-03-24) (Gramps ID: I1418)
+- Elmer Page (Gramps ID: I1419)
+- John Page (Gramps ID: I1420)
+- Edith (Dolly) Page (Gramps ID: I1421)
+
+Type: family
+Gramps ID: F0462
+Relationship type: Married
+Father: John James Page (died 1943-11-18) (Gramps ID: I1406)
+Mother: Minnie Adkins (Gramps ID: I1408)
+Marriage: 1908 in Palm Coast, Flagler, FL, USA - Marriage of Page, John James and Adkins, Minnie
+Children:
+- Ferne Page (Gramps ID: I1409)
+- Robert Francis Page (Gramps ID: I1411)
+- Florence Page (Gramps ID: I1412)
+- George Kenneth (Red) Page (born 1914-09-28, died 1936-03-18) (Gramps ID: I1414)
+- Everett Glenn (Ezra) Page (Gramps ID: I1415)
+- Mildred Page (Gramps ID: I1416)
+- Richard C. Page (born 1974-11, died 1974-11) (Gramps ID: I1642)
+
+Type: family
+Gramps ID: F0034
+Relationship type: Married
+Father: Walter Matthew MarĂn (born 1893-12-29, died 1969-01-16) (Gramps ID: I0054)
+Mother: Mary Cecilia Boucher (born 1890-02-17, died 1945-06-03) (Gramps ID: I0055)
+Marriage: 1920-06-23 in Worthington, MN, USA - Marriage of MarĂn, Walter Matthew and Boucher, Mary Cecilia
+Children:
+- Mary Anne MarĂn (born 1927-01-13) (Gramps ID: I0011)
+- Elizabeth Therese MarĂn (born 1928-10-11, died 1928-12-29) (Gramps ID: I0134)
+- Joseph William MarĂn (born 1920-10-27) (Gramps ID: I0139)
+
+Type: family
+Gramps ID: F0026
+Relationship type: Married
+Father: Richard Kenneth Warner (born 1925-01-17) (Gramps ID: I0130)
+Mother: Marylou ĐДлŃĐœĐžĐșĐŸĐČ (born 1930-05-20) (Gramps ID: I0143)
+Marriage: 1949-06-05 in Laurinburg, NC, USA - Marriage of Warner, Richard Kenneth and ĐДлŃĐœĐžĐșĐŸĐČ, Marylou
+Children:
+- Stephanie Sue Warner (born 1950-06-23) (Gramps ID: I0159)
+- Stephen Paul Warner (born 1951-11-04) (Gramps ID: I0160)
+- Stuart Bogarte Warner (born 1955-12-09) (Gramps ID: I0161)
+- Stanley Louis Warner (born 1963-06-17) (Gramps ID: I0162)
+
+Type: family
+Gramps ID: F0035
+Relationship type: Married
+Father: Moses Wallace MarĂn (born 1862-04-08, died 1909-08-08) (Gramps ID: I0049)
+Mother: Eleanor (Nellie) Therese Landry (born 1864-12, died 1935-12-12) (Gramps ID: I0050)
+Marriage: 1885-10-15 in Worthington, MN, USA - Marriage of MarĂn, Moses Wallace and Landry, Eleanor (Nellie) Therese
+Children:
+- Walter Matthew MarĂn (born 1893-12-29, died 1969-01-16) (Gramps ID: I0054)
+- Frank MarĂn (died 1956-10) (Gramps ID: I0198)
+- Albert MarĂn (born 1895-08-27, died 1965-06-14) (Gramps ID: I0199)
+- Thomas Willis MarĂn (born 1897-06-21, died 1962-06-28) (Gramps ID: I0200)
+- Wilbur MarĂn (born 1906-10-22, died 1906-10) (Gramps ID: I0201)
+- Lilla Estella MarĂn (born 1883-02-26, died 1961-02-25) (Gramps ID: I0202)
+- Nellie MarĂn (Gramps ID: I0203)
+
+Type: family
+Gramps ID: F0583
+Relationship type: Married
+Father: Duncan (born um 1996, died um 1996) (Gramps ID: I1816)
+Mother: Joan Reed (born 1943-05-13) (Gramps ID: I1809)
+Marriage Marriage of Duncan and Reed, Joan
+Children:
+- Michael Duncan (born um 1978) (Gramps ID: I1817)
+- Noella Duncan (Gramps ID: I1818)
+- Clare Duncan (Gramps ID: I1819)
+- Colin Duncan (Gramps ID: I1820)
+
+Type: family
+Gramps ID: F0052
+Relationship type: Married
+Father: John Harry Nguyen (born 1947-11-25) (Gramps ID: I0323)
+Mother: Sharon Lynette Walker (born 1951-11-24) (Gramps ID: I0163)
+Marriage: 1980-01-11 - Marriage of Nguyen, John Harry and Walker, Sharon Lynette
+Children:
+- Laurie Ann Nguyen (born 1981-07-04) (Gramps ID: I0324)
+- Elizabeth Diane Nguyen (born 1982-11-10) (Gramps ID: I0325)
+
+Type: family
+Gramps ID: F0450
+Relationship type: Married
+Father: ?? Mack (Gramps ID: I1362)
+Mother: Elsie LĂ©vesque (born 1893-01, died 1893-01) (Gramps ID: I1361)
+Marriage in Reno-Sparks, NV, USA - Marriage of Mack, ?? and LĂ©vesque, Elsie
+
+Type: family
+Gramps ID: F0305
+Relationship type: Married
+Father: George Payne (born 1747-08-22, died 1821-07-09) (Gramps ID: I0955)
+Mother: Frances Diaz (born 1761-08-07, died 1851-10-06) (Gramps ID: I0970)
+Marriage: 1783-12-15 in De Ridder, LA, USA - Marriage of Payne, George and Diaz, Frances
+Children:
+- Jane Coppage Payne (died 1873-06-07) (Gramps ID: I0722)
+- George Payne (Gramps ID: I1884)
+- Fielding Payne (born 1788-01-03, died 1788-01-03) (Gramps ID: I1885)
+- Winifred Payne (Gramps ID: I1887)
+- Nancy Payne (Gramps ID: I1889)
+- Lucretia Payne (Gramps ID: I1890)
+- Moses Payne (Gramps ID: I1891)
+- James Payne (Gramps ID: I1892)
+- Willis Payne (Gramps ID: I1893)
+- Alexander Payne (Gramps ID: I1894)
+
+Type: family
+Gramps ID: F0353
+Relationship type: Married
+Father: Thomas Fernandez (born 1787) (Gramps ID: I0099)
+Mother: Sarah Holloway (born 1795-09-10) (Gramps ID: I1076)
+Marriage: 1820-02-13 in Batesville, Independence, AR, USA - Marriage of Fernandez, Thomas and Holloway, Sarah
+Children:
+- Thomas Fernandez (born 1825-11-27, died 1902-11-26) (Gramps ID: I0097)
+
+Type: family
+Gramps ID: F0073
+Relationship type: Married
+Father: Thomas Fernandez (born 1825-11-27, died 1902-11-26) (Gramps ID: I0097)
+Mother: Honora Couture (Gramps ID: I0262)
+Marriage Marriage of Fernandez, Thomas and Couture, Honora
+Children:
+- Sarah Landry (born um 1857, died um 1857) (Gramps ID: I0261)
+- Michael Fernandez (born 1855-05-27, died 1855-05-27) (Gramps ID: I1790)
+
+Type: family
+Gramps ID: F0137
+Relationship type: Married
+Father: Jonathan Burns (Gramps ID: I0549)
+Mother: Dorcas Rubio (Gramps ID: I0550)
+Marriage Marriage of Burns, Jonathan and Rubio, Dorcas
+Children:
+- Margaret Burns (born 1781-07-22, died 1849-01-17) (Gramps ID: I0024)
+
+Type: family
+Gramps ID: F0233
+Relationship type: Married
+Father: Jacob Earl Wheeler (Gramps ID: I0778)
+Mother: Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ (born 1947-01-22) (Gramps ID: I0232)
+Marriage in Blackfoot, Bingham, ID, USA - Marriage of Wheeler, Jacob Earl and ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+Children:
+- Richard Max Wheeler (born 1967-10-02) (Gramps ID: I0779)
+- Lynnett Diane Wheeler (born 1970-10-05) (Gramps ID: I0780)
+- Jason Earl Wheeler (born 1977-01-04) (Gramps ID: I0781)
+
+Type: family
+Gramps ID: F0110
+Relationship type: Married
+Father: Thomas Sr. James (born 1745) (Gramps ID: I0477)
+Mother: Martha Ellen M. Benson (born um 1747, died vor 1806) (Gramps ID: I0478)
+Marriage: 1767 in Mayfield, Graves, KY, USA - Marriage of James, Thomas Sr. and Benson, Martha Ellen M.
+Children:
+- Jane James (died 1846-09-03) (Gramps ID: I0476)
+- Hugh Jr. James (born 1768, died 1768) (Gramps ID: I1542)
+- Molly James (born 1770, died 1770) (Gramps ID: I1543)
+- Joseph James (born 1773-03-03, died 1824) (Gramps ID: I1544)
+- Thomas James (Gramps ID: I1545)
+- Isaac James (Gramps ID: I1546)
+- Walter Crockett James (Gramps ID: I1547)
+- Patsy James (Gramps ID: I1548)
+
+Type: family
+Gramps ID: F0536
+Relationship type: Married
+Father: Walter Crockett James (Gramps ID: I1547)
+Mother: Nancy HernĂĄndez (Gramps ID: I1649)
+Marriage Marriage of James, Walter Crockett and HernĂĄndez, Nancy
+
+Type: family
+Gramps ID: F0537
+Relationship type: Married
+Father: Walter Crockett James (Gramps ID: I1547)
+Mother: Margaret ĐĐ°Ń
Đ°ŃĐŸĐČ (Gramps ID: I1650)
+Marriage Marriage of James, Walter Crockett and ĐĐ°Ń
Đ°ŃĐŸĐČ, Margaret
+
+Type: family
+Gramps ID: F0602
+Relationship type: Married
+Father: Fielding Payne (born 1788-01-03, died 1788-01-03) (Gramps ID: I1885)
+Mother: Dorcas C. Lawrence (Gramps ID: I1886)
+Marriage: 1843-01-27 - Marriage of Payne, Fielding and Lawrence, Dorcas C.
+
+Type: family
+Gramps ID: F0069
+Relationship type: Married
+Father: Jack D. Alvarado (born 1947-06) (Gramps ID: I0329)
+Mother: Shirley Kay Warner (born 1957-10-14) (Gramps ID: I0165)
+Marriage Marriage of Alvarado, Jack D. and Warner, Shirley Kay
+Children:
+- Michelle Lynn Alvarado (born 1968-09-30) (Gramps ID: I0330)
+- Douglas David Alvarado (born 1971-04-15) (Gramps ID: I0331)
+- Andrew David Alvarado (born 1984-04-04) (Gramps ID: I0332)
+- Matthew Vincent Alvarado (born 1986-04-05) (Gramps ID: I0333)
+
+Type: family
+Gramps ID: F0290
+Relationship type: Married
+Father: Bendicht Blanco (born 1555, died 1555) (Gramps ID: I0926)
+Mother: Bendichtli Fisher (born 1559, died 1559) (Gramps ID: I0925)
+Marriage: 1580-11-03 - Marriage of Blanco, Bendicht and Fisher, Bendichtli
+Children:
+- Hans Blanco (born 1582-01-07, died 1582-01-07) (Gramps ID: I0927)
+
+Type: family
+Gramps ID: F0062
+Relationship type: Married
+Father: William Forest Garrett (born 1927-05-13) (Gramps ID: I0234)
+Mother: Wilma Mae Perkins (born 1926-03-12, died 1926-03-12) (Gramps ID: I0235)
+Marriage: 1947-01-25 - Marriage of Garrett, William Forest and Perkins, Wilma Mae
+Children:
+- Doris Mae Garrett (born 1950-08-22) (Gramps ID: I0236)
+- Keith William Garrett (born 1952-11-01) (Gramps ID: I0237)
+- Terry Lee Garrett (born 1956-04-14, died 1998-04-23) (Gramps ID: I0785)
+- Wayne Allen Garrett (born 1961-11-21, died 1967-01) (Gramps ID: I0787)
+
+Type: family
+Gramps ID: F0235
+Relationship type: Married
+Father: Terry Lee Garrett (born 1956-04-14, died 1998-04-23) (Gramps ID: I0785)
+Mother: Gail Holloway (born 1956-09-30) (Gramps ID: I0786)
+Marriage: 1978-11-18 in Americus, Sumter, GA, USA - Marriage of Garrett, Terry Lee and Holloway, Gail
+
+Type: family
+Gramps ID: F0279
+Relationship type: Married
+Father: ?m.MaryJane Evans (Gramps ID: I0716)
+Mother: Mary Jane Rhodes (born 1922-05-16) (Gramps ID: I0715)
+Marriage Marriage of Evans, ?m.MaryJane and Rhodes, Mary Jane
+Children:
+- James Patrick Evans (born 1945-10-02) (Gramps ID: I0717)
+
+Type: family
+Gramps ID: F0280
+Relationship type: Married
+Father: Loren Collins (Gramps ID: I0910)
+Mother: Mary Jane Rhodes (born 1922-05-16) (Gramps ID: I0715)
+Marriage Marriage of Collins, Loren and Rhodes, Mary Jane
+
+Type: family
+Gramps ID: F0143
+Relationship type: Married
+Father: Maj. Christopher Moreno (born 1752-11-23, died 1823-09-14) (Gramps ID: I0060)
+Mother: Mary Bass (died 1823-10-04) (Gramps ID: I0561)
+Marriage: 1775-03-21 - Marriage of Moreno, Maj. Christopher and Bass, Mary
+Children:
+- Aaron Moreno (born 1784-02-05, died 1846-02-18) (Gramps ID: I0061)
+- Christian Moreno (Gramps ID: I2087)
+- Elizabeth Moreno (Gramps ID: I2089)
+- Rosan Moreno (Gramps ID: I2091)
+- John Moreno (born 1782-01-07, died 1782-01-07) (Gramps ID: I2092)
+- Absalom Moreno (born 1786-01-13, died 1838-04-15) (Gramps ID: I2093)
+- Noah Moreno (Gramps ID: I2094)
+- Enoch Moreno (Gramps ID: I2095)
+- Leah Moreno (born 1794-09-10, died 1875-11-05) (Gramps ID: I2096)
+- Delilah Moreno (Gramps ID: I2098)
+- Esau Moreno (born 1790-01-17, died 1790-01-17) (Gramps ID: I2100)
+- Enoch T. Moreno (born 1799-11-29, died 1799-11-29) (Gramps ID: I2104)
+
+Type: family
+Gramps ID: F0670
+Relationship type: Married
+Father: William Chambers (Gramps ID: I2097)
+Mother: Leah Moreno (born 1794-09-10, died 1875-11-05) (Gramps ID: I2096)
+Marriage Marriage of Chambers, William and Moreno, Leah
+
+Type: family
+Gramps ID: F0694
+Relationship type: Married
+Father: Lord Samuel Ferguson (Gramps ID: I0758)
+Children:
+- Virginia Margaret Rice (born 1723, died 1780) (Gramps ID: I0557)
+
+Type: family
+Gramps ID: F0140
+Relationship type: Married
+Father: Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ (died 1771) (Gramps ID: I0555)
+Mother: Virginia Margaret Rice (born 1723, died 1780) (Gramps ID: I0557)
+Marriage: 1740 in Yuba City, Sutter, CA, USA - Marriage of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph and Rice, Virginia Margaret
+Children:
+- Joseph Jr. ĐĐ»ĐŸĐ±ĐžĐœ (born 1756-02-15, died 1801-08-11) (Gramps ID: I0560)
+
+Type: family
+Gramps ID: F0292
+Relationship type: Married
+Father: Peter Jenkins (born 1607, died 1680-10-14) (Gramps ID: I0935)
+Mother: Margaret Marsh (born 1612, died 1680-05-20) (Gramps ID: I0936)
+Marriage: 1629-02-20 - Marriage of Jenkins, Peter and Marsh, Margaret
+Children:
+- Margaret Jenkins (born 1630-02, died 1708-07-25) (Gramps ID: I0939)
+
+Type: family
+Gramps ID: F0467
+Relationship type: Married
+Father: Thomas Cross (Gramps ID: I1424)
+Mother: Anna Page (born 1867, died 1867) (Gramps ID: I1423)
+Marriage Marriage of Cross, Thomas and Page, Anna
+Children:
+- Alta M. Cross (born 1896-07-13, died 1988-05-16) (Gramps ID: I1425)
+- Ralph (Scotty) Cross (Gramps ID: I1427)
+- Loraine (Fanny) Cross (Gramps ID: I1428)
+- Evelyn Cross (Gramps ID: I1429)
+- Louise Cross (Gramps ID: I1430)
+- John Cross (Gramps ID: I1431)
+- Gertrude Cross (born 1911-02-14, died 1992-07-16) (Gramps ID: I1432)
+
+Type: family
+Gramps ID: F0172
+Relationship type: Married
+Father: Joseph Douglas (born 1787-09-07, died 1857-03-09) (Gramps ID: I0604)
+Mother: Grace Carroll (born 1791-12-20, died 1863-02-01) (Gramps ID: I0607)
+Marriage: 1807-10-15 in Rome, Floyd, GA, USA - Marriage of Douglas, Joseph and Carroll, Grace
+Children:
+- Abraham Douglas (born 1821-02-17, died 1901-01-12) (Gramps ID: I0471)
+- Elizabeth Douglas (born 1808-09-20, died 1808-09-20) (Gramps ID: I1489)
+- Julius Gauthier (born 1810-12-20, died 1810-12-20) (Gramps ID: I1490)
+- Jacob Douglas (born 1813-08-21) (Gramps ID: I1491)
+- Catherine Douglas (born 1818-04-09, died 1818-04-09) (Gramps ID: I1492)
+- Alfred Douglas (born 1827-05-01, died 1913-06-26) (Gramps ID: I1493)
+- Ellen Douglas (born 1830-05-24, died 1830-05-24) (Gramps ID: I1494)
+- Lucinda J. Douglas (born 1833-05-06, died 1833-05-06) (Gramps ID: I1495)
+- Samuel Douglas (born 1815-06-19, died 1815-06-19) (Gramps ID: I1496)
+- Susan Douglas (born 1836-12-01, died 1836-12-01) (Gramps ID: I1497)
+- John Douglas (born 1824-10-17) (Gramps ID: I1498)
+
+Type: family
+Gramps ID: F0529
+Relationship type: Married
+Father: Dr. Charles J. ĐĐłĐŸŃĐŸĐČ (Gramps ID: I1633)
+Mother: Edith Mae Page (born 1885-05-27, died 1965-05) (Gramps ID: I0196)
+Marriage in Palatka, Putnam, FL, USA - Marriage of ĐĐłĐŸŃĐŸĐČ, Dr. Charles J. and Page, Edith Mae
+
+Type: family
+Gramps ID: F0300
+Relationship type: Married
+Father: John Schultz (died 1860) (Gramps ID: I0100)
+Mother: Jane Coppage Payne (died 1873-06-07) (Gramps ID: I0722)
+Marriage: 1811-06-21 in De Ridder, LA, USA - Marriage of Schultz, John and Payne, Jane Coppage
+Children:
+- Alfred Franklin(Frank) MarĂn (died 1864-12-25) (Gramps ID: I0093)
+- Willis H. MarĂn (born 1822-11-11, died 1894-01-02) (Gramps ID: I0242)
+- Nancy H. MarĂn (Gramps ID: I0244)
+- Frances Coppage MarĂn (born 1813-03-25, died 1891-10-01) (Gramps ID: I1985)
+
+Type: family
+Gramps ID: F0686
+Relationship type: Married
+Father: Hans Michael Oliver (Gramps ID: I0610)
+Children:
+- Harmonas I Oliver (Gramps ID: I0611)
+
+Type: family
+Gramps ID: F0334
+Relationship type: Married
+Father: Ralph Knudsen (born 1300, died 1343) (Gramps ID: I1022)
+Mother: Isabel Huff (born 1300, died 1300) (Gramps ID: I1023)
+Marriage Marriage of Knudsen, Ralph and Huff, Isabel
+Children:
+- John Knudsen (born 1325, died 1368) (Gramps ID: I1024)
+
+Type: family
+Gramps ID: F0335
+Relationship type: Married
+Father: John Knudsen (born 1325, died 1368) (Gramps ID: I1024)
+Mother: Isabel Huff (born 1300, died 1300) (Gramps ID: I1023)
+Marriage: 1343-10 - Marriage of Knudsen, John and Huff, Isabel
+
+Type: family
+Gramps ID: F0028
+Relationship type: Married
+Father: Earl William ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0141)
+Mother: Dorothy Louise Lessard (born 1926-09-29) (Gramps ID: I0132)
+Marriage: 1948-09-07 in Rockingham County, NH, USA - Marriage of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Earl William and Lessard, Dorothy Louise
+Children:
+- Kathryn Louise ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1948-12-23) (Gramps ID: I0167)
+- Elaine Suzanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1951-10-23) (Gramps ID: I0168)
+- Darrell Edwin ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1953-09-11) (Gramps ID: I0169)
+- Barbara Joanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1955-04-30) (Gramps ID: I0170)
+- Lucinda Elinor ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1958-04-12) (Gramps ID: I0171)
+
+Type: family
+Gramps ID: F0059
+Relationship type: Married
+Father: Paul Allen Harrison (born 1958-10-26) (Gramps ID: I0346)
+Mother: Lucinda Elinor ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1958-04-12) (Gramps ID: I0171)
+Marriage: 1983-10-16 - Marriage of Harrison, Paul Allen and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Lucinda Elinor
+Children:
+- Benjamin Allen Harrison (born 1986-07-10) (Gramps ID: I0347)
+- Douglas Glenn Harrison (born 1988-01-19) (Gramps ID: I0418)
+
+Type: family
+Gramps ID: F0652
+Relationship type: Married
+Father: William Melvin Hawkins (born 1926-03-09, died 1999-03-25) (Gramps ID: I2034)
+Mother: Ruth Gibbs (Gramps ID: I2035)
+Marriage: 1945-06-22 - Marriage of Hawkins, William Melvin and Gibbs, Ruth
+Children:
+- Gail Hawkins (Gramps ID: I2036)
+- Janelle Hawkins (Gramps ID: I2038)
+- Gerald L. Hawkins (Gramps ID: I2040)
+
+Type: family
+Gramps ID: F0654
+Relationship type: Married
+Father: Stewart (Gramps ID: I2039)
+Mother: Janelle Hawkins (Gramps ID: I2038)
+Marriage Marriage of Stewart and Hawkins, Janelle
+
+Type: family
+Gramps ID: F0632
+Relationship type: Married
+Father: Matthias, Jr. Ball (born 1810-08-07, died 1887-12-23) (Gramps ID: I0027)
+Mother: Eliza Jane Gonzalez (Gramps ID: I1971)
+Marriage: 1854-07-23 - Marriage of Ball, Matthias, Jr. and Gonzalez, Eliza Jane
+Children:
+- William M. Ball (Gramps ID: I1972)
+- John DeKalb Ball (Gramps ID: I1973)
+- Mary Elizabeth Ball (Gramps ID: I1974)
+- Nathanial Green Ball (Gramps ID: I1975)
+- Ida E. Ball (Gramps ID: I1976)
+
+Type: family
+Gramps ID: F0243
+Relationship type: Married
+Father: David Boucher (Gramps ID: I0801)
+Mother: Nancy Morrison (Gramps ID: I0802)
+Marriage: 1810 in Loveland, Larimer, CO, USA - Marriage of Boucher, David and Morrison, Nancy
+Children:
+- Michael Boucher (born 1820, died 1859-01-09) (Gramps ID: I0095)
+- Catherine Boucher (born 1816, died 1857) (Gramps ID: I0803)
+- Patrick Boucher (Gramps ID: I0804)
+- Bridget Boucher (Gramps ID: I0805)
+- William Boucher (Gramps ID: I0806)
+
+Type: family
+Gramps ID: F0269
+Relationship type: Married
+Father: James Myers (born 1813, died 1896-06-04) (Gramps ID: I0881)
+Mother: Catherine Boucher (born 1816, died 1857) (Gramps ID: I0803)
+Marriage in Spartanburg, SC, USA - Marriage of Myers, James and Boucher, Catherine
+Children:
+- James Joseph Jr. Myers (born 1857-12-22, died 1934-04-05) (Gramps ID: I0882)
+
+Type: family
+Gramps ID: F0608
+Relationship type: Married
+Father: James Woods (Gramps ID: I1902)
+Mother: Mary ĐŃŃŃĐœĐŸĐČ (Gramps ID: I1903)
+Marriage Marriage of Woods, James and ĐŃŃŃĐœĐŸĐČ, Mary
+Children:
+- Nancy Woods (Gramps ID: I1901)
+- Mary Polly Woods (born 1777-11-29, died 1854-11-15) (Gramps ID: I1915)
+
+Type: family
+Gramps ID: F0614
+Relationship type: Married
+Father: Alexander Carroll Sr. ĐĐŒĐžŃŃОДĐČ (born 1771-04-20, died 1838-01-18) (Gramps ID: I1914)
+Mother: Mary Polly Woods (born 1777-11-29, died 1854-11-15) (Gramps ID: I1915)
+Marriage: 1803-01-31 in Union City, TN, USA - Marriage of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr. and Woods, Mary Polly
+
+Type: family
+Gramps ID: F0383
+Relationship type: Married
+Father: John Curtis (Gramps ID: I1152)
+Mother: Margaret Gibbs (born um 1460, died um 1460) (Gramps ID: I1153)
+Marriage in Deming, NM, USA - Marriage of Curtis, John and Gibbs, Margaret
+Children:
+- Margaret Curtis (born um 1478, died um 1478) (Gramps ID: I1150)
+
+Type: family
+Gramps ID: F0407
+Relationship type: Married
+Father: Robert ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1216)
+Mother: Candy ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1217)
+Marriage Marriage of ĐĄĐŸŃĐŸĐșĐžĐœ, Robert and ĐĄĐŸŃĐŸĐșĐžĐœ, Candy
+Children:
+- Holly Ruth ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1215)
+
+Type: family
+Gramps ID: F0455
+Relationship type: Married
+Father: George Jankowski (born 1847-01-01, died 1930-02-01) (Gramps ID: I1390)
+Mother: Margaret Page (born 1851-02-10, died 1925-11-22) (Gramps ID: I1389)
+Marriage: 1871-03-22 in Binghamton, Broome, NY, USA - Marriage of Jankowski, George and Page, Margaret
+Children:
+- Robert Jankowski (born 1872-08-27, died 1943-01-02) (Gramps ID: I1391)
+- Sarah Jankowski (born 1874-12-08, died 1948-02-17) (Gramps ID: I1392)
+- Willie Jankowski (Gramps ID: I1394)
+- John Jankowski (born 1876-04-01, died 1939-10-15) (Gramps ID: I1395)
+- Isabella Belle Jankowski (born 1878-03-20, died 1925-03-31) (Gramps ID: I1396)
+- George Jr. Jankowski (born 1882-03-28, died 1942-11-17) (Gramps ID: I1398)
+- Matilda Jankowski (born 1885-06-07, died 1925-01-22) (Gramps ID: I1399)
+- David Jankowski (born 1886-08-10, died 1951-04-10) (Gramps ID: I1401)
+- Margaret Jane "Maggie" Jankowski (born 1889-05-28, died 1960-01-05) (Gramps ID: I1402)
+- Minnie Jankowski (born 1892-05-24, died 1984-01-08) (Gramps ID: I1404)
+
+Type: family
+Gramps ID: F0456
+Relationship type: Married
+Father: John Sanz (born 1869-12-25) (Gramps ID: I1393)
+Mother: Sarah Jankowski (born 1874-12-08, died 1948-02-17) (Gramps ID: I1392)
+Marriage in Troy, Pike, AL, USA - Marriage of Sanz, John and Jankowski, Sarah
+
+Type: family
+Gramps ID: F0033
+Relationship type: Married
+Father: Gerard Stephen Garner (born 1955-07-31) (Gramps ID: I0017)
+Mother: Elizabeth George (born 1957-01-31) (Gramps ID: I0123)
+Marriage: 1979-01-06 in Farmington, MO, USA - Marriage of Garner, Gerard Stephen and George, Elizabeth
+Children:
+- Stephen Gerard Garner (born 1983-10-05) (Gramps ID: I0124)
+- Daniel Patrick Garner (born 1985-02-11) (Gramps ID: I0125)
+
+Type: family
+Gramps ID: F0042
+Relationship type: Married
+Father: Benjamin H. Farmer (born 1812-01-03, died 1873-08-13) (Gramps ID: I0086)
+Mother: Isabella Mills (born 1818-01-05, died 1874-08-20) (Gramps ID: I0087)
+Marriage: 1839-04-11 in Athens, OH, USA - Marriage of Farmer, Benjamin H. and Mills, Isabella
+Children:
+- Elizabeth Ellen Farmer (born 1850-06-09, died 1931-08-03) (Gramps ID: I0088)
+- Sarah Jane Farmer (born 1840-05-07, died 1840-05-07) (Gramps ID: I0359)
+- Mary Ann Farmer (born 1842-08-09, died 1842-08-09) (Gramps ID: I0360)
+- Susanne Delilah Farmer (born 1844-12-02, died 1844-12-02) (Gramps ID: I0361)
+- Winfield Scott Farmer (born 1847-07-29, died 1847-07-29) (Gramps ID: I0362)
+- Miranda Keziah Farmer (born 1852-09-27, died 1887-04-07) (Gramps ID: I0363)
+- Cyrus Melville Farmer (born 1855-05-27, died 1855-05-27) (Gramps ID: I0364)
+- Flora Alice Farmer (born 1858-02-19, died 1858-02-19) (Gramps ID: I0365)
+- John Farmer (born 1860-03-17, died 1860-03-17) (Gramps ID: I0366)
+
+Type: family
+Gramps ID: F0248
+Relationship type: Married
+Father: John Boucher (born 1929) (Gramps ID: I0489)
+Mother: Monica ĐĐžĐșĐžŃĐžĐœ (Gramps ID: I0807)
+Marriage: 1960 in Fort Wayne, Allen, IN, USA - Marriage of Boucher, John and ĐĐžĐșĐžŃĐžĐœ, Monica
+Children:
+- Flannan Boucher (born 1976) (Gramps ID: I0808)
+- Miread Boucher (born 1973) (Gramps ID: I0809)
+- Anne Boucher (born 1962) (Gramps ID: I0828)
+- Mary Boucher (born 1963) (Gramps ID: I0829)
+- Martha Boucher (born 1963) (Gramps ID: I0830)
+- Bridget Boucher (born 1965) (Gramps ID: I0831)
+- Agnes Boucher (born 1968) (Gramps ID: I0832)
+- Norene Boucher (born 1970) (Gramps ID: I0833)
+
+Type: family
+Gramps ID: F0457
+Relationship type: Married
+Father: Thomas Lewandowski (Gramps ID: I1397)
+Mother: Isabella Belle Jankowski (born 1878-03-20, died 1925-03-31) (Gramps ID: I1396)
+Marriage Marriage of Lewandowski, Thomas and Jankowski, Isabella Belle
+Children:
+- Marvin Lewandowski (Gramps ID: I1636)
+- Everett Lewandowski (Gramps ID: I1637)
+- Paul Lewandowski (Gramps ID: I1638)
+- Carroll Lewandowski (Gramps ID: I1639)
+
+Type: family
+Gramps ID: F0003
+Relationship type: Married
+Father: George Edward Warner (born 1926-11-01) (Gramps ID: I0007)
+Mother: Elinor Jane Lessard (born 1931-07-10) (Gramps ID: I0008)
+Marriage: 1950-04-16 in Rockingham County, NH, USA - Marriage of Warner, George Edward and Lessard, Elinor Jane
+Children:
+- Allen Carl Warner (born 1952-02-01) (Gramps ID: I0005)
+- Arthur Maurice Warner (born 1954-01-24) (Gramps ID: I0012)
+- Fred Loren Warner (born 1956-11-27) (Gramps ID: I0013)
+- Marcia Jane Warner (born 1958-09-20) (Gramps ID: I0014)
+
+Type: family
+Gramps ID: F0021
+Relationship type: Married
+Father: Fred Loren Warner (born 1956-11-27) (Gramps ID: I0013)
+Mother: Jamie Lee Flores (born 1959-10-23) (Gramps ID: I0112)
+Marriage: 1981-07-25 in Salina, Saline, KS, USA - Marriage of Warner, Fred Loren and Flores, Jamie Lee
+Children:
+- Melissa Lee Warner (born 1987-06-13) (Gramps ID: I0113)
+- Monica Jane Warner (born 1990-10-20) (Gramps ID: I0481)
+- Jeffrey George Warner (born 1992-10-30) (Gramps ID: I0869)
+
+Type: family
+Gramps ID: F0002
+Relationship type: Married
+Father: Howard Lane Garner (born 1928-07-09, died 1928-07-09) (Gramps ID: I0010)
+Mother: Mary Anne MarĂn (born 1927-01-13) (Gramps ID: I0011)
+Marriage: 1948-02-02 in Worthington, MN, USA - Marriage of Garner, Howard Lane and MarĂn, Mary Anne
+Children:
+- Rita Marie Garner (born 1952-09-07) (Gramps ID: I0006)
+- Barry Joseph Garner (born 1948-12-14) (Gramps ID: I0015)
+- Anne Therese Garner (born 1950-09-10) (Gramps ID: I0016)
+- Gerard Stephen Garner (born 1955-07-31) (Gramps ID: I0017)
+- David Walter Garner (born 1956-12-21) (Gramps ID: I0018)
+- Thomas James Garner (born 1965-12-10) (Gramps ID: I0019)
+
+Type: family
+Gramps ID: F0070
+Relationship type: Married
+Father: Francis Irvin Webb (born 1869-04-28, died 1957-02-07) (Gramps ID: I0042)
+Mother: Louella Jane Todd (born 1877-03-26, died 1965-01-26) (Gramps ID: I0043)
+Marriage: 1896-03-05 in Marinette, WI-MI, USA - Marriage of Webb, Francis Irvin and Todd, Louella Jane
+Children:
+- Luella Florence Webb (born 1906-11-07, died 1986-10-08) (Gramps ID: I0036)
+- Lucy Mabel Webb (born 1899-01-20, died 1971-05-10) (Gramps ID: I0191)
+- John Raymond Webb (born 1908-12-15, died 1996-02-07) (Gramps ID: I0192)
+- Lewis I. Webb (born 1903-03-31, died 1942-12-25) (Gramps ID: I0193)
+
+Type: family
+Gramps ID: F0084
+Relationship type: Married
+Father: John Raymond Webb (born 1908-12-15, died 1996-02-07) (Gramps ID: I0192)
+Mother: Lorinda Catherine Ford (born 1916-10-31, died 1983-11-27) (Gramps ID: I0407)
+Marriage: 1940-09-25 in Oklahoma City, OK, USA - Marriage of Webb, John Raymond and Ford, Lorinda Catherine
+Children:
+- Joan Lorinda Webb (born 1946-10-29) (Gramps ID: I0368)
+- Marilyn Jean Webb (born 1950-03-18) (Gramps ID: I0369)
+
+Type: family
+Gramps ID: F0662
+Relationship type: Married
+Father: Ălvarez (Gramps ID: I2065)
+Mother: Mahala J. Porter (Gramps ID: I2064)
+Marriage Marriage of Ălvarez and Porter, Mahala J.
+
+Type: family
+Gramps ID: F0037
+Relationship type: Married
+Father: William Bernard Boucher (born 1854-01-25, died 1928-12-27) (Gramps ID: I0051)
+Mother: Maria Reeves (born 1856-11-26, died 1929-01-29) (Gramps ID: I0052)
+Marriage: 1875-04-11 in Rochester, MN, USA - Marriage of Boucher, William Bernard and Reeves, Maria
+Children:
+- Mary Cecilia Boucher (born 1890-02-17, died 1945-06-03) (Gramps ID: I0055)
+- Nora A. Boucher (born 1879-07-18, died 1939-08-15) (Gramps ID: I0374)
+- Michael J. Boucher (born 1883-05-10, died 1883-05-10) (Gramps ID: I0375)
+- Thomas W. Boucher (born 1888-12-06, died 1942-04-02) (Gramps ID: I0376)
+- James Boucher (Gramps ID: I0377)
+
+Type: family
+Gramps ID: F0267
+Relationship type: Married
+Father: Stephen Francis Boucher (died 1975-08-24) (Gramps ID: I0813)
+Mother: Mary Jane Gardner (born 1963-01-12, died 1963-01-10) (Gramps ID: I0871)
+Marriage: 1924-03-04 in Winfield, Cowley, KS, USA - Marriage of Boucher, Stephen Francis and Gardner, Mary Jane
+Children:
+- Rose Mary Boucher (born 1926-09-15) (Gramps ID: I0814)
+
+Type: family
+Gramps ID: F0250
+Relationship type: Married
+Father: Thomas Hansen (Gramps ID: I0815)
+Mother: Rose Mary Boucher (born 1926-09-15) (Gramps ID: I0814)
+Marriage: 1952 in Walterboro, SC, USA - Marriage of Hansen, Thomas and Boucher, Rose Mary
+Children:
+- Noel Hansen (born 1953-12) (Gramps ID: I0816)
+- Nula Hansen (Gramps ID: I0817)
+- Irene Hansen (Gramps ID: I0818)
+- Monica Hansen (Gramps ID: I0819)
+
+Type: family
+Gramps ID: F0459
+Relationship type: Married
+Father: Thomas ЧДŃĐșĐ°ŃĐžĐœ (born 1883-08-09, died 1973-12-08) (Gramps ID: I1403)
+Mother: Margaret Jane "Maggie" Jankowski (born 1889-05-28, died 1960-01-05) (Gramps ID: I1402)
+Marriage Marriage of ЧДŃĐșĐ°ŃĐžĐœ, Thomas and Jankowski, Margaret Jane "Maggie"
+Children:
+- Louis ЧДŃĐșĐ°ŃĐžĐœ (born 1928, died 1928) (Gramps ID: I1640)
+- Merritt ЧДŃĐșĐ°ŃĐžĐœ (Gramps ID: I1641)
+
+Type: family
+Gramps ID: F0696
+Relationship type: Married
+Father: Thomas Simard (Gramps ID: I0769)
+Children:
+- Sarah Simard (Gramps ID: I0768)
+
+Type: family
+Gramps ID: F0496
+Relationship type: Married
+Father: Hans Peter Douglas (Gramps ID: I0573)
+Mother: Leonnah Cummings (Gramps ID: I1529)
+Marriage Marriage of Douglas, Hans Peter and Cummings, Leonnah
+
+Type: family
+Gramps ID: F0284
+Relationship type: Married
+Father: Peter Blanco (Gramps ID: I0917)
+Mother: Elizabeth Glover (Gramps ID: I0918)
+Marriage: 1771-12-31 in Joplin, MO, USA - Marriage of Blanco, Peter and Glover, Elizabeth
+Children:
+- John Sr. Blanco (born um 1779) (Gramps ID: I0919)
+- Henry Blanco (born 1847, died 1847) (Gramps ID: I1673)
+- Peter Blanco (Gramps ID: I1675)
+- Mary Blanco (Gramps ID: I1677)
+- Elizabeth Blanco (Gramps ID: I1678)
+- Margareta Blanco (Gramps ID: I1679)
+- Barbara Blanco (Gramps ID: I1680)
+- Catarina Blanco (Gramps ID: I1681)
+
+Type: family
+Gramps ID: F0546
+Relationship type: Married
+Father: Henry Blanco (born 1847, died 1847) (Gramps ID: I1673)
+Mother: Peggy Fournier (Gramps ID: I1674)
+Marriage Marriage of Blanco, Henry and Fournier, Peggy
+
+Type: family
+Gramps ID: F0111
+Relationship type: Married
+Father: Hugh Sr. James (born 1705, died 1785) (Gramps ID: I0479)
+Mother: Caroline Serrano (born 1711) (Gramps ID: I0480)
+Marriage: 1726 in Auburn, Cayuga, NY, USA - Marriage of James, Hugh Sr. and Serrano, Caroline
+Children:
+- Thomas Sr. James (born 1745) (Gramps ID: I0477)
+- Hugh James (Gramps ID: I1530)
+- Robert James (born 1729, died 1729) (Gramps ID: I1531)
+- Joseph James (Gramps ID: I1532)
+- William James (born 1733, died 1733) (Gramps ID: I1533)
+- Mary James (born 1735, died 1735) (Gramps ID: I1534)
+- Martha James (born 1737, died 1737) (Gramps ID: I1536)
+- Jane James (born 1739, died 1739) (Gramps ID: I1538)
+- John James (born 1741, died 1741) (Gramps ID: I1539)
+- James (born 1742, died 1742) (Gramps ID: I1541)
+
+Type: family
+Gramps ID: F0010
+Relationship type: Married
+Father: Jasper Ball (born 1846-12-14, died 1906-08-04) (Gramps ID: I0033)
+Mother: Angeline ĐŃĐșĐŸĐČ (born 1846-08-17, died 1891-10-31) (Gramps ID: I0034)
+Marriage: 1868-01-01 in Oxnard, Ventura, CA, USA - Marriage of Ball, Jasper and ĐŃĐșĐŸĐČ, Angeline
+Children:
+- Abigail Ball (born 1869-07-08, died 1942-04-21) (Gramps ID: I0022)
+- Robert Lee Ball (born 1871-10-14, died 1871-10-14) (Gramps ID: I1961)
+- Maude Waldon Ball (Gramps ID: I1962)
+- Katie E. Ball (born 1870-10-09, died 1870-11-11) (Gramps ID: I1963)
+- Lucy A. Ball (Gramps ID: I1964)
+- Ida B. Ball (born 1876-03-17, died 1876-03-17) (Gramps ID: I1965)
+- Margaret Ball (born 1878-11-21, died 1878-11-21) (Gramps ID: I1966)
+
+Type: family
+Gramps ID: F0412
+Relationship type: Married
+Father: William John Webb (born 1829-07-14, died 1888-04-17) (Gramps ID: I1229)
+Mother: Martha Ann Wagner (Gramps ID: I1238)
+Marriage Marriage of Webb, William John and Wagner, Martha Ann
+Children:
+- James Marshall Webb (born 1856-12-04, died 1938-08-04) (Gramps ID: I1239)
+
+Type: family
+Gramps ID: F0413
+Relationship type: Married
+Father: James Marshall Webb (born 1856-12-04, died 1938-08-04) (Gramps ID: I1239)
+Mother: Judith Ellen Ballard (born 1861-10-19, died 1903-05-20) (Gramps ID: I1241)
+Marriage: 1880-12-14 - Marriage of Webb, James Marshall and Ballard, Judith Ellen
+Children:
+- Charles Edward Webb (born 1901-09-23, died 1901-09-23) (Gramps ID: I1240)
+- William Herman Webb (born 1881-10-27, died 1952-08-23) (Gramps ID: I1242)
+- Ernest Arlington Webb (born 1884-11-17, died 1957-10-07) (Gramps ID: I1694)
+- David Festus Webb (born 1883-02-22, died 1950-08-23) (Gramps ID: I1698)
+- James Leslie Webb (born 1886-11-09, died 1963-01-25) (Gramps ID: I1699)
+- Michael Christie Webb (born 1888-11-19, died 1970-07-23) (Gramps ID: I1700)
+- Anna Mabel Webb (born 1890-10-02, died 1967-07-12) (Gramps ID: I1701)
+- Mary Ruth Webb (born 1892-12-15, died 1956-11-29) (Gramps ID: I1702)
+- Harry Noble Webb (born 1895-11-10, died 1925-12-07) (Gramps ID: I1703)
+- Frances Mae Webb (born 1899-02-04, died 1989-05-05) (Gramps ID: I1704)
+
+Type: family
+Gramps ID: F0599
+Relationship type: Married
+Father: Michael Reed (Gramps ID: I1874)
+Mother: Mary Gibbs (Gramps ID: I1875)
+Marriage Marriage of Reed, Michael and Gibbs, Mary
+Children:
+- Thomas Reed (Gramps ID: I1876)
+
+Type: family
+Gramps ID: F0231
+Relationship type: Married
+Father: Romaine Thornton (Gramps ID: I0775)
+Mother: Harriet Soto (Gramps ID: I0776)
+Marriage Marriage of Thornton, Romaine and Soto, Harriet
+
+Type: family
+Gramps ID: F0498
+Relationship type: Married
+Father: Mr. Page (Gramps ID: I1537)
+Mother: Martha James (born 1737, died 1737) (Gramps ID: I1536)
+Marriage Marriage of Page, Mr. and James, Martha
+
+Type: family
+Gramps ID: F0207
+Relationship type: Married
+Father: Johann Christian II Moreno (born 1726-11-15, died 1797-12-10) (Gramps ID: I0059)
+Mother: Elizabeth ĐĐ°ŃĐČДДĐČ (died 1829-07-19) (Gramps ID: I0704)
+Marriage: 1749-04-02 in Clarksburg, WV, USA - Marriage of Moreno, Johann Christian II and ĐĐ°ŃĐČДДĐČ, Elizabeth
+Children:
+- Maj. Christopher Moreno (born 1752-11-23, died 1823-09-14) (Gramps ID: I0060)
+
+Type: family
+Gramps ID: F0433
+Relationship type: Married
+Father: Johann Adam Frazier (born 1746, died 1746) (Gramps ID: I1313)
+Mother: Anna Eva Hicks (born 1751, died 1817) (Gramps ID: I1312)
+Marriage Marriage of Frazier, Johann Adam and Hicks, Anna Eva
+
+Type: family
+Gramps ID: F0665
+Relationship type: Married
+Father: Darius Moreno (born 1828-03-21, died 1828-03-21) (Gramps ID: I2051)
+Mother: Mary J. Craig (Gramps ID: I2079)
+Marriage: 1855-07-12 - Marriage of Moreno, Darius and Craig, Mary J.
+Children:
+- Phebe J. Moreno (born 1856-08-07, died 1856-08-07) (Gramps ID: I2080)
+- Lelia L. Moreno (born 1858-12-12, died 1858-12-12) (Gramps ID: I2082)
+- Flora E. Moreno (born 1860-06-26, died 1860-06-26) (Gramps ID: I2084)
+- Martha A. Moreno (born 1862-11-11, died 1862-11-11) (Gramps ID: I2085)
+- Lydia M. Moreno (born 1864-04-15, died 1864-04-15) (Gramps ID: I2086)
+
+Type: family
+Gramps ID: F0667
+Relationship type: Married
+Father: Adolph Patton (Gramps ID: I2083)
+Mother: Lelia L. Moreno (born 1858-12-12, died 1858-12-12) (Gramps ID: I2082)
+Marriage Marriage of Patton, Adolph and Moreno, Lelia L.
+
+Type: family
+Gramps ID: F0132
+Relationship type: Married
+Father: Joseph Christiansen (born 1703) (Gramps ID: I0540)
+Mother: Elizabeth GonzĂĄlez (born 1708-06-01, died 1708-06-01) (Gramps ID: I0539)
+Marriage Marriage of Christiansen, Joseph and GonzĂĄlez, Elizabeth
+Children:
+- Frances Christiansen (born 1796-07-06, died 1796-07-06) (Gramps ID: I0545)
+
+Type: family
+Gramps ID: F0135
+Relationship type: Married
+Father: James Green (born 1739-04-07, died 1805-11-28) (Gramps ID: I0546)
+Mother: Frances Christiansen (born 1796-07-06, died 1796-07-06) (Gramps ID: I0545)
+Marriage: 1759-01-17 - Marriage of Green, James and Christiansen, Frances
+Children:
+- Randolph Green (born 1768-03-17, died 1838-03-17) (Gramps ID: I0547)
+
+Type: family
+Gramps ID: F0113
+Relationship type: Married
+Father: Joseph Edward Lane (born 1943-10-10) (Gramps ID: I0209)
+Mother: Linda Mae ĐĐŸĐ·Đ»ĐŸĐČ (Gramps ID: I0491)
+Marriage: 1968-06-08 in Midland, MI, USA - Marriage of Lane, Joseph Edward and ĐĐŸĐ·Đ»ĐŸĐČ, Linda Mae
+Children:
+- Anthony David Lane (born 1972-07-12) (Gramps ID: I0492)
+- Donna Elizabeth Lane (born 1974-09-10) (Gramps ID: I0493)
+
+Type: family
+Gramps ID: F0179
+Relationship type: Married
+Father: George ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0645)
+Mother: Jennie S. Garner (born 1880-09-11, died 1964-06-20) (Gramps ID: I0625)
+Marriage: vor 1911-07-06 - Marriage of ĐŻĐșĐŸĐČлДĐČ, George and Garner, Jennie S.
+Children:
+- Everett ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0646)
+- Esther Faye ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0647)
+- Georgia ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0648)
+
+Type: family
+Gramps ID: F0016
+Relationship type: Married
+Father: Eugene Stanley Garner (born 1895-12-01, died 1984-03-01) (Gramps ID: I0046)
+Mother: Frances Lucille (Babe) Reed (born 1902-07-08, died 1988-08-09) (Gramps ID: I0053)
+Marriage: 1921-01-03 in Edison, NJ, USA - Marriage of Garner, Eugene Stanley and Reed, Frances Lucille (Babe)
+Children:
+- Howard Lane Garner (born 1928-07-09, died 1928-07-09) (Gramps ID: I0010)
+- Eugene Stanley, Jr. Garner (Gramps ID: I0135)
+- John Roger Garner (born 1925-10-29) (Gramps ID: I0136)
+
+Type: family
+Gramps ID: F0374
+Relationship type: Married
+Father: William Jordan (Gramps ID: I1138)
+Mother: Frances Lucille (Babe) Reed (born 1902-07-08, died 1988-08-09) (Gramps ID: I0053)
+Marriage: 1937 - Marriage of Jordan, William and Reed, Frances Lucille (Babe)
+
+Type: family
+Gramps ID: F0451
+Relationship type: Married
+Father: ?? Blais (Gramps ID: I1364)
+Mother: Mary LĂ©vesque (born 1896-10, died 1896-10) (Gramps ID: I1363)
+Marriage in Reno-Sparks, NV, USA - Marriage of Blais, ?? and LĂ©vesque, Mary
+
+Type: family
+Gramps ID: F0471
+Relationship type: Married
+Father: Christy Moss (Gramps ID: I1439)
+Mother: Matilda Page (Gramps ID: I1438)
+Marriage in Warner Robins, Houston, GA, USA - Marriage of Moss, Christy and Page, Matilda
+Children:
+- Fred Moss (Gramps ID: I1623)
+- Thomas Moss (Gramps ID: I1624)
+- Henry Moss (Gramps ID: I1625)
+- Mary Moss (Gramps ID: I1626)
+- Florence Moss (Gramps ID: I1627)
+- Mattie Moss (Gramps ID: I1628)
+
+Type: family
+Gramps ID: F0066
+Relationship type: Married
+Father: Everett Cruz (born 1894-04-24, died 1894-04-24) (Gramps ID: I0211)
+Mother: Susanna Marie Lessard (born 1896-09-20, died 1981-10-16) (Gramps ID: I0188)
+Marriage Marriage of Cruz, Everett and Lessard, Susanna Marie
+Children:
+- Paul Eugene Cruz (born 1918-11-03) (Gramps ID: I0212)
+- Arthur Ray Cruz (born 1921-03-04) (Gramps ID: I0217)
+- Ivan Wayne Cruz (born 1925-02-14) (Gramps ID: I0222)
+- William Everett Cruz (born 1927-04-05) (Gramps ID: I0225)
+
+Type: family
+Gramps ID: F0061
+Relationship type: Married
+Father: Paul Eugene Cruz (born 1918-11-03) (Gramps ID: I0212)
+Mother: Marguerite Lambert (born 1917-09-19, died 1991-07-14) (Gramps ID: I0213)
+Marriage: 1939-11-23 in Ottawa, La Salle, IL, USA - Marriage of Cruz, Paul Eugene and Lambert, Marguerite
+Children:
+- Thomas Everett Cruz (born 1940-10-15) (Gramps ID: I0214)
+- Linda Helen Cruz (born 1942-02-06) (Gramps ID: I0215)
+- Dale Eugene Cruz (born 1947-11-11) (Gramps ID: I0216)
+
+Type: family
+Gramps ID: F0738
+Relationship type: Married
+Father: John Warner (Gramps ID: I1957)
+Children:
+- Rev. Edmund Warner (Gramps ID: I0846)
+- Robert Warner (Gramps ID: I1959)
+
+Type: family
+Gramps ID: F0739
+Relationship type: Married
+Father: Robert Warner (Gramps ID: I1959)
+Children:
+- John Warner (Gramps ID: I1960)
+
+Type: family
+Gramps ID: F0671
+Relationship type: Married
+Father: John Đ ĐŸĐŒĐ°ĐœĐŸĐČ (Gramps ID: I2099)
+Mother: Delilah Moreno (Gramps ID: I2098)
+Marriage Marriage of Đ ĐŸĐŒĐ°ĐœĐŸĐČ, John and Moreno, Delilah
+
+Type: family
+Gramps ID: F0264
+Relationship type: Married
+Father: Andrew Vincent Page (born 1887-02-05, died 1979-09-27) (Gramps ID: I0194)
+Mother: Edith Irene Zimmerman (born 1890-05-20, died 1962-12-21) (Gramps ID: I0867)
+Marriage: 1908-09-01 in Kokomo, Howard, IN, USA - Marriage of Page, Andrew Vincent and Zimmerman, Edith Irene
+Children:
+- Vernett Gail Page (born 1911-02-26, died 1998-08-29) (Gramps ID: I0456)
+- Eleanor Irene Page (born 1921-03-25) (Gramps ID: I0457)
+- David Page (died 1909) (Gramps ID: I1634)
+- Ruth Ellen Page (Gramps ID: I1635)
+
+Type: family
+Gramps ID: F0257
+Relationship type: Married
+Father: Irwin Arthur Welch (born 1920-10-28, died 1979-06-25) (Gramps ID: I0853)
+Mother: Eleanor Irene Page (born 1921-03-25) (Gramps ID: I0457)
+Marriage: 1945-08-25 in Adjuntas, PR, USA - Marriage of Welch, Irwin Arthur and Page, Eleanor Irene
+Children:
+- Russell Eugene Welch (born 1949-04-08) (Gramps ID: I0855)
+- Annabelle Elaine Welch (born 1951-03-30) (Gramps ID: I0858)
+- Rosalie Jane Welch (born 1956-08-03) (Gramps ID: I0860)
+
+Type: family
+Gramps ID: F0258
+Relationship type: Married
+Father: Otis Earl Padilla (Gramps ID: I0854)
+Mother: Eleanor Irene Page (born 1921-03-25) (Gramps ID: I0457)
+Marriage: 1984-10-13 in Bay City, Matagorda, TX, USA - Marriage of Padilla, Otis Earl and Page, Eleanor Irene
+
+Type: family
+Gramps ID: F0331
+Relationship type: Married
+Father: Ranulf Knudsen (born 1220, died 1294) (Gramps ID: I1018)
+Mother: Bertrama Huff (born 1220, died 1220) (Gramps ID: I1019)
+Marriage Marriage of Knudsen, Ranulf and Huff, Bertrama
+Children:
+- Ralph Knudsen (born 1250, died 1316) (Gramps ID: I1020)
+
+Type: family
+Gramps ID: F0354
+Relationship type: Married
+Father: Steven Matthew Weaver (Gramps ID: I1077)
+Mother: JenniferMae(Ganoe) Warner (born 1973-02-06) (Gramps ID: I0108)
+Marriage: 1996-05-11 in Gainesville, Alachua, FL, USA - Marriage of Weaver, Steven Matthew and Warner, JenniferMae(Ganoe)
+Children:
+- Justin Matthew Weaver (born 1995-06-07) (Gramps ID: I1078)
+
+Type: family
+Gramps ID: F0085
+Relationship type: Married
+Father: Gary ĐĐ»ŃĐžĐœ (born 1950-05-12) (Gramps ID: I0408)
+Mother: Marilyn Jean Webb (born 1950-03-18) (Gramps ID: I0369)
+Marriage in Kendallville, Noble, IN, USA - Marriage of ĐĐ»ŃĐžĐœ, Gary and Webb, Marilyn Jean
+Children:
+- Eric Scott ĐĐ»ŃĐžĐœ (born 1977-05) (Gramps ID: I0409)
+- Timothy Ryan ĐĐ»ŃĐžĐœ (born 1981-03) (Gramps ID: I0410)
+
+Type: family
+Gramps ID: F0293
+Relationship type: Married
+Father: Johannas Austin (born 1632-05-15, died 1632-05-15) (Gramps ID: I0938)
+Mother: Margaret Jenkins (born 1630-02, died 1708-07-25) (Gramps ID: I0939)
+Marriage: 1652-07-02 - Marriage of Austin, Johannas and Jenkins, Margaret
+Children:
+- Marie SuĂĄrez (born 1656-05-21, died 1731-01-05) (Gramps ID: I0943)
+
+Type: family
+Gramps ID: F0144
+Relationship type: Married
+Father: William Maxwell (Gramps ID: I0563)
+Mother: Elizabeth Nielsen (Gramps ID: I0562)
+Marriage Marriage of Maxwell, William and Nielsen, Elizabeth
+Children:
+- Ann Maxwell (Gramps ID: I0567)
+
+Type: family
+Gramps ID: F0631
+Relationship type: Married
+Father: Matthias, Jr. Ball (born 1810-08-07, died 1887-12-23) (Gramps ID: I0027)
+Mother: Ann Louisa Snyder (born 1840-02-20, died 1840-02-20) (Gramps ID: I1969)
+Marriage: 1836-05-31 - Marriage of Ball, Matthias, Jr. and Snyder, Ann Louisa
+Children:
+- Matthias Ball (born 1840-01-13, died 1840-01-13) (Gramps ID: I1970)
+
+Type: family
+Gramps ID: F0530
+Relationship type: Married
+Father: Hugh Jr. James (born 1768, died 1768) (Gramps ID: I1542)
+Mother: D. WiĆniewski (Gramps ID: I1643)
+Marriage Marriage of James, Hugh Jr. and WiĆniewski, D.
+
+Type: family
+Gramps ID: F0029
+Relationship type: Married
+Father: Dwight Billington Osborne (born 1933-12-31) (Gramps ID: I0140)
+Mother: Mary Alice Lessard (born 1937-01-17) (Gramps ID: I0133)
+Marriage: 1959-09-13 in Morehead City, NC, USA - Marriage of Osborne, Dwight Billington and Lessard, Mary Alice
+Children:
+- Paul Daniel Osborne (born 1963-05-18) (Gramps ID: I0172)
+- Julia Marie Osborne (born 1967-10-06) (Gramps ID: I0173)
+- Anita June Osborne (born 1961-06-21) (Gramps ID: I0197)
+
+Type: family
+Gramps ID: F0089
+Relationship type: Married
+Father: Jeffrey JĂžrgensen (born 1966-11-24) (Gramps ID: I0419)
+Mother: Julia Marie Osborne (born 1967-10-06) (Gramps ID: I0173)
+Marriage: 1989-06-10 in Morehead City, NC, USA - Marriage of JĂžrgensen, Jeffrey and Osborne, Julia Marie
+Children:
+- Molly Marie JĂžrgensen (born 1990-07-27) (Gramps ID: I0482)
+- Maggie Leigh JĂžrgensen (born 1993-08-20) (Gramps ID: I0971)
+
+Type: family
+Gramps ID: F0470
+Relationship type: Married
+Father: Morin (Gramps ID: I1437)
+Mother: Belle Page (Gramps ID: I1436)
+Marriage Marriage of Morin and Page, Belle
+
+Type: family
+Gramps ID: F0532
+Relationship type: Married
+Father: Isaac James (Gramps ID: I1546)
+Mother: Martha Andersen (Gramps ID: I1645)
+Marriage Marriage of James, Isaac and Andersen, Martha
+
+Type: family
+Gramps ID: F0242
+Relationship type: Married
+Father: Peter Sr. Cunningham (died 1832-05) (Gramps ID: I0469)
+Mother: Margaret Mary? Dunn (Gramps ID: I0798)
+Marriage Marriage of Cunningham, Peter Sr. and Dunn, Margaret Mary?
+Children:
+- William Philip Cunningham (born 1765-04-05, died 1871-04-28) (Gramps ID: I0467)
+
+Type: family
+Gramps ID: F0104
+Relationship type: Married
+Father: William Philip Cunningham (born 1765-04-05, died 1871-04-28) (Gramps ID: I0467)
+Mother: Susannah Park (born 1871-04-28, died 1871-04-28) (Gramps ID: I0468)
+Marriage: 1801-08-11 - Marriage of Cunningham, William Philip and Park, Susannah
+Children:
+- Sally Sarah Cunningham (born 1805-09-25, died 1867-02-19) (Gramps ID: I0464)
+
+Type: family
+Gramps ID: F0286
+Relationship type: Married
+Father: William M. Rodriquez (born 1785-08-08) (Gramps ID: I0597)
+Mother: Mary"Polly" Douglas (born 1785-04-27, died 1842-08-30) (Gramps ID: I0921)
+Marriage: 1804-08 in Manhattan, Riley, KS, USA - Marriage of Rodriquez, William M. and Douglas, Mary"Polly"
+Children:
+- Mariam Rodriquez (born 1814-05-14, died 1900-08-31) (Gramps ID: I0598)
+- William Frederick Rodriquez (born 1806-12-17, died 1806-12-17) (Gramps ID: I1712)
+- John Rodriquez (born 1807-01-22, died 1807-01-22) (Gramps ID: I1713)
+- Alvin Rodriquez (Gramps ID: I1714)
+- Elizabeth Jane Rodriquez (born 1816-04-01, died 1816-04-01) (Gramps ID: I1715)
+- William M. Rodriquez (born 1818-05-07, died 1818-05-07) (Gramps ID: I1716)
+- Barbara Ann Rodriquez (born 1820-02-28, died 1902-07-20) (Gramps ID: I1717)
+- Oma Rodriquez (born 1821-11-28, died 1821-11-28) (Gramps ID: I1718)
+- Mary Ann Rodriquez (born 1823-06-17, died 1823-06-17) (Gramps ID: I1719)
+- Maria Louisa Rodriquez (born 1825-09-24, died 1825-09-24) (Gramps ID: I1720)
+- Michael Mordica Rodriquez (born 1828-08-27, died 1828-08-27) (Gramps ID: I1721)
+
+Type: family
+Gramps ID: F0587
+Relationship type: Married
+Father: Poulin (Gramps ID: I1828)
+Mother: Rose Reed (Gramps ID: I1827)
+Marriage Marriage of Poulin and Reed, Rose
+Children:
+- Poulin (Gramps ID: I1844)
+
+Type: family
+Gramps ID: F0210
+Relationship type: Married
+Father: John Piotrowski (born 1613, died 1670) (Gramps ID: I0072)
+Mother: Olive Todd (Gramps ID: I0727)
+Marriage: 1632 - Marriage of Piotrowski, John and Todd, Olive
+Children:
+- John Jr. Piotrowski (born 1677, died 1677) (Gramps ID: I0742)
+
+Type: family
+Gramps ID: F0592
+Relationship type: Married
+Father: Peter James? Reed (Gramps ID: I1845)
+Mother: Catherine Reed (Gramps ID: I1850)
+Marriage Marriage of Reed, Peter James? and Reed, Catherine
+Children:
+- Owen Reed (Gramps ID: I1846)
+- Bridget Ann Reed (born 1885-02-24) (Gramps ID: I1847)
+- Terence Reed (born 1876-11-25, died 1876-11-25) (Gramps ID: I1849)
+- Peter Reed (Gramps ID: I1851)
+- Mary Reed (born 1878-05-10, died 1878-05-10) (Gramps ID: I1852)
+- Reed (born 1878-08-25, died 1878-08-25) (Gramps ID: I1853)
+
+Type: family
+Gramps ID: F0734
+Relationship type: Married
+Father: Owen Reed (Gramps ID: I1846)
+Children:
+- Norah Reed (born 1928-07) (Gramps ID: I1848)
+
+Type: family
+Gramps ID: F0701
+Relationship type: Married
+Father: Patrick Boucher (Gramps ID: I0804)
+Children:
+- Michael Shannon Boucher (Gramps ID: I1759)
+- John Boucher (Gramps ID: I1760)
+
+Type: family
+Gramps ID: F0230
+Relationship type: Married
+Father: Joseph Louis(Sr.) Benson (born 1676-01-09, died 1676-01-09) (Gramps ID: I0767)
+Mother: Sarah Simard (Gramps ID: I0768)
+Marriage in Sweetwater, Nolan, TX, USA - Marriage of Benson, Joseph Louis(Sr.) and Simard, Sarah
+Children:
+- Joseph Louis(Jr.) Benson (born 1702-05-06) (Gramps ID: I0731)
+- William Benson (born 1709-08-10, died 1709-08-10) (Gramps ID: I0771)
+- Thomas Stewart Benson (born 1704-03-09, died 1704-03-09) (Gramps ID: I1580)
+- John Benson (born 1707-06-10, died 1707-06-10) (Gramps ID: I1581)
+- James Edwin Benson (born 1711-11, died 1711-11) (Gramps ID: I1582)
+- Jason Spotswood Benson (born 1713-11, died 1713-11) (Gramps ID: I1583)
+- Elizabeth Benson (born 1715-01-30, died 1715-01-30) (Gramps ID: I1584)
+- Martha Ellen Benson (born 1719-09-10, died 1719-09-10) (Gramps ID: I1585)
+- Benson (Gramps ID: I1586)
+- Benson (Gramps ID: I1587)
+
+Type: family
+Gramps ID: F0362
+Relationship type: Married
+Father: Marquis I Brooks (born 1675, died 1741) (Gramps ID: I0956)
+Mother: Isabella Guzman (born um 1695, died nach 1700) (Gramps ID: I1102)
+Marriage Marriage of Brooks, Marquis I and Guzman, Isabella
+Children:
+- Major Marquis II Brooks (born 1705, died 1755-05-10) (Gramps ID: I0957)
+
+Type: family
+Gramps ID: F0409
+Relationship type: Married
+Father: Alex Webb (Gramps ID: I1220)
+Mother: Nancy ĐĐ°ĐșĐ°ŃĐŸĐČ (Gramps ID: I1221)
+Marriage: vor 1800 in Canton, Fulton, IL, USA - Marriage of Webb, Alex and ĐĐ°ĐșĐ°ŃĐŸĐČ, Nancy
+Children:
+- Margaret Margarite? Webb (born 1800, died nach 1860) (Gramps ID: I0991)
+- Sallie Webb (Gramps ID: I1222)
+- Mary Webb (born 1803, died 1803) (Gramps ID: I1223)
+
+Type: family
+Gramps ID: F0616
+Relationship type: Married
+Father: Esiquio Pelletier (Gramps ID: I1923)
+Mother: Sesaria Leclerc (Gramps ID: I1924)
+Marriage Marriage of Pelletier, Esiquio and Leclerc, Sesaria
+Children:
+- Josephine Pelletier (born 1922-09-07, died 1998-09-15) (Gramps ID: I0174)
+
+Type: family
+Gramps ID: F0382
+Relationship type: Married
+Father: John Sanchez (born um 1480, died 1545) (Gramps ID: I0685)
+Mother: Margaret Curtis (born um 1478, died um 1478) (Gramps ID: I1150)
+Marriage in Deming, NM, USA - Marriage of Sanchez, John and Curtis, Margaret
+Children:
+- Robert Lefebvre (born 1511, died 1558-10-20) (Gramps ID: I0686)
+
+Type: family
+Gramps ID: F0224
+Relationship type: Married
+Father: Robert Lefebvre (born 1511, died 1558-10-20) (Gramps ID: I0686)
+Mother: Ellen ĐĐŸĐœŃĐ°ŃĐŸĐČ (born um 1515, died 1572) (Gramps ID: I0755)
+Marriage in Durant, OK, USA - Marriage of Lefebvre, Robert and ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+Children:
+- Thomas Wise (born 1536-06-19, died 1606-10-09) (Gramps ID: I0687)
+
+Type: family
+Gramps ID: F0226
+Relationship type: Married
+Father: Johanne(John) Webster (born 1679-05-01) (Gramps ID: I0759)
+Mother: Ursula Saunders (born um 1680, died 1740) (Gramps ID: I0760)
+Marriage: 1703-11-06 in Pittsfield, Berkshire, MA, USA - Marriage of Webster, Johanne(John) and Saunders, Ursula
+Children:
+- Jacob A. Carroll (born 1705, died 1763) (Gramps ID: I0763)
+- Conrad ĐĐŸĐ»Đ”ŃĐœĐžĐșĐŸĐČ (Gramps ID: I1343)
+
+Type: family
+Gramps ID: F0735
+Relationship type: Married
+Father: Edward Reed (Gramps ID: I1854)
+Children:
+- Jane Reed (Gramps ID: I1855)
+- Terrence (TyNed) Reed (died um 1940) (Gramps ID: I1857)
+- Michael Reed (Gramps ID: I1858)
+
+Type: family
+Gramps ID: F0598
+Relationship type: Married
+Father: Terrence (TyNed) Reed (died um 1940) (Gramps ID: I1857)
+Mother: Jennie Gibbs (Gramps ID: I1873)
+Marriage Marriage of Reed, Terrence (TyNed) and Gibbs, Jennie
+
+Type: family
+Gramps ID: F0106
+Relationship type: Married
+Father: George Henry, Jr. Jiménez (born 1802-09-29, died 1869-02-19) (Gramps ID: I0064)
+Mother: Mildred Silva (born 1805-10-06, died 1869-05-10) (Gramps ID: I0065)
+Marriage in Davenport, Scott, IA, USA - Marriage of Jiménez, George Henry, Jr. and Silva, Mildred
+Children:
+- George Henry, III Jiménez (born 1826-08-15, died 1907-10-25) (Gramps ID: I0066)
+- Amanda E. Jiménez (born 1835-07-13, died 1883-04-25) (Gramps ID: I1344)
+- Nathan M. Jiménez (born 1844-10-10, died 1848-07-01) (Gramps ID: I1345)
+- James T. Jiménez (born 1839-08-06, died 1839-08-06) (Gramps ID: I1346)
+- John T. L. Jiménez (born 1829-08-30, died 1851-06-20) (Gramps ID: I1347)
+- Mary C. Jiménez (born 1849-12-08, died 1869-10-10) (Gramps ID: I1348)
+- Nancy E. Jiménez (Gramps ID: I1349)
+- Richard? Cornelius Jiménez (Gramps ID: I1350)
+- Lucinda Jiménez (Gramps ID: I1351)
+
+Type: family
+Gramps ID: F0727
+Relationship type: Married
+Father: Abraham Serrano (Gramps ID: I1672)
+Children:
+- Dean Serrano (Gramps ID: I1735)
+- Reh Dawn Serrano (Gramps ID: I1736)
+
+Type: family
+Gramps ID: F0660
+Relationship type: Married
+Father: Samuel Andersen (died 1858-02) (Gramps ID: I2057)
+Mother: Delilah Moreno (born 1818-01-05, died 1871-01-08) (Gramps ID: I2056)
+Marriage: 1848-01-07 - Marriage of Andersen, Samuel and Moreno, Delilah
+Children:
+- Aaron B. Andersen (Gramps ID: I2058)
+- Samuel A. Andersen (Gramps ID: I2059)
+- William Andersen (Gramps ID: I2060)
+- Marion Andersen (Gramps ID: I2061)
+
+Type: family
+Gramps ID: F0129
+Relationship type: Married
+Father: Joseph Lefebvre (Gramps ID: I0533)
+Mother: Mary Gregory (Gramps ID: I0689)
+Marriage: 1650-12-11 in Plainview, Houston, TX, USA - Marriage of Lefebvre, Joseph and Gregory, Mary
+Children:
+- Mary Lefebvre (born 1654-03-22, died 1654-03-22) (Gramps ID: I0536)
+
+Type: family
+Gramps ID: F0562
+Relationship type: Married
+Father: MartĂnez (Gramps ID: I1737)
+Mother: Reh Dawn Serrano (Gramps ID: I1736)
+Marriage Marriage of MartĂnez and Serrano, Reh Dawn
+
+Type: family
+Gramps ID: F0149
+Relationship type: Married
+Father: Frank Kim (Gramps ID: I0584)
+Mother: Catherine Virginia Kristensen (born 1892-02-22, died 1926-03-01) (Gramps ID: I0583)
+Marriage Marriage of Kim, Frank and Kristensen, Catherine Virginia
+
+Type: family
+Gramps ID: F0268
+Relationship type: Married
+Father: William Boucher (born 1851-02-07, died 1952-08-02) (Gramps ID: I0812)
+Mother: Mary Walters (born 1864, died 1937-04-06) (Gramps ID: I0872)
+Marriage: 1880-02-10 in Greensburg, Decatur, IN, USA - Marriage of Boucher, William and Walters, Mary
+Children:
+- Stephen Francis Boucher (died 1975-08-24) (Gramps ID: I0813)
+- Fr. Patrick Boucher (Gramps ID: I0840)
+- Fr. Daniel Gabriel Boucher (Gramps ID: I0841)
+- Prof. William Joseph Boucher (born 1886, died 1977-01-26) (Gramps ID: I0842)
+- Mary Josephine Boucher (born 1885, died 1885) (Gramps ID: I1739)
+- Ellen Boucher (Gramps ID: I1741)
+
+Type: family
+Gramps ID: F0244
+Relationship type: Married
+Father: William Boucher (Gramps ID: I0806)
+Mother: Bridget M. Fields (Gramps ID: I0834)
+Marriage in Loveland, Larimer, CO, USA - Marriage of Boucher, William and Fields, Bridget M.
+Children:
+- Thomas Boucher (Gramps ID: I0486)
+- William Boucher (Gramps ID: I0811)
+
+Type: family
+Gramps ID: F0245
+Relationship type: Married
+Father: Thomas Boucher (Gramps ID: I0486)
+Mother: Bridget Thompson (Gramps ID: I0835)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Boucher, Thomas and Thompson, Bridget
+Children:
+- Sean Boucher (born 1837) (Gramps ID: I0487)
+
+Type: family
+Gramps ID: F0131
+Relationship type: Married
+Father: George ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0537)
+Mother: Annabell Gordon ĐŃĐșĐŸĐČ (Gramps ID: I0538)
+Marriage Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, George and ĐŃĐșĐŸĐČ, Annabell Gordon
+Children:
+- Christina ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1749-10-25, died 1749-10-25) (Gramps ID: I0541)
+
+Type: family
+Gramps ID: F0431
+Relationship type: Married
+Father: Johann Valentin Beaulieu (born 1735, died 1735) (Gramps ID: I1307)
+Mother: Elisabeth Margaretha Morgan (born 1742, died 1742) (Gramps ID: I1308)
+Marriage Marriage of Beaulieu, Johann Valentin and Morgan, Elisabeth Margaretha
+
+Type: family
+Gramps ID: F0639
+Relationship type: Married
+Father: Joseph Allen (born 1692-05-17, died 1692-05-17) (Gramps ID: I2005)
+Mother: Mary Barker (Gramps ID: I2006)
+Marriage: um 1713 in Sikeston, MO, USA - Marriage of Allen, Joseph and Barker, Mary
+
+Type: family
+Gramps ID: F0664
+Relationship type: Married
+Father: Solon Moreno (born 1832-12-26, died 1832-12-26) (Gramps ID: I2077)
+Mother: Lydia Perkins (Gramps ID: I2078)
+Marriage: 1858-04-22 - Marriage of Moreno, Solon and Perkins, Lydia
+
+Type: family
+Gramps ID: F0194
+Relationship type: Married
+Father: William Foster (born um 1625, died um 1625) (Gramps ID: I0674)
+Mother: Mary Sanders (born um 1629, died um 1629) (Gramps ID: I0675)
+Marriage in Chillicothe, OH, USA - Marriage of Foster, William and Sanders, Mary
+Children:
+- Mary Alvarez (died 1727) (Gramps ID: I0508)
+- David Foster (born um 1653, died um 1653) (Gramps ID: I1943)
+
+Type: family
+Gramps ID: F0038
+Relationship type: Married
+Father: Michael Boucher (born 1820, died 1859-01-09) (Gramps ID: I0095)
+Mother: Honora Boucher (born 1824, died 1895-02-09) (Gramps ID: I0096)
+Marriage in Buffalo, Erie, NY, USA - Marriage of Boucher, Michael and Boucher, Honora
+Children:
+- William Bernard Boucher (born 1854-01-25, died 1928-12-27) (Gramps ID: I0051)
+- Thomas Boucher (born 1840-12-24, died 1885-07-29) (Gramps ID: I0380)
+- Michael Boucher (born 1920-02-18, died 1920-02-18) (Gramps ID: I0390)
+- Bridget Boucher (born 1850-05-14, died 1922-05-11) (Gramps ID: I0394)
+- Catherine Boucher (Gramps ID: I0403)
+- Charles Boucher (Gramps ID: I0404)
+
+Type: family
+Gramps ID: F0464
+Relationship type: Married
+Father: Dean McCormick (Gramps ID: I1413)
+Mother: Florence Page (Gramps ID: I1412)
+Marriage Marriage of McCormick, Dean and Page, Florence
+
+Type: family
+Gramps ID: F0009
+Relationship type: Married
+Father: Piatt D. Warner (born 1821-04-09, died 1889-10-11) (Gramps ID: I0031)
+Mother: Julia Colville Fox (born 1823-12-25, died 1904-02-12) (Gramps ID: I0032)
+Marriage: 1845-01-01 in Palestine, Hopkins, TX, USA - Marriage of Warner, Piatt D. and Fox, Julia Colville
+Children:
+- Warren W. Warner (born 1867-01-23, died 1919-03-10) (Gramps ID: I0021)
+- George Warner (Gramps ID: I1245)
+- Samuel Harvey Warner (Gramps ID: I1246)
+- Amanda Warner (Gramps ID: I1247)
+- Eden Warner (Gramps ID: I1248)
+- Mary Warner (Gramps ID: I1249)
+- Eliza Frances Warner (Gramps ID: I1250)
+- Lucy Warner (Gramps ID: I1251)
+- David Brant Warner (Gramps ID: I1252)
+- Lewis Warner (Gramps ID: I1253)
+- Sylvester Warner (Gramps ID: I1254)
+- Edward Randolph Warner (Gramps ID: I1255)
+- Sarah Jane Walker (Gramps ID: I1256)
+- Christopher Warner (Gramps ID: I1257)
+- Greenleaf Warner (Gramps ID: I1258)
+- unnamed girl Warner (born 1865) (Gramps ID: I1259)
+
+Type: family
+Gramps ID: F0205
+Relationship type: Married
+Father: John Reed (died 1886-08-11) (Gramps ID: I0089)
+Mother: Sarah Goodwin (Gramps ID: I0090)
+Marriage: 1835-02-10 in North Platte, NE, USA - Marriage of Reed, John and Goodwin, Sarah
+Children:
+- Francis Vincent Reed (born 1857-05-02, died 1945-03-02) (Gramps ID: I0047)
+- Hugh Reed (born 1853-06-13, died 1917-04-24) (Gramps ID: I0705)
+- John Reed (born 1844-05-19, died 1926-03-28) (Gramps ID: I0706)
+- Bridgette Reed (born 1850-01-19, died 1901-08-13) (Gramps ID: I0707)
+- Mary Reed (born 1839-03-08) (Gramps ID: I0708)
+- Edward Reed (born 1847-06-28, died 1892-03-05) (Gramps ID: I1132)
+- Catherine Reed (born 1842-01-09) (Gramps ID: I1135)
+- Patrick Reed (born 1836-02-22) (Gramps ID: I1136)
+
+Type: family
+Gramps ID: F0115
+Relationship type: Married
+Father: William J. Boucher (Gramps ID: I0495)
+Mother: Marie Howell (Gramps ID: I0496)
+Marriage Marriage of Boucher, William J. and Howell, Marie
+Children:
+- William J. Boucher (born 1941-01-11, died 1994-10-31) (Gramps ID: I0497)
+- Sharon Boucher (born 1943-11-26, died 1973-06-11) (Gramps ID: I0498)
+
+Type: family
+Gramps ID: F0603
+Relationship type: Married
+Father: William Ford (Gramps ID: I1888)
+Mother: Winifred Payne (Gramps ID: I1887)
+Marriage in De Ridder, LA, USA - Marriage of Ford, William and Payne, Winifred
+
+Type: family
+Gramps ID: F0310
+Relationship type: Married
+Father: Robert Douglas Warner (born 1962-09-07) (Gramps ID: I0166)
+Mother: Christina Norton (born 1983-12-17) (Gramps ID: I0334)
+Marriage: 1983-12-17 - Marriage of Warner, Robert Douglas and Norton, Christina
+Children:
+- Amber Lynne Warner (born 1985-05-27) (Gramps ID: I0335)
+- Whitney Lianne Warner (born 1986-08-26) (Gramps ID: I0983)
+
+Type: family
+Gramps ID: F0078
+Relationship type: Married
+Father: John Anthony Landry (born 1897-09-14) (Gramps ID: I0260)
+Mother: Ella Mae Harris (Gramps ID: I0275)
+Marriage: 1922-10-14 - Marriage of Landry, John Anthony and Harris, Ella Mae
+Children:
+- Eleanor Jean Landry (born 1924-02-16) (Gramps ID: I0276)
+- John Chandler Landry (born 1926-11-07) (Gramps ID: I0277)
+
+Type: family
+Gramps ID: F0329
+Relationship type: Married
+Father: Robert Hanson (born 1110, died 1185) (Gramps ID: I1014)
+Mother: Helewisa Schwartz (born 1110, died 1195) (Gramps ID: I1015)
+Marriage Marriage of Hanson, Robert and Schwartz, Helewisa
+Children:
+- Robert Knudsen (born 1192, died 1252-12-07) (Gramps ID: I1016)
+
+Type: family
+Gramps ID: F0330
+Relationship type: Married
+Father: Robert Knudsen (born 1192, died 1252-12-07) (Gramps ID: I1016)
+Mother: Helewisa Schwartz (born 1110, died 1195) (Gramps ID: I1015)
+Marriage Marriage of Knudsen, Robert and Schwartz, Helewisa
+
+Type: family
+Gramps ID: F0019
+Relationship type: Married
+Father: Joseph Garner (born 1792) (Gramps ID: I0104)
+Mother: Lucy Edwards (born 1799-01-17, died 1879-04-02) (Gramps ID: I0105)
+Marriage: 1823-01-03 in Picayune, MS, USA - Marriage of Garner, Joseph and Edwards, Lucy
+Children:
+- Robert W. Garner (born 1826/7-04-24 (Julianisch), died 1916-02-03) (Gramps ID: I0106)
+- Lewis Garner (born 1823-11-18, died 1911-01-21) (Gramps ID: I1105)
+- Anderson Garner (born 1825-01-28, died 1887-04-07) (Gramps ID: I1106)
+
+Type: family
+Gramps ID: F0018
+Relationship type: Married
+Father: Robert W. Garner (born 1826/7-04-24 (Julianisch), died 1916-02-03) (Gramps ID: I0106)
+Mother: Phoebe Emily ZieliĆski (born 1827-04-12, died 1882-03-07) (Gramps ID: I0107)
+Marriage: 1849-10-04 in Paragould, Greene, AR, USA - Marriage of Garner, Robert W. and ZieliĆski, Phoebe Emily
+Children:
+- Lewis Anderson Garner von ZieliĆski Sr (born 1855-06-21, died 1911-06-28) (Gramps ID: I0044) (relation to father: Custom relationship to father, relation to mother: Custom relationship to mother)
+- Phebe Garner (born 1850, died vor 1860) (Gramps ID: I1113)
+- Mary J. Garner (born 1851-10-12, died 1852-04-01) (Gramps ID: I1114)
+- Mary M. Garner (born 1851-10-12, died 1858-05-24) (Gramps ID: I1115)
+- Garner (Gramps ID: I1116)
+- Rebecca Catharine Garner (born 1857-05-30, died 1937-04-09) (Gramps ID: I1117)
+- Zelpha Josephine Carr (born 1858-12-31, died 1895-02-08) (Gramps ID: I1119)
+- Iola Elizabeth Betty Garner (born 1860-11-01, died 1941-04-17) (Gramps ID: I1121)
+- Robert F. Garner (born 1863-04-04, died 1940-02-17) (Gramps ID: I1123)
+- Emma A. Garner (born 1868-08-18, died 1869-02-23) (Gramps ID: I1125)
+- Anetta Garner (born 1870-06-13, died 1900-10-04) (Gramps ID: I1126)
+- Antoinette Garner (born 1870-06-13, died vor 1880) (Gramps ID: I1128)
+
+Type: family
+Gramps ID: F0240
+Relationship type: Married
+Father: Samuel C. ĐĐŸĐ·Đ»ĐŸĐČ (Gramps ID: I0794)
+Mother: Julia Pena (Gramps ID: I0795)
+Marriage Marriage of ĐĐŸĐ·Đ»ĐŸĐČ, Samuel C. and Pena, Julia
+Children:
+- Linda Mae ĐĐŸĐ·Đ»ĐŸĐČ (Gramps ID: I0491)
+
+Type: family
+Gramps ID: F0418
+Relationship type: Married
+Father: Johann Simon Beaulieu (born 1682, died 1682) (Gramps ID: I1279)
+Mother: Anna Margaretha Holland (born 1685, died 1685) (Gramps ID: I1280)
+Marriage Marriage of Beaulieu, Johann Simon and Holland, Anna Margaretha
+Children:
+- Johann Michael Beaulieu (born 1711, died 1711) (Gramps ID: I1277)
+- Anna Elisabeth Beaulieu (born 1706, died 1772) (Gramps ID: I1316)
+- Johann Valentin Beaulieu (born 1708, died 1802) (Gramps ID: I1318)
+- Anna Catharina Beaulieu (born 1709, died 1709) (Gramps ID: I1320)
+- Anna Maria Beaulieu (born 1715, died 1762) (Gramps ID: I1321)
+- Johann Adam Beaulieu (born 1717, died 1803) (Gramps ID: I1323)
+- Johann Theobald Beaulieu (born 1719, died 1780) (Gramps ID: I1325)
+- Anna Ottilia Beaulieu (born 1722, died 1793) (Gramps ID: I1327)
+- Anna Eva Beaulieu (born 1724, died 1760) (Gramps ID: I1329)
+- Anna Margaretha Beaulieu (born 1726, died 1726) (Gramps ID: I1331)
+- Johann Simon Beaulieu (born 1728, died 1771) (Gramps ID: I1333)
+
+Type: family
+Gramps ID: F0438
+Relationship type: Married
+Father: Johann Adam Beaulieu (born 1717, died 1803) (Gramps ID: I1323)
+Mother: Anna Eva Michaud (born 1716, died 1716) (Gramps ID: I1324)
+Marriage Marriage of Beaulieu, Johann Adam and Michaud, Anna Eva
+
+Type: family
+Gramps ID: F0304
+Relationship type: Married
+Father: Moses Aaron ĐĐŒĐžŃŃОДĐČ (born 1735-11-09) (Gramps ID: I0969)
+Mother: Mary Jane Reynolds (Gramps ID: I0968)
+Marriage: 1759 in Carson City, NV, USA - Marriage of ĐĐŒĐžŃŃОДĐČ, Moses Aaron and Reynolds, Mary Jane
+Children:
+- Frances Diaz (born 1761-08-07, died 1851-10-06) (Gramps ID: I0970)
+- George ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1899)
+- James Diaz (born 1763-04-15) (Gramps ID: I1900)
+- Nancy Ann ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1904)
+- Travis ĐĐŒĐžŃŃОДĐČ (born 1767-09-12) (Gramps ID: I1906)
+- William ĐĐŒĐžŃŃОДĐČ (born 1768-04-01, died 1853) (Gramps ID: I1908)
+- Margaret Jane ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1912)
+- Alexander Carroll Sr. ĐĐŒĐžŃŃОДĐČ (born 1771-04-20, died 1838-01-18) (Gramps ID: I1914)
+- Mary Polly Diaz (died 1822) (Gramps ID: I1916)
+
+Type: family
+Gramps ID: F0611
+Relationship type: Married
+Father: William ĐĐŒĐžŃŃОДĐČ (born 1768-04-01, died 1853) (Gramps ID: I1908)
+Mother: Polly Wood (born 1771-01-29, died vor 1850) (Gramps ID: I1909)
+Marriage Marriage of ĐĐŒĐžŃŃОДĐČ, William and Wood, Polly
+
+Type: family
+Gramps ID: F0702
+Relationship type: Married
+Father: Rev. Edmund Warner (Gramps ID: I0846)
+Children:
+- Thomas Warner (born 1556, died 1556) (Gramps ID: I0845)
+- Sir Francis Warner (born 1543, died 1596-01-28) (Gramps ID: I0847)
+- John Warner (Gramps ID: I1958)
+
+Type: family
+Gramps ID: F0296
+Relationship type: Married
+Father: Matthias Fortin (born 1664, died 1744-06-23) (Gramps ID: I0944)
+Mother: Margaret Baker (born 1667-05, died 1741-10-25) (Gramps ID: I0945)
+Marriage: 1691-05-11 - Marriage of Fortin, Matthias and Baker, Margaret
+Children:
+- Anna Catherina Reid (born 1694-02-04, died 1740-11-20) (Gramps ID: I0947)
+
+Type: family
+Gramps ID: F0039
+Relationship type: Married
+Father: David Warren Warner (born 1945-02-13) (Gramps ID: I0152)
+Mother: Geraldine Ann Simpson (born 1945-12-17) (Gramps ID: I0290)
+Marriage: 1968-11-16 in Santa Rosa-Petaluma, CA, USA - Marriage of Warner, David Warren and Simpson, Geraldine Ann
+Children:
+- Sheryl Ann Warner (born 1972-10-10) (Gramps ID: I0291)
+- Robert Warren Warner (born 1977-04-16) (Gramps ID: I0292)
+
+Type: family
+Gramps ID: F0154
+Relationship type: Married
+Father: John M. Todd (born 1851-06-07, died 1921-02-23) (Gramps ID: I0085)
+Mother: Elizabeth Ellen Farmer (born 1850-06-09, died 1931-08-03) (Gramps ID: I0088)
+Marriage: 1871-09-21 in Kingsville, Kleberg, TX, USA - Marriage of Todd, John M. and Farmer, Elizabeth Ellen
+Children:
+- Louella Jane Todd (born 1877-03-26, died 1965-01-26) (Gramps ID: I0043)
+- Flora Belle Todd (born 1873-07-13, died 1950-02-18) (Gramps ID: I0350)
+- Robert Arthur Todd (born 1874-11-19, died 1940-12-20) (Gramps ID: I0351)
+- George Walter Todd (born 1879-03-03, died 1919-06-28) (Gramps ID: I0352)
+- Jesse Elmer Todd (born 1881-09-10, died 1957-12-12) (Gramps ID: I0353)
+- Lena Viola Todd (born 1884-06-26) (Gramps ID: I0354)
+- Irene Frances Todd (born 1886-09-14) (Gramps ID: I0355)
+- Cora Olive Todd (born 1889-06-18) (Gramps ID: I0356)
+- Benjamin Harrison Todd (born 1891-09-22, died 1968-02-13) (Gramps ID: I0357)
+- Percy Haye Todd (born 1894-09-09, died 1950-05-29) (Gramps ID: I0358)
+
+Type: family
+Gramps ID: F0707
+Relationship type: Married
+Father: John Christiansen (born 1455, died 1514) (Gramps ID: I1029)
+Children:
+- Christopher Christiansen (born 1495, died 1570) (Gramps ID: I1031)
+
+Type: family
+Gramps ID: F0337
+Relationship type: Married
+Father: Christopher Christiansen (born 1495, died 1570) (Gramps ID: I1031)
+Mother: Jane Joane Gomez (born 1499, died 1573) (Gramps ID: I1032)
+Marriage: 1514 in Greenville, OH, USA - Marriage of Christiansen, Christopher and Gomez, Jane Joane
+Children:
+- Christopher Christiansen (born 1530, died 1588) (Gramps ID: I0522)
+
+Type: family
+Gramps ID: F0404
+Relationship type: Married
+Father: William (Rev.) Diaz (born um 1530, died um 1587-10-12) (Gramps ID: I1201)
+Mother: Fay Hoffman (Gramps ID: I1202)
+Marriage Marriage of Diaz, William (Rev.) and Hoffman, Fay
+Children:
+- Richard Swanson (Gramps ID: I1199)
+- Urselie Diaz (Gramps ID: I1205)
+- Clemence Diaz (Gramps ID: I1206)
+- John Diaz (born 1631-02-01, died 1631-02-01) (Gramps ID: I1207)
+- Cuthbert Diaz (Gramps ID: I1208)
+
+Type: family
+Gramps ID: F0538
+Relationship type: Married
+Father: Mr. Young (Gramps ID: I1652)
+Mother: Edith Waters (Gramps ID: I1651)
+Marriage Marriage of Young, Mr. and Waters, Edith
+
+Type: family
+Gramps ID: F0618
+Relationship type: Married
+Father: Jack Beck (Gramps ID: I1926)
+Mother: Bernadette Garner (born 1957-08-31) (Gramps ID: I0182)
+Marriage Marriage of Beck, Jack and Garner, Bernadette
+
+Type: family
+Gramps ID: F0405
+Relationship type: Married
+Father: Antoine Desaure Perronett ć±±æŹ (born 1643-07-10, died 1643-07-10) (Gramps ID: I0766)
+Mother: Louise ĐĄĐŸĐșĐŸĐ»ĐŸĐČ (Gramps ID: I1214)
+Marriage Marriage of ć±±æŹ, Antoine Desaure Perronett and ĐĄĐŸĐșĐŸĐ»ĐŸĐČ, Louise
+Children:
+- Joseph Louis(Sr.) Benson (born 1676-01-09, died 1676-01-09) (Gramps ID: I0767)
+- James Benson (born 1674-11-20, died 1674-11-20) (Gramps ID: I1588)
+- Robert Watkins Benson (born 1678-07-18, died 1678-07-18) (Gramps ID: I1589)
+- Louise DeSoix Benson (born 1680-03-15, died 1680-03-15) (Gramps ID: I1590)
+- Mary Frances Benson (born 1682-02-20, died 1682-02-20) (Gramps ID: I1591)
+- Elizabeth Benson (born 1685-04-13, died 1685-04-13) (Gramps ID: I1592)
+- Gabriel Gustav ć±±æŹ (born 1672-10-12, died 1672-10-12) (Gramps ID: I1593)
+
+Type: family
+Gramps ID: F0469
+Relationship type: Married
+Father: Teddy C. Armstrong (born 1906-07-24, died 1995-07-09) (Gramps ID: I1433)
+Mother: Gertrude Cross (born 1911-02-14, died 1992-07-16) (Gramps ID: I1432)
+Marriage: 1946-03-02 in Grand Forks, ND, USA - Marriage of Armstrong, Teddy C. and Cross, Gertrude
+Children:
+- Sarah Armstrong (Gramps ID: I1446)
+- Linda Armstrong (Gramps ID: I1448)
+
+Type: family
+Gramps ID: F0474
+Relationship type: Married
+Father: Reyes (Gramps ID: I1447)
+Mother: Sarah Armstrong (Gramps ID: I1446)
+Marriage Marriage of Reyes and Armstrong, Sarah
+
+Type: family
+Gramps ID: F0173
+Relationship type: Married
+Father: Cadwallader Alvarado (Gramps ID: I0608)
+Mother: Martha Mendez (Gramps ID: I0609)
+Marriage in Austin, MN, USA - Marriage of Alvarado, Cadwallader and Mendez, Martha
+Children:
+- Col. Charles Alvarado (died 1864-02) (Gramps ID: I0473)
+- Patsy Alvarado (Gramps ID: I1556)
+
+Type: family
+Gramps ID: F0108
+Relationship type: Married
+Father: Col. Charles Alvarado (died 1864-02) (Gramps ID: I0473)
+Mother: Eleanor Parent (born 1799-05-09) (Gramps ID: I0474)
+Marriage in Orlando, Orange, FL, USA - Marriage of Alvarado, Col. Charles and Parent, Eleanor
+Children:
+- Nancy Alvarado (died 1861-03-12) (Gramps ID: I0472)
+- Jacob W. Alvarado (born 1821-01-25) (Gramps ID: I1464)
+- John Alvarado (born 1825-03-13, died 1825-03-13) (Gramps ID: I1465)
+- Eliza Alvarado (Gramps ID: I1466)
+- Franklin Alvarado (Gramps ID: I1467)
+- William Alvarado (Gramps ID: I1468)
+- Thomas C. Alvarado (Gramps ID: I1469)
+- Marshall Alvarado (Gramps ID: I1470)
+- James Alvarado (Gramps ID: I1471)
+- Charles Alvarado (Gramps ID: I1481)
+- Marsha Alvarado (Gramps ID: I1482)
+
+Type: family
+Gramps ID: F0303
+Relationship type: Married
+Father: Leonard? Payne (born vor 1720, died nach 1757) (Gramps ID: I0962)
+Mother: Elizabeth"Betty" Brooks (Gramps ID: I0959)
+Marriage: 46 in Georgetown, SC, USA - Marriage of Payne, Leonard? and Brooks, Elizabeth"Betty"
+Children:
+- George Payne (born 1747-08-22, died 1821-07-09) (Gramps ID: I0955)
+
+Type: family
+Gramps ID: F0689
+Relationship type: Married
+Father: John Sr. Parent (Gramps ID: I0728)
+Children:
+- Capt.Jacob C. Parent (died 1811-11-09) (Gramps ID: I0475)
+
+Type: family
+Gramps ID: F0109
+Relationship type: Married
+Father: Capt.Jacob C. Parent (died 1811-11-09) (Gramps ID: I0475)
+Mother: Jane James (died 1846-09-03) (Gramps ID: I0476)
+Marriage in Davenport, Scott, IA, USA - Marriage of Parent, Capt.Jacob C. and James, Jane
+Children:
+- Eleanor Parent (born 1799-05-09) (Gramps ID: I0474)
+- Montgomery Parent (born 1797, died 1797) (Gramps ID: I1499)
+- Nancy Parent (Gramps ID: I1500)
+- John Parent (Gramps ID: I1501)
+- Harry Parent (Gramps ID: I1502)
+- Jacob G. Parent (Gramps ID: I1503)
+- Patsy Parent (Gramps ID: I1504)
+
+Type: family
+Gramps ID: F0148
+Relationship type: Married
+Father: John Pope (born 1957-04-24, died 1957-04-24) (Gramps ID: I0581)
+Mother: Mary Elizabeth Kristensen (born 1887-06-14, died 1918-10-22) (Gramps ID: I0580)
+Marriage: 1911-11-22 - Marriage of Pope, John and Kristensen, Mary Elizabeth
+
+Type: family
+Gramps ID: F0341
+Relationship type: Married
+Father: Richard Eugene Garner (born 1947-02-28) (Gramps ID: I0177)
+Mother: Elaine Gibbs (Gramps ID: I1044)
+Marriage: 1971-10-23 - Marriage of Garner, Richard Eugene and Gibbs, Elaine
+Children:
+- Heather Jo Garner (born 1972-03-14) (Gramps ID: I1045)
+- Regina Lynne Garner (born 1973-08-27) (Gramps ID: I1046)
+- Jason Richard Garner (born 1975-10-20) (Gramps ID: I1047)
+
+Type: family
+Gramps ID: F0047
+Relationship type: Married
+Father: Dennis John ĐĐžŃДлДĐČ (born 1952-07-16) (Gramps ID: I0308)
+Mother: Nancy Elizabeth Warner (born 1951-10-20) (Gramps ID: I0156)
+Marriage: 1978-06-24 in Gaithersburg, MD, USA - Marriage of ĐĐžŃДлДĐČ, Dennis John and Warner, Nancy Elizabeth
+Children:
+- Timothy Andrew ĐĐžŃДлДĐČ (born 1983-07-07) (Gramps ID: I0309)
+- Aaron D. ĐĐžŃДлДĐČ (born 1985-08-08) (Gramps ID: I0310)
+
+Type: family
+Gramps ID: F0222
+Relationship type: Married
+Father: John Norris (born 1633-09-08, died 1712-08-27) (Gramps ID: I0750)
+Mother: Mary (Sarah) Howell (born 1641-02-12, died 1686) (Gramps ID: I0751)
+Marriage: 1666-01-12 in Beeville, Bee, TX, USA - Marriage of Norris, John and Howell, Mary (Sarah)
+Children:
+- Joanna Allen (born 1670-08, died 1670-08) (Gramps ID: I0678)
+- Mary Allen (born 1666-12-07, died 1666-12-07) (Gramps ID: I1995)
+- Enos Allen (born 1667, died 1689-11-21) (Gramps ID: I1996)
+- Sarah Allen (born 1668-01, died 1702) (Gramps ID: I1997)
+- John Allen (born 1674-05-24, died 1727) (Gramps ID: I1999)
+- Lediah Allen (born 1679-01-01, died um 1680) (Gramps ID: I2013)
+- Elizabeth Norris (born um 1679, died 1731-05-10) (Gramps ID: I2014)
+- Jonathan Allen (born 1683-05-29, died 1733-05-08) (Gramps ID: I2016)
+- Gershom Allen (born um 1685, died um 1711) (Gramps ID: I2017)
+
+Type: family
+Gramps ID: F0262
+Relationship type: Married
+Father: David Andrew SĂĄnchez (born 1951-03-02) (Gramps ID: I0861)
+Mother: Rosalie Jane Welch (born 1956-08-03) (Gramps ID: I0860)
+Marriage: 1977-07-31 in Alexandria, MN, USA - Marriage of SĂĄnchez, David Andrew and Welch, Rosalie Jane
+Children:
+- Roxanne Marie SĂĄnchez (born 1988-09-12) (Gramps ID: I0864)
+- Jonathan Andrew SĂĄnchez (born 1991-05-06) (Gramps ID: I0865)
+
+Type: family
+Gramps ID: F0463
+Relationship type: Married
+Father: Raymond Ortiz (Gramps ID: I1410)
+Mother: Ferne Page (Gramps ID: I1409)
+Marriage: 1929-07-20 - Marriage of Ortiz, Raymond and Page, Ferne
+Children:
+- Don Ortiz (Gramps ID: I1458)
+
+Type: family
+Gramps ID: F0479
+Relationship type: Married
+Father: Don Ortiz (Gramps ID: I1458)
+Mother: Shirley Welch (Gramps ID: I1459)
+Marriage Marriage of Ortiz, Don and Welch, Shirley
+Children:
+- Rhonda Lynch (Gramps ID: I1460)
+- Nancy Lynch (Gramps ID: I1462)
+- Ted Ortiz (Gramps ID: I1463)
+
+Type: family
+Gramps ID: F0579
+Relationship type: Married
+Father: Peter Reed (born um 1904, died 1981-04-12) (Gramps ID: I1806)
+Mother: Hanora ĐŃĐ·ĐœĐ”ŃĐŸĐČ (born 1972-08-08, died 1972-08-08) (Gramps ID: I1807)
+Marriage Marriage of Reed, Peter and ĐŃĐ·ĐœĐ”ŃĐŸĐČ, Hanora
+Children:
+- Terrence Reed (born 1948-05-07) (Gramps ID: I1808)
+- Joan Reed (born 1943-05-13) (Gramps ID: I1809)
+- Peggy Reed (born 1936-07) (Gramps ID: I1810)
+- Carmel Reed (born 1938-02) (Gramps ID: I1811)
+- Noreen Reed (born 1934-07) (Gramps ID: I1812)
+
+Type: family
+Gramps ID: F0092
+Relationship type: Married
+Father: Rodney Herman ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1945-10-22) (Gramps ID: I0427)
+Mother: Janis Marlene Cruz (born 1947-01-10) (Gramps ID: I0220)
+Marriage: 1966-11-12 - Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Rodney Herman and Cruz, Janis Marlene
+Children:
+- Heather Michelle ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1970-05-15) (Gramps ID: I0428)
+- Hyla Rae ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1973-08-25) (Gramps ID: I0429)
+
+Type: family
+Gramps ID: F0302
+Relationship type: Married
+Father: Leonard Payne (born um 1655, died 1745-10) (Gramps ID: I0960)
+Mother: Elizabeth Hall (died vor 1745) (Gramps ID: I0961)
+Marriage Marriage of Payne, Leonard and Hall, Elizabeth
+Children:
+- Leonard? Payne (born vor 1720, died nach 1757) (Gramps ID: I0962)
+
+Type: family
+Gramps ID: F0344
+Relationship type: Married
+Father: William George DĂez (Gramps ID: I1054)
+Mother: Barbara Jo Garner (born 1949-11-08) (Gramps ID: I0179)
+Marriage Marriage of DĂez, William George and Garner, Barbara Jo
+Children:
+- William George Jr. DĂez (born 1972-10-10) (Gramps ID: I1055)
+
+Type: family
+Gramps ID: F0595
+Relationship type: Married
+Father: Johnnie Sandoval (Gramps ID: I1863)
+Mother: Minnie Reed (Gramps ID: I1862)
+Marriage Marriage of Sandoval, Johnnie and Reed, Minnie
+Children:
+- Liz Sandoval (Gramps ID: I1866)
+- Terry Sandoval (Gramps ID: I1868)
+- John Joe Sandoval (Gramps ID: I1869)
+- Jean Sandoval (Gramps ID: I1870)
+
+Type: family
+Gramps ID: F0697
+Relationship type: Married
+Father: William Benson (born 1709-08-10, died 1709-08-10) (Gramps ID: I0771)
+Children:
+- David Benson (born 1730, died 1777) (Gramps ID: I0772)
+
+Type: family
+Gramps ID: F0158
+Relationship type: Married
+Father: Melvin Glen Russell (born 1936-09-23) (Gramps ID: I0240)
+Mother: Judith Ann Manning (born 1940-09-05) (Gramps ID: I0592)
+Marriage: 1963-07-21 in North Vernon, Jennings, IN, USA - Marriage of Russell, Melvin Glen and Manning, Judith Ann
+Children:
+- Beth Ann Russell (born 1968-02-15) (Gramps ID: I0591)
+- Bruce Lynn Russell (born 1964-12-28) (Gramps ID: I0594)
+
+Type: family
+Gramps ID: F0253
+Relationship type: Married
+Father: Damian ĐĐ°ŃĐżĐŸĐČ (Gramps ID: I0820)
+Mother: Irene Hansen (Gramps ID: I0818)
+Marriage in Green Bay, WI, USA - Marriage of ĐĐ°ŃĐżĐŸĐČ, Damian and Hansen, Irene
+Children:
+- Sarah ĐĐ°ŃĐżĐŸĐČ (born 1987) (Gramps ID: I0821)
+
+Type: family
+Gramps ID: F0121
+Relationship type: Married
+Father: Capt. George Warner (born 1650, died 1710-11-08) (Gramps ID: I0507)
+Mother: Mary Alvarez (died 1727) (Gramps ID: I0508)
+Marriage: 1677-11-13 in Livonia, MI, USA - Marriage of Warner, Capt. George and Alvarez, Mary
+Children:
+- Capt. Andrew Warner (born 1684-01-20, died 1754-01-11) (Gramps ID: I0509)
+- George Warner (born 1678-08-04, died 1679) (Gramps ID: I1944)
+- Mary Warner (born 1679-01-02, died 1679-01-02) (Gramps ID: I1945)
+- Hannah Warner (born 1681-09-03, died 1681-09-03) (Gramps ID: I1947)
+- Daniel Warner (born 1682-12-05, died 1682-12-05) (Gramps ID: I1948)
+- Elizabeth Warner (born 1683-03-28, died 1683-03-28) (Gramps ID: I1950)
+- Johnathon Warner (born um 1689, died 1754-07) (Gramps ID: I1955)
+
+Type: family
+Gramps ID: F0626
+Relationship type: Married
+Father: Thomas Dixon (born um 1671, died um 1671) (Gramps ID: I1946)
+Mother: Mary Warner (born 1679-01-02, died 1679-01-02) (Gramps ID: I1945)
+Marriage Marriage of Dixon, Thomas and Warner, Mary
+
+Type: family
+Gramps ID: F0232
+Relationship type: Married
+Father: Phillip James Thornton (born 1949-06-17) (Gramps ID: I0490)
+Mother: Katherine ĐĐ”Đ»ĐŸĐČ (Gramps ID: I0777)
+Marriage in Providence, RI, USA - Marriage of Thornton, Phillip James and ĐĐ”Đ»ĐŸĐČ, Katherine
+
+Type: family
+Gramps ID: F0347
+Relationship type: Married
+Father: Hill (Gramps ID: I1066)
+Mother: Louella Marie Garner (Gramps ID: I0183)
+Marriage Marriage of Hill and Garner, Louella Marie
+Children:
+- Jo Lynn Hill (born 1977-03-12) (Gramps ID: I1067)
+- Leigh Ann Hill (born 1979-01-23) (Gramps ID: I1068)
+- Sean Michael Hill (born 1980-05-10) (Gramps ID: I1069)
+
+Type: family
+Gramps ID: F0449
+Relationship type: Married
+Father: ?? Gilbert (Gramps ID: I1360)
+Mother: Wilma LĂ©vesque (Gramps ID: I1359)
+Marriage in Reno-Sparks, NV, USA - Marriage of Gilbert, ?? and LĂ©vesque, Wilma
+
+Type: family
+Gramps ID: F0524
+Relationship type: Married
+Father: Kenner S. Curry (Gramps ID: I1619)
+Mother: Rebecca Jiménez (born 1799-09-12, died 1799-09-12) (Gramps ID: I1618)
+Marriage: 1824-01-23 - Marriage of Curry, Kenner S. and Jiménez, Rebecca
+
+Type: family
+Gramps ID: F0669
+Relationship type: Married
+Father: Ford (Gramps ID: I2090)
+Mother: Elizabeth Moreno (Gramps ID: I2089)
+Marriage Marriage of Ford and Moreno, Elizabeth
+
+Type: family
+Gramps ID: F0186
+Relationship type: Married
+Father: ??????? Arnold (Gramps ID: I0649)
+Mother: Esther Faye ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0647)
+Marriage Marriage of Arnold, ??????? and ĐŻĐșĐŸĐČлДĐČ, Esther Faye
+
+Type: family
+Gramps ID: F0585
+Relationship type: Married
+Father: Dawson (Gramps ID: I1824)
+Mother: Anastasia Reed (born um 1914, died um 1914) (Gramps ID: I1823)
+Marriage Marriage of Dawson and Reed, Anastasia
+Children:
+- Mary Dawson (Gramps ID: I1842)
+
+Type: family
+Gramps ID: F0075
+Relationship type: Married
+Father: Lawrence Harris (Gramps ID: I0266)
+Mother: Alice Landry (born 1900-03-06) (Gramps ID: I0263)
+Marriage Marriage of Harris, Lawrence and Landry, Alice
+Children:
+- Mary Alice Harris (Gramps ID: I0267)
+- Patricia Anne Harris (Gramps ID: I0268)
+- Theresa Frances Harris (Gramps ID: I0269)
+
+Type: family
+Gramps ID: F0057
+Relationship type: Married
+Father: William Robert Bates (born 1950-08-04) (Gramps ID: I0336)
+Mother: Elaine Suzanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1951-10-23) (Gramps ID: I0168)
+Marriage: 1972-07-08 in Ottawa, La Salle, IL, USA - Marriage of Bates, William Robert and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Elaine Suzanne
+Children:
+- Timothy Christian Bates (born 1977-03-14) (Gramps ID: I0337)
+- Stephen Michael Bates (born 1982-08-03) (Gramps ID: I0338)
+- John Allen Bates (born 1984-10-29) (Gramps ID: I0339)
+
+Type: family
+Gramps ID: F0281
+Relationship type: Married
+Father: James Patrick Evans (born 1945-10-02) (Gramps ID: I0717)
+Mother: Susan Stevenson (Gramps ID: I0911)
+Marriage Marriage of Evans, James Patrick and Stevenson, Susan
+Children:
+- Patricia Kay Evans (born 1976-01-19) (Gramps ID: I0718)
+- Michael Patrick Evans (born 1973-03-05) (Gramps ID: I0719)
+- Christian Anne Evans (born 1969-05-26) (Gramps ID: I0720)
+- Heather Lee Evans (born 1977-07-12) (Gramps ID: I0721)
+
+Type: family
+Gramps ID: F0397
+Relationship type: Married
+Father: Quirinus Bishop (born nach 1626, died 1683-05-17) (Gramps ID: I1187)
+Mother: Maria Simmons (born um 1626, died um 1626) (Gramps ID: I1188)
+Marriage: um 1640 in Akron, OH, USA - Marriage of Bishop, Quirinus and Simmons, Maria
+Children:
+- Anna Barbara Bishop (born 1664-09-29, died nach 1717) (Gramps ID: I0762)
+
+Type: family
+Gramps ID: F0648
+Relationship type: Married
+Father: Alfred Wayne Stone (Gramps ID: I2028)
+Mother: Virginia Elizabeth Gutiérrez (born 1921-07-01, died 1921-07-01) (Gramps ID: I2025)
+Marriage: 1942-07-23 - Marriage of Stone, Alfred Wayne and Gutiérrez, Virginia Elizabeth
+
+Type: family
+Gramps ID: F0095
+Relationship type: Married
+Father: Paul Allen Welch (born 1940-09-30) (Gramps ID: I0432)
+Mother: Linda Helen Cruz (born 1942-02-06) (Gramps ID: I0215)
+Marriage: 1962-01-20 - Marriage of Welch, Paul Allen and Cruz, Linda Helen
+Children:
+- Lisa Dawn Welch (born 1962-12-21) (Gramps ID: I0442)
+- Christopher Paul Welch (born 1966-09-04) (Gramps ID: I0444)
+
+Type: family
+Gramps ID: F0363
+Relationship type: Married
+Father: Thomas Riley (Gramps ID: I0974)
+Mother: Lucy Edwards (born 1799-01-17, died 1879-04-02) (Gramps ID: I0105)
+Marriage: 1834-06-08 in Winston-Salem, NC, USA - Marriage of Riley, Thomas and Edwards, Lucy
+
+Type: family
+Gramps ID: F0027
+Relationship type: Married
+Father: Andrew Vincent Walker (born 1928-01-12) (Gramps ID: I0131)
+Mother: Eileen Ruth Pearson (born 1930-04-03) (Gramps ID: I0142)
+Marriage: 1950-08-13 in Medford, OR, USA - Marriage of Walker, Andrew Vincent and Pearson, Eileen Ruth
+Children:
+- Sharon Lynette Walker (born 1951-11-24) (Gramps ID: I0163)
+- Thomas Frederick Warner (born 1954-11-25) (Gramps ID: I0164)
+- Shirley Kay Warner (born 1957-10-14) (Gramps ID: I0165)
+- Robert Douglas Warner (born 1962-09-07) (Gramps ID: I0166)
+
+Type: family
+Gramps ID: F0311
+Relationship type: Married
+Father: Thomas Frederick Warner (born 1954-11-25) (Gramps ID: I0164)
+Mother: Debra J. Carter (born 1954-09-30) (Gramps ID: I0328)
+Marriage Marriage of Warner, Thomas Frederick and Carter, Debra J.
+Children:
+- James Andrew Warner (born 1979-05-17) (Gramps ID: I0326)
+- Cindy Lynn Warner (born 1981-04-12) (Gramps ID: I0327)
+
+Type: family
+Gramps ID: F0436
+Relationship type: Married
+Father: Johann Valentin Beaulieu (born 1708, died 1802) (Gramps ID: I1318)
+Mother: Maria Margaretha Frazier (born 1712, died 1712) (Gramps ID: I1319)
+Marriage Marriage of Beaulieu, Johann Valentin and Frazier, Maria Margaretha
+
+Type: family
+Gramps ID: F0401
+Relationship type: Married
+Father: William Diaz (born um 1648, died 1700-09-16) (Gramps ID: I0984)
+Mother: Jane ĐĐŸĐŒĐ°ŃĐŸĐČ (Gramps ID: I1196)
+Marriage Marriage of Diaz, William and ĐĐŸĐŒĐ°ŃĐŸĐČ, Jane
+
+Type: family
+Gramps ID: F0306
+Relationship type: Married
+Father: George КДŃŃĐ°ĐșĐŸĐČ (born um 1784-09, died 1864-03-09) (Gramps ID: I0972)
+Mother: Phoebe Daniels (Gramps ID: I0973)
+Marriage Marriage of КДŃŃĐ°ĐșĐŸĐČ, George and Daniels, Phoebe
+Children:
+- Phoebe Emily ZieliĆski (born 1827-04-12, died 1882-03-07) (Gramps ID: I0107)
+- Willoughby M. ĐąĐžĐŒĐŸŃДДĐČ (born 1813-02-04, died 1877-01-16) (Gramps ID: I1108)
+- Mary Ann ĐąĐžĐŒĐŸŃДДĐČ (born 1812-03-07, died 1880-11-27) (Gramps ID: I1109)
+- John P. ĐąĐžĐŒĐŸŃДДĐČ (born um 1818, died um 1818) (Gramps ID: I1110)
+- Sarah Jane ĐąĐžĐŒĐŸŃДДĐČ (born 1825-07-29, died 1825-07-29) (Gramps ID: I1111)
+- ĐąĐžĐŒĐŸŃДДĐČ (born nach 1824, died nach 1824) (Gramps ID: I1112)
+
+Type: family
+Gramps ID: F0120
+Relationship type: Married
+Father: Edward Warner (born 1713-01-06, died 1776-09-27) (Gramps ID: I0510)
+Mother: Mary Molly Anderson (born 1719, died 1795-04-20) (Gramps ID: I0511)
+Marriage: 1736-09-22 - Marriage of Warner, Edward and Anderson, Mary Molly
+Children:
+- Andrew Warner (born 1740-08-15, died 1827-10-14) (Gramps ID: I0512)
+
+Type: family
+Gramps ID: F0415
+Relationship type: Married
+Father: Jacob Farmer (born 1777, died 1777) (Gramps ID: I1273)
+Mother: Mary Elizabeth ĐĐŸŃĐŸĐ·ĐŸĐČ (born 1788, died 1788) (Gramps ID: I1274)
+Marriage Marriage of Farmer, Jacob and ĐĐŸŃĐŸĐ·ĐŸĐČ, Mary Elizabeth
+Children:
+- Benjamin H. Farmer (born 1812-01-03, died 1873-08-13) (Gramps ID: I0086)
+- Simon Farmer (born 1815, died 1875) (Gramps ID: I1281)
+- Caroline Farmer (born 1818, died 1818) (Gramps ID: I1283)
+- Elizabeth Farmer (Gramps ID: I1285)
+- Magdalena Farmer (born 1832, died 1832) (Gramps ID: I1287)
+
+Type: family
+Gramps ID: F0041
+Relationship type: Married
+Father: Stuart Bogarte Warner (born 1955-12-09) (Gramps ID: I0161)
+Mother: Diana Richards (Gramps ID: I0317)
+Marriage: 1983-04-09 in Madison, WI, USA - Marriage of Warner, Stuart Bogarte and Richards, Diana
+Children:
+- Martin B. Warner (born 1985-07-22) (Gramps ID: I0318)
+- Clayton James Warner (Gramps ID: I0319)
+- Nicole Lynn Warner (born 1996-09-19) (Gramps ID: I1089)
+- Noah Stuart Warner (born 1998-06-30) (Gramps ID: I1789)
+
+Type: family
+Gramps ID: F0510
+Relationship type: Married
+Father: Henry King (Gramps ID: I1570)
+Mother: Annie ĐŃĐșĐŸĐČ (Gramps ID: I1569)
+Marriage Marriage of King, Henry and ĐŃĐșĐŸĐČ, Annie
+
+Type: family
+Gramps ID: F0574
+Relationship type: Married
+Father: John Lindsey (Gramps ID: I1788)
+Mother: Martha Ellen Warner (born 1950-02-07) (Gramps ID: I0154)
+Marriage in Troy, Pike, AL, USA - Marriage of Lindsey, John and Warner, Martha Ellen
+
+Type: family
+Gramps ID: F0065
+Relationship type: Married
+Father: Harold Lowell Warner (born 1946-12-21) (Gramps ID: I0153)
+Mother: Nancy Lou Powers (born 1945-08-28) (Gramps ID: I0293)
+Marriage: 1971-06-26 in Gainesville, Hall, GA, USA - Marriage of Warner, Harold Lowell and Powers, Nancy Lou
+Children:
+- Belle Marie Warner (born 1974-07-14) (Gramps ID: I0294)
+- Curtis Andrew Warner (born 1976-08-26, died 1994-12-18) (Gramps ID: I0295)
+- Douglas Lowell Warner (born 1978-12-11) (Gramps ID: I0296)
+
+Type: family
+Gramps ID: F0272
+Relationship type: Married
+Father: Vernett Gail Page (born 1911-02-26, died 1998-08-29) (Gramps ID: I0456)
+Mother: Dorothy Louise Norman (born 1914-10-16) (Gramps ID: I0892)
+Marriage: 1936-12-16 in Kansas City, MO, USA - Marriage of Page, Vernett Gail and Norman, Dorothy Louise
+Children:
+- Dwayne Alan Page (born 1950-04-04) (Gramps ID: I0893)
+- Sylvia Louise Page (born 1939-08-21) (Gramps ID: I0895)
+- Marvin Ray Page (born 1941-07-30) (Gramps ID: I0897)
+
+Type: family
+Gramps ID: F0512
+Relationship type: Married
+Father: Mr. Lawson (Gramps ID: I1573)
+Mother: Polly Parent (Gramps ID: I1557)
+Marriage Marriage of Lawson, Mr. and Parent, Polly
+Children:
+- John Lawson (Gramps ID: I1574)
+- Phoebe Lawson (Gramps ID: I1575)
+- Willard Lawson (Gramps ID: I1576)
+- Permelia Lawson (Gramps ID: I1577)
+- Susan Lawson (Gramps ID: I1578)
+
+Type: family
+Gramps ID: F0122
+Relationship type: Married
+Father: David Fox (born 1738) (Gramps ID: I0516)
+Mother: Mary Harris (Gramps ID: I0517)
+Marriage Marriage of Fox, David and Harris, Mary
+Children:
+- Jacob, Sr. Fox (born 1769-02, died 1824-09-03) (Gramps ID: I0518)
+
+Type: family
+Gramps ID: F0123
+Relationship type: Married
+Father: Jacob, Sr. Fox (born 1769-02, died 1824-09-03) (Gramps ID: I0518)
+Mother: Sarah Palmer (born 1819-10-09, died 1819-10-09) (Gramps ID: I0521)
+Marriage Marriage of Fox, Jacob, Sr. and Palmer, Sarah
+Children:
+- David Fox (born 1798-07-22, died 1868-07-31) (Gramps ID: I0025)
+
+Type: family
+Gramps ID: F0167
+Relationship type: Married
+Father: Hans Peter Douglas (Gramps ID: I0573)
+Mother: Juliana Howard (Gramps ID: I0572)
+Marriage: 1739-04-30 in Colorado Springs, El Paso, CO, USA - Marriage of Douglas, Hans Peter and Howard, Juliana
+Children:
+- John Sr. Douglas (born 1739-11-25, died 1821-10) (Gramps ID: I0574)
+- Frederick Douglas (Gramps ID: I1526)
+- Henry Douglas (Gramps ID: I1527)
+- Andrew Douglas (Gramps ID: I1528)
+
+Type: family
+Gramps ID: F0472
+Relationship type: Married
+Father: Cecil Waters (Gramps ID: I1440)
+Mother: Grace Đ€ĐŸĐŒĐžĐœ (Gramps ID: I1442)
+Marriage Marriage of Waters, Cecil and Đ€ĐŸĐŒĐžĐœ, Grace
+Children:
+- Cecil Glenn Waters (born 1940) (Gramps ID: I1441)
+
+Type: family
+Gramps ID: F0503
+Relationship type: Married
+Father: Montgomery Parent (born 1797, died 1797) (Gramps ID: I1499)
+Mother: Patsy Alvarado (Gramps ID: I1556)
+Marriage Marriage of Parent, Montgomery and Alvarado, Patsy
+Children:
+- Polly Parent (Gramps ID: I1557)
+- Henry Clay Parent (Gramps ID: I1579)
+
+Type: family
+Gramps ID: F0044
+Relationship type: Married
+Father: Marc W. Haynes (born 1950-01-29) (Gramps ID: I0301)
+Mother: Laura Gail Warner (born 1952-09-27) (Gramps ID: I0300)
+Marriage: 1971-09-05 in Gaithersburg, MD, USA - Marriage of Haynes, Marc W. and Warner, Laura Gail
+Children:
+- Michael Walter Haynes (born 1977-09-05) (Gramps ID: I0302)
+- Elizabeth Ellen Haynes (born 1980-11-18) (Gramps ID: I0303)
+- David William Sigfred Haynes (born 1986-12-06) (Gramps ID: I0304)
+- Melany Haynes (born 1990) (Gramps ID: I0981)
+
+Type: family
+Gramps ID: F0704
+Relationship type: Married
+Father: John Aguilar (born vor 1665, died vor 1745-02) (Gramps ID: I0953)
+Children:
+- Eleanor Aguilar (born nach 1717, died nach 1760-02) (Gramps ID: I0702)
+
+Type: family
+Gramps ID: F0713
+Relationship type: Married
+Father: Robert Guerrero (born 1430, died 1430) (Gramps ID: I1155)
+Children:
+- Robert Molina (born 1450, died 1450) (Gramps ID: I1154)
+
+Type: family
+Gramps ID: F0384
+Relationship type: Married
+Father: Robert Molina (born 1450, died 1450) (Gramps ID: I1154)
+Marriage in McAlester, OK, USA - Marriage of Molina, Robert
+Children:
+- John Sanchez (born um 1480, died 1545) (Gramps ID: I0685)
+
+Type: family
+Gramps ID: F0211
+Relationship type: Married
+Father: Charles Todd (born 1727-08-15, died 1805-07-06) (Gramps ID: I0077)
+Mother: Eurydice Cole (born 1727-08-15, died 1727-08-15) (Gramps ID: I0078)
+Marriage: 1759-07 - Marriage of Todd, Charles and Cole, Eurydice
+Children:
+- John Todd (born 1765-11-26) (Gramps ID: I0079)
+
+Type: family
+Gramps ID: F0722
+Relationship type: Married
+Father: William Swanson (born 1620, died 1684-10-15) (Gramps ID: I1197)
+Children:
+- Thomas Swanson (Gramps ID: I1921)
+- Judith Swanson (Gramps ID: I1922)
+
+Type: family
+Gramps ID: F0014
+Relationship type: Married
+Father: Ira Willis Lessard (born 1871-06-15, died 1924-12-15) (Gramps ID: I0040)
+Mother: Lucinda Ellen Jiménez (born 1870-02-05, died 1949-02-21) (Gramps ID: I0041)
+Marriage: 1894-10-17 in Sulphur Springs, Rusk, TX, USA - Marriage of Lessard, Ira Willis and Jiménez, Lucinda Ellen
+Children:
+- Carl Tolbert Lessard (born 1904-07-30, died 1985-07-04) (Gramps ID: I0035)
+- Ralph Raymond Lessard (born 1895-07-20, died 1969-07-08) (Gramps ID: I0187)
+- Susanna Marie Lessard (born 1896-09-20, died 1981-10-16) (Gramps ID: I0188)
+- Helen Belle Lessard (born 1908-02-22, died 1997-01-29) (Gramps ID: I0189)
+- Laura Eloise Lessard (born 1898-07-22, died um 1975) (Gramps ID: I0190)
+
+Type: family
+Gramps ID: F0177
+Relationship type: Married
+Father: Ralph Raymond Lessard (born 1895-07-20, died 1969-07-08) (Gramps ID: I0187)
+Mother: Bernice Davidson (born 1894-09-27, died 1980-05-24) (Gramps ID: I0622)
+Marriage: 1921-02-16 - Marriage of Lessard, Ralph Raymond and Davidson, Bernice
+
+Type: family
+Gramps ID: F0710
+Relationship type: Married
+Father: Guillaume de Brooks (born 1642, died 1642) (Gramps ID: I1103)
+Children:
+- Marquis I Brooks (born 1675, died 1741) (Gramps ID: I0956)
+
+Type: family
+Gramps ID: F0340
+Relationship type: Married
+Father: MartĂn (Gramps ID: I1042)
+Mother: Melissa Sue Garner (born 1969-12-03) (Gramps ID: I1041)
+Marriage Marriage of MartĂn and Garner, Melissa Sue
+Children:
+- Tyler William MartĂn (born 1993-11-29) (Gramps ID: I1043)
+
+Type: family
+Gramps ID: F0238
+Relationship type: Married
+Father: Lewis I. Webb (born 1903-03-31, died 1942-12-25) (Gramps ID: I0193)
+Mother: Ruth L. ĐĐ°ĐčŃĐ”ĐČ (Gramps ID: I0370)
+Marriage Marriage of Webb, Lewis I. and ĐĐ°ĐčŃĐ”ĐČ, Ruth L.
+Children:
+- Nancy Lou Webb (Gramps ID: I0371)
+- James Lee Webb (born 1939-04-23, died 1994-09-23) (Gramps ID: I0372)
+- Richard L. Webb (born 1928-03-14, died 1994-03-05) (Gramps ID: I0373)
+
+Type: family
+Gramps ID: F0263
+Relationship type: Married
+Father: Paul Daniel Osborne (born 1963-05-18) (Gramps ID: I0172)
+Mother: Jennifer Leigh Hawkins (born 1973) (Gramps ID: I0866)
+Marriage: 1992-09-19 in Blackfoot, Bingham, ID, USA - Marriage of Osborne, Paul Daniel and Hawkins, Jennifer Leigh
+Children:
+- Andrew Cole Osborne (born 1996-10-20) (Gramps ID: I0459)
+- Aaron Patrick Osborne (born 1993-09-23, died 1995-02-15) (Gramps ID: I0977)
+- Madeline Kathleen Osborne (born 1998-09-19) (Gramps ID: I1928)
+
+Type: family
+Gramps ID: F0634
+Relationship type: Married
+Father: Shadrach M. Munoz (Gramps ID: I1988)
+Mother: Nancy H. MarĂn (Gramps ID: I0244)
+Marriage in Marietta, WV, USA - Marriage of Munoz, Shadrach M. and MarĂn, Nancy H.
+Children:
+- Alvah F. Munoz (Gramps ID: I1989)
+- Moses Romulus? Munoz (Gramps ID: I1990)
+- Robert Munoz (Gramps ID: I1991)
+- Willis E. Munoz (Gramps ID: I1992)
+- Lulu Munoz (Gramps ID: I1993)
+
+Type: family
+Gramps ID: F0220
+Relationship type: Married
+Father: Samuel Anderson (born 1654) (Gramps ID: I0746)
+Mother: Elizabeth Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ (born 1657-02, died 1747-09-03) (Gramps ID: I0747)
+Marriage: 1677 - Marriage of Anderson, Samuel and Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+Children:
+- Rev. John Anderson (born 1685, died 1774-11-27) (Gramps ID: I0680)
+
+Type: family
+Gramps ID: F0718
+Relationship type: Married
+Father: Nicholas Murray (born um 1617, died um 1617) (Gramps ID: I1173)
+Children:
+- Susannah Murray (born um 1647, died um 1647) (Gramps ID: I1162)
+
+Type: family
+Gramps ID: F0387
+Relationship type: Married
+Father: Nicholas Reynolds (born 1643, died vor 1695) (Gramps ID: I0965)
+Mother: Susannah Murray (born um 1647, died um 1647) (Gramps ID: I1162)
+Marriage: 1665 - Marriage of Reynolds, Nicholas and Murray, Susannah
+Children:
+- David Reynolds (born 1669, died 1695) (Gramps ID: I0963)
+
+Type: family
+Gramps ID: F0389
+Relationship type: Married
+Father: William Mazur (born um 1606, died um 1606) (Gramps ID: I1164)
+Mother: Margaret Crawford (born um 1610, died vor 1669) (Gramps ID: I1165)
+Marriage Marriage of Mazur, William and Crawford, Margaret
+Children:
+- Elizabeth Mazur (born um 1632) (Gramps ID: I1163)
+
+Type: family
+Gramps ID: F0223
+Relationship type: Married
+Father: Joseph Grenier (born 1605, died 1647-12-04) (Gramps ID: I0752)
+Mother: Rose Peters (born 1608, died 1695) (Gramps ID: I0753)
+Marriage: 1628 in Minneapolis, MN, USA - Marriage of Grenier, Joseph and Peters, Rose
+Children:
+- Mary Grenier (born um 1638, died 1703-07-12) (Gramps ID: I0528)
+
+Type: family
+Gramps ID: F0411
+Relationship type: Married
+Father: Joseph ĐĐ°ĐșĐ°ŃĐŸĐČ (Gramps ID: I1235)
+Marriage in Canton, Fulton, IL, USA - Marriage of ĐĐ°ĐșĐ°ŃĐŸĐČ, Joseph
+Children:
+- Nancy ĐĐ°ĐșĐ°ŃĐŸĐČ (Gramps ID: I1221)
+
+Type: family
+Gramps ID: F0517
+Relationship type: Married
+Father: William Pedersen (Gramps ID: I1604)
+Mother: Elizabeth Benson (Gramps ID: I1603)
+Marriage Marriage of Pedersen, William and Benson, Elizabeth
+
+Type: family
+Gramps ID: F0564
+Relationship type: Married
+Father: Patrick Boucher (Gramps ID: I1745)
+Mother: Susan Dennis (born 1932-12-03, died 1932-12-03) (Gramps ID: I1746)
+Marriage: 1873-02-18 in Marysville, Yuba, CA, USA - Marriage of Boucher, Patrick and Dennis, Susan
+Children:
+- William Boucher (Gramps ID: I1748)
+- Thomas Boucher (Gramps ID: I1749)
+- Mary Boucher (Gramps ID: I1750)
+- Martin Boucher (Gramps ID: I1751)
+
+Type: family
+Gramps ID: F0565
+Relationship type: Married
+Father: James Bush (born 1846, died 1846) (Gramps ID: I1747)
+Mother: Catherine Boucher (Gramps ID: I1743)
+Marriage: 1876-02-28 in Marysville, Yuba, CA, USA - Marriage of Bush, James and Boucher, Catherine
+Children:
+- Patrick Bush (born 1879-04, died 1879-04) (Gramps ID: I1752)
+- John Joseph Bush (Gramps ID: I1753)
+- Honora Bush (Gramps ID: I1754)
+- Martin Bush (Gramps ID: I1755)
+- Bridget Bush (Gramps ID: I1756)
+- Catherine Bush (Gramps ID: I1757)
+- Thomas Bush (Gramps ID: I1758)
+
+Type: family
+Gramps ID: F0392
+Relationship type: Married
+Father: Ralph Goodman (died 1626-06-25) (Gramps ID: I1169)
+Mother: Martha Powell (died 1611-01-11) (Gramps ID: I1170)
+Marriage: 1590-11-01 in Milwaukee, WI, USA - Marriage of Goodman, Ralph and Powell, Martha
+Children:
+- Sarah ĐĐŸĐČалДĐČ (born um 1604) (Gramps ID: I1167)
+
+Type: family
+Gramps ID: F0161
+Relationship type: Married
+Father: Walter Savard (Gramps ID: I0596)
+Mother: Janet Gail Russell (born 1942-07-23) (Gramps ID: I0241)
+Marriage Marriage of Savard, Walter and Russell, Janet Gail
+
+Type: family
+Gramps ID: F0481
+Relationship type: Married
+Father: Hines (Gramps ID: I1474)
+Mother: Eliza Jane Douglas (born 1850-08-07, died 1915) (Gramps ID: I1473)
+Marriage: 1881-10-04 - Marriage of Hines and Douglas, Eliza Jane
+
+Type: family
+Gramps ID: F0024
+Relationship type: Married
+Father: Michael Warren Warner (born 1913-10-29, died 1983-01-18) (Gramps ID: I0126)
+Mother: Mary Helen ЧДŃĐœŃŃ
(born 1916-05-08) (Gramps ID: I0147)
+Marriage: 1936-02-19 in Ottawa, La Salle, IL, USA - Marriage of Warner, Michael Warren and ЧДŃĐœŃŃ
, Mary Helen
+Children:
+- Michael Louis Warner (born 1936-12-22) (Gramps ID: I0148)
+- Betty Louise Warner (born 1940-01-16) (Gramps ID: I0149)
+- John William Warner (born 1944-08-11) (Gramps ID: I0150)
+- Beverly Ann Warner (born 1947-08-19) (Gramps ID: I0151)
+
+Type: family
+Gramps ID: F0107
+Relationship type: Married
+Father: Abraham Douglas (born 1821-02-17, died 1901-01-12) (Gramps ID: I0471)
+Mother: Nancy Alvarado (died 1861-03-12) (Gramps ID: I0472)
+Marriage: 1848-07-30 - Marriage of Douglas, Abraham and Alvarado, Nancy
+Children:
+- Elizabeth Douglas (born 1853-02-26, died 1890-02-14) (Gramps ID: I0039)
+- William Douglas (Gramps ID: I1472)
+- Eliza Jane Douglas (born 1850-08-07, died 1915) (Gramps ID: I1473)
+- Charles Douglas (Gramps ID: I1475)
+- Jacob Douglas (Gramps ID: I1476)
+
+Type: family
+Gramps ID: F0531
+Relationship type: Married
+Father: Joseph James (born 1773-03-03, died 1824) (Gramps ID: I1544)
+Mother: Nancy Floyd (born 1774-01-01, died 1849-11-26) (Gramps ID: I1644)
+Marriage Marriage of James, Joseph and Floyd, Nancy
+
+Type: family
+Gramps ID: F0074
+Relationship type: Married
+Father: Michael Edward Landry (born 1855-05-27, died 1927-08-23) (Gramps ID: I0253)
+Mother: CatherineJosephine Brady (Gramps ID: I0254)
+Marriage Marriage of Landry, Michael Edward and Brady, CatherineJosephine
+Children:
+- Theresa A. Landry (born 1886-11-26, died 1886-11-26) (Gramps ID: I0255)
+- Mary A. Landry (born 1889-05-28, died 1955-11-18) (Gramps ID: I0256)
+- Maurice T. Landry (born 1891-07-11) (Gramps ID: I0257)
+- Charles M. Landry (born 1894-06-18) (Gramps ID: I0258)
+- Catherine M. Landry (born 1895-04-28) (Gramps ID: I0259)
+- John Anthony Landry (born 1897-09-14) (Gramps ID: I0260)
+- Alice Landry (born 1900-03-06) (Gramps ID: I0263)
+- Josephine Grace Landry (born 1902-06-15) (Gramps ID: I0264)
+- Helen Margaret Landry (born 1906-10-16) (Gramps ID: I0265)
+
+Type: family
+Gramps ID: F0348
+Relationship type: Married
+Father: John Joseph Garner (born 1961-08-15) (Gramps ID: I0186)
+Mother: Lori Crawford (Gramps ID: I1070)
+Marriage: 1994-03-04 - Marriage of Garner, John Joseph and Crawford, Lori
+
+Type: family
+Gramps ID: F0163
+Relationship type: Married
+Father: Rufus Blanco (born 20, died 1866-11-04) (Gramps ID: I0599)
+Mother: Mariam Rodriquez (born 1814-05-14, died 1900-08-31) (Gramps ID: I0598)
+Marriage: 1836-01-07 in Asheville, NC, USA - Marriage of Blanco, Rufus and Rodriquez, Mariam
+Children:
+- Lucinda Catherine Blanco (born 1849-01-25, died 1932-10-21) (Gramps ID: I0069)
+- Malvina Blanco (born 1836-11-15, died 1918-03-07) (Gramps ID: I0873)
+- John W. Blanco (born 1838, died 1838) (Gramps ID: I0874)
+- Mary F. Blanco (born 1846, died 1846) (Gramps ID: I0875)
+- Paris Blanco (born 1846, died 1846) (Gramps ID: I0876)
+- Stephen Blanco (born 1851-04-14, died 1903-04-08) (Gramps ID: I0878)
+- Milton Blanco (born 1854, died 1854) (Gramps ID: I0879)
+- L. J. Blanco (born 1856, died 1875-04-01) (Gramps ID: I0880)
+
+Type: family
+Gramps ID: F0327
+Relationship type: Married
+Father: Ribald ĐĄĐŒĐžŃĐœĐŸĐČ (born 1050, died 1121) (Gramps ID: I1010)
+Mother: Beatrix Gray (born 1050, died 1112) (Gramps ID: I1011)
+Marriage Marriage of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald and Gray, Beatrix
+Children:
+- Ralph ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ (born 1080, died 1168) (Gramps ID: I1013)
+
+Type: family
+Gramps ID: F0328
+Relationship type: Married
+Father: Ralph ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ (born 1080, died 1168) (Gramps ID: I1013)
+Mother: Agatha RodrĂguez (born 1080, died 1142) (Gramps ID: I1012)
+Marriage Marriage of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph and RodrĂguez, Agatha
+Children:
+- Robert Hanson (born 1110, died 1185) (Gramps ID: I1014)
+
+Type: family
+Gramps ID: F0314
+Relationship type: Married
+Father: Charles Sr. ĐĐŒĐžŃŃОДĐČ (born um 1687, died 1750-05-13) (Gramps ID: I0986)
+Mother: Lucy aka Sarah Lapointe (born um 1718, died um 1741) (Gramps ID: I0987)
+Marriage Marriage of ĐĐŒĐžŃŃОДĐČ, Charles Sr. and Lapointe, Lucy aka Sarah
+Children:
+- Moses Aaron ĐĐŒĐžŃŃОДĐČ (born 1735-11-09) (Gramps ID: I0969)
+- William ĐĐŒĐžŃŃОДĐČ (born 1727, died 1766-05-12) (Gramps ID: I1175)
+- Charles ĐĐŒĐžŃŃОДĐČ (born um 1729, died um 1786) (Gramps ID: I1178)
+- Mary ĐĐŒĐžŃŃОДĐČ (born um 1731, died um 1731) (Gramps ID: I1179)
+- Lucy ĐĐŒĐžŃŃОДĐČ (born um 1733, died um 1733) (Gramps ID: I1181)
+- Isaac ĐĐŒĐžŃŃОДĐČ (born um 1737, died 1807) (Gramps ID: I1183)
+- Lazarus ĐĐŒĐžŃŃОДĐČ (born um 1739, died 1762) (Gramps ID: I1184)
+- James ĐĐŒĐžŃŃОДĐČ (born um 1741, died um 1778) (Gramps ID: I1185)
+
+Type: family
+Gramps ID: F0102
+Relationship type: Married
+Father: Randall Lee Poulsen (born 1963-01-25) (Gramps ID: I0443)
+Mother: Lisa Dawn Welch (born 1962-12-21) (Gramps ID: I0442)
+Marriage: 1984-06-09 - Marriage of Poulsen, Randall Lee and Welch, Lisa Dawn
+Children:
+- Chelsea Dawn Poulsen (born 1986-12-30) (Gramps ID: I0454)
+- Curtis Theobald Poulsen (born 1988-08-19) (Gramps ID: I0455)
+- Cole Randall Poulsen (born 1991-12-08) (Gramps ID: I1081)
+
+Type: family
+Gramps ID: F0589
+Relationship type: Married
+Father: White (Gramps ID: I1832)
+Mother: Mary Ann Reed (Gramps ID: I1831)
+Marriage Marriage of White and Reed, Mary Ann
+
+Type: family
+Gramps ID: F0695
+Relationship type: Married
+Father: Rev. Samuel ĐĐŸŃĐŸĐ±ŃĐ”ĐČ (Gramps ID: I0765)
+Children:
+- Eva ĐĐŸŃĐŸĐ±ŃĐ”ĐČ (Gramps ID: I0606)
+
+Type: family
+Gramps ID: F0171
+Relationship type: Married
+Father: Matthias Sr. Carroll (born 1742, died 1817) (Gramps ID: I0605)
+Mother: Eva ĐĐŸŃĐŸĐ±ŃĐ”ĐČ (Gramps ID: I0606)
+Marriage: um 1765 - Marriage of Carroll, Matthias Sr. and ĐĐŸŃĐŸĐ±ŃĐ”ĐČ, Eva
+Children:
+- Grace Carroll (born 1791-12-20, died 1863-02-01) (Gramps ID: I0607)
+
+Type: family
+Gramps ID: F0606
+Relationship type: Married
+Father: John Reynolds (died 1788) (Gramps ID: I0967)
+Mother: Margaret Newman (Gramps ID: I1897)
+Marriage Marriage of Reynolds, John and Newman, Margaret
+Children:
+- Mary Jane Reynolds (Gramps ID: I0968)
+
+Type: family
+Gramps ID: F0399
+Relationship type: Married
+Father: John Lapointe (Gramps ID: I1174)
+Mother: Catherine Madsen (Gramps ID: I1191)
+Marriage Marriage of Lapointe, John and Madsen, Catherine
+Children:
+- Lucy aka Sarah Lapointe (born um 1718, died um 1741) (Gramps ID: I0987)
+
+Type: family
+Gramps ID: F0005
+Relationship type: Married
+Father: Noah Warner (born 1779-09-24, died 1844-06-14) (Gramps ID: I0023)
+Mother: Margaret Burns (born 1781-07-22, died 1849-01-17) (Gramps ID: I0024)
+Marriage in Huron, SD, USA - Marriage of Warner, Noah and Burns, Margaret
+Children:
+- Piatt D. Warner (born 1821-04-09, died 1889-10-11) (Gramps ID: I0031)
+- Ezra Warner (Gramps ID: I1260)
+- Dorcas Warner (Gramps ID: I1261)
+- Johnathan Warner (Gramps ID: I1262)
+- Humphrey Martin Warner (Gramps ID: I1263)
+- Randolph Warner (Gramps ID: I1264)
+- Edward Warner (Gramps ID: I1265)
+- William Waller Warner (Gramps ID: I1266)
+- Nathaniel M. Warner (Gramps ID: I1267)
+- Eunice Warner (Gramps ID: I1268)
+- Sarah Maria Warner (Gramps ID: I1269)
+- John Quincy Adams Warner (Gramps ID: I1270)
+- Warner (Gramps ID: I1271)
+
+Type: family
+Gramps ID: F0414
+Relationship type: Married
+Father: Dr. Brent ĐĐŸĐłĐŽĐ°ĐœĐŸĐČ (Gramps ID: I1272)
+Mother: Ann Lynn Cruz (born 1968-11-17) (Gramps ID: I0440)
+Marriage: 1997-06-07 in Gainesville, Llano, TX, USA - Marriage of ĐĐŸĐłĐŽĐ°ĐœĐŸĐČ, Dr. Brent and Cruz, Ann Lynn
+
+Type: family
+Gramps ID: F0556
+Relationship type: Married
+Father: Robert Lessard (Gramps ID: I1708)
+Mother: Joan Lorinda Webb (born 1946-10-29) (Gramps ID: I0368)
+Marriage: vor 1988 - Marriage of Lessard, Robert and Webb, Joan Lorinda
+
+Type: family
+Gramps ID: F0375
+Relationship type: Married
+Father: Francis Vincent Reed (born 1857-05-02, died 1945-03-02) (Gramps ID: I0047)
+Mother: Katherine ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ (born 1858, died 1913-09-02) (Gramps ID: I1139)
+Marriage: 1903 - Marriage of Reed, Francis Vincent and ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+
+Type: family
+Gramps ID: F0653
+Relationship type: Married
+Father: Torres (Gramps ID: I2037)
+Mother: Gail Hawkins (Gramps ID: I2036)
+Marriage Marriage of Torres and Hawkins, Gail
+
+Type: family
+Gramps ID: F0053
+Relationship type: Married
+Father: John William Warner (born 1944-08-11) (Gramps ID: I0150)
+Mother: Rebecca J. Miles (Gramps ID: I0286)
+Marriage Marriage of Warner, John William and Miles, Rebecca J.
+Children:
+- Andrea Susan Warner (born 1969-04-21) (Gramps ID: I0285)
+- Deirdra Denise Warner (born 1973-03-20) (Gramps ID: I0287)
+
+Type: family
+Gramps ID: F0416
+Relationship type: Married
+Father: Johann Simon Beaulieu (born 1742, died 1742) (Gramps ID: I1275)
+Mother: Anna Maria ĐŃĐžĐłĐŸŃŃĐ”ĐČ (born 1754, died 1754) (Gramps ID: I1276)
+Marriage Marriage of Beaulieu, Johann Simon and ĐŃĐžĐłĐŸŃŃĐ”ĐČ, Anna Maria
+Children:
+- Jacob Farmer (born 1777, died 1777) (Gramps ID: I1273)
+- Valentine Farmer (born 1779, died 1833) (Gramps ID: I1288)
+- George William Farmer (Gramps ID: I1290)
+- Susanna Farmer (born 1784, died 1784) (Gramps ID: I1292)
+- Anna Marie Farmer (born 1786, died 1786) (Gramps ID: I1294)
+- Peter Simon Farmer (born 1790, died 1845) (Gramps ID: I1296)
+- Elizabeth Farmer (born 1792, died 1792) (Gramps ID: I1298)
+- Eva Farmer (born 1796, died 1883) (Gramps ID: I1300)
+- Catharine Farmer (born 1798, died 1798) (Gramps ID: I1302)
+- Michael Farmer (born 1775, died 1775) (Gramps ID: I1304)
+
+Type: family
+Gramps ID: F0576
+Relationship type: Married
+Father: Gabriel Stokes (born 1966-11-27) (Gramps ID: I1795)
+Mother: Celine Bridget McCoy (born 1971-01-20) (Gramps ID: I1794)
+Marriage Marriage of Stokes, Gabriel and McCoy, Celine Bridget
+Children:
+- Liam Michael Stokes (born 1997-03-27) (Gramps ID: I1796)
+
+Type: family
+Gramps ID: F0236
+Relationship type: Married
+Father: John Rodgers (Gramps ID: I0788)
+Mother: Doris Mae Garrett (born 1950-08-22) (Gramps ID: I0236)
+Marriage in Ottawa, La Salle, IL, USA - Marriage of Rodgers, John and Garrett, Doris Mae
+Children:
+- Shawna Marie Rodgers (born 1979-08-05) (Gramps ID: I0789)
+- Crystal Mae Rodgers (born 1975-12-12) (Gramps ID: I0790)
+
+Type: family
+Gramps ID: F0237
+Relationship type: Married
+Father: John ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ (born 1956-01-14) (Gramps ID: I0791)
+Mother: Doris Mae Garrett (born 1950-08-22) (Gramps ID: I0236)
+Marriage: 1988-10-01 in Santa Rosa-Petaluma, CA, USA - Marriage of ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ, John and Garrett, Doris Mae
+
+Type: family
+Gramps ID: F0338
+Relationship type: Married
+Father: Thomas Foster (died 1557-06-23) (Gramps ID: I1035)
+Mother: Margret KozĆowski (born um 1535, died vor 1598) (Gramps ID: I1036)
+Marriage: 1551 in Wilmington, OH, USA - Marriage of Foster, Thomas and KozĆowski, Margret
+Children:
+- John Foster (born um 1555, died 1598-01-31) (Gramps ID: I1037)
+
+Type: family
+Gramps ID: F0625
+Relationship type: Married
+Father: John Foster (born um 1555, died 1598-01-31) (Gramps ID: I1037)
+Mother: Elizabeth Ryan (born um 1556, died 1628) (Gramps ID: I1942)
+Marriage: 1577-08-28 in Wilmington, OH, USA - Marriage of Foster, John and Ryan, Elizabeth
+Children:
+- Thomas Foster (born 1582-04-14, died 1658-06-01) (Gramps ID: I1002)
+
+Type: family
+Gramps ID: F0423
+Relationship type: Married
+Father: George William Farmer (Gramps ID: I1290)
+Mother: Mary Bradley (born 1789, died 1789) (Gramps ID: I1291)
+Marriage Marriage of Farmer, George William and Bradley, Mary
+
+Type: family
+Gramps ID: F0339
+Relationship type: Married
+Father: Francis William Garner (born 1945-01-03) (Gramps ID: I0176)
+Mother: Connie Gibbs (born 1943-02-08) (Gramps ID: I1040)
+Marriage: 1991-06-22 - Marriage of Garner, Francis William and Gibbs, Connie
+Children:
+- Melissa Sue Garner (born 1969-12-03) (Gramps ID: I1041)
+
+Type: family
+Gramps ID: F0513
+Relationship type: Married
+Father: Walter Benson (Gramps ID: I1594)
+Mother: Margaret Steel Ellis (Gramps ID: I1595)
+Marriage Marriage of Benson, Walter and Ellis, Margaret Steel
+
+Type: family
+Gramps ID: F0373
+Relationship type: Married
+Father: John Francis"Chick" Kristensen (born 1889-10-10, died 1938-10-23) (Gramps ID: I0585)
+Mother: Mary äŒè€ (born 1941-02-16, died 1941-02-16) (Gramps ID: I1137)
+Marriage Marriage of Kristensen, John Francis"Chick" and äŒè€, Mary
+
+Type: family
+Gramps ID: F0544
+Relationship type: Married
+Father: Abraham Quinn (born 1838-04-25, died 1916-02-18) (Gramps ID: I1670)
+Mother: Malvina Blanco (born 1836-11-15, died 1918-03-07) (Gramps ID: I0873)
+Marriage Marriage of Quinn, Abraham and Blanco, Malvina
+Children:
+- Elizabeth Marium Quinn (born 1867-02-24) (Gramps ID: I1671)
+
+Type: family
+Gramps ID: F0596
+Relationship type: Married
+Father: Goodwin (Gramps ID: I1867)
+Mother: Liz Sandoval (Gramps ID: I1866)
+Marriage Marriage of Goodwin and Sandoval, Liz
+
+Type: family
+Gramps ID: F0090
+Relationship type: Married
+Father: Isaac Lessard (born 1828-10, died 1828-10) (Gramps ID: I0420)
+Mother: Mary E. DomĂnguez (born 1839-03-15, died 1893-09-30) (Gramps ID: I0421)
+Marriage: 1868-03-24 in Key West-Marathon, FL, USA - Marriage of Lessard, Isaac and DomĂnguez, Mary E.
+Children:
+- Ira Willis Lessard (born 1871-06-15, died 1924-12-15) (Gramps ID: I0040)
+- Emma Jane Lessard (born 1868-08, died 1933-08) (Gramps ID: I1339)
+- Izora Lessard (died 1902-05-06) (Gramps ID: I1354)
+
+Type: family
+Gramps ID: F0446
+Relationship type: Married
+Father: Charles Newton Boyd (born 1868-03-27, died 1920-03-21) (Gramps ID: I1355)
+Mother: Izora Lessard (died 1902-05-06) (Gramps ID: I1354)
+Marriage: 1895-05-01 in Lincoln, NE, USA - Marriage of Boyd, Charles Newton and Lessard, Izora
+Children:
+- Carmen Alberta Boyd (born 1897-08-14, died 1949-06-17) (Gramps ID: I2020)
+- Lauretta Esther Boyd (born 1901-07-08, died 1901-07-08) (Gramps ID: I2021)
+
+Type: family
+Gramps ID: F0346
+Relationship type: Married
+Father: Peter George Garner (born 1954-08-05) (Gramps ID: I0181)
+Mother: Joy Gibbs (Gramps ID: I1063)
+Marriage: 1976-01-25 - Marriage of Garner, Peter George and Gibbs, Joy
+Children:
+- Allison Renee Garner (born 1984-03-20) (Gramps ID: I1064)
+- Amy Elizabeth Garner (born 1989-04-11) (Gramps ID: I1065)
+
+Type: family
+Gramps ID: F0254
+Relationship type: Married
+Father: Joseph Alonso (Gramps ID: I0825)
+Mother: Monica Hansen (Gramps ID: I0819)
+Marriage in Somerset, PA, USA - Marriage of Alonso, Joseph and Hansen, Monica
+Children:
+- Roisine Alonso (born 1985, died 1985) (Gramps ID: I0826)
+- Laura Alonso (born 1989, died 1989) (Gramps ID: I0827)
+
+Type: family
+Gramps ID: F0434
+Relationship type: Married
+Father: Johann Walter Frazier (born 1748, died 1748) (Gramps ID: I1315)
+Mother: Anna Margaretha Beaulieu (born 1755, died 1796) (Gramps ID: I1314)
+Marriage Marriage of Frazier, Johann Walter and Beaulieu, Anna Margaretha
+
+Type: family
+Gramps ID: F0054
+Relationship type: Married
+Father: Arthur Otto Thornton (Gramps ID: I0204)
+Mother: Lilla Estella MarĂn (born 1883-02-26, died 1961-02-25) (Gramps ID: I0202)
+Marriage Marriage of Thornton, Arthur Otto and MarĂn, Lilla Estella
+Children:
+- James Arthur Thornton (born 1911-07-12, died 1983-12-02) (Gramps ID: I0205)
+- Dorothy Eleanor Thornton (born 1913-02-20) (Gramps ID: I0207)
+
+Type: family
+Gramps ID: F0396
+Relationship type: Married
+Father: Charles Erickson (Gramps ID: I1182)
+Mother: Lucy ĐĐŒĐžŃŃОДĐČ (born um 1733, died um 1733) (Gramps ID: I1181)
+Marriage Marriage of Erickson, Charles and ĐĐŒĐžŃŃОДĐČ, Lucy
+
+Type: family
+Gramps ID: F0501
+Relationship type: Married
+Father: Dr. John Poole (Gramps ID: I1551)
+Mother: Jane James (died 1846-09-03) (Gramps ID: I0476)
+Marriage: 1813-11-07 - Marriage of Poole, Dr. John and James, Jane
+Children:
+- Lucy Poole (Gramps ID: I1552)
+- Polly Poole (Gramps ID: I1553)
+- Thomas Poole (Gramps ID: I1554)
+
+Type: family
+Gramps ID: F0188
+Relationship type: Married
+Father: Clarence Robinson (Gramps ID: I0654)
+Mother: Bertha P. Garner (born 1888-03-13, died 1918-04-05) (Gramps ID: I0628)
+Marriage: 1907-11-16 in Columbus, Bartholomew, IN, USA - Marriage of Robinson, Clarence and Garner, Bertha P.
+Children:
+- Robert Robinson (Gramps ID: I0655)
+- Luther Robinson (Gramps ID: I0656)
+- Albert Raymond Robinson (Gramps ID: I0657)
+- Hugh Martin Robinson (Gramps ID: I0658)
+
+Type: family
+Gramps ID: F0647
+Relationship type: Married
+Father: Walter Harmon Gutiérrez (born 1896-05-09, died 1896-05-09) (Gramps ID: I2024)
+Mother: Lauretta Esther Boyd (born 1901-07-08, died 1901-07-08) (Gramps ID: I2021)
+Marriage: 1919-02-14 - Marriage of Gutiérrez, Walter Harmon and Boyd, Lauretta Esther
+Children:
+- Virginia Elizabeth Gutiérrez (born 1921-07-01, died 1921-07-01) (Gramps ID: I2025)
+- Dorothy Jean Gutiérrez (born 1924-02-01, died 1924-02-01) (Gramps ID: I2026)
+- Joan Arlene Gutiérrez (born 1927-01-18, died 1927-01-18) (Gramps ID: I2027)
+
+Type: family
+Gramps ID: F0649
+Relationship type: Married
+Father: William Colon (Gramps ID: I2029)
+Mother: Dorothy Jean Gutiérrez (born 1924-02-01, died 1924-02-01) (Gramps ID: I2026)
+Marriage: 1946-06-15 - Marriage of Colon, William and Gutiérrez, Dorothy Jean
+
+Type: family
+Gramps ID: F0291
+Relationship type: Married
+Father: Hans Austin (Gramps ID: I0933)
+Mother: Maria Burke (Gramps ID: I0934)
+Marriage: 1630-06 - Marriage of Austin, Hans and Burke, Maria
+Children:
+- Johannas Austin (born 1632-05-15, died 1632-05-15) (Gramps ID: I0938)
+
+Type: family
+Gramps ID: F0217
+Relationship type: Married
+Father: Capt. Francis Warner (born 1618, died 1687-09-24) (Gramps ID: I0737)
+Mother: Mary Ingram (born um 1625, died 1688-07-29) (Gramps ID: I0738)
+Marriage Marriage of Warner, Capt. Francis and Ingram, Mary
+Children:
+- Capt. George Warner (born 1650, died 1710-11-08) (Gramps ID: I0507)
+
+Type: family
+Gramps ID: F0241
+Relationship type: Married
+Father: George, Sr. Jiménez (born 1760-02-10, died 1827-07-28) (Gramps ID: I0462)
+Mother: Elizabeth Henry (born 1770-04, died 1836-05-14) (Gramps ID: I0800)
+Marriage: 1787-11-08 - Marriage of Jiménez, George, Sr. and Henry, Elizabeth
+Children:
+- George Henry, Jr. Jiménez (born 1802-09-29, died 1869-02-19) (Gramps ID: I0064)
+- Polly Mary Jiménez (born 1788-09-24, died 1788-09-24) (Gramps ID: I1607)
+- Elizabeth Jiménez (born 1790-11-28, died 1828-04) (Gramps ID: I1609)
+- Andrew Jiménez (born 1792-01-21, died 1792-01-21) (Gramps ID: I1612)
+- John Jiménez (born 1794-11-05, died 1821-01-28) (Gramps ID: I1614)
+- Sarah Jiménez (born 1797-04-20, died 1797-04-20) (Gramps ID: I1616)
+- Rebecca Jiménez (born 1799-09-12, died 1799-09-12) (Gramps ID: I1618)
+- Cornelius Jiménez (born 1805-07-27, died 1866-03-05) (Gramps ID: I1620)
+
+Type: family
+Gramps ID: F0742
+Relationship type: Married
+Father: William Melvin Hawkins (born 1926-03-09, died 1999-03-25) (Gramps ID: I2034)
+Children:
+- Richard W. Hawkins (Gramps ID: I2033)
+- James R. Hawkins (Gramps ID: I2041)
+
+Type: family
+Gramps ID: F0741
+Relationship type: Married
+Father: Richard W. Hawkins (Gramps ID: I2033)
+Children:
+- Jennifer Leigh Hawkins (born 1973) (Gramps ID: I0866)
+
+Type: family
+Gramps ID: F0001
+Relationship type: Married
+Father: Allen Carl Warner (born 1952-02-01) (Gramps ID: I0005)
+Mother: Rita Marie Garner (born 1952-09-07) (Gramps ID: I0006)
+Marriage: 1974-08-10 in Worthington, MN, USA - Marriage of Warner, Allen Carl and Garner, Rita Marie
+Children:
+- Sarah Suzanne Warner (born 1987-08-29) (Gramps ID: I0001)
+- James Jeffrey Warner (born 1984-05-03) (Gramps ID: I0002)
+- Carl Thomas Warner (born 1981-05-11) (Gramps ID: I0003)
+- John Allen Warner (born 1979-05-04) (Gramps ID: I0004)
+- Matthew Steven Warner (born 1977-06-23) (Gramps ID: I0009)
+
+Type: family
+Gramps ID: F0197
+Relationship type: Married
+Father: Rev. John Anderson (born 1685, died 1774-11-27) (Gramps ID: I0680)
+Mother: Martha Christiansen (born 1693-04-25, died 1766-04-18) (Gramps ID: I0681)
+Marriage: 1712-05-17 in Poplar Bluff, MO, USA - Marriage of Anderson, Rev. John and Christiansen, Martha
+Children:
+- Mary Molly Anderson (born 1719, died 1795-04-20) (Gramps ID: I0511)
+
+Type: family
+Gramps ID: F0322
+Relationship type: Married
+Father: Thomas Warner (born 1556, died 1556) (Gramps ID: I0845)
+Mother: Jane Black (born um 1584, died um 1584) (Gramps ID: I1003)
+Marriage Marriage of Warner, Thomas and Black, Jane
+Children:
+- Capt. Francis Warner (born 1618, died 1687-09-24) (Gramps ID: I0737)
+
+Type: family
+Gramps ID: F0022
+Relationship type: Married
+Father: Arthur Maurice Warner (born 1954-01-24) (Gramps ID: I0012)
+Mother: Anita Irene Phillips (born 1947-07-16) (Gramps ID: I0109)
+Marriage: 1981-02-14 in Macomb, McDonough, IL, USA - Marriage of Warner, Arthur Maurice and Phillips, Anita Irene
+Children:
+- JenniferMae(Ganoe) Warner (born 1973-02-06) (Gramps ID: I0108)
+- Christopher Arthur Warner (born 1982-10-04) (Gramps ID: I0110)
+- Michael Edward Warner (born 1985-02-26) (Gramps ID: I0111)
+
+Type: family
+Gramps ID: F0320
+Relationship type: Married
+Father: Henry Sanders (died 1658-06-17) (Gramps ID: I1000)
+Mother: Ann Rose (born 1607, died 1607) (Gramps ID: I0999)
+Marriage Marriage of Sanders, Henry and Rose, Ann
+Children:
+- Mary Sanders (born um 1629, died um 1629) (Gramps ID: I0675)
+
+Type: family
+Gramps ID: F0313
+Relationship type: Married
+Father: William Diaz (born um 1648, died 1700-09-16) (Gramps ID: I0984)
+Mother: Anne Baldwin (born um 1656) (Gramps ID: I0985)
+Marriage Marriage of Diaz, William and Baldwin, Anne
+Children:
+- Charles Sr. ĐĐŒĐžŃŃОДĐČ (born um 1687, died 1750-05-13) (Gramps ID: I0986)
+- William Diaz (Gramps ID: I1209)
+- John Diaz (Gramps ID: I1210)
+- James Diaz (Gramps ID: I1211)
+- Anne Diaz (Gramps ID: I1212)
+
+Type: family
+Gramps ID: F0088
+Relationship type: Married
+Father: Darrell Edwin ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1953-09-11) (Gramps ID: I0169)
+Mother: Evelyn Almazon Ross (born 1955-04-23) (Gramps ID: I0416)
+Marriage: 1982-04-24 in Cleveland, TN, USA - Marriage of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Darrell Edwin and Ross, Evelyn Almazon
+Children:
+- Rebecca Kristine Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1982-12-31) (Gramps ID: I0344)
+- Jeffrey Adam Ramos Garza (born 1987-11-07) (Gramps ID: I0345)
+- Daniel James Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1984-10-26) (Gramps ID: I0415)
+
+Type: family
+Gramps ID: F0493
+Relationship type: Married
+Father: Reuben ĐĐ°ĐČĐ»ĐŸĐČ (Gramps ID: I1515)
+Mother: Lucinda J. Douglas (born 1833-05-06, died 1833-05-06) (Gramps ID: I1495)
+Marriage Marriage of ĐĐ°ĐČĐ»ĐŸĐČ, Reuben and Douglas, Lucinda J.
+Children:
+- Thomas ĐĐ°ĐČĐ»ĐŸĐČ (Gramps ID: I1516)
+- Calvin ĐĐ°ĐČĐ»ĐŸĐČ (Gramps ID: I1517)
+
+Type: family
+Gramps ID: F0117
+Relationship type: Married
+Father: Thomas Gutierrez (Gramps ID: I0378)
+Mother: Nora A. Boucher (born 1879-07-18, died 1939-08-15) (Gramps ID: I0374)
+Marriage Marriage of Gutierrez, Thomas and Boucher, Nora A.
+Children:
+- Catherine Gutierrez (Gramps ID: I0379)
+
+Type: family
+Gramps ID: F0094
+Relationship type: Married
+Father: Thomas Everett Cruz (born 1940-10-15) (Gramps ID: I0214)
+Mother: Joyce Inez Briggs (born 1939-08-05, died 1985) (Gramps ID: I0431)
+Marriage: 1963-09-05 - Marriage of Cruz, Thomas Everett and Briggs, Joyce Inez
+Children:
+- Ann Lynn Cruz (born 1968-11-17) (Gramps ID: I0440)
+- Jane Elizabeth Cruz (born 1972-03-04) (Gramps ID: I0441)
+
+Type: family
+Gramps ID: F0483
+Relationship type: Married
+Father: John Alvarado (born 1825-03-13, died 1825-03-13) (Gramps ID: I1465)
+Mother: Pamela James (Gramps ID: I1483)
+Marriage Marriage of Alvarado, John and James, Pamela
+
+Type: family
+Gramps ID: F0351
+Relationship type: Married
+Father: William Christensen (Gramps ID: I1057)
+Mother: Judy Denise Cruz (born 1952-11-29) (Gramps ID: I0228)
+Marriage: 1994-03-04 - Marriage of Christensen, William and Cruz, Judy Denise
+
+Type: family
+Gramps ID: F0386
+Relationship type: Married
+Father: David Reynolds (born 1669, died 1695) (Gramps ID: I0963)
+Mother: Mary Meriwether Vaughn (born um 1669) (Gramps ID: I1161)
+Marriage Marriage of Reynolds, David and Vaughn, Mary Meriwether
+Children:
+- William Reynolds (born um 1695, died um 1788) (Gramps ID: I0966)
+
+Type: family
+Gramps ID: F0520
+Relationship type: Married
+Father: Thomas Jr. Williams (Gramps ID: I1610)
+Mother: Elizabeth Jiménez (born 1790-11-28, died 1828-04) (Gramps ID: I1609)
+Marriage: 1815-09-01 - Marriage of Williams, Thomas Jr. and Jiménez, Elizabeth
+Children:
+- James Williams (Gramps ID: I1611)
+
+Type: family
+Gramps ID: F0036
+Relationship type: Married
+Father: Alfred Franklin(Frank) MarĂn (died 1864-12-25) (Gramps ID: I0093)
+Mother: Martha Frances "Fannie" Floyd (born 1843-05-13, died 1913-04-17) (Gramps ID: I0094)
+Marriage: 1860-10 in Bennington, VT, USA - Marriage of MarĂn, Alfred Franklin(Frank) and Floyd, Martha Frances "Fannie"
+Children:
+- Moses Wallace MarĂn (born 1862-04-08, died 1909-08-08) (Gramps ID: I0049)
+- Alice MarĂn (Gramps ID: I0245)
+- Willis MarĂn (Gramps ID: I0405)
+
+Type: family
+Gramps ID: F0130
+Relationship type: Married
+Father: Edward Green (died 1688-07-31) (Gramps ID: I0535)
+Mother: Mary Lefebvre (born 1654-03-22, died 1654-03-22) (Gramps ID: I0536)
+Marriage: 1674-01-16 in Plainview, Houston, TX, USA - Marriage of Green, Edward and Lefebvre, Mary
+Children:
+- Edward Green (born 1685-06-06, died 1756-10-20) (Gramps ID: I0542)
+
+Type: family
+Gramps ID: F0133
+Relationship type: Married
+Father: Edward Green (born 1685-06-06, died 1756-10-20) (Gramps ID: I0542)
+Mother: Christina ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1749-10-25, died 1749-10-25) (Gramps ID: I0541)
+Marriage: 1701-04-06 - Marriage of Green, Edward and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Christina
+Children:
+- James Green (born 1739-04-07, died 1805-11-28) (Gramps ID: I0546)
+
+Type: family
+Gramps ID: F0176
+Relationship type: Married
+Father: Bruce Lynn Russell (born 1964-12-28) (Gramps ID: I0594)
+Mother: Cathy Sue Henderson (born 1965-05-08) (Gramps ID: I0617)
+Marriage: 1985-06-22 in Kendallville, Noble, IN, USA - Marriage of Russell, Bruce Lynn and Henderson, Cathy Sue
+Children:
+- Nicholas Glen Russell (born 1987-04-03) (Gramps ID: I0618)
+- Casey John Russell (born 1990-03-16) (Gramps ID: I0619)
+
+Type: family
+Gramps ID: F0367
+Relationship type: Married
+Father: John Morgan Floyd (Gramps ID: I1120)
+Mother: Zelpha Josephine Carr (born 1858-12-31, died 1895-02-08) (Gramps ID: I1119)
+Marriage: 1875-02-04 in Denver-Aurora, CO, USA - Marriage of Floyd, John Morgan and Carr, Zelpha Josephine
+
+Type: family
+Gramps ID: F0666
+Relationship type: Married
+Father: William M. Ball (Gramps ID: I2081)
+Mother: Phebe J. Moreno (born 1856-08-07, died 1856-08-07) (Gramps ID: I2080)
+Marriage Marriage of Ball, William M. and Moreno, Phebe J.
+
+Type: family
+Gramps ID: F0731
+Relationship type: Married
+Father: Daniel Walters (Gramps ID: I1742)
+Children:
+- Mary Walters (born 1864, died 1937-04-06) (Gramps ID: I0872)
+
+Type: family
+Gramps ID: F0165
+Relationship type: Married
+Father: James Reeves (born 1819-03-24, died 1897-07-11) (Gramps ID: I0101)
+Mother: Catherine Meyer (born 1825-06-19, died 1911-01-30) (Gramps ID: I0102)
+Marriage: 1847-08-15 in Spirit Lake, Dickinson, IA, USA - Marriage of Reeves, James and Meyer, Catherine
+Children:
+- Maria Reeves (born 1856-11-26, died 1929-01-29) (Gramps ID: I0052)
+- Mathew Reeves (Gramps ID: I0395)
+- John Reeves (Gramps ID: I1940)
+
+Type: family
+Gramps ID: F0706
+Relationship type: Married
+Father: William Reynolds (born um 1695, died um 1788) (Gramps ID: I0966)
+Children:
+- John Reynolds (died 1788) (Gramps ID: I0967)
+- Robert Reynolds (Gramps ID: I1898)
+
+Type: family
+Gramps ID: F0324
+Relationship type: Married
+Father: Hugh Jones (born um 1518, died um 1518) (Gramps ID: I1006)
+Mother: ?? ĐĐžŃĐžĐ»Đ»ĐŸĐČ (born um 1520, died um 1520) (Gramps ID: I1005)
+Marriage Marriage of Jones, Hugh and ĐĐžŃĐžĐ»Đ»ĐŸĐČ, ??
+Children:
+- Ann Jones (born 1550, died 1550) (Gramps ID: I1007)
+
+Type: family
+Gramps ID: F0525
+Relationship type: Married
+Father: Cornelius Jiménez (born 1805-07-27, died 1866-03-05) (Gramps ID: I1620)
+Mother: Jane Blair (born 1803-05-23, died 1866-03-10) (Gramps ID: I1621)
+Marriage: 1828-07-20 - Marriage of Jiménez, Cornelius and Blair, Jane
+
+Type: family
+Gramps ID: F0068
+Relationship type: Married
+Father: Jimmy Michael French (born 1947-04-06) (Gramps ID: I0297)
+Mother: Martha Ellen Warner (born 1950-02-07) (Gramps ID: I0154)
+Marriage: 1970-01-01 in Gaithersburg, MD, USA - Marriage of French, Jimmy Michael and Warner, Martha Ellen
+Children:
+- Kevin Wayne French (born 1973-07-03) (Gramps ID: I0298)
+- Erin Jenny French (born 1981-08-06) (Gramps ID: I0299)
+
+Type: family
+Gramps ID: F0569
+Relationship type: Married
+Father: Michael Brady (Gramps ID: I1767)
+Mother: Agnes Boucher (born 1968) (Gramps ID: I0832)
+Marriage Marriage of Brady, Michael and Boucher, Agnes
+Children:
+- Shane Brady (Gramps ID: I1768)
+- Clara Brady (Gramps ID: I1769)
+
+Type: family
+Gramps ID: F0676
+Relationship type: Married
+Father: Herman Moreno (Gramps ID: I0056)
+Children:
+- Johann Henrich Moreno (Gramps ID: I0057)
+
+Type: family
+Gramps ID: F0677
+Relationship type: Married
+Father: Johann Henrich Moreno (Gramps ID: I0057)
+Children:
+- Christian, I Moreno (born 1693, died 1772-04-16) (Gramps ID: I0058)
+
+Type: family
+Gramps ID: F0100
+Relationship type: Married
+Father: Gary Richard Bell (born 1950-09-06) (Gramps ID: I0437)
+Mother: Judy Denise Cruz (born 1952-11-29) (Gramps ID: I0228)
+Marriage: 1971-06-12 - Marriage of Bell, Gary Richard and Cruz, Judy Denise
+Children:
+- William Austin Bell (born 1977-04-26) (Gramps ID: I0452)
+- Brandy Nichole Bell (born 1980-02-12) (Gramps ID: I0453)
+
+Type: family
+Gramps ID: F0333
+Relationship type: Married
+Father: Ralph Knudsen (born 1250, died 1316) (Gramps ID: I1020)
+Mother: Theophania(Tiffany) Walton (born 1250, died 1250) (Gramps ID: I1021)
+Marriage Marriage of Knudsen, Ralph and Walton, Theophania(Tiffany)
+Children:
+- Ralph Knudsen (born 1300, died 1343) (Gramps ID: I1022)
+
+Type: family
+Gramps ID: F0725
+Relationship type: Married
+Father: Alfred Douglas (born 1827-05-01, died 1913-06-26) (Gramps ID: I1493)
+Children:
+- Edgar Douglas (Gramps ID: I1513)
+
+Type: family
+Gramps ID: F0377
+Relationship type: Married
+Father: John Dean (Gramps ID: I1141)
+Mother: Catherine Reed (born 1842-01-09) (Gramps ID: I1135)
+Marriage: 1881-08-15 - Marriage of Dean, John and Reed, Catherine
+
+Type: family
+Gramps ID: F0103
+Relationship type: Married
+Father: Conrad Blake (Gramps ID: I0465)
+Mother: Catherine Ruiz (born 1786-04-20, died 1877-09-25) (Gramps ID: I0466)
+Marriage in Lock Haven, PA, USA - Marriage of Blake, Conrad and Ruiz, Catherine
+Children:
+- George Blake (born 1806-07-11, died 1885-06-27) (Gramps ID: I0463)
+
+Type: family
+Gramps ID: F0657
+Relationship type: Married
+Father: ĐĐ°ĐČŃĐŽĐŸĐČ (Gramps ID: I2046)
+Mother: Jane Ball (born 1848-07-09, died 1848-07-09) (Gramps ID: I1967)
+Marriage Marriage of ĐĐ°ĐČŃĐŽĐŸĐČ and Ball, Jane
+
+Type: family
+Gramps ID: F0659
+Relationship type: Married
+Father: Thomas H. Moreno (born 1814-08-22, died 1814-08-22) (Gramps ID: I2048)
+Mother: Letitia C. DÄ
browski (Gramps ID: I2050)
+Marriage: 1840-11-05 in Fort Polk South, LA, USA - Marriage of Moreno, Thomas H. and DÄ
browski, Letitia C.
+Children:
+- Green P. Moreno (born 1844-11-24, died 1844-11-24) (Gramps ID: I2052)
+- Moreno (Gramps ID: I2053)
+- Moreno (Gramps ID: I2054)
+- Moreno (Gramps ID: I2055)
+
+Type: family
+Gramps ID: F0398
+Relationship type: Married
+Father: Conrad Webster (Gramps ID: I1189)
+Mother: Margaretha Castillo (Gramps ID: I1190)
+Marriage Marriage of Webster, Conrad and Castillo, Margaretha
+Children:
+- Johanne(John) Webster (born 1679-05-01) (Gramps ID: I0759)
+
+Type: family
+Gramps ID: F0477
+Relationship type: Married
+Father: Adrian BĂ©langer (Gramps ID: I1454)
+Mother: Helen M. Neal (born 1916-08-30, died 1916-08-30) (Gramps ID: I1453)
+Marriage: 1938-12-03 in Mankato, MN, USA - Marriage of BĂ©langer, Adrian and Neal, Helen M.
+Children:
+- Donald BĂ©langer (born 1944-05-16, died 1944-05-16) (Gramps ID: I1455)
+
+Type: family
+Gramps ID: F0126
+Relationship type: Married
+Father: Edward Christiansen (born 1607, died 1684) (Gramps ID: I0526)
+Mother: Elizabeth Thomas (born 1620, died 1713) (Gramps ID: I0527)
+Marriage: 1637-05-10 in Wilmington, NC, USA - Marriage of Christiansen, Edward and Thomas, Elizabeth
+Children:
+- Nathaniel Christiansen (born 1642-05-15, died 1713-11-21) (Gramps ID: I0529)
+- Joseph Christiansen (born 1655-03-01, died 1726-01) (Gramps ID: I0677)
+
+Type: family
+Gramps ID: F0127
+Relationship type: Married
+Father: Nathaniel Christiansen (born 1642-05-15, died 1713-11-21) (Gramps ID: I0529)
+Mother: Mary Grenier (born um 1638, died 1703-07-12) (Gramps ID: I0528)
+Marriage: 1662-03-11 in Yankton, SD, USA - Marriage of Christiansen, Nathaniel and Grenier, Mary
+Children:
+- Samuel Christiansen (born 1668, died 1754-06-25) (Gramps ID: I0530)
+- John Christiansen (born 1662-02-01, died 1727) (Gramps ID: I0748)
+
+Type: family
+Gramps ID: F0709
+Relationship type: Married
+Father: John III Rubio (Gramps ID: I1091)
+Children:
+- Winifred Rubio (born 1709, died 1751-10-06) (Gramps ID: I0958)
+
+Type: family
+Gramps ID: F0301
+Relationship type: Married
+Father: Major Marquis II Brooks (born 1705, died 1755-05-10) (Gramps ID: I0957)
+Mother: Winifred Rubio (born 1709, died 1751-10-06) (Gramps ID: I0958)
+Marriage: 1725 in Laredo, Webb, TX, USA - Marriage of Brooks, Major Marquis II and Rubio, Winifred
+Children:
+- Elizabeth"Betty" Brooks (Gramps ID: I0959)
+- William Waller Brooks (born 1727-01-18, died 1773-09-19) (Gramps ID: I1092)
+
+Type: family
+Gramps ID: F0478
+Relationship type: Married
+Father: Donald BĂ©langer (born 1944-05-16, died 1944-05-16) (Gramps ID: I1455)
+Mother: Joanne Pierce (Gramps ID: I1456)
+Marriage: 1965-04-10 in Point Pleasant, WV, USA - Marriage of BĂ©langer, Donald and Pierce, Joanne
+Children:
+- Amy Jo BĂ©langer (born 1965-10-17, died 1965-10-17) (Gramps ID: I1457)
+
+Type: family
+Gramps ID: F0578
+Relationship type: Married
+Father: Matthew Reed (born um 1847, died 1927-10-21) (Gramps ID: I1803)
+Mother: Mary Gibbs (born 1936-01-29, died 1936-01-29) (Gramps ID: I1804)
+Marriage Marriage of Reed, Matthew and Gibbs, Mary
+Children:
+- Sarah Reed (born 1906-04, died 1984-05-12) (Gramps ID: I1802)
+- Michael Reed (born 1925-03-19, died 1925-03-19) (Gramps ID: I1805)
+- Peter Reed (born um 1904, died 1981-04-12) (Gramps ID: I1806)
+- Patrick Reed (born 1967-07-09, died 1967-07-07) (Gramps ID: I1822)
+- Anastasia Reed (born um 1914, died um 1914) (Gramps ID: I1823)
+- Catherine Reed (born um 1901, died 1994-05-02) (Gramps ID: I1825)
+- Rose Reed (Gramps ID: I1827)
+- Bridget Reed (Gramps ID: I1829)
+- Mary Ann Reed (Gramps ID: I1831)
+- Jane Reed (born um 1898, died 1976-02-25) (Gramps ID: I1833)
+
+Type: family
+Gramps ID: F0081
+Relationship type: Married
+Father: ??????? Olson (Gramps ID: I0246)
+Mother: Alice MarĂn (Gramps ID: I0245)
+Marriage Marriage of Olson, ??????? and MarĂn, Alice
+Children:
+- Earl Kieble éŽæš (Gramps ID: I0248)
+
+Type: family
+Gramps ID: F0635
+Relationship type: Married
+Father: Edward Harrison (Gramps ID: I1998)
+Mother: Sarah Allen (born 1668-01, died 1702) (Gramps ID: I1997)
+Marriage: 1692-12-28 in Topeka, Shawnee, KS, USA - Marriage of Harrison, Edward and Allen, Sarah
+
+Type: family
+Gramps ID: F0050
+Relationship type: Married
+Father: Bruce Edward Watkins (born 1950-12-12) (Gramps ID: I0314)
+Mother: Mary Christine Warner (born 1954-11-10) (Gramps ID: I0158)
+Marriage: 1975-05-24 in Gaithersburg, MD, USA - Marriage of Watkins, Bruce Edward and Warner, Mary Christine
+Children:
+- Laura Kathryn Watkins (born 1980-09-26) (Gramps ID: I0315)
+- Elisa Ann Long (born 1982-03-23) (Gramps ID: I0316)
+
+Type: family
+Gramps ID: F0623
+Relationship type: Married
+Father: J. Desjardins (Gramps ID: I1939)
+Mother: Catherine Reeves (born vor 1901, died vor 1901) (Gramps ID: I1938)
+Marriage Marriage of Desjardins, J. and Reeves, Catherine
+
+Type: family
+Gramps ID: F0190
+Relationship type: Married
+Father: Raymond Webster Garner (born 1918-02-17) (Gramps ID: I0635)
+Mother: Kathryn Ladon Bryant (Gramps ID: I0669)
+Marriage: 1942-04-05 in Gillette, WY, USA - Marriage of Garner, Raymond Webster and Bryant, Kathryn Ladon
+Children:
+- Jane McClellan Garner (born 1950-04-27) (Gramps ID: I0670)
+- Raymond Scott Garner (born 1956-03-05) (Gramps ID: I0671)
+
+Type: family
+Gramps ID: F0445
+Relationship type: Married
+Father: James W. LĂ©vesque (born 1866-03, died 1918) (Gramps ID: I1353)
+Mother: Emma Jane Lessard (born 1868-08, died 1933-08) (Gramps ID: I1339)
+Marriage: 1888-12-19 in Sulphur Springs, Rusk, TX, USA - Marriage of LĂ©vesque, James W. and Lessard, Emma Jane
+Children:
+- Olive LĂ©vesque (Gramps ID: I1357)
+- Jennie LĂ©vesque (born 1890-08, died 1890-08) (Gramps ID: I1358)
+- Wilma LĂ©vesque (Gramps ID: I1359)
+- Elsie LĂ©vesque (born 1893-01, died 1893-01) (Gramps ID: I1361)
+- Mary LĂ©vesque (born 1896-10, died 1896-10) (Gramps ID: I1363)
+- John C. LĂ©vesque (born 1898-11, died 1898-11) (Gramps ID: I1365)
+- Clarence LĂ©vesque (Gramps ID: I1366)
+- Howard LĂ©vesque (born 1899-10, died 1899-10) (Gramps ID: I1367)
+
+Type: family
+Gramps ID: F0185
+Relationship type: Married
+Father: Edward Burgess (Gramps ID: I0643)
+Mother: Marie Garner (Gramps ID: I0642)
+Marriage Marriage of Burgess, Edward and Garner, Marie
+
+Type: family
+Gramps ID: F0323
+Relationship type: Married
+Father: Edward Christiansen (born um 1583, died 1614) (Gramps ID: I0525)
+Mother: Frances Abbott (born um 1592, died um 1642-01) (Gramps ID: I1004)
+Marriage Marriage of Christiansen, Edward and Abbott, Frances
+
+Type: family
+Gramps ID: F0326
+Relationship type: Married
+Father: Eudo ĐĄĐŒĐžŃĐœĐŸĐČ (born 1014, died 1014) (Gramps ID: I1008)
+Mother: Agnes Rios (born 1018, died 1018) (Gramps ID: I1009)
+Marriage Marriage of ĐĄĐŒĐžŃĐœĐŸĐČ, Eudo and Rios, Agnes
+Children:
+- Ribald ĐĄĐŒĐžŃĐœĐŸĐČ (born 1050, died 1121) (Gramps ID: I1010)
+
+Type: family
+Gramps ID: F0728
+Relationship type: Married
+Father: Ernest Arlington Webb (born 1884-11-17, died 1957-10-07) (Gramps ID: I1694)
+Children:
+- James Webb (Gramps ID: I1695)
+- John David Webb (Gramps ID: I1697)
+
+Type: family
+Gramps ID: F0372
+Relationship type: Married
+Father: Edward Reed (born 1847-06-28, died 1892-03-05) (Gramps ID: I1132)
+Mother: Ellen Reed (Gramps ID: I1133)
+Marriage: 1879-07-25 in Greensboro, NC, USA - Marriage of Reed, Edward and Reed, Ellen
+Children:
+- Sarah Reed (Gramps ID: I1134)
+
+Type: family
+Gramps ID: F0072
+Relationship type: Married
+Father: Michael Louis Warner (born 1936-12-22) (Gramps ID: I0148)
+Mother: Pansy L. Warren (Gramps ID: I0279)
+Marriage Marriage of Warner, Michael Louis and Warren, Pansy L.
+Children:
+- Michael Douglas Warner (born 1958-06-10) (Gramps ID: I0278)
+- Michelle Lorraine Warner (born 1962-11-19) (Gramps ID: I0280)
+- Darin Kane Warner (born 1960-05-01) (Gramps ID: I0281)
+
+Type: family
+Gramps ID: F0064
+Relationship type: Married
+Father: Arthur Ray Cruz (born 1921-03-04) (Gramps ID: I0217)
+Mother: Myrabel Robbins (born 1922-01-15) (Gramps ID: I0218)
+Marriage: 1943-02-14 in Crawfordsville, Montgomery, IN, USA - Marriage of Cruz, Arthur Ray and Robbins, Myrabel
+Children:
+- Gerald Ray Cruz (born 1944-01-09) (Gramps ID: I0219)
+- Janis Marlene Cruz (born 1947-01-10) (Gramps ID: I0220)
+- James Richard Cruz (born 1950-04-11) (Gramps ID: I0221)
+
+Type: family
+Gramps ID: F0265
+Relationship type: Married
+Father: Mark John Matthews (Gramps ID: I0868)
+Mother: Andrea Susan Warner (born 1969-04-21) (Gramps ID: I0285)
+Marriage: 1992-09-05 in Dayton, OH, USA - Marriage of Matthews, Mark John and Warner, Andrea Susan
+Children:
+- Nicholas Ian Matthews (born 1995-07-11) (Gramps ID: I1079)
+
+Type: family
+Gramps ID: F0294
+Relationship type: Married
+Father: Hans Reid (born 1644, died 1707-12-06) (Gramps ID: I0940)
+Mother: Cathern ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ (born 1645, died 1699-03-02) (Gramps ID: I0941)
+Marriage Marriage of Reid, Hans and ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+Children:
+- Matthias Fortin (born 1664, died 1744-06-23) (Gramps ID: I0944)
+
+Type: family
+Gramps ID: F0358
+Relationship type: Married
+Father: Mark Townsend (Gramps ID: I1085)
+Mother: Heather Michelle ĐĐ°ĐșŃĐžĐŒĐŸĐČ (born 1970-05-15) (Gramps ID: I0428)
+Marriage: 1995-06-24 in Harrison, Boone, AR, USA - Marriage of Townsend, Mark and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Heather Michelle
+
+Type: family
+Gramps ID: F0083
+Relationship type: Married
+Father: Simon йаŃĐ°ŃĐŸĐČ (Gramps ID: I0414)
+Mother: Flora Belle Todd (born 1873-07-13, died 1950-02-18) (Gramps ID: I0350)
+Marriage Marriage of йаŃĐ°ŃĐŸĐČ, Simon and Todd, Flora Belle
+
+Type: family
+Gramps ID: F0155
+Relationship type: Married
+Father: John Todd (Gramps ID: I0070)
+Mother: Elizabeth Warner (Gramps ID: I0071)
+Marriage Marriage of Todd, John and Warner, Elizabeth
+Children:
+- Hodges Todd (born 1699, died 1699) (Gramps ID: I0073)
+
+Type: family
+Gramps ID: F0527
+Relationship type: Married
+Father: Robert Page (born 1847-06-11, died 1928-03-22) (Gramps ID: I1387)
+Mother: Belle Neal (died 1903) (Gramps ID: I1379)
+Marriage in Orlando, Orange, FL, USA - Marriage of Page, Robert and Neal, Belle
+Children:
+- Margaret Page (Gramps ID: I1629)
+- Matilda Page (Gramps ID: I1630)
+- John Page (Gramps ID: I1631)
+
+Type: family
+Gramps ID: F0048
+Relationship type: Married
+Father: Raymond A. ĐĐŸĐżĐ°ŃĐžĐœ (born 1922-04-14) (Gramps ID: I0231)
+Mother: Carmen Eloise Garrett (born 1923-12-08, died 1997-03-25) (Gramps ID: I0230)
+Marriage: 1944-04-21 in DuBois, PA, USA - Marriage of ĐĐŸĐżĐ°ŃĐžĐœ, Raymond A. and Garrett, Carmen Eloise
+Children:
+- Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ (born 1947-01-22) (Gramps ID: I0232)
+- Donna Elaine ĐĐŸĐżĐ°ŃĐžĐœ (born 1949-05-18) (Gramps ID: I0233)
+
+Type: family
+Gramps ID: F0361
+Relationship type: Married
+Father: William Waller Brooks (born 1727-01-18, died 1773-09-19) (Gramps ID: I1092)
+Mother: Lucy ĐĐ°ŃОлŃĐ”ĐČ (born 1732-01-17, died 1789-05-29) (Gramps ID: I1093)
+Marriage Marriage of Brooks, William Waller and ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+Children:
+- Marquis IV Brooks (born 1755-02-26, died 1839-02-09) (Gramps ID: I1094)
+- Henry Brooks (Gramps ID: I1095)
+- Spencer Brooks (Gramps ID: I1096)
+- Isabella Brooks (Gramps ID: I1097)
+- Fielding Brooks (Gramps ID: I1098)
+- William Brooks (Gramps ID: I1099)
+- Miriam Brooks (Gramps ID: I1100)
+- George Brooks (Gramps ID: I1101)
+
+Type: family
+Gramps ID: F0684
+Relationship type: Married
+Father: Andrew Moran (Gramps ID: I0575)
+Children:
+- Ann Delilah "Tilley" Moran (died 1801) (Gramps ID: I0576)
+
+Type: family
+Gramps ID: F0193
+Relationship type: Married
+Father: Andrew Moran (Gramps ID: I0575)
+Mother: ??? Sharp (died 9) (Gramps ID: I0741)
+Marriage Marriage of Moran, Andrew and Sharp, ???
+
+Type: family
+Gramps ID: F0275
+Relationship type: Married
+Father: Marvin Ray Page (born 1941-07-30) (Gramps ID: I0897)
+Mother: Gail Darlene Morton (Gramps ID: I0898)
+Marriage in Muscatine, Muscatine, IA, USA - Marriage of Page, Marvin Ray and Morton, Gail Darlene
+Children:
+- Debra Dale Page (born 1963-02-15) (Gramps ID: I0907)
+- Darvin Ray Page (born 1967-03-02) (Gramps ID: I0909)
+
+Type: family
+Gramps ID: F0541
+Relationship type: Married
+Father: Richard C. Page (born 1974-11, died 1974-11) (Gramps ID: I1642)
+Mother: Helen M. Rodriguez (Gramps ID: I1659)
+Marriage Marriage of Page, Richard C. and Rodriguez, Helen M.
+Children:
+- Kenneth Fritz Page (born 1951-09-17, died 1951-09-17) (Gramps ID: I1660)
+
+Type: family
+Gramps ID: F0218
+Relationship type: Married
+Father: Miles? йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0739)
+Mother: Anastasia? Smith (Gramps ID: I0740)
+Marriage in Lansing, MI, USA - Marriage of йОŃ
ĐŸĐœĐŸĐČ, Miles? and Smith, Anastasia?
+Children:
+- Moses йОŃ
ĐŸĐœĐŸĐČ (born 1827, died 1872) (Gramps ID: I0091)
+
+Type: family
+Gramps ID: F0542
+Relationship type: Married
+Father: Kenneth Fritz Page (born 1951-09-17, died 1951-09-17) (Gramps ID: I1660)
+Mother: June Christine Pittman (Gramps ID: I1661)
+Marriage: 1978-04-08 in Blytheville, Mississippi, AR, USA - Marriage of Page, Kenneth Fritz and Pittman, June Christine
+Children:
+- Brandon Kelly Page (born 1982-11-23) (Gramps ID: I1662)
+
+Type: family
+Gramps ID: F0012
+Relationship type: Married
+Father: Martin Bogarte Warner (born 1889-08-11, died 1961-08-12) (Gramps ID: I0020)
+Mother: Alma Katherine Klein (born 1885-12-25, died 1913-11-22) (Gramps ID: I0103)
+Marriage: 1911-04-25 in Henderson, NC, USA - Marriage of Warner, Martin Bogarte and Klein, Alma Katherine
+Children:
+- Michael Warren Warner (born 1913-10-29, died 1983-01-18) (Gramps ID: I0126)
+
+Type: family
+Gramps ID: F0025
+Relationship type: Married
+Father: Robert Eugene Warner (born 1923-10-08) (Gramps ID: I0129)
+Mother: Mary Elizabeth Barber (born 1925-06-08) (Gramps ID: I0144)
+Marriage: 1948-07-18 in Porterville, Tulare, CA, USA - Marriage of Warner, Robert Eugene and Barber, Mary Elizabeth
+Children:
+- Margaret Ruth Warner (born 1949-07-13) (Gramps ID: I0155)
+- Nancy Elizabeth Warner (born 1951-10-20) (Gramps ID: I0156)
+- Sarah Jane Warner (born 1953-09-23) (Gramps ID: I0157)
+- Mary Christine Warner (born 1954-11-10) (Gramps ID: I0158)
+
+Type: family
+Gramps ID: F0543
+Relationship type: Married
+Father: Archibald Serrano (born 1804-12-15, died 1842-11-17) (Gramps ID: I1667)
+Mother: Catherine Delgado (Gramps ID: I1666)
+Marriage: 1829-11-19 in Pullman, WA, USA - Marriage of Serrano, Archibald and Delgado, Catherine
+Children:
+- Joseph Serrano (born 1834-04-03, died 1899-11-02) (Gramps ID: I1668)
+
+Type: family
+Gramps ID: F0458
+Relationship type: Married
+Father: Wilford Owens (Gramps ID: I1400)
+Mother: Matilda Jankowski (born 1885-06-07, died 1925-01-22) (Gramps ID: I1399)
+Marriage Marriage of Owens, Wilford and Jankowski, Matilda
+
+Type: family
+Gramps ID: F0162
+Relationship type: Married
+Father: Livingstone Martin Webb (born 1846-02-11, died 1902-04-10) (Gramps ID: I0068)
+Mother: Lucinda Catherine Blanco (born 1849-01-25, died 1932-10-21) (Gramps ID: I0069)
+Marriage: 1867-04-24 - Marriage of Webb, Livingstone Martin and Blanco, Lucinda Catherine
+Children:
+- Francis Irvin Webb (born 1869-04-28, died 1957-02-07) (Gramps ID: I0042)
+- Clarence Webb (born 1878-04-15, died 1953-12-24) (Gramps ID: I0796)
+- Lawrence Webb (born 1878-04-15, died 1948-08-29) (Gramps ID: I0797)
+
+Type: family
+Gramps ID: F0430
+Relationship type: Married
+Father: Michael Farmer (born 1775, died 1775) (Gramps ID: I1304)
+Mother: Elizabeth Dubé (born 1786, died 1786) (Gramps ID: I1305)
+Marriage Marriage of Farmer, Michael and Dubé, Elizabeth
+
+Type: family
+Gramps ID: F0581
+Relationship type: Married
+Father: Berry (Gramps ID: I1814)
+Mother: Carmel Reed (born 1938-02) (Gramps ID: I1811)
+Marriage Marriage of Berry and Reed, Carmel
+
+Type: family
+Gramps ID: F0638
+Relationship type: Married
+Father: James Mendoza (Gramps ID: I2004)
+Mother: Abigail Allen (born 1690, died 1690) (Gramps ID: I2002)
+Marriage: um 1725 in Topeka, Shawnee, KS, USA - Marriage of Mendoza, James and Allen, Abigail
+
+Type: family
+Gramps ID: F0051
+Relationship type: Married
+Father: James A. Poirier (Gramps ID: I0320)
+Mother: Sharon Lynette Walker (born 1951-11-24) (Gramps ID: I0163)
+Marriage Marriage of Poirier, James A. and Walker, Sharon Lynette
+Children:
+- Janelle Marie Poirier (born 1971-08-02) (Gramps ID: I0321)
+- Jeffrey Alan Poirier (born 1974-07-09) (Gramps ID: I0322)
+
+Type: family
+Gramps ID: F0309
+Relationship type: Married
+Father: Corey Willis (Gramps ID: I0979)
+Mother: Janelle Marie Poirier (born 1971-08-02) (Gramps ID: I0321)
+Marriage: 1993 in Owensboro, Daviess, KY, USA - Marriage of Willis, Corey and Poirier, Janelle Marie
+Children:
+- Carissa Nicole Willis (born 1993-10-27) (Gramps ID: I0980)
+- Matea Elizabeth Willis (born 1996-08-09) (Gramps ID: I1080)
+- Mattea Elizabeth Willis (born 1996-08-19) (Gramps ID: I1090)
+
+Type: family
+Gramps ID: F0251
+Relationship type: Married
+Father: Noel Hansen (born 1953-12) (Gramps ID: I0816)
+Mother: Helen Ramirez (Gramps ID: I0822)
+Marriage in Loveland, Larimer, CO, USA - Marriage of Hansen, Noel and Ramirez, Helen
+Children:
+- Barry Hansen (born 1982, died 1982) (Gramps ID: I0823)
+- Kevin Hansen (born 1979, died 1979) (Gramps ID: I0824)
+
+Type: family
+Gramps ID: F0724
+Relationship type: Married
+Father: William Herman Webb (born 1881-10-27, died 1952-08-23) (Gramps ID: I1242)
+Children:
+- Noble A. Webb (born 1925) (Gramps ID: I1243)
+
+Type: family
+Gramps ID: F0502
+Relationship type: Married
+Father: Milton Blanco (born 1854, died 1854) (Gramps ID: I0879)
+Mother: Sarah Landry (born um 1857, died um 1857) (Gramps ID: I0261)
+
+Type: family
+Gramps ID: F0482
+Relationship type: Married
+Father: Abraham Douglas (born 1821-02-17, died 1901-01-12) (Gramps ID: I0471)
+Mother: Mary Wein Greer (Gramps ID: I1477)
+Marriage Marriage of Douglas, Abraham and Greer, Mary Wein
+Children:
+- William Douglas (Gramps ID: I1478)
+- Frank Douglas (Gramps ID: I1479)
+- Arthur Douglas (Gramps ID: I1480)
+
+Type: family
+Gramps ID: F0523
+Relationship type: Married
+Father: Valentine Thomas McCarthy (Gramps ID: I1617)
+Mother: Sarah Jiménez (born 1797-04-20, died 1797-04-20) (Gramps ID: I1616)
+Marriage: 1827-09-13 - Marriage of McCarthy, Valentine Thomas and Jiménez, Sarah
+
+Type: family
+Gramps ID: F0737
+Relationship type: Married
+Father: Thomas Reed (Gramps ID: I1876)
+Children:
+- Carmel Reed (Gramps ID: I1877)
+- Maureen Reed (Gramps ID: I1879)
+- John Noel Reed (Gramps ID: I1880)
+- Thomas Reed (Gramps ID: I1881)
+- Brendan Reed (Gramps ID: I1882)
+
+Type: family
+Gramps ID: F0114
+Relationship type: Married
+Father: James Boucher (Gramps ID: I0377)
+Mother: Rose Dubé (Gramps ID: I0494)
+Marriage Marriage of Boucher, James and Dubé, Rose
+Children:
+- William J. Boucher (Gramps ID: I0495)
+
+Type: family
+Gramps ID: F0134
+Relationship type: Married
+Father: Jonathan Davis (born 1743-08-09, died 1824-12-28) (Gramps ID: I0544)
+Mother: Mary Mitchell (born 1740-02-23, died 1824-12-28) (Gramps ID: I0543)
+Marriage Marriage of Davis, Jonathan and Mitchell, Mary
+Children:
+- Sabra Davis (born 1762-09-06, died 1845-11-01) (Gramps ID: I0548)
+
+Type: family
+Gramps ID: F0136
+Relationship type: Married
+Father: Randolph Green (born 1768-03-17, died 1838-03-17) (Gramps ID: I0547)
+Mother: Sabra Davis (born 1762-09-06, died 1845-11-01) (Gramps ID: I0548)
+Marriage: 1787-02-10 in Chillicothe, OH, USA - Marriage of Green, Randolph and Davis, Sabra
+Children:
+- Frances Green (born 1804-07-22, died 1886-07-31) (Gramps ID: I0026)
+
+Type: family
+Gramps ID: F0566
+Relationship type: Married
+Father: Michael Shannon Boucher (Gramps ID: I1759)
+Mother: Kate Iglesias (Gramps ID: I1763)
+Marriage in Owosso, MI, USA - Marriage of Boucher, Michael Shannon and Iglesias, Kate
+Children:
+- Bishop Patrick Boucher (Gramps ID: I1764)
+
+Type: family
+Gramps ID: F0213
+Relationship type: Married
+Father: Moses йОŃ
ĐŸĐœĐŸĐČ (born 1827, died 1872) (Gramps ID: I0091)
+Mother: Bridget Holt (born 1829-12, died 1904-02-14) (Gramps ID: I0092)
+Marriage: 1854-02-04 in Ottawa, La Salle, IL, USA - Marriage of йОŃ
ĐŸĐœĐŸĐČ, Moses and Holt, Bridget
+Children:
+- Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ (born 1864-01-27, died 1903-11-27) (Gramps ID: I0048)
+- Myles йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0709)
+- John йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0710)
+- Mary Ellen йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0711)
+
+Type: family
+Gramps ID: F0567
+Relationship type: Married
+Father: John Hamilton (born 1968) (Gramps ID: I1765)
+Mother: Miread Boucher (born 1973) (Gramps ID: I0809)
+Marriage: 1995-04-16 in Montgomery, Montgomery, AL, USA - Marriage of Hamilton, John and Boucher, Miread
+
+Type: family
+Gramps ID: F0209
+Relationship type: Married
+Father: ????? Brown (Gramps ID: I0712)
+Mother: Mary Ellen йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0711)
+Marriage Marriage of Brown, ????? and йОŃ
ĐŸĐœĐŸĐČ, Mary Ellen
+
+Type: family
+Gramps ID: F0289
+Relationship type: Married
+Father: Hans Blanco (born 1582-01-07, died 1582-01-07) (Gramps ID: I0927)
+Mother: Elsbeth Buchanan (born 1584-09-27, died 1584-09-27) (Gramps ID: I0928)
+Marriage: 1603 - Marriage of Blanco, Hans and Buchanan, Elsbeth
+Children:
+- Heinrich Blanco (born 1639-11-10, died 1639-11-10) (Gramps ID: I0929)
+
+Type: family
+Gramps ID: F0352
+Relationship type: Married
+Father: John(?) Holloway (Gramps ID: I1058)
+Mother: Margaret(?) ĐŃĐ»ĐŸĐČ (Gramps ID: I1075)
+Marriage Marriage of Holloway, John(?) and ĐŃĐ»ĐŸĐČ, Margaret(?)
+Children:
+- Sarah Holloway (born 1795-09-10) (Gramps ID: I1076)
+
+Type: family
+Gramps ID: F0204
+Relationship type: Married
+Father: William Adams (born um 1700-10-26, died 1787-03-10) (Gramps ID: I0701)
+Mother: Eleanor Aguilar (born nach 1717, died nach 1760-02) (Gramps ID: I0702)
+Marriage in Loveland, Larimer, CO, USA - Marriage of Adams, William and Aguilar, Eleanor
+Children:
+- Jane Adams (born zwischen 1746 und 1755, died geschÀtzt von 1800 bis 1805) (Gramps ID: I0554)
+
+Type: family
+Gramps ID: F0139
+Relationship type: Married
+Father: John Adkins (born nach 1737-10-01, died 1787-05-20) (Gramps ID: I0553)
+Mother: Jane Adams (born zwischen 1746 und 1755, died geschÀtzt von 1800 bis 1805) (Gramps ID: I0554)
+Marriage: 1762-06-20 - Marriage of Adkins, John and Adams, Jane
+Children:
+- Martha Adkins (born vor 1763-06-20, died 1828-09-05) (Gramps ID: I0559)
+
+Type: family
+Gramps ID: F0288
+Relationship type: Married
+Father: Heinrich Blanco (born 1639-11-10, died 1639-11-10) (Gramps ID: I0929)
+Mother: Barbli Schmidt (born um 1655, died um 1655) (Gramps ID: I0930)
+Marriage: 1676-06-15 in Watertown-Fort Drum, NY, USA - Marriage of Blanco, Heinrich and Schmidt, Barbli
+Children:
+- Hans(Johannes) Blanco (born 1680-03-28) (Gramps ID: I0931)
+
+Type: family
+Gramps ID: F0091
+Relationship type: Married
+Father: Gerald Ray Cruz (born 1944-01-09) (Gramps ID: I0219)
+Mother: Marilyn Joan Rasmussen (born 1944-09-11) (Gramps ID: I0422)
+Marriage: 1968-08-03 - Marriage of Cruz, Gerald Ray and Rasmussen, Marilyn Joan
+Children:
+- Joella Lynn Cruz (born 1971-06-28) (Gramps ID: I0423)
+- Jill Suzanne Cruz (born 1973-11-19) (Gramps ID: I0424)
+- Gayle Joan Cruz (born 1975-09-17) (Gramps ID: I0425)
+- Joy Leanne Cruz (born 1978-03-14) (Gramps ID: I0426)
+
+Type: family
+Gramps ID: F0504
+Relationship type: Married
+Father: Herod ĐŃĐșĐŸĐČ (Gramps ID: I1558)
+Mother: Polly Parent (Gramps ID: I1557)
+Marriage Marriage of ĐŃĐșĐŸĐČ, Herod and Parent, Polly
+Children:
+- Harriet ĐŃĐșĐŸĐČ (Gramps ID: I1559)
+- Charles ĐŃĐșĐŸĐČ (Gramps ID: I1561)
+- Margaret ĐŃĐșĐŸĐČ (Gramps ID: I1563)
+- Samuel ĐŃĐșĐŸĐČ (Gramps ID: I1565)
+- Janie ĐŃĐșĐŸĐČ (Gramps ID: I1567)
+- Annie ĐŃĐșĐŸĐČ (Gramps ID: I1569)
+- Bettie ĐŃĐșĐŸĐČ (Gramps ID: I1571)
+
+Type: family
+Gramps ID: F0509
+Relationship type: Married
+Father: Joseph Logan (Gramps ID: I1568)
+Mother: Janie ĐŃĐșĐŸĐČ (Gramps ID: I1567)
+Marriage Marriage of Logan, Joseph and ĐŃĐșĐŸĐČ, Janie
+
+Type: family
+Gramps ID: F0439
+Relationship type: Married
+Father: Johann Theobald Beaulieu (born 1719, died 1780) (Gramps ID: I1325)
+Mother: Anna Maria Sutton (born 1718, died 1718) (Gramps ID: I1326)
+Marriage Marriage of Beaulieu, Johann Theobald and Sutton, Anna Maria
+
+Type: family
+Gramps ID: F0350
+Relationship type: Married
+Father: Robert? Mullins (born um 1789, died 1828-08-13) (Gramps ID: I1073)
+Mother: Ellender Houston (born 1790-06-21, died 1855-07-30) (Gramps ID: I1074)
+Marriage Marriage of Mullins, Robert? and Houston, Ellender
+Children:
+- Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ (died 1849-05-08) (Gramps ID: I0890)
+
+Type: family
+Gramps ID: F0271
+Relationship type: Married
+Father: George DomĂnguez (born 1811, died 1811) (Gramps ID: I0889)
+Mother: Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ (died 1849-05-08) (Gramps ID: I0890)
+Marriage: 1835-05-13 in Alamogordo, NM, USA - Marriage of DomĂnguez, George and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Children:
+- Mary E. DomĂnguez (born 1839-03-15, died 1893-09-30) (Gramps ID: I0421)
+- Zorada DomĂnguez (Gramps ID: I1352)
+- Elizabeth DomĂnguez (Gramps ID: I1356)
+- Mahala DomĂnguez (Gramps ID: I1375)
+
+Type: family
+Gramps ID: F0419
+Relationship type: Married
+Father: Simon Farmer (born 1815, died 1875) (Gramps ID: I1281)
+Mother: Susan ĐĐ°ŃĐ°ĐœĐŸĐČ (born 1815, died 1815) (Gramps ID: I1282)
+Marriage Marriage of Farmer, Simon and ĐĐ°ŃĐ°ĐœĐŸĐČ, Susan
+
+Type: family
+Gramps ID: F0612
+Relationship type: Married
+Father: Peter Wood (Gramps ID: I1910)
+Mother: Lucy Gibbs (Gramps ID: I1911)
+Marriage Marriage of Wood, Peter and Gibbs, Lucy
+Children:
+- Polly Wood (born 1771-01-29, died vor 1850) (Gramps ID: I1909)
+
+Type: family
+Gramps ID: F0266
+Relationship type: Married
+Father: Barry Joseph Garner (born 1948-12-14) (Gramps ID: I0015)
+Mother: April Lynn VĂĄzquez (born 1963-09-17) (Gramps ID: I0870)
+Marriage: 1992-11-07 in Greeneville, TN, USA - Marriage of Garner, Barry Joseph and VĂĄzquez, April Lynn
+Children:
+- Andrew Joseph Garner (born 1999-04-11) (Gramps ID: I2044)
+
+Type: family
+Gramps ID: F0256
+Relationship type: Married
+Father: George Sr. Peters (born vor 1583, died 1648) (Gramps ID: I0851)
+Mother: Joan Ramsey (Gramps ID: I0852)
+Marriage: 1596 in Hilton Head Island-Beaufort, SC, USA - Marriage of Peters, George Sr. and Ramsey, Joan
+Children:
+- Rose Peters (born 1608, died 1695) (Gramps ID: I0753)
+
+Type: family
+Gramps ID: F0442
+Relationship type: Married
+Father: Johann Adam ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ (born 1721, died 1721) (Gramps ID: I1332)
+Mother: Anna Margaretha Beaulieu (born 1726, died 1726) (Gramps ID: I1331)
+Marriage Marriage of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Johann Adam and Beaulieu, Anna Margaretha
+
+Type: family
+Gramps ID: F0124
+Relationship type: Married
+Father: Robert Palmer (Gramps ID: I0519)
+Mother: ??????? ĐĐŸĐżĐŸĐČ (Gramps ID: I0520)
+Marriage Marriage of Palmer, Robert and ĐĐŸĐżĐŸĐČ, ???????
+Children:
+- Sarah Palmer (born 1819-10-09, died 1819-10-09) (Gramps ID: I0521)
+
+Type: family
+Gramps ID: F0703
+Relationship type: Married
+Father: John Peters (Gramps ID: I0850)
+Children:
+- George Sr. Peters (born vor 1583, died 1648) (Gramps ID: I0851)
+
+Type: family
+Gramps ID: F0325
+Relationship type: Married
+Father: Christopher Christiansen (born 1530, died 1588) (Gramps ID: I0522)
+Mother: Ann Jones (born 1550, died 1550) (Gramps ID: I1007)
+Marriage in Hilo, HI, USA - Marriage of Christiansen, Christopher and Jones, Ann
+Children:
+- Edward Christiansen (born um 1583, died 1614) (Gramps ID: I0525)
+
+Type: family
+Gramps ID: F0045
+Relationship type: Married
+Father: David Page (born 1850-01-01, died 1922-10-13) (Gramps ID: I0038)
+Mother: Elizabeth Douglas (born 1853-02-26, died 1890-02-14) (Gramps ID: I0039)
+Marriage: 1882-12-26 in Columbia, SC, USA - Marriage of Page, David and Douglas, Elizabeth
+Children:
+- Clara Belle Page (born 1889-10-14, died 1969-12-20) (Gramps ID: I0037)
+- Andrew Vincent Page (born 1887-02-05, died 1979-09-27) (Gramps ID: I0194)
+- Eleanor Maude Page (born 1883-10-04) (Gramps ID: I0195)
+- Edith Mae Page (born 1885-05-27, died 1965-05) (Gramps ID: I0196)
+
+Type: family
+Gramps ID: F0273
+Relationship type: Married
+Father: Dwayne Alan Page (born 1950-04-04) (Gramps ID: I0893)
+Mother: Cheryl Lee Scott (Gramps ID: I0894)
+Marriage: 1976-08-09 in Santa Rosa-Petaluma, CA, USA - Marriage of Page, Dwayne Alan and Scott, Cheryl Lee
+Children:
+- David Alan Page (born 1981-05-28) (Gramps ID: I0899)
+- Mitchell Lee Page (born 1983-08-17) (Gramps ID: I0900)
+- Todd Christopher Page (born 1992-01-10) (Gramps ID: I0901)
+
+Type: family
+Gramps ID: F0593
+Relationship type: Married
+Father: KamiĆski (Gramps ID: I1856)
+Mother: Jane Reed (Gramps ID: I1855)
+Marriage in Oil City, PA, USA - Marriage of KamiĆski and Reed, Jane
+
+Type: family
+Gramps ID: F0169
+Relationship type: Married
+Father: Henry Johnson (Gramps ID: I0578)
+Mother: Catherine Sparks (Gramps ID: I0579)
+Marriage Marriage of Johnson, Henry and Sparks, Catherine
+Children:
+- Elizabeth Johnson (Gramps ID: I0603)
+
+Type: family
+Gramps ID: F0260
+Relationship type: Married
+Father: Russell Eugene Welch (born 1949-04-08) (Gramps ID: I0855)
+Mother: Penelope Walsh (born 1955-01-06) (Gramps ID: I0857)
+Marriage: 1982-05-16 in Marion, Grant, IN, USA - Marriage of Welch, Russell Eugene and Walsh, Penelope
+
+Type: family
+Gramps ID: F0219
+Relationship type: Married
+Father: Thomas Anderson (born um 1628, died 1687) (Gramps ID: I0744)
+Mother: Sarah Carpenter (born um 1633, died um 1633) (Gramps ID: I0745)
+Marriage: 1650 - Marriage of Anderson, Thomas and Carpenter, Sarah
+Children:
+- Samuel Anderson (born 1654) (Gramps ID: I0746)
+
+Type: family
+Gramps ID: F0261
+Relationship type: Married
+Father: Stephen Brock (born 1948-06-20) (Gramps ID: I0859)
+Mother: Annabelle Elaine Welch (born 1951-03-30) (Gramps ID: I0858)
+Marriage: 1969-05-19 in Alexandria, MN, USA - Marriage of Brock, Stephen and Welch, Annabelle Elaine
+Children:
+- Lance Edward Brock (born 1969-11-13) (Gramps ID: I0862)
+- Celeste Ellen Brock (born 1971-11-10) (Gramps ID: I0863)
+
+Type: family
+Gramps ID: F0429
+Relationship type: Married
+Father: Samuel Ford (Gramps ID: I1303)
+Mother: Catharine Farmer (born 1798, died 1798) (Gramps ID: I1302)
+Marriage Marriage of Ford, Samuel and Farmer, Catharine
+
+Type: family
+Gramps ID: F0417
+Relationship type: Married
+Father: Johann Michael Beaulieu (born 1711, died 1711) (Gramps ID: I1277)
+Mother: Anna Elisabeth LĂłpez (born 1715, died 1715) (Gramps ID: I1278)
+Marriage Marriage of Beaulieu, Johann Michael and LĂłpez, Anna Elisabeth
+Children:
+- Johann Simon Beaulieu (born 1742, died 1742) (Gramps ID: I1275)
+- Johann Adam Beaulieu (born 1738, died 1738) (Gramps ID: I1306)
+- Johann Valentin Beaulieu (born 1735, died 1735) (Gramps ID: I1307)
+- Johann Franciskus Beaulieu (born 1745, died 1826) (Gramps ID: I1309)
+- Anna Maria Beaulieu (born 1749, died 1750) (Gramps ID: I1311)
+- Anna Eva Hicks (born 1751, died 1817) (Gramps ID: I1312)
+- Anna Margaretha Beaulieu (born 1755, died 1796) (Gramps ID: I1314)
+
+Type: family
+Gramps ID: F0485
+Relationship type: Married
+Father: Franklin Alvarado (Gramps ID: I1467)
+Mother: Comfort Hodges (Gramps ID: I1485)
+Marriage Marriage of Alvarado, Franklin and Hodges, Comfort
+
+Type: family
+Gramps ID: F0730
+Relationship type: Married
+Father: Patrick Gardner (Gramps ID: I1740)
+Children:
+- Mary Jane Gardner (born 1963-01-12, died 1963-01-10) (Gramps ID: I0871)
+
+Type: family
+Gramps ID: F0641
+Relationship type: Married
+Father: Benjamin Allen (born um 1700, died 1762-03-10) (Gramps ID: I2011)
+Mother: Experience Griffith (Gramps ID: I2012)
+Marriage: um 1729 in Topeka, Shawnee, KS, USA - Marriage of Allen, Benjamin and Griffith, Experience
+
+Type: family
+Gramps ID: F0668
+Relationship type: Married
+Father: Christian Moreno (Gramps ID: I2087)
+Mother: Mary Price (Gramps ID: I2088)
+Marriage Marriage of Moreno, Christian and Price, Mary
+
+Type: family
+Gramps ID: F0604
+Relationship type: Married
+Father: Alexander Payne (Gramps ID: I1894)
+Mother: Catherine Salazar (Gramps ID: I1895)
+Marriage: 1818-10-20 in Guymon, OK, USA - Marriage of Payne, Alexander and Salazar, Catherine
+
+Type: family
+Gramps ID: F0673
+Relationship type: Married
+Father: Martin (Gramps ID: I2103)
+Mother: Mary Ann Moreno (Gramps ID: I2102)
+Marriage Marriage of Martin and Moreno, Mary Ann
+
+Type: family
+Gramps ID: F0008
+Relationship type: Married
+Father: John ĐŃĐșĐŸĐČ (born 1795-11-06, died 1875-12-12) (Gramps ID: I0029)
+Mother: Mary Eve Hopkins (born 1805-10-18, died 1865-05-11) (Gramps ID: I0030)
+Marriage: 1821-12-27 - Marriage of ĐŃĐșĐŸĐČ, John and Hopkins, Mary Eve
+Children:
+- Angeline ĐŃĐșĐŸĐČ (born 1846-08-17, died 1891-10-31) (Gramps ID: I0034)
+
+Type: family
+Gramps ID: F0700
+Relationship type: Married
+Father: John Henry (Gramps ID: I0799)
+Children:
+- Elizabeth Henry (born 1770-04, died 1836-05-14) (Gramps ID: I0800)
+
+Type: family
+Gramps ID: F0573
+Relationship type: Married
+Father: Michael Boucher (Gramps ID: I1783)
+Mother: Anne Boucher (born 1962) (Gramps ID: I0828)
+Marriage Marriage of Boucher, Michael and Boucher, Anne
+Children:
+- Michelle Boucher (Gramps ID: I1784)
+- Tony Boucher (born 1984) (Gramps ID: I1785)
+- Martin Boucher (Gramps ID: I1786)
+- Tracy Boucher (Gramps ID: I1787)
+
+Type: family
+Gramps ID: F0403
+Relationship type: Married
+Father: Richard Swanson (Gramps ID: I1199)
+Mother: Avis Fernandez El FernĂĄndez III (Gramps ID: I1200)
+Marriage: 1605-05-27 in Seattle, WA, USA - Marriage of Swanson, Richard and El FernĂĄndez, Avis Fernandez III
+Children:
+- William Swanson (born 1620, died 1684-10-15) (Gramps ID: I1197)
+- Edward Swanson (Gramps ID: I1203)
+- John Swanson (Gramps ID: I1204)
+
+Type: family
+Gramps ID: F0535
+Relationship type: Married
+Father: Col. Robert Strickland (Gramps ID: I1648)
+Mother: Patsy James (Gramps ID: I1548)
+Marriage Marriage of Strickland, Col. Robert and James, Patsy
+
+Type: family
+Gramps ID: F0683
+Relationship type: Married
+Father: Michael Howard (Gramps ID: I0571)
+Children:
+- Juliana Howard (Gramps ID: I0572)
+
+Type: family
+Gramps ID: F0712
+Relationship type: Married
+Father: Thomas ĐĐŸĐœŃĐ°ŃĐŸĐČ (Gramps ID: I1151)
+Children:
+- Ellen ĐĐŸĐœŃĐ°ŃĐŸĐČ (born um 1515, died 1572) (Gramps ID: I0755)
+
+Type: family
+Gramps ID: F0055
+Relationship type: Married
+Father: David J. Ward (born 1944-12-31) (Gramps ID: I0305)
+Mother: Margaret Ruth Warner (born 1949-07-13) (Gramps ID: I0155)
+Marriage: 1974-07-02 in Gaithersburg, MD, USA - Marriage of Ward, David J. and Warner, Margaret Ruth
+Children:
+- Michael David Ward (born 1978-08-24) (Gramps ID: I0306)
+- Catherine Marie Ward (born 1980-09-28) (Gramps ID: I0307)
+
+Type: family
+Gramps ID: F0200
+Relationship type: Married
+Father: John Davis (Gramps ID: I0690)
+Mother: Hannah Knight (Gramps ID: I0691)
+Marriage Marriage of Davis, John and Knight, Hannah
+Children:
+- Benjamin Davis (Gramps ID: I0692)
+
+Type: family
+Gramps ID: F0201
+Relationship type: Married
+Father: Benjamin Davis (Gramps ID: I0692)
+Mother: Mary Alexander (Gramps ID: I0693)
+Marriage Marriage of Davis, Benjamin and Alexander, Mary
+Children:
+- Jonathan Davis (born 1743-08-09, died 1824-12-28) (Gramps ID: I0544)
+
+Type: family
+Gramps ID: F0682
+Relationship type: Married
+Father: Rev. John L. Lefebvre (born 1584-12-20, died 1653-11-03) (Gramps ID: I0532)
+Children:
+- Joseph Lefebvre (Gramps ID: I0533)
+
+Type: family
+Gramps ID: F0642
+Relationship type: Married
+Father: John Norris (born 1633-09-08, died 1712-08-27) (Gramps ID: I0750)
+Mother: Sarah ĐĐŸĐČĐžĐșĐŸĐČ (born 1660, died 1660) (Gramps ID: I2001)
+Marriage: um 1689 in Topeka, Shawnee, KS, USA - Marriage of Norris, John and ĐĐŸĐČĐžĐșĐŸĐČ, Sarah
+Children:
+- Abigail Allen (born 1690, died 1690) (Gramps ID: I2002)
+- Joseph Allen (born 1692-05-17, died 1692-05-17) (Gramps ID: I2005)
+- Job Allen (born 1694-06-09, died 1694-06-09) (Gramps ID: I2007)
+- Rachel Allen (born 1696-05-12, died 1747) (Gramps ID: I2008)
+- Lydia Allen (born 1698-04-28, died 1698-04-28) (Gramps ID: I2010)
+- Benjamin Allen (born um 1700, died 1762-03-10) (Gramps ID: I2011)
+
+Type: family
+Gramps ID: F0637
+Relationship type: Married
+Father: ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I2003)
+Mother: Abigail Allen (born 1690, died 1690) (Gramps ID: I2002)
+Marriage in Topeka, Shawnee, KS, USA - Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ and Allen, Abigail
+
+Type: family
+Gramps ID: F0698
+Relationship type: Married
+Father: David Benson (born 1730, died 1777) (Gramps ID: I0772)
+Children:
+- John Benson (born 1750, died 1750) (Gramps ID: I0773)
+
+Type: family
+Gramps ID: F0699
+Relationship type: Married
+Father: John Benson (born 1750, died 1750) (Gramps ID: I0773)
+Children:
+- Col. David Benson (born 1786-08-17, died 1836-03-06) (Gramps ID: I0774)
+
+Type: family
+Gramps ID: F0390
+Relationship type: Married
+Father: John Reynolds (born um 1599) (Gramps ID: I1166)
+Mother: Sarah ĐĐŸĐČалДĐČ (born um 1604) (Gramps ID: I1167)
+Marriage: 1623-04-10 - Marriage of Reynolds, John and ĐĐŸĐČалДĐČ, Sarah
+Children:
+- Col. John Reynolds (born 1622, died 1670) (Gramps ID: I0964)
+
+Type: family
+Gramps ID: F0388
+Relationship type: Married
+Father: Col. John Reynolds (born 1622, died 1670) (Gramps ID: I0964)
+Mother: Elizabeth Mazur (born um 1632) (Gramps ID: I1163)
+Marriage: 1663 in Greenville, SC, USA - Marriage of Reynolds, Col. John and Mazur, Elizabeth
+Children:
+- Nicholas Reynolds (born 1643, died vor 1695) (Gramps ID: I0965)
+
+Type: family
+Gramps ID: F0101
+Relationship type: Married
+Father: Douglas Krawczyk (born 1956-06-14) (Gramps ID: I0439)
+Mother: Patti Jo Cruz (born 1959-08-14) (Gramps ID: I0438)
+Marriage: 1979-09-29 - Marriage of Krawczyk, Douglas and Cruz, Patti Jo
+
+Type: family
+Gramps ID: F0521
+Relationship type: Married
+Father: Andrew Jiménez (born 1792-01-21, died 1792-01-21) (Gramps ID: I1612)
+Mother: Sarah Palmer (Gramps ID: I1613)
+Marriage: 1820-04-26 - Marriage of Jiménez, Andrew and Palmer, Sarah
+
+Type: family
+Gramps ID: F0548
+Relationship type: Married
+Father: Adam Stephens (Gramps ID: I1686)
+Mother: Anna Maria Blanco (Gramps ID: I1685)
+Marriage Marriage of Stephens, Adam and Blanco, Anna Maria
+
+Type: family
+Gramps ID: F0643
+Relationship type: Married
+Father: John Hernandez (Gramps ID: I2015)
+Mother: Elizabeth Norris (born um 1679, died 1731-05-10) (Gramps ID: I2014)
+Marriage in Garden City, Finney, KS, USA - Marriage of Hernandez, John and Norris, Elizabeth
+
+Type: family
+Gramps ID: F0369
+Relationship type: Married
+Father: Robert F. Garner (born 1863-04-04, died 1940-02-17) (Gramps ID: I1123)
+Mother: Mary Jane Cannon (Gramps ID: I1124)
+Marriage: 1880-11-25 in Paragould, Greene, AR, USA - Marriage of Garner, Robert F. and Cannon, Mary Jane
+
+Type: family
+Gramps ID: F0674
+Relationship type: Married
+Mother: woman Boucher (Gramps ID: I1761)
+Children:
+- Garrett Boucher (Gramps ID: I1762)
+
+Type: family
+Gramps ID: F0465
+Relationship type: Married
+Father: Wong (Gramps ID: I1417)
+Mother: Mildred Page (Gramps ID: I1416)
+Marriage Marriage of Wong and Page, Mildred
+
+Type: family
+Gramps ID: F0097
+Relationship type: Married
+Father: David Wayne Cruz (born 1948-01-25) (Gramps ID: I0224)
+Mother: Barbara Ann Nunez (born 1948-09-12) (Gramps ID: I0434)
+Marriage: 1967-04-07 - Marriage of Cruz, David Wayne and Nunez, Barbara Ann
+Children:
+- Marsha Ann Cruz (born 1968-10-04) (Gramps ID: I0447)
+- Karla Sue Cruz (born 1972-06-29) (Gramps ID: I0448)
+- Karen Kay Cruz (born 1975-09-08) (Gramps ID: I0449)
+
+Type: family
+Gramps ID: F0629
+Relationship type: Married
+Father: George Warner (born 1709-07-21, died 1709-07-21) (Gramps ID: I1953)
+Mother: Elizabeth Nichols (born 1711-01-03, died 1768-04-15) (Gramps ID: I1954)
+Marriage Marriage of Warner, George and Nichols, Elizabeth
+
+Type: family
+Gramps ID: F0076
+Relationship type: Married
+Father: Maurice T. Landry (born 1891-07-11) (Gramps ID: I0257)
+Mother: Mary Claire Estrada (Gramps ID: I0270)
+Marriage: 1920-04-17 - Marriage of Landry, Maurice T. and Estrada, Mary Claire
+Children:
+- Maurice, Jr. Landry (born 1921-01-11) (Gramps ID: I0271)
+- Charles Doyle Landry (born 1922-08-06) (Gramps ID: I0272)
+
+Type: family
+Gramps ID: F0116
+Relationship type: Married
+Father: Wayne Alvarado (Gramps ID: I0499)
+Mother: Sharon Boucher (born 1943-11-26, died 1973-06-11) (Gramps ID: I0498)
+Marriage Marriage of Alvarado, Wayne and Boucher, Sharon
+Children:
+- Cynthia Diane Alvarado (Gramps ID: I0500)
+- Jacqueline Alvarado (Gramps ID: I0501)
+- Richard Alvarado (Gramps ID: I0502)
+
+Type: family
+Gramps ID: F0588
+Relationship type: Married
+Father: Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1830)
+Mother: Bridget Reed (Gramps ID: I1829)
+Marriage Marriage of Đ€Đ”ĐŽĐŸŃĐŸĐČ and Reed, Bridget
+Children:
+- Patrick Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1835)
+
+Type: family
+Gramps ID: F0552
+Relationship type: Married
+Father: O. D. Little (Gramps ID: I1692)
+Mother: Anna Mabel Webb (born 1890-10-02, died 1967-07-12) (Gramps ID: I1701)
+Marriage Marriage of Little, O. D. and Webb, Anna Mabel
+
+Type: family
+Gramps ID: F0147
+Relationship type: Married
+Father: Matthias Sr. Ball (born 1767-03-11, died 1848-01-22) (Gramps ID: I0568)
+Mother: Ann Maxwell (Gramps ID: I0567)
+Marriage in Glasgow, Barren, KY, USA - Marriage of Ball, Matthias Sr. and Maxwell, Ann
+Children:
+- Matthias, Jr. Ball (born 1810-08-07, died 1887-12-23) (Gramps ID: I0027)
+
+Type: family
+Gramps ID: F0007
+Relationship type: Married
+Father: Matthias, Jr. Ball (born 1810-08-07, died 1887-12-23) (Gramps ID: I0027)
+Mother: Abigail Chapman Moreno (born 1823-03-13, died 1853-06-02) (Gramps ID: I0028)
+Marriage: 1843-11-14 in McPherson, McPherson, KS, USA - Marriage of Ball, Matthias, Jr. and Moreno, Abigail Chapman
+Children:
+- Jasper Ball (born 1846-12-14, died 1906-08-04) (Gramps ID: I0033)
+- Jane Ball (born 1848-07-09, died 1848-07-09) (Gramps ID: I1967)
+- Martha Ball (born 1852-03-02, died 1852-03-02) (Gramps ID: I1968)
+
+Type: family
+Gramps ID: F0506
+Relationship type: Married
+Father: Charles ĐŃĐșĐŸĐČ (Gramps ID: I1561)
+Mother: Margaret Girard (Gramps ID: I1562)
+Marriage Marriage of ĐŃĐșĐŸĐČ, Charles and Girard, Margaret
+
+Type: family
+Gramps ID: F0651
+Relationship type: Married
+Father: Beckham Hawkins (Gramps ID: I2031)
+Mother: Angie ĐŃĐ°ĐœĐ°ŃŃĐ”ĐČ (Gramps ID: I2032)
+Marriage Marriage of Hawkins, Beckham and ĐŃĐ°ĐœĐ°ŃŃĐ”ĐČ, Angie
+Children:
+- Ellen Marie Hawkins (born 1929-09-24) (Gramps ID: I0226)
+- William Melvin Hawkins (born 1926-03-09, died 1999-03-25) (Gramps ID: I2034)
+- Jean Hawkins (Gramps ID: I2042)
+
+Type: family
+Gramps ID: F0400
+Relationship type: Married
+Father: Peter Baldwin (Gramps ID: I1194)
+Mother: ĐĐžĐșĐžŃĐŸŃĐŸĐČ (Gramps ID: I1195)
+Marriage Marriage of Baldwin, Peter and ĐĐžĐșĐžŃĐŸŃĐŸĐČ
+Children:
+- Anne Baldwin (born um 1656) (Gramps ID: I0985)
+
+Type: family
+Gramps ID: F0554
+Relationship type: Married
+Father: Robert B. éŽæš (Gramps ID: I1706)
+Mother: Mary F. Blanco (born 1846, died 1846) (Gramps ID: I0875)
+Marriage Marriage of éŽæš, Robert B. and Blanco, Mary F.
+
+Type: family
+Gramps ID: F0356
+Relationship type: Married
+Father: Christopher Paul Welch (born 1966-09-04) (Gramps ID: I0444)
+Mother: LeAnn Hayes (born 1969-06-23) (Gramps ID: I1082)
+Marriage: 1989-08-05 in Dothan, Houston, AL, USA - Marriage of Welch, Christopher Paul and Hayes, LeAnn
+Children:
+- Madeleine Christine Welch (born 1995-11-01) (Gramps ID: I1083)
+
+Type: family
+Gramps ID: F0191
+Relationship type: Married
+Father: Robert C. Cox (Gramps ID: I0672)
+Mother: Jane McClellan Garner (born 1950-04-27) (Gramps ID: I0670)
+Marriage: 1974-06-08 - Marriage of Cox, Robert C. and Garner, Jane McClellan
+
+Type: family
+Gramps ID: F0690
+Relationship type: Married
+Father: James James (Gramps ID: I0729)
+Children:
+- Robert James (Gramps ID: I0730)
+
+Type: family
+Gramps ID: F0046
+Relationship type: Married
+Father: William Everett Cruz (born 1927-04-05) (Gramps ID: I0225)
+Mother: Ellen Marie Hawkins (born 1929-09-24) (Gramps ID: I0226)
+Marriage: 1947-12-28 in Morehead City, NC, USA - Marriage of Cruz, William Everett and Hawkins, Ellen Marie
+Children:
+- Joyce Marie Cruz (born 1949-03-07) (Gramps ID: I0227)
+- Judy Denise Cruz (born 1952-11-29) (Gramps ID: I0228)
+- Patti Jo Cruz (born 1959-08-14) (Gramps ID: I0438)
+
+Type: family
+Gramps ID: F0214
+Relationship type: Married
+Father: Adam Morris (born 1795, died 1795) (Gramps ID: I0614)
+Mother: Elizabeth Oliver (Gramps ID: I0613)
+Marriage in Lock Haven, PA, USA - Marriage of Morris, Adam and Oliver, Elizabeth
+Children:
+- Cyrus Morris (born 20, died 1852-08-10) (Gramps ID: I0615)
+
+Type: family
+Gramps ID: F0591
+Relationship type: Married
+Father: Patrick Reed (born 1967-07-09, died 1967-07-07) (Gramps ID: I1822)
+Mother: Elizabeth Gibbs (born 1979-10-01, died 1979-10-01) (Gramps ID: I1843)
+Marriage Marriage of Reed, Patrick and Gibbs, Elizabeth
+
+Type: family
+Gramps ID: F0298
+Relationship type: Married
+Father: William MarĂn (Gramps ID: I0948)
+Mother: Elizabeth Francis (Gramps ID: I0950)
+Marriage in Ocean Pines, MD, USA - Marriage of MarĂn, William and Francis, Elizabeth
+Children:
+- Rev.Isaac Schultz (died um 1818) (Gramps ID: I0949)
+
+Type: family
+Gramps ID: F0711
+Relationship type: Married
+Father: John Ramos (born 1526, died 1526) (Gramps ID: I1149)
+Children:
+- Mary Ramos (born um 1556, died 1588-01-07) (Gramps ID: I0756)
+
+Type: family
+Gramps ID: F0619
+Relationship type: Married
+Father: Matt ĐĐŸŃбŃĐœĐŸĐČ (Gramps ID: I1927)
+Mother: Cecilia Garner (born 1960-07-14) (Gramps ID: I0184)
+Marriage Marriage of ĐĐŸŃбŃĐœĐŸĐČ, Matt and Garner, Cecilia
+
+Type: family
+Gramps ID: F0125
+Relationship type: Married
+Father: Elder Thomas Thomas (born um 1580, died 1632) (Gramps ID: I0524)
+Mother: Anne Barrett (born um 1600, died um 1600) (Gramps ID: I0523)
+Marriage: 1605-11-10 in Houma, Terrebonne, LA, USA - Marriage of Thomas, Elder Thomas and Barrett, Anne
+Children:
+- Elizabeth Thomas (born 1620, died 1713) (Gramps ID: I0527)
+
+Type: family
+Gramps ID: F0402
+Relationship type: Married
+Father: William Swanson (born 1620, died 1684-10-15) (Gramps ID: I1197)
+Mother: Elizabeth Jensen (Gramps ID: I1198)
+Marriage Marriage of Swanson, William and Jensen, Elizabeth
+Children:
+- William Diaz (born um 1648, died 1700-09-16) (Gramps ID: I0984)
+- Joane Swanson (Gramps ID: I1918)
+- Charles Swanson (Gramps ID: I1919)
+- Benjamin Swanson (Gramps ID: I1920)
+
+Type: family
+Gramps ID: F0152
+Relationship type: Married
+Father: John Todd (born 1765-11-26) (Gramps ID: I0079)
+Mother: Elizabeth ĐалДŃĐžĐœ (Gramps ID: I0080)
+Marriage Marriage of Todd, John and ĐалДŃĐžĐœ, Elizabeth
+Children:
+- William Todd (born 1790-10-01, died 1846-07-08) (Gramps ID: I0081)
+
+Type: family
+Gramps ID: F0563
+Relationship type: Married
+Father: Lessard (Gramps ID: I1738)
+Mother: ??? Castro (Gramps ID: I0888)
+Marriage Marriage of Lessard and Castro, ???
+Children:
+- Isaac Lessard (born 1828-10, died 1828-10) (Gramps ID: I0420)
+
+Type: family
+Gramps ID: F0424
+Relationship type: Married
+Father: Jacob Taylor (born 1780, died 1780) (Gramps ID: I1293)
+Mother: Susanna Farmer (born 1784, died 1784) (Gramps ID: I1292)
+Marriage Marriage of Taylor, Jacob and Farmer, Susanna
+
+Type: family
+Gramps ID: F0723
+Relationship type: Married
+Father: Gabriel Gustave ć±±æŹ (Gramps ID: I1213)
+Children:
+- Antoine Desaure Perronett ć±±æŹ (born 1643-07-10, died 1643-07-10) (Gramps ID: I0766)
+
+Type: family
+Gramps ID: F0661
+Relationship type: Married
+Father: David Porter (Gramps ID: I2063)
+Mother: Mary H. Moreno (born 1820-08-20, died 1820-08-20) (Gramps ID: I2062)
+Marriage: 1849-11-29 - Marriage of Porter, David and Moreno, Mary H.
+Children:
+- Mahala J. Porter (Gramps ID: I2064)
+- Rachel D. Porter (Gramps ID: I2066)
+- Porter (Gramps ID: I2067)
+- Porter (Gramps ID: I2068)
+
+Type: family
+Gramps ID: F0252
+Relationship type: Married
+Father: Michael Gardner (Gramps ID: I0844)
+Mother: Nula Hansen (Gramps ID: I0817)
+Marriage in Green Bay, WI, USA - Marriage of Gardner, Michael and Hansen, Nula
+
+Type: family
+Gramps ID: F0516
+Relationship type: Married
+Father: Jacob ĐлДĐșŃДДĐČ (Gramps ID: I1602)
+Mother: Mary Benson (Gramps ID: I1601)
+Marriage Marriage of ĐлДĐșŃДДĐČ, Jacob and Benson, Mary
+
+Type: family
+Gramps ID: F0182
+Relationship type: Married
+Father: Richard F. Johnson (born 1917-01-13, died 1982-09-22) (Gramps ID: I0637)
+Mother: Betty Jane Garner (born 1920-08-25) (Gramps ID: I0636)
+Marriage: 1940-06-17 in Tupelo, MS, USA - Marriage of Johnson, Richard F. and Garner, Betty Jane
+
+Type: family
+Gramps ID: F0178
+Relationship type: Married
+Father: Jesse V. Garner (born 1876-06-18, died 1929-01-21) (Gramps ID: I0623)
+Mother: Viola Taylor (Gramps ID: I0641)
+Marriage Marriage of Garner, Jesse V. and Taylor, Viola
+Children:
+- Marie Garner (Gramps ID: I0642)
+- Victor Garner (Gramps ID: I0644)
+
+Type: family
+Gramps ID: F0283
+Relationship type: Married
+Father: Gerhard Blanco (born 1718-01-27, died 1783-04-26) (Gramps ID: I0915)
+Mother: Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ (born 1717-01-26, died 1788-04-20) (Gramps ID: I0916)
+Marriage Marriage of Blanco, Gerhard and ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Children:
+- Peter Blanco (Gramps ID: I0917)
+- John Johansen (born 1750-05-04, died 1835) (Gramps ID: I1682)
+- Samuel Blanco (born 1759-01-02, died 1840-01-14) (Gramps ID: I1683)
+- Daniel Blanco (born 1752, died 1805) (Gramps ID: I1684)
+- Anna Maria Blanco (Gramps ID: I1685)
+
+Type: family
+Gramps ID: F0435
+Relationship type: Married
+Father: Valentine Steele (Gramps ID: I1317)
+Mother: Anna Elisabeth Beaulieu (born 1706, died 1772) (Gramps ID: I1316)
+Marriage Marriage of Steele, Valentine and Beaulieu, Anna Elisabeth
+
+Type: family
+Gramps ID: F0096
+Relationship type: Married
+Father: Dale Eugene Cruz (born 1947-11-11) (Gramps ID: I0216)
+Mother: Linda Gill (born 1946-11-10) (Gramps ID: I0433)
+Marriage: 1968-08-17 - Marriage of Cruz, Dale Eugene and Gill, Linda
+Children:
+- Laura Joy Cruz (born 1973-04-30) (Gramps ID: I0445)
+- Susan Marguerite Cruz (born 1976-08-07) (Gramps ID: I0446)
+
+Type: family
+Gramps ID: F0357
+Relationship type: Married
+Father: Steve Graham (Gramps ID: I1084)
+Mother: Laura Joy Cruz (born 1973-04-30) (Gramps ID: I0445)
+Marriage: 1996-08-10 in Lafayette, Tippecanoe, IN, USA - Marriage of Graham, Steve and Cruz, Laura Joy
+
+Type: family
+Gramps ID: F0359
+Relationship type: Married
+Father: Douglas Wilson (Gramps ID: I1086)
+Mother: Marsha Ann Cruz (born 1968-10-04) (Gramps ID: I0447)
+Marriage: 1990 in Wheeling, WV-OH, USA - Marriage of Wilson, Douglas and Cruz, Marsha Ann
+
+Type: family
+Gramps ID: F0180
+Relationship type: Married
+Father: Walter E. Garner (born 1882-02-17, died 1946-10-23) (Gramps ID: I0626)
+Mother: Maude GarcĂa (Gramps ID: I0650)
+Marriage Marriage of Garner, Walter E. and GarcĂa, Maude
+Children:
+- Maude Garner (Gramps ID: I0651)
+- Marguarite Garner (Gramps ID: I0653)
+
+Type: family
+Gramps ID: F0187
+Relationship type: Married
+Father: ??????? Cooper (Gramps ID: I0652)
+Mother: Maude Garner (Gramps ID: I0651)
+Marriage Marriage of Cooper, ??????? and Garner, Maude
+
+Type: family
+Gramps ID: F0646
+Relationship type: Married
+Father: ĐĐŸŃĐžŃĐŸĐČ (Gramps ID: I2023)
+Mother: Carmen Alberta Boyd (born 1897-08-14, died 1949-06-17) (Gramps ID: I2020)
+Marriage Marriage of ĐĐŸŃĐžŃĐŸĐČ and Boyd, Carmen Alberta
+
+Type: family
+Gramps ID: F0484
+Relationship type: Married
+Father: Capt. Boyd (Gramps ID: I1484)
+Mother: Eliza Alvarado (Gramps ID: I1466)
+Marriage Marriage of Boyd, Capt. and Alvarado, Eliza
+
+Type: family
+Gramps ID: F0077
+Relationship type: Married
+Father: Maurice T. Landry (born 1891-07-11) (Gramps ID: I0257)
+Mother: Caroline Metzger Vargas (Gramps ID: I0273)
+Marriage: 1928-09-08 - Marriage of Landry, Maurice T. and Vargas, Caroline Metzger
+Children:
+- Rose Marie Landry (Gramps ID: I0274)
+
+Type: family
+Gramps ID: F0067
+Relationship type: Married
+Father: Alvin E. Watson (born 1948-05-09) (Gramps ID: I0288)
+Mother: Beverly Ann Warner (born 1947-08-19) (Gramps ID: I0151)
+Marriage Marriage of Watson, Alvin E. and Warner, Beverly Ann
+Children:
+- Mary Grace Watson (born 1983-06-16) (Gramps ID: I0289)
+
+Type: family
+Gramps ID: F0321
+Relationship type: Married
+Father: Thomas Foster (born 1582-04-14, died 1658-06-01) (Gramps ID: I1002)
+Mother: Ann Spencer (born um 1585, died 1662-12-20) (Gramps ID: I1001)
+Marriage: 1615 in Allegan, MI, USA - Marriage of Foster, Thomas and Spencer, Ann
+Children:
+- William Foster (born um 1625, died um 1625) (Gramps ID: I0674)
+
+Type: family
+Gramps ID: F0336
+Relationship type: Married
+Father: John Massey (born 1420, died 1420) (Gramps ID: I1027)
+Mother: Joan ĐĐ°Đ»ŃŃĐ”ĐČ (born 1420, died 1420) (Gramps ID: I1028)
+Marriage Marriage of Massey, John and ĐĐ°Đ»ŃŃĐ”ĐČ, Joan
+Children:
+- John Christiansen (born 1455, died 1514) (Gramps ID: I1029)
+
+Type: family
+Gramps ID: F0655
+Relationship type: Married
+Father: Becker (Gramps ID: I2043)
+Mother: Jean Hawkins (Gramps ID: I2042)
+Marriage Marriage of Becker and Hawkins, Jean
+
+Type: family
+Gramps ID: F0020
+Relationship type: Married
+Father: Martin Kelly Gosselin (born 1958-09-30) (Gramps ID: I0114)
+Mother: Marcia Jane Warner (born 1958-09-20) (Gramps ID: I0014)
+Marriage: 1980-12-27 in Statesboro, Bulloch, GA, USA - Marriage of Gosselin, Martin Kelly and Warner, Marcia Jane
+Children:
+- David Martin Gosselin (born 1983-08-02) (Gramps ID: I0115)
+- Joel Thomas Gosselin (born 1985-10-03) (Gramps ID: I0116)
+- Andrea Lynn Gosselin (born 1988-07-10) (Gramps ID: I0117)
+- Craig Richard Gosselin (born 1990-12-20) (Gramps ID: I0483)
+
+Type: family
+Gramps ID: F0332
+Relationship type: Married
+Father: John Foster (born um 1504, died um 1504) (Gramps ID: I1033)
+Mother: Elizabeth Ryan (born 1508, died 1508) (Gramps ID: I1034)
+Marriage Marriage of Foster, John and Ryan, Elizabeth
+Children:
+- Thomas Foster (died 1557-06-23) (Gramps ID: I1035)
+
+Type: family
+Gramps ID: F0443
+Relationship type: Married
+Father: Johann Simon Beaulieu (born 1728, died 1771) (Gramps ID: I1333)
+Mother: Anna Margaretha ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ (born 1730, died 1817) (Gramps ID: I1334)
+Marriage Marriage of Beaulieu, Johann Simon and ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+
+Type: family
+Gramps ID: F0198
+Relationship type: Married
+Father: William Fox (died 1709) (Gramps ID: I0682)
+Mother: Hannah Mason (Gramps ID: I0683)
+Marriage Marriage of Fox, William and Mason, Hannah
+Children:
+- Samuel Fox (born 1700, died 1744) (Gramps ID: I0515)
+
+Type: family
+Gramps ID: F0422
+Relationship type: Married
+Father: Valentine Farmer (born 1779, died 1833) (Gramps ID: I1288)
+Mother: Anna Catherine Miller (Gramps ID: I1289)
+Marriage Marriage of Farmer, Valentine and Miller, Anna Catherine
+
+Type: family
+Gramps ID: F0017
+Relationship type: Married
+Father: Lewis Anderson Garner von ZieliĆski Sr (born 1855-06-21, died 1911-06-28) (Gramps ID: I0044)
+Mother: Luella Jacques Martel (born 1852-01-23, died 1921-04-28) (Gramps ID: I0045)
+Marriage: 1875-04-01 in Paragould, Greene, AR, USA - Marriage of Garner, Lewis Anderson and Martel, Luella Jacques
+Children:
+- Eugene Stanley Garner (born 1895-12-01, died 1984-03-01) (Gramps ID: I0046)
+- Jesse V. Garner (born 1876-06-18, died 1929-01-21) (Gramps ID: I0623)
+- Raymond E. Garner (born 1878-09-16, died 1921-05-02) (Gramps ID: I0624) (relation to father: Birth, relation to mother: Adopted)
+- Jennie S. Garner (born 1880-09-11, died 1964-06-20) (Gramps ID: I0625) (relation to father: Adopted, relation to mother: Birth)
+- Walter E. Garner (born 1882-02-17, died 1946-10-23) (Gramps ID: I0626)
+- Daniel Webster Garner (born 1883-09-30, died 1936-03-02) (Gramps ID: I0627)
+- Bertha P. Garner (born 1888-03-13, died 1918-04-05) (Gramps ID: I0628)
+- Elizabeth Garner (born 1883) (Gramps ID: I0629)
+
+Type: family
+Gramps ID: F0040
+Relationship type: Married
+Father: Norman Russell (born 1908-04-27) (Gramps ID: I0239)
+Mother: Helen Belle Lessard (born 1908-02-22, died 1997-01-29) (Gramps ID: I0189)
+Marriage: 1928-01-21 in Ottawa, La Salle, IL, USA - Marriage of Russell, Norman and Lessard, Helen Belle
+Children:
+- Melvin Glen Russell (born 1936-09-23) (Gramps ID: I0240)
+- Janet Gail Russell (born 1942-07-23) (Gramps ID: I0241)
+
+Type: family
+Gramps ID: F0160
+Relationship type: Married
+Father: David ĐŃĐșĐŸĐČ (Gramps ID: I0595)
+Mother: Janet Gail Russell (born 1942-07-23) (Gramps ID: I0241)
+Marriage Marriage of ĐŃĐșĐŸĐČ, David and Russell, Janet Gail
+Children:
+- Scott ĐŃĐșĐŸĐČ (Gramps ID: I0620)
+- Curtis Dale ĐŃĐșĐŸĐČ (Gramps ID: I0621)
+
+Type: family
+Gramps ID: F0227
+Relationship type: Married
+Father: Zariakius Cyriacus æè€ (born um 1675, died nach 1748-07-01) (Gramps ID: I0761)
+Mother: Anna Barbara Bishop (born 1664-09-29, died nach 1717) (Gramps ID: I0762)
+Marriage: 1701-03-05 in Houston, Harris, TX, USA - Marriage of æè€, Zariakius Cyriacus and Bishop, Anna Barbara
+Children:
+- Maria Catharina ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ (born 1704-01-26, died 1704-01-26) (Gramps ID: I0764)
+
+Type: family
+Gramps ID: F0228
+Relationship type: Married
+Father: Jacob A. Carroll (born 1705, died 1763) (Gramps ID: I0763)
+Mother: Maria Catharina ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ (born 1704-01-26, died 1704-01-26) (Gramps ID: I0764)
+Marriage Marriage of Carroll, Jacob A. and ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ, Maria Catharina
+Children:
+- Matthias Sr. Carroll (born 1742, died 1817) (Gramps ID: I0605)
+
+Type: family
+Gramps ID: F0249
+Relationship type: Married
+Father: William Boucher (Gramps ID: I0811)
+Mother: Honora Savard (born 1817, died 1902-04-01) (Gramps ID: I0838)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Boucher, William and Savard, Honora
+Children:
+- William Boucher (born 1851-02-07, died 1952-08-02) (Gramps ID: I0812)
+- Catherine Boucher (Gramps ID: I1743)
+- Margaret Boucher (Gramps ID: I1744)
+- Patrick Boucher (Gramps ID: I1745)
+
+Type: family
+Gramps ID: F0203
+Relationship type: Married
+Father: Melvin Patrick (Gramps ID: I0699)
+Mother: Lucille Todd (born 1905-09-05, died 1995-11-29) (Gramps ID: I0698)
+Marriage Marriage of Patrick, Melvin and Todd, Lucille
+Children:
+- Robert Patrick (born 1999-04-18, died 1999-04-18) (Gramps ID: I0700)
+
+Type: family
+Gramps ID: F0497
+Relationship type: Married
+Father: Mr. Gibson (Gramps ID: I1535)
+Mother: Mary James (born 1735, died 1735) (Gramps ID: I1534)
+Marriage Marriage of Gibson, Mr. and James, Mary
+
+Type: family
+Gramps ID: F0519
+Relationship type: Married
+Father: Thomas äžæ (Gramps ID: I1608)
+Mother: Polly Mary Jiménez (born 1788-09-24, died 1788-09-24) (Gramps ID: I1607)
+Marriage: 1806-05-20 - Marriage of äžæ, Thomas and JimĂ©nez, Polly Mary
+
+Type: family
+Gramps ID: F0432
+Relationship type: Married
+Father: Johann Franciskus Beaulieu (born 1745, died 1826) (Gramps ID: I1309)
+Mother: Anna Gertrude Barnett (born 1752, died 1752) (Gramps ID: I1310)
+Marriage Marriage of Beaulieu, Johann Franciskus and Barnett, Anna Gertrude
+
+Type: family
+Gramps ID: F0112
+Relationship type: Married
+Father: James Arthur Thornton (born 1911-07-12, died 1983-12-02) (Gramps ID: I0205)
+Mother: Helen Lachance (born 1912-11-03) (Gramps ID: I0484)
+Marriage: 1945-09-08 - Marriage of Thornton, James Arthur and Lachance, Helen
+Children:
+- Phillip James Thornton (born 1949-06-17) (Gramps ID: I0490)
+
+Type: family
+Gramps ID: F0720
+Relationship type: Married
+Father: William Lapointe (Gramps ID: I1192)
+Children:
+- John Lapointe (Gramps ID: I1174)
+
+Type: family
+Gramps ID: F0522
+Relationship type: Married
+Father: John Jiménez (born 1794-11-05, died 1821-01-28) (Gramps ID: I1614)
+Mother: Mary Palmer (Gramps ID: I1615)
+Marriage: 1818-09-09 - Marriage of Jiménez, John and Palmer, Mary
+
+Type: family
+Gramps ID: F0551
+Relationship type: Married
+Father: Joseph LeRoy Webb (born 1847-10, died 1847-10) (Gramps ID: I1663)
+Mother: Bridget Boucher (born 1850-05-14, died 1922-05-11) (Gramps ID: I0394)
+
+Type: family
+Gramps ID: F0550
+Relationship type: Married
+Father: Charles Day (Gramps ID: I1690)
+Mother: Dot Serrano (Gramps ID: I1689)
+Marriage Marriage of Day, Charles and Serrano, Dot
+
+Type: family
+Gramps ID: F0071
+Relationship type: Married
+Father: Michael Welch (born 1959-03-04) (Gramps ID: I0348)
+Mother: Anita June Osborne (born 1961-06-21) (Gramps ID: I0197)
+Marriage: 1979-06-23 in Kendallville, Noble, IN, USA - Marriage of Welch, Michael and Osborne, Anita June
+Children:
+- Jeremy Quentin Welch (born 1982-08-09) (Gramps ID: I0349)
+
+Type: family
+Gramps ID: F0508
+Relationship type: Married
+Father: Samuel ĐŃĐșĐŸĐČ (Gramps ID: I1565)
+Mother: Nelly Larsen (Gramps ID: I1566)
+Marriage Marriage of ĐŃĐșĐŸĐČ, Samuel and Larsen, Nelly
+
+Type: family
+Gramps ID: F0609
+Relationship type: Married
+Father: Isaac Hunt (Gramps ID: I1905)
+Mother: Nancy Ann ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1904)
+Marriage Marriage of Hunt, Isaac and ĐĐŒĐžŃŃОДĐČ, Nancy Ann
+
+Type: family
+Gramps ID: F0691
+Relationship type: Married
+Father: John Harvey (Gramps ID: I0733)
+Children:
+- Lydia Harvey (Gramps ID: I0734)
+
+Type: family
+Gramps ID: F0381
+Relationship type: Married
+Father: Thomas Kowalski (Gramps ID: I1147)
+Mother: Alice Santos (Gramps ID: I1148)
+Marriage in Decatur, Morgan, AL, USA - Marriage of Kowalski, Thomas and Santos, Alice
+Children:
+- John Kowalski (born 1560, died 1630-08-30) (Gramps ID: I1145)
+
+Type: family
+Gramps ID: F0299
+Relationship type: Married
+Father: Rev.Isaac Schultz (died um 1818) (Gramps ID: I0949)
+Mother: Mary Turner (Gramps ID: I0951)
+Marriage: 5 in Peru, Miami, IN, USA - Marriage of Schultz, Rev.Isaac and Turner, Mary
+Children:
+- John Schultz (died 1860) (Gramps ID: I0100)
+
+Type: family
+Gramps ID: F0468
+Relationship type: Married
+Father: Frank O. Peters (born 1981-06-02, died 1981-06-02) (Gramps ID: I1426)
+Mother: Alta M. Cross (born 1896-07-13, died 1988-05-16) (Gramps ID: I1425)
+Marriage: 1919-08-14 in Brenham, Washington, TX, USA - Marriage of Peters, Frank O. and Cross, Alta M.
+Children:
+- Dorothy Peters (Gramps ID: I1449)
+- Eleanor Peters (Gramps ID: I1451)
+
+Type: family
+Gramps ID: F0475
+Relationship type: Married
+Father: Gross (Gramps ID: I1450)
+Mother: Dorothy Peters (Gramps ID: I1449)
+Marriage Marriage of Gross and Peters, Dorothy
+
+Type: family
+Gramps ID: F0489
+Relationship type: Married
+Father: John Jr. Douglas (born um 1761) (Gramps ID: I0577)
+Mother: Barbara Rogers (born 1759-02-17, died um 1785) (Gramps ID: I1510)
+Marriage Marriage of Douglas, John Jr. and Rogers, Barbara
+
+Type: family
+Gramps ID: F0259
+Relationship type: Married
+Father: Russell Eugene Welch (born 1949-04-08) (Gramps ID: I0855)
+Mother: Dorothy Norton (born 1945-11-25) (Gramps ID: I0856)
+Marriage: 1970-08-15 in Bedford, Lawrence, IN, USA - Marriage of Welch, Russell Eugene and Norton, Dorothy
+
+Type: family
+Gramps ID: F0561
+Relationship type: Married
+Father: Richard Rodriquez (born 1778-07-31, died 1778-07-31) (Gramps ID: I1730)
+Mother: Hannah ĐŃĐșĐŸĐČ (Gramps ID: I1731)
+Marriage: 1806-10-17 in Huntsville, Walker, TX, USA - Marriage of Rodriquez, Richard and ĐŃĐșĐŸĐČ, Hannah
+
+Type: family
+Gramps ID: F0225
+Relationship type: Married
+Father: Thomas Wise (born 1536-06-19, died 1606-10-09) (Gramps ID: I0687)
+Mother: Mary Ramos (born um 1556, died 1588-01-07) (Gramps ID: I0756)
+Marriage: 1575-09-02 in Caguas, PR, USA - Marriage of Wise, Thomas and Ramos, Mary
+Children:
+- Rev. John L. Lefebvre (born 1584-12-20, died 1653-11-03) (Gramps ID: I0532)
+
+Type: family
+Gramps ID: F0379
+Relationship type: Married
+Father: Rev. John L. Lefebvre (born 1584-12-20, died 1653-11-03) (Gramps ID: I0532)
+Mother: Hannah Kowalski (born 1590) (Gramps ID: I1144)
+Marriage: 1610-10-10 in Burlington, Des Moines, IA, USA - Marriage of Lefebvre, Rev. John L. and Kowalski, Hannah
+
+Type: family
+Gramps ID: F0594
+Relationship type: Married
+Father: Michael Reed (Gramps ID: I1858)
+Mother: Alice Goodwin (Gramps ID: I1859)
+Marriage Marriage of Reed, Michael and Goodwin, Alice
+Children:
+- Jenny Reed (Gramps ID: I1860)
+- Jamesy Reed (Gramps ID: I1861)
+- Minnie Reed (Gramps ID: I1862)
+- Kate Reed (Gramps ID: I1864)
+- Michael Reed (Gramps ID: I1865)
+
+Type: family
+Gramps ID: F0393
+Relationship type: Married
+Father: John Reynolds (born um 1566, died um 1566) (Gramps ID: I1171)
+Mother: Elizabeth Stevens (Gramps ID: I1172)
+Marriage: 1588-10-29 - Marriage of Reynolds, John and Stevens, Elizabeth
+Children:
+- John Reynolds (born um 1599) (Gramps ID: I1166)
+
+Type: family
+Gramps ID: F0572
+Relationship type: Married
+Father: Gerry Hart (Gramps ID: I1778)
+Mother: Mary Boucher (born 1963) (Gramps ID: I0829)
+Marriage Marriage of Hart, Gerry and Boucher, Mary
+Children:
+- Laura Hart (Gramps ID: I1779)
+- Raymond Hart (born 1986) (Gramps ID: I1780)
+- Lisa Hart (Gramps ID: I1781)
+- Paul Hart (Gramps ID: I1782)
+
+Type: family
+Gramps ID: F0499
+Relationship type: Married
+Father: Henry Lavoie (Gramps ID: I1549)
+Mother: Patsy James (Gramps ID: I1548)
+Marriage: um 1817 - Marriage of Lavoie, Henry and James, Patsy
+
+Type: family
+Gramps ID: F0645
+Relationship type: Married
+Father: Charles Newton Boyd (born 1868-03-27, died 1920-03-21) (Gramps ID: I1355)
+Mother: Martha Elizabeth Jones (born 1876-08-24, died 1876-08-24) (Gramps ID: I2022)
+Marriage Marriage of Boyd, Charles Newton and Jones, Martha Elizabeth
+
+Type: family
+Gramps ID: F0246
+Relationship type: Married
+Father: Sean Boucher (born 1837) (Gramps ID: I0487)
+Mother: Mary Gardner (Gramps ID: I0836)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Boucher, Sean and Gardner, Mary
+Children:
+- Michael Boucher (born 1883) (Gramps ID: I0488)
+
+Type: family
+Gramps ID: F0488
+Relationship type: Married
+Father: Marshall Alvarado (Gramps ID: I1470)
+Mother: Jane Bouchard (Gramps ID: I1488)
+Marriage Marriage of Alvarado, Marshall and Bouchard, Jane
+
+Type: family
+Gramps ID: F0507
+Relationship type: Married
+Father: George Moore (Gramps ID: I1564)
+Mother: Margaret ĐŃĐșĐŸĐČ (Gramps ID: I1563)
+Marriage Marriage of Moore, George and ĐŃĐșĐŸĐČ, Margaret
+
+Type: family
+Gramps ID: F0093
+Relationship type: Married
+Father: James Richard Cruz (born 1950-04-11) (Gramps ID: I0221)
+Mother: Penelope Margot Morales (born 1952-12-20) (Gramps ID: I0430)
+Marriage: 1982-04-24 - Marriage of Cruz, James Richard and Morales, Penelope Margot
+Children:
+- Jesse Christopher Cruz (born 1990-12-29) (Gramps ID: I0485)
+
+Type: family
+Gramps ID: F0184
+Relationship type: Married
+Father: James BĂ©langer (born 1916-04-06, died 1964-07-02) (Gramps ID: I0640)
+Mother: Bernetha Ellen Garner (born 1912-10-21) (Gramps ID: I0633)
+Marriage: 1938-02-11 - Marriage of BĂ©langer, James and Garner, Bernetha Ellen
+Children:
+- Linda Ellen BĂ©langer (born 1940-12-30) (Gramps ID: I0666)
+- Pamela Ann BĂ©langer (born 1946-03-10) (Gramps ID: I0668)
+
+Type: family
+Gramps ID: F0355
+Relationship type: Married
+Father: Ezekiel Ball (Gramps ID: I0558)
+Mother: Reese (died vor 1750) (Gramps ID: I0458)
+Marriage: 1727 in Mooresville, NC, USA - Marriage of Ball, Ezekiel and Reese
+Children:
+- Thomas Ball (born 1728-04-18, died 1728-04-18) (Gramps ID: I0565)
+
+Type: family
+Gramps ID: F0145
+Relationship type: Married
+Father: Thomas Ball (born 1728-04-18, died 1728-04-18) (Gramps ID: I0565)
+Mother: Mary КаЎŃĐžĐœ (born 1734-09-04, died 1734-09-04) (Gramps ID: I0564)
+Marriage Marriage of Ball, Thomas and КаЎŃĐžĐœ, Mary
+Children:
+- Matthias Sr. Ball (born 1767-03-11, died 1848-01-22) (Gramps ID: I0568)
+
+Type: family
+Gramps ID: F0680
+Relationship type: Married
+Father: Edward Maldonado (Gramps ID: I0514)
+Children:
+- Eunice Maldonado (born 1759-11-09) (Gramps ID: I0513)
+
+Type: family
+Gramps ID: F0440
+Relationship type: Married
+Father: Hans Valentin LĂłpez (Gramps ID: I1328)
+Mother: Anna Ottilia Beaulieu (born 1722, died 1793) (Gramps ID: I1327)
+Marriage Marriage of LĂłpez, Hans Valentin and Beaulieu, Anna Ottilia
+
+Type: family
+Gramps ID: F0613
+Relationship type: Married
+Father: William Petersen (Gramps ID: I1913)
+Mother: Margaret Jane ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1912)
+Marriage: 1803-02-19 in Steubenville, OH, USA - Marriage of Petersen, William and ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+
+Type: family
+Gramps ID: F0421
+Relationship type: Married
+Father: new Thomsen (Gramps ID: I1286)
+Mother: Elizabeth Farmer (Gramps ID: I1285)
+Marriage Marriage of Thomsen, new and Farmer, Elizabeth
+
+Type: family
+Gramps ID: F0633
+Relationship type: Married
+Father: Prince Alfred Roy (Gramps ID: I1986)
+Mother: Frances Coppage MarĂn (born 1813-03-25, died 1891-10-01) (Gramps ID: I1985)
+Marriage: 1833-09-19 in De Ridder, LA, USA - Marriage of Roy, Prince Alfred and MarĂn, Frances Coppage
+Children:
+- John Franklin Nadeau (Gramps ID: I1987)
+
+Type: family
+Gramps ID: F0717
+Relationship type: Married
+Father: Walter Guerrero (Gramps ID: I1159)
+Children:
+- Walter Guerrero (born um 1350, died um 1350) (Gramps ID: I1158)
+
+Type: family
+Gramps ID: F0153
+Relationship type: Married
+Father: George W. Todd (born 1820-01-02, died 1895-02-16) (Gramps ID: I0083)
+Mother: Jane Morris (born 1822-11-20, died 1877-04-23) (Gramps ID: I0084)
+Marriage: 1843-09-20 in Kendallville, Noble, IN, USA - Marriage of Todd, George W. and Morris, Jane
+Children:
+- John M. Todd (born 1851-06-07, died 1921-02-23) (Gramps ID: I0085)
+
+Type: family
+Gramps ID: F0013
+Relationship type: Married
+Father: Carl Tolbert Lessard (born 1904-07-30, died 1985-07-04) (Gramps ID: I0035)
+Mother: Luella Florence Webb (born 1906-11-07, died 1986-10-08) (Gramps ID: I0036)
+Marriage: 1925-09-16 in Worthington, MN, USA - Marriage of Lessard, Carl Tolbert and Webb, Luella Florence
+Children:
+- Elinor Jane Lessard (born 1931-07-10) (Gramps ID: I0008)
+- Dorothy Louise Lessard (born 1926-09-29) (Gramps ID: I0132)
+- Mary Alice Lessard (born 1937-01-17) (Gramps ID: I0133)
+
+Type: family
+Gramps ID: F0427
+Relationship type: Married
+Father: George Patterson (Gramps ID: I1299)
+Mother: Elizabeth Farmer (born 1792, died 1792) (Gramps ID: I1298)
+Marriage Marriage of Patterson, George and Farmer, Elizabeth
+
+Type: family
+Gramps ID: F0255
+Relationship type: Married
+Father: Yelverton Green (born 1683-10-24, died 1683-10-24) (Gramps ID: I0848)
+Mother: Elizabeth Robertson (born 1703-10-24, died 1703-10-24) (Gramps ID: I0849)
+Marriage Marriage of Green, Yelverton and Robertson, Elizabeth
+Children:
+- Edward Green (died 1688-07-31) (Gramps ID: I0535)
+
+Type: family
+Gramps ID: F0287
+Relationship type: Married
+Father: Hans(Johannes) Blanco (born 1680-03-28) (Gramps ID: I0931)
+Mother: Anna Sullivan (born 1691, died 1691) (Gramps ID: I0932)
+Marriage in Watertown-Fort Drum, NY, USA - Marriage of Blanco, Hans(Johannes) and Sullivan, Anna
+Children:
+- Gerhard Blanco (born 1718-01-27, died 1783-04-26) (Gramps ID: I0915)
+
+Type: family
+Gramps ID: F0239
+Relationship type: Married
+Father: Remo Lane (died 1919-01-19) (Gramps ID: I0792)
+Mother: Ernestina Barnes (died 1965-04-15) (Gramps ID: I0793)
+Marriage in Barnstable Town, MA, USA - Marriage of Lane, Remo and Barnes, Ernestina
+Children:
+- Joseph Robert Lane (born 1908-12-13, died 1988-12-27) (Gramps ID: I0208)
+
+Type: family
+Gramps ID: F0049
+Relationship type: Married
+Father: Joseph Robert Lane (born 1908-12-13, died 1988-12-27) (Gramps ID: I0208)
+Mother: Dorothy Eleanor Thornton (born 1913-02-20) (Gramps ID: I0207)
+Marriage: 1937-09-11 in Midland, MI, USA - Marriage of Lane, Joseph Robert and Thornton, Dorothy Eleanor
+Children:
+- Joseph Edward Lane (born 1943-10-10) (Gramps ID: I0209)
+
+Type: family
+Gramps ID: F0486
+Relationship type: Married
+Father: William Alvarado (Gramps ID: I1468)
+Mother: Martha Moody (Gramps ID: I1486)
+Marriage Marriage of Alvarado, William and Moody, Martha
+
+Type: family
+Gramps ID: F0685
+Relationship type: Married
+Father: P.D. Meyer (Gramps ID: I0600)
+Children:
+- Catherine Meyer (born 1825-06-19, died 1911-01-30) (Gramps ID: I0102)
+
+Type: family
+Gramps ID: F0570
+Relationship type: Married
+Father: Tony Brady (Gramps ID: I1770)
+Mother: Bridget Boucher (born 1965) (Gramps ID: I0831)
+Marriage Marriage of Brady, Tony and Boucher, Bridget
+Children:
+- Roisin Brady (born 1988) (Gramps ID: I1771)
+- Aidinn Brady (Gramps ID: I1772)
+- Enda Brady (Gramps ID: I1773)
+
+Type: family
+Gramps ID: F0528
+Relationship type: Married
+Father: John H. Nowak (Gramps ID: I1632)
+Mother: Eleanor Maude Page (born 1883-10-04) (Gramps ID: I0195)
+Marriage Marriage of Nowak, John H. and Page, Eleanor Maude
+
+Type: family
+Gramps ID: F0590
+Relationship type: Married
+Father: ĐĐ°ŃŃŃĐœĐŸĐČ (Gramps ID: I1834)
+Mother: Jane Reed (born um 1898, died 1976-02-25) (Gramps ID: I1833)
+Marriage Marriage of ĐĐ°ŃŃŃĐœĐŸĐČ and Reed, Jane
+
+Type: family
+Gramps ID: F0733
+Relationship type: Married
+Father: Patrick Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1835)
+Children:
+- Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1836)
+- Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1837)
+- Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1838)
+
+Type: family
+Gramps ID: F0437
+Relationship type: Married
+Father: Jakob Hardy (born 1705, died 1705) (Gramps ID: I1322)
+Mother: Anna Maria Beaulieu (born 1715, died 1762) (Gramps ID: I1321)
+Marriage Marriage of Hardy, Jakob and Beaulieu, Anna Maria
+
+Type: family
+Gramps ID: F0087
+Relationship type: Married
+Father: Paul Mcbride (born 1954-05-22) (Gramps ID: I0417)
+Mother: Barbara Joanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (born 1955-04-30) (Gramps ID: I0170)
+Marriage: 1988-09-17 in Morehead City, NC, USA - Marriage of Mcbride, Paul and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Barbara Joanne
+
+Type: family
+Gramps ID: F0610
+Relationship type: Married
+Father: Travis ĐĐŒĐžŃŃОДĐČ (born 1767-09-12) (Gramps ID: I1906)
+Mother: Elizabeth Payne (born 1772-08-08) (Gramps ID: I1907)
+Marriage Marriage of ĐĐŒĐžŃŃОДĐČ, Travis and Payne, Elizabeth
+
+Type: family
+Gramps ID: F0156
+Relationship type: Married
+Father: Hodges Todd (born 1699, died 1699) (Gramps ID: I0073)
+Mother: Lucy Piotrowski (Gramps ID: I0074)
+Marriage Marriage of Todd, Hodges and Piotrowski, Lucy
+Children:
+- Hardy Todd (born 1678, died 1750) (Gramps ID: I0075)
+
+Type: family
+Gramps ID: F0615
+Relationship type: Married
+Father: Robert Gove Doyle (born 1773-09-21, died 1773-09-21) (Gramps ID: I1917)
+Mother: Mary Polly Diaz (died 1822) (Gramps ID: I1916)
+Marriage: 1796-03-14 in Union City, TN, USA - Marriage of Doyle, Robert Gove and Diaz, Mary Polly
+
+Type: family
+Gramps ID: F0410
+Relationship type: Married
+Father: John Waters (Gramps ID: I1224)
+Mother: Mary Webb (born 1803, died 1803) (Gramps ID: I1223)
+Marriage Marriage of Waters, John and Webb, Mary
+
+Type: family
+Gramps ID: F0577
+Relationship type: Married
+Father: Francis McCoy (born 1890-05-23, died 1962-05-19) (Gramps ID: I1801)
+Mother: Sarah Reed (born 1906-04, died 1984-05-12) (Gramps ID: I1802)
+Marriage: um 1939 in Lima, OH, USA - Marriage of McCoy, Francis and Reed, Sarah
+Children:
+- Thomas Michael McCoy (born 1940-07-06) (Gramps ID: I1791)
+- Ann McCoy (Gramps ID: I1840)
+- Francis McCoy (Gramps ID: I1841)
+
+Type: family
+Gramps ID: F0716
+Relationship type: Married
+Father: Walter Guerrero (born um 1350, died um 1350) (Gramps ID: I1158)
+Children:
+- Walter Guerrero (born um 1380, died um 1380) (Gramps ID: I1157)
+
+Type: family
+Gramps ID: F0715
+Relationship type: Married
+Father: Walter Guerrero (born um 1380, died um 1380) (Gramps ID: I1157)
+Children:
+- Robert Guerrero (born um 1405, died um 1405) (Gramps ID: I1156)
+
+Type: family
+Gramps ID: F0343
+Relationship type: Married
+Father: Michael Stanley Garner (born 1948-06-12) (Gramps ID: I0178)
+Mother: Sharon Gibbs (Gramps ID: I1051)
+Marriage: 1970-08-08 - Marriage of Garner, Michael Stanley and Gibbs, Sharon
+Children:
+- Michael Christopher Garner (born 1975-06-01) (Gramps ID: I1052)
+- Megan Ann Garner (born 1978-07-17) (Gramps ID: I1053)
+
+Type: family
+Gramps ID: F0428
+Relationship type: Married
+Father: George Butler (Gramps ID: I1301)
+Mother: Eva Farmer (born 1796, died 1883) (Gramps ID: I1300)
+Marriage Marriage of Butler, George and Farmer, Eva
+
+Type: family
+Gramps ID: F0621
+Relationship type: Married
+Father: J. Terry (Gramps ID: I1935)
+Mother: Bridget Reeves (Gramps ID: I1934)
+Marriage Marriage of Terry, J. and Reeves, Bridget
+
+Type: family
+Gramps ID: F0307
+Relationship type: Married
+Father: Henry Martel (born 1805-10-27, died 1902-01-18) (Gramps ID: I0975)
+Mother: Ruth Ann HĂ©bert (died 1843) (Gramps ID: I0976)
+Marriage: 1840-04-04 - Marriage of Martel, Henry and HĂ©bert, Ruth Ann
+Children:
+- Luella Jacques Martel (born 1852-01-23, died 1921-04-28) (Gramps ID: I0045)
+
+Type: family
+Gramps ID: F0636
+Relationship type: Married
+Father: John Allen (born 1674-05-24, died 1727) (Gramps ID: I1999)
+Mother: Mary (Hannah?) Dennis (Gramps ID: I2000)
+Marriage: um 1695 in Topeka, Shawnee, KS, USA - Marriage of Allen, John and Dennis, Mary (Hannah?)
+
+Type: family
+Gramps ID: F0547
+Relationship type: Married
+Father: Peter Blanco (Gramps ID: I1675)
+Mother: Catherine Leonard (Gramps ID: I1676)
+Marriage Marriage of Blanco, Peter and Leonard, Catherine
+
+Type: family
+Gramps ID: F0597
+Relationship type: Married
+Father: Johnston (Gramps ID: I1871)
+Mother: Jean Sandoval (Gramps ID: I1870)
+Marriage Marriage of Johnston and Sandoval, Jean
+
+Type: family
+Gramps ID: F0580
+Relationship type: Married
+Father: Valdez (Gramps ID: I1813)
+Mother: Noreen Reed (born 1934-07) (Gramps ID: I1812)
+Marriage Marriage of Valdez and Reed, Noreen
+
+Type: family
+Gramps ID: F0370
+Relationship type: Married
+Father: Frank R. Parker (Gramps ID: I1127)
+Mother: Anetta Garner (born 1870-06-13, died 1900-10-04) (Gramps ID: I1126)
+Marriage: 1888-08-23 in Centralia, WA, USA - Marriage of Parker, Frank R. and Garner, Anetta
+
+Type: family
+Gramps ID: F0586
+Relationship type: Married
+Father: Martinez (Gramps ID: I1826)
+Mother: Catherine Reed (born um 1901, died 1994-05-02) (Gramps ID: I1825)
+Marriage Marriage of Martinez and Reed, Catherine
+
+Type: family
+Gramps ID: F0505
+Relationship type: Married
+Father: Philip Taylor (Gramps ID: I1560)
+Mother: Harriet ĐŃĐșĐŸĐČ (Gramps ID: I1559)
+Marriage Marriage of Taylor, Philip and ĐŃĐșĐŸĐČ, Harriet
+
+Type: family
+Gramps ID: F0672
+Relationship type: Married
+Father: Esau Moreno (born 1790-01-17, died 1790-01-17) (Gramps ID: I2100)
+Mother: Mary E. Caron (Gramps ID: I2101)
+Marriage Marriage of Moreno, Esau and Caron, Mary E.
+Children:
+- Mary Ann Moreno (Gramps ID: I2102)
+
+Type: family
+Gramps ID: F0006
+Relationship type: Married
+Father: David Fox (born 1798-07-22, died 1868-07-31) (Gramps ID: I0025)
+Mother: Frances Green (born 1804-07-22, died 1886-07-31) (Gramps ID: I0026)
+Marriage: 1823-01-09 - Marriage of Fox, David and Green, Frances
+Children:
+- Julia Colville Fox (born 1823-12-25, died 1904-02-12) (Gramps ID: I0032)
+
+Type: family
+Gramps ID: F0540
+Relationship type: Married
+Father: Mr. Grabowski (Gramps ID: I1656)
+Mother: Lola Waters (Gramps ID: I1655)
+Marriage Marriage of Grabowski, Mr. and Waters, Lola
+
+Type: family
+Gramps ID: F0490
+Relationship type: Married
+Father: Thomas HernĂĄndez (Gramps ID: I1511)
+Mother: Elizabeth Douglas (born 1808-09-20, died 1808-09-20) (Gramps ID: I1489)
+Marriage Marriage of HernĂĄndez, Thomas and Douglas, Elizabeth
+
+Type: family
+Gramps ID: F0714
+Relationship type: Married
+Father: Robert Guerrero (born um 1405, died um 1405) (Gramps ID: I1156)
+Children:
+- Robert Guerrero (born 1430, died 1430) (Gramps ID: I1155)
+
+Type: family
+Gramps ID: F0476
+Relationship type: Married
+Father: John Neal (born 1872-09-11, died 1928-12-26) (Gramps ID: I1381)
+Mother: Belle Irene Schneider (born 1885-02-14, died 1960-10-11) (Gramps ID: I1452)
+Marriage: 1904-02-17 in Farmington, NM, USA - Marriage of Neal, John and Schneider, Belle Irene
+Children:
+- Helen M. Neal (born 1916-08-30, died 1916-08-30) (Gramps ID: I1453)
+
+Type: family
+Gramps ID: F0425
+Relationship type: Married
+Father: Jacob Dubé (Gramps ID: I1295)
+Mother: Anna Marie Farmer (born 1786, died 1786) (Gramps ID: I1294)
+Marriage Marriage of Dubé, Jacob and Farmer, Anna Marie
+
+Type: family
+Gramps ID: F0208
+Relationship type: Married
+Father: John Roger Garner (born 1925-10-29) (Gramps ID: I0136)
+Mother: Violet Louise ĐŃŃŃ
Đ°ĐœĐŸĐČ (born 1915-09-28) (Gramps ID: I0676)
+Marriage: 1961-10-07 in Ottawa, La Salle, IL, USA - Marriage of Garner, John Roger and ĐŃŃŃ
Đ°ĐœĐŸĐČ, Violet Louise
+
+Type: family
+Gramps ID: F0600
+Relationship type: Married
+Father: Love (Gramps ID: I1878)
+Mother: Carmel Reed (Gramps ID: I1877)
+Marriage Marriage of Love and Reed, Carmel
+
+Type: family
+Gramps ID: F0732
+Relationship type: Married
+Father: John Boucher (Gramps ID: I1760)
+Children:
+- woman Boucher (Gramps ID: I1761)
+
+Type: family
+Gramps ID: F0549
+Relationship type: Married
+Father: Roy Hammond (Gramps ID: I1688)
+Mother: Carrie Serrano (Gramps ID: I1687)
+Marriage Marriage of Hammond, Roy and Serrano, Carrie
+
+Type: family
+Gramps ID: F0494
+Relationship type: Married
+Father: William ĐĐœĐŽŃДДĐČ (Gramps ID: I1518)
+Mother: Susan Douglas (born 1836-12-01, died 1836-12-01) (Gramps ID: I1497)
+Marriage Marriage of ĐĐœĐŽŃДДĐČ, William and Douglas, Susan
+
+Type: family
+Gramps ID: F0060
+Relationship type: Married
+Father: Ivan Wayne Cruz (born 1925-02-14) (Gramps ID: I0222)
+Mother: Bettie Lou Gagnon (born 1923-10-22) (Gramps ID: I0223)
+Marriage: 1944-12-24 in Fostoria, OH, USA - Marriage of Cruz, Ivan Wayne and Gagnon, Bettie Lou
+Children:
+- David Wayne Cruz (born 1948-01-25) (Gramps ID: I0224)
+- Melinda Lou Cruz (born 1956-12-18) (Gramps ID: I0367)
+
+Type: family
+Gramps ID: F0270
+Relationship type: Married
+Father: ??? Lessard (Gramps ID: I0887)
+Mother: ??? Castro (Gramps ID: I0888)
+Marriage Marriage of Lessard, ??? and Castro, ???
+
+Type: family
+Gramps ID: F0539
+Relationship type: Married
+Father: Mr. ć°æ (Gramps ID: I1654)
+Mother: Nellie Waters (Gramps ID: I1653)
+Marriage Marriage of ć°æ, Mr. and Waters, Nellie
+
+Type: family
+Gramps ID: F0406
+Relationship type: Married
+Father: Thomas James Garner (born 1965-12-10) (Gramps ID: I0019)
+Mother: Holly Ruth ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1215)
+Marriage: 1997-07-07 in Blacksburg, VA, USA - Marriage of Garner, Thomas James and ĐĄĐŸŃĐŸĐșĐžĐœ, Holly Ruth
+Children:
+- Alecia "Allie" Clare Garner (born 1997-12-26) (Gramps ID: I1335)
+
+Type: family
+Gramps ID: F0086
+Relationship type: Married
+Father: Lawrence Gill (Gramps ID: I0411)
+Mother: Joan Lorinda Webb (born 1946-10-29) (Gramps ID: I0368)
+Marriage: vor 1967 in Ottawa, La Salle, IL, USA - Marriage of Gill, Lawrence and Webb, Joan Lorinda
+Children:
+- Lawrence Gill (born 1968-10-26) (Gramps ID: I0412)
+- Lorie Ann Gill (born um 1967) (Gramps ID: I0413)
+
+Type: family
+Gramps ID: F0553
+Relationship type: Married
+Father: Phillip D. Ford (Gramps ID: I1705)
+Mother: Joan Lorinda Webb (born 1946-10-29) (Gramps ID: I0368)
+Marriage: 1993-02-06 in Southern Pines, NC, USA - Marriage of Ford, Phillip D. and Webb, Joan Lorinda
+
+Type: family
+Gramps ID: F0426
+Relationship type: Married
+Father: Peter Simon Farmer (born 1790, died 1845) (Gramps ID: I1296)
+Mother: Elizabeth Bowen (Gramps ID: I1297)
+Marriage Marriage of Farmer, Peter Simon and Bowen, Elizabeth
+
+Type: family
+Gramps ID: F0221
+Relationship type: Married
+Father: John Christiansen (born 1662-02-01, died 1727) (Gramps ID: I0748)
+Mother: Martha Harmon (born 1671, died 1671) (Gramps ID: I0749)
+Marriage: 1681 in Poplar Bluff, MO, USA - Marriage of Christiansen, John and Harmon, Martha
+Children:
+- Martha Christiansen (born 1693-04-25, died 1766-04-18) (Gramps ID: I0681)
+
+Type: family
+Gramps ID: F0624
+Relationship type: Married
+Father: John Reeves (Gramps ID: I1940)
+Mother: Mary A. Flowers (Gramps ID: I1941)
+Marriage: 1877-08-01 - Marriage of Reeves, John and Flowers, Mary A.
+
+Type: family
+Gramps ID: F0627
+Relationship type: Married
+Father: Daniel Warner (born 1682-12-05, died 1682-12-05) (Gramps ID: I1948)
+Mother: Charity Higgins (born um 1682, died um 1682) (Gramps ID: I1949)
+Marriage Marriage of Warner, Daniel and Higgins, Charity
+
+Type: family
+Gramps ID: F0628
+Relationship type: Married
+Father: Trustum ĐДбДЎДĐČ (Gramps ID: I1952)
+Mother: Johanna Warner (Gramps ID: I1951)
+Marriage Marriage of ĐДбДЎДĐČ, Trustum and Warner, Johanna
+
+Type: family
+Gramps ID: F0644
+Relationship type: Married
+Father: Gershom Allen (born um 1685, died um 1711) (Gramps ID: I2017)
+Mother: Ann Kennedy (Gramps ID: I2018)
+Marriage: um 1705 in Topeka, Shawnee, KS, USA - Marriage of Allen, Gershom and Kennedy, Ann
+
+Type: family
+Gramps ID: F0466
+Relationship type: Married
+Father: Daniels (Gramps ID: I1422)
+Mother: Edith (Dolly) Page (Gramps ID: I1421)
+Marriage Marriage of Daniels and Page, Edith (Dolly)
+
+Type: family
+Gramps ID: F0721
+Relationship type: Married
+Father: Sir Thomas Lapointe (Gramps ID: I1193)
+Children:
+- William Lapointe (Gramps ID: I1192)
+
+Type: family
+Gramps ID: F0105
+Relationship type: Married
+Father: George Blake (born 1806-07-11, died 1885-06-27) (Gramps ID: I0463)
+Mother: Sally Sarah Cunningham (born 1805-09-25, died 1867-02-19) (Gramps ID: I0464)
+Marriage: 1831-12-15 - Marriage of Blake, George and Cunningham, Sally Sarah
+Children:
+- M. Susannah Blake (born 1832-09-05, died 1921-05-25) (Gramps ID: I0067)
+
+Type: family
+Gramps ID: F0533
+Relationship type: Married
+Father: Thomas James (Gramps ID: I1545)
+Mother: Betsy Parent (Gramps ID: I1646)
+Marriage Marriage of James, Thomas and Parent, Betsy
+
+Type: family
+Gramps ID: F0297
+Relationship type: Married
+Father: Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (born 1690-02-23, died 1750-12-25) (Gramps ID: I0946)
+Mother: Anna Catherina Reid (born 1694-02-04, died 1740-11-20) (Gramps ID: I0947)
+Marriage: 1715-12-09 - Marriage of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob and Reid, Anna Catherina
+Children:
+- Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ (born 1717-01-26, died 1788-04-20) (Gramps ID: I0916)
+
+Type: family
+Gramps ID: F0308
+Relationship type: Married
+Father: Curtis Dale ĐŃĐșĐŸĐČ (Gramps ID: I0621)
+Mother: Heather Kathleen Gordon (Gramps ID: I0978)
+Marriage: 1993-11-27 in Merrill, WI, USA - Marriage of ĐŃĐșĐŸĐČ, Curtis Dale and Gordon, Heather Kathleen
+
+Type: family
+Gramps ID: F0473
+Relationship type: Married
+Father: Cecil Glenn Waters (born 1940) (Gramps ID: I1441)
+Mother: Donna Hubbard (Gramps ID: I1443)
+Marriage Marriage of Waters, Cecil Glenn and Hubbard, Donna
+Children:
+- Randy Waters (Gramps ID: I1444)
+- Debby Waters (Gramps ID: I1445)
+
+Type: family
+Gramps ID: F0681
+Relationship type: Married
+Father: Edward Christiansen (born um 1583, died 1614) (Gramps ID: I0525)
+Children:
+- Edward Christiansen (born 1607, died 1684) (Gramps ID: I0526)
+
+Type: family
+Gramps ID: F0656
+Relationship type: Married
+Father: Waters (Gramps ID: I2045)
+Mother: Mary Webb (born 1827-01-31, died 1827-01-31) (Gramps ID: I1228)
+Marriage Marriage of Waters and Webb, Mary
+
+Type: family
+Gramps ID: F0119
+Relationship type: Married
+Father: Andrew Warner (born 1740-08-15, died 1827-10-14) (Gramps ID: I0512)
+Mother: Eunice Maldonado (born 1759-11-09) (Gramps ID: I0513)
+Marriage: 1778-11-15 - Marriage of Warner, Andrew and Maldonado, Eunice
+Children:
+- Noah Warner (born 1779-09-24, died 1844-06-14) (Gramps ID: I0023)
+
+Type: family
+Gramps ID: F0360
+Relationship type: Married
+Father: Jeffery Alvarado (born 1955-04-15) (Gramps ID: I1088)
+Mother: Patti Jo Cruz (born 1959-08-14) (Gramps ID: I0438)
+Marriage: 1995-03-11 in Utica-Rome, NY, USA - Marriage of Alvarado, Jeffery and Cruz, Patti Jo
+
+Type: family
+Gramps ID: F0511
+Relationship type: Married
+Father: John W. Bergeron (Gramps ID: I1572)
+Mother: Bettie ĐŃĐșĐŸĐČ (Gramps ID: I1571)
+Marriage Marriage of Bergeron, John W. and ĐŃĐșĐŸĐČ, Bettie
+
+Type: family
+Gramps ID: F0678
+Relationship type: Married
+Father: Lawrence Gill (born 1968-10-26) (Gramps ID: I0412)
+Children:
+- Avery Gill (Gramps ID: I1977)
+
+Type: family
+Gramps ID: F0364
+Relationship type: Married
+Father: Daniel Webster Garner (born 1883-09-30, died 1936-03-02) (Gramps ID: I0627)
+Mother: Cora Ellen Jackson (Gramps ID: I1107)
+Marriage: 1907-06-02 - Marriage of Garner, Daniel Webster and Jackson, Cora Ellen
+
+Type: family
+Gramps ID: F0740
+Relationship type: Married
+Father: William Norris (born um 1600, died um 1600) (Gramps ID: I1994)
+Children:
+- John Norris (born 1633-09-08, died 1712-08-27) (Gramps ID: I0750)
+
+Type: family
+Gramps ID: F0545
+Relationship type: Married
+Father: Joseph Serrano (Gramps ID: I1669)
+Mother: Elizabeth Marium Quinn (born 1867-02-24) (Gramps ID: I1671)
+Marriage Marriage of Serrano, Joseph and Quinn, Elizabeth Marium
+Children:
+- Abraham Serrano (Gramps ID: I1672)
+- Carrie Serrano (Gramps ID: I1687)
+- Dot Serrano (Gramps ID: I1689)
+
+Type: family
+Gramps ID: F0736
+Relationship type: Married
+Father: John Joe Sandoval (Gramps ID: I1869)
+Children:
+- Sean Sandoval (Gramps ID: I1872)
+
+Type: family
+Gramps ID: F0518
+Relationship type: Married
+Father: Henry Floyd (Gramps ID: I1606)
+Mother: Nancy Benson (Gramps ID: I1605)
+Marriage Marriage of Floyd, Henry and Benson, Nancy
+
+Type: family
+Gramps ID: F0159
+Relationship type: Married
+Father: Raymond Patrick CÎté (born 1964-12-12) (Gramps ID: I0593)
+Mother: Beth Ann Russell (born 1968-02-15) (Gramps ID: I0591)
+Marriage: 1991-08-24 in Salt Lake City, UT, USA - Marriage of CÎté, Raymond Patrick and Russell, Beth Ann
+
+Type: family
+Gramps ID: F0349
+Relationship type: Married
+Father: Mark Gerard Garner (born 1962-10-16) (Gramps ID: I0185)
+Mother: Lori Gibbs (Gramps ID: I1071)
+Marriage: 1991-12-02 - Marriage of Garner, Mark Gerard and Gibbs, Lori
+
+Type: family
+Gramps ID: F0118
+Relationship type: Married
+Father: Thomas W. Boucher (born 1888-12-06, died 1942-04-02) (Gramps ID: I0376)
+Mother: Mary SzymaĆski (Gramps ID: I0504)
+Marriage Marriage of Boucher, Thomas W. and SzymaĆski, Mary
+Children:
+- Francis Boucher (Gramps ID: I0505)
+
+Type: family
+Gramps ID: F0688
+Relationship type: Married
+Father: Mathew Keller (Gramps ID: I0724)
+Children:
+- ????? Keller (Gramps ID: I0726)
+
+Type: family
+Gramps ID: F0658
+Relationship type: Married
+Father: GonzĂĄlez (Gramps ID: I2047)
+Mother: Martha Ball (born 1852-03-02, died 1852-03-02) (Gramps ID: I1968)
+Marriage Marriage of GonzĂĄlez and Ball, Martha
+
+Type: family
+Gramps ID: F0276
+Relationship type: Married
+Father: Merrick Cobb (Gramps ID: I0903)
+Mother: Cynthia Louise Boucher (born 1961-12-05) (Gramps ID: I0902)
+Marriage Marriage of Cobb, Merrick and Boucher, Cynthia Louise
+
+Type: family
+Gramps ID: F0157
+Relationship type: Married
+Father: William Todd (born 1790-10-01, died 1846-07-08) (Gramps ID: I0081)
+Mother: Mary (Polly) æžĄèŸș (born 1802-06-15, died 1869-01-25) (Gramps ID: I0082)
+Marriage: 1819 in Pocatello, Bannock, ID, USA - Marriage of Todd, William and æžĄèŸș, Mary (Polly)
+Children:
+- George W. Todd (born 1820-01-02, died 1895-02-16) (Gramps ID: I0083)
+
+Type: family
+Gramps ID: F0514
+Relationship type: Married
+Father: Hugh Benson (Gramps ID: I1596)
+Mother: Rebecca Ouellet (Gramps ID: I1597)
+Marriage Marriage of Benson, Hugh and Ouellet, Rebecca
+
+Type: family
+Gramps ID: F0164
+Relationship type: Married
+Father: John S. Floyd (born 1802, died 1893) (Gramps ID: I0251)
+Mother: Mary Coleman (born 1812) (Gramps ID: I0252)
+Marriage: 1830-12-10 in Coeur d'Alene, Kootenai, ID, USA - Marriage of Floyd, John S. and Coleman, Mary
+Children:
+- Martha Frances "Fannie" Floyd (born 1843-05-13, died 1913-04-17) (Gramps ID: I0094)
+- Sarah (Sally) Floyd (Gramps ID: I0406)
+
+Type: family
+Gramps ID: F0622
+Relationship type: Married
+Father: Thomas Gagné (born vor 1901, died vor 1901) (Gramps ID: I1937)
+Mother: Ann Reeves (born nach 1901, died nach 1901) (Gramps ID: I1936)
+Marriage Marriage of Gagné, Thomas and Reeves, Ann
+
+Type: family
+Gramps ID: F0460
+Relationship type: Married
+Father: Ernest Romero (Gramps ID: I1405)
+Mother: Minnie Jankowski (born 1892-05-24, died 1984-01-08) (Gramps ID: I1404)
+Marriage Marriage of Romero, Ernest and Jankowski, Minnie
+
+Type: family
+Gramps ID: F0582
+Relationship type: Married
+Father: ĐДлŃĐ”ĐČ (Gramps ID: I1815)
+Mother: Peggy Reed (born 1936-07) (Gramps ID: I1810)
+Marriage Marriage of ĐДлŃĐ”ĐČ and Reed, Peggy
+
+Type: family
+Gramps ID: F0640
+Relationship type: Married
+Father: Thomas ĐĐŸĐČĐžĐșĐŸĐČ (Gramps ID: I2009)
+Mother: Rachel Allen (born 1696-05-12, died 1747) (Gramps ID: I2008)
+Marriage: um 1715 in Topeka, Shawnee, KS, USA - Marriage of ĐĐŸĐČĐžĐșĐŸĐČ, Thomas and Allen, Rachel
+
+Type: family
+Gramps ID: F0378
+Relationship type: Married
+Father: John Reed (born 1844-05-19, died 1926-03-28) (Gramps ID: I0706)
+Mother: Margaret Bernier (born 1922-12-30, died 1922-12-30) (Gramps ID: I1142)
+Marriage: 1870-05-24 - Marriage of Reed, John and Bernier, Margaret
+
+Type: family
+Gramps ID: F0453
+Relationship type: Married
+Father: Schneider (Gramps ID: I1383)
+Mother: Margaret Neal (Gramps ID: I1382)
+Marriage Marriage of Schneider and Neal, Margaret
+
+Type: family
+Gramps ID: F0234
+Relationship type: Married
+Father: David Lee Fitzgerald (Gramps ID: I0784)
+Mother: Donna Elaine ĐĐŸĐżĐ°ŃĐžĐœ (born 1949-05-18) (Gramps ID: I0233)
+Marriage in Fairmont, MN, USA - Marriage of Fitzgerald, David Lee and ĐĐŸĐżĐ°ŃĐžĐœ, Donna Elaine
+
+Type: family
+Gramps ID: F0558
+Relationship type: Married
+Father: John Cook (Gramps ID: I1724)
+Mother: Mary Rodriquez (born 1770-03-03, died 1770-03-03) (Gramps ID: I1723)
+Marriage: 1798-05-31 in Duluth, MN, USA - Marriage of Cook, John and Rodriquez, Mary
+
+Type: family
+Gramps ID: F0726
+Relationship type: Married
+Father: Joseph Serrano (born 1834-04-03, died 1899-11-02) (Gramps ID: I1668)
+Children:
+- Joseph Serrano (Gramps ID: I1669)
+
+Type: family
+Gramps ID: F0285
+Relationship type: Married
+Father: John Sr. Blanco (born um 1779) (Gramps ID: I0919)
+Mother: Christina Lucas (born 1780) (Gramps ID: I0920)
+Marriage: 1799-07-04 in Cambridge, MD, USA - Marriage of Blanco, John Sr. and Lucas, Christina
+Children:
+- Rufus Blanco (born 20, died 1866-11-04) (Gramps ID: I0599)
+
+Type: family
+Gramps ID: F0394
+Relationship type: Married
+Father: William ĐĐŒĐžŃŃОДĐČ (born 1727, died 1766-05-12) (Gramps ID: I1175)
+Mother: Sarah Page (Gramps ID: I1176)
+Marriage in Coldwater, MI, USA - Marriage of ĐĐŒĐžŃŃОДĐČ, William and Page, Sarah
+
+Type: family
+Gramps ID: F0630
+Relationship type: Married
+Father: Johnathon Warner (born um 1689, died 1754-07) (Gramps ID: I1955)
+Mother: Mary Montgomery (born um 1686, died um 1686) (Gramps ID: I1956)
+Marriage: 1714 - Marriage of Warner, Johnathon and Montgomery, Mary
+
+Type: family
+Gramps ID: F0650
+Relationship type: Married
+Father: Wesley G. Medina (Gramps ID: I2030)
+Mother: Joan Arlene Gutiérrez (born 1927-01-18, died 1927-01-18) (Gramps ID: I2027)
+Marriage: 1946-11 - Marriage of Medina, Wesley G. and Gutiérrez, Joan Arlene
+
+Type: family
+Gramps ID: F0557
+Relationship type: Married
+Father: John Rodriquez (born 1849-12-25, died 1849-12-25) (Gramps ID: I1710)
+Mother: Eve ĐĐŸĐ»ŃĐșĐŸĐČ (born 1771) (Gramps ID: I1711)
+Marriage: 1789-10-27 in Moultrie, Colquitt, GA, USA - Marriage of Rodriquez, John and ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+
+Type: family
+Gramps ID: F0555
+Relationship type: Married
+Father: Cliff Parks (Gramps ID: I1707)
+Mother: Lorie Ann Gill (born um 1967) (Gramps ID: I0413)
+Marriage: 1987-11-28 in Southern Pines, NC, USA - Marriage of Parks, Cliff and Gill, Lorie Ann
+
+Type: family
+Gramps ID: F0708
+Relationship type: Married
+Father: Culthbert Gomez (born 1473, died 1473) (Gramps ID: I1030)
+Children:
+- Jane Joane Gomez (born 1499, died 1573) (Gramps ID: I1032)
+
+Type: family
+Gramps ID: F0692
+Relationship type: Married
+Father: Jeffrey Alvarado (Gramps ID: I0754)
+Children:
+- Mary Alvarado (died 1760-01-17) (Gramps ID: I0531)
+
+Type: family
+Gramps ID: F0128
+Relationship type: Married
+Father: Samuel Christiansen (born 1668, died 1754-06-25) (Gramps ID: I0530)
+Mother: Mary Alvarado (died 1760-01-17) (Gramps ID: I0531)
+Marriage: 1693-06-08 in Poplar Bluff, MO, USA - Marriage of Christiansen, Samuel and Alvarado, Mary
+Children:
+- Joseph Christiansen (born 1703) (Gramps ID: I0540)
+
+Type: family
+Gramps ID: F0150
+Relationship type: Married
+Father: Guy ĐĐŸĐłĐžĐœĐŸĐČ (Gramps ID: I0588)
+Mother: Margaret Agnes"Maudy" Kristensen (born 1894-12-02, died 1974-07-21) (Gramps ID: I0587)
+Marriage Marriage of ĐĐŸĐłĐžĐœĐŸĐČ, Guy and Kristensen, Margaret Agnes"Maudy"
+
+Type: family
+Gramps ID: F0206
+Relationship type: Married
+Father: Christian, I Moreno (born 1693, died 1772-04-16) (Gramps ID: I0058)
+Mother: Agnes Mann (Gramps ID: I0703)
+Marriage Marriage of Moreno, Christian, I and Mann, Agnes
+Children:
+- Johann Christian II Moreno (born 1726-11-15, died 1797-12-10) (Gramps ID: I0059)
+
+Type: family
+Gramps ID: F0368
+Relationship type: Married
+Father: Stephen Jacob Ford (Gramps ID: I1122)
+Mother: Iola Elizabeth Betty Garner (born 1860-11-01, died 1941-04-17) (Gramps ID: I1121)
+Marriage: 1879-09-17 in Vernal, UT, USA - Marriage of Ford, Stephen Jacob and Garner, Iola Elizabeth Betty
+
+Type: family
+Gramps ID: F0601
+Relationship type: Married
+Father: Jimenez (Gramps ID: I1883)
+Mother: Maureen Reed (Gramps ID: I1879)
+Marriage Marriage of Jimenez and Reed, Maureen
+
+Type: family
+Gramps ID: F0099
+Relationship type: Married
+Father: John C. Peters (born 1946-05-10) (Gramps ID: I0436)
+Mother: Joyce Marie Cruz (born 1949-03-07) (Gramps ID: I0227)
+Marriage: 1974-03-30 - Marriage of Peters, John C. and Cruz, Joyce Marie
+Children:
+- Elissa Marie Peters (born 1979-05-26) (Gramps ID: I0451)
+
+Type: family
+Gramps ID: F0526
+Relationship type: Married
+Father: Mr. HĂ©bert (Gramps ID: I1622)
+Mother: Mary Page (born 1880, died 1880) (Gramps ID: I1434)
+Marriage Marriage of HĂ©bert, Mr. and Page, Mary
+
+Type: family
+Gramps ID: F0295
+Relationship type: Married
+Father: Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (born 1658, died 1718-08-16) (Gramps ID: I0942)
+Mother: Marie SuĂĄrez (born 1656-05-21, died 1731-01-05) (Gramps ID: I0943)
+Marriage: 1680-01-12 - Marriage of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob and SuĂĄrez, Marie
+Children:
+- Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (born 1690-02-23, died 1750-12-25) (Gramps ID: I0946)
+
+Type: family
+Gramps ID: F0492
+Relationship type: Married
+Father: Henry Parsons (Gramps ID: I1514)
+Mother: Ellen Douglas (born 1830-05-24, died 1830-05-24) (Gramps ID: I1494)
+Marriage Marriage of Parsons, Henry and Douglas, Ellen
+
+Type: family
+Gramps ID: F0247
+Relationship type: Married
+Father: Michael Boucher (born 1883) (Gramps ID: I0488)
+Mother: Nora Gil (Gramps ID: I0837)
+Marriage in Del Rio, Val Verde, TX, USA - Marriage of Boucher, Michael and Gil, Nora
+Children:
+- John Boucher (born 1929) (Gramps ID: I0489)
+
+Type: family
+Gramps ID: F0500
+Relationship type: Married
+Father: Mathias Santiago (Gramps ID: I1550)
+Mother: Molly James (born 1770, died 1770) (Gramps ID: I1543)
+Marriage in Orlando, Orange, FL, USA - Marriage of Santiago, Mathias and James, Molly
+
+Type: family
+Gramps ID: F0605
+Relationship type: Married
+Father: Alexander Payne (Gramps ID: I1894)
+Mother: Elizabeth KamiĆski (Gramps ID: I1896)
+Marriage: 1840-05-04 - Marriage of Payne, Alexander and KamiĆski, Elizabeth
+
+Type: family
+Gramps ID: F0380
+Relationship type: Married
+Father: John Kowalski (born 1560, died 1630-08-30) (Gramps ID: I1145)
+Mother: Alice Wells (died 1653-11-08) (Gramps ID: I1146)
+Marriage in McAlester, OK, USA - Marriage of Kowalski, John and Wells, Alice
+Children:
+- Hannah Kowalski (born 1590) (Gramps ID: I1144)
+
+Type: family
+Gramps ID: F0371
+Relationship type: Married
+Father: Don Wheeler (Gramps ID: I1131)
+Mother: Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ (born 1947-01-22) (Gramps ID: I0232)
+Marriage in Midland, Midland, TX, USA - Marriage of Wheeler, Don and ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+
+Type: family
+Gramps ID: F0617
+Relationship type: Married
+Father: Coleman (Gramps ID: I1925)
+Mother: Louella Marie Garner (Gramps ID: I0183)
+Marriage Marriage of Coleman and Garner, Louella Marie
+
+Type: family
+Gramps ID: F0319
+Relationship type: Married
+Father: Frederick Douglas (Gramps ID: I0996)
+Mother: Barbara Stanley (Gramps ID: I0997)
+Marriage Marriage of Douglas, Frederick and Stanley, Barbara
+Children:
+- Mary"Polly" Douglas (born 1785-04-27, died 1842-08-30) (Gramps ID: I0921)
+
+Type: family
+Gramps ID: F0345
+Relationship type: Married
+Father: ?? Demers (Gramps ID: I1072)
+Mother: Adria Maria ĐĄĐ”ŃгДДĐČ (born 1971-06-01) (Gramps ID: I1060)
+Marriage: 1993-06 - Marriage of Demers, ?? and ĐĄĐ”ŃгДДĐČ, Adria Maria
+
+Type: family
+Gramps ID: F0366
+Relationship type: Married
+Father: John B. RamĂrez (Gramps ID: I1118)
+Mother: Rebecca Catharine Garner (born 1857-05-30, died 1937-04-09) (Gramps ID: I1117)
+Marriage: 1875-10-07 in Paragould, Greene, AR, USA - Marriage of RamĂrez, John B. and Garner, Rebecca Catharine
+
+Type: family
+Gramps ID: F0395
+Relationship type: Married
+Father: Swanson BĂ©dard (Gramps ID: I1180)
+Mother: Mary ĐĐŒĐžŃŃОДĐČ (born um 1731, died um 1731) (Gramps ID: I1179)
+Marriage Marriage of BĂ©dard, Swanson and ĐĐŒĐžŃŃОДĐČ, Mary
+
+Type: family
+Gramps ID: F0607
+Relationship type: Married
+Father: James Diaz (born 1763-04-15) (Gramps ID: I1900)
+Mother: Nancy Woods (Gramps ID: I1901)
+Marriage: 1791-12-19 in Seymour, Jackson, IN, USA - Marriage of Diaz, James and Woods, Nancy
+
+Type: family
+Gramps ID: F0719
+Relationship type: Married
+Father: Veltin ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ (Gramps ID: I1186)
+Children:
+- Zariakius Cyriacus æè€ (born um 1675, died nach 1748-07-01) (Gramps ID: I0761)
+
+Type: family
+Gramps ID: F0312
+Relationship type: Married
+Father: Stephen Paul Warner (born 1951-11-04) (Gramps ID: I0160)
+Mother: Patricia Đ„ŃĐŽĐŸĐœĐŸĐłĐŸĐČ (Gramps ID: I0982)
+Marriage: 1977-06-04 in Statesboro, Bulloch, GA, USA - Marriage of Warner, Stephen Paul and Đ„ŃĐŽĐŸĐœĐŸĐłĐŸĐČ, Patricia
+
+Type: family
+Gramps ID: F0491
+Relationship type: Married
+Father: Thomas Kelley (Gramps ID: I1512)
+Mother: Catherine Douglas (born 1818-04-09, died 1818-04-09) (Gramps ID: I1492)
+Marriage Marriage of Kelley, Thomas and Douglas, Catherine
+
+Type: family
+Gramps ID: F0441
+Relationship type: Married
+Father: Valentin Michaud (born 1715, died 1715) (Gramps ID: I1330)
+Mother: Anna Eva Beaulieu (born 1724, died 1760) (Gramps ID: I1329)
+Marriage Marriage of Michaud, Valentin and Beaulieu, Anna Eva
+
+Type: family
+Gramps ID: F0391
+Relationship type: Married
+Father: Lodowick Elliott (Gramps ID: I1168)
+Mother: Sarah ĐĐŸĐČалДĐČ (born um 1604) (Gramps ID: I1167)
+Marriage: nach 1624 - Marriage of Elliott, Lodowick and ĐĐŸĐČалДĐČ, Sarah
+
+Type: family
+Gramps ID: F0030
+Relationship type: Married
+Father: Richard Kenneth Warner (born 1925-01-17) (Gramps ID: I0130)
+Mother: Joy A. Wade (Gramps ID: I0146)
+Marriage: 1977-08-18 - Marriage of Warner, Richard Kenneth and Wade, Joy A.
+
+Type: family
+Gramps ID: F0385
+Relationship type: Married
+Father: Robert James (Gramps ID: I0730)
+Mother: Sarah Pratt (Gramps ID: I1160)
+Marriage Marriage of James, Robert and Pratt, Sarah
+Children:
+- Hugh Sr. James (born 1705, died 1785) (Gramps ID: I0479)
+
+Type: family
+Gramps ID: F0199
+Relationship type: Married
+Father: Samuel Fox (born 1700, died 1744) (Gramps ID: I0515)
+Mother: Susannah Mason (Gramps ID: I0684)
+Marriage Marriage of Fox, Samuel and Mason, Susannah
+Children:
+- David Fox (born 1738) (Gramps ID: I0516)
+
+Type: family
+Gramps ID: F0584
+Relationship type: Married
+Father: Terrence Reed (born 1948-05-07) (Gramps ID: I1808)
+Mother: Maria Gibbs (Gramps ID: I1821)
+Marriage Marriage of Reed, Terrence and Gibbs, Maria
+Children:
+- Hannah Reed (born um 1991) (Gramps ID: I1839)
+
+Type: family
+Gramps ID: F0568
+Relationship type: Married
+Father: Joe St-Pierre (Gramps ID: I1766)
+Mother: Norene Boucher (born 1970) (Gramps ID: I0833)
+Marriage Marriage of St-Pierre, Joe and Boucher, Norene
+
+Type: family
+Gramps ID: F0376
+Relationship type: Married
+Father: Eugene Stanley, Jr. Garner (Gramps ID: I0135)
+Mother: Pearline Washington (Gramps ID: I1140)
+Marriage Marriage of Garner, Eugene Stanley, Jr. and Washington, Pearline
+
+Type: family
+Gramps ID: F0444
+Relationship type: Married
+Father: John ĐлаŃĐŸĐČ (Gramps ID: I1336)
+Mother: Martha Frances "Fannie" Floyd (born 1843-05-13, died 1913-04-17) (Gramps ID: I0094)
+Marriage: 1877-09-26 in Crowley, Acadia, LA, USA - Marriage of ĐлаŃĐŸĐČ, John and Floyd, Martha Frances "Fannie"
+
+Type: family
+Gramps ID: F0080
+Relationship type: Married
+Father: Allen éŽæš (Gramps ID: I0247)
+Mother: Alice MarĂn (Gramps ID: I0245)
+Marriage Marriage of éŽæš, Allen and MarĂn, Alice
+
+Type: family
+Gramps ID: F0534
+Relationship type: Married
+Father: Thomas James (Gramps ID: I1545)
+Mother: Kate Teel Marshall (Gramps ID: I1647)
+Marriage Marriage of James, Thomas and Marshall, Kate Teel
+
+Type: family
+Gramps ID: F0082
+Relationship type: Married
+Father: Willis H. MarĂn (born 1822-11-11, died 1894-01-02) (Gramps ID: I0242)
+Mother: Sarah (Sally) Floyd (Gramps ID: I0406)
+Marriage Marriage of MarĂn, Willis H. and Floyd, Sarah (Sally)
+
+Type: family
+Gramps ID: F0687
+Relationship type: Married
+Father: Sir John Piotrowski (Gramps ID: I0723)
+Children:
+- Sir Michael Piotrowski (Gramps ID: I0725)
+
+Type: family
+Gramps ID: F0278
+Relationship type: Married
+Father: Thomas WoĆșniak (Gramps ID: I0908)
+Mother: Debra Dale Page (born 1963-02-15) (Gramps ID: I0907)
+Marriage Marriage of WoĆșniak, Thomas and Page, Debra Dale
+
+Type: family
+Gramps ID: F0675
+Relationship type: Married
+Mother: Rosina M. Gibbs (Gramps ID: I2019)
+Children:
+- Lawrence Paul Hale (born 1950-10-30) (Gramps ID: I0118)
+
+Type: family
+Gramps ID: F0192
+Relationship type: Married
+Father: Raymond Scott Garner (born 1956-03-05) (Gramps ID: I0671)
+Mother: Angela Gay PĂ©rez (Gramps ID: I0673)
+Marriage: 1975-06-21 - Marriage of Garner, Raymond Scott and PĂ©rez, Angela Gay
+
+Type: family
+Gramps ID: F0705
+Relationship type: Married
+Father: JOHN Howell (born 1615, died 1644-12-28) (Gramps ID: I0954)
+Children:
+- Mary (Sarah) Howell (born 1641-02-12, died 1686) (Gramps ID: I0751)
+
+Type: family
+Gramps ID: F0693
+Relationship type: Married
+Father: John ĐĐ»ĐŸĐ±ĐžĐœ (born 1695) (Gramps ID: I0757)
+Children:
+- Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ (died 1771) (Gramps ID: I0555)
+
+Type: family
+Gramps ID: F0743
+Relationship type: Married
+Father: Ù
ŰÙ
ŰŻ (born 570-04-19, died 632-06-08) (Gramps ID: I2110)
+Mother: Űčۧۊێ۩ (born 610, died 610) (Gramps ID: I2105)
+
+Type: family
+Gramps ID: F0744
+Relationship type: Married
+Father: Ù
ŰÙ
ŰŻ (born 570-04-19, died 632-06-08) (Gramps ID: I2110)
+Mother: ۟ۯÙŰŹŰ© (Gramps ID: I2106)
+Children:
+- ۧÙÙۧ۳Ù
(Gramps ID: I2107)
+- Űčۚۯ ۧÙÙÙ (Gramps ID: I2108)
+- ŰŁÙ
 ÙÙŰ«ÙÙ
(Gramps ID: I2109)
+
+Type: family
+Gramps ID: F0745
+Relationship type: Married
+Father: ŰŁŰÙ
ŰŻ (born 164-03 (Islamisch), died 241-03-12 (Islamisch)) (Gramps ID: I2111)
+Mother: ۧÙŰčۚۧ۳۩ ۧÙÙŰ¶Ù (born 234 (Islamisch), died 234 (Islamisch)) (Gramps ID: I2112)
+Children:
+- ۔ۧÙŰ (born 203 (Islamisch), died 203 (Islamisch)) (Gramps ID: I2115)
+
+Type: family
+Gramps ID: F0746
+Relationship type: Married
+Father: ŰŁŰÙ
ŰŻ (born 164-03 (Islamisch), died 241-03-12 (Islamisch)) (Gramps ID: I2111)
+Mother: ۱ÙŰۧÙŰ© (Gramps ID: I2113)
+Children:
+- Űčۚۯ ۧÙÙÙ (born 213 (Islamisch), died 290 (Islamisch)) (Gramps ID: I2114)
+
+Type: family
+Gramps ID: F0000
+Relationship type: Married
+Father: The First Person (Gramps ID: I0000)
+Mother: B Fillin (Gramps ID: I0556)
+
+Type: family
+Gramps ID: F0141
+Relationship type: Married
+Father: C Fillin (Gramps ID: I0839)
+Mother: D Fillin (Gramps ID: I0952)
+
+Type: family
+Gramps ID: F0174
+Relationship type: Married
+Father: E Fillin (Gramps ID: I1038)
+Mother: F Fillin (Gramps ID: I1236)
+
+Type: family
+Gramps ID: F0365
+Relationship type: Married
+Father: G Fillin (Gramps ID: I1237)
+Mother: H Fillin (Gramps ID: I1244)
+
+Type: family
+Gramps ID: F0447
+Relationship type: Married
+Father: I Fillin (Gramps ID: I1388)
+Mother: J Fillin (Gramps ID: I1461)
+
+Type: family
+Gramps ID: F0448
+Relationship type: Married
+Father: K Fillin (Gramps ID: I1540)
+Mother: L Fillin (Gramps ID: I1555)
+
+Type: family
+Gramps ID: F0480
+Relationship type: Married
+Father: M Fillin (Gramps ID: I1691)
+Mother: N Fillin (Gramps ID: I1693)
+
+Type: family
+Gramps ID: F0748
+Relationship type: Married
+Father: ÎÎŹÏÏÎœ ÎΔληÏÎÏÏÎżÏ
(born 1910-06-29, died 1990-02-02) (Gramps ID: I2123)
+Mother: ÎΔΜΔÏία ÎÎœÎ±ÎłÎœÏÏÏÎżÏÎżÏλοÏ
(born 1920-04-07, died 1995-03-02) (Gramps ID: I2124)
+Children:
+- ÎÎłÎ±ÎŒÎΌΜÏÎœ ÎΔληÏÎÏÏÎżÏ
(born 1940-03-01, died 1970-09-09) (Gramps ID: I2117)
+
+Type: family
+Gramps ID: F0747
+Relationship type: Married
+Father: ÎÎłÎ±ÎŒÎΌΜÏÎœ ÎΔληÏÎÏÏÎżÏ
(born 1940-03-01, died 1970-09-09) (Gramps ID: I2117)
+Mother: ÎÏ
ÏÎÏÏη ÎÏÎŹÎœÎœÎżÏ
(born 1950-06-18, died 1950-06-18) (Gramps ID: I2118)
+Children:
+- ÎΌηÏÎżÏ ÎΔληÏÎÏÏÎżÏ
(born 1971-11-05, died 1971-11-05) (Gramps ID: I2119)
+- ÎÏ
ÏÏÎŻÎœÎ· ÎΔληÏÎÏÏÎżÏ
(born 1973-04-11, died 1973-04-11) (Gramps ID: I2120)
+- ÎΔÏÎλη ÎΔληÏÎÏÏÎżÏ
(born 1974-12-03, died 1974-12-03) (Gramps ID: I2121)
+- ÎÎÏÏÎżÏÎ±Ï ÎΔληÏÎÏÏÎżÏ
(born 1976-09-29, died 1976-09-29) (Gramps ID: I2122)
+- ÎÎłÎ·Ï ÎΔληÏÎÏÏÎżÏ
(born 1978-11-30, died 1978-11-30) (Gramps ID: I2127)
+
+Type: family
+Gramps ID: F0749
+Relationship type: Married
+Father: ÎÏαΌΔÎčÎœÏÎœÎŽÎ±Ï ÎÏÎŹÎœÎœÎżÏ
(born 1915-03-10, died 2005-06-28) (Gramps ID: I2125)
+Mother: ÎÎżÏ
λία ÎαλÎÏγη (born 1925-07-15, died 2006-01-11) (Gramps ID: I2126)
+Children:
+- ÎÏ
ÏÎÏÏη ÎÏÎŹÎœÎœÎżÏ
(born 1950-06-18, died 1950-06-18) (Gramps ID: I2118)
+
+Type: family
+Gramps ID: F0750
+Relationship type: Married
+Father: æŒ èł (Gramps ID: I2128)
+Children:
+- 代ć èł (Gramps ID: I2129)
+
+Type: family
+Gramps ID: F0751
+Relationship type: Unknown
+Father: 代ć èł (Gramps ID: I2129)
+Children:
+- æ· èł (Gramps ID: I2130)
+- æŹ èł (Gramps ID: I2131)
+
+Type: family
+Gramps ID: F0752
+Relationship type: Unknown
+Father: æŹ èł (Gramps ID: I2131)
+Children:
+- ç èł (Gramps ID: I2132)
+- ææ„ èł (Gramps ID: I2133)
+
+Type: family
+Gramps ID: F0753
+Relationship type: Married
+Father: ç èł (Gramps ID: I2132)
+Mother: ć°€ æ° (Gramps ID: I2134)
+Children:
+- è èł (Gramps ID: I2135)
+
+Type: family
+Gramps ID: F0754
+Relationship type: Unknown
+Father: è èł (Gramps ID: I2135)
+Mother: ćŻćż 秊 (Gramps ID: I2136)
+
+Type: family
+Gramps ID: F0755
+Relationship type: Unknown
+Father: æș èł (Gramps ID: I2137)
+Children:
+- 代ć èł (Gramps ID: I2138)
+
+Type: family
+Gramps ID: F0756
+Relationship type: Married
+Father: 代ć èł (Gramps ID: I2138)
+Mother: ćČ ć€Șć (Gramps ID: I2139)
+Children:
+- 蔊 èł (Gramps ID: I2140)
+- æż èł (Gramps ID: I2141)
+- æ èł (Gramps ID: I2142)
+
+Type: family
+Gramps ID: F0757
+Relationship type: Married
+Father: 蔊 èł (Gramps ID: I2140)
+Mother: éą ć€«äșș (Gramps ID: I2143)
+Children:
+- ç èł (Gramps ID: I2144)
+- èżæ„ èł (Gramps ID: I2145)
+
+Type: family
+Gramps ID: F0759
+Relationship type: Married
+Father: æż èł (Gramps ID: I2141)
+Mother: ç 怫äșș (Gramps ID: I2148)
+Children:
+- ç èł (Gramps ID: I2149)
+- ć
æ„ èł (Gramps ID: I2150)
+- 毶ç èł (Gramps ID: I2151)
+
+Type: family
+Gramps ID: F0760
+Relationship type: Unknown
+Father: æż èł (Gramps ID: I2141)
+Mother: è¶ ć§šćš (Gramps ID: I2152)
+Children:
+- æąæ„ èł (Gramps ID: I2153)
+- ç° èł (Gramps ID: I2154)
+
+Type: family
+Gramps ID: F0758
+Relationship type: Married
+Father: ç èł (Gramps ID: I2144)
+Mother: çéłł ç (Gramps ID: I2146)
+Children:
+- ć·§ć§ èł (Gramps ID: I2147)
+
+Type: family
+Gramps ID: F0761
+Relationship type: Married
+Father: ç èł (Gramps ID: I2149)
+Mother: çŽ æ (Gramps ID: I2155)
+Children:
+- è èł (Gramps ID: I2156)
+
+Type: event
+Gramps ID: E0000
+Event type: Birth
+Event date: 1987-08-29
+Event location: Gainesville, Llano, TX, USA
+Event description: Birth of Warner, Sarah Suzanne
+Participant (Primary): Sarah Suzanne Warner (Gramps ID: I0001)
+
+Type: event
+Gramps ID: E0001
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sarah Suzanne Warner (Gramps ID: I0001)
+
+Type: event
+Gramps ID: E0002
+Event type: Birth
+Event date: 1928-07-09
+Event location: LaGrange, GA, USA
+Event description: Birth of Garner, Howard Lane
+Participant (Primary): Howard Lane Garner (Gramps ID: I0010)
+
+Type: event
+Gramps ID: E0003
+Event type: Birth
+Event location: Lock Haven, PA, USA
+Event description: Birth of Schultz, John
+Participant (Primary): John Schultz (Gramps ID: I0100)
+
+Type: event
+Gramps ID: E0004
+Event type: Death
+Event date: 1860
+Event description: Death of Schultz, John
+Participant (Primary): John Schultz (Gramps ID: I0100)
+
+Type: event
+Gramps ID: E0005
+Event type: Burial
+Event description: Burial of Schultz, John
+Participant (Primary): John Schultz (Gramps ID: I0100)
+
+Type: event
+Gramps ID: E0006
+Event type: Birth
+Event location: Redwood City, San Mateo, CA, USA
+Event description: Birth of Sanders, Henry
+Participant (Primary): Henry Sanders (Gramps ID: I1000)
+
+Type: event
+Gramps ID: E0007
+Event type: Death
+Event date: 1658-06-17
+Event description: Death of Sanders, Henry
+Participant (Primary): Henry Sanders (Gramps ID: I1000)
+
+Type: event
+Gramps ID: E0008
+Event type: Birth
+Event date: um 1585
+Event location: Valley, Chambers, AL, USA
+Event description: Birth of Spencer, Ann
+Participant (Primary): Ann Spencer (Gramps ID: I1001)
+
+Type: event
+Gramps ID: E0009
+Event type: Death
+Event date: 1662-12-20
+Event location: Portales, NM, USA
+Event description: Death of Spencer, Ann
+Participant (Primary): Ann Spencer (Gramps ID: I1001)
+
+Type: event
+Gramps ID: E0010
+Event type: Birth
+Event date: 1582-04-14
+Event location: Wilmington, OH, USA
+Event description: Birth of Foster, Thomas
+Participant (Primary): Thomas Foster (Gramps ID: I1002)
+
+Type: event
+Gramps ID: E0011
+Event type: Death
+Event date: 1658-06-01
+Event location: Portales, NM, USA
+Event description: Death of Foster, Thomas
+Participant (Primary): Thomas Foster (Gramps ID: I1002)
+
+Type: event
+Gramps ID: E0012
+Event type: Birth
+Event date: um 1584
+Event description: Birth of Black, Jane
+Participant (Primary): Jane Black (Gramps ID: I1003)
+
+Type: event
+Gramps ID: E0013
+Event type: Birth
+Event date: um 1592
+Event description: Birth of Abbott, Frances
+Participant (Primary): Frances Abbott (Gramps ID: I1004)
+
+Type: event
+Gramps ID: E3415
+Event type: Death
+Event date: um 1642-01
+Event description: Death of Abbott, Frances
+Participant (Primary): Frances Abbott (Gramps ID: I1004)
+
+Type: event
+Gramps ID: E0014
+Event type: Birth
+Event date: um 1520
+Event location: Safford, Graham, AZ, USA
+Event description: Birth of ĐĐžŃĐžĐ»Đ»ĐŸĐČ, ??
+Participant (Primary): ?? ĐĐžŃĐžĐ»Đ»ĐŸĐČ (Gramps ID: I1005)
+
+Type: event
+Gramps ID: E0015
+Event type: Birth
+Event date: um 1518
+Event location: Safford, Graham, AZ, USA
+Event description: Birth of Jones, Hugh
+Participant (Primary): Hugh Jones (Gramps ID: I1006)
+
+Type: event
+Gramps ID: E0016
+Event type: Birth
+Event date: 1550
+Event location: Safford, Graham, AZ, USA
+Event description: Birth of Jones, Ann
+Participant (Primary): Ann Jones (Gramps ID: I1007)
+
+Type: event
+Gramps ID: E0017
+Event type: Birth
+Event date: 1014
+Event description: Birth of ĐĄĐŒĐžŃĐœĐŸĐČ, Eudo
+Participant (Primary): Eudo ĐĄĐŒĐžŃĐœĐŸĐČ (Gramps ID: I1008)
+
+Type: event
+Gramps ID: E0018
+Event type: Birth
+Event date: 1018
+Event description: Birth of Rios, Agnes
+Participant (Primary): Agnes Rios (Gramps ID: I1009)
+
+Type: event
+Gramps ID: E0019
+Event type: Birth
+Event date: 1819-03-24
+Event location: Hereford, Deaf Smith, TX, USA
+Event description: Birth of Reeves, James
+Participant (Primary): James Reeves (Gramps ID: I0101)
+
+Type: event
+Gramps ID: E0020
+Event type: Death
+Event date: 1897-07-11
+Event location: Cadillac, MI, USA
+Event description: Death of Reeves, James
+Participant (Primary): James Reeves (Gramps ID: I0101)
+
+Type: event
+Gramps ID: E0021
+Event type: Burial
+Event date: 1897-07-13
+Event location: Fort Collins, Larimer, CO, USA
+Event description: Burial of Reeves, James
+Participant (Primary): James Reeves (Gramps ID: I0101)
+
+Type: event
+Gramps ID: E0022
+Event type: Birth
+Event date: 1050
+Event description: Birth of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald
+Participant (Primary): Ribald ĐĄĐŒĐžŃĐœĐŸĐČ (Gramps ID: I1010)
+
+Type: event
+Gramps ID: E0023
+Event type: Death
+Event date: 1121
+Event description: Death of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald
+Participant (Primary): Ribald ĐĄĐŒĐžŃĐœĐŸĐČ (Gramps ID: I1010)
+
+Type: event
+Gramps ID: E0024
+Event type: Birth
+Event date: 1050
+Event description: Birth of Gray, Beatrix
+Participant (Primary): Beatrix Gray (Gramps ID: I1011)
+
+Type: event
+Gramps ID: E0025
+Event type: Death
+Event date: 1112
+Event description: Death of Gray, Beatrix
+Participant (Primary): Beatrix Gray (Gramps ID: I1011)
+
+Type: event
+Gramps ID: E0026
+Event type: Birth
+Event date: 1080
+Event description: Birth of RodrĂguez, Agatha
+Participant (Primary): Agatha RodrĂguez (Gramps ID: I1012)
+
+Type: event
+Gramps ID: E0027
+Event type: Death
+Event date: 1142
+Event description: Death of RodrĂguez, Agatha
+Participant (Primary): Agatha RodrĂguez (Gramps ID: I1012)
+
+Type: event
+Gramps ID: E0028
+Event type: Birth
+Event date: 1080
+Event description: Birth of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph
+Participant (Primary): Ralph ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ (Gramps ID: I1013)
+
+Type: event
+Gramps ID: E0029
+Event type: Death
+Event date: 1168
+Event description: Death of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph
+Participant (Primary): Ralph ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ (Gramps ID: I1013)
+
+Type: event
+Gramps ID: E0030
+Event type: Birth
+Event date: 1110
+Event description: Birth of Hanson, Robert
+Participant (Primary): Robert Hanson (Gramps ID: I1014)
+
+Type: event
+Gramps ID: E0031
+Event type: Death
+Event date: 1185
+Event description: Death of Hanson, Robert
+Participant (Primary): Robert Hanson (Gramps ID: I1014)
+
+Type: event
+Gramps ID: E0032
+Event type: Birth
+Event date: 1110
+Event description: Birth of Schwartz, Helewisa
+Participant (Primary): Helewisa Schwartz (Gramps ID: I1015)
+
+Type: event
+Gramps ID: E0033
+Event type: Death
+Event date: 1195
+Event description: Death of Schwartz, Helewisa
+Participant (Primary): Helewisa Schwartz (Gramps ID: I1015)
+
+Type: event
+Gramps ID: E0034
+Event type: Birth
+Event date: 1192
+Event description: Birth of Knudsen, Robert
+Participant (Primary): Robert Knudsen (Gramps ID: I1016)
+
+Type: event
+Gramps ID: E0035
+Event type: Death
+Event date: 1252-12-07
+Event description: Death of Knudsen, Robert
+Participant (Primary): Robert Knudsen (Gramps ID: I1016)
+
+Type: event
+Gramps ID: E0036
+Event type: Birth
+Event date: um 1196
+Event location: Hammond, Tangipahoa, LA, USA
+Event description: Birth of Copeland, Mary
+Participant (Primary): Mary Copeland (Gramps ID: I1017)
+
+Type: event
+Gramps ID: E0037
+Event type: Birth
+Event date: 1220
+Event description: Birth of Knudsen, Ranulf
+Participant (Primary): Ranulf Knudsen (Gramps ID: I1018)
+
+Type: event
+Gramps ID: E0038
+Event type: Death
+Event date: 1294
+Event description: Death of Knudsen, Ranulf
+Participant (Primary): Ranulf Knudsen (Gramps ID: I1018)
+
+Type: event
+Gramps ID: E0039
+Event type: Birth
+Event date: 1220
+Event description: Birth of Huff, Bertrama
+Participant (Primary): Bertrama Huff (Gramps ID: I1019)
+
+Type: event
+Gramps ID: E0040
+Event type: Birth
+Event date: 1825-06-19
+Event location: Las Vegas, NV, USA
+Event description: Birth of Meyer, Catherine
+Participant (Primary): Catherine Meyer (Gramps ID: I0102)
+
+Type: event
+Gramps ID: E0041
+Event type: Death
+Event date: 1911-01-30
+Event location: Cadillac, MI, USA
+Event description: Death of Meyer, Catherine
+Participant (Primary): Catherine Meyer (Gramps ID: I0102)
+
+Type: event
+Gramps ID: E0042
+Event type: Burial
+Event date: 1911-02-01
+Event location: Fort Collins, Larimer, CO, USA
+Event description: Burial of Meyer, Catherine
+Participant (Primary): Catherine Meyer (Gramps ID: I0102)
+
+Type: event
+Gramps ID: E0043
+Event type: Birth
+Event date: 1250
+Event location: Atchison, Atchison, KS, USA
+Event description: Birth of Knudsen, Ralph
+Participant (Primary): Ralph Knudsen (Gramps ID: I1020)
+
+Type: event
+Gramps ID: E0044
+Event type: Death
+Event date: 1316
+Event description: Death of Knudsen, Ralph
+Participant (Primary): Ralph Knudsen (Gramps ID: I1020)
+
+Type: event
+Gramps ID: E0045
+Event type: Birth
+Event date: 1250
+Event description: Birth of Walton, Theophania(Tiffany)
+Participant (Primary): Theophania(Tiffany) Walton (Gramps ID: I1021)
+
+Type: event
+Gramps ID: E0046
+Event type: Birth
+Event date: 1300
+Event location: Bethesda, MD, USA
+Event description: Birth of Knudsen, Ralph
+Participant (Primary): Ralph Knudsen (Gramps ID: I1022)
+
+Type: event
+Gramps ID: E0047
+Event type: Death
+Event date: 1343
+Event description: Death of Knudsen, Ralph
+Participant (Primary): Ralph Knudsen (Gramps ID: I1022)
+
+Type: event
+Gramps ID: E0048
+Event type: Birth
+Event date: 1300
+Event description: Birth of Huff, Isabel
+Participant (Primary): Isabel Huff (Gramps ID: I1023)
+
+Type: event
+Gramps ID: E0049
+Event type: Birth
+Event date: 1325
+Event location: Atchison, Atchison, KS, USA
+Event description: Birth of Knudsen, John
+Participant (Primary): John Knudsen (Gramps ID: I1024)
+
+Type: event
+Gramps ID: E0050
+Event type: Death
+Event date: 1368
+Event description: Death of Knudsen, John
+Participant (Primary): John Knudsen (Gramps ID: I1024)
+
+Type: event
+Gramps ID: E0051
+Event type: Birth
+Event date: 1325
+Event description: Birth of ЧДŃĐœĐŸĐČ, Maud
+Participant (Primary): Maud ЧДŃĐœĐŸĐČ (Gramps ID: I1025)
+
+Type: event
+Gramps ID: E0052
+Event type: Birth
+Event date: 1345
+Event description: Birth of Knudsen, John
+Participant (Primary): John Knudsen (Gramps ID: I1026)
+
+Type: event
+Gramps ID: E0053
+Event type: Death
+Event date: 1388
+Event description: Death of Knudsen, John
+Participant (Primary): John Knudsen (Gramps ID: I1026)
+
+Type: event
+Gramps ID: E0054
+Event type: Birth
+Event date: 1420
+Event description: Birth of Massey, John
+Participant (Primary): John Massey (Gramps ID: I1027)
+
+Type: event
+Gramps ID: E0055
+Event type: Birth
+Event date: 1420
+Event description: Birth of ĐĐ°Đ»ŃŃĐ”ĐČ, Joan
+Participant (Primary): Joan ĐĐ°Đ»ŃŃĐ”ĐČ (Gramps ID: I1028)
+
+Type: event
+Gramps ID: E0056
+Event type: Birth
+Event date: 1455
+Event description: Birth of Christiansen, John
+Participant (Primary): John Christiansen (Gramps ID: I1029)
+
+Type: event
+Gramps ID: E0057
+Event type: Death
+Event date: 1514
+Event description: Death of Christiansen, John
+Participant (Primary): John Christiansen (Gramps ID: I1029)
+
+Type: event
+Gramps ID: E0058
+Event type: Birth
+Event date: 1885-12-25
+Event location: Punta Gorda, Charlotte, FL, USA
+Event description: Birth of Klein, Alma Katherine
+Participant (Primary): Alma Katherine Klein (Gramps ID: I0103)
+
+Type: event
+Gramps ID: E0059
+Event type: Death
+Event date: 1913-11-22
+Event location: Palatka, Putnam, FL, USA
+Event description: Death of Klein, Alma Katherine
+Participant (Primary): Alma Katherine Klein (Gramps ID: I0103)
+
+Type: event
+Gramps ID: E0060
+Event type: Burial
+Event date: 1913-11-24
+Event location: Ocala, Marion, FL, USA
+Event description: Burial of Klein, Alma Katherine
+Participant (Primary): Alma Katherine Klein (Gramps ID: I0103)
+
+Type: event
+Gramps ID: E0061
+Event type: Birth
+Event date: 1473
+Event description: Birth of Gomez, Culthbert
+Participant (Primary): Culthbert Gomez (Gramps ID: I1030)
+
+Type: event
+Gramps ID: E0062
+Event type: Birth
+Event date: 1495
+Event description: Birth of Christiansen, Christopher
+Participant (Primary): Christopher Christiansen (Gramps ID: I1031)
+
+Type: event
+Gramps ID: E0063
+Event type: Death
+Event date: 1570
+Event description: Death of Christiansen, Christopher
+Participant (Primary): Christopher Christiansen (Gramps ID: I1031)
+
+Type: event
+Gramps ID: E0064
+Event type: Birth
+Event date: 1499
+Event description: Birth of Gomez, Jane Joane
+Participant (Primary): Jane Joane Gomez (Gramps ID: I1032)
+
+Type: event
+Gramps ID: E0065
+Event type: Death
+Event date: 1573
+Event description: Death of Gomez, Jane Joane
+Participant (Primary): Jane Joane Gomez (Gramps ID: I1032)
+
+Type: event
+Gramps ID: E0066
+Event type: Birth
+Event date: um 1504
+Event location: Hilo, HI, USA
+Event description: Birth of Foster, John
+Participant (Primary): John Foster (Gramps ID: I1033)
+
+Type: event
+Gramps ID: E0067
+Event type: Birth
+Event date: 1508
+Event description: Birth of Ryan, Elizabeth
+Participant (Primary): Elizabeth Ryan (Gramps ID: I1034)
+
+Type: event
+Gramps ID: E0068
+Event type: Birth
+Event location: Bainbridge, Decatur, GA, USA
+Event description: Birth of Foster, Thomas
+Participant (Primary): Thomas Foster (Gramps ID: I1035)
+
+Type: event
+Gramps ID: E0069
+Event type: Death
+Event date: 1557-06-23
+Event location: Hilo, HI, USA
+Event description: Death of Foster, Thomas
+Participant (Primary): Thomas Foster (Gramps ID: I1035)
+
+Type: event
+Gramps ID: E0070
+Event type: Birth
+Event date: um 1535
+Event location: Wilmington, OH, USA
+Event description: Birth of KozĆowski, Margret
+Participant (Primary): Margret KozĆowski (Gramps ID: I1036)
+
+Type: event
+Gramps ID: E0071
+Event type: Death
+Event date: vor 1598
+Event location: Wilmington, OH, USA
+Event description: Death of KozĆowski, Margret
+Participant (Primary): Margret KozĆowski (Gramps ID: I1036)
+
+Type: event
+Gramps ID: E0072
+Event type: Birth
+Event date: um 1555
+Event location: Wilmington, OH, USA
+Event description: Birth of Foster, John
+Participant (Primary): John Foster (Gramps ID: I1037)
+
+Type: event
+Gramps ID: E0073
+Event type: Death
+Event date: 1598-01-31
+Event location: Wilmington, OH, USA
+Event description: Death of Foster, John
+Participant (Primary): John Foster (Gramps ID: I1037)
+
+Type: event
+Gramps ID: E0074
+Event type: Birth
+Event date: 1951-07-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Margaret Ann
+Participant (Primary): Margaret Ann Garner (Gramps ID: I1039)
+
+Type: event
+Gramps ID: E0075
+Event type: Death
+Event date: 1952-02-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Garner, Margaret Ann
+Participant (Primary): Margaret Ann Garner (Gramps ID: I1039)
+
+Type: event
+Gramps ID: E0076
+Event type: Birth
+Event date: 1792
+Event location: Steubenville, OH, USA
+Event description: Birth of Garner, Joseph
+Participant (Primary): Joseph Garner (Gramps ID: I0104)
+
+Type: event
+Gramps ID: E0077
+Event type: Death
+Event location: Shawnee, OK, USA
+Event description: Death of Garner, Joseph
+Participant (Primary): Joseph Garner (Gramps ID: I0104)
+
+Type: event
+Gramps ID: E0078
+Event type: Birth
+Event date: 1943-02-08
+Event description: Birth of Gibbs, Connie
+Participant (Primary): Connie Gibbs (Gramps ID: I1040)
+
+Type: event
+Gramps ID: E0079
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Connie Gibbs (Gramps ID: I1040)
+
+Type: event
+Gramps ID: E0080
+Event type: Birth
+Event date: 1969-12-03
+Event description: Birth of Garner, Melissa Sue
+Participant (Primary): Melissa Sue Garner (Gramps ID: I1041)
+
+Type: event
+Gramps ID: E0081
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Melissa Sue Garner (Gramps ID: I1041)
+
+Type: event
+Gramps ID: E0082
+Event type: Birth
+Event date: 1993-11-29
+Event description: Birth of MartĂn, Tyler William
+Participant (Primary): Tyler William MartĂn (Gramps ID: I1043)
+
+Type: event
+Gramps ID: E0083
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Tyler William MartĂn (Gramps ID: I1043)
+
+Type: event
+Gramps ID: E0084
+Event type: Birth
+Event date: 1972-03-14
+Event description: Birth of Garner, Heather Jo
+Participant (Primary): Heather Jo Garner (Gramps ID: I1045)
+
+Type: event
+Gramps ID: E0085
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Heather Jo Garner (Gramps ID: I1045)
+
+Type: event
+Gramps ID: E0086
+Event type: Birth
+Event date: 1973-08-27
+Event description: Birth of Garner, Regina Lynne
+Participant (Primary): Regina Lynne Garner (Gramps ID: I1046)
+
+Type: event
+Gramps ID: E0087
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Regina Lynne Garner (Gramps ID: I1046)
+
+Type: event
+Gramps ID: E0088
+Event type: Birth
+Event date: 1975-10-20
+Event description: Birth of Garner, Jason Richard
+Participant (Primary): Jason Richard Garner (Gramps ID: I1047)
+
+Type: event
+Gramps ID: E0089
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jason Richard Garner (Gramps ID: I1047)
+
+Type: event
+Gramps ID: E0090
+Event type: Birth
+Event date: 1799-01-17
+Event location: Jamestowna, NY, USA
+Event description: Birth of Edwards, Lucy
+Participant (Primary): Lucy Edwards (Gramps ID: I0105)
+
+Type: event
+Gramps ID: E0091
+Event type: Death
+Event date: 1879-04-02
+Event description: Death of Edwards, Lucy
+Participant (Primary): Lucy Edwards (Gramps ID: I0105)
+
+Type: event
+Gramps ID: E0092
+Event type: Burial
+Event date: 1879-04-04
+Event location: Logan, UT-ID, USA
+Event description: Burial of Edwards, Lucy
+Participant (Primary): Lucy Edwards (Gramps ID: I0105)
+
+Type: event
+Gramps ID: E0093
+Event type: Birth
+Event date: 1993-10-01
+Event description: Birth of Garner, Vanichia Elaine
+Participant (Primary): Vanichia Elaine Garner (Gramps ID: I1050)
+
+Type: event
+Gramps ID: E0094
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Vanichia Elaine Garner (Gramps ID: I1050)
+
+Type: event
+Gramps ID: E0095
+Event type: Birth
+Event date: 1975-06-01
+Event description: Birth of Garner, Michael Christopher
+Participant (Primary): Michael Christopher Garner (Gramps ID: I1052)
+
+Type: event
+Gramps ID: E0096
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Christopher Garner (Gramps ID: I1052)
+
+Type: event
+Gramps ID: E0097
+Event type: Birth
+Event date: 1978-07-17
+Event description: Birth of Garner, Megan Ann
+Participant (Primary): Megan Ann Garner (Gramps ID: I1053)
+
+Type: event
+Gramps ID: E0098
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Megan Ann Garner (Gramps ID: I1053)
+
+Type: event
+Gramps ID: E0099
+Event type: Birth
+Event date: 1972-10-10
+Event description: Birth of DĂez, William George Jr.
+Participant (Primary): William George Jr. DĂez (Gramps ID: I1055)
+
+Type: event
+Gramps ID: E0100
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William George Jr. DĂez (Gramps ID: I1055)
+
+Type: event
+Gramps ID: E0101
+Event type: Birth
+Event date: 1978-02-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĄĐ”ŃгДДĐČ, Jon Dennis
+Participant (Primary): Jon Dennis ĐĄĐ”ŃгДДĐČ (Gramps ID: I1056)
+
+Type: event
+Gramps ID: E0102
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jon Dennis ĐĄĐ”ŃгДДĐČ (Gramps ID: I1056)
+
+Type: event
+Gramps ID: E0103
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Holloway, John(?)
+Participant (Primary): John(?) Holloway (Gramps ID: I1058)
+
+Type: event
+Gramps ID: E0104
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of Holloway, John(?)
+Participant (Primary): John(?) Holloway (Gramps ID: I1058)
+
+Type: event
+Gramps ID: E0105
+Event type: Birth
+Event date: 1826/7-04-24 (Julianisch)
+Event location: Aberdeen, WA, USA
+Event description: Birth of Garner, Robert W.
+Participant (Primary): Robert W. Garner (Gramps ID: I0106)
+
+Type: event
+Gramps ID: E0106
+Event type: Death
+Event date: 1916-02-03
+Event location: Portsmouth, OH, USA
+Event description: Death of Garner, Robert W.
+Participant (Primary): Robert W. Garner (Gramps ID: I0106)
+
+Type: event
+Gramps ID: E0107
+Event type: Burial
+Event date: 1916-02-05 (Mar25)
+Event location: Knoxville, TN, USA
+Event description: Burial of Garner, Robert W.
+Participant (Primary): Robert W. Garner (Gramps ID: I0106)
+
+Type: event
+Gramps ID: E0108
+Event type: Birth
+Event date: 1971-06-01
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĄĐ”ŃгДДĐČ, Adria Maria
+Participant (Primary): Adria Maria ĐĄĐ”ŃгДДĐČ (Gramps ID: I1060)
+
+Type: event
+Gramps ID: E0109
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Adria Maria ĐĄĐ”ŃгДДĐČ (Gramps ID: I1060)
+
+Type: event
+Gramps ID: E0110
+Event type: Birth
+Event date: 1981-01-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĄĐ”ŃгДДĐČ, Jacqueline Denise
+Participant (Primary): Jacqueline Denise ĐĄĐ”ŃгДДĐČ (Gramps ID: I1061)
+
+Type: event
+Gramps ID: E0111
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jacqueline Denise ĐĄĐ”ŃгДДĐČ (Gramps ID: I1061)
+
+Type: event
+Gramps ID: E0112
+Event type: Birth
+Event date: 1984-04-07
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĄĐ”ŃгДДĐČ, Joshua David
+Participant (Primary): Joshua David ĐĄĐ”ŃгДДĐČ (Gramps ID: I1062)
+
+Type: event
+Gramps ID: E0113
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joshua David ĐĄĐ”ŃгДДĐČ (Gramps ID: I1062)
+
+Type: event
+Gramps ID: E0114
+Event type: Birth
+Event date: 1984-03-20
+Event description: Birth of Garner, Allison Renee
+Participant (Primary): Allison Renee Garner (Gramps ID: I1064)
+
+Type: event
+Gramps ID: E0115
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Allison Renee Garner (Gramps ID: I1064)
+
+Type: event
+Gramps ID: E0116
+Event type: Birth
+Event date: 1989-04-11
+Event description: Birth of Garner, Amy Elizabeth
+Participant (Primary): Amy Elizabeth Garner (Gramps ID: I1065)
+
+Type: event
+Gramps ID: E0117
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Amy Elizabeth Garner (Gramps ID: I1065)
+
+Type: event
+Gramps ID: E0118
+Event type: Birth
+Event date: 1977-03-12
+Event description: Birth of Hill, Jo Lynn
+Participant (Primary): Jo Lynn Hill (Gramps ID: I1067)
+
+Type: event
+Gramps ID: E0119
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jo Lynn Hill (Gramps ID: I1067)
+
+Type: event
+Gramps ID: E0120
+Event type: Birth
+Event date: 1979-01-23
+Event description: Birth of Hill, Leigh Ann
+Participant (Primary): Leigh Ann Hill (Gramps ID: I1068)
+
+Type: event
+Gramps ID: E0121
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Leigh Ann Hill (Gramps ID: I1068)
+
+Type: event
+Gramps ID: E0122
+Event type: Birth
+Event date: 1980-05-10
+Event description: Birth of Hill, Sean Michael
+Participant (Primary): Sean Michael Hill (Gramps ID: I1069)
+
+Type: event
+Gramps ID: E0123
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sean Michael Hill (Gramps ID: I1069)
+
+Type: event
+Gramps ID: E0124
+Event type: Birth
+Event date: 1827-04-12
+Event location: Bogalusa, Washington, LA, USA
+Event description: Birth of ZieliĆski, Phoebe Emily
+Participant (Primary): Phoebe Emily ZieliĆski (Gramps ID: I0107)
+
+Type: event
+Gramps ID: E0125
+Event type: Death
+Event date: 1882-03-07
+Event location: Albuquerque, NM, USA
+Event description: Death of ZieliĆski, Phoebe Emily
+Participant (Primary): Phoebe Emily ZieliĆski (Gramps ID: I0107)
+
+Type: event
+Gramps ID: E0126
+Event type: Burial
+Event date: 1882-03-09
+Event location: Michigan City, LaPorte, IN, USA
+Event description: Burial of ZieliĆski, Phoebe Emily
+Participant (Primary): Phoebe Emily ZieliĆski (Gramps ID: I0107)
+
+Type: event
+Gramps ID: E0127
+Event type: Birth
+Event date: um 1789
+Event location: Laredo, Webb, TX, USA
+Event description: Birth of Mullins, Robert?
+Participant (Primary): Robert? Mullins (Gramps ID: I1073)
+
+Type: event
+Gramps ID: E0128
+Event type: Death
+Event date: 1828-08-13
+Event location: Dumas, Moore, TX, USA
+Event description: Death of Mullins, Robert?
+Participant (Primary): Robert? Mullins (Gramps ID: I1073)
+
+Type: event
+Gramps ID: E0129
+Event type: Burial
+Event location: Modesto, Stanislaus, CA, USA
+Event description: Burial of Mullins, Robert?
+Participant (Primary): Robert? Mullins (Gramps ID: I1073)
+
+Type: event
+Gramps ID: E0130
+Event type: Birth
+Event date: 1790-06-21
+Event description: Birth of Houston, Ellender
+Participant (Primary): Ellender Houston (Gramps ID: I1074)
+
+Type: event
+Gramps ID: E0131
+Event type: Death
+Event date: 1855-07-30
+Event location: Stevens Point, WI, USA
+Event description: Death of Houston, Ellender
+Participant (Primary): Ellender Houston (Gramps ID: I1074)
+
+Type: event
+Gramps ID: E0132
+Event type: Burial
+Event location: Modesto, Stanislaus, CA, USA
+Event description: Burial of Houston, Ellender
+Participant (Primary): Ellender Houston (Gramps ID: I1074)
+
+Type: event
+Gramps ID: E0133
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of ĐŃĐ»ĐŸĐČ, Margaret(?)
+Participant (Primary): Margaret(?) ĐŃĐ»ĐŸĐČ (Gramps ID: I1075)
+
+Type: event
+Gramps ID: E0134
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of ĐŃĐ»ĐŸĐČ, Margaret(?)
+Participant (Primary): Margaret(?) ĐŃĐ»ĐŸĐČ (Gramps ID: I1075)
+
+Type: event
+Gramps ID: E0135
+Event type: Birth
+Event date: 1795-09-10
+Event location: Bishop, Inyo, CA, USA
+Event description: Birth of Holloway, Sarah
+Participant (Primary): Sarah Holloway (Gramps ID: I1076)
+
+Type: event
+Gramps ID: E0136
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of Holloway, Sarah
+Participant (Primary): Sarah Holloway (Gramps ID: I1076)
+
+Type: event
+Gramps ID: E0137
+Event type: Birth
+Event location: Jasper, Dubois, IN, USA
+Event description: Birth of Weaver, Steven Matthew
+Participant (Primary): Steven Matthew Weaver (Gramps ID: I1077)
+
+Type: event
+Gramps ID: E0138
+Event type: Birth
+Event date: 1995-06-07
+Event location: Gainesville, Alachua, FL, USA
+Event description: Birth of Weaver, Justin Matthew
+Participant (Primary): Justin Matthew Weaver (Gramps ID: I1078)
+
+Type: event
+Gramps ID: E0139
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Justin Matthew Weaver (Gramps ID: I1078)
+
+Type: event
+Gramps ID: E0140
+Event type: Birth
+Event date: 1995-07-11
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Matthews, Nicholas Ian
+Participant (Primary): Nicholas Ian Matthews (Gramps ID: I1079)
+
+Type: event
+Gramps ID: E0141
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nicholas Ian Matthews (Gramps ID: I1079)
+
+Type: event
+Gramps ID: E0142
+Event type: Birth
+Event date: 1973-02-06
+Event location: Clovis, NM, USA
+Event description: Birth of Warner, JenniferMae(Ganoe)
+Participant (Primary): JenniferMae(Ganoe) Warner (Gramps ID: I0108)
+
+Type: event
+Gramps ID: E0143
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): JenniferMae(Ganoe) Warner (Gramps ID: I0108)
+
+Type: event
+Gramps ID: E0144
+Event type: Birth
+Event date: 1996-08-09
+Event location: Russellville, Pope, AR, USA
+Event description: Birth of Willis, Matea Elizabeth
+Participant (Primary): Matea Elizabeth Willis (Gramps ID: I1080)
+
+Type: event
+Gramps ID: E0145
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Matea Elizabeth Willis (Gramps ID: I1080)
+
+Type: event
+Gramps ID: E0146
+Event type: Birth
+Event date: 1991-12-08
+Event location: Vallejo, Solano, CA, USA
+Event description: Birth of Poulsen, Cole Randall
+Participant (Primary): Cole Randall Poulsen (Gramps ID: I1081)
+
+Type: event
+Gramps ID: E0147
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cole Randall Poulsen (Gramps ID: I1081)
+
+Type: event
+Gramps ID: E0148
+Event type: Birth
+Event date: 1969-06-23
+Event description: Birth of Hayes, LeAnn
+Participant (Primary): LeAnn Hayes (Gramps ID: I1082)
+
+Type: event
+Gramps ID: E0149
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): LeAnn Hayes (Gramps ID: I1082)
+
+Type: event
+Gramps ID: E0150
+Event type: Birth
+Event date: 1995-11-01
+Event location: Vallejo, Solano, CA, USA
+Event description: Birth of Welch, Madeleine Christine
+Participant (Primary): Madeleine Christine Welch (Gramps ID: I1083)
+
+Type: event
+Gramps ID: E0151
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Madeleine Christine Welch (Gramps ID: I1083)
+
+Type: event
+Gramps ID: E0152
+Event type: Birth
+Event date: 1989-05-05
+Event location: Rockland, ME, USA
+Event description: Birth of West, Kevin Wayne
+Participant (Primary): Kevin Wayne West (Gramps ID: I1087)
+
+Type: event
+Gramps ID: E0153
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kevin Wayne West (Gramps ID: I1087)
+
+Type: event
+Gramps ID: E0154
+Event type: Birth
+Event date: 1955-04-15
+Event description: Birth of Alvarado, Jeffery
+Participant (Primary): Jeffery Alvarado (Gramps ID: I1088)
+
+Type: event
+Gramps ID: E0155
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffery Alvarado (Gramps ID: I1088)
+
+Type: event
+Gramps ID: E0156
+Event type: Birth
+Event date: 1996-09-19
+Event location: Weirton, WV, USA
+Event description: Birth of Warner, Nicole Lynn
+Participant (Primary): Nicole Lynn Warner (Gramps ID: I1089)
+
+Type: event
+Gramps ID: E0157
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nicole Lynn Warner (Gramps ID: I1089)
+
+Type: event
+Gramps ID: E0158
+Event type: Birth
+Event date: 1947-07-16
+Event location: Decatur, Macon, IL, USA
+Event description: Birth of Phillips, Anita Irene
+Participant (Primary): Anita Irene Phillips (Gramps ID: I0109)
+
+Type: event
+Gramps ID: E0159
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Anita Irene Phillips (Gramps ID: I0109)
+
+Type: event
+Gramps ID: E0160
+Event type: Birth
+Event date: 1996-08-19
+Event location: Hartford, Hartford, CT, USA
+Event description: Birth of Willis, Mattea Elizabeth
+Participant (Primary): Mattea Elizabeth Willis (Gramps ID: I1090)
+
+Type: event
+Gramps ID: E0161
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mattea Elizabeth Willis (Gramps ID: I1090)
+
+Type: event
+Gramps ID: E0162
+Event type: Birth
+Event date: 1727-01-18
+Event location: Martinsville, VA, USA
+Event description: Birth of Brooks, William Waller
+Participant (Primary): William Waller Brooks (Gramps ID: I1092)
+
+Type: event
+Gramps ID: E0163
+Event type: Death
+Event date: 1773-09-19
+Event location: Duluth, MN, USA
+Event description: Death of Brooks, William Waller
+Participant (Primary): William Waller Brooks (Gramps ID: I1092)
+
+Type: event
+Gramps ID: E0164
+Event type: Birth
+Event date: 1732-01-17
+Event location: Carson City, NV, USA
+Event description: Birth of ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+Participant (Primary): Lucy ĐĐ°ŃОлŃĐ”ĐČ (Gramps ID: I1093)
+
+Type: event
+Gramps ID: E0165
+Event type: Death
+Event date: 1789-05-29
+Event location: Duluth, MN, USA
+Event description: Death of ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+Participant (Primary): Lucy ĐĐ°ŃОлŃĐ”ĐČ (Gramps ID: I1093)
+
+Type: event
+Gramps ID: E0166
+Event type: Birth
+Event date: 1755-02-26
+Event description: Birth of Brooks, Marquis IV
+Participant (Primary): Marquis IV Brooks (Gramps ID: I1094)
+
+Type: event
+Gramps ID: E0167
+Event type: Death
+Event date: 1839-02-09
+Event description: Death of Brooks, Marquis IV
+Participant (Primary): Marquis IV Brooks (Gramps ID: I1094)
+
+Type: event
+Gramps ID: E0168
+Event type: Birth
+Event date: 1927-01-13
+Event location: Worthington, MN, USA
+Event description: Birth of MarĂn, Mary Anne
+Participant (Primary): Mary Anne MarĂn (Gramps ID: I0011)
+
+Type: event
+Gramps ID: E0169
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Anne MarĂn (Gramps ID: I0011)
+
+Type: event
+Gramps ID: E0170
+Event type: Birth
+Event date: 1982-10-04
+Event location: Forest City, NC, USA
+Event description: Birth of Warner, Christopher Arthur
+Participant (Primary): Christopher Arthur Warner (Gramps ID: I0110)
+
+Type: event
+Gramps ID: E0171
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Christopher Arthur Warner (Gramps ID: I0110)
+
+Type: event
+Gramps ID: E0172
+Event type: Birth
+Event date: um 1695
+Event location: McAlester, OK, USA
+Event description: Birth of Guzman, Isabella
+Participant (Primary): Isabella Guzman (Gramps ID: I1102)
+
+Type: event
+Gramps ID: E0173
+Event type: Death
+Event date: nach 1700
+Event location: McAlester, OK, USA
+Event description: Death of Guzman, Isabella
+Participant (Primary): Isabella Guzman (Gramps ID: I1102)
+
+Type: event
+Gramps ID: E0174
+Event type: Birth
+Event date: 1642
+Event description: Birth of Brooks, Guillaume de
+Participant (Primary): Guillaume de Brooks (Gramps ID: I1103)
+
+Type: event
+Gramps ID: E0175
+Event type: Birth
+Event date: 1823-11-18
+Event location: Moscow, Latah, ID, USA
+Event description: Birth of Garner, Lewis
+Participant (Primary): Lewis Garner (Gramps ID: I1105)
+
+Type: event
+Gramps ID: E0176
+Event type: Death
+Event date: 1911-01-21
+Event location: Twin Falls, Twin Falls, ID, USA
+Event description: Death of Garner, Lewis
+Participant (Primary): Lewis Garner (Gramps ID: I1105)
+
+Type: event
+Gramps ID: E0177
+Event type: Burial
+Event date: 1911-01-23
+Event location: Knoxville, TN, USA
+Event description: Burial of Garner, Lewis
+Participant (Primary): Lewis Garner (Gramps ID: I1105)
+
+Type: event
+Gramps ID: E0178
+Event type: Birth
+Event date: 1825-01-28
+Event location: Steubenville, OH, USA
+Event description: Birth of Garner, Anderson
+Participant (Primary): Anderson Garner (Gramps ID: I1106)
+
+Type: event
+Gramps ID: E0179
+Event type: Death
+Event date: 1887-04-07
+Event location: Oakland, Alameda, CA, USA
+Event description: Death of Garner, Anderson
+Participant (Witness): Elizabeth Page (Gramps ID: I1376)
+Participant (Witness): Miranda Keziah Farmer (Gramps ID: I0363)
+Participant (Informant): David Page (Gramps ID: I0038)
+Participant (Primary): Anderson Garner (Gramps ID: I1106)
+
+Type: event
+Gramps ID: E0180
+Event type: Burial
+Event date: 1887-04-08
+Event location: Oakland, Alameda, CA, USA
+Event description: Burial of Garner, Anderson
+Participant (Primary): Anderson Garner (Gramps ID: I1106)
+
+Type: event
+Gramps ID: E0181
+Event type: Birth
+Event date: 1813-02-04
+Event location: Miami Beach, Miami-Dade, FL, USA
+Event description: Birth of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+Participant (Primary): Willoughby M. ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1108)
+
+Type: event
+Gramps ID: E0182
+Event type: Death
+Event date: 1877-01-16
+Event location: Jamestown, ND, USA
+Event description: Death of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+Participant (Primary): Willoughby M. ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1108)
+
+Type: event
+Gramps ID: E0183
+Event type: Burial
+Event date: um 1877-01-18
+Event location: Jamestown, ND, USA
+Event description: Burial of ĐąĐžĐŒĐŸŃДДĐČ, Willoughby M.
+Participant (Primary): Willoughby M. ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1108)
+
+Type: event
+Gramps ID: E0184
+Event type: Birth
+Event date: 1812-03-07
+Event location: Duluth, MN, USA
+Event description: Birth of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+Participant (Primary): Mary Ann ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1109)
+
+Type: event
+Gramps ID: E0185
+Event type: Death
+Event date: 1880-11-27
+Event location: Starkville, MS, USA
+Event description: Death of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+Participant (Primary): Mary Ann ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1109)
+
+Type: event
+Gramps ID: E0186
+Event type: Burial
+Event date: 1880-11-29
+Event location: Aguadilla, PR, USA
+Event description: Burial of ĐąĐžĐŒĐŸŃДДĐČ, Mary Ann
+Participant (Primary): Mary Ann ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1109)
+
+Type: event
+Gramps ID: E0187
+Event type: Birth
+Event date: 1985-02-26
+Event location: Forest City, NC, USA
+Event description: Birth of Warner, Michael Edward
+Participant (Primary): Michael Edward Warner (Gramps ID: I0111)
+
+Type: event
+Gramps ID: E0188
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Edward Warner (Gramps ID: I0111)
+
+Type: event
+Gramps ID: E0189
+Event type: Birth
+Event date: um 1818
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of ĐąĐžĐŒĐŸŃДДĐČ, John P.
+Participant (Primary): John P. ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1110)
+
+Type: event
+Gramps ID: E0190
+Event type: Birth
+Event date: 1825-07-29
+Event location: Steubenville, OH, USA
+Event description: Birth of ĐąĐžĐŒĐŸŃДДĐČ, Sarah Jane
+Participant (Primary): Sarah Jane ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1111)
+
+Type: event
+Gramps ID: E0191
+Event type: Birth
+Event date: nach 1824
+Event description: Birth of ĐąĐžĐŒĐŸŃДДĐČ
+Participant (Primary): ĐąĐžĐŒĐŸŃДДĐČ (Gramps ID: I1112)
+
+Type: event
+Gramps ID: E0192
+Event type: Birth
+Event date: 1850
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Garner, Phebe
+Participant (Primary): Phebe Garner (Gramps ID: I1113)
+
+Type: event
+Gramps ID: E0193
+Event type: Death
+Event date: vor 1860
+Event description: Death of Garner, Phebe
+Participant (Primary): Phebe Garner (Gramps ID: I1113)
+
+Type: event
+Gramps ID: E0194
+Event type: Birth
+Event date: 1851-10-12
+Event description: Birth of Garner, Mary J.
+Participant (Primary): Mary J. Garner (Gramps ID: I1114)
+
+Type: event
+Gramps ID: E0195
+Event type: Death
+Event date: 1852-04-01
+Event description: Death of Garner, Mary J.
+Participant (Primary): Mary J. Garner (Gramps ID: I1114)
+
+Type: event
+Gramps ID: E0196
+Event type: Burial
+Event date: 1858-04
+Event location: Storm Lake, Buena Vista, IA, USA
+Event description: Burial of Garner, Mary J.
+Participant (Primary): Mary J. Garner (Gramps ID: I1114)
+
+Type: event
+Gramps ID: E0197
+Event type: Birth
+Event date: 1851-10-12
+Event description: Birth of Garner, Mary M.
+Participant (Primary): Mary M. Garner (Gramps ID: I1115)
+
+Type: event
+Gramps ID: E0198
+Event type: Death
+Event date: 1858-05-24
+Event description: Death of Garner, Mary M.
+Participant (Primary): Mary M. Garner (Gramps ID: I1115)
+
+Type: event
+Gramps ID: E0199
+Event type: Burial
+Event date: 1858-05
+Event location: Storm Lake, Buena Vista, IA, USA
+Event description: Burial of Garner, Mary M.
+Participant (Primary): Mary M. Garner (Gramps ID: I1115)
+
+Type: event
+Gramps ID: E0200
+Event type: Birth
+Event date: 1857-05-30
+Event location: Denver-Aurora, CO, USA
+Event description: Birth of Garner, Rebecca Catharine
+Participant (Primary): Rebecca Catharine Garner (Gramps ID: I1117)
+
+Type: event
+Gramps ID: E0201
+Event type: Death
+Event date: 1937-04-09
+Event location: Alice, Jim Wells, TX, USA
+Event description: Death of Garner, Rebecca Catharine
+Participant (Primary): Rebecca Catharine Garner (Gramps ID: I1117)
+
+Type: event
+Gramps ID: E0202
+Event type: Burial
+Event date: 1937-04-11
+Event location: Marion, OH, USA
+Event description: Burial of Garner, Rebecca Catharine
+Participant (Primary): Rebecca Catharine Garner (Gramps ID: I1117)
+
+Type: event
+Gramps ID: E0203
+Event type: Birth
+Event date: 1858-12-31
+Event location: Brownwood, Harris, TX, USA
+Event description: Birth of Carr, Zelpha Josephine
+Participant (Primary): Zelpha Josephine Carr (Gramps ID: I1119)
+
+Type: event
+Gramps ID: E0204
+Event type: Death
+Event date: 1895-02-08
+Event location: Beckley, WV, USA
+Event description: Death of Carr, Zelpha Josephine
+Participant (Primary): Zelpha Josephine Carr (Gramps ID: I1119)
+
+Type: event
+Gramps ID: E0205
+Event type: Burial
+Event date: 1895-02-10
+Event location: Storm Lake, Buena Vista, IA, USA
+Event description: Burial of Carr, Zelpha Josephine
+Participant (Primary): Zelpha Josephine Carr (Gramps ID: I1119)
+
+Type: event
+Gramps ID: E0206
+Event type: Birth
+Event date: 1959-10-23
+Event location: Salina, Saline, KS, USA
+Event description: Birth of Flores, Jamie Lee
+Participant (Primary): Jamie Lee Flores (Gramps ID: I0112)
+
+Type: event
+Gramps ID: E0207
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jamie Lee Flores (Gramps ID: I0112)
+
+Type: event
+Gramps ID: E0208
+Event type: Birth
+Event date: 1860-11-01
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Garner, Iola Elizabeth Betty
+Participant (Primary): Iola Elizabeth Betty Garner (Gramps ID: I1121)
+
+Type: event
+Gramps ID: E0209
+Event type: Death
+Event date: 1941-04-17
+Event location: Killeen, Bell, TX, USA
+Event description: Death of Garner, Iola Elizabeth Betty
+Participant (Primary): Iola Elizabeth Betty Garner (Gramps ID: I1121)
+
+Type: event
+Gramps ID: E0210
+Event type: Burial
+Event date: 1941-04-19
+Event location: College Station, Brazos, TX, USA
+Event description: Burial of Garner, Iola Elizabeth Betty
+Participant (Primary): Iola Elizabeth Betty Garner (Gramps ID: I1121)
+
+Type: event
+Gramps ID: E0211
+Event type: Birth
+Event date: 1863-04-04
+Event location: Paragould, Greene, AR, USA
+Event description: Birth of Garner, Robert F.
+Participant (Primary): Robert F. Garner (Gramps ID: I1123)
+
+Type: event
+Gramps ID: E0212
+Event type: Death
+Event date: 1940-02-17
+Event location: Marshalltown, Marshall, IA, USA
+Event description: Death of Garner, Robert F.
+Participant (Primary): Robert F. Garner (Gramps ID: I1123)
+
+Type: event
+Gramps ID: E0213
+Event type: Burial
+Event date: 1940-02-19
+Event location: Denver-Aurora, CO, USA
+Event description: Burial of Garner, Robert F.
+Participant (Primary): Robert F. Garner (Gramps ID: I1123)
+
+Type: event
+Gramps ID: E0214
+Event type: Birth
+Event date: 1868-08-18
+Event description: Birth of Garner, Emma A.
+Participant (Primary): Emma A. Garner (Gramps ID: I1125)
+
+Type: event
+Gramps ID: E0215
+Event type: Death
+Event date: 1869-02-23
+Event description: Death of Garner, Emma A.
+Participant (Primary): Emma A. Garner (Gramps ID: I1125)
+
+Type: event
+Gramps ID: E0216
+Event type: Burial
+Event date: 1869-02
+Event location: Storm Lake, Buena Vista, IA, USA
+Event description: Burial of Garner, Emma A.
+Participant (Primary): Emma A. Garner (Gramps ID: I1125)
+
+Type: event
+Gramps ID: E0217
+Event type: Birth
+Event date: 1870-06-13
+Event location: Centralia, WA, USA
+Event description: Birth of Garner, Anetta
+Participant (Primary): Anetta Garner (Gramps ID: I1126)
+
+Type: event
+Gramps ID: E0218
+Event type: Death
+Event date: 1900-10-04
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Death of Garner, Anetta
+Participant (Primary): Anetta Garner (Gramps ID: I1126)
+
+Type: event
+Gramps ID: E0219
+Event type: Burial
+Event date: 1900-10
+Event location: Storm Lake, Buena Vista, IA, USA
+Event description: Burial of Garner, Anetta
+Participant (Primary): Anetta Garner (Gramps ID: I1126)
+
+Type: event
+Gramps ID: E0220
+Event type: Birth
+Event date: 1870-06-13
+Event location: Starkville, MS, USA
+Event description: Birth of Garner, Antoinette
+Participant (Primary): Antoinette Garner (Gramps ID: I1128)
+
+Type: event
+Gramps ID: E0221
+Event type: Death
+Event date: vor 1880
+Event description: Death of Garner, Antoinette
+Participant (Primary): Antoinette Garner (Gramps ID: I1128)
+
+Type: event
+Gramps ID: E0222
+Event type: Birth
+Event location: Crowley, Acadia, LA, USA
+Event description: Birth of Rhodes, Catherine
+Participant (Primary): Catherine Rhodes (Gramps ID: I1129)
+
+Type: event
+Gramps ID: E0223
+Event type: Death
+Event location: Crowley, Acadia, LA, USA
+Event description: Death of Rhodes, Catherine
+Participant (Primary): Catherine Rhodes (Gramps ID: I1129)
+
+Type: event
+Gramps ID: E0224
+Event type: Birth
+Event date: 1987-06-13
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Warner, Melissa Lee
+Participant (Primary): Melissa Lee Warner (Gramps ID: I0113)
+
+Type: event
+Gramps ID: E0225
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Melissa Lee Warner (Gramps ID: I0113)
+
+Type: event
+Gramps ID: E0226
+Event type: Birth
+Event date: 1847-06-28
+Event location: El Campo, Wharton, TX, USA
+Event description: Birth of Reed, Edward
+Participant (Primary): Edward Reed (Gramps ID: I1132)
+
+Type: event
+Gramps ID: E0227
+Event type: Death
+Event date: 1892-03-05
+Event location: Plymouth, Marshall, IN, USA
+Event description: Death of Reed, Edward
+Participant (Primary): Edward Reed (Gramps ID: I1132)
+
+Type: event
+Gramps ID: E0228
+Event type: Birth
+Event location: Jacksonville, NC, USA
+Event description: Birth of Reed, Ellen
+Participant (Primary): Ellen Reed (Gramps ID: I1133)
+
+Type: event
+Gramps ID: E0229
+Event type: Birth
+Event location: Gadsden, Etowah, AL, USA
+Event description: Birth of Reed, Sarah
+Participant (Primary): Sarah Reed (Gramps ID: I1134)
+
+Type: event
+Gramps ID: E0230
+Event type: Birth
+Event date: 1842-01-09
+Event location: Gulfport, MS, USA
+Event description: Birth of Reed, Catherine
+Participant (Primary): Catherine Reed (Gramps ID: I1135)
+
+Type: event
+Gramps ID: E0231
+Event type: Death
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Reed, Catherine
+Participant (Primary): Catherine Reed (Gramps ID: I1135)
+
+Type: event
+Gramps ID: E0232
+Event type: Birth
+Event date: 1836-02-22
+Event location: Mount Sterling, Montgomery, KY, USA
+Event description: Birth of Reed, Patrick
+Participant (Primary): Patrick Reed (Gramps ID: I1136)
+
+Type: event
+Gramps ID: E0233
+Event type: Death
+Event location: Decatur, Morgan, AL, USA
+Event description: Death of Reed, Patrick
+Participant (Primary): Patrick Reed (Gramps ID: I1136)
+
+Type: event
+Gramps ID: E0234
+Event type: Death
+Event date: 1941-02-16
+Event description: Death of äŒè€, Mary
+Participant (Primary): Mary äŒè€ (Gramps ID: I1137)
+
+Type: event
+Gramps ID: E0235
+Event type: Birth
+Event date: 1858
+Event description: Birth of ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+Participant (Primary): Katherine ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ (Gramps ID: I1139)
+
+Type: event
+Gramps ID: E0236
+Event type: Death
+Event date: 1913-09-02
+Event location: Hutchinson, Reno, KS, USA
+Event description: Death of ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+Participant (Primary): Katherine ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ (Gramps ID: I1139)
+
+Type: event
+Gramps ID: E0237
+Event type: Birth
+Event date: 1958-09-30
+Event description: Birth of Gosselin, Martin Kelly
+Participant (Primary): Martin Kelly Gosselin (Gramps ID: I0114)
+
+Type: event
+Gramps ID: E0238
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Martin Kelly Gosselin (Gramps ID: I0114)
+
+Type: event
+Gramps ID: E0239
+Event type: Death
+Event date: 1922-12-30
+Event location: Tyler, Smith, TX, USA
+Event description: Death of Bernier, Margaret
+Participant (Primary): Margaret Bernier (Gramps ID: I1142)
+
+Type: event
+Gramps ID: E0240
+Event type: Birth
+Event date: 1590
+Event location: Burlington, Des Moines, IA, USA
+Event description: Birth of Kowalski, Hannah
+Participant (Primary): Hannah Kowalski (Gramps ID: I1144)
+
+Type: event
+Gramps ID: E0241
+Event type: Death
+Event location: Allegan, MI, USA
+Event description: Death of Kowalski, Hannah
+Participant (Primary): Hannah Kowalski (Gramps ID: I1144)
+
+Type: event
+Gramps ID: E0242
+Event type: Birth
+Event date: 1560
+Event description: Birth of Kowalski, John
+Participant (Primary): John Kowalski (Gramps ID: I1145)
+
+Type: event
+Gramps ID: E0243
+Event type: Death
+Event date: 1630-08-30
+Event location: Burlington, Des Moines, IA, USA
+Event description: Death of Kowalski, John
+Participant (Primary): John Kowalski (Gramps ID: I1145)
+
+Type: event
+Gramps ID: E0244
+Event type: Birth
+Event location: Burlington, Des Moines, IA, USA
+Event description: Birth of Wells, Alice
+Participant (Primary): Alice Wells (Gramps ID: I1146)
+
+Type: event
+Gramps ID: E0245
+Event type: Death
+Event date: 1653-11-08
+Event location: McAlester, OK, USA
+Event description: Death of Wells, Alice
+Participant (Primary): Alice Wells (Gramps ID: I1146)
+
+Type: event
+Gramps ID: E0246
+Event type: Birth
+Event location: Decatur, Morgan, AL, USA
+Event description: Birth of Kowalski, Thomas
+Participant (Primary): Thomas Kowalski (Gramps ID: I1147)
+
+Type: event
+Gramps ID: E0247
+Event type: Birth
+Event location: Decatur, Morgan, AL, USA
+Event description: Birth of Santos, Alice
+Participant (Primary): Alice Santos (Gramps ID: I1148)
+
+Type: event
+Gramps ID: E0248
+Event type: Birth
+Event date: 1526
+Event location: McAlester, OK, USA
+Event description: Birth of Ramos, John
+Participant (Primary): John Ramos (Gramps ID: I1149)
+
+Type: event
+Gramps ID: E0249
+Event type: Birth
+Event date: 1983-08-02
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Birth of Gosselin, David Martin
+Participant (Primary): David Martin Gosselin (Gramps ID: I0115)
+
+Type: event
+Gramps ID: E0250
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Martin Gosselin (Gramps ID: I0115)
+
+Type: event
+Gramps ID: E0251
+Event type: Birth
+Event date: um 1478
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Birth of Curtis, Margaret
+Participant (Primary): Margaret Curtis (Gramps ID: I1150)
+
+Type: event
+Gramps ID: E0252
+Event type: Birth
+Event date: um 1460
+Event location: Deming, NM, USA
+Event description: Birth of Gibbs, Margaret
+Participant (Primary): Margaret Gibbs (Gramps ID: I1153)
+
+Type: event
+Gramps ID: E0253
+Event type: Birth
+Event date: 1450
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Birth of Molina, Robert
+Participant (Primary): Robert Molina (Gramps ID: I1154)
+
+Type: event
+Gramps ID: E0254
+Event type: Birth
+Event date: 1430
+Event description: Birth of Guerrero, Robert
+Participant (Primary): Robert Guerrero (Gramps ID: I1155)
+
+Type: event
+Gramps ID: E0255
+Event type: Birth
+Event date: um 1405
+Event description: Birth of Guerrero, Robert
+Participant (Primary): Robert Guerrero (Gramps ID: I1156)
+
+Type: event
+Gramps ID: E0256
+Event type: Birth
+Event date: um 1380
+Event description: Birth of Guerrero, Walter
+Participant (Primary): Walter Guerrero (Gramps ID: I1157)
+
+Type: event
+Gramps ID: E0257
+Event type: Birth
+Event date: um 1350
+Event description: Birth of Guerrero, Walter
+Participant (Primary): Walter Guerrero (Gramps ID: I1158)
+
+Type: event
+Gramps ID: E0258
+Event type: Birth
+Event date: 1985-10-03
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Gosselin, Joel Thomas
+Participant (Primary): Joel Thomas Gosselin (Gramps ID: I0116)
+
+Type: event
+Gramps ID: E0259
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joel Thomas Gosselin (Gramps ID: I0116)
+
+Type: event
+Gramps ID: E0260
+Event type: Birth
+Event date: um 1669
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Vaughn, Mary Meriwether
+Participant (Primary): Mary Meriwether Vaughn (Gramps ID: I1161)
+
+Type: event
+Gramps ID: E0261
+Event type: Death
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Death of Vaughn, Mary Meriwether
+Participant (Primary): Mary Meriwether Vaughn (Gramps ID: I1161)
+
+Type: event
+Gramps ID: E0262
+Event type: Birth
+Event date: um 1647
+Event description: Birth of Murray, Susannah
+Participant (Primary): Susannah Murray (Gramps ID: I1162)
+
+Type: event
+Gramps ID: E0263
+Event type: Birth
+Event date: um 1632
+Event description: Birth of Mazur, Elizabeth
+Participant (Primary): Elizabeth Mazur (Gramps ID: I1163)
+
+Type: event
+Gramps ID: E0264
+Event type: Death
+Event location: Greenville, SC, USA
+Event description: Death of Mazur, Elizabeth
+Participant (Primary): Elizabeth Mazur (Gramps ID: I1163)
+
+Type: event
+Gramps ID: E0265
+Event type: Birth
+Event date: um 1606
+Event description: Birth of Mazur, William
+Participant (Primary): William Mazur (Gramps ID: I1164)
+
+Type: event
+Gramps ID: E0266
+Event type: Birth
+Event date: um 1610
+Event description: Birth of Crawford, Margaret
+Participant (Primary): Margaret Crawford (Gramps ID: I1165)
+
+Type: event
+Gramps ID: E0267
+Event type: Death
+Event date: vor 1669
+Event location: Greenville, SC, USA
+Event description: Death of Crawford, Margaret
+Participant (Primary): Margaret Crawford (Gramps ID: I1165)
+
+Type: event
+Gramps ID: E0268
+Event type: Birth
+Event date: um 1599
+Event location: Las Vegas, NM, USA
+Event description: Birth of Reynolds, John
+Participant (Primary): John Reynolds (Gramps ID: I1166)
+
+Type: event
+Gramps ID: E0269
+Event type: Death
+Event location: Corning, Steuben, NY, USA
+Event description: Death of Reynolds, John
+Participant (Primary): John Reynolds (Gramps ID: I1166)
+
+Type: event
+Gramps ID: E0270
+Event type: Birth
+Event date: um 1604
+Event location: McAlester, OK, USA
+Event description: Birth of ĐĐŸĐČалДĐČ, Sarah
+Participant (Primary): Sarah ĐĐŸĐČалДĐČ (Gramps ID: I1167)
+
+Type: event
+Gramps ID: E0271
+Event type: Death
+Event location: Las Vegas, NM, USA
+Event description: Death of ĐĐŸĐČалДĐČ, Sarah
+Participant (Primary): Sarah ĐĐŸĐČалДĐČ (Gramps ID: I1167)
+
+Type: event
+Gramps ID: E0272
+Event type: Birth
+Event location: Grenada, MS, USA
+Event description: Birth of Goodman, Ralph
+Participant (Primary): Ralph Goodman (Gramps ID: I1169)
+
+Type: event
+Gramps ID: E0273
+Event type: Burial
+Event date: 1626-06-25
+Event location: Milwaukee, WI, USA
+Event description: Burial of Goodman, Ralph
+Participant (Primary): Ralph Goodman (Gramps ID: I1169)
+
+Type: event
+Gramps ID: E0274
+Event type: Birth
+Event date: 1988-07-10
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Gosselin, Andrea Lynn
+Participant (Primary): Andrea Lynn Gosselin (Gramps ID: I0117)
+
+Type: event
+Gramps ID: E0275
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrea Lynn Gosselin (Gramps ID: I0117)
+
+Type: event
+Gramps ID: E0276
+Event type: Birth
+Event location: Connersville, Fayette, IN, USA
+Event description: Birth of Powell, Martha
+Participant (Primary): Martha Powell (Gramps ID: I1170)
+
+Type: event
+Gramps ID: E0277
+Event type: Burial
+Event date: 1611-01-11
+Event location: Milwaukee, WI, USA
+Event description: Burial of Powell, Martha
+Participant (Primary): Martha Powell (Gramps ID: I1170)
+
+Type: event
+Gramps ID: E0278
+Event type: Birth
+Event date: um 1566
+Event location: Las Vegas, NM, USA
+Event description: Birth of Reynolds, John
+Participant (Primary): John Reynolds (Gramps ID: I1171)
+
+Type: event
+Gramps ID: E0279
+Event type: Birth
+Event location: Wisconsin Rapids, WI, USA
+Event description: Birth of Stevens, Elizabeth
+Participant (Primary): Elizabeth Stevens (Gramps ID: I1172)
+
+Type: event
+Gramps ID: E0280
+Event type: Birth
+Event date: um 1617
+Event description: Birth of Murray, Nicholas
+Participant (Primary): Nicholas Murray (Gramps ID: I1173)
+
+Type: event
+Gramps ID: E0281
+Event type: Birth
+Event date: 1727
+Event location: Pueblo, Pueblo, CO, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, William
+Participant (Primary): William ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1175)
+
+Type: event
+Gramps ID: E0282
+Event type: Death
+Event date: 1766-05-12
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, William
+Participant (Primary): William ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1175)
+
+Type: event
+Gramps ID: E0283
+Event type: Birth
+Event date: um 1729
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Charles
+Participant (Primary): Charles ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1178)
+
+Type: event
+Gramps ID: E0284
+Event type: Death
+Event date: um 1786
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Charles
+Participant (Primary): Charles ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1178)
+
+Type: event
+Gramps ID: E0285
+Event type: Birth
+Event date: um 1731
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Mary
+Participant (Primary): Mary ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1179)
+
+Type: event
+Gramps ID: E0286
+Event type: Birth
+Event date: 1950-10-30
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Hale, Lawrence Paul
+Participant (Primary): Lawrence Paul Hale (Gramps ID: I0118)
+
+Type: event
+Gramps ID: E0287
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lawrence Paul Hale (Gramps ID: I0118)
+
+Type: event
+Gramps ID: E0288
+Event type: Birth
+Event date: um 1733
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Lucy
+Participant (Primary): Lucy ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1181)
+
+Type: event
+Gramps ID: E0289
+Event type: Birth
+Event date: um 1737
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Isaac
+Participant (Primary): Isaac ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1183)
+
+Type: event
+Gramps ID: E0290
+Event type: Death
+Event date: 1807
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Isaac
+Participant (Primary): Isaac ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1183)
+
+Type: event
+Gramps ID: E0291
+Event type: Birth
+Event date: um 1739
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Lazarus
+Participant (Primary): Lazarus ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1184)
+
+Type: event
+Gramps ID: E0292
+Event type: Death
+Event date: 1762
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Lazarus
+Participant (Primary): Lazarus ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1184)
+
+Type: event
+Gramps ID: E0293
+Event type: Birth
+Event date: um 1741
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, James
+Participant (Primary): James ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1185)
+
+Type: event
+Gramps ID: E0294
+Event type: Death
+Event date: um 1778
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, James
+Participant (Primary): James ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1185)
+
+Type: event
+Gramps ID: E0295
+Event type: Birth
+Event date: nach 1626
+Event location: Akron, OH, USA
+Event description: Birth of Bishop, Quirinus
+Participant (Primary): Quirinus Bishop (Gramps ID: I1187)
+
+Type: event
+Gramps ID: E0296
+Event type: Death
+Event date: 1683-05-17
+Event location: Akron, OH, USA
+Event description: Death of Bishop, Quirinus
+Participant (Primary): Quirinus Bishop (Gramps ID: I1187)
+
+Type: event
+Gramps ID: E0297
+Event type: Birth
+Event date: um 1626
+Event location: Akron, OH, USA
+Event description: Birth of Simmons, Maria
+Participant (Primary): Maria Simmons (Gramps ID: I1188)
+
+Type: event
+Gramps ID: E0298
+Event type: Birth
+Event date: 1975-07-17
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Hale, Joseph Brendan
+Participant (Primary): Joseph Brendan Hale (Gramps ID: I0119)
+
+Type: event
+Gramps ID: E0299
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joseph Brendan Hale (Gramps ID: I0119)
+
+Type: event
+Gramps ID: E0300
+Event type: Birth
+Event date: 1620
+Event location: Hannibal, MO, USA
+Event description: Birth of Swanson, William
+Participant (Primary): William Swanson (Gramps ID: I1197)
+
+Type: event
+Gramps ID: E0301
+Event type: Death
+Event date: 1684-10-15
+Event location: Mobile, Mobile, AL, USA
+Event description: Death of Swanson, William
+Participant (Primary): William Swanson (Gramps ID: I1197)
+
+Type: event
+Gramps ID: E0302
+Event type: Birth
+Event location: Flagstaff, Coconino, AZ, USA
+Event description: Birth of Swanson, Richard
+Participant (Primary): Richard Swanson (Gramps ID: I1199)
+
+Type: event
+Gramps ID: E0303
+Event type: Death
+Event location: St, Marys, St, Marys, PA, USA
+Event description: Death of Swanson, Richard
+Participant (Primary): Richard Swanson (Gramps ID: I1199)
+
+Type: event
+Gramps ID: E0304
+Event type: Birth
+Event date: 1954-01-24
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Warner, Arthur Maurice
+Participant (Primary): Arthur Maurice Warner (Gramps ID: I0012)
+
+Type: event
+Gramps ID: E0305
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Arthur Maurice Warner (Gramps ID: I0012)
+
+Type: event
+Gramps ID: E0306
+Event type: Birth
+Event date: 1977-07-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Hale, Michael Patrick
+Participant (Primary): Michael Patrick Hale (Gramps ID: I0120)
+
+Type: event
+Gramps ID: E0307
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Patrick Hale (Gramps ID: I0120)
+
+Type: event
+Gramps ID: E0308
+Event type: Birth
+Event date: um 1530
+Event location: Kennewick, WA, USA
+Event description: Birth of Diaz, William (Rev.)
+Participant (Primary): William (Rev.) Diaz (Gramps ID: I1201)
+
+Type: event
+Gramps ID: E0309
+Event type: Death
+Event date: um 1587-10-12
+Event location: McAlester, OK, USA
+Event description: Death of Diaz, William (Rev.)
+Participant (Primary): William (Rev.) Diaz (Gramps ID: I1201)
+
+Type: event
+Gramps ID: E0310
+Event type: Death
+Event date: 1631-02-01
+Event location: Redding, Shasta, CA, USA
+Event description: Death of Diaz, John
+Participant (Primary): John Diaz (Gramps ID: I1207)
+
+Type: event
+Gramps ID: E0311
+Event type: Birth
+Event date: 1982-10-03
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Hale, Gina Marie
+Participant (Primary): Gina Marie Hale (Gramps ID: I0121)
+
+Type: event
+Gramps ID: E0312
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gina Marie Hale (Gramps ID: I0121)
+
+Type: event
+Gramps ID: E0313
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Holly Ruth ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1215)
+
+Type: event
+Gramps ID: E0314
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1216)
+
+Type: event
+Gramps ID: E0315
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Candy ĐĄĐŸŃĐŸĐșĐžĐœ (Gramps ID: I1217)
+
+Type: event
+Gramps ID: E0316
+Event type: Birth
+Event date: 1988-12-23
+Event location: Jefferson City, MO, USA
+Event description: Birth of Hale, Jeffrey Brian
+Participant (Primary): Jeffrey Brian Hale (Gramps ID: I0122)
+
+Type: event
+Gramps ID: E0317
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffrey Brian Hale (Gramps ID: I0122)
+
+Type: event
+Gramps ID: E0318
+Event type: Birth
+Event location: Niles, MI, USA
+Event description: Birth of Webb, Sallie
+Participant (Primary): Sallie Webb (Gramps ID: I1222)
+
+Type: event
+Gramps ID: E0319
+Event type: Birth
+Event date: 1803
+Event location: Niles, MI, USA
+Event description: Birth of Webb, Mary
+Participant (Primary): Mary Webb (Gramps ID: I1223)
+
+Type: event
+Gramps ID: E0320
+Event type: Birth
+Event date: 1827-01-31
+Event location: Greenwood, SC, USA
+Event description: Birth of Webb, Mary
+Participant (Primary): Mary Webb (Gramps ID: I1228)
+
+Type: event
+Gramps ID: E0321
+Event type: Birth
+Event date: 1829-07-14
+Event location: Rockingham, NC, USA
+Event description: Birth of Webb, William John
+Participant (Primary): William John Webb (Gramps ID: I1229)
+
+Type: event
+Gramps ID: E0322
+Event type: Death
+Event date: 1888-04-17
+Event description: Death of Webb, William John
+Participant (Primary): William John Webb (Gramps ID: I1229)
+
+Type: event
+Gramps ID: E0323
+Event type: Birth
+Event date: 1957-01-31
+Event description: Birth of George, Elizabeth
+Participant (Primary): Elizabeth George (Gramps ID: I0123)
+
+Type: event
+Gramps ID: E0324
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elizabeth George (Gramps ID: I0123)
+
+Type: event
+Gramps ID: E0325
+Event type: Birth
+Event date: 1832
+Event location: Rockingham, NC, USA
+Event description: Birth of Webb, Sarah Margarite
+Participant (Primary): Sarah Margarite Webb (Gramps ID: I1230)
+
+Type: event
+Gramps ID: E0326
+Event type: Birth
+Event date: 1834
+Event location: Rockingham, NC, USA
+Event description: Birth of Webb, Charles Leroy Boyd
+Participant (Primary): Charles Leroy Boyd Webb (Gramps ID: I1231)
+
+Type: event
+Gramps ID: E0327
+Event type: Birth
+Event date: 1837
+Event location: Decatur, Adams, IN, USA
+Event description: Birth of Webb, John McCrea
+Participant (Primary): John McCrea Webb (Gramps ID: I1232)
+
+Type: event
+Gramps ID: E0328
+Event type: Birth
+Event location: Sault Ste, MI, USA
+Event description: Birth of Webb, James McPheeters
+Participant (Primary): James McPheeters Webb (Gramps ID: I1233)
+
+Type: event
+Gramps ID: E0329
+Event type: Birth
+Event date: 1842-10-13
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Webb, Newton Kitridge
+Participant (Primary): Newton Kitridge Webb (Gramps ID: I1234)
+
+Type: event
+Gramps ID: E0330
+Event type: Death
+Event date: 1912-07-28
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Death of Webb, Newton Kitridge
+Participant (Primary): Newton Kitridge Webb (Gramps ID: I1234)
+
+Type: event
+Gramps ID: E0331
+Event type: Burial
+Event date: 1912-07-30
+Event location: Seaford, Sussex, DE, USA
+Event description: Burial of Webb, Newton Kitridge
+Participant (Primary): Newton Kitridge Webb (Gramps ID: I1234)
+
+Type: event
+Gramps ID: E0332
+Event type: Birth
+Event location: Canton, Fulton, IL, USA
+Event description: Birth of ĐĐ°ĐșĐ°ŃĐŸĐČ, Joseph
+Participant (Primary): Joseph ĐĐ°ĐșĐ°ŃĐŸĐČ (Gramps ID: I1235)
+
+Type: event
+Gramps ID: E0333
+Event type: Birth
+Event date: 1856-12-04
+Event location: Eau Claire, WI, USA
+Event description: Birth of Webb, James Marshall
+Participant (Primary): James Marshall Webb (Gramps ID: I1239)
+
+Type: event
+Gramps ID: E0334
+Event type: Death
+Event date: 1938-08-04
+Event location: Pullman, WA, USA
+Event description: Death of Webb, James Marshall
+Participant (Primary): James Marshall Webb (Gramps ID: I1239)
+
+Type: event
+Gramps ID: E0335
+Event type: Burial
+Event date: 1938-08-06
+Event location: Seaford, Sussex, DE, USA
+Event description: Burial of Webb, James Marshall
+Participant (Primary): James Marshall Webb (Gramps ID: I1239)
+
+Type: event
+Gramps ID: E0336
+Event type: Birth
+Event date: 1983-10-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Stephen Gerard
+Participant (Primary): Stephen Gerard Garner (Gramps ID: I0124)
+
+Type: event
+Gramps ID: E0337
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stephen Gerard Garner (Gramps ID: I0124)
+
+Type: event
+Gramps ID: E0338
+Event type: Birth
+Event date: 1901-09-23
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Charles Edward
+Participant (Primary): Charles Edward Webb (Gramps ID: I1240)
+
+Type: event
+Gramps ID: E0339
+Event type: Birth
+Event date: 1861-10-19
+Event description: Birth of Ballard, Judith Ellen
+Participant (Primary): Judith Ellen Ballard (Gramps ID: I1241)
+
+Type: event
+Gramps ID: E0340
+Event type: Death
+Event date: 1903-05-20
+Event description: Death of Ballard, Judith Ellen
+Participant (Primary): Judith Ellen Ballard (Gramps ID: I1241)
+
+Type: event
+Gramps ID: E0341
+Event type: Birth
+Event date: 1881-10-27
+Event location: Pullman, WA, USA
+Event description: Birth of Webb, William Herman
+Participant (Primary): William Herman Webb (Gramps ID: I1242)
+
+Type: event
+Gramps ID: E0342
+Event type: Death
+Event date: 1952-08-23
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Webb, William Herman
+Participant (Primary): William Herman Webb (Gramps ID: I1242)
+
+Type: event
+Gramps ID: E0343
+Event type: Birth
+Event date: 1925
+Event location: Eau Claire, WI, USA
+Event description: Birth of Webb, Noble A.
+Participant (Primary): Noble A. Webb (Gramps ID: I1243)
+
+Type: event
+Gramps ID: E0344
+Event type: Death
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Webb, Noble A.
+Participant (Primary): Noble A. Webb (Gramps ID: I1243)
+
+Type: event
+Gramps ID: E0345
+Event type: Birth
+Event date: 1985-02-11
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Daniel Patrick
+Participant (Primary): Daniel Patrick Garner (Gramps ID: I0125)
+
+Type: event
+Gramps ID: E0346
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Daniel Patrick Garner (Gramps ID: I0125)
+
+Type: event
+Gramps ID: E0347
+Event type: Birth
+Event date: 1865
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Warner, unnamed girl
+Participant (Primary): unnamed girl Warner (Gramps ID: I1259)
+
+Type: event
+Gramps ID: E0348
+Event type: Death
+Event location: Palatka, Putnam, FL, USA
+Event description: Death of Warner, unnamed girl
+Participant (Primary): unnamed girl Warner (Gramps ID: I1259)
+
+Type: event
+Gramps ID: E0349
+Event type: Birth
+Event date: 1913-10-29
+Event location: Lancaster, PA, USA
+Event description: Birth of Warner, Michael Warren
+Participant (Primary): Michael Warren Warner (Gramps ID: I0126)
+
+Type: event
+Gramps ID: E0350
+Event type: Death
+Event date: 1983-01-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Warner, Michael Warren
+Participant (Primary): Michael Warren Warner (Gramps ID: I0126)
+
+Type: event
+Gramps ID: E0351
+Event type: Birth
+Event date: 1921-05-19
+Event location: Portland, ME, USA
+Event description: Birth of Warner, David Luther
+Participant (Primary): David Luther Warner (Gramps ID: I0127)
+
+Type: event
+Gramps ID: E0352
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Luther Warner (Gramps ID: I0127)
+
+Type: event
+Gramps ID: E0353
+Event type: Birth
+Event date: 1777
+Event description: Birth of Farmer, Jacob
+Participant (Primary): Jacob Farmer (Gramps ID: I1273)
+
+Type: event
+Gramps ID: E0354
+Event type: Birth
+Event date: 1788
+Event description: Birth of ĐĐŸŃĐŸĐ·ĐŸĐČ, Mary Elizabeth
+Participant (Primary): Mary Elizabeth ĐĐŸŃĐŸĐ·ĐŸĐČ (Gramps ID: I1274)
+
+Type: event
+Gramps ID: E0355
+Event type: Birth
+Event date: 1742
+Event description: Birth of Beaulieu, Johann Simon
+Participant (Primary): Johann Simon Beaulieu (Gramps ID: I1275)
+
+Type: event
+Gramps ID: E0356
+Event type: Birth
+Event date: 1754
+Event description: Birth of ĐŃĐžĐłĐŸŃŃĐ”ĐČ, Anna Maria
+Participant (Primary): Anna Maria ĐŃĐžĐłĐŸŃŃĐ”ĐČ (Gramps ID: I1276)
+
+Type: event
+Gramps ID: E0357
+Event type: Birth
+Event date: 1711
+Event description: Birth of Beaulieu, Johann Michael
+Participant (Primary): Johann Michael Beaulieu (Gramps ID: I1277)
+
+Type: event
+Gramps ID: E0358
+Event type: Birth
+Event date: 1715
+Event description: Birth of LĂłpez, Anna Elisabeth
+Participant (Primary): Anna Elisabeth LĂłpez (Gramps ID: I1278)
+
+Type: event
+Gramps ID: E0359
+Event type: Birth
+Event date: 1682
+Event location: Jennings, Jefferson Davis, LA, USA
+Event description: Birth of Beaulieu, Johann Simon
+Participant (Primary): Johann Simon Beaulieu (Gramps ID: I1279)
+
+Type: event
+Gramps ID: E0360
+Event type: Birth
+Event date: 1922-08-22
+Event location: Portland, ME, USA
+Event description: Birth of Warner, Donald Louis
+Participant (Primary): Donald Louis Warner (Gramps ID: I0128)
+
+Type: event
+Gramps ID: E0361
+Event type: Death
+Event date: 1979-08-09
+Event location: Palatka, Putnam, FL, USA
+Event description: Death of Warner, Donald Louis
+Participant (Primary): Donald Louis Warner (Gramps ID: I0128)
+
+Type: event
+Gramps ID: E0362
+Event type: Birth
+Event date: 1685
+Event description: Birth of Holland, Anna Margaretha
+Participant (Primary): Anna Margaretha Holland (Gramps ID: I1280)
+
+Type: event
+Gramps ID: E0363
+Event type: Birth
+Event date: 1815
+Event description: Birth of Farmer, Simon
+Participant (Primary): Simon Farmer (Gramps ID: I1281)
+
+Type: event
+Gramps ID: E0364
+Event type: Death
+Event date: 1875
+Event description: Death of Farmer, Simon
+Participant (Primary): Simon Farmer (Gramps ID: I1281)
+
+Type: event
+Gramps ID: E0365
+Event type: Birth
+Event date: 1815
+Event description: Birth of ĐĐ°ŃĐ°ĐœĐŸĐČ, Susan
+Participant (Primary): Susan ĐĐ°ŃĐ°ĐœĐŸĐČ (Gramps ID: I1282)
+
+Type: event
+Gramps ID: E0366
+Event type: Birth
+Event date: 1818
+Event description: Birth of Farmer, Caroline
+Participant (Primary): Caroline Farmer (Gramps ID: I1283)
+
+Type: event
+Gramps ID: E0367
+Event type: Birth
+Event date: 1832
+Event description: Birth of Farmer, Magdalena
+Participant (Primary): Magdalena Farmer (Gramps ID: I1287)
+
+Type: event
+Gramps ID: E0368
+Event type: Birth
+Event date: 1779
+Event description: Birth of Farmer, Valentine
+Participant (Primary): Valentine Farmer (Gramps ID: I1288)
+
+Type: event
+Gramps ID: E0369
+Event type: Death
+Event date: 1833
+Event description: Death of Farmer, Valentine
+Participant (Primary): Valentine Farmer (Gramps ID: I1288)
+
+Type: event
+Gramps ID: E0370
+Event type: Birth
+Event date: 1923-10-08
+Event location: Portland, ME, USA
+Event description: Birth of Warner, Robert Eugene
+Participant (Primary): Robert Eugene Warner (Gramps ID: I0129)
+
+Type: event
+Gramps ID: E0371
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert Eugene Warner (Gramps ID: I0129)
+
+Type: event
+Gramps ID: E0372
+Event type: Birth
+Event date: 1789
+Event description: Birth of Bradley, Mary
+Participant (Primary): Mary Bradley (Gramps ID: I1291)
+
+Type: event
+Gramps ID: E0373
+Event type: Birth
+Event date: 1784
+Event description: Birth of Farmer, Susanna
+Participant (Primary): Susanna Farmer (Gramps ID: I1292)
+
+Type: event
+Gramps ID: E0374
+Event type: Birth
+Event date: 1780
+Event description: Birth of Taylor, Jacob
+Participant (Primary): Jacob Taylor (Gramps ID: I1293)
+
+Type: event
+Gramps ID: E0375
+Event type: Birth
+Event date: 1786
+Event description: Birth of Farmer, Anna Marie
+Participant (Primary): Anna Marie Farmer (Gramps ID: I1294)
+
+Type: event
+Gramps ID: E0376
+Event type: Birth
+Event date: 1790
+Event description: Birth of Farmer, Peter Simon
+Participant (Primary): Peter Simon Farmer (Gramps ID: I1296)
+
+Type: event
+Gramps ID: E0377
+Event type: Death
+Event date: 1845
+Event description: Death of Farmer, Peter Simon
+Participant (Primary): Peter Simon Farmer (Gramps ID: I1296)
+
+Type: event
+Gramps ID: E0378
+Event type: Birth
+Event date: 1792
+Event description: Birth of Farmer, Elizabeth
+Participant (Primary): Elizabeth Farmer (Gramps ID: I1298)
+
+Type: event
+Gramps ID: E0379
+Event type: Birth
+Event date: 1956-11-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Warner, Fred Loren
+Participant (Primary): Fred Loren Warner (Gramps ID: I0013)
+
+Type: event
+Gramps ID: E0380
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Fred Loren Warner (Gramps ID: I0013)
+
+Type: event
+Gramps ID: E0381
+Event type: Birth
+Event date: 1925-01-17
+Event location: Portland, ME, USA
+Event description: Birth of Warner, Richard Kenneth
+Participant (Primary): Richard Kenneth Warner (Gramps ID: I0130)
+
+Type: event
+Gramps ID: E0382
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Richard Kenneth Warner (Gramps ID: I0130)
+
+Type: event
+Gramps ID: E0383
+Event type: Birth
+Event date: 1796
+Event description: Birth of Farmer, Eva
+Participant (Primary): Eva Farmer (Gramps ID: I1300)
+
+Type: event
+Gramps ID: E0384
+Event type: Death
+Event date: 1883
+Event description: Death of Farmer, Eva
+Participant (Primary): Eva Farmer (Gramps ID: I1300)
+
+Type: event
+Gramps ID: E0385
+Event type: Birth
+Event date: 1798
+Event description: Birth of Farmer, Catharine
+Participant (Primary): Catharine Farmer (Gramps ID: I1302)
+
+Type: event
+Gramps ID: E0386
+Event type: Birth
+Event date: 1775
+Event description: Birth of Farmer, Michael
+Participant (Primary): Michael Farmer (Gramps ID: I1304)
+
+Type: event
+Gramps ID: E0387
+Event type: Birth
+Event date: 1786
+Event description: Birth of Dubé, Elizabeth
+Participant (Primary): Elizabeth Dubé (Gramps ID: I1305)
+
+Type: event
+Gramps ID: E0388
+Event type: Birth
+Event date: 1738
+Event description: Birth of Beaulieu, Johann Adam
+Participant (Primary): Johann Adam Beaulieu (Gramps ID: I1306)
+
+Type: event
+Gramps ID: E0389
+Event type: Birth
+Event date: 1735
+Event description: Birth of Beaulieu, Johann Valentin
+Participant (Primary): Johann Valentin Beaulieu (Gramps ID: I1307)
+
+Type: event
+Gramps ID: E0390
+Event type: Birth
+Event date: 1742
+Event description: Birth of Morgan, Elisabeth Margaretha
+Participant (Primary): Elisabeth Margaretha Morgan (Gramps ID: I1308)
+
+Type: event
+Gramps ID: E0391
+Event type: Birth
+Event date: 1745
+Event description: Birth of Beaulieu, Johann Franciskus
+Participant (Primary): Johann Franciskus Beaulieu (Gramps ID: I1309)
+
+Type: event
+Gramps ID: E0392
+Event type: Death
+Event date: 1826
+Event description: Death of Beaulieu, Johann Franciskus
+Participant (Primary): Johann Franciskus Beaulieu (Gramps ID: I1309)
+
+Type: event
+Gramps ID: E0393
+Event type: Birth
+Event date: 1928-01-12
+Event location: Portland, ME, USA
+Event description: Birth of Walker, Andrew Vincent
+Participant (Primary): Andrew Vincent Walker (Gramps ID: I0131)
+
+Type: event
+Gramps ID: E0394
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrew Vincent Walker (Gramps ID: I0131)
+
+Type: event
+Gramps ID: E0395
+Event type: Birth
+Event date: 1752
+Event description: Birth of Barnett, Anna Gertrude
+Participant (Primary): Anna Gertrude Barnett (Gramps ID: I1310)
+
+Type: event
+Gramps ID: E0396
+Event type: Birth
+Event date: 1749
+Event description: Birth of Beaulieu, Anna Maria
+Participant (Primary): Anna Maria Beaulieu (Gramps ID: I1311)
+
+Type: event
+Gramps ID: E0397
+Event type: Death
+Event date: 1750
+Event description: Death of Beaulieu, Anna Maria
+Participant (Primary): Anna Maria Beaulieu (Gramps ID: I1311)
+
+Type: event
+Gramps ID: E0398
+Event type: Birth
+Event date: 1751
+Event description: Birth of Hicks, Anna Eva
+Participant (Primary): Anna Eva Hicks (Gramps ID: I1312)
+
+Type: event
+Gramps ID: E0399
+Event type: Death
+Event date: 1817
+Event description: Death of Hicks, Anna Eva
+Participant (Primary): Anna Eva Hicks (Gramps ID: I1312)
+
+Type: event
+Gramps ID: E0400
+Event type: Birth
+Event date: 1746
+Event description: Birth of Frazier, Johann Adam
+Participant (Primary): Johann Adam Frazier (Gramps ID: I1313)
+
+Type: event
+Gramps ID: E0401
+Event type: Birth
+Event date: 1755
+Event description: Birth of Beaulieu, Anna Margaretha
+Participant (Primary): Anna Margaretha Beaulieu (Gramps ID: I1314)
+
+Type: event
+Gramps ID: E0402
+Event type: Death
+Event date: 1796
+Event description: Death of Beaulieu, Anna Margaretha
+Participant (Primary): Anna Margaretha Beaulieu (Gramps ID: I1314)
+
+Type: event
+Gramps ID: E0403
+Event type: Birth
+Event date: 1748
+Event description: Birth of Frazier, Johann Walter
+Participant (Primary): Johann Walter Frazier (Gramps ID: I1315)
+
+Type: event
+Gramps ID: E0404
+Event type: Birth
+Event date: 1706
+Event description: Birth of Beaulieu, Anna Elisabeth
+Participant (Primary): Anna Elisabeth Beaulieu (Gramps ID: I1316)
+
+Type: event
+Gramps ID: E0405
+Event type: Death
+Event date: 1772
+Event description: Death of Beaulieu, Anna Elisabeth
+Participant (Primary): Anna Elisabeth Beaulieu (Gramps ID: I1316)
+
+Type: event
+Gramps ID: E0406
+Event type: Birth
+Event date: 1708
+Event description: Birth of Beaulieu, Johann Valentin
+Participant (Primary): Johann Valentin Beaulieu (Gramps ID: I1318)
+
+Type: event
+Gramps ID: E0407
+Event type: Death
+Event date: 1802
+Event description: Death of Beaulieu, Johann Valentin
+Participant (Primary): Johann Valentin Beaulieu (Gramps ID: I1318)
+
+Type: event
+Gramps ID: E0408
+Event type: Birth
+Event date: 1712
+Event description: Birth of Frazier, Maria Margaretha
+Participant (Primary): Maria Margaretha Frazier (Gramps ID: I1319)
+
+Type: event
+Gramps ID: E0409
+Event type: Birth
+Event date: 1926-09-29
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Lessard, Dorothy Louise
+Participant (Primary): Dorothy Louise Lessard (Gramps ID: I0132)
+
+Type: event
+Gramps ID: E0410
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dorothy Louise Lessard (Gramps ID: I0132)
+
+Type: event
+Gramps ID: E0411
+Event type: Birth
+Event date: 1709
+Event description: Birth of Beaulieu, Anna Catharina
+Participant (Primary): Anna Catharina Beaulieu (Gramps ID: I1320)
+
+Type: event
+Gramps ID: E0412
+Event type: Birth
+Event date: 1715
+Event description: Birth of Beaulieu, Anna Maria
+Participant (Primary): Anna Maria Beaulieu (Gramps ID: I1321)
+
+Type: event
+Gramps ID: E0413
+Event type: Death
+Event date: 1762
+Event description: Death of Beaulieu, Anna Maria
+Participant (Primary): Anna Maria Beaulieu (Gramps ID: I1321)
+
+Type: event
+Gramps ID: E0414
+Event type: Birth
+Event date: 1705
+Event description: Birth of Hardy, Jakob
+Participant (Primary): Jakob Hardy (Gramps ID: I1322)
+
+Type: event
+Gramps ID: E0415
+Event type: Birth
+Event date: 1717
+Event description: Birth of Beaulieu, Johann Adam
+Participant (Primary): Johann Adam Beaulieu (Gramps ID: I1323)
+
+Type: event
+Gramps ID: E0416
+Event type: Death
+Event date: 1803
+Event description: Death of Beaulieu, Johann Adam
+Participant (Primary): Johann Adam Beaulieu (Gramps ID: I1323)
+
+Type: event
+Gramps ID: E0417
+Event type: Birth
+Event date: 1716
+Event description: Birth of Michaud, Anna Eva
+Participant (Primary): Anna Eva Michaud (Gramps ID: I1324)
+
+Type: event
+Gramps ID: E0418
+Event type: Birth
+Event date: 1719
+Event description: Birth of Beaulieu, Johann Theobald
+Participant (Primary): Johann Theobald Beaulieu (Gramps ID: I1325)
+
+Type: event
+Gramps ID: E0419
+Event type: Death
+Event date: 1780
+Event description: Death of Beaulieu, Johann Theobald
+Participant (Primary): Johann Theobald Beaulieu (Gramps ID: I1325)
+
+Type: event
+Gramps ID: E0420
+Event type: Birth
+Event date: 1718
+Event description: Birth of Sutton, Anna Maria
+Participant (Primary): Anna Maria Sutton (Gramps ID: I1326)
+
+Type: event
+Gramps ID: E0421
+Event type: Birth
+Event date: 1722
+Event description: Birth of Beaulieu, Anna Ottilia
+Participant (Primary): Anna Ottilia Beaulieu (Gramps ID: I1327)
+
+Type: event
+Gramps ID: E0422
+Event type: Death
+Event date: 1793
+Event description: Death of Beaulieu, Anna Ottilia
+Participant (Primary): Anna Ottilia Beaulieu (Gramps ID: I1327)
+
+Type: event
+Gramps ID: E0423
+Event type: Birth
+Event date: 1724
+Event description: Birth of Beaulieu, Anna Eva
+Participant (Primary): Anna Eva Beaulieu (Gramps ID: I1329)
+
+Type: event
+Gramps ID: E0424
+Event type: Death
+Event date: 1760
+Event description: Death of Beaulieu, Anna Eva
+Participant (Primary): Anna Eva Beaulieu (Gramps ID: I1329)
+
+Type: event
+Gramps ID: E0425
+Event type: Birth
+Event date: 1937-01-17
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Lessard, Mary Alice
+Participant (Primary): Mary Alice Lessard (Gramps ID: I0133)
+
+Type: event
+Gramps ID: E0426
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Alice Lessard (Gramps ID: I0133)
+
+Type: event
+Gramps ID: E0427
+Event type: Birth
+Event date: 1715
+Event description: Birth of Michaud, Valentin
+Participant (Primary): Valentin Michaud (Gramps ID: I1330)
+
+Type: event
+Gramps ID: E0428
+Event type: Birth
+Event date: 1726
+Event description: Birth of Beaulieu, Anna Margaretha
+Participant (Primary): Anna Margaretha Beaulieu (Gramps ID: I1331)
+
+Type: event
+Gramps ID: E0429
+Event type: Birth
+Event date: 1721
+Event description: Birth of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Johann Adam
+Participant (Primary): Johann Adam ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ (Gramps ID: I1332)
+
+Type: event
+Gramps ID: E0430
+Event type: Birth
+Event date: 1728
+Event description: Birth of Beaulieu, Johann Simon
+Participant (Primary): Johann Simon Beaulieu (Gramps ID: I1333)
+
+Type: event
+Gramps ID: E0431
+Event type: Death
+Event date: 1771
+Event description: Death of Beaulieu, Johann Simon
+Participant (Primary): Johann Simon Beaulieu (Gramps ID: I1333)
+
+Type: event
+Gramps ID: E0432
+Event type: Birth
+Event date: 1730
+Event description: Birth of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+Participant (Primary): Anna Margaretha ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ (Gramps ID: I1334)
+
+Type: event
+Gramps ID: E0433
+Event type: Death
+Event date: 1817
+Event description: Death of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+Participant (Primary): Anna Margaretha ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ (Gramps ID: I1334)
+
+Type: event
+Gramps ID: E0434
+Event type: Birth
+Event date: 1997-12-26
+Event location: Fergus Falls, MN, USA
+Event description: Birth of Garner, Alecia "Allie" Clare
+Participant (Primary): Alecia "Allie" Clare Garner (Gramps ID: I1335)
+
+Type: event
+Gramps ID: E0435
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Alecia "Allie" Clare Garner (Gramps ID: I1335)
+
+Type: event
+Gramps ID: E0436
+Event type: Birth
+Event date: 1868-08
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Lessard, Emma Jane
+Participant (Primary): Emma Jane Lessard (Gramps ID: I1339)
+
+Type: event
+Gramps ID: E0437
+Event type: Death
+Event date: 1933-08
+Event location: Dublin, Laurens, GA, USA
+Event description: Death of Lessard, Emma Jane
+Participant (Primary): Emma Jane Lessard (Gramps ID: I1339)
+
+Type: event
+Gramps ID: E0438
+Event type: Birth
+Event date: 1928-10-11
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of MarĂn, Elizabeth Therese
+Participant (Primary): Elizabeth Therese MarĂn (Gramps ID: I0134)
+
+Type: event
+Gramps ID: E0439
+Event type: Death
+Event date: 1928-12-29
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of MarĂn, Elizabeth Therese
+Participant (Primary): Elizabeth Therese MarĂn (Gramps ID: I0134)
+
+Type: event
+Gramps ID: E0440
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of MarĂn, Elizabeth Therese
+Participant (Primary): Elizabeth Therese MarĂn (Gramps ID: I0134)
+
+Type: event
+Gramps ID: E0441
+Event type: Birth
+Event date: 1835-07-13
+Event description: Birth of Jiménez, Amanda E.
+Participant (Primary): Amanda E. Jiménez (Gramps ID: I1344)
+
+Type: event
+Gramps ID: E0442
+Event type: Death
+Event date: 1883-04-25
+Event location: Marquette, MI, USA
+Event description: Death of Jiménez, Amanda E.
+Participant (Primary): Amanda E. Jiménez (Gramps ID: I1344)
+
+Type: event
+Gramps ID: E0443
+Event type: Burial
+Event date: 1835-07-15
+Event location: Stillwater, OK, USA
+Event description: Burial of Jiménez, Amanda E.
+Participant (Primary): Amanda E. Jiménez (Gramps ID: I1344)
+
+Type: event
+Gramps ID: E0444
+Event type: Birth
+Event date: 1844-10-10
+Event description: Birth of Jiménez, Nathan M.
+Participant (Primary): Nathan M. Jiménez (Gramps ID: I1345)
+
+Type: event
+Gramps ID: E0445
+Event type: Death
+Event date: 1848-07-01
+Event location: New Ulm, MN, USA
+Event description: Death of Jiménez, Nathan M.
+Participant (Primary): Nathan M. Jiménez (Gramps ID: I1345)
+
+Type: event
+Gramps ID: E0446
+Event type: Burial
+Event date: 1848-07-03
+Event location: Danville, VA, USA
+Event description: Burial of Jiménez, Nathan M.
+Participant (Primary): Nathan M. Jiménez (Gramps ID: I1345)
+
+Type: event
+Gramps ID: E0447
+Event type: Birth
+Event date: 1839-08-06
+Event location: New Ulm, MN, USA
+Event description: Birth of Jiménez, James T.
+Participant (Primary): James T. Jiménez (Gramps ID: I1346)
+
+Type: event
+Gramps ID: E0448
+Event type: Death
+Event date: 1839-08-06
+Event location: Marquette, MI, USA
+Event description: Death of Jiménez, James T.
+Participant (Primary): James T. Jiménez (Gramps ID: I1346)
+
+Type: event
+Gramps ID: E0449
+Event type: Burial
+Event date: 1839-08-07
+Event location: Fort Smith, Sebastian, AR-OK, USA
+Event description: Burial of Jiménez, James T.
+Participant (Primary): James T. Jiménez (Gramps ID: I1346)
+
+Type: event
+Gramps ID: E0450
+Event type: Birth
+Event date: 1829-08-30
+Event location: Marquette, MI, USA
+Event description: Birth of Jiménez, John T. L.
+Participant (Primary): John T. L. Jiménez (Gramps ID: I1347)
+
+Type: event
+Gramps ID: E0451
+Event type: Death
+Event date: 1851-06-20
+Event location: New Ulm, MN, USA
+Event description: Death of Jiménez, John T. L.
+Participant (Primary): John T. L. Jiménez (Gramps ID: I1347)
+
+Type: event
+Gramps ID: E0452
+Event type: Burial
+Event date: 1851-06-21
+Event location: Kennett, MO, USA
+Event description: Burial of Jiménez, John T. L.
+Participant (Primary): John T. L. Jiménez (Gramps ID: I1347)
+
+Type: event
+Gramps ID: E0453
+Event type: Birth
+Event date: 1849-12-08
+Event location: Marquette, MI, USA
+Event description: Birth of Jiménez, Mary C.
+Participant (Primary): Mary C. Jiménez (Gramps ID: I1348)
+
+Type: event
+Gramps ID: E0454
+Event type: Death
+Event date: 1869-10-10
+Event location: Marquette, MI, USA
+Event description: Death of Jiménez, Mary C.
+Participant (Primary): Mary C. Jiménez (Gramps ID: I1348)
+
+Type: event
+Gramps ID: E0455
+Event type: Burial
+Event date: 1869-10-11
+Event location: Fort Smith, Sebastian, AR-OK, USA
+Event description: Burial of Jiménez, Mary C.
+Participant (Primary): Mary C. Jiménez (Gramps ID: I1348)
+
+Type: event
+Gramps ID: E0456
+Event type: Birth
+Event location: Marquette, MI, USA
+Event description: Birth of Jiménez, Nancy E.
+Participant (Primary): Nancy E. Jiménez (Gramps ID: I1349)
+
+Type: event
+Gramps ID: E0457
+Event type: Birth
+Event location: Vernon, Wilbarger, TX, USA
+Event description: Birth of Garner, Eugene Stanley, Jr.
+Participant (Primary): Eugene Stanley, Jr. Garner (Gramps ID: I0135)
+
+Type: event
+Gramps ID: E0458
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Eugene Stanley, Jr. Garner (Gramps ID: I0135)
+
+Type: event
+Gramps ID: E0459
+Event type: Birth
+Event location: Marquette, MI, USA
+Event description: Birth of Jiménez, Richard? Cornelius
+Participant (Primary): Richard? Cornelius Jiménez (Gramps ID: I1350)
+
+Type: event
+Gramps ID: E0460
+Event type: Birth
+Event location: Marquette, MI, USA
+Event description: Birth of Jiménez, Lucinda
+Participant (Primary): Lucinda Jiménez (Gramps ID: I1351)
+
+Type: event
+Gramps ID: E0461
+Event type: Birth
+Event location: New Ulm, MN, USA
+Event description: Birth of DomĂnguez, Zorada
+Participant (Primary): Zorada DomĂnguez (Gramps ID: I1352)
+
+Type: event
+Gramps ID: E0462
+Event type: Birth
+Event date: 1866-03
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, James W.
+Participant (Primary): James W. LĂ©vesque (Gramps ID: I1353)
+
+Type: event
+Gramps ID: E0463
+Event type: Death
+Event date: 1918
+Event location: Van Wert, OH, USA
+Event description: Death of LĂ©vesque, James W.
+Participant (Primary): James W. LĂ©vesque (Gramps ID: I1353)
+
+Type: event
+Gramps ID: E0464
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Lessard, Izora
+Participant (Primary): Izora Lessard (Gramps ID: I1354)
+
+Type: event
+Gramps ID: E0465
+Event type: Death
+Event date: 1902-05-06
+Event location: Lake Charles, Calcasieu, LA, USA
+Event description: Death of Lessard, Izora
+Participant (Primary): Izora Lessard (Gramps ID: I1354)
+
+Type: event
+Gramps ID: E0466
+Event type: Birth
+Event date: 1868-03-27
+Event description: Birth of Boyd, Charles Newton
+Participant (Primary): Charles Newton Boyd (Gramps ID: I1355)
+
+Type: event
+Gramps ID: E0467
+Event type: Death
+Event date: 1920-03-21
+Event description: Death of Boyd, Charles Newton
+Participant (Primary): Charles Newton Boyd (Gramps ID: I1355)
+
+Type: event
+Gramps ID: E0468
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of LĂ©vesque, Olive
+Participant (Primary): Olive LĂ©vesque (Gramps ID: I1357)
+
+Type: event
+Gramps ID: E0469
+Event type: Birth
+Event date: 1890-08
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, Jennie
+Participant (Primary): Jennie LĂ©vesque (Gramps ID: I1358)
+
+Type: event
+Gramps ID: E0470
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of LĂ©vesque, Wilma
+Participant (Primary): Wilma LĂ©vesque (Gramps ID: I1359)
+
+Type: event
+Gramps ID: E0471
+Event type: Birth
+Event date: 1925-10-29
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Birth of Garner, John Roger
+Participant (Primary): John Roger Garner (Gramps ID: I0136)
+
+Type: event
+Gramps ID: E0472
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Roger Garner (Gramps ID: I0136)
+
+Type: event
+Gramps ID: E0473
+Event type: Birth
+Event date: 1893-01
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, Elsie
+Participant (Primary): Elsie LĂ©vesque (Gramps ID: I1361)
+
+Type: event
+Gramps ID: E0474
+Event type: Birth
+Event date: 1896-10
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, Mary
+Participant (Primary): Mary LĂ©vesque (Gramps ID: I1363)
+
+Type: event
+Gramps ID: E0475
+Event type: Birth
+Event date: 1898-11
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, John C.
+Participant (Primary): John C. LĂ©vesque (Gramps ID: I1365)
+
+Type: event
+Gramps ID: E0476
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of LĂ©vesque, Clarence
+Participant (Primary): Clarence LĂ©vesque (Gramps ID: I1366)
+
+Type: event
+Gramps ID: E0477
+Event type: Birth
+Event date: 1899-10
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of LĂ©vesque, Howard
+Participant (Primary): Howard LĂ©vesque (Gramps ID: I1367)
+
+Type: event
+Gramps ID: E0478
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Sarah M.
+Participant (Primary): Sarah M. Jiménez (Gramps ID: I1368)
+
+Type: event
+Gramps ID: E0479
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Mary C.
+Participant (Primary): Mary C. Jiménez (Gramps ID: I1369)
+
+Type: event
+Gramps ID: E0480
+Event type: Birth
+Event date: 1892-09-25
+Event location: New Castle, Henry, IN, USA
+Event description: Birth of Warner, Julia Angeline
+Participant (Primary): Julia Angeline Warner (Gramps ID: I0137)
+
+Type: event
+Gramps ID: E0481
+Event type: Death
+Event date: 1970-12-17
+Event description: Death of Warner, Julia Angeline
+Participant (Primary): Julia Angeline Warner (Gramps ID: I0137)
+
+Type: event
+Gramps ID: E0482
+Event type: Burial
+Event location: Monroe, MI, USA
+Event description: Burial of Warner, Julia Angeline
+Participant (Primary): Julia Angeline Warner (Gramps ID: I0137)
+
+Type: event
+Gramps ID: E0483
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Armand E.
+Participant (Primary): Armand E. Jiménez (Gramps ID: I1370)
+
+Type: event
+Gramps ID: E0484
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Tolbert A.
+Participant (Primary): Tolbert A. Jiménez (Gramps ID: I1371)
+
+Type: event
+Gramps ID: E0485
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Lincoln F.
+Participant (Primary): Lincoln F. Jiménez (Gramps ID: I1372)
+
+Type: event
+Gramps ID: E0486
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, Philip
+Participant (Primary): Philip Jiménez (Gramps ID: I1373)
+
+Type: event
+Gramps ID: E0487
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of Jiménez, George H.
+Participant (Primary): George H. Jiménez (Gramps ID: I1374)
+
+Type: event
+Gramps ID: E0488
+Event type: Birth
+Event location: Orlando, Orange, FL, USA
+Event description: Birth of DomĂnguez, Mahala
+Participant (Primary): Mahala DomĂnguez (Gramps ID: I1375)
+
+Type: event
+Gramps ID: E0489
+Event type: Birth
+Event date: 1841
+Event location: Watertown, SD, USA
+Event description: Birth of Page, Elizabeth
+Participant (Primary): Elizabeth Page (Gramps ID: I1376)
+
+Type: event
+Gramps ID: E0490
+Event type: Death
+Event date: 1915
+Event description: Death of Page, Elizabeth
+Participant (Primary): Elizabeth Page (Gramps ID: I1376)
+
+Type: event
+Gramps ID: E0491
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, James
+Participant (Primary): James Neal (Gramps ID: I1377)
+
+Type: event
+Gramps ID: E0492
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, Andrew
+Participant (Primary): Andrew Neal (Gramps ID: I1378)
+
+Type: event
+Gramps ID: E0493
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, Belle
+Participant (Primary): Belle Neal (Gramps ID: I1379)
+
+Type: event
+Gramps ID: E0494
+Event type: Death
+Event date: 1903
+Event location: Newton, Jasper, IA, USA
+Event description: Death of Neal, Belle
+Participant (Primary): Belle Neal (Gramps ID: I1379)
+
+Type: event
+Gramps ID: E0495
+Event type: Birth
+Event date: 1906-09-05
+Event location: Central City, Muhlenberg, KY, USA
+Event description: Birth of Warner, Mary Grace Elizabeth
+Participant (Primary): Mary Grace Elizabeth Warner (Gramps ID: I0138)
+
+Type: event
+Gramps ID: E0496
+Event type: Death
+Event date: 1993-06-06
+Event location: Sevierville, TN, USA
+Event description: Death of Warner, Mary Grace Elizabeth
+Participant (Primary): Mary Grace Elizabeth Warner (Gramps ID: I0138)
+
+Type: event
+Gramps ID: E0497
+Event type: Burial
+Event date: 1993-06-08
+Event location: Wenatchee, WA, USA
+Event description: Burial of Warner, Mary Grace Elizabeth
+Participant (Primary): Mary Grace Elizabeth Warner (Gramps ID: I0138)
+
+Type: event
+Gramps ID: E0498
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, James
+Participant (Primary): James Neal (Gramps ID: I1380)
+
+Type: event
+Gramps ID: E0499
+Event type: Birth
+Event date: 1872-09-11
+Event location: Crescent City North, CA, USA
+Event description: Birth of Neal, John
+Participant (Primary): John Neal (Gramps ID: I1381)
+
+Type: event
+Gramps ID: E0500
+Event type: Death
+Event date: 1928-12-26
+Event location: Newton, Jasper, IA, USA
+Event description: Death of Neal, John
+Participant (Primary): John Neal (Gramps ID: I1381)
+
+Type: event
+Gramps ID: E0501
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, Margaret
+Participant (Primary): Margaret Neal (Gramps ID: I1382)
+
+Type: event
+Gramps ID: E0502
+Event type: Birth
+Event date: 1877-02-09
+Event location: McAllen, Hidalgo, TX, USA
+Event description: Birth of Neal, Matilda
+Participant (Primary): Matilda Neal (Gramps ID: I1384)
+
+Type: event
+Gramps ID: E0503
+Event type: Death
+Event date: 1946
+Event description: Death of Neal, Matilda
+Participant (Primary): Matilda Neal (Gramps ID: I1384)
+
+Type: event
+Gramps ID: E0504
+Event type: Birth
+Event date: 1871-08-24
+Event location: Watertown, SD, USA
+Event description: Birth of Waters, William
+Participant (Primary): William Waters (Gramps ID: I1385)
+
+Type: event
+Gramps ID: E0505
+Event type: Death
+Event date: 1938-07-12
+Event description: Death of Waters, William
+Participant (Primary): William Waters (Gramps ID: I1385)
+
+Type: event
+Gramps ID: E0506
+Event type: Burial
+Event date: 1938-07-14
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Waters, William
+Participant (Primary): William Waters (Gramps ID: I1385)
+
+Type: event
+Gramps ID: E0507
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Neal, David
+Participant (Primary): David Neal (Gramps ID: I1386)
+
+Type: event
+Gramps ID: E0508
+Event type: Birth
+Event date: 1847-06-11
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Robert
+Participant (Primary): Robert Page (Gramps ID: I1387)
+
+Type: event
+Gramps ID: E0509
+Event type: Death
+Event date: 1928-03-22
+Event location: Newton, Jasper, IA, USA
+Event description: Death of Page, Robert
+Participant (Primary): Robert Page (Gramps ID: I1387)
+
+Type: event
+Gramps ID: E0510
+Event type: Birth
+Event date: 1851-02-10
+Event location: Muncie, Delaware, IN, USA
+Event description: Birth of Page, Margaret
+Participant (Primary): Margaret Page (Gramps ID: I1389)
+
+Type: event
+Gramps ID: E0511
+Event type: Death
+Event date: 1925-11-22
+Event location: Newton, Jasper, IA, USA
+Event description: Death of Page, Margaret
+Participant (Primary): Margaret Page (Gramps ID: I1389)
+
+Type: event
+Gramps ID: E0512
+Event type: Burial
+Event date: 1925-11-24
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Page, Margaret
+Participant (Primary): Margaret Page (Gramps ID: I1389)
+
+Type: event
+Gramps ID: E0513
+Event type: Birth
+Event date: 1920-10-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of MarĂn, Joseph William
+Participant (Primary): Joseph William MarĂn (Gramps ID: I0139)
+
+Type: event
+Gramps ID: E0514
+Event type: Death
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of MarĂn, Joseph William
+Participant (Primary): Joseph William MarĂn (Gramps ID: I0139)
+
+Type: event
+Gramps ID: E0515
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of MarĂn, Joseph William
+Participant (Primary): Joseph William MarĂn (Gramps ID: I0139)
+
+Type: event
+Gramps ID: E0516
+Event type: Birth
+Event date: 1847-01-01
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, George
+Participant (Primary): George Jankowski (Gramps ID: I1390)
+
+Type: event
+Gramps ID: E0517
+Event type: Death
+Event date: 1930-02-01
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, George
+Participant (Primary): George Jankowski (Gramps ID: I1390)
+
+Type: event
+Gramps ID: E0518
+Event type: Burial
+Event date: 1930-02-03
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Jankowski, George
+Participant (Primary): George Jankowski (Gramps ID: I1390)
+
+Type: event
+Gramps ID: E0519
+Event type: Birth
+Event date: 1872-08-27
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Robert
+Participant (Primary): Robert Jankowski (Gramps ID: I1391)
+
+Type: event
+Gramps ID: E0520
+Event type: Death
+Event date: 1943-01-02
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, Robert
+Participant (Primary): Robert Jankowski (Gramps ID: I1391)
+
+Type: event
+Gramps ID: E0521
+Event type: Burial
+Event date: 1943-01-04
+Event location: Washington, Daviess, IN, USA
+Event description: Burial of Jankowski, Robert
+Participant (Primary): Robert Jankowski (Gramps ID: I1391)
+
+Type: event
+Gramps ID: E0522
+Event type: Birth
+Event date: 1874-12-08
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Sarah
+Participant (Primary): Sarah Jankowski (Gramps ID: I1392)
+
+Type: event
+Gramps ID: E0523
+Event type: Death
+Event date: 1948-02-17
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, Sarah
+Participant (Primary): Sarah Jankowski (Gramps ID: I1392)
+
+Type: event
+Gramps ID: E0524
+Event type: Birth
+Event date: 1869-12-25
+Event description: Birth of Sanz, John
+Participant (Primary): John Sanz (Gramps ID: I1393)
+
+Type: event
+Gramps ID: E0525
+Event type: Death
+Event location: Troy, Pike, AL, USA
+Event description: Death of Sanz, John
+Participant (Primary): John Sanz (Gramps ID: I1393)
+
+Type: event
+Gramps ID: E0526
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Willie
+Participant (Primary): Willie Jankowski (Gramps ID: I1394)
+
+Type: event
+Gramps ID: E0527
+Event type: Death
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Death of Jankowski, Willie
+Participant (Primary): Willie Jankowski (Gramps ID: I1394)
+
+Type: event
+Gramps ID: E0528
+Event type: Birth
+Event date: 1876-04-01
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, John
+Participant (Primary): John Jankowski (Gramps ID: I1395)
+
+Type: event
+Gramps ID: E0529
+Event type: Death
+Event date: 1939-10-15
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, John
+Participant (Primary): John Jankowski (Gramps ID: I1395)
+
+Type: event
+Gramps ID: E0530
+Event type: Burial
+Event date: 1939-10-15
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Jankowski, John
+Participant (Primary): John Jankowski (Gramps ID: I1395)
+
+Type: event
+Gramps ID: E0531
+Event type: Birth
+Event date: 1878-03-20
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Isabella Belle
+Participant (Primary): Isabella Belle Jankowski (Gramps ID: I1396)
+
+Type: event
+Gramps ID: E0532
+Event type: Death
+Event date: 1925-03-31
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, Isabella Belle
+Participant (Primary): Isabella Belle Jankowski (Gramps ID: I1396)
+
+Type: event
+Gramps ID: E0533
+Event type: Birth
+Event date: 1882-03-28
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, George Jr.
+Participant (Primary): George Jr. Jankowski (Gramps ID: I1398)
+
+Type: event
+Gramps ID: E0534
+Event type: Death
+Event date: 1942-11-17
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, George Jr.
+Participant (Primary): George Jr. Jankowski (Gramps ID: I1398)
+
+Type: event
+Gramps ID: E0535
+Event type: Burial
+Event date: 1942-11-19
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Jankowski, George Jr.
+Participant (Primary): George Jr. Jankowski (Gramps ID: I1398)
+
+Type: event
+Gramps ID: E0536
+Event type: Birth
+Event date: 1885-06-07
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Matilda
+Participant (Primary): Matilda Jankowski (Gramps ID: I1399)
+
+Type: event
+Gramps ID: E0537
+Event type: Death
+Event date: 1925-01-22
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, Matilda
+Participant (Primary): Matilda Jankowski (Gramps ID: I1399)
+
+Type: event
+Gramps ID: E0538
+Event type: Birth
+Event date: 1958-09-20
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Warner, Marcia Jane
+Participant (Primary): Marcia Jane Warner (Gramps ID: I0014)
+
+Type: event
+Gramps ID: E0539
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marcia Jane Warner (Gramps ID: I0014)
+
+Type: event
+Gramps ID: E0540
+Event type: Birth
+Event date: 1933-12-31
+Event description: Birth of Osborne, Dwight Billington
+Participant (Primary): Dwight Billington Osborne (Gramps ID: I0140)
+
+Type: event
+Gramps ID: E0541
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dwight Billington Osborne (Gramps ID: I0140)
+
+Type: event
+Gramps ID: E0542
+Event type: Birth
+Event date: 1886-08-10
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, David
+Participant (Primary): David Jankowski (Gramps ID: I1401)
+
+Type: event
+Gramps ID: E0543
+Event type: Death
+Event date: 1951-04-10
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, David
+Participant (Primary): David Jankowski (Gramps ID: I1401)
+
+Type: event
+Gramps ID: E0544
+Event type: Burial
+Event date: 1957-04-12
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Jankowski, David
+Participant (Primary): David Jankowski (Gramps ID: I1401)
+
+Type: event
+Gramps ID: E0545
+Event type: Birth
+Event date: 1889-05-28
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Margaret Jane "Maggie"
+Participant (Primary): Margaret Jane "Maggie" Jankowski (Gramps ID: I1402)
+
+Type: event
+Gramps ID: E0546
+Event type: Death
+Event date: 1960-01-05
+Event location: Troy, Pike, AL, USA
+Event description: Death of Jankowski, Margaret Jane "Maggie"
+Participant (Primary): Margaret Jane "Maggie" Jankowski (Gramps ID: I1402)
+
+Type: event
+Gramps ID: E0547
+Event type: Birth
+Event date: 1883-08-09
+Event description: Birth of ЧДŃĐșĐ°ŃĐžĐœ, Thomas
+Participant (Primary): Thomas ЧДŃĐșĐ°ŃĐžĐœ (Gramps ID: I1403)
+
+Type: event
+Gramps ID: E0548
+Event type: Death
+Event date: 1973-12-08
+Event location: Troy, Pike, AL, USA
+Event description: Death of ЧДŃĐșĐ°ŃĐžĐœ, Thomas
+Participant (Primary): Thomas ЧДŃĐșĐ°ŃĐžĐœ (Gramps ID: I1403)
+
+Type: event
+Gramps ID: E0549
+Event type: Birth
+Event date: 1892-05-24
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Jankowski, Minnie
+Participant (Primary): Minnie Jankowski (Gramps ID: I1404)
+
+Type: event
+Gramps ID: E0550
+Event type: Death
+Event date: 1984-01-08
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Death of Jankowski, Minnie
+Participant (Primary): Minnie Jankowski (Gramps ID: I1404)
+
+Type: event
+Gramps ID: E0551
+Event type: Birth
+Event location: Crescent City North, CA, USA
+Event description: Birth of Page, John James
+Participant (Primary): John James Page (Gramps ID: I1406)
+
+Type: event
+Gramps ID: E0552
+Event type: Death
+Event date: 1943-11-18
+Event location: Troy, Pike, AL, USA
+Event description: Death of Page, John James
+Participant (Primary): John James Page (Gramps ID: I1406)
+
+Type: event
+Gramps ID: E0553
+Event type: Burial
+Event date: 1943-11-20
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Page, John James
+Participant (Primary): John James Page (Gramps ID: I1406)
+
+Type: event
+Gramps ID: E0554
+Event type: Birth
+Event location: Rexburg, Madison, ID, USA
+Event description: Birth of Mcdaniel, Margaret
+Participant (Primary): Margaret Mcdaniel (Gramps ID: I1407)
+
+Type: event
+Gramps ID: E0555
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Adkins, Minnie
+Participant (Primary): Minnie Adkins (Gramps ID: I1408)
+
+Type: event
+Gramps ID: E0556
+Event type: Birth
+Event location: Findlay, OH, USA
+Event description: Birth of Page, Ferne
+Participant (Primary): Ferne Page (Gramps ID: I1409)
+
+Type: event
+Gramps ID: E0557
+Event type: Death
+Event location: Findlay, OH, USA
+Event description: Death of Page, Robert Francis
+Participant (Primary): Robert Francis Page (Gramps ID: I1411)
+
+Type: event
+Gramps ID: E0558
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Page, Florence
+Participant (Primary): Florence Page (Gramps ID: I1412)
+
+Type: event
+Gramps ID: E0559
+Event type: Death
+Event location: Brookings, OR, USA
+Event description: Death of Page, Florence
+Participant (Primary): Florence Page (Gramps ID: I1412)
+
+Type: event
+Gramps ID: E0560
+Event type: Birth
+Event date: 1914-09-28
+Event location: Racine, WI, USA
+Event description: Birth of Page, George Kenneth (Red)
+Participant (Primary): George Kenneth (Red) Page (Gramps ID: I1414)
+
+Type: event
+Gramps ID: E0561
+Event type: Death
+Event date: 1936-03-18
+Event location: Troy, Pike, AL, USA
+Event description: Death of Page, George Kenneth (Red)
+Participant (Primary): George Kenneth (Red) Page (Gramps ID: I1414)
+
+Type: event
+Gramps ID: E0562
+Event type: Burial
+Event date: 1936-03-20
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Page, George Kenneth (Red)
+Participant (Primary): George Kenneth (Red) Page (Gramps ID: I1414)
+
+Type: event
+Gramps ID: E0563
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Page, Everett Glenn (Ezra)
+Participant (Primary): Everett Glenn (Ezra) Page (Gramps ID: I1415)
+
+Type: event
+Gramps ID: E0564
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Page, Mildred
+Participant (Primary): Mildred Page (Gramps ID: I1416)
+
+Type: event
+Gramps ID: E0565
+Event type: Birth
+Event date: 1900-09-21
+Event location: Corsicana, Navarro, TX, USA
+Event description: Birth of Page, Maude
+Participant (Primary): Maude Page (Gramps ID: I1418)
+
+Type: event
+Gramps ID: E0566
+Event type: Death
+Event date: 1987-03-24
+Event location: Brookhaven, MS, USA
+Event description: Death of Page, Maude
+Participant (Primary): Maude Page (Gramps ID: I1418)
+
+Type: event
+Gramps ID: E0567
+Event type: Burial
+Event date: 1987-03-26
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Page, Maude
+Participant (Primary): Maude Page (Gramps ID: I1418)
+
+Type: event
+Gramps ID: E0568
+Event type: Birth
+Event date: 1930-04-03
+Event description: Birth of Pearson, Eileen Ruth
+Participant (Primary): Eileen Ruth Pearson (Gramps ID: I0142)
+
+Type: event
+Gramps ID: E0569
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Eileen Ruth Pearson (Gramps ID: I0142)
+
+Type: event
+Gramps ID: E0570
+Event type: Birth
+Event date: 1867
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Anna
+Participant (Primary): Anna Page (Gramps ID: I1423)
+
+Type: event
+Gramps ID: E0571
+Event type: Birth
+Event location: Detroit, MI, USA
+Event description: Birth of Cross, Thomas
+Participant (Primary): Thomas Cross (Gramps ID: I1424)
+
+Type: event
+Gramps ID: E0572
+Event type: Birth
+Event date: 1896-07-13
+Event location: Lake Havasu City, Mohave, AZ, USA
+Event description: Birth of Cross, Alta M.
+Participant (Primary): Alta M. Cross (Gramps ID: I1425)
+
+Type: event
+Gramps ID: E0573
+Event type: Death
+Event date: 1988-05-16
+Event location: Montrose, Montrose, CO, USA
+Event description: Death of Cross, Alta M.
+Participant (Primary): Alta M. Cross (Gramps ID: I1425)
+
+Type: event
+Gramps ID: E0574
+Event type: Burial
+Event date: 1988-05-18
+Event location: Warsaw, Kosciusko, IN, USA
+Event description: Burial of Cross, Alta M.
+Participant (Primary): Alta M. Cross (Gramps ID: I1425)
+
+Type: event
+Gramps ID: E0575
+Event type: Death
+Event date: 1981-06-02
+Event description: Death of Peters, Frank O.
+Participant (Primary): Frank O. Peters (Gramps ID: I1426)
+
+Type: event
+Gramps ID: E0576
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Cross, Ralph (Scotty)
+Participant (Primary): Ralph (Scotty) Cross (Gramps ID: I1427)
+
+Type: event
+Gramps ID: E0577
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Cross, Loraine (Fanny)
+Participant (Primary): Loraine (Fanny) Cross (Gramps ID: I1428)
+
+Type: event
+Gramps ID: E0578
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Cross, Evelyn
+Participant (Primary): Evelyn Cross (Gramps ID: I1429)
+
+Type: event
+Gramps ID: E0579
+Event type: Birth
+Event date: 1930-05-20
+Event location: Batavia, Genesee, NY, USA
+Event description: Birth of ĐДлŃĐœĐžĐșĐŸĐČ, Marylou
+Participant (Primary): Marylou ĐДлŃĐœĐžĐșĐŸĐČ (Gramps ID: I0143)
+
+Type: event
+Gramps ID: E0580
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marylou ĐДлŃĐœĐžĐșĐŸĐČ (Gramps ID: I0143)
+
+Type: event
+Gramps ID: E0581
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Cross, Louise
+Participant (Primary): Louise Cross (Gramps ID: I1430)
+
+Type: event
+Gramps ID: E0582
+Event type: Birth
+Event location: Racine, WI, USA
+Event description: Birth of Cross, John
+Participant (Primary): John Cross (Gramps ID: I1431)
+
+Type: event
+Gramps ID: E0583
+Event type: Birth
+Event date: 1911-02-14
+Event location: Williamsport, PA, USA
+Event description: Birth of Cross, Gertrude
+Participant (Primary): Gertrude Cross (Gramps ID: I1432)
+
+Type: event
+Gramps ID: E0584
+Event type: Death
+Event date: 1992-07-16
+Event location: Grand Forks, ND, USA
+Event description: Death of Cross, Gertrude
+Participant (Primary): Gertrude Cross (Gramps ID: I1432)
+
+Type: event
+Gramps ID: E0585
+Event type: Burial
+Event date: 1992-07-18
+Event location: Grand Forks, ND, USA
+Event description: Burial of Cross, Gertrude
+Participant (Primary): Gertrude Cross (Gramps ID: I1432)
+
+Type: event
+Gramps ID: E0586
+Event type: Birth
+Event date: 1906-07-24
+Event location: Williamsport, PA, USA
+Event description: Birth of Armstrong, Teddy C.
+Participant (Primary): Teddy C. Armstrong (Gramps ID: I1433)
+
+Type: event
+Gramps ID: E0587
+Event type: Death
+Event date: 1995-07-09
+Event location: Alexandria, Rapides, LA, USA
+Event description: Death of Armstrong, Teddy C.
+Participant (Primary): Teddy C. Armstrong (Gramps ID: I1433)
+
+Type: event
+Gramps ID: E0588
+Event type: Birth
+Event date: 1880
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Mary
+Participant (Primary): Mary Page (Gramps ID: I1434)
+
+Type: event
+Gramps ID: E0589
+Event type: Death
+Event date: 1880
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Death of Page, Mary
+Participant (Primary): Mary Page (Gramps ID: I1434)
+
+Type: event
+Gramps ID: E0590
+Event type: Birth
+Event date: 1880
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Rebecca
+Participant (Primary): Rebecca Page (Gramps ID: I1435)
+
+Type: event
+Gramps ID: E0591
+Event type: Death
+Event date: 1880
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Death of Page, Rebecca
+Participant (Primary): Rebecca Page (Gramps ID: I1435)
+
+Type: event
+Gramps ID: E0592
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Belle
+Participant (Primary): Belle Page (Gramps ID: I1436)
+
+Type: event
+Gramps ID: E0593
+Event type: Death
+Event location: Albany, Albany, NY, USA
+Event description: Death of Page, Belle
+Participant (Primary): Belle Page (Gramps ID: I1436)
+
+Type: event
+Gramps ID: E0594
+Event type: Death
+Event location: Albany, Albany, NY, USA
+Event description: Death of Morin
+Participant (Primary): Morin (Gramps ID: I1437)
+
+Type: event
+Gramps ID: E0595
+Event type: Birth
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Birth of Page, Matilda
+Participant (Primary): Matilda Page (Gramps ID: I1438)
+
+Type: event
+Gramps ID: E0596
+Event type: Death
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Death of Page, Matilda
+Participant (Primary): Matilda Page (Gramps ID: I1438)
+
+Type: event
+Gramps ID: E0597
+Event type: Death
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Death of Moss, Christy
+Participant (Primary): Christy Moss (Gramps ID: I1439)
+
+Type: event
+Gramps ID: E0598
+Event type: Birth
+Event date: 1925-06-08
+Event location: Jacksonville, Duval, FL, USA
+Event description: Birth of Barber, Mary Elizabeth
+Participant (Primary): Mary Elizabeth Barber (Gramps ID: I0144)
+
+Type: event
+Gramps ID: E0599
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Elizabeth Barber (Gramps ID: I0144)
+
+Type: event
+Gramps ID: E0600
+Event type: Birth
+Event location: Harrisburg, PA, USA
+Event description: Birth of Waters, Cecil
+Participant (Primary): Cecil Waters (Gramps ID: I1440)
+
+Type: event
+Gramps ID: E0601
+Event type: Death
+Event location: Troy, Pike, AL, USA
+Event description: Death of Waters, Cecil
+Participant (Primary): Cecil Waters (Gramps ID: I1440)
+
+Type: event
+Gramps ID: E0602
+Event type: Birth
+Event date: 1940
+Event description: Birth of Waters, Cecil Glenn
+Participant (Primary): Cecil Glenn Waters (Gramps ID: I1441)
+
+Type: event
+Gramps ID: E0603
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cecil Glenn Waters (Gramps ID: I1441)
+
+Type: event
+Gramps ID: E0604
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Donna Hubbard (Gramps ID: I1443)
+
+Type: event
+Gramps ID: E0605
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Randy Waters (Gramps ID: I1444)
+
+Type: event
+Gramps ID: E0606
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Debby Waters (Gramps ID: I1445)
+
+Type: event
+Gramps ID: E0607
+Event type: Birth
+Event date: 1924-03-07
+Event location: Dubuque, Dubuque, IA, USA
+Event description: Birth of Robbins, Merida Lorene
+Participant (Primary): Merida Lorene Robbins (Gramps ID: I0145)
+
+Type: event
+Gramps ID: E0608
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Merida Lorene Robbins (Gramps ID: I0145)
+
+Type: event
+Gramps ID: E0609
+Event type: Birth
+Event date: 1885-02-14
+Event description: Birth of Schneider, Belle Irene
+Participant (Primary): Belle Irene Schneider (Gramps ID: I1452)
+
+Type: event
+Gramps ID: E0610
+Event type: Death
+Event date: 1960-10-11
+Event description: Death of Schneider, Belle Irene
+Participant (Primary): Belle Irene Schneider (Gramps ID: I1452)
+
+Type: event
+Gramps ID: E0611
+Event type: Birth
+Event date: 1916-08-30
+Event location: Grand Forks, ND, USA
+Event description: Birth of Neal, Helen M.
+Participant (Primary): Helen M. Neal (Gramps ID: I1453)
+
+Type: event
+Gramps ID: E0612
+Event type: Birth
+Event date: 1944-05-16
+Event location: Mankato, MN, USA
+Event description: Birth of BĂ©langer, Donald
+Participant (Primary): Donald BĂ©langer (Gramps ID: I1455)
+
+Type: event
+Gramps ID: E0613
+Event type: Birth
+Event date: 1965-10-17
+Event location: Mankato, MN, USA
+Event description: Birth of BĂ©langer, Amy Jo
+Participant (Primary): Amy Jo BĂ©langer (Gramps ID: I1457)
+
+Type: event
+Gramps ID: E0614
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Don Ortiz (Gramps ID: I1458)
+
+Type: event
+Gramps ID: E0615
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rhonda Lynch (Gramps ID: I1460)
+
+Type: event
+Gramps ID: E0616
+Event type: Birth
+Event date: 1821-01-25
+Event location: Marshall, MN, USA
+Event description: Birth of Alvarado, Jacob W.
+Participant (Primary): Jacob W. Alvarado (Gramps ID: I1464)
+
+Type: event
+Gramps ID: E0617
+Event type: Death
+Event location: Racine, WI, USA
+Event description: Death of Alvarado, Jacob W.
+Participant (Primary): Jacob W. Alvarado (Gramps ID: I1464)
+
+Type: event
+Gramps ID: E0618
+Event type: Birth
+Event date: 1825-03-13
+Event location: Marshall, MN, USA
+Event description: Birth of Alvarado, John
+Participant (Primary): John Alvarado (Gramps ID: I1465)
+
+Type: event
+Gramps ID: E0619
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, Eliza
+Participant (Primary): Eliza Alvarado (Gramps ID: I1466)
+
+Type: event
+Gramps ID: E0620
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, Franklin
+Participant (Primary): Franklin Alvarado (Gramps ID: I1467)
+
+Type: event
+Gramps ID: E0621
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, William
+Participant (Primary): William Alvarado (Gramps ID: I1468)
+
+Type: event
+Gramps ID: E0622
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, Thomas C.
+Participant (Primary): Thomas C. Alvarado (Gramps ID: I1469)
+
+Type: event
+Gramps ID: E0623
+Event type: Birth
+Event date: 1916-05-08
+Event location: Cleveland, TN, USA
+Event description: Birth of ЧДŃĐœŃŃ
, Mary Helen
+Participant (Primary): Mary Helen ЧДŃĐœŃŃ
(Gramps ID: I0147)
+
+Type: event
+Gramps ID: E0624
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Helen ЧДŃĐœŃŃ
(Gramps ID: I0147)
+
+Type: event
+Gramps ID: E0625
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, Marshall
+Participant (Primary): Marshall Alvarado (Gramps ID: I1470)
+
+Type: event
+Gramps ID: E0626
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, James
+Participant (Primary): James Alvarado (Gramps ID: I1471)
+
+Type: event
+Gramps ID: E0627
+Event type: Death
+Event location: Cookeville, TN, USA
+Event description: Death of Alvarado, James
+Participant (Primary): James Alvarado (Gramps ID: I1471)
+
+Type: event
+Gramps ID: E0628
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, William
+Participant (Primary): William Douglas (Gramps ID: I1472)
+
+Type: event
+Gramps ID: E0629
+Event type: Death
+Event location: Cookeville, TN, USA
+Event description: Death of Douglas, William
+Participant (Primary): William Douglas (Gramps ID: I1472)
+
+Type: event
+Gramps ID: E0630
+Event type: Birth
+Event date: 1850-08-07
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, Eliza Jane
+Participant (Primary): Eliza Jane Douglas (Gramps ID: I1473)
+
+Type: event
+Gramps ID: E0631
+Event type: Death
+Event date: 1915
+Event description: Death of Douglas, Eliza Jane
+Participant (Primary): Eliza Jane Douglas (Gramps ID: I1473)
+
+Type: event
+Gramps ID: E0632
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, Charles
+Participant (Primary): Charles Douglas (Gramps ID: I1475)
+
+Type: event
+Gramps ID: E0633
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, Jacob
+Participant (Primary): Jacob Douglas (Gramps ID: I1476)
+
+Type: event
+Gramps ID: E0634
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, William
+Participant (Primary): William Douglas (Gramps ID: I1478)
+
+Type: event
+Gramps ID: E0635
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, Frank
+Participant (Primary): Frank Douglas (Gramps ID: I1479)
+
+Type: event
+Gramps ID: E0636
+Event type: Birth
+Event date: 1936-12-22
+Event location: Big Rapids, MI, USA
+Event description: Birth of Warner, Michael Louis
+Participant (Primary): Michael Louis Warner (Gramps ID: I0148)
+
+Type: event
+Gramps ID: E0637
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Louis Warner (Gramps ID: I0148)
+
+Type: event
+Gramps ID: E0638
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Douglas, Arthur
+Participant (Primary): Arthur Douglas (Gramps ID: I1480)
+
+Type: event
+Gramps ID: E0639
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of Alvarado, Charles
+Participant (Primary): Charles Alvarado (Gramps ID: I1481)
+
+Type: event
+Gramps ID: E0640
+Event type: Death
+Event location: Cookeville, TN, USA
+Event description: Death of Alvarado, Charles
+Participant (Primary): Charles Alvarado (Gramps ID: I1481)
+
+Type: event
+Gramps ID: E0641
+Event type: Birth
+Event location: Florence, SC, USA
+Event description: Birth of Alvarado, Marsha
+Participant (Primary): Marsha Alvarado (Gramps ID: I1482)
+
+Type: event
+Gramps ID: E0642
+Event type: Death
+Event location: Cookeville, TN, USA
+Event description: Death of Alvarado, Marsha
+Participant (Primary): Marsha Alvarado (Gramps ID: I1482)
+
+Type: event
+Gramps ID: E0643
+Event type: Birth
+Event date: 1808-09-20
+Event location: Port Angeles, WA, USA
+Event description: Birth of Douglas, Elizabeth
+Participant (Primary): Elizabeth Douglas (Gramps ID: I1489)
+
+Type: event
+Gramps ID: E0644
+Event type: Birth
+Event date: 1940-01-16
+Event location: Big Rapids, MI, USA
+Event description: Birth of Warner, Betty Louise
+Participant (Primary): Betty Louise Warner (Gramps ID: I0149)
+
+Type: event
+Gramps ID: E0645
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Betty Louise Warner (Gramps ID: I0149)
+
+Type: event
+Gramps ID: E0646
+Event type: Birth
+Event date: 1810-12-20
+Event location: Port Angeles, WA, USA
+Event description: Birth of Gauthier, Julius
+Participant (Primary): Julius Gauthier (Gramps ID: I1490)
+
+Type: event
+Gramps ID: E0647
+Event type: Birth
+Event date: 1813-08-21
+Event location: Port Angeles, WA, USA
+Event description: Birth of Douglas, Jacob
+Participant (Primary): Jacob Douglas (Gramps ID: I1491)
+
+Type: event
+Gramps ID: E0648
+Event type: Death
+Event location: Dixon, Lee, IL, USA
+Event description: Death of Douglas, Jacob
+Participant (Primary): Jacob Douglas (Gramps ID: I1491)
+
+Type: event
+Gramps ID: E0649
+Event type: Birth
+Event date: 1818-04-09
+Event location: Port Angeles, WA, USA
+Event description: Birth of Douglas, Catherine
+Participant (Primary): Catherine Douglas (Gramps ID: I1492)
+
+Type: event
+Gramps ID: E0650
+Event type: Birth
+Event date: 1827-05-01
+Event location: Marshall, MN, USA
+Event description: Birth of Douglas, Alfred
+Participant (Primary): Alfred Douglas (Gramps ID: I1493)
+
+Type: event
+Gramps ID: E0651
+Event type: Death
+Event date: 1913-06-26
+Event description: Death of Douglas, Alfred
+Participant (Primary): Alfred Douglas (Gramps ID: I1493)
+
+Type: event
+Gramps ID: E0652
+Event type: Birth
+Event date: 1830-05-24
+Event location: Marshall, MN, USA
+Event description: Birth of Douglas, Ellen
+Participant (Primary): Ellen Douglas (Gramps ID: I1494)
+
+Type: event
+Gramps ID: E0653
+Event type: Birth
+Event date: 1833-05-06
+Event location: Marshall, MN, USA
+Event description: Birth of Douglas, Lucinda J.
+Participant (Primary): Lucinda J. Douglas (Gramps ID: I1495)
+
+Type: event
+Gramps ID: E0654
+Event type: Birth
+Event date: 1815-06-19
+Event location: Port Angeles, WA, USA
+Event description: Birth of Douglas, Samuel
+Participant (Primary): Samuel Douglas (Gramps ID: I1496)
+
+Type: event
+Gramps ID: E0655
+Event type: Birth
+Event date: 1836-12-01
+Event location: Marshall, MN, USA
+Event description: Birth of Douglas, Susan
+Participant (Primary): Susan Douglas (Gramps ID: I1497)
+
+Type: event
+Gramps ID: E0656
+Event type: Birth
+Event date: 1824-10-17
+Event location: Marshall, MN, USA
+Event description: Birth of Douglas, John
+Participant (Primary): John Douglas (Gramps ID: I1498)
+
+Type: event
+Gramps ID: E0657
+Event type: Death
+Event location: Bemidji, MN, USA
+Event description: Death of Douglas, John
+Participant (Primary): John Douglas (Gramps ID: I1498)
+
+Type: event
+Gramps ID: E0658
+Event type: Birth
+Event date: 1797
+Event location: San SebastiĂĄn, PR, USA
+Event description: Birth of Parent, Montgomery
+Participant (Primary): Montgomery Parent (Gramps ID: I1499)
+
+Type: event
+Gramps ID: E0659
+Event type: Birth
+Event date: 1948-12-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Barry Joseph
+Participant (Primary): Barry Joseph Garner (Gramps ID: I0015)
+
+Type: event
+Gramps ID: E0660
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Barry Joseph Garner (Gramps ID: I0015)
+
+Type: event
+Gramps ID: E0661
+Event type: Birth
+Event date: 1944-08-11
+Event location: Big Rapids, MI, USA
+Event description: Birth of Warner, John William
+Participant (Primary): John William Warner (Gramps ID: I0150)
+
+Type: event
+Gramps ID: E0662
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John William Warner (Gramps ID: I0150)
+
+Type: event
+Gramps ID: E0663
+Event type: Birth
+Event date: 1947-08-19
+Event location: Big Rapids, MI, USA
+Event description: Birth of Warner, Beverly Ann
+Participant (Primary): Beverly Ann Warner (Gramps ID: I0151)
+
+Type: event
+Gramps ID: E0664
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Beverly Ann Warner (Gramps ID: I0151)
+
+Type: event
+Gramps ID: E0665
+Event type: Birth
+Event date: 1759-02-17
+Event description: Birth of Rogers, Barbara
+Participant (Primary): Barbara Rogers (Gramps ID: I1510)
+
+Type: event
+Gramps ID: E0666
+Event type: Death
+Event date: um 1785
+Event description: Death of Rogers, Barbara
+Participant (Primary): Barbara Rogers (Gramps ID: I1510)
+
+Type: event
+Gramps ID: E0667
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of ĐĐ°ĐČĐ»ĐŸĐČ, Thomas
+Participant (Primary): Thomas ĐĐ°ĐČĐ»ĐŸĐČ (Gramps ID: I1516)
+
+Type: event
+Gramps ID: E0668
+Event type: Birth
+Event location: Cookeville, TN, USA
+Event description: Birth of ĐĐ°ĐČĐ»ĐŸĐČ, Calvin
+Participant (Primary): Calvin ĐĐ°ĐČĐ»ĐŸĐČ (Gramps ID: I1517)
+
+Type: event
+Gramps ID: E0669
+Event type: Death
+Event date: 1834-11-18
+Event location: Riverside, CA, USA
+Event description: Death of Larson, Christena Wiseman
+Participant (Primary): Christena Wiseman Larson (Gramps ID: I1519)
+
+Type: event
+Gramps ID: E0670
+Event type: Burial
+Event date: 1834-11-20
+Event location: Angola, Steuben, IN, USA
+Event description: Burial of Larson, Christena Wiseman
+Participant (Primary): Christena Wiseman Larson (Gramps ID: I1519)
+
+Type: event
+Gramps ID: E0671
+Event type: Birth
+Event date: 1945-02-13
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Warner, David Warren
+Participant (Primary): David Warren Warner (Gramps ID: I0152)
+
+Type: event
+Gramps ID: E0672
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Warren Warner (Gramps ID: I0152)
+
+Type: event
+Gramps ID: E0673
+Event type: Birth
+Event date: 1946-12-21
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Warner, Harold Lowell
+Participant (Primary): Harold Lowell Warner (Gramps ID: I0153)
+
+Type: event
+Gramps ID: E0674
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Harold Lowell Warner (Gramps ID: I0153)
+
+Type: event
+Gramps ID: E0675
+Event type: Birth
+Event date: 1729
+Event description: Birth of James, Robert
+Participant (Primary): Robert James (Gramps ID: I1531)
+
+Type: event
+Gramps ID: E0676
+Event type: Birth
+Event date: 1733
+Event description: Birth of James, William
+Participant (Primary): William James (Gramps ID: I1533)
+
+Type: event
+Gramps ID: E0677
+Event type: Birth
+Event date: 1735
+Event description: Birth of James, Mary
+Participant (Primary): Mary James (Gramps ID: I1534)
+
+Type: event
+Gramps ID: E0678
+Event type: Birth
+Event date: 1737
+Event description: Birth of James, Martha
+Participant (Primary): Martha James (Gramps ID: I1536)
+
+Type: event
+Gramps ID: E0679
+Event type: Birth
+Event date: 1739
+Event description: Birth of James, Jane
+Participant (Primary): Jane James (Gramps ID: I1538)
+
+Type: event
+Gramps ID: E0680
+Event type: Birth
+Event date: 1741
+Event description: Birth of James, John
+Participant (Primary): John James (Gramps ID: I1539)
+
+Type: event
+Gramps ID: E0681
+Event type: Birth
+Event date: 1950-02-07
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Martha Ellen
+Participant (Primary): Martha Ellen Warner (Gramps ID: I0154)
+
+Type: event
+Gramps ID: E0682
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Martha Ellen Warner (Gramps ID: I0154)
+
+Type: event
+Gramps ID: E0683
+Event type: Birth
+Event date: 1742
+Event description: Birth of James
+Participant (Primary): James (Gramps ID: I1541)
+
+Type: event
+Gramps ID: E0684
+Event type: Birth
+Event date: 1768
+Event location: La Follette, TN, USA
+Event description: Birth of James, Hugh Jr.
+Participant (Primary): Hugh Jr. James (Gramps ID: I1542)
+
+Type: event
+Gramps ID: E0685
+Event type: Death
+Event date: 1768
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Death of James, Hugh Jr.
+Participant (Primary): Hugh Jr. James (Gramps ID: I1542)
+
+Type: event
+Gramps ID: E0686
+Event type: Birth
+Event date: 1770
+Event location: La Follette, TN, USA
+Event description: Birth of James, Molly
+Participant (Primary): Molly James (Gramps ID: I1543)
+
+Type: event
+Gramps ID: E0687
+Event type: Birth
+Event date: 1773-03-03
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of James, Joseph
+Participant (Primary): Joseph James (Gramps ID: I1544)
+
+Type: event
+Gramps ID: E0688
+Event type: Death
+Event date: 1824
+Event location: Orlando, Orange, FL, USA
+Event description: Death of James, Joseph
+Participant (Primary): Joseph James (Gramps ID: I1544)
+
+Type: event
+Gramps ID: E0689
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of James, Thomas
+Participant (Primary): Thomas James (Gramps ID: I1545)
+
+Type: event
+Gramps ID: E0690
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of James, Isaac
+Participant (Primary): Isaac James (Gramps ID: I1546)
+
+Type: event
+Gramps ID: E0691
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of James, Walter Crockett
+Participant (Primary): Walter Crockett James (Gramps ID: I1547)
+
+Type: event
+Gramps ID: E0692
+Event type: Birth
+Event date: 1949-07-13
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Margaret Ruth
+Participant (Primary): Margaret Ruth Warner (Gramps ID: I0155)
+
+Type: event
+Gramps ID: E0693
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Margaret Ruth Warner (Gramps ID: I0155)
+
+Type: event
+Gramps ID: E0694
+Event type: Birth
+Event date: 1951-10-20
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Nancy Elizabeth
+Participant (Primary): Nancy Elizabeth Warner (Gramps ID: I0156)
+
+Type: event
+Gramps ID: E0695
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nancy Elizabeth Warner (Gramps ID: I0156)
+
+Type: event
+Gramps ID: E0696
+Event type: Birth
+Event date: 1953-09-23
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Sarah Jane
+Participant (Primary): Sarah Jane Warner (Gramps ID: I0157)
+
+Type: event
+Gramps ID: E0697
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sarah Jane Warner (Gramps ID: I0157)
+
+Type: event
+Gramps ID: E0698
+Event type: Birth
+Event date: 1954-11-10
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Mary Christine
+Participant (Primary): Mary Christine Warner (Gramps ID: I0158)
+
+Type: event
+Gramps ID: E0699
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Christine Warner (Gramps ID: I0158)
+
+Type: event
+Gramps ID: E0700
+Event type: Birth
+Event date: 1704-03-09
+Event location: Cordele, Crisp, GA, USA
+Event description: Birth of Benson, Thomas Stewart
+Participant (Primary): Thomas Stewart Benson (Gramps ID: I1580)
+
+Type: event
+Gramps ID: E0701
+Event type: Birth
+Event date: 1707-06-10
+Event location: Hope, Hempstead, AR, USA
+Event description: Birth of Benson, John
+Participant (Primary): John Benson (Gramps ID: I1581)
+
+Type: event
+Gramps ID: E0702
+Event type: Birth
+Event date: 1711-11
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Benson, James Edwin
+Participant (Primary): James Edwin Benson (Gramps ID: I1582)
+
+Type: event
+Gramps ID: E0703
+Event type: Birth
+Event date: 1713-11
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Benson, Jason Spotswood
+Participant (Primary): Jason Spotswood Benson (Gramps ID: I1583)
+
+Type: event
+Gramps ID: E0704
+Event type: Birth
+Event date: 1715-01-30
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Benson, Elizabeth
+Participant (Primary): Elizabeth Benson (Gramps ID: I1584)
+
+Type: event
+Gramps ID: E0705
+Event type: Birth
+Event date: 1719-09-10
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Benson, Martha Ellen
+Participant (Primary): Martha Ellen Benson (Gramps ID: I1585)
+
+Type: event
+Gramps ID: E0706
+Event type: Birth
+Event date: 1674-11-20
+Event location: Peoria, Peoria, IL, USA
+Event description: Birth of Benson, James
+Participant (Primary): James Benson (Gramps ID: I1588)
+
+Type: event
+Gramps ID: E0707
+Event type: Birth
+Event date: 1678-07-18
+Event location: Peoria, Peoria, IL, USA
+Event description: Birth of Benson, Robert Watkins
+Participant (Primary): Robert Watkins Benson (Gramps ID: I1589)
+
+Type: event
+Gramps ID: E0708
+Event type: Birth
+Event date: 1950-06-23
+Event location: Jonesboro, Craighead, AR, USA
+Event description: Birth of Warner, Stephanie Sue
+Participant (Primary): Stephanie Sue Warner (Gramps ID: I0159)
+
+Type: event
+Gramps ID: E0709
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stephanie Sue Warner (Gramps ID: I0159)
+
+Type: event
+Gramps ID: E0710
+Event type: Birth
+Event date: 1680-03-15
+Event location: Peoria, Peoria, IL, USA
+Event description: Birth of Benson, Louise DeSoix
+Participant (Primary): Louise DeSoix Benson (Gramps ID: I1590)
+
+Type: event
+Gramps ID: E0711
+Event type: Birth
+Event date: 1682-02-20
+Event location: Peoria, Peoria, IL, USA
+Event description: Birth of Benson, Mary Frances
+Participant (Primary): Mary Frances Benson (Gramps ID: I1591)
+
+Type: event
+Gramps ID: E0712
+Event type: Birth
+Event date: 1685-04-13
+Event location: Peoria, Peoria, IL, USA
+Event description: Birth of Benson, Elizabeth
+Participant (Primary): Elizabeth Benson (Gramps ID: I1592)
+
+Type: event
+Gramps ID: E0713
+Event type: Birth
+Event date: 1672-10-12
+Event location: Tallahassee, Leon, FL, USA
+Event description: Birth of ć±±æŹ, Gabriel Gustav
+Participant (Primary): Gabriel Gustav ć±±æŹ (Gramps ID: I1593)
+
+Type: event
+Gramps ID: E0714
+Event type: Death
+Event location: Paris, TN, USA
+Event description: Death of Benson, Robert
+Participant (Primary): Robert Benson (Gramps ID: I1598)
+
+Type: event
+Gramps ID: E0715
+Event type: Birth
+Event date: 1740-03
+Event description: Birth of Benson, Samuel Sr.
+Participant (Primary): Samuel Sr. Benson (Gramps ID: I1599)
+
+Type: event
+Gramps ID: E0716
+Event type: Birth
+Event date: 1950-09-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Anne Therese
+Participant (Primary): Anne Therese Garner (Gramps ID: I0016)
+
+Type: event
+Gramps ID: E0717
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Anne Therese Garner (Gramps ID: I0016)
+
+Type: event
+Gramps ID: E0718
+Event type: Birth
+Event date: 1951-11-04
+Event location: Bremerton, WA, USA
+Event description: Birth of Warner, Stephen Paul
+Participant (Primary): Stephen Paul Warner (Gramps ID: I0160)
+
+Type: event
+Gramps ID: E0719
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stephen Paul Warner (Gramps ID: I0160)
+
+Type: event
+Gramps ID: E0720
+Event type: Birth
+Event date: 1788-09-24
+Event description: Birth of Jiménez, Polly Mary
+Participant (Primary): Polly Mary Jiménez (Gramps ID: I1607)
+
+Type: event
+Gramps ID: E0721
+Event type: Birth
+Event date: 1790-11-28
+Event description: Birth of Jiménez, Elizabeth
+Participant (Primary): Elizabeth Jiménez (Gramps ID: I1609)
+
+Type: event
+Gramps ID: E0722
+Event type: Death
+Event date: 1828-04
+Event description: Death of Jiménez, Elizabeth
+Participant (Primary): Elizabeth Jiménez (Gramps ID: I1609)
+
+Type: event
+Gramps ID: E0723
+Event type: Birth
+Event date: 1955-12-09
+Event location: Bremerton, WA, USA
+Event description: Birth of Warner, Stuart Bogarte
+Participant (Primary): Stuart Bogarte Warner (Gramps ID: I0161)
+
+Type: event
+Gramps ID: E0724
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stuart Bogarte Warner (Gramps ID: I0161)
+
+Type: event
+Gramps ID: E0725
+Event type: Birth
+Event date: 1792-01-21
+Event description: Birth of Jiménez, Andrew
+Participant (Primary): Andrew Jiménez (Gramps ID: I1612)
+
+Type: event
+Gramps ID: E0726
+Event type: Birth
+Event date: 1794-11-05
+Event description: Birth of Jiménez, John
+Participant (Primary): John Jiménez (Gramps ID: I1614)
+
+Type: event
+Gramps ID: E0727
+Event type: Death
+Event date: 1821-01-28
+Event description: Death of Jiménez, John
+Participant (Primary): John Jiménez (Gramps ID: I1614)
+
+Type: event
+Gramps ID: E0728
+Event type: Birth
+Event date: 1797-04-20
+Event description: Birth of Jiménez, Sarah
+Participant (Primary): Sarah Jiménez (Gramps ID: I1616)
+
+Type: event
+Gramps ID: E0729
+Event type: Birth
+Event date: 1799-09-12
+Event description: Birth of Jiménez, Rebecca
+Participant (Primary): Rebecca Jiménez (Gramps ID: I1618)
+
+Type: event
+Gramps ID: E0730
+Event type: Birth
+Event date: 1963-06-17
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Birth of Warner, Stanley Louis
+Participant (Primary): Stanley Louis Warner (Gramps ID: I0162)
+
+Type: event
+Gramps ID: E0731
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stanley Louis Warner (Gramps ID: I0162)
+
+Type: event
+Gramps ID: E0732
+Event type: Birth
+Event date: 1805-07-27
+Event description: Birth of Jiménez, Cornelius
+Participant (Primary): Cornelius Jiménez (Gramps ID: I1620)
+
+Type: event
+Gramps ID: E0733
+Event type: Death
+Event date: 1866-03-05
+Event description: Death of Jiménez, Cornelius
+Participant (Primary): Cornelius Jiménez (Gramps ID: I1620)
+
+Type: event
+Gramps ID: E0734
+Event type: Birth
+Event date: 1803-05-23
+Event description: Birth of Blair, Jane
+Participant (Primary): Jane Blair (Gramps ID: I1621)
+
+Type: event
+Gramps ID: E0735
+Event type: Death
+Event date: 1866-03-10
+Event description: Death of Blair, Jane
+Participant (Primary): Jane Blair (Gramps ID: I1621)
+
+Type: event
+Gramps ID: E0736
+Event type: Birth
+Event location: Canton, Fulton, IL, USA
+Event description: Birth of HĂ©bert, Mr.
+Participant (Primary): Mr. HĂ©bert (Gramps ID: I1622)
+
+Type: event
+Gramps ID: E0737
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Fred
+Participant (Primary): Fred Moss (Gramps ID: I1623)
+
+Type: event
+Gramps ID: E0738
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Thomas
+Participant (Primary): Thomas Moss (Gramps ID: I1624)
+
+Type: event
+Gramps ID: E0739
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Henry
+Participant (Primary): Henry Moss (Gramps ID: I1625)
+
+Type: event
+Gramps ID: E0740
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Mary
+Participant (Primary): Mary Moss (Gramps ID: I1626)
+
+Type: event
+Gramps ID: E0741
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Florence
+Participant (Primary): Florence Moss (Gramps ID: I1627)
+
+Type: event
+Gramps ID: E0742
+Event type: Birth
+Event location: Cambridge, Middlesex, MA, USA
+Event description: Birth of Moss, Mattie
+Participant (Primary): Mattie Moss (Gramps ID: I1628)
+
+Type: event
+Gramps ID: E0743
+Event type: Birth
+Event location: Alpena, MI, USA
+Event description: Birth of Page, Margaret
+Participant (Primary): Margaret Page (Gramps ID: I1629)
+
+Type: event
+Gramps ID: E0744
+Event type: Birth
+Event date: 1951-11-24
+Event location: Medford, OR, USA
+Event description: Birth of Walker, Sharon Lynette
+Participant (Primary): Sharon Lynette Walker (Gramps ID: I0163)
+
+Type: event
+Gramps ID: E0745
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sharon Lynette Walker (Gramps ID: I0163)
+
+Type: event
+Gramps ID: E0746
+Event type: Birth
+Event location: Alpena, MI, USA
+Event description: Birth of Page, Matilda
+Participant (Primary): Matilda Page (Gramps ID: I1630)
+
+Type: event
+Gramps ID: E0747
+Event type: Birth
+Event location: Boone, NC, USA
+Event description: Birth of Page, John
+Participant (Primary): John Page (Gramps ID: I1631)
+
+Type: event
+Gramps ID: E0748
+Event type: Death
+Event location: Palatka, Putnam, FL, USA
+Event description: Death of Nowak, John H.
+Participant (Primary): John H. Nowak (Gramps ID: I1632)
+
+Type: event
+Gramps ID: E0749
+Event type: Death
+Event location: Troy, Pike, AL, USA
+Event description: Death of ĐĐłĐŸŃĐŸĐČ, Dr. Charles J.
+Participant (Primary): Dr. Charles J. ĐĐłĐŸŃĐŸĐČ (Gramps ID: I1633)
+
+Type: event
+Gramps ID: E0750
+Event type: Birth
+Event location: Troy, Pike, AL, USA
+Event description: Birth of Page, David
+Participant (Primary): David Page (Gramps ID: I1634)
+
+Type: event
+Gramps ID: E0751
+Event type: Death
+Event date: 1909
+Event location: Troy, Pike, AL, USA
+Event description: Death of Page, David
+Participant (Primary): David Page (Gramps ID: I1634)
+
+Type: event
+Gramps ID: E0752
+Event type: Birth
+Event date: 1954-11-25
+Event location: Medford, OR, USA
+Event description: Birth of Warner, Thomas Frederick
+Participant (Primary): Thomas Frederick Warner (Gramps ID: I0164)
+
+Type: event
+Gramps ID: E0753
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Thomas Frederick Warner (Gramps ID: I0164)
+
+Type: event
+Gramps ID: E0754
+Event type: Death
+Event date: 1928
+Event description: Death of ЧДŃĐșĐ°ŃĐžĐœ, Louis
+Participant (Primary): Louis ЧДŃĐșĐ°ŃĐžĐœ (Gramps ID: I1640)
+
+Type: event
+Gramps ID: E0755
+Event type: Death
+Event date: 1974-11
+Event description: Death of Page, Richard C.
+Participant (Primary): Richard C. Page (Gramps ID: I1642)
+
+Type: event
+Gramps ID: E0756
+Event type: Birth
+Event date: 1774-01-01
+Event location: Steubenville, OH, USA
+Event description: Birth of Floyd, Nancy
+Participant (Primary): Nancy Floyd (Gramps ID: I1644)
+
+Type: event
+Gramps ID: E0757
+Event type: Death
+Event date: 1849-11-26
+Event location: Orlando, Orange, FL, USA
+Event description: Death of Floyd, Nancy
+Participant (Primary): Nancy Floyd (Gramps ID: I1644)
+
+Type: event
+Gramps ID: E0758
+Event type: Birth
+Event date: 1957-10-14
+Event location: Medford, OR, USA
+Event description: Birth of Warner, Shirley Kay
+Participant (Primary): Shirley Kay Warner (Gramps ID: I0165)
+
+Type: event
+Gramps ID: E0759
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Shirley Kay Warner (Gramps ID: I0165)
+
+Type: event
+Gramps ID: E0760
+Event type: Birth
+Event location: Memphis, TN, USA
+Event description: Birth of Waters, Edith
+Participant (Primary): Edith Waters (Gramps ID: I1651)
+
+Type: event
+Gramps ID: E0761
+Event type: Birth
+Event location: Memphis, TN, USA
+Event description: Birth of Waters, Nellie
+Participant (Primary): Nellie Waters (Gramps ID: I1653)
+
+Type: event
+Gramps ID: E0762
+Event type: Birth
+Event location: Memphis, TN, USA
+Event description: Birth of Waters, Lola
+Participant (Primary): Lola Waters (Gramps ID: I1655)
+
+Type: event
+Gramps ID: E0763
+Event type: Birth
+Event location: Memphis, TN, USA
+Event description: Birth of Waters, William
+Participant (Primary): William Waters (Gramps ID: I1657)
+
+Type: event
+Gramps ID: E0764
+Event type: Birth
+Event location: Memphis, TN, USA
+Event description: Birth of Waters, Everett
+Participant (Primary): Everett Waters (Gramps ID: I1658)
+
+Type: event
+Gramps ID: E0765
+Event type: Birth
+Event date: 1962-09-07
+Event location: Medford, OR, USA
+Event description: Birth of Warner, Robert Douglas
+Participant (Primary): Robert Douglas Warner (Gramps ID: I0166)
+
+Type: event
+Gramps ID: E0766
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert Douglas Warner (Gramps ID: I0166)
+
+Type: event
+Gramps ID: E0767
+Event type: Birth
+Event date: 1951-09-17
+Event location: Brenham, Washington, TX, USA
+Event description: Birth of Page, Kenneth Fritz
+Participant (Primary): Kenneth Fritz Page (Gramps ID: I1660)
+
+Type: event
+Gramps ID: E0768
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): June Christine Pittman (Gramps ID: I1661)
+
+Type: event
+Gramps ID: E0769
+Event type: Birth
+Event date: 1982-11-23
+Event location: Butte, MT, USA
+Event description: Birth of Page, Brandon Kelly
+Participant (Primary): Brandon Kelly Page (Gramps ID: I1662)
+
+Type: event
+Gramps ID: E0770
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Brandon Kelly Page (Gramps ID: I1662)
+
+Type: event
+Gramps ID: E0771
+Event type: Birth
+Event date: 1847-10
+Event location: Concord, NH, USA
+Event description: Birth of Webb, Joseph LeRoy
+Participant (Primary): Joseph LeRoy Webb (Gramps ID: I1663)
+
+Type: event
+Gramps ID: E0772
+Event type: Birth
+Event location: Carlsbad, NM, USA
+Event description: Birth of Webb, Lucinda E.
+Participant (Primary): Lucinda E. Webb (Gramps ID: I1664)
+
+Type: event
+Gramps ID: E0773
+Event type: Birth
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Delgado, Catherine
+Participant (Primary): Catherine Delgado (Gramps ID: I1666)
+
+Type: event
+Gramps ID: E0774
+Event type: Birth
+Event date: 1804-12-15
+Event description: Birth of Serrano, Archibald
+Participant (Primary): Archibald Serrano (Gramps ID: I1667)
+
+Type: event
+Gramps ID: E0775
+Event type: Death
+Event date: 1842-11-17
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Serrano, Archibald
+Participant (Primary): Archibald Serrano (Gramps ID: I1667)
+
+Type: event
+Gramps ID: E0776
+Event type: Burial
+Event date: 1842-11-19
+Event location: Goldsboro, NC, USA
+Event description: Burial of Serrano, Archibald
+Participant (Primary): Archibald Serrano (Gramps ID: I1667)
+
+Type: event
+Gramps ID: E0777
+Event type: Birth
+Event date: 1834-04-03
+Event location: Boulder, Boulder, CO, USA
+Event description: Birth of Serrano, Joseph
+Participant (Primary): Joseph Serrano (Gramps ID: I1668)
+
+Type: event
+Gramps ID: E0778
+Event type: Death
+Event date: 1899-11-02
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Serrano, Joseph
+Participant (Primary): Joseph Serrano (Gramps ID: I1668)
+
+Type: event
+Gramps ID: E0779
+Event type: Burial
+Event date: 1899-11-04
+Event location: New Bern, NC, USA
+Event description: Burial of Serrano, Joseph
+Participant (Primary): Joseph Serrano (Gramps ID: I1668)
+
+Type: event
+Gramps ID: E0780
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Serrano, Joseph
+Participant (Primary): Joseph Serrano (Gramps ID: I1669)
+
+Type: event
+Gramps ID: E0781
+Event type: Birth
+Event date: 1948-12-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Kathryn Louise
+Participant (Primary): Kathryn Louise ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0167)
+
+Type: event
+Gramps ID: E0782
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kathryn Louise ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0167)
+
+Type: event
+Gramps ID: E0783
+Event type: Birth
+Event date: 1838-04-25
+Event description: Birth of Quinn, Abraham
+Participant (Primary): Abraham Quinn (Gramps ID: I1670)
+
+Type: event
+Gramps ID: E0784
+Event type: Death
+Event date: 1916-02-18
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Quinn, Abraham
+Participant (Primary): Abraham Quinn (Gramps ID: I1670)
+
+Type: event
+Gramps ID: E0785
+Event type: Birth
+Event date: 1867-02-24
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Quinn, Elizabeth Marium
+Participant (Primary): Elizabeth Marium Quinn (Gramps ID: I1671)
+
+Type: event
+Gramps ID: E0786
+Event type: Death
+Event location: Reno-Sparks, NV, USA
+Event description: Death of Quinn, Elizabeth Marium
+Participant (Primary): Elizabeth Marium Quinn (Gramps ID: I1671)
+
+Type: event
+Gramps ID: E0787
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Serrano, Abraham
+Participant (Primary): Abraham Serrano (Gramps ID: I1672)
+
+Type: event
+Gramps ID: E0788
+Event type: Death
+Event date: 1847
+Event description: Death of Blanco, Henry
+Participant (Primary): Henry Blanco (Gramps ID: I1673)
+
+Type: event
+Gramps ID: E0789
+Event type: Birth
+Event date: 1951-10-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Elaine Suzanne
+Participant (Primary): Elaine Suzanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0168)
+
+Type: event
+Gramps ID: E0790
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elaine Suzanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0168)
+
+Type: event
+Gramps ID: E0791
+Event type: Birth
+Event date: 1750-05-04
+Event location: Anniston, Calhoun, AL, USA
+Event description: Birth of Johansen, John
+Participant (Primary): John Johansen (Gramps ID: I1682)
+
+Type: event
+Gramps ID: E0792
+Event type: Death
+Event date: 1835
+Event location: Newport, TN, USA
+Event description: Death of Johansen, John
+Participant (Primary): John Johansen (Gramps ID: I1682)
+
+Type: event
+Gramps ID: E0793
+Event type: Birth
+Event date: 1759-01-02
+Event location: Monroe, WI, USA
+Event description: Birth of Blanco, Samuel
+Participant (Primary): Samuel Blanco (Gramps ID: I1683)
+
+Type: event
+Gramps ID: E0794
+Event type: Death
+Event date: 1840-01-14
+Event description: Death of Blanco, Samuel
+Participant (Primary): Samuel Blanco (Gramps ID: I1683)
+
+Type: event
+Gramps ID: E0795
+Event type: Birth
+Event date: 1752
+Event description: Birth of Blanco, Daniel
+Participant (Primary): Daniel Blanco (Gramps ID: I1684)
+
+Type: event
+Gramps ID: E0796
+Event type: Death
+Event date: 1805
+Event description: Death of Blanco, Daniel
+Participant (Primary): Daniel Blanco (Gramps ID: I1684)
+
+Type: event
+Gramps ID: E0797
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Serrano, Carrie
+Participant (Primary): Carrie Serrano (Gramps ID: I1687)
+
+Type: event
+Gramps ID: E0798
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Serrano, Dot
+Participant (Primary): Dot Serrano (Gramps ID: I1689)
+
+Type: event
+Gramps ID: E0799
+Event type: Birth
+Event date: 1953-09-11
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Darrell Edwin
+Participant (Primary): Darrell Edwin ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0169)
+
+Type: event
+Gramps ID: E0800
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Darrell Edwin ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0169)
+
+Type: event
+Gramps ID: E0801
+Event type: Birth
+Event date: 1884-11-17
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Ernest Arlington
+Participant (Primary): Ernest Arlington Webb (Gramps ID: I1694)
+
+Type: event
+Gramps ID: E0802
+Event type: Death
+Event date: 1957-10-07
+Event description: Death of Webb, Ernest Arlington
+Participant (Primary): Ernest Arlington Webb (Gramps ID: I1694)
+
+Type: event
+Gramps ID: E0803
+Event type: Birth
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, James
+Participant (Primary): James Webb (Gramps ID: I1695)
+
+Type: event
+Gramps ID: E0804
+Event type: Birth
+Event date: 1883-02-22
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, David Festus
+Participant (Primary): David Festus Webb (Gramps ID: I1698)
+
+Type: event
+Gramps ID: E0805
+Event type: Death
+Event date: 1950-08-23
+Event description: Death of Webb, David Festus
+Participant (Primary): David Festus Webb (Gramps ID: I1698)
+
+Type: event
+Gramps ID: E0806
+Event type: Birth
+Event date: 1886-11-09
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, James Leslie
+Participant (Primary): James Leslie Webb (Gramps ID: I1699)
+
+Type: event
+Gramps ID: E0807
+Event type: Death
+Event date: 1963-01-25
+Event description: Death of Webb, James Leslie
+Participant (Primary): James Leslie Webb (Gramps ID: I1699)
+
+Type: event
+Gramps ID: E0808
+Event type: Birth
+Event date: 1955-07-31
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Gerard Stephen
+Participant (Primary): Gerard Stephen Garner (Gramps ID: I0017)
+
+Type: event
+Gramps ID: E0809
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gerard Stephen Garner (Gramps ID: I0017)
+
+Type: event
+Gramps ID: E0810
+Event type: Birth
+Event date: 1955-04-30
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Barbara Joanne
+Participant (Primary): Barbara Joanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0170)
+
+Type: event
+Gramps ID: E0811
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Barbara Joanne ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0170)
+
+Type: event
+Gramps ID: E0812
+Event type: Birth
+Event date: 1888-11-19
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Michael Christie
+Participant (Primary): Michael Christie Webb (Gramps ID: I1700)
+
+Type: event
+Gramps ID: E0813
+Event type: Death
+Event date: 1970-07-23
+Event description: Death of Webb, Michael Christie
+Participant (Primary): Michael Christie Webb (Gramps ID: I1700)
+
+Type: event
+Gramps ID: E0814
+Event type: Birth
+Event date: 1890-10-02
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Anna Mabel
+Participant (Primary): Anna Mabel Webb (Gramps ID: I1701)
+
+Type: event
+Gramps ID: E0815
+Event type: Death
+Event date: 1967-07-12
+Event description: Death of Webb, Anna Mabel
+Participant (Primary): Anna Mabel Webb (Gramps ID: I1701)
+
+Type: event
+Gramps ID: E0816
+Event type: Birth
+Event date: 1892-12-15
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Mary Ruth
+Participant (Primary): Mary Ruth Webb (Gramps ID: I1702)
+
+Type: event
+Gramps ID: E0817
+Event type: Death
+Event date: 1956-11-29
+Event description: Death of Webb, Mary Ruth
+Participant (Primary): Mary Ruth Webb (Gramps ID: I1702)
+
+Type: event
+Gramps ID: E0818
+Event type: Birth
+Event date: 1895-11-10
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Harry Noble
+Participant (Primary): Harry Noble Webb (Gramps ID: I1703)
+
+Type: event
+Gramps ID: E0819
+Event type: Death
+Event date: 1925-12-07
+Event description: Death of Webb, Harry Noble
+Participant (Primary): Harry Noble Webb (Gramps ID: I1703)
+
+Type: event
+Gramps ID: E0820
+Event type: Birth
+Event date: 1899-02-04
+Event location: Reno-Sparks, NV, USA
+Event description: Birth of Webb, Frances Mae
+Participant (Primary): Frances Mae Webb (Gramps ID: I1704)
+
+Type: event
+Gramps ID: E0821
+Event type: Death
+Event date: 1989-05-05
+Event description: Death of Webb, Frances Mae
+Participant (Primary): Frances Mae Webb (Gramps ID: I1704)
+
+Type: event
+Gramps ID: E0822
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Phillip D. Ford (Gramps ID: I1705)
+
+Type: event
+Gramps ID: E0823
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cliff Parks (Gramps ID: I1707)
+
+Type: event
+Gramps ID: E0824
+Event type: Birth
+Event date: 1958-04-12
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Lucinda Elinor
+Participant (Primary): Lucinda Elinor ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0171)
+
+Type: event
+Gramps ID: E0825
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lucinda Elinor ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0171)
+
+Type: event
+Gramps ID: E0826
+Event type: Death
+Event date: 1849-12-25
+Event location: Huntsville, Walker, TX, USA
+Event description: Death of Rodriquez, John
+Participant (Primary): John Rodriquez (Gramps ID: I1710)
+
+Type: event
+Gramps ID: E0827
+Event type: Birth
+Event date: 1771
+Event description: Birth of ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+Participant (Primary): Eve ĐĐŸĐ»ŃĐșĐŸĐČ (Gramps ID: I1711)
+
+Type: event
+Gramps ID: E0828
+Event type: Death
+Event location: Huntsville, Walker, TX, USA
+Event description: Death of ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+Participant (Primary): Eve ĐĐŸĐ»ŃĐșĐŸĐČ (Gramps ID: I1711)
+
+Type: event
+Gramps ID: E0829
+Event type: Birth
+Event date: 1806-12-17
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, William Frederick
+Participant (Primary): William Frederick Rodriquez (Gramps ID: I1712)
+
+Type: event
+Gramps ID: E0830
+Event type: Birth
+Event date: 1807-01-22
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, John
+Participant (Primary): John Rodriquez (Gramps ID: I1713)
+
+Type: event
+Gramps ID: E0831
+Event type: Birth
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Alvin
+Participant (Primary): Alvin Rodriquez (Gramps ID: I1714)
+
+Type: event
+Gramps ID: E0832
+Event type: Birth
+Event date: 1816-04-01
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Elizabeth Jane
+Participant (Primary): Elizabeth Jane Rodriquez (Gramps ID: I1715)
+
+Type: event
+Gramps ID: E0833
+Event type: Birth
+Event date: 1818-05-07
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, William M.
+Participant (Primary): William M. Rodriquez (Gramps ID: I1716)
+
+Type: event
+Gramps ID: E0834
+Event type: Birth
+Event date: 1820-02-28
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Barbara Ann
+Participant (Primary): Barbara Ann Rodriquez (Gramps ID: I1717)
+
+Type: event
+Gramps ID: E0835
+Event type: Death
+Event date: 1902-07-20
+Event location: Juneau, AK, USA
+Event description: Death of Rodriquez, Barbara Ann
+Participant (Primary): Barbara Ann Rodriquez (Gramps ID: I1717)
+
+Type: event
+Gramps ID: E0836
+Event type: Birth
+Event date: 1821-11-28
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Oma
+Participant (Primary): Oma Rodriquez (Gramps ID: I1718)
+
+Type: event
+Gramps ID: E0837
+Event type: Birth
+Event date: 1823-06-17
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Mary Ann
+Participant (Primary): Mary Ann Rodriquez (Gramps ID: I1719)
+
+Type: event
+Gramps ID: E0838
+Event type: Birth
+Event date: 1963-05-18
+Event description: Birth of Osborne, Paul Daniel
+Participant (Primary): Paul Daniel Osborne (Gramps ID: I0172)
+
+Type: event
+Gramps ID: E0839
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Daniel Osborne (Gramps ID: I0172)
+
+Type: event
+Gramps ID: E0840
+Event type: Birth
+Event date: 1825-09-24
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Maria Louisa
+Participant (Primary): Maria Louisa Rodriquez (Gramps ID: I1720)
+
+Type: event
+Gramps ID: E0841
+Event type: Birth
+Event date: 1828-08-27
+Event location: MayagĂŒez, PR, USA
+Event description: Birth of Rodriquez, Michael Mordica
+Participant (Primary): Michael Mordica Rodriquez (Gramps ID: I1721)
+
+Type: event
+Gramps ID: E0842
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Peter
+Participant (Primary): Peter Rodriquez (Gramps ID: I1722)
+
+Type: event
+Gramps ID: E0843
+Event type: Birth
+Event date: 1770-03-03
+Event location: Lewiston, Nez Perce, ID, USA
+Event description: Birth of Rodriquez, Mary
+Participant (Primary): Mary Rodriquez (Gramps ID: I1723)
+
+Type: event
+Gramps ID: E0844
+Event type: Birth
+Event date: 1772-01-06
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Mordica
+Participant (Primary): Mordica Rodriquez (Gramps ID: I1725)
+
+Type: event
+Gramps ID: E0845
+Event type: Death
+Event date: 1853-07
+Event location: Augusta, ME, USA
+Event description: Death of Rodriquez, Mordica
+Participant (Primary): Mordica Rodriquez (Gramps ID: I1725)
+
+Type: event
+Gramps ID: E0846
+Event type: Birth
+Event date: 1768-01-04
+Event description: Birth of ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+Participant (Primary): Jane ĐĐ°Đ·Đ°ĐșĐŸĐČ (Gramps ID: I1726)
+
+Type: event
+Gramps ID: E0847
+Event type: Death
+Event date: 1828-12-21
+Event location: Gallup, NM, USA
+Event description: Death of ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+Participant (Primary): Jane ĐĐ°Đ·Đ°ĐșĐŸĐČ (Gramps ID: I1726)
+
+Type: event
+Gramps ID: E0848
+Event type: Birth
+Event date: 1818
+Event description: Birth of ĐĐŸŃĐŸĐœĐŸĐČ, Katherine
+Participant (Primary): Katherine ĐĐŸŃĐŸĐœĐŸĐČ (Gramps ID: I1727)
+
+Type: event
+Gramps ID: E0849
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Charles
+Participant (Primary): Charles Rodriquez (Gramps ID: I1728)
+
+Type: event
+Gramps ID: E0850
+Event type: Birth
+Event date: 1776-07-22
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, James
+Participant (Primary): James Rodriquez (Gramps ID: I1729)
+
+Type: event
+Gramps ID: E0851
+Event type: Birth
+Event date: 1967-10-06
+Event description: Birth of Osborne, Julia Marie
+Participant (Primary): Julia Marie Osborne (Gramps ID: I0173)
+
+Type: event
+Gramps ID: E0852
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Julia Marie Osborne (Gramps ID: I0173)
+
+Type: event
+Gramps ID: E0853
+Event type: Birth
+Event date: 1778-07-31
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Richard
+Participant (Primary): Richard Rodriquez (Gramps ID: I1730)
+
+Type: event
+Gramps ID: E0854
+Event type: Birth
+Event date: 1781-03-05
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Margaret
+Participant (Primary): Margaret Rodriquez (Gramps ID: I1732)
+
+Type: event
+Gramps ID: E0855
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Thomas
+Participant (Primary): Thomas Rodriquez (Gramps ID: I1733)
+
+Type: event
+Gramps ID: E0856
+Event type: Birth
+Event location: La Follette, TN, USA
+Event description: Birth of Rodriquez, Elizabeth
+Participant (Primary): Elizabeth Rodriquez (Gramps ID: I1734)
+
+Type: event
+Gramps ID: E0857
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dean Serrano (Gramps ID: I1735)
+
+Type: event
+Gramps ID: E0858
+Event type: Birth
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Lessard
+Participant (Primary): Lessard (Gramps ID: I1738)
+
+Type: event
+Gramps ID: E0859
+Event type: Birth
+Event date: 1885
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Mary Josephine
+Participant (Primary): Mary Josephine Boucher (Gramps ID: I1739)
+
+Type: event
+Gramps ID: E0860
+Event type: Birth
+Event date: 1922-09-07
+Event location: Levelland, Hockley, TX, USA
+Event description: Birth of Pelletier, Josephine
+Participant (Primary): Josephine Pelletier (Gramps ID: I0174)
+
+Type: event
+Gramps ID: E0861
+Event type: Death
+Event date: 1998-09-15
+Event location: Worthington, MN, USA
+Event description: Death of Pelletier, Josephine
+Participant (Primary): Josephine Pelletier (Gramps ID: I0174)
+
+Type: event
+Gramps ID: E0862
+Event type: Birth
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Patrick
+Participant (Primary): Patrick Boucher (Gramps ID: I1745)
+
+Type: event
+Gramps ID: E0863
+Event type: Death
+Event date: 1932-12-03
+Event location: Summerville, Chattooga, GA, USA
+Event description: Death of Dennis, Susan
+Participant (Primary): Susan Dennis (Gramps ID: I1746)
+
+Type: event
+Gramps ID: E0864
+Event type: Birth
+Event date: 1846
+Event description: Birth of Bush, James
+Participant (Primary): James Bush (Gramps ID: I1747)
+
+Type: event
+Gramps ID: E0865
+Event type: Birth
+Event date: 1879-04
+Event description: Birth of Bush, Patrick
+Participant (Primary): Patrick Bush (Gramps ID: I1752)
+
+Type: event
+Gramps ID: E0866
+Event type: Birth
+Event location: Willimantic, Windham, CT, USA
+Event description: Birth of Boucher, Michael Shannon
+Participant (Primary): Michael Shannon Boucher (Gramps ID: I1759)
+
+Type: event
+Gramps ID: E0867
+Event type: Birth
+Event date: 1945-01-03
+Event description: Birth of Garner, Francis William
+Participant (Primary): Francis William Garner (Gramps ID: I0176)
+
+Type: event
+Gramps ID: E0868
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Francis William Garner (Gramps ID: I0176)
+
+Type: event
+Gramps ID: E0869
+Event type: Birth
+Event location: Ellensburg, WA, USA
+Event description: Birth of Boucher, Bishop Patrick
+Participant (Primary): Bishop Patrick Boucher (Gramps ID: I1764)
+
+Type: event
+Gramps ID: E0870
+Event type: Birth
+Event date: 1968
+Event description: Birth of Hamilton, John
+Participant (Primary): John Hamilton (Gramps ID: I1765)
+
+Type: event
+Gramps ID: E0871
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Hamilton (Gramps ID: I1765)
+
+Type: event
+Gramps ID: E0872
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joe St-Pierre (Gramps ID: I1766)
+
+Type: event
+Gramps ID: E0873
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Brady (Gramps ID: I1767)
+
+Type: event
+Gramps ID: E0874
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Shane Brady (Gramps ID: I1768)
+
+Type: event
+Gramps ID: E0875
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Clara Brady (Gramps ID: I1769)
+
+Type: event
+Gramps ID: E0876
+Event type: Birth
+Event date: 1947-02-28
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Richard Eugene
+Participant (Primary): Richard Eugene Garner (Gramps ID: I0177)
+
+Type: event
+Gramps ID: E0877
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Richard Eugene Garner (Gramps ID: I0177)
+
+Type: event
+Gramps ID: E0878
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Tony Brady (Gramps ID: I1770)
+
+Type: event
+Gramps ID: E0879
+Event type: Birth
+Event date: 1988
+Event description: Birth of Brady, Roisin
+Participant (Primary): Roisin Brady (Gramps ID: I1771)
+
+Type: event
+Gramps ID: E0880
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Roisin Brady (Gramps ID: I1771)
+
+Type: event
+Gramps ID: E0881
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Aidinn Brady (Gramps ID: I1772)
+
+Type: event
+Gramps ID: E0882
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Enda Brady (Gramps ID: I1773)
+
+Type: event
+Gramps ID: E0883
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Caldwell (Gramps ID: I1774)
+
+Type: event
+Gramps ID: E0884
+Event type: Birth
+Event date: 1984
+Event description: Birth of Caldwell, Colm
+Participant (Primary): Colm Caldwell (Gramps ID: I1775)
+
+Type: event
+Gramps ID: E0885
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Colm Caldwell (Gramps ID: I1775)
+
+Type: event
+Gramps ID: E0886
+Event type: Birth
+Event date: 1985
+Event description: Birth of Caldwell, Niall
+Participant (Primary): Niall Caldwell (Gramps ID: I1776)
+
+Type: event
+Gramps ID: E0887
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Niall Caldwell (Gramps ID: I1776)
+
+Type: event
+Gramps ID: E0888
+Event type: Birth
+Event date: 1986
+Event description: Birth of Caldwell, Fergl
+Participant (Primary): Fergl Caldwell (Gramps ID: I1777)
+
+Type: event
+Gramps ID: E0889
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Fergl Caldwell (Gramps ID: I1777)
+
+Type: event
+Gramps ID: E0890
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gerry Hart (Gramps ID: I1778)
+
+Type: event
+Gramps ID: E0891
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Laura Hart (Gramps ID: I1779)
+
+Type: event
+Gramps ID: E0892
+Event type: Birth
+Event date: 1948-06-12
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Michael Stanley
+Participant (Primary): Michael Stanley Garner (Gramps ID: I0178)
+
+Type: event
+Gramps ID: E0893
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Stanley Garner (Gramps ID: I0178)
+
+Type: event
+Gramps ID: E0894
+Event type: Birth
+Event date: 1986
+Event description: Birth of Hart, Raymond
+Participant (Primary): Raymond Hart (Gramps ID: I1780)
+
+Type: event
+Gramps ID: E0895
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Raymond Hart (Gramps ID: I1780)
+
+Type: event
+Gramps ID: E0896
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lisa Hart (Gramps ID: I1781)
+
+Type: event
+Gramps ID: E0897
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Hart (Gramps ID: I1782)
+
+Type: event
+Gramps ID: E0898
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Boucher (Gramps ID: I1783)
+
+Type: event
+Gramps ID: E0899
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michelle Boucher (Gramps ID: I1784)
+
+Type: event
+Gramps ID: E0900
+Event type: Birth
+Event date: 1984
+Event description: Birth of Boucher, Tony
+Participant (Primary): Tony Boucher (Gramps ID: I1785)
+
+Type: event
+Gramps ID: E0901
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Tony Boucher (Gramps ID: I1785)
+
+Type: event
+Gramps ID: E0902
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Martin Boucher (Gramps ID: I1786)
+
+Type: event
+Gramps ID: E0903
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Tracy Boucher (Gramps ID: I1787)
+
+Type: event
+Gramps ID: E0904
+Event type: Birth
+Event date: 1998-06-30
+Event location: Birmingham, Jefferson, AL, USA
+Event description: Birth of Warner, Noah Stuart
+Participant (Primary): Noah Stuart Warner (Gramps ID: I1789)
+
+Type: event
+Gramps ID: E0905
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Noah Stuart Warner (Gramps ID: I1789)
+
+Type: event
+Gramps ID: E0906
+Event type: Birth
+Event date: 1949-11-08
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Barbara Jo
+Participant (Primary): Barbara Jo Garner (Gramps ID: I0179)
+
+Type: event
+Gramps ID: E0907
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Barbara Jo Garner (Gramps ID: I0179)
+
+Type: event
+Gramps ID: E0908
+Event type: Birth
+Event date: 1855-05-27
+Event location: Worthington, MN, USA
+Event description: Birth of Fernandez, Michael
+Participant (Primary): Michael Fernandez (Gramps ID: I1790)
+
+Type: event
+Gramps ID: E0909
+Event type: Birth
+Event date: 1940-07-06
+Event location: Reading, PA, USA
+Event description: Birth of McCoy, Thomas Michael
+Participant (Primary): Thomas Michael McCoy (Gramps ID: I1791)
+
+Type: event
+Gramps ID: E0910
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Thomas Michael McCoy (Gramps ID: I1791)
+
+Type: event
+Gramps ID: E0911
+Event type: Birth
+Event date: 1945-11-17
+Event location: Oneonta, Otsego, NY, USA
+Event description: Birth of Howell, Mary
+Participant (Primary): Mary Howell (Gramps ID: I1793)
+
+Type: event
+Gramps ID: E0912
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Howell (Gramps ID: I1793)
+
+Type: event
+Gramps ID: E0913
+Event type: Birth
+Event date: 1971-01-20
+Event location: Tallulah, Madison, LA, USA
+Event description: Birth of McCoy, Celine Bridget
+Participant (Primary): Celine Bridget McCoy (Gramps ID: I1794)
+
+Type: event
+Gramps ID: E0914
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Celine Bridget McCoy (Gramps ID: I1794)
+
+Type: event
+Gramps ID: E0915
+Event type: Birth
+Event date: 1966-11-27
+Event location: Missoula, MT, USA
+Event description: Birth of Stokes, Gabriel
+Participant (Primary): Gabriel Stokes (Gramps ID: I1795)
+
+Type: event
+Gramps ID: E0916
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gabriel Stokes (Gramps ID: I1795)
+
+Type: event
+Gramps ID: E0917
+Event type: Birth
+Event date: 1997-03-27
+Event location: Jackson, WY, USA
+Event description: Birth of Stokes, Liam Michael
+Participant (Primary): Liam Michael Stokes (Gramps ID: I1796)
+
+Type: event
+Gramps ID: E0918
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Liam Michael Stokes (Gramps ID: I1796)
+
+Type: event
+Gramps ID: E0919
+Event type: Birth
+Event date: 1975-07-18
+Event location: Tallulah, Madison, LA, USA
+Event description: Birth of McCoy, Canice Oliver
+Participant (Primary): Canice Oliver McCoy (Gramps ID: I1797)
+
+Type: event
+Gramps ID: E0920
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Canice Oliver McCoy (Gramps ID: I1797)
+
+Type: event
+Gramps ID: E0921
+Event type: Birth
+Event date: 1979-02-07
+Event location: Tallulah, Madison, LA, USA
+Event description: Birth of McCoy, Paula
+Participant (Primary): Paula McCoy (Gramps ID: I1798)
+
+Type: event
+Gramps ID: E0922
+Event type: Death
+Event date: 1983-07-03
+Event location: Havre, MT, USA
+Event description: Death of McCoy, Paula
+Participant (Primary): Paula McCoy (Gramps ID: I1798)
+
+Type: event
+Gramps ID: E0923
+Event type: Birth
+Event date: 1981-09-03
+Event location: Tallulah, Madison, LA, USA
+Event description: Birth of Obrien, Kieran Thomas
+Participant (Primary): Kieran Thomas Obrien (Gramps ID: I1799)
+
+Type: event
+Gramps ID: E0924
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kieran Thomas Obrien (Gramps ID: I1799)
+
+Type: event
+Gramps ID: E0925
+Event type: Birth
+Event date: 1956-12-21
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, David Walter
+Participant (Primary): David Walter Garner (Gramps ID: I0018)
+
+Type: event
+Gramps ID: E0926
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Walter Garner (Gramps ID: I0018)
+
+Type: event
+Gramps ID: E0927
+Event type: Birth
+Event date: 1952-09-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Kathryn Mary
+Participant (Primary): Kathryn Mary Garner (Gramps ID: I0180)
+
+Type: event
+Gramps ID: E0928
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kathryn Mary Garner (Gramps ID: I0180)
+
+Type: event
+Gramps ID: E0929
+Event type: Birth
+Event date: 1984-04-12
+Event location: Tallulah, Madison, LA, USA
+Event description: Birth of McCoy, Orla Sarah
+Participant (Primary): Orla Sarah McCoy (Gramps ID: I1800)
+
+Type: event
+Gramps ID: E0930
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Orla Sarah McCoy (Gramps ID: I1800)
+
+Type: event
+Gramps ID: E0931
+Event type: Birth
+Event date: 1890-05-23
+Event location: Reading, PA, USA
+Event description: Birth of McCoy, Francis
+Participant (Primary): Francis McCoy (Gramps ID: I1801)
+
+Type: event
+Gramps ID: E0932
+Event type: Death
+Event date: 1962-05-19
+Event location: Evanston, WY, USA
+Event description: Death of McCoy, Francis
+Participant (Primary): Francis McCoy (Gramps ID: I1801)
+
+Type: event
+Gramps ID: E0933
+Event type: Birth
+Event date: 1906-04
+Event location: Worcester, Worcester, MA, USA
+Event description: Birth of Reed, Sarah
+Participant (Primary): Sarah Reed (Gramps ID: I1802)
+
+Type: event
+Gramps ID: E0934
+Event type: Death
+Event date: 1984-05-12
+Event location: Worcester, Worcester, MA, USA
+Event description: Death of Reed, Sarah
+Participant (Primary): Sarah Reed (Gramps ID: I1802)
+
+Type: event
+Gramps ID: E0935
+Event type: Birth
+Event date: um 1847
+Event description: Birth of Reed, Matthew
+Participant (Primary): Matthew Reed (Gramps ID: I1803)
+
+Type: event
+Gramps ID: E0936
+Event type: Death
+Event date: 1927-10-21
+Event location: Worcester, Worcester, MA, USA
+Event description: Death of Reed, Matthew
+Participant (Primary): Matthew Reed (Gramps ID: I1803)
+
+Type: event
+Gramps ID: E0937
+Event type: Death
+Event date: 1936-01-29
+Event location: Worcester, Worcester, MA, USA
+Event description: Death of Gibbs, Mary
+Participant (Primary): Mary Gibbs (Gramps ID: I1804)
+
+Type: event
+Gramps ID: E0938
+Event type: Death
+Event date: 1925-03-19
+Event location: Worcester, Worcester, MA, USA
+Event description: Death of Reed, Michael
+Participant (Primary): Michael Reed (Gramps ID: I1805)
+
+Type: event
+Gramps ID: E0939
+Event type: Birth
+Event date: um 1904
+Event location: Worcester, Worcester, MA, USA
+Event description: Birth of Reed, Peter
+Participant (Primary): Peter Reed (Gramps ID: I1806)
+
+Type: event
+Gramps ID: E0940
+Event type: Death
+Event date: 1981-04-12
+Event location: Faribault-Northfield, MN, USA
+Event description: Death of Reed, Peter
+Participant (Primary): Peter Reed (Gramps ID: I1806)
+
+Type: event
+Gramps ID: E0941
+Event type: Death
+Event date: 1972-08-08
+Event description: Death of ĐŃĐ·ĐœĐ”ŃĐŸĐČ, Hanora
+Participant (Primary): Hanora ĐŃĐ·ĐœĐ”ŃĐŸĐČ (Gramps ID: I1807)
+
+Type: event
+Gramps ID: E0942
+Event type: Birth
+Event date: 1948-05-07
+Event location: Niles, MI, USA
+Event description: Birth of Reed, Terrence
+Participant (Primary): Terrence Reed (Gramps ID: I1808)
+
+Type: event
+Gramps ID: E0943
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Terrence Reed (Gramps ID: I1808)
+
+Type: event
+Gramps ID: E0944
+Event type: Birth
+Event date: 1943-05-13
+Event location: Niles, MI, USA
+Event description: Birth of Reed, Joan
+Participant (Primary): Joan Reed (Gramps ID: I1809)
+
+Type: event
+Gramps ID: E0945
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joan Reed (Gramps ID: I1809)
+
+Type: event
+Gramps ID: E0946
+Event type: Birth
+Event date: 1954-08-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Peter George
+Participant (Primary): Peter George Garner (Gramps ID: I0181)
+
+Type: event
+Gramps ID: E0947
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Peter George Garner (Gramps ID: I0181)
+
+Type: event
+Gramps ID: E0948
+Event type: Birth
+Event date: 1936-07
+Event location: Niles, MI, USA
+Event description: Birth of Reed, Peggy
+Participant (Primary): Peggy Reed (Gramps ID: I1810)
+
+Type: event
+Gramps ID: E0949
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Peggy Reed (Gramps ID: I1810)
+
+Type: event
+Gramps ID: E0950
+Event type: Birth
+Event date: 1938-02
+Event location: Niles, MI, USA
+Event description: Birth of Reed, Carmel
+Participant (Primary): Carmel Reed (Gramps ID: I1811)
+
+Type: event
+Gramps ID: E0951
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Carmel Reed (Gramps ID: I1811)
+
+Type: event
+Gramps ID: E0952
+Event type: Birth
+Event date: 1934-07
+Event location: Niles, MI, USA
+Event description: Birth of Reed, Noreen
+Participant (Primary): Noreen Reed (Gramps ID: I1812)
+
+Type: event
+Gramps ID: E0953
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Noreen Reed (Gramps ID: I1812)
+
+Type: event
+Gramps ID: E0954
+Event type: Death
+Event date: um 1996
+Event location: Columbus, MS, USA
+Event description: Death of Duncan
+Participant (Primary): Duncan (Gramps ID: I1816)
+
+Type: event
+Gramps ID: E0955
+Event type: Birth
+Event date: um 1978
+Event location: Columbus, MS, USA
+Event description: Birth of Duncan, Michael
+Participant (Primary): Michael Duncan (Gramps ID: I1817)
+
+Type: event
+Gramps ID: E0956
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Duncan (Gramps ID: I1817)
+
+Type: event
+Gramps ID: E0957
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Noella Duncan (Gramps ID: I1818)
+
+Type: event
+Gramps ID: E0958
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Clare Duncan (Gramps ID: I1819)
+
+Type: event
+Gramps ID: E0959
+Event type: Birth
+Event date: 1957-08-31
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Bernadette
+Participant (Primary): Bernadette Garner (Gramps ID: I0182)
+
+Type: event
+Gramps ID: E0960
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bernadette Garner (Gramps ID: I0182)
+
+Type: event
+Gramps ID: E0961
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Colin Duncan (Gramps ID: I1820)
+
+Type: event
+Gramps ID: E0962
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Maria Gibbs (Gramps ID: I1821)
+
+Type: event
+Gramps ID: E0963
+Event type: Death
+Event date: 1967-07-07
+Event location: St, Louis, St, Louis, MO-IL, USA
+Event description: Death of Reed, Patrick
+Participant (Primary): Patrick Reed (Gramps ID: I1822)
+
+Type: event
+Gramps ID: E0964
+Event type: Burial
+Event date: 1967-07-09
+Event location: Lima, OH, USA
+Event description: Burial of Reed, Patrick
+Participant (Primary): Patrick Reed (Gramps ID: I1822)
+
+Type: event
+Gramps ID: E0965
+Event type: Birth
+Event date: um 1914
+Event location: Kingsport, TN, USA
+Event description: Birth of Reed, Anastasia
+Participant (Primary): Anastasia Reed (Gramps ID: I1823)
+
+Type: event
+Gramps ID: E0966
+Event type: Birth
+Event date: um 1901
+Event location: Dodge City, Ford, KS, USA
+Event description: Birth of Reed, Catherine
+Participant (Primary): Catherine Reed (Gramps ID: I1825)
+
+Type: event
+Gramps ID: E0967
+Event type: Death
+Event date: 1994-05-02
+Event description: Death of Reed, Catherine
+Participant (Primary): Catherine Reed (Gramps ID: I1825)
+
+Type: event
+Gramps ID: E0968
+Event type: Birth
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Louella Marie
+Participant (Primary): Louella Marie Garner (Gramps ID: I0183)
+
+Type: event
+Gramps ID: E0969
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Louella Marie Garner (Gramps ID: I0183)
+
+Type: event
+Gramps ID: E0970
+Event type: Birth
+Event date: um 1898
+Event description: Birth of Reed, Jane
+Participant (Primary): Jane Reed (Gramps ID: I1833)
+
+Type: event
+Gramps ID: E0971
+Event type: Death
+Event date: 1976-02-25
+Event location: Poughkeepsie, Dutchess, NY, USA
+Event description: Death of Reed, Jane
+Participant (Primary): Jane Reed (Gramps ID: I1833)
+
+Type: event
+Gramps ID: E0972
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Patrick Đ€Đ”ĐŽĐŸŃĐŸĐČ (Gramps ID: I1835)
+
+Type: event
+Gramps ID: E0973
+Event type: Birth
+Event date: um 1991
+Event location: Coshocton, OH, USA
+Event description: Birth of Reed, Hannah
+Participant (Primary): Hannah Reed (Gramps ID: I1839)
+
+Type: event
+Gramps ID: E0974
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Hannah Reed (Gramps ID: I1839)
+
+Type: event
+Gramps ID: E0975
+Event type: Birth
+Event date: 1960-07-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Cecilia
+Participant (Primary): Cecilia Garner (Gramps ID: I0184)
+
+Type: event
+Gramps ID: E0976
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cecilia Garner (Gramps ID: I0184)
+
+Type: event
+Gramps ID: E0977
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ann McCoy (Gramps ID: I1840)
+
+Type: event
+Gramps ID: E0978
+Event type: Death
+Event date: 1979-10-01
+Event location: Kingsport, TN, USA
+Event description: Death of Gibbs, Elizabeth
+Participant (Primary): Elizabeth Gibbs (Gramps ID: I1843)
+
+Type: event
+Gramps ID: E0979
+Event type: Birth
+Event location: Hayward, Alameda, CA, USA
+Event description: Birth of Reed, Peter James?
+Participant (Primary): Peter James? Reed (Gramps ID: I1845)
+
+Type: event
+Gramps ID: E0980
+Event type: Birth
+Event location: Kearney, NE, USA
+Event description: Birth of Reed, Owen
+Participant (Primary): Owen Reed (Gramps ID: I1846)
+
+Type: event
+Gramps ID: E0981
+Event type: Birth
+Event date: 1885-02-24
+Event location: Alexandria, MD, USA
+Event description: Birth of Reed, Bridget Ann
+Participant (Primary): Bridget Ann Reed (Gramps ID: I1847)
+
+Type: event
+Gramps ID: E0982
+Event type: Death
+Event location: Kearney, NE, USA
+Event description: Death of Reed, Bridget Ann
+Participant (Primary): Bridget Ann Reed (Gramps ID: I1847)
+
+Type: event
+Gramps ID: E0983
+Event type: Birth
+Event date: 1928-07
+Event location: Decatur, Morgan, AL, USA
+Event description: Birth of Reed, Norah
+Participant (Primary): Norah Reed (Gramps ID: I1848)
+
+Type: event
+Gramps ID: E0984
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Norah Reed (Gramps ID: I1848)
+
+Type: event
+Gramps ID: E0985
+Event type: Birth
+Event date: 1876-11-25
+Event location: Laconia, NH, USA
+Event description: Birth of Reed, Terence
+Participant (Primary): Terence Reed (Gramps ID: I1849)
+
+Type: event
+Gramps ID: E0986
+Event type: Birth
+Event date: 1962-10-16
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, Mark Gerard
+Participant (Primary): Mark Gerard Garner (Gramps ID: I0185)
+
+Type: event
+Gramps ID: E0987
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mark Gerard Garner (Gramps ID: I0185)
+
+Type: event
+Gramps ID: E0988
+Event type: Birth
+Event location: Columbus, NE, USA
+Event description: Birth of Reed, Peter
+Participant (Primary): Peter Reed (Gramps ID: I1851)
+
+Type: event
+Gramps ID: E0989
+Event type: Birth
+Event date: 1878-05-10
+Event location: Columbus, NE, USA
+Event description: Birth of Reed, Mary
+Participant (Primary): Mary Reed (Gramps ID: I1852)
+
+Type: event
+Gramps ID: E0990
+Event type: Birth
+Event date: 1878-08-25
+Event location: South Bend, St. Joseph, IN, USA
+Event description: Birth of Reed
+Participant (Primary): Reed (Gramps ID: I1853)
+
+Type: event
+Gramps ID: E0991
+Event type: Birth
+Event location: Greeley, Weld, CO, USA
+Event description: Birth of Reed, Terrence (TyNed)
+Participant (Primary): Terrence (TyNed) Reed (Gramps ID: I1857)
+
+Type: event
+Gramps ID: E0992
+Event type: Death
+Event date: um 1940
+Event location: Centralia, Marion, IL, USA
+Event description: Death of Reed, Terrence (TyNed)
+Participant (Primary): Terrence (TyNed) Reed (Gramps ID: I1857)
+
+Type: event
+Gramps ID: E0993
+Event type: Birth
+Event location: Lebanon, MO, USA
+Event description: Birth of Reed, Michael
+Participant (Primary): Michael Reed (Gramps ID: I1858)
+
+Type: event
+Gramps ID: E0994
+Event type: Birth
+Event date: 1961-08-15
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garner, John Joseph
+Participant (Primary): John Joseph Garner (Gramps ID: I0186)
+
+Type: event
+Gramps ID: E0995
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Joseph Garner (Gramps ID: I0186)
+
+Type: event
+Gramps ID: E0996
+Event type: Birth
+Event location: Kingsport, TN, USA
+Event description: Birth of Reed, Jenny
+Participant (Primary): Jenny Reed (Gramps ID: I1860)
+
+Type: event
+Gramps ID: E0997
+Event type: Birth
+Event location: Kingsport, TN, USA
+Event description: Birth of Reed, Minnie
+Participant (Primary): Minnie Reed (Gramps ID: I1862)
+
+Type: event
+Gramps ID: E0998
+Event type: Birth
+Event location: Kingsport, TN, USA
+Event description: Birth of Reed, Kate
+Participant (Primary): Kate Reed (Gramps ID: I1864)
+
+Type: event
+Gramps ID: E0999
+Event type: Birth
+Event location: Kingsport, TN, USA
+Event description: Birth of Reed, Michael
+Participant (Primary): Michael Reed (Gramps ID: I1865)
+
+Type: event
+Gramps ID: E1000
+Event type: Death
+Event location: Rock Springs, WY, USA
+Event description: Death of Reed, Michael
+Participant (Primary): Michael Reed (Gramps ID: I1865)
+
+Type: event
+Gramps ID: E1001
+Event type: Birth
+Event date: 1895-07-20
+Event location: Sanford, NC, USA
+Event description: Birth of Lessard, Ralph Raymond
+Participant (Primary): Ralph Raymond Lessard (Gramps ID: I0187)
+
+Type: event
+Gramps ID: E1002
+Event type: Death
+Event date: 1969-07-08
+Event description: Death of Lessard, Ralph Raymond
+Participant (Primary): Ralph Raymond Lessard (Gramps ID: I0187)
+
+Type: event
+Gramps ID: E1003
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sean Sandoval (Gramps ID: I1872)
+
+Type: event
+Gramps ID: E1004
+Event type: Death
+Event location: Sioux Falls, SD, USA
+Event description: Death of Gibbs, Jennie
+Participant (Primary): Jennie Gibbs (Gramps ID: I1873)
+
+Type: event
+Gramps ID: E1005
+Event type: Birth
+Event location: El Centro, Imperial, CA, USA
+Event description: Birth of Reed, Michael
+Participant (Primary): Michael Reed (Gramps ID: I1874)
+
+Type: event
+Gramps ID: E1006
+Event type: Death
+Event location: Morgantown, WV, USA
+Event description: Death of Love
+Participant (Primary): Love (Gramps ID: I1878)
+
+Type: event
+Gramps ID: E1007
+Event type: Birth
+Event date: 1896-09-20
+Event location: Sanford, NC, USA
+Event description: Birth of Lessard, Susanna Marie
+Participant (Primary): Susanna Marie Lessard (Gramps ID: I0188)
+
+Type: event
+Gramps ID: E1008
+Event type: Death
+Event date: 1981-10-16
+Event description: Death of Lessard, Susanna Marie
+Participant (Primary): Susanna Marie Lessard (Gramps ID: I0188)
+
+Type: event
+Gramps ID: E1009
+Event type: Birth
+Event date: 1788-01-03
+Event location: De Ridder, LA, USA
+Event description: Birth of Payne, Fielding
+Participant (Primary): Fielding Payne (Gramps ID: I1885)
+
+Type: event
+Gramps ID: E1010
+Event type: Birth
+Event location: De Ridder, LA, USA
+Event description: Birth of Payne, Winifred
+Participant (Primary): Winifred Payne (Gramps ID: I1887)
+
+Type: event
+Gramps ID: E1011
+Event type: Birth
+Event date: 1908-02-22
+Event location: Morehead City, NC, USA
+Event description: Birth of Lessard, Helen Belle
+Participant (Primary): Helen Belle Lessard (Gramps ID: I0189)
+
+Type: event
+Gramps ID: E1012
+Event type: Death
+Event date: 1997-01-29
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Lessard, Helen Belle
+Participant (Primary): Helen Belle Lessard (Gramps ID: I0189)
+
+Type: event
+Gramps ID: E1013
+Event type: Birth
+Event location: Steubenville, OH, USA
+Event description: Birth of Payne, James
+Participant (Primary): James Payne (Gramps ID: I1892)
+
+Type: event
+Gramps ID: E1014
+Event type: Birth
+Event location: Cabo Rojo, PR, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, George
+Participant (Primary): George ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1899)
+
+Type: event
+Gramps ID: E1015
+Event type: Death
+Event location: Union City, TN, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, George
+Participant (Primary): George ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1899)
+
+Type: event
+Gramps ID: E1016
+Event type: Birth
+Event date: 1965-12-10
+Event location: Worthington, MN, USA
+Event description: Birth of Garner, Thomas James
+Participant (Primary): Thomas James Garner (Gramps ID: I0019)
+
+Type: event
+Gramps ID: E1017
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Thomas James Garner (Gramps ID: I0019)
+
+Type: event
+Gramps ID: E1018
+Event type: Birth
+Event date: 1898-07-22
+Event location: Edwards, Eagle, CO, USA
+Event description: Birth of Lessard, Laura Eloise
+Participant (Primary): Laura Eloise Lessard (Gramps ID: I0190)
+
+Type: event
+Gramps ID: E1019
+Event type: Death
+Event date: um 1975
+Event description: Death of Lessard, Laura Eloise
+Participant (Primary): Laura Eloise Lessard (Gramps ID: I0190)
+
+Type: event
+Gramps ID: E1020
+Event type: Birth
+Event date: 1763-04-15
+Event location: Jamestowna, NY, USA
+Event description: Birth of Diaz, James
+Participant (Primary): James Diaz (Gramps ID: I1900)
+
+Type: event
+Gramps ID: E1021
+Event type: Death
+Event location: Toledo, OH, USA
+Event description: Death of Diaz, James
+Participant (Primary): James Diaz (Gramps ID: I1900)
+
+Type: event
+Gramps ID: E1022
+Event type: Burial
+Event location: Winchester, VA, USA
+Event description: Burial of Diaz, James
+Participant (Primary): James Diaz (Gramps ID: I1900)
+
+Type: event
+Gramps ID: E1023
+Event type: Birth
+Event date: 1767-09-12
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Travis
+Participant (Primary): Travis ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1906)
+
+Type: event
+Gramps ID: E1024
+Event type: Death
+Event location: Winchester, VA, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Travis
+Participant (Primary): Travis ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1906)
+
+Type: event
+Gramps ID: E1025
+Event type: Birth
+Event date: 1772-08-08
+Event description: Birth of Payne, Elizabeth
+Participant (Primary): Elizabeth Payne (Gramps ID: I1907)
+
+Type: event
+Gramps ID: E1026
+Event type: Death
+Event location: Seymour, Jackson, IN, USA
+Event description: Death of Payne, Elizabeth
+Participant (Primary): Elizabeth Payne (Gramps ID: I1907)
+
+Type: event
+Gramps ID: E1027
+Event type: Birth
+Event date: 1768-04-01
+Event location: York, PA, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, William
+Participant (Primary): William ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1908)
+
+Type: event
+Gramps ID: E1028
+Event type: Death
+Event date: 1853
+Event location: New Orleans, Orleans, LA, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, William
+Participant (Primary): William ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1908)
+
+Type: event
+Gramps ID: E1029
+Event type: Birth
+Event date: 1771-01-29
+Event location: Cedartown, Polk, GA, USA
+Event description: Birth of Wood, Polly
+Participant (Primary): Polly Wood (Gramps ID: I1909)
+
+Type: event
+Gramps ID: E1030
+Event type: Death
+Event date: vor 1850
+Event location: Burley, Cassia, ID, USA
+Event description: Death of Wood, Polly
+Participant (Primary): Polly Wood (Gramps ID: I1909)
+
+Type: event
+Gramps ID: E1031
+Event type: Birth
+Event date: 1899-01-20
+Event location: La Crosse, WI, USA
+Event description: Birth of Webb, Lucy Mabel
+Participant (Primary): Lucy Mabel Webb (Gramps ID: I0191)
+
+Type: event
+Gramps ID: E1032
+Event type: Death
+Event date: 1971-05-10
+Event location: Ada, OK, USA
+Event description: Death of Webb, Lucy Mabel
+Participant (Primary): Lucy Mabel Webb (Gramps ID: I0191)
+
+Type: event
+Gramps ID: E1033
+Event type: Burial
+Event date: 1971-05-13
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Webb, Lucy Mabel
+Participant (Primary): Lucy Mabel Webb (Gramps ID: I0191)
+
+Type: event
+Gramps ID: E1034
+Event type: Birth
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+Participant (Primary): Margaret Jane ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1912)
+
+Type: event
+Gramps ID: E1035
+Event type: Death
+Event location: Steubenville, OH, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+Participant (Primary): Margaret Jane ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1912)
+
+Type: event
+Gramps ID: E1036
+Event type: Birth
+Event date: 1771-04-20
+Event location: Greenwood, MS, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr.
+Participant (Primary): Alexander Carroll Sr. ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1914)
+
+Type: event
+Gramps ID: E1037
+Event type: Death
+Event date: 1838-01-18
+Event location: Indiana, PA, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr.
+Participant (Primary): Alexander Carroll Sr. ĐĐŒĐžŃŃОДĐČ (Gramps ID: I1914)
+
+Type: event
+Gramps ID: E1038
+Event type: Birth
+Event date: 1777-11-29
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Woods, Mary Polly
+Participant (Primary): Mary Polly Woods (Gramps ID: I1915)
+
+Type: event
+Gramps ID: E1039
+Event type: Death
+Event date: 1854-11-15
+Event location: Indiana, PA, USA
+Event description: Death of Woods, Mary Polly
+Participant (Primary): Mary Polly Woods (Gramps ID: I1915)
+
+Type: event
+Gramps ID: E1040
+Event type: Birth
+Event location: York, PA, USA
+Event description: Birth of Diaz, Mary Polly
+Participant (Primary): Mary Polly Diaz (Gramps ID: I1916)
+
+Type: event
+Gramps ID: E1041
+Event type: Death
+Event date: 1822
+Event description: Death of Diaz, Mary Polly
+Participant (Primary): Mary Polly Diaz (Gramps ID: I1916)
+
+Type: event
+Gramps ID: E1042
+Event type: Birth
+Event date: 1773-09-21
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Doyle, Robert Gove
+Participant (Primary): Robert Gove Doyle (Gramps ID: I1917)
+
+Type: event
+Gramps ID: E1043
+Event type: Birth
+Event date: 1908-12-15
+Event location: Bridgeport, Fairfield, CT, USA
+Event description: Birth of Webb, John Raymond
+Participant (Primary): John Raymond Webb (Gramps ID: I0192)
+
+Type: event
+Gramps ID: E1044
+Event type: Death
+Event date: 1996-02-07
+Event location: Longview-Kelso, WA, USA
+Event description: Death of Webb, John Raymond
+Participant (Primary): John Raymond Webb (Gramps ID: I0192)
+
+Type: event
+Gramps ID: E1045
+Event type: Burial
+Event date: 1996-02-10
+Event location: Warrensburg, MO, USA
+Event description: Burial of Webb, John Raymond
+Participant (Primary): John Raymond Webb (Gramps ID: I0192)
+
+Type: event
+Gramps ID: E1046
+Event type: Birth
+Event date: 1998-09-19
+Event location: Worthington, MN, USA
+Event description: Birth of Osborne, Madeline Kathleen
+Participant (Primary): Madeline Kathleen Osborne (Gramps ID: I1928)
+
+Type: event
+Gramps ID: E1047
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Madeline Kathleen Osborne (Gramps ID: I1928)
+
+Type: event
+Gramps ID: E1048
+Event type: Birth
+Event date: 1903-03-31
+Event location: Billings, MT, USA
+Event description: Birth of Webb, Lewis I.
+Participant (Primary): Lewis I. Webb (Gramps ID: I0193)
+
+Type: event
+Gramps ID: E1049
+Event type: Death
+Event date: 1942-12-25
+Event location: Kendallville, Noble, IN, USA
+Event description: Death of Webb, Lewis I.
+Participant (Primary): Lewis I. Webb (Gramps ID: I0193)
+
+Type: event
+Gramps ID: E1050
+Event type: Burial
+Event location: San Antonio, Bexar, TX, USA
+Event description: Burial of Webb, Lewis I.
+Participant (Primary): Lewis I. Webb (Gramps ID: I0193)
+
+Type: event
+Gramps ID: E1051
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Reeves (Gramps ID: I1931)
+
+Type: event
+Gramps ID: E1052
+Event type: Death
+Event date: nach 1901
+Event location: Mount Vernon, WA, USA
+Event description: Death of Reeves, Ann
+Participant (Primary): Ann Reeves (Gramps ID: I1936)
+
+Type: event
+Gramps ID: E1053
+Event type: Death
+Event date: vor 1901
+Event location: Mount Vernon, WA, USA
+Event description: Death of Gagné, Thomas
+Participant (Primary): Thomas Gagné (Gramps ID: I1937)
+
+Type: event
+Gramps ID: E1054
+Event type: Death
+Event date: vor 1901
+Event location: Mount Vernon, WA, USA
+Event description: Death of Reeves, Catherine
+Participant (Primary): Catherine Reeves (Gramps ID: I1938)
+
+Type: event
+Gramps ID: E1055
+Event type: Birth
+Event date: 1887-02-05
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Birth of Page, Andrew Vincent
+Participant (Primary): Andrew Vincent Page (Gramps ID: I0194)
+
+Type: event
+Gramps ID: E1056
+Event type: Death
+Event date: 1979-09-27
+Event location: Elmira, Chemung, NY, USA
+Event description: Death of Page, Andrew Vincent
+Participant (Primary): Andrew Vincent Page (Gramps ID: I0194)
+
+Type: event
+Gramps ID: E1057
+Event type: Burial
+Event date: 1979-09-29
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Page, Andrew Vincent
+Participant (Primary): Andrew Vincent Page (Gramps ID: I0194)
+
+Type: event
+Gramps ID: E1058
+Event type: Birth
+Event date: um 1556
+Event location: Wilmington, OH, USA
+Event description: Birth of Ryan, Elizabeth
+Participant (Primary): Elizabeth Ryan (Gramps ID: I1942)
+
+Type: event
+Gramps ID: E1059
+Event type: Death
+Event date: 1628
+Event location: Wilmington, OH, USA
+Event description: Death of Ryan, Elizabeth
+Participant (Primary): Elizabeth Ryan (Gramps ID: I1942)
+
+Type: event
+Gramps ID: E1060
+Event type: Birth
+Event date: um 1653
+Event description: Birth of Foster, David
+Participant (Primary): David Foster (Gramps ID: I1943)
+
+Type: event
+Gramps ID: E1061
+Event type: Birth
+Event date: 1678-08-04
+Event description: Birth of Warner, George
+Participant (Primary): George Warner (Gramps ID: I1944)
+
+Type: event
+Gramps ID: E1062
+Event type: Death
+Event date: 1679
+Event description: Death of Warner, George
+Participant (Primary): George Warner (Gramps ID: I1944)
+
+Type: event
+Gramps ID: E1063
+Event type: Birth
+Event date: 1679-01-02
+Event location: Brownsville, TN, USA
+Event description: Birth of Warner, Mary
+Participant (Primary): Mary Warner (Gramps ID: I1945)
+
+Type: event
+Gramps ID: E1064
+Event type: Birth
+Event date: um 1671
+Event location: Hanover, PA, USA
+Event description: Birth of Dixon, Thomas
+Participant (Primary): Thomas Dixon (Gramps ID: I1946)
+
+Type: event
+Gramps ID: E1065
+Event type: Birth
+Event date: 1681-09-03
+Event description: Birth of Warner, Hannah
+Participant (Primary): Hannah Warner (Gramps ID: I1947)
+
+Type: event
+Gramps ID: E1066
+Event type: Birth
+Event date: 1682-12-05
+Event location: Williston, ND, USA
+Event description: Birth of Warner, Daniel
+Participant (Primary): Daniel Warner (Gramps ID: I1948)
+
+Type: event
+Gramps ID: E1067
+Event type: Birth
+Event date: um 1682
+Event description: Birth of Higgins, Charity
+Participant (Primary): Charity Higgins (Gramps ID: I1949)
+
+Type: event
+Gramps ID: E1068
+Event type: Birth
+Event date: 1883-10-04
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Birth of Page, Eleanor Maude
+Participant (Primary): Eleanor Maude Page (Gramps ID: I0195)
+
+Type: event
+Gramps ID: E1069
+Event type: Death
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Page, Eleanor Maude
+Participant (Primary): Eleanor Maude Page (Gramps ID: I0195)
+
+Type: event
+Gramps ID: E1070
+Event type: Burial
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Page, Eleanor Maude
+Participant (Primary): Eleanor Maude Page (Gramps ID: I0195)
+
+Type: event
+Gramps ID: E1071
+Event type: Birth
+Event date: 1683-03-28
+Event location: Garden City, Finney, KS, USA
+Event description: Birth of Warner, Elizabeth
+Participant (Primary): Elizabeth Warner (Gramps ID: I1950)
+
+Type: event
+Gramps ID: E1072
+Event type: Birth
+Event location: Klamath Falls, OR, USA
+Event description: Birth of ĐДбДЎДĐČ, Trustum
+Participant (Primary): Trustum ĐДбДЎДĐČ (Gramps ID: I1952)
+
+Type: event
+Gramps ID: E1073
+Event type: Birth
+Event date: 1709-07-21
+Event location: Garden City, Finney, KS, USA
+Event description: Birth of Warner, George
+Participant (Primary): George Warner (Gramps ID: I1953)
+
+Type: event
+Gramps ID: E1074
+Event type: Birth
+Event date: 1711-01-03
+Event location: Williston, ND, USA
+Event description: Birth of Nichols, Elizabeth
+Participant (Primary): Elizabeth Nichols (Gramps ID: I1954)
+
+Type: event
+Gramps ID: E1075
+Event type: Death
+Event date: 1768-04-15
+Event location: Williston, ND, USA
+Event description: Death of Nichols, Elizabeth
+Participant (Primary): Elizabeth Nichols (Gramps ID: I1954)
+
+Type: event
+Gramps ID: E1076
+Event type: Birth
+Event date: um 1689
+Event location: Garden City, Finney, KS, USA
+Event description: Birth of Warner, Johnathon
+Participant (Primary): Johnathon Warner (Gramps ID: I1955)
+
+Type: event
+Gramps ID: E1077
+Event type: Death
+Event date: 1754-07
+Event description: Death of Warner, Johnathon
+Participant (Primary): Johnathon Warner (Gramps ID: I1955)
+
+Type: event
+Gramps ID: E1078
+Event type: Birth
+Event date: um 1686
+Event location: Topeka, Shawnee, KS, USA
+Event description: Birth of Montgomery, Mary
+Participant (Primary): Mary Montgomery (Gramps ID: I1956)
+
+Type: event
+Gramps ID: E1079
+Event type: Birth
+Event date: 1885-05-27
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Birth of Page, Edith Mae
+Participant (Primary): Edith Mae Page (Gramps ID: I0196)
+
+Type: event
+Gramps ID: E1080
+Event type: Death
+Event date: 1965-05
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Page, Edith Mae
+Participant (Primary): Edith Mae Page (Gramps ID: I0196)
+
+Type: event
+Gramps ID: E1081
+Event type: Burial
+Event date: 1965-05
+Event location: Bay City, Matagorda, TX, USA
+Event description: Burial of Page, Edith Mae
+Participant (Primary): Edith Mae Page (Gramps ID: I0196)
+
+Type: event
+Gramps ID: E1082
+Event type: Birth
+Event date: 1871-10-14
+Event location: Boise City, ID, USA
+Event description: Birth of Ball, Robert Lee
+Participant (Primary): Robert Lee Ball (Gramps ID: I1961)
+
+Type: event
+Gramps ID: E1083
+Event type: Birth
+Event location: Columbus, OH, USA
+Event description: Birth of Ball, Maude Waldon
+Participant (Primary): Maude Waldon Ball (Gramps ID: I1962)
+
+Type: event
+Gramps ID: E1084
+Event type: Burial
+Event location: Honolulu, HI, USA
+Event description: Burial of Ball, Maude Waldon
+Participant (Primary): Maude Waldon Ball (Gramps ID: I1962)
+
+Type: event
+Gramps ID: E1085
+Event type: Birth
+Event date: 1870-10-09
+Event location: Columbus, OH, USA
+Event description: Birth of Ball, Katie E.
+Participant (Primary): Katie E. Ball (Gramps ID: I1963)
+
+Type: event
+Gramps ID: E1086
+Event type: Death
+Event date: 1870-11-11
+Event location: Baltimore, MD, USA
+Event description: Death of Ball, Katie E.
+Participant (Primary): Katie E. Ball (Gramps ID: I1963)
+
+Type: event
+Gramps ID: E1087
+Event type: Birth
+Event location: Columbus, OH, USA
+Event description: Birth of Ball, Lucy A.
+Participant (Primary): Lucy A. Ball (Gramps ID: I1964)
+
+Type: event
+Gramps ID: E1088
+Event type: Birth
+Event date: 1876-03-17
+Event location: Columbus, OH, USA
+Event description: Birth of Ball, Ida B.
+Participant (Primary): Ida B. Ball (Gramps ID: I1965)
+
+Type: event
+Gramps ID: E1089
+Event type: Birth
+Event date: 1878-11-21
+Event location: Columbus, OH, USA
+Event description: Birth of Ball, Margaret
+Participant (Primary): Margaret Ball (Gramps ID: I1966)
+
+Type: event
+Gramps ID: E1090
+Event type: Birth
+Event date: 1848-07-09
+Event location: Vero Beach, Indian River, FL, USA
+Event description: Birth of Ball, Jane
+Participant (Primary): Jane Ball (Gramps ID: I1967)
+
+Type: event
+Gramps ID: E1091
+Event type: Birth
+Event date: 1852-03-02
+Event location: Vero Beach, Indian River, FL, USA
+Event description: Birth of Ball, Martha
+Participant (Primary): Martha Ball (Gramps ID: I1968)
+
+Type: event
+Gramps ID: E1092
+Event type: Death
+Event date: 1840-02-20
+Event description: Death of Snyder, Ann Louisa
+Participant (Primary): Ann Louisa Snyder (Gramps ID: I1969)
+
+Type: event
+Gramps ID: E1093
+Event type: Birth
+Event date: 1961-06-21
+Event description: Birth of Osborne, Anita June
+Participant (Primary): Anita June Osborne (Gramps ID: I0197)
+
+Type: event
+Gramps ID: E1094
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Anita June Osborne (Gramps ID: I0197)
+
+Type: event
+Gramps ID: E1095
+Event type: Birth
+Event date: 1840-01-13
+Event description: Birth of Ball, Matthias
+Participant (Primary): Matthias Ball (Gramps ID: I1970)
+
+Type: event
+Gramps ID: E1096
+Event type: Birth
+Event location: Washington, OH, USA
+Event description: Birth of Gill, Avery
+Participant (Primary): Avery Gill (Gramps ID: I1977)
+
+Type: event
+Gramps ID: E1097
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Avery Gill (Gramps ID: I1977)
+
+Type: event
+Gramps ID: E1098
+Event type: Birth
+Event date: 1824
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Roland
+Participant (Primary): Roland Morris (Gramps ID: I1978)
+
+Type: event
+Gramps ID: E1099
+Event type: Birth
+Event date: 1830
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Carlisle
+Participant (Primary): Carlisle Morris (Gramps ID: I1979)
+
+Type: event
+Gramps ID: E1100
+Event type: Death
+Event date: 1956-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of MarĂn, Frank
+Participant (Primary): Frank MarĂn (Gramps ID: I0198)
+
+Type: event
+Gramps ID: E1101
+Event type: Burial
+Event location: Ames, Story, IA, USA
+Event description: Burial of MarĂn, Frank
+Participant (Primary): Frank MarĂn (Gramps ID: I0198)
+
+Type: event
+Gramps ID: E1102
+Event type: Birth
+Event date: 1832
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Cyrus
+Participant (Primary): Cyrus Morris (Gramps ID: I1980)
+
+Type: event
+Gramps ID: E1103
+Event type: Birth
+Event date: 1835
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Robert
+Participant (Primary): Robert Morris (Gramps ID: I1981)
+
+Type: event
+Gramps ID: E1104
+Event type: Birth
+Event date: 1837
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Martha
+Participant (Primary): Martha Morris (Gramps ID: I1982)
+
+Type: event
+Gramps ID: E1105
+Event type: Birth
+Event date: 1839
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, Mary
+Participant (Primary): Mary Morris (Gramps ID: I1983)
+
+Type: event
+Gramps ID: E1106
+Event type: Birth
+Event date: 1841
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Morris, John
+Participant (Primary): John Morris (Gramps ID: I1984)
+
+Type: event
+Gramps ID: E1107
+Event type: Birth
+Event date: 1813-03-25
+Event location: Ottumwa, Wapello, IA, USA
+Event description: Birth of MarĂn, Frances Coppage
+Participant (Primary): Frances Coppage MarĂn (Gramps ID: I1985)
+
+Type: event
+Gramps ID: E1108
+Event type: Death
+Event date: 1891-10-01
+Event location: Spearfish, SD, USA
+Event description: Death of MarĂn, Frances Coppage
+Participant (Primary): Frances Coppage MarĂn (Gramps ID: I1985)
+
+Type: event
+Gramps ID: E1109
+Event type: Burial
+Event date: 1891-10-03
+Event location: Spearfish, SD, USA
+Event description: Burial of MarĂn, Frances Coppage
+Participant (Primary): Frances Coppage MarĂn (Gramps ID: I1985)
+
+Type: event
+Gramps ID: E1110
+Event type: Birth
+Event location: Fort Morgan, Morgan, CO, USA
+Event description: Birth of Nadeau, John Franklin
+Participant (Primary): John Franklin Nadeau (Gramps ID: I1987)
+
+Type: event
+Gramps ID: E1111
+Event type: Birth
+Event date: 1895-08-27
+Event description: Birth of MarĂn, Albert
+Participant (Primary): Albert MarĂn (Gramps ID: I0199)
+
+Type: event
+Gramps ID: E1112
+Event type: Death
+Event date: 1965-06-14
+Event description: Death of MarĂn, Albert
+Participant (Primary): Albert MarĂn (Gramps ID: I0199)
+
+Type: event
+Gramps ID: E1113
+Event type: Burial
+Event location: Mitchell, SD, USA
+Event description: Burial of MarĂn, Albert
+Participant (Primary): Albert MarĂn (Gramps ID: I0199)
+
+Type: event
+Gramps ID: E1114
+Event type: Birth
+Event location: Washington, District of Columbia, DC, USA
+Event description: Birth of Munoz, Moses Romulus?
+Participant (Primary): Moses Romulus? Munoz (Gramps ID: I1990)
+
+Type: event
+Gramps ID: E1115
+Event type: Birth
+Event location: Washington, District of Columbia, DC, USA
+Event description: Birth of Munoz, Robert
+Participant (Primary): Robert Munoz (Gramps ID: I1991)
+
+Type: event
+Gramps ID: E1116
+Event type: Birth
+Event location: Washington, District of Columbia, DC, USA
+Event description: Birth of Munoz, Willis E.
+Participant (Primary): Willis E. Munoz (Gramps ID: I1992)
+
+Type: event
+Gramps ID: E1117
+Event type: Birth
+Event date: um 1600
+Event location: Phoenix Lake, Tuolumne, CA, USA
+Event description: Birth of Norris, William
+Participant (Primary): William Norris (Gramps ID: I1994)
+
+Type: event
+Gramps ID: E1118
+Event type: Birth
+Event date: 1666-12-07
+Event location: Beeville, Bee, TX, USA
+Event description: Birth of Allen, Mary
+Participant (Primary): Mary Allen (Gramps ID: I1995)
+
+Type: event
+Gramps ID: E1119
+Event type: Birth
+Event date: 1667
+Event location: Beeville, Bee, TX, USA
+Event description: Birth of Allen, Enos
+Participant (Primary): Enos Allen (Gramps ID: I1996)
+
+Type: event
+Gramps ID: E1120
+Event type: Death
+Event date: 1689-11-21
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, Enos
+Participant (Primary): Enos Allen (Gramps ID: I1996)
+
+Type: event
+Gramps ID: E1121
+Event type: Birth
+Event date: 1668-01
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, Sarah
+Participant (Primary): Sarah Allen (Gramps ID: I1997)
+
+Type: event
+Gramps ID: E1122
+Event type: Death
+Event date: 1702
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, Sarah
+Participant (Primary): Sarah Allen (Gramps ID: I1997)
+
+Type: event
+Gramps ID: E1123
+Event type: Birth
+Event date: 1674-05-24
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, John
+Participant (Primary): John Allen (Gramps ID: I1999)
+
+Type: event
+Gramps ID: E1124
+Event type: Death
+Event date: 1727
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, John
+Participant (Primary): John Allen (Gramps ID: I1999)
+
+Type: event
+Gramps ID: E1125
+Event type: Birth
+Event date: 1984-05-03
+Event location: Gainesville, Llano, TX, USA
+Event description: Birth of Warner, James Jeffrey
+Participant (Primary): James Jeffrey Warner (Gramps ID: I0002)
+
+Type: event
+Gramps ID: E1126
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James Jeffrey Warner (Gramps ID: I0002)
+
+Type: event
+Gramps ID: E1127
+Event type: Birth
+Event date: 1889-08-11
+Event location: Panama City, Bay, FL, USA
+Event description: Birth of Warner, Martin Bogarte
+Participant (Primary): Martin Bogarte Warner (Gramps ID: I0020)
+
+Type: event
+Gramps ID: E1128
+Event type: Death
+Event date: 1961-08-12
+Event location: Butte, MT, USA
+Event description: Death of Warner, Martin Bogarte
+Participant (Primary): Martin Bogarte Warner (Gramps ID: I0020)
+
+Type: event
+Gramps ID: E1129
+Event type: Burial
+Event date: 1961-08-14
+Event location: Henderson, NC, USA
+Event description: Burial of Warner, Martin Bogarte
+Participant (Primary): Martin Bogarte Warner (Gramps ID: I0020)
+
+Type: event
+Gramps ID: E1130
+Event type: Birth
+Event date: 1897-06-21
+Event description: Birth of MarĂn, Thomas Willis
+Participant (Primary): Thomas Willis MarĂn (Gramps ID: I0200)
+
+Type: event
+Gramps ID: E1131
+Event type: Death
+Event date: 1962-06-28
+Event description: Death of MarĂn, Thomas Willis
+Participant (Primary): Thomas Willis MarĂn (Gramps ID: I0200)
+
+Type: event
+Gramps ID: E1132
+Event type: Burial
+Event location: St, George, UT, USA
+Event description: Burial of MarĂn, Thomas Willis
+Participant (Primary): Thomas Willis MarĂn (Gramps ID: I0200)
+
+Type: event
+Gramps ID: E1133
+Event type: Birth
+Event date: 1660
+Event location: Beeville, Bee, TX, USA
+Event description: Birth of ĐĐŸĐČĐžĐșĐŸĐČ, Sarah
+Participant (Primary): Sarah ĐĐŸĐČĐžĐșĐŸĐČ (Gramps ID: I2001)
+
+Type: event
+Gramps ID: E1134
+Event type: Birth
+Event date: 1690
+Event location: Topeka, Shawnee, KS, USA
+Event description: Birth of Allen, Abigail
+Participant (Primary): Abigail Allen (Gramps ID: I2002)
+
+Type: event
+Gramps ID: E1135
+Event type: Birth
+Event date: 1692-05-17
+Event description: Birth of Allen, Joseph
+Participant (Primary): Joseph Allen (Gramps ID: I2005)
+
+Type: event
+Gramps ID: E1136
+Event type: Birth
+Event date: 1694-06-09
+Event description: Birth of Allen, Job
+Participant (Primary): Job Allen (Gramps ID: I2007)
+
+Type: event
+Gramps ID: E1137
+Event type: Birth
+Event date: 1696-05-12
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, Rachel
+Participant (Primary): Rachel Allen (Gramps ID: I2008)
+
+Type: event
+Gramps ID: E1138
+Event type: Death
+Event date: 1747
+Event description: Death of Allen, Rachel
+Participant (Primary): Rachel Allen (Gramps ID: I2008)
+
+Type: event
+Gramps ID: E1139
+Event type: Death
+Event date: 1906-10
+Event location: Hutchinson, Reno, KS, USA
+Event description: Death of MarĂn, Wilbur
+Participant (Primary): Wilbur MarĂn (Gramps ID: I0201)
+
+Type: event
+Gramps ID: E1140
+Event type: Burial
+Event date: 1906-10-22
+Event location: Lexington, NC, USA
+Event description: Burial of MarĂn, Wilbur
+Participant (Primary): Wilbur MarĂn (Gramps ID: I0201)
+
+Type: event
+Gramps ID: E1141
+Event type: Birth
+Event date: 1698-04-28
+Event location: Topeka, Shawnee, KS, USA
+Event description: Birth of Allen, Lydia
+Participant (Primary): Lydia Allen (Gramps ID: I2010)
+
+Type: event
+Gramps ID: E1142
+Event type: Birth
+Event date: um 1700
+Event location: Topeka, Shawnee, KS, USA
+Event description: Birth of Allen, Benjamin
+Participant (Primary): Benjamin Allen (Gramps ID: I2011)
+
+Type: event
+Gramps ID: E1143
+Event type: Death
+Event date: 1762-03-10
+Event location: Crossville, TN, USA
+Event description: Death of Allen, Benjamin
+Participant (Primary): Benjamin Allen (Gramps ID: I2011)
+
+Type: event
+Gramps ID: E1144
+Event type: Birth
+Event date: 1679-01-01
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, Lediah
+Participant (Primary): Lediah Allen (Gramps ID: I2013)
+
+Type: event
+Gramps ID: E1145
+Event type: Death
+Event date: um 1680
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, Lediah
+Participant (Primary): Lediah Allen (Gramps ID: I2013)
+
+Type: event
+Gramps ID: E1146
+Event type: Birth
+Event date: um 1679
+Event location: Sikeston, MO, USA
+Event description: Birth of Norris, Elizabeth
+Participant (Primary): Elizabeth Norris (Gramps ID: I2014)
+
+Type: event
+Gramps ID: E1147
+Event type: Death
+Event date: 1731-05-10
+Event location: Garden City, Finney, KS, USA
+Event description: Death of Norris, Elizabeth
+Participant (Primary): Elizabeth Norris (Gramps ID: I2014)
+
+Type: event
+Gramps ID: E1148
+Event type: Burial
+Event date: 1731-05-12
+Event location: Sioux City, Woodbury, IA-NE-SD, USA
+Event description: Burial of Norris, Elizabeth
+Participant (Primary): Elizabeth Norris (Gramps ID: I2014)
+
+Type: event
+Gramps ID: E1149
+Event type: Birth
+Event date: 1683-05-29
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, Jonathan
+Participant (Primary): Jonathan Allen (Gramps ID: I2016)
+
+Type: event
+Gramps ID: E1150
+Event type: Death
+Event date: 1733-05-08
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, Jonathan
+Participant (Primary): Jonathan Allen (Gramps ID: I2016)
+
+Type: event
+Gramps ID: E1151
+Event type: Birth
+Event date: um 1685
+Event location: Sikeston, MO, USA
+Event description: Birth of Allen, Gershom
+Participant (Primary): Gershom Allen (Gramps ID: I2017)
+
+Type: event
+Gramps ID: E1152
+Event type: Death
+Event date: um 1711
+Event location: Topeka, Shawnee, KS, USA
+Event description: Death of Allen, Gershom
+Participant (Primary): Gershom Allen (Gramps ID: I2017)
+
+Type: event
+Gramps ID: E1153
+Event type: Birth
+Event date: 1883-02-26
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of MarĂn, Lilla Estella
+Participant (Primary): Lilla Estella MarĂn (Gramps ID: I0202)
+
+Type: event
+Gramps ID: E1154
+Event type: Death
+Event date: 1961-02-25
+Event location: Midland, MI, USA
+Event description: Death of MarĂn, Lilla Estella
+Participant (Primary): Lilla Estella MarĂn (Gramps ID: I0202)
+
+Type: event
+Gramps ID: E1155
+Event type: Birth
+Event date: 1897-08-14
+Event description: Birth of Boyd, Carmen Alberta
+Participant (Primary): Carmen Alberta Boyd (Gramps ID: I2020)
+
+Type: event
+Gramps ID: E1156
+Event type: Death
+Event date: 1949-06-17
+Event description: Death of Boyd, Carmen Alberta
+Participant (Primary): Carmen Alberta Boyd (Gramps ID: I2020)
+
+Type: event
+Gramps ID: E1157
+Event type: Birth
+Event date: 1901-07-08
+Event description: Birth of Boyd, Lauretta Esther
+Participant (Primary): Lauretta Esther Boyd (Gramps ID: I2021)
+
+Type: event
+Gramps ID: E1158
+Event type: Birth
+Event date: 1876-08-24
+Event description: Birth of Jones, Martha Elizabeth
+Participant (Primary): Martha Elizabeth Jones (Gramps ID: I2022)
+
+Type: event
+Gramps ID: E1159
+Event type: Birth
+Event date: 1896-05-09
+Event description: Birth of Gutiérrez, Walter Harmon
+Participant (Primary): Walter Harmon Gutiérrez (Gramps ID: I2024)
+
+Type: event
+Gramps ID: E1160
+Event type: Birth
+Event date: 1921-07-01
+Event description: Birth of Gutiérrez, Virginia Elizabeth
+Participant (Primary): Virginia Elizabeth Gutiérrez (Gramps ID: I2025)
+
+Type: event
+Gramps ID: E1161
+Event type: Birth
+Event date: 1924-02-01
+Event description: Birth of Gutiérrez, Dorothy Jean
+Participant (Primary): Dorothy Jean Gutiérrez (Gramps ID: I2026)
+
+Type: event
+Gramps ID: E1162
+Event type: Birth
+Event date: 1927-01-18
+Event description: Birth of Gutiérrez, Joan Arlene
+Participant (Primary): Joan Arlene Gutiérrez (Gramps ID: I2027)
+
+Type: event
+Gramps ID: E1163
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Richard W. Hawkins (Gramps ID: I2033)
+
+Type: event
+Gramps ID: E1164
+Event type: Birth
+Event date: 1926-03-09
+Event location: Harrisonburg, VA, USA
+Event description: Birth of Hawkins, William Melvin
+Participant (Primary): William Melvin Hawkins (Gramps ID: I2034)
+
+Type: event
+Gramps ID: E1165
+Event type: Death
+Event date: 1999-03-25
+Event location: Worthington, MN, USA
+Event description: Death of Hawkins, William Melvin
+Participant (Primary): William Melvin Hawkins (Gramps ID: I2034)
+
+Type: event
+Gramps ID: E1166
+Event type: Burial
+Event date: 1999-03-29
+Event location: Worthington, MN, USA
+Event description: Burial of Hawkins, William Melvin
+Participant (Primary): William Melvin Hawkins (Gramps ID: I2034)
+
+Type: event
+Gramps ID: E1167
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ruth Gibbs (Gramps ID: I2035)
+
+Type: event
+Gramps ID: E1168
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gail Hawkins (Gramps ID: I2036)
+
+Type: event
+Gramps ID: E1169
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Janelle Hawkins (Gramps ID: I2038)
+
+Type: event
+Gramps ID: E1170
+Event type: Birth
+Event location: Flint, MI, USA
+Event description: Birth of Thornton, Arthur Otto
+Participant (Primary): Arthur Otto Thornton (Gramps ID: I0204)
+
+Type: event
+Gramps ID: E1171
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gerald L. Hawkins (Gramps ID: I2040)
+
+Type: event
+Gramps ID: E1172
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James R. Hawkins (Gramps ID: I2041)
+
+Type: event
+Gramps ID: E1173
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jean Hawkins (Gramps ID: I2042)
+
+Type: event
+Gramps ID: E1174
+Event type: Birth
+Event date: 1999-04-11
+Event location: Worthington, MN, USA
+Event description: Birth of Garner, Andrew Joseph
+Participant (Primary): Andrew Joseph Garner (Gramps ID: I2044)
+
+Type: event
+Gramps ID: E1175
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrew Joseph Garner (Gramps ID: I2044)
+
+Type: event
+Gramps ID: E1176
+Event type: Birth
+Event date: 1814-08-22
+Event location: Paris, TN, USA
+Event description: Birth of Moreno, Thomas H.
+Participant (Primary): Thomas H. Moreno (Gramps ID: I2048)
+
+Type: event
+Gramps ID: E1177
+Event type: Birth
+Event date: 1816-01-26
+Event location: Paris, TN, USA
+Event description: Birth of Moreno, Joseph McDowell
+Participant (Primary): Joseph McDowell Moreno (Gramps ID: I2049)
+
+Type: event
+Gramps ID: E1178
+Event type: Death
+Event date: 1842-06-28
+Event description: Death of Moreno, Joseph McDowell
+Participant (Primary): Joseph McDowell Moreno (Gramps ID: I2049)
+
+Type: event
+Gramps ID: E1179
+Event type: Birth
+Event date: 1911-07-12
+Event description: Birth of Thornton, James Arthur
+Participant (Witness): Margaret Jane "Maggie" Jankowski (Gramps ID: I1402)
+Participant (Informant): Raymond E. Garner (Gramps ID: I0624)
+Participant (Primary): James Arthur Thornton (Gramps ID: I0205)
+
+Type: event
+Gramps ID: E1180
+Event type: Death
+Event date: 1983-12-02
+Event description: Death of Thornton, James Arthur
+Participant (Primary): James Arthur Thornton (Gramps ID: I0205)
+
+Type: event
+Gramps ID: E1181
+Event type: Burial
+Event location: St, George, UT, USA
+Event description: Burial of Thornton, James Arthur
+Participant (Primary): James Arthur Thornton (Gramps ID: I0205)
+
+Type: event
+Gramps ID: E1182
+Event type: Birth
+Event date: 1828-03-21
+Event location: Virginia Beach, VA, USA
+Event description: Birth of Moreno, Darius
+Participant (Primary): Darius Moreno (Gramps ID: I2051)
+
+Type: event
+Gramps ID: E1183
+Event type: Birth
+Event date: 1844-11-24
+Event description: Birth of Moreno, Green P.
+Participant (Primary): Green P. Moreno (Gramps ID: I2052)
+
+Type: event
+Gramps ID: E1184
+Event type: Birth
+Event date: 1818-01-05
+Event location: Paris, TN, USA
+Event description: Birth of Moreno, Delilah
+Participant (Primary): Delilah Moreno (Gramps ID: I2056)
+
+Type: event
+Gramps ID: E1185
+Event type: Death
+Event date: 1871-01-08
+Event location: Kokomo, Howard, IN, USA
+Event description: Death of Moreno, Delilah
+Participant (Primary): Delilah Moreno (Gramps ID: I2056)
+
+Type: event
+Gramps ID: E1186
+Event type: Birth
+Event location: Marion, Edwards, IL, USA
+Event description: Birth of Andersen, Samuel
+Participant (Primary): Samuel Andersen (Gramps ID: I2057)
+
+Type: event
+Gramps ID: E1187
+Event type: Death
+Event date: 1858-02
+Event location: McPherson, McPherson, KS, USA
+Event description: Death of Andersen, Samuel
+Participant (Primary): Samuel Andersen (Gramps ID: I2057)
+
+Type: event
+Gramps ID: E1188
+Event type: Birth
+Event date: 1820-08-20
+Event location: Paris, TN, USA
+Event description: Birth of Moreno, Mary H.
+Participant (Primary): Mary H. Moreno (Gramps ID: I2062)
+
+Type: event
+Gramps ID: E1189
+Event type: Birth
+Event date: 1825-08-18
+Event location: Paris, TN, USA
+Event description: Birth of Moreno, Cyrus W.
+Participant (Primary): Cyrus W. Moreno (Gramps ID: I2069)
+
+Type: event
+Gramps ID: E1190
+Event type: Birth
+Event date: 1913-02-20
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Thornton, Dorothy Eleanor
+Participant (Primary): Dorothy Eleanor Thornton (Gramps ID: I0207)
+
+Type: event
+Gramps ID: E1191
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dorothy Eleanor Thornton (Gramps ID: I0207)
+
+Type: event
+Gramps ID: E1192
+Event type: Birth
+Event date: 1830-03-17
+Event description: Birth of Moreno, Minerva
+Participant (Primary): Minerva Moreno (Gramps ID: I2070)
+
+Type: event
+Gramps ID: E1193
+Event type: Birth
+Event date: 1832-12-26
+Event description: Birth of Moreno, Solon
+Participant (Primary): Solon Moreno (Gramps ID: I2077)
+
+Type: event
+Gramps ID: E1194
+Event type: Birth
+Event date: 1908-12-13
+Event location: Dalton, Madison, GA, USA
+Event description: Birth of Lane, Joseph Robert
+Participant (Primary): Joseph Robert Lane (Gramps ID: I0208)
+
+Type: event
+Gramps ID: E1195
+Event type: Death
+Event date: 1988-12-27
+Event location: Midland, MI, USA
+Event description: Death of Lane, Joseph Robert
+Participant (Primary): Joseph Robert Lane (Gramps ID: I0208)
+
+Type: event
+Gramps ID: E1196
+Event type: Burial
+Event location: Maysville, Mason, KY, USA
+Event description: Burial of Lane, Joseph Robert
+Participant (Primary): Joseph Robert Lane (Gramps ID: I0208)
+
+Type: event
+Gramps ID: E1197
+Event type: Birth
+Event date: 1856-08-07
+Event description: Birth of Moreno, Phebe J.
+Participant (Primary): Phebe J. Moreno (Gramps ID: I2080)
+
+Type: event
+Gramps ID: E1198
+Event type: Birth
+Event date: 1858-12-12
+Event description: Birth of Moreno, Lelia L.
+Participant (Primary): Lelia L. Moreno (Gramps ID: I2082)
+
+Type: event
+Gramps ID: E1199
+Event type: Birth
+Event date: 1860-06-26
+Event description: Birth of Moreno, Flora E.
+Participant (Primary): Flora E. Moreno (Gramps ID: I2084)
+
+Type: event
+Gramps ID: E1200
+Event type: Birth
+Event date: 1862-11-11
+Event description: Birth of Moreno, Martha A.
+Participant (Primary): Martha A. Moreno (Gramps ID: I2085)
+
+Type: event
+Gramps ID: E1201
+Event type: Birth
+Event date: 1864-04-15
+Event description: Birth of Moreno, Lydia M.
+Participant (Primary): Lydia M. Moreno (Gramps ID: I2086)
+
+Type: event
+Gramps ID: E1202
+Event type: Birth
+Event date: 1943-10-10
+Event location: Midland, MI, USA
+Event description: Birth of Lane, Joseph Edward
+Participant (Primary): Joseph Edward Lane (Gramps ID: I0209)
+
+Type: event
+Gramps ID: E1203
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joseph Edward Lane (Gramps ID: I0209)
+
+Type: event
+Gramps ID: E1204
+Event type: Birth
+Event date: 1782-01-07
+Event description: Birth of Moreno, John
+Participant (Primary): John Moreno (Gramps ID: I2092)
+
+Type: event
+Gramps ID: E1205
+Event type: Birth
+Event date: 1786-01-13
+Event description: Birth of Moreno, Absalom
+Participant (Primary): Absalom Moreno (Gramps ID: I2093)
+
+Type: event
+Gramps ID: E1206
+Event type: Death
+Event date: 1838-04-15
+Event description: Death of Moreno, Absalom
+Participant (Primary): Absalom Moreno (Gramps ID: I2093)
+
+Type: event
+Gramps ID: E1207
+Event type: Burial
+Event date: 1838-04-17
+Event location: Oxnard, Ventura, CA, USA
+Event description: Burial of Moreno, Absalom
+Participant (Primary): Absalom Moreno (Gramps ID: I2093)
+
+Type: event
+Gramps ID: E1208
+Event type: Birth
+Event date: 1794-09-10
+Event description: Birth of Moreno, Leah
+Participant (Primary): Leah Moreno (Gramps ID: I2096)
+
+Type: event
+Gramps ID: E1209
+Event type: Death
+Event date: 1875-11-05
+Event description: Death of Moreno, Leah
+Participant (Primary): Leah Moreno (Gramps ID: I2096)
+
+Type: event
+Gramps ID: E1210
+Event type: Birth
+Event date: 1867-01-23
+Event location: Durango, La Plata, CO, USA
+Event description: Birth of Warner, Warren W.
+Participant (Primary): Warren W. Warner (Gramps ID: I0021)
+
+Type: event
+Gramps ID: E1211
+Event type: Death
+Event date: 1919-03-10
+Event location: Kokomo, Howard, IN, USA
+Event description: Death of Warner, Warren W.
+Participant (Primary): Warren W. Warner (Gramps ID: I0021)
+
+Type: event
+Gramps ID: E1212
+Event type: Burial
+Event location: Henderson, NC, USA
+Event description: Burial of Warner, Warren W.
+Participant (Primary): Warren W. Warner (Gramps ID: I0021)
+
+Type: event
+Gramps ID: E1213
+Event type: Birth
+Event date: 1790-01-17
+Event description: Birth of Moreno, Esau
+Participant (Primary): Esau Moreno (Gramps ID: I2100)
+
+Type: event
+Gramps ID: E1214
+Event type: Birth
+Event date: 1799-11-29
+Event location: Bloomsburg, PA, USA
+Event description: Birth of Moreno, Enoch T.
+Participant (Primary): Enoch T. Moreno (Gramps ID: I2104)
+
+Type: event
+Gramps ID: E1215
+Event type: Birth
+Event date: 1894-04-24
+Event description: Birth of Cruz, Everett
+Participant (Primary): Everett Cruz (Gramps ID: I0211)
+
+Type: event
+Gramps ID: E1216
+Event type: Birth
+Event date: 1918-11-03
+Event description: Birth of Cruz, Paul Eugene
+Participant (Primary): Paul Eugene Cruz (Gramps ID: I0212)
+
+Type: event
+Gramps ID: E1217
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Eugene Cruz (Gramps ID: I0212)
+
+Type: event
+Gramps ID: E1218
+Event type: Birth
+Event date: 1917-09-19
+Event location: Minden, Webster, LA, USA
+Event description: Birth of Lambert, Marguerite
+Participant (Primary): Marguerite Lambert (Gramps ID: I0213)
+
+Type: event
+Gramps ID: E1219
+Event type: Death
+Event date: 1991-07-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Lambert, Marguerite
+Participant (Primary): Marguerite Lambert (Gramps ID: I0213)
+
+Type: event
+Gramps ID: E1220
+Event type: Burial
+Event location: Columbia, TN, USA
+Event description: Burial of Lambert, Marguerite
+Participant (Primary): Marguerite Lambert (Gramps ID: I0213)
+
+Type: event
+Gramps ID: E1221
+Event type: Birth
+Event date: 1940-10-15
+Event description: Birth of Cruz, Thomas Everett
+Participant (Primary): Thomas Everett Cruz (Gramps ID: I0214)
+
+Type: event
+Gramps ID: E1222
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Thomas Everett Cruz (Gramps ID: I0214)
+
+Type: event
+Gramps ID: E1223
+Event type: Birth
+Event date: 1942-02-06
+Event description: Birth of Cruz, Linda Helen
+Participant (Primary): Linda Helen Cruz (Gramps ID: I0215)
+
+Type: event
+Gramps ID: E1224
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Linda Helen Cruz (Gramps ID: I0215)
+
+Type: event
+Gramps ID: E1225
+Event type: Birth
+Event date: 1947-11-11
+Event description: Birth of Cruz, Dale Eugene
+Participant (Primary): Dale Eugene Cruz (Gramps ID: I0216)
+
+Type: event
+Gramps ID: E1226
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dale Eugene Cruz (Gramps ID: I0216)
+
+Type: event
+Gramps ID: E1227
+Event type: Birth
+Event date: 1921-03-04
+Event description: Birth of Cruz, Arthur Ray
+Participant (Primary): Arthur Ray Cruz (Gramps ID: I0217)
+
+Type: event
+Gramps ID: E1228
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Arthur Ray Cruz (Gramps ID: I0217)
+
+Type: event
+Gramps ID: E1229
+Event type: Birth
+Event date: 1922-01-15
+Event description: Birth of Robbins, Myrabel
+Participant (Primary): Myrabel Robbins (Gramps ID: I0218)
+
+Type: event
+Gramps ID: E1230
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Myrabel Robbins (Gramps ID: I0218)
+
+Type: event
+Gramps ID: E1231
+Event type: Birth
+Event date: 1944-01-09
+Event description: Birth of Cruz, Gerald Ray
+Participant (Primary): Gerald Ray Cruz (Gramps ID: I0219)
+
+Type: event
+Gramps ID: E1232
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gerald Ray Cruz (Gramps ID: I0219)
+
+Type: event
+Gramps ID: E1233
+Event type: Birth
+Event date: 1869-07-08
+Event location: Oxnard, Ventura, CA, USA
+Event description: Birth of Ball, Abigail
+Participant (Primary): Abigail Ball (Gramps ID: I0022)
+
+Type: event
+Gramps ID: E1234
+Event type: Death
+Event date: 1942-04-21
+Event location: Kokomo, Howard, IN, USA
+Event description: Death of Ball, Abigail
+Participant (Primary): Abigail Ball (Gramps ID: I0022)
+
+Type: event
+Gramps ID: E1235
+Event type: Burial
+Event date: 1942-04-23
+Event location: Henderson, NC, USA
+Event description: Burial of Ball, Abigail
+Participant (Primary): Abigail Ball (Gramps ID: I0022)
+
+Type: event
+Gramps ID: E1236
+Event type: Birth
+Event date: 1947-01-10
+Event description: Birth of Cruz, Janis Marlene
+Participant (Primary): Janis Marlene Cruz (Gramps ID: I0220)
+
+Type: event
+Gramps ID: E1237
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Janis Marlene Cruz (Gramps ID: I0220)
+
+Type: event
+Gramps ID: E1238
+Event type: Birth
+Event date: 1950-04-11
+Event description: Birth of Cruz, James Richard
+Participant (Primary): James Richard Cruz (Gramps ID: I0221)
+
+Type: event
+Gramps ID: E1239
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James Richard Cruz (Gramps ID: I0221)
+
+Type: event
+Gramps ID: E1240
+Event type: Birth
+Event date: 1925-02-14
+Event description: Birth of Cruz, Ivan Wayne
+Participant (Primary): Ivan Wayne Cruz (Gramps ID: I0222)
+
+Type: event
+Gramps ID: E1241
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ivan Wayne Cruz (Gramps ID: I0222)
+
+Type: event
+Gramps ID: E1242
+Event type: Birth
+Event date: 1923-10-22
+Event description: Birth of Gagnon, Bettie Lou
+Participant (Primary): Bettie Lou Gagnon (Gramps ID: I0223)
+
+Type: event
+Gramps ID: E1243
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bettie Lou Gagnon (Gramps ID: I0223)
+
+Type: event
+Gramps ID: E1244
+Event type: Birth
+Event date: 1948-01-25
+Event description: Birth of Cruz, David Wayne
+Participant (Primary): David Wayne Cruz (Gramps ID: I0224)
+
+Type: event
+Gramps ID: E1245
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Wayne Cruz (Gramps ID: I0224)
+
+Type: event
+Gramps ID: E1246
+Event type: Birth
+Event date: 1927-04-05
+Event description: Birth of Cruz, William Everett
+Participant (Primary): William Everett Cruz (Gramps ID: I0225)
+
+Type: event
+Gramps ID: E1247
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Everett Cruz (Gramps ID: I0225)
+
+Type: event
+Gramps ID: E1248
+Event type: Birth
+Event date: 1929-09-24
+Event description: Birth of Hawkins, Ellen Marie
+Participant (Primary): Ellen Marie Hawkins (Gramps ID: I0226)
+
+Type: event
+Gramps ID: E1249
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ellen Marie Hawkins (Gramps ID: I0226)
+
+Type: event
+Gramps ID: E1250
+Event type: Birth
+Event date: 1949-03-07
+Event description: Birth of Cruz, Joyce Marie
+Participant (Primary): Joyce Marie Cruz (Gramps ID: I0227)
+
+Type: event
+Gramps ID: E1251
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joyce Marie Cruz (Gramps ID: I0227)
+
+Type: event
+Gramps ID: E1252
+Event type: Birth
+Event date: 1952-11-29
+Event description: Birth of Cruz, Judy Denise
+Participant (Primary): Judy Denise Cruz (Gramps ID: I0228)
+
+Type: event
+Gramps ID: E1253
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Judy Denise Cruz (Gramps ID: I0228)
+
+Type: event
+Gramps ID: E1254
+Event type: Birth
+Event date: 1890-11-07
+Event description: Birth of Garrett, William Walker
+Participant (Primary): William Walker Garrett (Gramps ID: I0229)
+
+Type: event
+Gramps ID: E1255
+Event type: Birth
+Event date: 1779-09-24
+Event location: Morgan City, St. Mary, LA, USA
+Event description: Birth of Warner, Noah
+Participant (Primary): Noah Warner (Gramps ID: I0023)
+
+Type: event
+Gramps ID: E1256
+Event type: Death
+Event date: 1844-06-14
+Event location: Lake City, Columbia, FL, USA
+Event description: Death of Warner, Noah
+Participant (Primary): Noah Warner (Gramps ID: I0023)
+
+Type: event
+Gramps ID: E1257
+Event type: Burial
+Event date: 1844
+Event location: Kingston, Ulster, NY, USA
+Event description: Burial of Warner, Noah
+Participant (Primary): Noah Warner (Gramps ID: I0023)
+
+Type: event
+Gramps ID: E1258
+Event type: Birth
+Event date: 1923-12-08
+Event location: Gloversville, Fulton, NY, USA
+Event description: Birth of Garrett, Carmen Eloise
+Participant (Primary): Carmen Eloise Garrett (Gramps ID: I0230)
+
+Type: event
+Gramps ID: E1259
+Event type: Death
+Event date: 1997-03-25
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Garrett, Carmen Eloise
+Participant (Primary): Carmen Eloise Garrett (Gramps ID: I0230)
+
+Type: event
+Gramps ID: E1260
+Event type: Birth
+Event date: 1922-04-14
+Event description: Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Raymond A.
+Participant (Primary): Raymond A. ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0231)
+
+Type: event
+Gramps ID: E1261
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Raymond A. ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0231)
+
+Type: event
+Gramps ID: E1262
+Event type: Birth
+Event date: 1947-01-22
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+Participant (Primary): Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0232)
+
+Type: event
+Gramps ID: E1263
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Carmen Diana ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0232)
+
+Type: event
+Gramps ID: E1264
+Event type: Birth
+Event date: 1949-05-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐŸĐżĐ°ŃĐžĐœ, Donna Elaine
+Participant (Primary): Donna Elaine ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0233)
+
+Type: event
+Gramps ID: E1265
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Donna Elaine ĐĐŸĐżĐ°ŃĐžĐœ (Gramps ID: I0233)
+
+Type: event
+Gramps ID: E1266
+Event type: Birth
+Event date: 1927-05-13
+Event description: Birth of Garrett, William Forest
+Participant (Primary): William Forest Garrett (Gramps ID: I0234)
+
+Type: event
+Gramps ID: E1267
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Forest Garrett (Gramps ID: I0234)
+
+Type: event
+Gramps ID: E1268
+Event type: Birth
+Event date: 1926-03-12
+Event description: Birth of Perkins, Wilma Mae
+Participant (Primary): Wilma Mae Perkins (Gramps ID: I0235)
+
+Type: event
+Gramps ID: E1269
+Event type: Birth
+Event date: 1950-08-22
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garrett, Doris Mae
+Participant (Primary): Doris Mae Garrett (Gramps ID: I0236)
+
+Type: event
+Gramps ID: E1270
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Doris Mae Garrett (Gramps ID: I0236)
+
+Type: event
+Gramps ID: E1271
+Event type: Birth
+Event date: 1952-11-01
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garrett, Keith William
+Participant (Primary): Keith William Garrett (Gramps ID: I0237)
+
+Type: event
+Gramps ID: E1272
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Keith William Garrett (Gramps ID: I0237)
+
+Type: event
+Gramps ID: E1273
+Event type: Birth
+Event date: 1936-08-29
+Event description: Birth of Garrett, Lloyd Willis
+Participant (Primary): Lloyd Willis Garrett (Gramps ID: I0238)
+
+Type: event
+Gramps ID: E1274
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lloyd Willis Garrett (Gramps ID: I0238)
+
+Type: event
+Gramps ID: E1275
+Event type: Birth
+Event date: 1908-04-27
+Event description: Birth of Russell, Norman
+Participant (Primary): Norman Russell (Gramps ID: I0239)
+
+Type: event
+Gramps ID: E1276
+Event type: Death
+Event location: Alexandria, Rapides, LA, USA
+Event description: Death of Russell, Norman
+Participant (Primary): Norman Russell (Gramps ID: I0239)
+
+Type: event
+Gramps ID: E1277
+Event type: Burial
+Event date: 1992
+Event location: Taylorville, Christian, IL, USA
+Event description: Burial of Russell, Norman
+Participant (Primary): Norman Russell (Gramps ID: I0239)
+
+Type: event
+Gramps ID: E1278
+Event type: Birth
+Event date: 1781-07-22
+Event description: Birth of Burns, Margaret
+Participant (Primary): Margaret Burns (Gramps ID: I0024)
+
+Type: event
+Gramps ID: E1279
+Event type: Death
+Event date: 1849-01-17
+Event description: Death of Burns, Margaret
+Participant (Primary): Margaret Burns (Gramps ID: I0024)
+
+Type: event
+Gramps ID: E1280
+Event type: Birth
+Event date: 1936-09-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Russell, Melvin Glen
+Participant (Primary): Melvin Glen Russell (Gramps ID: I0240)
+
+Type: event
+Gramps ID: E1281
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Melvin Glen Russell (Gramps ID: I0240)
+
+Type: event
+Gramps ID: E1282
+Event type: Birth
+Event date: 1942-07-23
+Event description: Birth of Russell, Janet Gail
+Participant (Primary): Janet Gail Russell (Gramps ID: I0241)
+
+Type: event
+Gramps ID: E1283
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Janet Gail Russell (Gramps ID: I0241)
+
+Type: event
+Gramps ID: E1284
+Event type: Birth
+Event date: 1822-11-11
+Event location: New Castle, PA, USA
+Event description: Birth of MarĂn, Willis H.
+Participant (Primary): Willis H. MarĂn (Gramps ID: I0242)
+
+Type: event
+Gramps ID: E1285
+Event type: Death
+Event date: 1894-01-02
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of MarĂn, Willis H.
+Participant (Primary): Willis H. MarĂn (Gramps ID: I0242)
+
+Type: event
+Gramps ID: E1286
+Event type: Burial
+Event date: 1894-01-03
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of MarĂn, Willis H.
+Participant (Primary): Willis H. MarĂn (Gramps ID: I0242)
+
+Type: event
+Gramps ID: E1287
+Event type: Birth
+Event location: Paris, TN, USA
+Event description: Birth of MarĂn, Nancy H.
+Participant (Primary): Nancy H. MarĂn (Gramps ID: I0244)
+
+Type: event
+Gramps ID: E1288
+Event type: Birth
+Event date: 1798-07-22
+Event location: Warren-Farmington Hills-Troy, MI, USA
+Event description: Birth of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0025)
+
+Type: event
+Gramps ID: E1289
+Event type: Death
+Event date: 1868-07-31
+Event location: Arlington, VA, USA
+Event description: Death of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0025)
+
+Type: event
+Gramps ID: E1290
+Event type: Burial
+Event date: 1868-08-02
+Event location: Fort Leonard Wood, MO, USA
+Event description: Burial of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0025)
+
+Type: event
+Gramps ID: E1291
+Event type: Birth
+Event date: 1802
+Event location: Lakeland, Polk, FL, USA
+Event description: Birth of Floyd, John S.
+Participant (Primary): John S. Floyd (Gramps ID: I0251)
+
+Type: event
+Gramps ID: E1292
+Event type: Death
+Event date: 1893
+Event location: Norfolk, NE, USA
+Event description: Death of Floyd, John S.
+Participant (Primary): John S. Floyd (Gramps ID: I0251)
+
+Type: event
+Gramps ID: E1293
+Event type: Burial
+Event location: Dubuque, Dubuque, IA, USA
+Event description: Burial of Floyd, John S.
+Participant (Primary): John S. Floyd (Gramps ID: I0251)
+
+Type: event
+Gramps ID: E1294
+Event type: Birth
+Event date: 1812
+Event location: Cincinnati, OH, USA
+Event description: Birth of Coleman, Mary
+Participant (Primary): Mary Coleman (Gramps ID: I0252)
+
+Type: event
+Gramps ID: E1295
+Event type: Death
+Event location: Norfolk, NE, USA
+Event description: Death of Coleman, Mary
+Participant (Primary): Mary Coleman (Gramps ID: I0252)
+
+Type: event
+Gramps ID: E1296
+Event type: Burial
+Event location: Dubuque, Dubuque, IA, USA
+Event description: Burial of Coleman, Mary
+Participant (Primary): Mary Coleman (Gramps ID: I0252)
+
+Type: event
+Gramps ID: E1297
+Event type: Birth
+Event date: 1855-05-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Michael Edward
+Participant (Primary): Michael Edward Landry (Gramps ID: I0253)
+
+Type: event
+Gramps ID: E1298
+Event type: Death
+Event date: 1927-08-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Landry, Michael Edward
+Participant (Primary): Michael Edward Landry (Gramps ID: I0253)
+
+Type: event
+Gramps ID: E1299
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Landry, Michael Edward
+Participant (Primary): Michael Edward Landry (Gramps ID: I0253)
+
+Type: event
+Gramps ID: E1300
+Event type: Birth
+Event date: 1886-11-26
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Theresa A.
+Participant (Primary): Theresa A. Landry (Gramps ID: I0255)
+
+Type: event
+Gramps ID: E1301
+Event type: Birth
+Event date: 1889-05-28
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Mary A.
+Participant (Primary): Mary A. Landry (Gramps ID: I0256)
+
+Type: event
+Gramps ID: E1302
+Event type: Death
+Event date: 1955-11-18
+Event description: Death of Landry, Mary A.
+Participant (Primary): Mary A. Landry (Gramps ID: I0256)
+
+Type: event
+Gramps ID: E1303
+Event type: Birth
+Event date: 1891-07-11
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Maurice T.
+Participant (Primary): Maurice T. Landry (Gramps ID: I0257)
+
+Type: event
+Gramps ID: E1304
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Maurice T. Landry (Gramps ID: I0257)
+
+Type: event
+Gramps ID: E1305
+Event type: Birth
+Event date: 1894-06-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Charles M.
+Participant (Primary): Charles M. Landry (Gramps ID: I0258)
+
+Type: event
+Gramps ID: E1306
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Charles M. Landry (Gramps ID: I0258)
+
+Type: event
+Gramps ID: E1307
+Event type: Birth
+Event date: 1895-04-28
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, Catherine M.
+Participant (Primary): Catherine M. Landry (Gramps ID: I0259)
+
+Type: event
+Gramps ID: E1308
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Catherine M. Landry (Gramps ID: I0259)
+
+Type: event
+Gramps ID: E1309
+Event type: Birth
+Event date: 1804-07-22
+Event location: Poplar Bluff, MO, USA
+Event description: Birth of Green, Frances
+Participant (Primary): Frances Green (Gramps ID: I0026)
+
+Type: event
+Gramps ID: E1310
+Event type: Death
+Event date: 1886-07-31
+Event location: Arlington, VA, USA
+Event description: Death of Green, Frances
+Participant (Primary): Frances Green (Gramps ID: I0026)
+
+Type: event
+Gramps ID: E1311
+Event type: Burial
+Event date: 1886-08-02
+Event location: Fort Leonard Wood, MO, USA
+Event description: Burial of Green, Frances
+Participant (Primary): Frances Green (Gramps ID: I0026)
+
+Type: event
+Gramps ID: E1312
+Event type: Birth
+Event date: 1897-09-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, John Anthony
+Participant (Primary): John Anthony Landry (Gramps ID: I0260)
+
+Type: event
+Gramps ID: E1313
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Anthony Landry (Gramps ID: I0260)
+
+Type: event
+Gramps ID: E1314
+Event type: Birth
+Event date: um 1857
+Event description: Birth of Landry, Sarah
+Participant (Primary): Sarah Landry (Gramps ID: I0261)
+
+Type: event
+Gramps ID: E1315
+Event type: Death
+Event location: Anderson, SC, USA
+Event description: Death of Couture, Honora
+Participant (Primary): Honora Couture (Gramps ID: I0262)
+
+Type: event
+Gramps ID: E1316
+Event type: Birth
+Event date: 1900-03-06
+Event location: Alexandria, MN, USA
+Event description: Birth of Landry, Alice
+Participant (Primary): Alice Landry (Gramps ID: I0263)
+
+Type: event
+Gramps ID: E1317
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Alice Landry (Gramps ID: I0263)
+
+Type: event
+Gramps ID: E1318
+Event type: Birth
+Event date: 1902-06-15
+Event location: Alexandria, MN, USA
+Event description: Birth of Landry, Josephine Grace
+Participant (Primary): Josephine Grace Landry (Gramps ID: I0264)
+
+Type: event
+Gramps ID: E1319
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Josephine Grace Landry (Gramps ID: I0264)
+
+Type: event
+Gramps ID: E1320
+Event type: Birth
+Event date: 1906-10-16
+Event location: Alexandria, MN, USA
+Event description: Birth of Landry, Helen Margaret
+Participant (Primary): Helen Margaret Landry (Gramps ID: I0265)
+
+Type: event
+Gramps ID: E1321
+Event type: Death
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Landry, Helen Margaret
+Participant (Primary): Helen Margaret Landry (Gramps ID: I0265)
+
+Type: event
+Gramps ID: E1322
+Event type: Birth
+Event date: 1810-08-07
+Event location: Amarillo, Potter, TX, USA
+Event description: Birth of Ball, Matthias, Jr.
+Participant (Primary): Matthias, Jr. Ball (Gramps ID: I0027)
+
+Type: event
+Gramps ID: E1323
+Event type: Death
+Event date: 1887-12-23
+Event location: Portland, OR, USA
+Event description: Death of Ball, Matthias, Jr.
+Participant (Primary): Matthias, Jr. Ball (Gramps ID: I0027)
+
+Type: event
+Gramps ID: E1324
+Event type: Burial
+Event date: 1887-12-24
+Event location: Payson, Gila, AZ, USA
+Event description: Burial of Ball, Matthias, Jr.
+Participant (Primary): Matthias, Jr. Ball (Gramps ID: I0027)
+
+Type: event
+Gramps ID: E1325
+Event type: Birth
+Event date: 1921-01-11
+Event description: Birth of Landry, Maurice, Jr.
+Participant (Primary): Maurice, Jr. Landry (Gramps ID: I0271)
+
+Type: event
+Gramps ID: E1326
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Maurice, Jr. Landry (Gramps ID: I0271)
+
+Type: event
+Gramps ID: E1327
+Event type: Birth
+Event date: 1922-08-06
+Event location: Scottsburg, Scott, IN, USA
+Event description: Birth of Landry, Charles Doyle
+Participant (Primary): Charles Doyle Landry (Gramps ID: I0272)
+
+Type: event
+Gramps ID: E1328
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Charles Doyle Landry (Gramps ID: I0272)
+
+Type: event
+Gramps ID: E1329
+Event type: Birth
+Event date: 1924-02-16
+Event description: Birth of Landry, Eleanor Jean
+Participant (Primary): Eleanor Jean Landry (Gramps ID: I0276)
+
+Type: event
+Gramps ID: E1330
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Eleanor Jean Landry (Gramps ID: I0276)
+
+Type: event
+Gramps ID: E1331
+Event type: Birth
+Event date: 1926-11-07
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Landry, John Chandler
+Participant (Primary): John Chandler Landry (Gramps ID: I0277)
+
+Type: event
+Gramps ID: E1332
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Chandler Landry (Gramps ID: I0277)
+
+Type: event
+Gramps ID: E1333
+Event type: Birth
+Event date: 1958-06-10
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Michael Douglas
+Participant (Primary): Michael Douglas Warner (Gramps ID: I0278)
+
+Type: event
+Gramps ID: E1334
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Douglas Warner (Gramps ID: I0278)
+
+Type: event
+Gramps ID: E1335
+Event type: Birth
+Event date: 1823-03-13
+Event location: Bismarck, ND, USA
+Event description: Birth of Moreno, Abigail Chapman
+Participant (Primary): Abigail Chapman Moreno (Gramps ID: I0028)
+
+Type: event
+Gramps ID: E1336
+Event type: Death
+Event date: 1853-06-02
+Event location: Hutchinson, MN, USA
+Event description: Death of Moreno, Abigail Chapman
+Participant (Primary): Abigail Chapman Moreno (Gramps ID: I0028)
+
+Type: event
+Gramps ID: E1337
+Event type: Burial
+Event date: 1853-06-04
+Event location: Payson, Gila, AZ, USA
+Event description: Burial of Moreno, Abigail Chapman
+Participant (Primary): Abigail Chapman Moreno (Gramps ID: I0028)
+
+Type: event
+Gramps ID: E1338
+Event type: Birth
+Event date: 1962-11-19
+Event location: Isabela, PR, USA
+Event description: Birth of Warner, Michelle Lorraine
+Participant (Primary): Michelle Lorraine Warner (Gramps ID: I0280)
+
+Type: event
+Gramps ID: E1339
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michelle Lorraine Warner (Gramps ID: I0280)
+
+Type: event
+Gramps ID: E1340
+Event type: Birth
+Event date: 1960-05-01
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Darin Kane
+Participant (Primary): Darin Kane Warner (Gramps ID: I0281)
+
+Type: event
+Gramps ID: E1341
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Darin Kane Warner (Gramps ID: I0281)
+
+Type: event
+Gramps ID: E1342
+Event type: Birth
+Event date: 1958-06-10
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Lopez, Lee William
+Participant (Primary): Lee William Lopez (Gramps ID: I0283)
+
+Type: event
+Gramps ID: E1343
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lee William Lopez (Gramps ID: I0283)
+
+Type: event
+Gramps ID: E1344
+Event type: Birth
+Event date: 1959-11-26
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Lopez, John Warren
+Participant (Primary): John Warren Lopez (Gramps ID: I0284)
+
+Type: event
+Gramps ID: E1345
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Warren Lopez (Gramps ID: I0284)
+
+Type: event
+Gramps ID: E1346
+Event type: Birth
+Event date: 1969-04-21
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Andrea Susan
+Participant (Primary): Andrea Susan Warner (Gramps ID: I0285)
+
+Type: event
+Gramps ID: E1347
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrea Susan Warner (Gramps ID: I0285)
+
+Type: event
+Gramps ID: E1348
+Event type: Birth
+Event date: 1973-03-20
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Deirdra Denise
+Participant (Primary): Deirdra Denise Warner (Gramps ID: I0287)
+
+Type: event
+Gramps ID: E1349
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Deirdra Denise Warner (Gramps ID: I0287)
+
+Type: event
+Gramps ID: E1350
+Event type: Birth
+Event date: 1948-05-09
+Event location: Red Wing, MN, USA
+Event description: Birth of Watson, Alvin E.
+Participant (Primary): Alvin E. Watson (Gramps ID: I0288)
+
+Type: event
+Gramps ID: E1351
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Alvin E. Watson (Gramps ID: I0288)
+
+Type: event
+Gramps ID: E1352
+Event type: Birth
+Event date: 1983-06-16
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Watson, Mary Grace
+Participant (Primary): Mary Grace Watson (Gramps ID: I0289)
+
+Type: event
+Gramps ID: E1353
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Grace Watson (Gramps ID: I0289)
+
+Type: event
+Gramps ID: E1354
+Event type: Birth
+Event date: 1795-11-06
+Event location: Ardmore, OK, USA
+Event description: Birth of ĐŃĐșĐŸĐČ, John
+Participant (Primary): John ĐŃĐșĐŸĐČ (Gramps ID: I0029)
+
+Type: event
+Gramps ID: E1355
+Event type: Death
+Event date: 1875-12-12
+Event location: Visalia, Tulare, CA, USA
+Event description: Death of ĐŃĐșĐŸĐČ, John
+Participant (Primary): John ĐŃĐșĐŸĐČ (Gramps ID: I0029)
+
+Type: event
+Gramps ID: E1356
+Event type: Burial
+Event location: Bowling Green, Warren, KY, USA
+Event description: Burial of ĐŃĐșĐŸĐČ, John
+Participant (Primary): John ĐŃĐșĐŸĐČ (Gramps ID: I0029)
+
+Type: event
+Gramps ID: E1357
+Event type: Birth
+Event date: 1945-12-17
+Event location: Pahrump, NV, USA
+Event description: Birth of Simpson, Geraldine Ann
+Participant (Primary): Geraldine Ann Simpson (Gramps ID: I0290)
+
+Type: event
+Gramps ID: E1358
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Geraldine Ann Simpson (Gramps ID: I0290)
+
+Type: event
+Gramps ID: E1359
+Event type: Birth
+Event date: 1972-10-10
+Event location: Salem, OR, USA
+Event description: Birth of Warner, Sheryl Ann
+Participant (Primary): Sheryl Ann Warner (Gramps ID: I0291)
+
+Type: event
+Gramps ID: E1360
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sheryl Ann Warner (Gramps ID: I0291)
+
+Type: event
+Gramps ID: E1361
+Event type: Birth
+Event date: 1977-04-16
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Warner, Robert Warren
+Participant (Primary): Robert Warren Warner (Gramps ID: I0292)
+
+Type: event
+Gramps ID: E1362
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert Warren Warner (Gramps ID: I0292)
+
+Type: event
+Gramps ID: E1363
+Event type: Birth
+Event date: 1945-08-28
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Powers, Nancy Lou
+Participant (Primary): Nancy Lou Powers (Gramps ID: I0293)
+
+Type: event
+Gramps ID: E1364
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nancy Lou Powers (Gramps ID: I0293)
+
+Type: event
+Gramps ID: E1365
+Event type: Birth
+Event date: 1974-07-14
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Belle Marie
+Participant (Primary): Belle Marie Warner (Gramps ID: I0294)
+
+Type: event
+Gramps ID: E1366
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Belle Marie Warner (Gramps ID: I0294)
+
+Type: event
+Gramps ID: E1367
+Event type: Birth
+Event date: 1976-08-26
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Curtis Andrew
+Participant (Primary): Curtis Andrew Warner (Gramps ID: I0295)
+
+Type: event
+Gramps ID: E1368
+Event type: Death
+Event date: 1994-12-18
+Event location: Rockland, ME, USA
+Event description: Death of Warner, Curtis Andrew
+Participant (Primary): Curtis Andrew Warner (Gramps ID: I0295)
+
+Type: event
+Gramps ID: E1369
+Event type: Burial
+Event date: 1994-12-22
+Event location: Mount Airy, NC, USA
+Event description: Burial of Warner, Curtis Andrew
+Participant (Primary): Curtis Andrew Warner (Gramps ID: I0295)
+
+Type: event
+Gramps ID: E1370
+Event type: Birth
+Event date: 1978-12-11
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Douglas Lowell
+Participant (Primary): Douglas Lowell Warner (Gramps ID: I0296)
+
+Type: event
+Gramps ID: E1371
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Douglas Lowell Warner (Gramps ID: I0296)
+
+Type: event
+Gramps ID: E1372
+Event type: Birth
+Event date: 1947-04-06
+Event location: Muskogee, OK, USA
+Event description: Birth of French, Jimmy Michael
+Participant (Primary): Jimmy Michael French (Gramps ID: I0297)
+
+Type: event
+Gramps ID: E1373
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jimmy Michael French (Gramps ID: I0297)
+
+Type: event
+Gramps ID: E1374
+Event type: Birth
+Event date: 1973-07-03
+Event location: Taos, NM, USA
+Event description: Birth of French, Kevin Wayne
+Participant (Primary): Kevin Wayne French (Gramps ID: I0298)
+
+Type: event
+Gramps ID: E1375
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kevin Wayne French (Gramps ID: I0298)
+
+Type: event
+Gramps ID: E1376
+Event type: Birth
+Event date: 1981-08-06
+Event location: Medford, OR, USA
+Event description: Birth of French, Erin Jenny
+Participant (Primary): Erin Jenny French (Gramps ID: I0299)
+
+Type: event
+Gramps ID: E1377
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Erin Jenny French (Gramps ID: I0299)
+
+Type: event
+Gramps ID: E1378
+Event type: Birth
+Event date: 1981-05-11
+Event location: Gainesville, Llano, TX, USA
+Event description: Birth of Warner, Carl Thomas
+Participant (Primary): Carl Thomas Warner (Gramps ID: I0003)
+
+Type: event
+Gramps ID: E1379
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Carl Thomas Warner (Gramps ID: I0003)
+
+Type: event
+Gramps ID: E1380
+Event type: Birth
+Event date: 1805-10-18
+Event location: Ardmore, OK, USA
+Event description: Birth of Hopkins, Mary Eve
+Participant (Primary): Mary Eve Hopkins (Gramps ID: I0030)
+
+Type: event
+Gramps ID: E1381
+Event type: Death
+Event date: 1865-05-11
+Event location: Visalia, Tulare, CA, USA
+Event description: Death of Hopkins, Mary Eve
+Participant (Primary): Mary Eve Hopkins (Gramps ID: I0030)
+
+Type: event
+Gramps ID: E1382
+Event type: Burial
+Event date: 1865-05-13
+Event location: Bowling Green, Warren, KY, USA
+Event description: Burial of Hopkins, Mary Eve
+Participant (Primary): Mary Eve Hopkins (Gramps ID: I0030)
+
+Type: event
+Gramps ID: E1383
+Event type: Birth
+Event date: 1952-09-27
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Warner, Laura Gail
+Participant (Primary): Laura Gail Warner (Gramps ID: I0300)
+
+Type: event
+Gramps ID: E1384
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Laura Gail Warner (Gramps ID: I0300)
+
+Type: event
+Gramps ID: E1385
+Event type: Birth
+Event date: 1950-01-29
+Event location: San Francisco, San Francisco, CA, USA
+Event description: Birth of Haynes, Marc W.
+Participant (Primary): Marc W. Haynes (Gramps ID: I0301)
+
+Type: event
+Gramps ID: E1386
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marc W. Haynes (Gramps ID: I0301)
+
+Type: event
+Gramps ID: E1387
+Event type: Birth
+Event date: 1977-09-05
+Event location: Bremerton, WA, USA
+Event description: Birth of Haynes, Michael Walter
+Participant (Primary): Michael Walter Haynes (Gramps ID: I0302)
+
+Type: event
+Gramps ID: E1388
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Walter Haynes (Gramps ID: I0302)
+
+Type: event
+Gramps ID: E1389
+Event type: Birth
+Event date: 1980-11-18
+Event location: Bremerton, WA, USA
+Event description: Birth of Haynes, Elizabeth Ellen
+Participant (Primary): Elizabeth Ellen Haynes (Gramps ID: I0303)
+
+Type: event
+Gramps ID: E1390
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elizabeth Ellen Haynes (Gramps ID: I0303)
+
+Type: event
+Gramps ID: E1391
+Event type: Birth
+Event date: 1986-12-06
+Event location: Bremerton, WA, USA
+Event description: Birth of Haynes, David William Sigfred
+Participant (Primary): David William Sigfred Haynes (Gramps ID: I0304)
+
+Type: event
+Gramps ID: E1392
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David William Sigfred Haynes (Gramps ID: I0304)
+
+Type: event
+Gramps ID: E1393
+Event type: Birth
+Event date: 1944-12-31
+Event location: Frankfort, Clinton, IN, USA
+Event description: Birth of Ward, David J.
+Participant (Primary): David J. Ward (Gramps ID: I0305)
+
+Type: event
+Gramps ID: E1394
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David J. Ward (Gramps ID: I0305)
+
+Type: event
+Gramps ID: E1395
+Event type: Birth
+Event date: 1978-08-24
+Event location: Allentown, PA, USA
+Event description: Birth of Ward, Michael David
+Participant (Primary): Michael David Ward (Gramps ID: I0306)
+
+Type: event
+Gramps ID: E1396
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael David Ward (Gramps ID: I0306)
+
+Type: event
+Gramps ID: E1397
+Event type: Birth
+Event date: 1980-09-28
+Event location: Allentown, PA, USA
+Event description: Birth of Ward, Catherine Marie
+Participant (Primary): Catherine Marie Ward (Gramps ID: I0307)
+
+Type: event
+Gramps ID: E1398
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Catherine Marie Ward (Gramps ID: I0307)
+
+Type: event
+Gramps ID: E1399
+Event type: Birth
+Event date: 1952-07-16
+Event location: Fond du Lac, WI, USA
+Event description: Birth of ĐĐžŃДлДĐČ, Dennis John
+Participant (Primary): Dennis John ĐĐžŃДлДĐČ (Gramps ID: I0308)
+
+Type: event
+Gramps ID: E1400
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dennis John ĐĐžŃДлДĐČ (Gramps ID: I0308)
+
+Type: event
+Gramps ID: E1401
+Event type: Birth
+Event date: 1983-07-07
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of ĐĐžŃДлДĐČ, Timothy Andrew
+Participant (Primary): Timothy Andrew ĐĐžŃДлДĐČ (Gramps ID: I0309)
+
+Type: event
+Gramps ID: E1402
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Timothy Andrew ĐĐžŃДлДĐČ (Gramps ID: I0309)
+
+Type: event
+Gramps ID: E1403
+Event type: Birth
+Event date: 1821-04-09
+Event location: Mount Pleasant, Taylor, TX, USA
+Event description: Birth of Warner, Piatt D.
+Participant (Primary): Piatt D. Warner (Gramps ID: I0031)
+
+Type: event
+Gramps ID: E1404
+Event type: Death
+Event date: 1889-10-11
+Event location: Arlington, VA, USA
+Event description: Death of Warner, Piatt D.
+Participant (Primary): Piatt D. Warner (Gramps ID: I0031)
+
+Type: event
+Gramps ID: E1405
+Event type: Burial
+Event date: 1889
+Event location: Fort Leonard Wood, MO, USA
+Event description: Burial of Warner, Piatt D.
+Participant (Primary): Piatt D. Warner (Gramps ID: I0031)
+
+Type: event
+Gramps ID: E1406
+Event type: Birth
+Event date: 1985-08-08
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of ĐĐžŃДлДĐČ, Aaron D.
+Participant (Primary): Aaron D. ĐĐžŃДлДĐČ (Gramps ID: I0310)
+
+Type: event
+Gramps ID: E1407
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Aaron D. ĐĐžŃДлДĐČ (Gramps ID: I0310)
+
+Type: event
+Gramps ID: E1408
+Event type: Birth
+Event date: 1951-11-21
+Event location: Cullman, Cullman, AL, USA
+Event description: Birth of Mortensen, Daniel
+Participant (Primary): Daniel Mortensen (Gramps ID: I0311)
+
+Type: event
+Gramps ID: E1409
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Daniel Mortensen (Gramps ID: I0311)
+
+Type: event
+Gramps ID: E1410
+Event type: Birth
+Event date: 1980-01-04
+Event location: Mount Vernon, OH, USA
+Event description: Birth of Mortensen, Robert Alan
+Participant (Primary): Robert Alan Mortensen (Gramps ID: I0312)
+
+Type: event
+Gramps ID: E1411
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert Alan Mortensen (Gramps ID: I0312)
+
+Type: event
+Gramps ID: E1412
+Event type: Birth
+Event date: 1981-07-01
+Event location: Mount Vernon, OH, USA
+Event description: Birth of Mortensen, Maria Christine
+Participant (Primary): Maria Christine Mortensen (Gramps ID: I0313)
+
+Type: event
+Gramps ID: E1413
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Maria Christine Mortensen (Gramps ID: I0313)
+
+Type: event
+Gramps ID: E1414
+Event type: Birth
+Event date: 1950-12-12
+Event location: Beaver Dam, WI, USA
+Event description: Birth of Watkins, Bruce Edward
+Participant (Primary): Bruce Edward Watkins (Gramps ID: I0314)
+
+Type: event
+Gramps ID: E1415
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bruce Edward Watkins (Gramps ID: I0314)
+
+Type: event
+Gramps ID: E1416
+Event type: Birth
+Event date: 1980-09-26
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Birth of Watkins, Laura Kathryn
+Participant (Primary): Laura Kathryn Watkins (Gramps ID: I0315)
+
+Type: event
+Gramps ID: E1417
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Laura Kathryn Watkins (Gramps ID: I0315)
+
+Type: event
+Gramps ID: E1418
+Event type: Birth
+Event date: 1982-03-23
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Birth of Long, Elisa Ann
+Participant (Primary): Elisa Ann Long (Gramps ID: I0316)
+
+Type: event
+Gramps ID: E1419
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elisa Ann Long (Gramps ID: I0316)
+
+Type: event
+Gramps ID: E1420
+Event type: Birth
+Event date: 1985-07-22
+Event location: Bremerton, WA, USA
+Event description: Birth of Warner, Martin B.
+Participant (Primary): Martin B. Warner (Gramps ID: I0318)
+
+Type: event
+Gramps ID: E1421
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Martin B. Warner (Gramps ID: I0318)
+
+Type: event
+Gramps ID: E1422
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Clayton James Warner (Gramps ID: I0319)
+
+Type: event
+Gramps ID: E1423
+Event type: Birth
+Event date: 1823-12-25
+Event location: Lawton, OK, USA
+Event description: Birth of Fox, Julia Colville
+Participant (Primary): Julia Colville Fox (Gramps ID: I0032)
+
+Type: event
+Gramps ID: E1424
+Event type: Death
+Event date: 1904-02-12
+Event location: Bridgeton, NJ, USA
+Event description: Death of Fox, Julia Colville
+Participant (Primary): Julia Colville Fox (Gramps ID: I0032)
+
+Type: event
+Gramps ID: E1425
+Event type: Burial
+Event date: 1904
+Event location: Fort Leonard Wood, MO, USA
+Event description: Burial of Fox, Julia Colville
+Participant (Primary): Julia Colville Fox (Gramps ID: I0032)
+
+Type: event
+Gramps ID: E1426
+Event type: Birth
+Event date: 1971-08-02
+Event location: DuBois, PA, USA
+Event description: Birth of Poirier, Janelle Marie
+Participant (Primary): Janelle Marie Poirier (Gramps ID: I0321)
+
+Type: event
+Gramps ID: E1427
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Janelle Marie Poirier (Gramps ID: I0321)
+
+Type: event
+Gramps ID: E1428
+Event type: Birth
+Event date: 1974-07-09
+Event location: Altoona, PA, USA
+Event description: Birth of Poirier, Jeffrey Alan
+Participant (Primary): Jeffrey Alan Poirier (Gramps ID: I0322)
+
+Type: event
+Gramps ID: E1429
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffrey Alan Poirier (Gramps ID: I0322)
+
+Type: event
+Gramps ID: E1430
+Event type: Birth
+Event date: 1947-11-25
+Event description: Birth of Nguyen, John Harry
+Participant (Primary): John Harry Nguyen (Gramps ID: I0323)
+
+Type: event
+Gramps ID: E1431
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Harry Nguyen (Gramps ID: I0323)
+
+Type: event
+Gramps ID: E1432
+Event type: Birth
+Event date: 1981-07-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Nguyen, Laurie Ann
+Participant (Primary): Laurie Ann Nguyen (Gramps ID: I0324)
+
+Type: event
+Gramps ID: E1433
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Laurie Ann Nguyen (Gramps ID: I0324)
+
+Type: event
+Gramps ID: E1434
+Event type: Birth
+Event date: 1982-11-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Nguyen, Elizabeth Diane
+Participant (Primary): Elizabeth Diane Nguyen (Gramps ID: I0325)
+
+Type: event
+Gramps ID: E1435
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elizabeth Diane Nguyen (Gramps ID: I0325)
+
+Type: event
+Gramps ID: E1436
+Event type: Birth
+Event date: 1979-05-17
+Event location: Altoona, PA, USA
+Event description: Birth of Warner, James Andrew
+Participant (Primary): James Andrew Warner (Gramps ID: I0326)
+
+Type: event
+Gramps ID: E1437
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James Andrew Warner (Gramps ID: I0326)
+
+Type: event
+Gramps ID: E1438
+Event type: Birth
+Event date: 1981-04-12
+Event location: Altoona, PA, USA
+Event description: Birth of Warner, Cindy Lynn
+Participant (Primary): Cindy Lynn Warner (Gramps ID: I0327)
+
+Type: event
+Gramps ID: E1439
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cindy Lynn Warner (Gramps ID: I0327)
+
+Type: event
+Gramps ID: E1440
+Event type: Birth
+Event date: 1954-09-30
+Event description: Birth of Carter, Debra J.
+Participant (Primary): Debra J. Carter (Gramps ID: I0328)
+
+Type: event
+Gramps ID: E1441
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Debra J. Carter (Gramps ID: I0328)
+
+Type: event
+Gramps ID: E1442
+Event type: Birth
+Event date: 1947-06
+Event description: Birth of Alvarado, Jack D.
+Participant (Primary): Jack D. Alvarado (Gramps ID: I0329)
+
+Type: event
+Gramps ID: E1443
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jack D. Alvarado (Gramps ID: I0329)
+
+Type: event
+Gramps ID: E1444
+Event type: Birth
+Event date: 1846-12-14
+Event location: Wausau, WI, USA
+Event description: Birth of Ball, Jasper
+Participant (Primary): Jasper Ball (Gramps ID: I0033)
+
+Type: event
+Gramps ID: E1445
+Event type: Death
+Event date: 1906-08-04
+Event location: Oxnard, Ventura, CA, USA
+Event description: Death of Ball, Jasper
+Participant (Primary): Jasper Ball (Gramps ID: I0033)
+
+Type: event
+Gramps ID: E1446
+Event type: Burial
+Event date: 1906-08-06
+Event location: Oxnard, Ventura, CA, USA
+Event description: Burial of Ball, Jasper
+Participant (Primary): Jasper Ball (Gramps ID: I0033)
+
+Type: event
+Gramps ID: E1447
+Event type: Birth
+Event date: 1968-09-30
+Event location: Rockland, ME, USA
+Event description: Birth of Alvarado, Michelle Lynn
+Participant (Primary): Michelle Lynn Alvarado (Gramps ID: I0330)
+
+Type: event
+Gramps ID: E1448
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michelle Lynn Alvarado (Gramps ID: I0330)
+
+Type: event
+Gramps ID: E1449
+Event type: Birth
+Event date: 1971-04-15
+Event location: Rockland, ME, USA
+Event description: Birth of Alvarado, Douglas David
+Participant (Primary): Douglas David Alvarado (Gramps ID: I0331)
+
+Type: event
+Gramps ID: E1450
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Douglas David Alvarado (Gramps ID: I0331)
+
+Type: event
+Gramps ID: E1451
+Event type: Birth
+Event date: 1984-04-04
+Event location: Rockland, ME, USA
+Event description: Birth of Alvarado, Andrew David
+Participant (Primary): Andrew David Alvarado (Gramps ID: I0332)
+
+Type: event
+Gramps ID: E1452
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrew David Alvarado (Gramps ID: I0332)
+
+Type: event
+Gramps ID: E1453
+Event type: Birth
+Event date: 1986-04-05
+Event location: Rockland, ME, USA
+Event description: Birth of Alvarado, Matthew Vincent
+Participant (Primary): Matthew Vincent Alvarado (Gramps ID: I0333)
+
+Type: event
+Gramps ID: E1454
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Matthew Vincent Alvarado (Gramps ID: I0333)
+
+Type: event
+Gramps ID: E1455
+Event type: Birth
+Event date: 1983-12-17
+Event description: Birth of Norton, Christina
+Participant (Primary): Christina Norton (Gramps ID: I0334)
+
+Type: event
+Gramps ID: E1456
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Christina Norton (Gramps ID: I0334)
+
+Type: event
+Gramps ID: E1457
+Event type: Birth
+Event date: 1985-05-27
+Event location: Bluefield, WV-VA, USA
+Event description: Birth of Warner, Amber Lynne
+Participant (Primary): Amber Lynne Warner (Gramps ID: I0335)
+
+Type: event
+Gramps ID: E1458
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Amber Lynne Warner (Gramps ID: I0335)
+
+Type: event
+Gramps ID: E1459
+Event type: Birth
+Event date: 1950-08-04
+Event description: Birth of Bates, William Robert
+Participant (Primary): William Robert Bates (Gramps ID: I0336)
+
+Type: event
+Gramps ID: E1460
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Robert Bates (Gramps ID: I0336)
+
+Type: event
+Gramps ID: E1461
+Event type: Birth
+Event date: 1977-03-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Bates, Timothy Christian
+Participant (Primary): Timothy Christian Bates (Gramps ID: I0337)
+
+Type: event
+Gramps ID: E1462
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Timothy Christian Bates (Gramps ID: I0337)
+
+Type: event
+Gramps ID: E1463
+Event type: Birth
+Event date: 1982-08-03
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Bates, Stephen Michael
+Participant (Primary): Stephen Michael Bates (Gramps ID: I0338)
+
+Type: event
+Gramps ID: E1464
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stephen Michael Bates (Gramps ID: I0338)
+
+Type: event
+Gramps ID: E1465
+Event type: Birth
+Event date: 1984-10-29
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Bates, John Allen
+Participant (Primary): John Allen Bates (Gramps ID: I0339)
+
+Type: event
+Gramps ID: E1466
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Allen Bates (Gramps ID: I0339)
+
+Type: event
+Gramps ID: E1467
+Event type: Birth
+Event date: 1846-08-17
+Event location: Fairmont, WV, USA
+Event description: Birth of ĐŃĐșĐŸĐČ, Angeline
+Participant (Primary): Angeline ĐŃĐșĐŸĐČ (Gramps ID: I0034)
+
+Type: event
+Gramps ID: E1468
+Event type: Death
+Event date: 1891-10-31
+Event location: Oxnard, Ventura, CA, USA
+Event description: Death of ĐŃĐșĐŸĐČ, Angeline
+Participant (Primary): Angeline ĐŃĐșĐŸĐČ (Gramps ID: I0034)
+
+Type: event
+Gramps ID: E1469
+Event type: Burial
+Event date: 1891-11-01
+Event location: Oxnard, Ventura, CA, USA
+Event description: Burial of ĐŃĐșĐŸĐČ, Angeline
+Participant (Primary): Angeline ĐŃĐșĐŸĐČ (Gramps ID: I0034)
+
+Type: event
+Gramps ID: E1470
+Event type: Birth
+Event date: 1950-07-27
+Event description: Birth of Floyd, Robert William
+Participant (Primary): Robert William Floyd (Gramps ID: I0340)
+
+Type: event
+Gramps ID: E1471
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Robert William Floyd (Gramps ID: I0340)
+
+Type: event
+Gramps ID: E1472
+Event type: Birth
+Event date: 1983-04-18
+Event location: Hot Springs, Garland, AR, USA
+Event description: Birth of Floyd, Gregory Scott
+Participant (Primary): Gregory Scott Floyd (Gramps ID: I0341)
+
+Type: event
+Gramps ID: E1473
+Event type: Death
+Event date: 1983-06-15
+Event location: Hot Springs, Garland, AR, USA
+Event description: Death of Floyd, Gregory Scott
+Participant (Primary): Gregory Scott Floyd (Gramps ID: I0341)
+
+Type: event
+Gramps ID: E1474
+Event type: Birth
+Event date: 1985-04-18
+Event location: Chillicothe, OH, USA
+Event description: Birth of Floyd, Christopher Randall
+Participant (Primary): Christopher Randall Floyd (Gramps ID: I0342)
+
+Type: event
+Gramps ID: E1475
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Christopher Randall Floyd (Gramps ID: I0342)
+
+Type: event
+Gramps ID: E1476
+Event type: Birth
+Event date: 1988-07-25
+Event location: Carbondale, Jackson, IL, USA
+Event description: Birth of Floyd, Joan Louise
+Participant (Primary): Joan Louise Floyd (Gramps ID: I0343)
+
+Type: event
+Gramps ID: E1477
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joan Louise Floyd (Gramps ID: I0343)
+
+Type: event
+Gramps ID: E1478
+Event type: Birth
+Event date: 1982-12-31
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Rebecca Kristine Ramos
+Participant (Primary): Rebecca Kristine Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0344)
+
+Type: event
+Gramps ID: E1479
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rebecca Kristine Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0344)
+
+Type: event
+Gramps ID: E1480
+Event type: Birth
+Event date: 1987-11-07
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Garza, Jeffrey Adam Ramos
+Participant (Primary): Jeffrey Adam Ramos Garza (Gramps ID: I0345)
+
+Type: event
+Gramps ID: E1481
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffrey Adam Ramos Garza (Gramps ID: I0345)
+
+Type: event
+Gramps ID: E1482
+Event type: Birth
+Event date: 1958-10-26
+Event description: Birth of Harrison, Paul Allen
+Participant (Primary): Paul Allen Harrison (Gramps ID: I0346)
+
+Type: event
+Gramps ID: E1483
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Allen Harrison (Gramps ID: I0346)
+
+Type: event
+Gramps ID: E1484
+Event type: Birth
+Event date: 1986-07-10
+Event description: Birth of Harrison, Benjamin Allen
+Participant (Primary): Benjamin Allen Harrison (Gramps ID: I0347)
+
+Type: event
+Gramps ID: E1485
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Benjamin Allen Harrison (Gramps ID: I0347)
+
+Type: event
+Gramps ID: E1486
+Event type: Birth
+Event date: 1959-03-04
+Event description: Birth of Welch, Michael
+Participant (Primary): Michael Welch (Gramps ID: I0348)
+
+Type: event
+Gramps ID: E1487
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Welch (Gramps ID: I0348)
+
+Type: event
+Gramps ID: E1488
+Event type: Birth
+Event date: 1982-08-09
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Welch, Jeremy Quentin
+Participant (Primary): Jeremy Quentin Welch (Gramps ID: I0349)
+
+Type: event
+Gramps ID: E1489
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeremy Quentin Welch (Gramps ID: I0349)
+
+Type: event
+Gramps ID: E1490
+Event type: Birth
+Event date: 1904-07-30
+Event location: Sanford, NC, USA
+Event description: Birth of Lessard, Carl Tolbert
+Participant (Primary): Carl Tolbert Lessard (Gramps ID: I0035)
+
+Type: event
+Gramps ID: E1491
+Event type: Death
+Event date: 1985-07-04
+Event location: Worthington, MN, USA
+Event description: Death of Lessard, Carl Tolbert
+Participant (Primary): Carl Tolbert Lessard (Gramps ID: I0035)
+
+Type: event
+Gramps ID: E1492
+Event type: Burial
+Event date: 1985-07-08
+Event location: Boone, Boone, IA, USA
+Event description: Burial of Lessard, Carl Tolbert
+Participant (Primary): Carl Tolbert Lessard (Gramps ID: I0035)
+
+Type: event
+Gramps ID: E1493
+Event type: Birth
+Event date: 1873-07-13
+Event description: Birth of Todd, Flora Belle
+Participant (Primary): Flora Belle Todd (Gramps ID: I0350)
+
+Type: event
+Gramps ID: E1494
+Event type: Death
+Event date: 1950-02-18
+Event location: Frederick, MD, USA
+Event description: Death of Todd, Flora Belle
+Participant (Primary): Flora Belle Todd (Gramps ID: I0350)
+
+Type: event
+Gramps ID: E1495
+Event type: Burial
+Event location: Chattanooga, TN-GA, USA
+Event description: Burial of Todd, Flora Belle
+Participant (Primary): Flora Belle Todd (Gramps ID: I0350)
+
+Type: event
+Gramps ID: E1496
+Event type: Birth
+Event date: 1874-11-19
+Event description: Birth of Todd, Robert Arthur
+Participant (Primary): Robert Arthur Todd (Gramps ID: I0351)
+
+Type: event
+Gramps ID: E1497
+Event type: Death
+Event date: 1940-12-20
+Event description: Death of Todd, Robert Arthur
+Participant (Primary): Robert Arthur Todd (Gramps ID: I0351)
+
+Type: event
+Gramps ID: E1498
+Event type: Birth
+Event date: 1879-03-03
+Event description: Birth of Todd, George Walter
+Participant (Primary): George Walter Todd (Gramps ID: I0352)
+
+Type: event
+Gramps ID: E1499
+Event type: Death
+Event date: 1919-06-28
+Event description: Death of Todd, George Walter
+Participant (Primary): George Walter Todd (Gramps ID: I0352)
+
+Type: event
+Gramps ID: E1500
+Event type: Birth
+Event date: 1881-09-10
+Event description: Birth of Todd, Jesse Elmer
+Participant (Primary): Jesse Elmer Todd (Gramps ID: I0353)
+
+Type: event
+Gramps ID: E1501
+Event type: Death
+Event date: 1957-12-12
+Event location: Shreveport, Caddo, LA, USA
+Event description: Death of Todd, Jesse Elmer
+Participant (Primary): Jesse Elmer Todd (Gramps ID: I0353)
+
+Type: event
+Gramps ID: E1502
+Event type: Birth
+Event date: 1884-06-26
+Event description: Birth of Todd, Lena Viola
+Participant (Primary): Lena Viola Todd (Gramps ID: I0354)
+
+Type: event
+Gramps ID: E1503
+Event type: Death
+Event location: Nashville, TN, USA
+Event description: Death of Todd, Lena Viola
+Participant (Primary): Lena Viola Todd (Gramps ID: I0354)
+
+Type: event
+Gramps ID: E1504
+Event type: Burial
+Event location: Shreveport, Caddo, LA, USA
+Event description: Burial of Todd, Lena Viola
+Participant (Primary): Lena Viola Todd (Gramps ID: I0354)
+
+Type: event
+Gramps ID: E1505
+Event type: Birth
+Event date: 1886-09-14
+Event description: Birth of Todd, Irene Frances
+Participant (Primary): Irene Frances Todd (Gramps ID: I0355)
+
+Type: event
+Gramps ID: E1506
+Event type: Death
+Event location: Nashville, TN, USA
+Event description: Death of Todd, Irene Frances
+Participant (Primary): Irene Frances Todd (Gramps ID: I0355)
+
+Type: event
+Gramps ID: E1507
+Event type: Burial
+Event location: Shreveport, Caddo, LA, USA
+Event description: Burial of Todd, Irene Frances
+Participant (Primary): Irene Frances Todd (Gramps ID: I0355)
+
+Type: event
+Gramps ID: E1508
+Event type: Birth
+Event date: 1889-06-18
+Event description: Birth of Todd, Cora Olive
+Participant (Primary): Cora Olive Todd (Gramps ID: I0356)
+
+Type: event
+Gramps ID: E1509
+Event type: Death
+Event location: Nashville, TN, USA
+Event description: Death of Todd, Cora Olive
+Participant (Primary): Cora Olive Todd (Gramps ID: I0356)
+
+Type: event
+Gramps ID: E1510
+Event type: Burial
+Event location: Shreveport, Caddo, LA, USA
+Event description: Burial of Todd, Cora Olive
+Participant (Primary): Cora Olive Todd (Gramps ID: I0356)
+
+Type: event
+Gramps ID: E1511
+Event type: Birth
+Event date: 1891-09-22
+Event description: Birth of Todd, Benjamin Harrison
+Participant (Primary): Benjamin Harrison Todd (Gramps ID: I0357)
+
+Type: event
+Gramps ID: E1512
+Event type: Death
+Event date: 1968-02-13
+Event location: Nashville, TN, USA
+Event description: Death of Todd, Benjamin Harrison
+Participant (Primary): Benjamin Harrison Todd (Gramps ID: I0357)
+
+Type: event
+Gramps ID: E1513
+Event type: Burial
+Event location: Shreveport, Caddo, LA, USA
+Event description: Burial of Todd, Benjamin Harrison
+Participant (Primary): Benjamin Harrison Todd (Gramps ID: I0357)
+
+Type: event
+Gramps ID: E1514
+Event type: Birth
+Event date: 1894-09-09
+Event description: Birth of Todd, Percy Haye
+Participant (Primary): Percy Haye Todd (Gramps ID: I0358)
+
+Type: event
+Gramps ID: E1515
+Event type: Death
+Event date: 1950-05-29
+Event location: Shreveport, Caddo, LA, USA
+Event description: Death of Todd, Percy Haye
+Participant (Primary): Percy Haye Todd (Gramps ID: I0358)
+
+Type: event
+Gramps ID: E1516
+Event type: Burial
+Event location: Shreveport, Caddo, LA, USA
+Event description: Burial of Todd, Percy Haye
+Participant (Primary): Percy Haye Todd (Gramps ID: I0358)
+
+Type: event
+Gramps ID: E1517
+Event type: Birth
+Event date: 1840-05-07
+Event location: Thomaston, Upson, GA, USA
+Event description: Birth of Farmer, Sarah Jane
+Participant (Primary): Sarah Jane Farmer (Gramps ID: I0359)
+
+Type: event
+Gramps ID: E1518
+Event type: Birth
+Event date: 1906-11-07
+Event location: Tuscaloosa, Tuscaloosa, AL, USA
+Event description: Birth of Webb, Luella Florence
+Participant (Primary): Luella Florence Webb (Gramps ID: I0036)
+
+Type: event
+Gramps ID: E1519
+Event type: Death
+Event date: 1986-10-08
+Event location: Worthington, MN, USA
+Event description: Death of Webb, Luella Florence
+Participant (Primary): Luella Florence Webb (Gramps ID: I0036)
+
+Type: event
+Gramps ID: E1520
+Event type: Burial
+Event date: 1986-10-11
+Event location: Boone, Boone, IA, USA
+Event description: Burial of Webb, Luella Florence
+Participant (Primary): Luella Florence Webb (Gramps ID: I0036)
+
+Type: event
+Gramps ID: E1521
+Event type: Birth
+Event date: 1842-08-09
+Event location: Thomaston, Upson, GA, USA
+Event description: Birth of Farmer, Mary Ann
+Participant (Primary): Mary Ann Farmer (Gramps ID: I0360)
+
+Type: event
+Gramps ID: E1522
+Event type: Birth
+Event date: 1844-12-02
+Event location: Thomaston, Upson, GA, USA
+Event description: Birth of Farmer, Susanne Delilah
+Participant (Primary): Susanne Delilah Farmer (Gramps ID: I0361)
+
+Type: event
+Gramps ID: E1523
+Event type: Birth
+Event date: 1847-07-29
+Event location: Thomaston, Upson, GA, USA
+Event description: Birth of Farmer, Winfield Scott
+Participant (Primary): Winfield Scott Farmer (Gramps ID: I0362)
+
+Type: event
+Gramps ID: E1524
+Event type: Birth
+Event date: 1852-09-27
+Event location: Thomaston, Upson, GA, USA
+Event description: Birth of Farmer, Miranda Keziah
+Participant (Primary): Miranda Keziah Farmer (Gramps ID: I0363)
+
+Type: event
+Gramps ID: E1525
+Event type: Birth
+Event date: 1855-05-27
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Farmer, Cyrus Melville
+Participant (Primary): Cyrus Melville Farmer (Gramps ID: I0364)
+
+Type: event
+Gramps ID: E1526
+Event type: Birth
+Event date: 1858-02-19
+Event location: Palatka, Putnam, FL, USA
+Event description: Birth of Farmer, Flora Alice
+Participant (Primary): Flora Alice Farmer (Gramps ID: I0365)
+
+Type: event
+Gramps ID: E1527
+Event type: Birth
+Event date: 1860-03-17
+Event location: Troy, Pike, AL, USA
+Event description: Birth of Farmer, John
+Participant (Primary): John Farmer (Gramps ID: I0366)
+
+Type: event
+Gramps ID: E1528
+Event type: Birth
+Event date: 1956-12-18
+Event description: Birth of Cruz, Melinda Lou
+Participant (Primary): Melinda Lou Cruz (Gramps ID: I0367)
+
+Type: event
+Gramps ID: E1529
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Melinda Lou Cruz (Gramps ID: I0367)
+
+Type: event
+Gramps ID: E1530
+Event type: Birth
+Event date: 1946-10-29
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Webb, Joan Lorinda
+Participant (Primary): Joan Lorinda Webb (Gramps ID: I0368)
+
+Type: event
+Gramps ID: E1531
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joan Lorinda Webb (Gramps ID: I0368)
+
+Type: event
+Gramps ID: E1532
+Event type: Birth
+Event date: 1950-03-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Webb, Marilyn Jean
+Participant (Primary): Marilyn Jean Webb (Gramps ID: I0369)
+
+Type: event
+Gramps ID: E1533
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marilyn Jean Webb (Gramps ID: I0369)
+
+Type: event
+Gramps ID: E1534
+Event type: Birth
+Event date: 1889-10-14
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Birth of Page, Clara Belle
+Participant (Primary): Clara Belle Page (Gramps ID: I0037)
+
+Type: event
+Gramps ID: E1535
+Event type: Death
+Event date: 1969-12-20
+Event location: Scranton, PA, USA
+Event description: Death of Page, Clara Belle
+Participant (Primary): Clara Belle Page (Gramps ID: I0037)
+
+Type: event
+Gramps ID: E1536
+Event type: Burial
+Event date: 1969-12-23
+Event location: Henderson, NC, USA
+Event description: Burial of Page, Clara Belle
+Participant (Primary): Clara Belle Page (Gramps ID: I0037)
+
+Type: event
+Gramps ID: E1537
+Event type: Birth
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Webb, Nancy Lou
+Participant (Primary): Nancy Lou Webb (Gramps ID: I0371)
+
+Type: event
+Gramps ID: E1538
+Event type: Death
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Webb, Nancy Lou
+Participant (Primary): Nancy Lou Webb (Gramps ID: I0371)
+
+Type: event
+Gramps ID: E1539
+Event type: Birth
+Event date: 1939-04-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Webb, James Lee
+Participant (Primary): James Lee Webb (Gramps ID: I0372)
+
+Type: event
+Gramps ID: E1540
+Event type: Death
+Event date: 1994-09-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Webb, James Lee
+Participant (Primary): James Lee Webb (Gramps ID: I0372)
+
+Type: event
+Gramps ID: E1541
+Event type: Burial
+Event date: 1994-09-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Webb, James Lee
+Participant (Primary): James Lee Webb (Gramps ID: I0372)
+
+Type: event
+Gramps ID: E1542
+Event type: Birth
+Event date: 1928-03-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Webb, Richard L.
+Participant (Primary): Richard L. Webb (Gramps ID: I0373)
+
+Type: event
+Gramps ID: E1543
+Event type: Death
+Event date: 1994-03-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Webb, Richard L.
+Participant (Primary): Richard L. Webb (Gramps ID: I0373)
+
+Type: event
+Gramps ID: E1544
+Event type: Burial
+Event date: 1994-03-08
+Event location: Manitowoc, WI, USA
+Event description: Burial of Webb, Richard L.
+Participant (Primary): Richard L. Webb (Gramps ID: I0373)
+
+Type: event
+Gramps ID: E1545
+Event type: Birth
+Event date: 1879-07-18
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Boucher, Nora A.
+Participant (Primary): Nora A. Boucher (Gramps ID: I0374)
+
+Type: event
+Gramps ID: E1546
+Event type: Death
+Event date: 1939-08-15
+Event description: Death of Boucher, Nora A.
+Participant (Primary): Nora A. Boucher (Gramps ID: I0374)
+
+Type: event
+Gramps ID: E1547
+Event type: Birth
+Event date: 1883-05-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Boucher, Michael J.
+Participant (Primary): Michael J. Boucher (Gramps ID: I0375)
+
+Type: event
+Gramps ID: E1548
+Event type: Birth
+Event date: 1888-12-06
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Boucher, Thomas W.
+Participant (Primary): Thomas W. Boucher (Gramps ID: I0376)
+
+Type: event
+Gramps ID: E1549
+Event type: Death
+Event date: 1942-04-02
+Event description: Death of Boucher, Thomas W.
+Participant (Primary): Thomas W. Boucher (Gramps ID: I0376)
+
+Type: event
+Gramps ID: E1550
+Event type: Birth
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Boucher, James
+Participant (Primary): James Boucher (Gramps ID: I0377)
+
+Type: event
+Gramps ID: E1551
+Event type: Death
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Gutierrez, Catherine
+Participant (Primary): Catherine Gutierrez (Gramps ID: I0379)
+
+Type: event
+Gramps ID: E1552
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Gutierrez, Catherine
+Participant (Primary): Catherine Gutierrez (Gramps ID: I0379)
+
+Type: event
+Gramps ID: E1553
+Event type: Birth
+Event date: 1850-01-01
+Event location: Watertown, SD, USA
+Event description: Birth of Page, David
+Participant (Primary): David Page (Gramps ID: I0038)
+
+Type: event
+Gramps ID: E1554
+Event type: Death
+Event date: 1922-10-13
+Event location: Point Pleasant, WV, USA
+Event description: Death of Page, David
+Participant (Primary): David Page (Gramps ID: I0038)
+
+Type: event
+Gramps ID: E1555
+Event type: Burial
+Event date: 1922-10-15
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Page, David
+Participant (Primary): David Page (Gramps ID: I0038)
+
+Type: event
+Gramps ID: E1556
+Event type: Birth
+Event date: 1840-12-24
+Event description: Birth of Boucher, Thomas
+Participant (Primary): Thomas Boucher (Gramps ID: I0380)
+
+Type: event
+Gramps ID: E1557
+Event type: Death
+Event date: 1885-07-29
+Event description: Death of Boucher, Thomas
+Participant (Primary): Thomas Boucher (Gramps ID: I0380)
+
+Type: event
+Gramps ID: E1558
+Event type: Death
+Event date: 1944-01-13
+Event description: Death of Boucher, William C.
+Participant (Primary): William C. Boucher (Gramps ID: I0384)
+
+Type: event
+Gramps ID: E1559
+Event type: Birth
+Event date: 1853-02-26
+Event location: Dixon, Lee, IL, USA
+Event description: Birth of Douglas, Elizabeth
+Participant (Primary): Elizabeth Douglas (Gramps ID: I0039)
+
+Type: event
+Gramps ID: E1560
+Event type: Death
+Event date: 1890-02-14
+Event location: Point Pleasant, WV, USA
+Event description: Death of Douglas, Elizabeth
+Participant (Primary): Elizabeth Douglas (Gramps ID: I0039)
+
+Type: event
+Gramps ID: E1561
+Event type: Burial
+Event date: 1890-02-16
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Douglas, Elizabeth
+Participant (Primary): Elizabeth Douglas (Gramps ID: I0039)
+
+Type: event
+Gramps ID: E1562
+Event type: Death
+Event date: 1920-02-18
+Event description: Death of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0390)
+
+Type: event
+Gramps ID: E1563
+Event type: Birth
+Event date: 1847-10-07
+Event description: Birth of Berry, Honorah
+Participant (Primary): Honorah Berry (Gramps ID: I0391)
+
+Type: event
+Gramps ID: E1564
+Event type: Death
+Event date: 1897-10-07
+Event description: Death of Berry, Honorah
+Participant (Primary): Honorah Berry (Gramps ID: I0391)
+
+Type: event
+Gramps ID: E1565
+Event type: Birth
+Event date: 1869-07-05
+Event description: Birth of Boucher, Catherine
+Participant (Primary): Catherine Boucher (Gramps ID: I0392)
+
+Type: event
+Gramps ID: E1566
+Event type: Death
+Event date: 1890-01-19
+Event description: Death of Boucher, Catherine
+Participant (Primary): Catherine Boucher (Gramps ID: I0392)
+
+Type: event
+Gramps ID: E1567
+Event type: Birth
+Event date: 1870-09-10
+Event description: Birth of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0393)
+
+Type: event
+Gramps ID: E1568
+Event type: Death
+Event date: 1943-06-26
+Event description: Death of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0393)
+
+Type: event
+Gramps ID: E1569
+Event type: Birth
+Event date: 1850-05-14
+Event description: Birth of Boucher, Bridget
+Participant (Primary): Bridget Boucher (Gramps ID: I0394)
+
+Type: event
+Gramps ID: E1570
+Event type: Death
+Event date: 1922-05-11
+Event description: Death of Boucher, Bridget
+Participant (Primary): Bridget Boucher (Gramps ID: I0394)
+
+Type: event
+Gramps ID: E1571
+Event type: Birth
+Event date: 1880-11-28
+Event description: Birth of Reeves, Mary
+Participant (Primary): Mary Reeves (Gramps ID: I0399)
+
+Type: event
+Gramps ID: E1572
+Event type: Death
+Event date: 1950-03-12
+Event description: Death of Reeves, Mary
+Participant (Primary): Mary Reeves (Gramps ID: I0399)
+
+Type: event
+Gramps ID: E1573
+Event type: Birth
+Event date: 1979-05-04
+Event location: New Haven, New Haven, CT, USA
+Event description: Birth of Warner, John Allen
+Participant (Primary): John Allen Warner (Gramps ID: I0004)
+
+Type: event
+Gramps ID: E1574
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Allen Warner (Gramps ID: I0004)
+
+Type: event
+Gramps ID: E1575
+Event type: Birth
+Event date: 1871-06-15
+Event location: Macon, Bibb, GA, USA
+Event description: Birth of Lessard, Ira Willis
+Participant (Primary): Ira Willis Lessard (Gramps ID: I0040)
+
+Type: event
+Gramps ID: E1576
+Event type: Death
+Event date: 1924-12-15
+Event location: Ogden, UT, USA
+Event description: Death of Lessard, Ira Willis
+Participant (Primary): Ira Willis Lessard (Gramps ID: I0040)
+
+Type: event
+Gramps ID: E1577
+Event type: Burial
+Event date: 1924-12-18
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Lessard, Ira Willis
+Participant (Primary): Ira Willis Lessard (Gramps ID: I0040)
+
+Type: event
+Gramps ID: E1578
+Event type: Birth
+Event date: 1892-05-25
+Event description: Birth of Reeves, Margaret
+Participant (Primary): Margaret Reeves (Gramps ID: I0400)
+
+Type: event
+Gramps ID: E1579
+Event type: Death
+Event date: 1938-03-30
+Event description: Death of Reeves, Margaret
+Participant (Primary): Margaret Reeves (Gramps ID: I0400)
+
+Type: event
+Gramps ID: E1580
+Event type: Birth
+Event date: 1883-03-21
+Event description: Birth of Reeves, Honora
+Participant (Primary): Honora Reeves (Gramps ID: I0401)
+
+Type: event
+Gramps ID: E1581
+Event type: Death
+Event date: 1908-11-08
+Event description: Death of Reeves, Honora
+Participant (Primary): Honora Reeves (Gramps ID: I0401)
+
+Type: event
+Gramps ID: E1582
+Event type: Death
+Event location: Olean, Cattaraugus, NY, USA
+Event description: Death of Floyd, Sarah (Sally)
+Participant (Primary): Sarah (Sally) Floyd (Gramps ID: I0406)
+
+Type: event
+Gramps ID: E1583
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Floyd, Sarah (Sally)
+Participant (Primary): Sarah (Sally) Floyd (Gramps ID: I0406)
+
+Type: event
+Gramps ID: E1584
+Event type: Birth
+Event date: 1916-10-31
+Event location: Kendallville, Noble, IN, USA
+Event description: Birth of Ford, Lorinda Catherine
+Participant (Primary): Lorinda Catherine Ford (Gramps ID: I0407)
+
+Type: event
+Gramps ID: E1585
+Event type: Death
+Event date: 1983-11-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Ford, Lorinda Catherine
+Participant (Primary): Lorinda Catherine Ford (Gramps ID: I0407)
+
+Type: event
+Gramps ID: E1586
+Event type: Burial
+Event location: Fostoria, OH, USA
+Event description: Burial of Ford, Lorinda Catherine
+Participant (Primary): Lorinda Catherine Ford (Gramps ID: I0407)
+
+Type: event
+Gramps ID: E1587
+Event type: Birth
+Event date: 1950-05-12
+Event description: Birth of ĐĐ»ŃĐžĐœ, Gary
+Participant (Primary): Gary ĐĐ»ŃĐžĐœ (Gramps ID: I0408)
+
+Type: event
+Gramps ID: E1588
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gary ĐĐ»ŃĐžĐœ (Gramps ID: I0408)
+
+Type: event
+Gramps ID: E1589
+Event type: Birth
+Event date: 1977-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ»ŃĐžĐœ, Eric Scott
+Participant (Primary): Eric Scott ĐĐ»ŃĐžĐœ (Gramps ID: I0409)
+
+Type: event
+Gramps ID: E1590
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Eric Scott ĐĐ»ŃĐžĐœ (Gramps ID: I0409)
+
+Type: event
+Gramps ID: E1591
+Event type: Birth
+Event date: 1870-02-05
+Event location: Guaynabo, PR, USA
+Event description: Birth of Jiménez, Lucinda Ellen
+Participant (Primary): Lucinda Ellen Jiménez (Gramps ID: I0041)
+
+Type: event
+Gramps ID: E1592
+Event type: Death
+Event date: 1949-02-21
+Event location: Kendallville, Noble, IN, USA
+Event description: Death of Jiménez, Lucinda Ellen
+Participant (Primary): Lucinda Ellen Jiménez (Gramps ID: I0041)
+
+Type: event
+Gramps ID: E1593
+Event type: Burial
+Event date: 1949-02
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Jiménez, Lucinda Ellen
+Participant (Primary): Lucinda Ellen Jiménez (Gramps ID: I0041)
+
+Type: event
+Gramps ID: E1594
+Event type: Birth
+Event date: 1981-03
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ»ŃĐžĐœ, Timothy Ryan
+Participant (Primary): Timothy Ryan ĐĐ»ŃĐžĐœ (Gramps ID: I0410)
+
+Type: event
+Gramps ID: E1595
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Timothy Ryan ĐĐ»ŃĐžĐœ (Gramps ID: I0410)
+
+Type: event
+Gramps ID: E1596
+Event type: Birth
+Event date: 1968-10-26
+Event location: Hobbs, NM, USA
+Event description: Birth of Gill, Lawrence
+Participant (Primary): Lawrence Gill (Gramps ID: I0412)
+
+Type: event
+Gramps ID: E1597
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lawrence Gill (Gramps ID: I0412)
+
+Type: event
+Gramps ID: E1598
+Event type: Birth
+Event date: um 1967
+Event location: Stockton, San Joaquin, CA, USA
+Event description: Birth of Gill, Lorie Ann
+Participant (Primary): Lorie Ann Gill (Gramps ID: I0413)
+
+Type: event
+Gramps ID: E1599
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lorie Ann Gill (Gramps ID: I0413)
+
+Type: event
+Gramps ID: E1600
+Event type: Birth
+Event date: 1984-10-26
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Daniel James Ramos
+Participant (Primary): Daniel James Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0415)
+
+Type: event
+Gramps ID: E1601
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Daniel James Ramos ĐĐ°ĐœĐžĐ»ĐŸĐČ (Gramps ID: I0415)
+
+Type: event
+Gramps ID: E1602
+Event type: Birth
+Event date: 1955-04-23
+Event location: Tullahoma, TN, USA
+Event description: Birth of Ross, Evelyn Almazon
+Participant (Primary): Evelyn Almazon Ross (Gramps ID: I0416)
+
+Type: event
+Gramps ID: E1603
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Evelyn Almazon Ross (Gramps ID: I0416)
+
+Type: event
+Gramps ID: E1604
+Event type: Birth
+Event date: 1954-05-22
+Event description: Birth of Mcbride, Paul
+Participant (Primary): Paul Mcbride (Gramps ID: I0417)
+
+Type: event
+Gramps ID: E1605
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Mcbride (Gramps ID: I0417)
+
+Type: event
+Gramps ID: E1606
+Event type: Birth
+Event date: 1988-01-19
+Event location: Rockland, ME, USA
+Event description: Birth of Harrison, Douglas Glenn
+Participant (Primary): Douglas Glenn Harrison (Gramps ID: I0418)
+
+Type: event
+Gramps ID: E1607
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Douglas Glenn Harrison (Gramps ID: I0418)
+
+Type: event
+Gramps ID: E1608
+Event type: Birth
+Event date: 1966-11-24
+Event description: Birth of JĂžrgensen, Jeffrey
+Participant (Primary): Jeffrey JĂžrgensen (Gramps ID: I0419)
+
+Type: event
+Gramps ID: E1609
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffrey JĂžrgensen (Gramps ID: I0419)
+
+Type: event
+Gramps ID: E1610
+Event type: Birth
+Event date: 1869-04-28
+Event location: Richmond, Wayne, IN, USA
+Event description: Birth of Webb, Francis Irvin
+Participant (Primary): Francis Irvin Webb (Gramps ID: I0042)
+
+Type: event
+Gramps ID: E1611
+Event type: Death
+Event date: 1957-02-07
+Event location: Granbury, Hood, TX, USA
+Event description: Death of Webb, Francis Irvin
+Participant (Primary): Francis Irvin Webb (Gramps ID: I0042)
+
+Type: event
+Gramps ID: E1612
+Event type: Burial
+Event date: 1957-02
+Event location: Boone, Boone, IA, USA
+Event description: Burial of Webb, Francis Irvin
+Participant (Primary): Francis Irvin Webb (Gramps ID: I0042)
+
+Type: event
+Gramps ID: E1613
+Event type: Birth
+Event date: 1828-10
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of Lessard, Isaac
+Participant (Primary): Isaac Lessard (Gramps ID: I0420)
+
+Type: event
+Gramps ID: E1614
+Event type: Birth
+Event date: 1839-03-15
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of DomĂnguez, Mary E.
+Participant (Primary): Mary E. DomĂnguez (Gramps ID: I0421)
+
+Type: event
+Gramps ID: E1615
+Event type: Death
+Event date: 1893-09-30
+Event location: Elkhart, Elkhart, IN, USA
+Event description: Death of DomĂnguez, Mary E.
+Participant (Primary): Mary E. DomĂnguez (Gramps ID: I0421)
+
+Type: event
+Gramps ID: E1616
+Event type: Burial
+Event date: 1893-10-01
+Event location: Pendleton-Hermiston, OR, USA
+Event description: Burial of DomĂnguez, Mary E.
+Participant (Primary): Mary E. DomĂnguez (Gramps ID: I0421)
+
+Type: event
+Gramps ID: E1617
+Event type: Birth
+Event date: 1944-09-11
+Event location: Medford, OR, USA
+Event description: Birth of Rasmussen, Marilyn Joan
+Participant (Primary): Marilyn Joan Rasmussen (Gramps ID: I0422)
+
+Type: event
+Gramps ID: E1618
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marilyn Joan Rasmussen (Gramps ID: I0422)
+
+Type: event
+Gramps ID: E1619
+Event type: Birth
+Event date: 1971-06-28
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Cruz, Joella Lynn
+Participant (Primary): Joella Lynn Cruz (Gramps ID: I0423)
+
+Type: event
+Gramps ID: E1620
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joella Lynn Cruz (Gramps ID: I0423)
+
+Type: event
+Gramps ID: E1621
+Event type: Birth
+Event date: 1973-11-19
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Cruz, Jill Suzanne
+Participant (Primary): Jill Suzanne Cruz (Gramps ID: I0424)
+
+Type: event
+Gramps ID: E1622
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jill Suzanne Cruz (Gramps ID: I0424)
+
+Type: event
+Gramps ID: E1623
+Event type: Birth
+Event date: 1975-09-17
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Cruz, Gayle Joan
+Participant (Primary): Gayle Joan Cruz (Gramps ID: I0425)
+
+Type: event
+Gramps ID: E1624
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gayle Joan Cruz (Gramps ID: I0425)
+
+Type: event
+Gramps ID: E1625
+Event type: Birth
+Event date: 1978-03-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Cruz, Joy Leanne
+Participant (Primary): Joy Leanne Cruz (Gramps ID: I0426)
+
+Type: event
+Gramps ID: E1626
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Joy Leanne Cruz (Gramps ID: I0426)
+
+Type: event
+Gramps ID: E1627
+Event type: Birth
+Event date: 1945-10-22
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Rodney Herman
+Participant (Primary): Rodney Herman ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0427)
+
+Type: event
+Gramps ID: E1628
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rodney Herman ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0427)
+
+Type: event
+Gramps ID: E1629
+Event type: Birth
+Event date: 1970-05-15
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Heather Michelle
+Participant (Primary): Heather Michelle ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0428)
+
+Type: event
+Gramps ID: E1630
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Heather Michelle ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0428)
+
+Type: event
+Gramps ID: E1631
+Event type: Birth
+Event date: 1973-08-25
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Hyla Rae
+Participant (Primary): Hyla Rae ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0429)
+
+Type: event
+Gramps ID: E1632
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Hyla Rae ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0429)
+
+Type: event
+Gramps ID: E1633
+Event type: Birth
+Event date: 1877-03-26
+Event location: Gardnerville Ranchos, NV, USA
+Event description: Birth of Todd, Louella Jane
+Participant (Primary): Louella Jane Todd (Gramps ID: I0043)
+
+Type: event
+Gramps ID: E1634
+Event type: Death
+Event date: 1965-01-26
+Event location: Saginaw, MI, USA
+Event description: Death of Todd, Louella Jane
+Participant (Primary): Louella Jane Todd (Gramps ID: I0043)
+
+Type: event
+Gramps ID: E1635
+Event type: Burial
+Event date: 1965-01
+Event location: Boone, Boone, IA, USA
+Event description: Burial of Todd, Louella Jane
+Participant (Primary): Louella Jane Todd (Gramps ID: I0043)
+
+Type: event
+Gramps ID: E1636
+Event type: Birth
+Event date: 1952-12-20
+Event location: Yauco, PR, USA
+Event description: Birth of Morales, Penelope Margot
+Participant (Primary): Penelope Margot Morales (Gramps ID: I0430)
+
+Type: event
+Gramps ID: E1637
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Penelope Margot Morales (Gramps ID: I0430)
+
+Type: event
+Gramps ID: E1638
+Event type: Birth
+Event date: 1939-08-05
+Event description: Birth of Briggs, Joyce Inez
+Participant (Primary): Joyce Inez Briggs (Gramps ID: I0431)
+
+Type: event
+Gramps ID: E1639
+Event type: Death
+Event date: 1985
+Event location: Iron Mountain, MI, USA
+Event description: Death of Briggs, Joyce Inez
+Participant (Primary): Joyce Inez Briggs (Gramps ID: I0431)
+
+Type: event
+Gramps ID: E1640
+Event type: Birth
+Event date: 1940-09-30
+Event description: Birth of Welch, Paul Allen
+Participant (Primary): Paul Allen Welch (Gramps ID: I0432)
+
+Type: event
+Gramps ID: E1641
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Paul Allen Welch (Gramps ID: I0432)
+
+Type: event
+Gramps ID: E1642
+Event type: Birth
+Event date: 1946-11-10
+Event description: Birth of Gill, Linda
+Participant (Primary): Linda Gill (Gramps ID: I0433)
+
+Type: event
+Gramps ID: E1643
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Linda Gill (Gramps ID: I0433)
+
+Type: event
+Gramps ID: E1644
+Event type: Birth
+Event date: 1948-09-12
+Event description: Birth of Nunez, Barbara Ann
+Participant (Primary): Barbara Ann Nunez (Gramps ID: I0434)
+
+Type: event
+Gramps ID: E1645
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Barbara Ann Nunez (Gramps ID: I0434)
+
+Type: event
+Gramps ID: E1646
+Event type: Birth
+Event date: 1953-07-13
+Event description: Birth of West, Ronald David
+Participant (Primary): Ronald David West (Gramps ID: I0435)
+
+Type: event
+Gramps ID: E1647
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ronald David West (Gramps ID: I0435)
+
+Type: event
+Gramps ID: E1648
+Event type: Birth
+Event date: 1946-05-10
+Event description: Birth of Peters, John C.
+Participant (Primary): John C. Peters (Gramps ID: I0436)
+
+Type: event
+Gramps ID: E1649
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John C. Peters (Gramps ID: I0436)
+
+Type: event
+Gramps ID: E1650
+Event type: Birth
+Event date: 1950-09-06
+Event description: Birth of Bell, Gary Richard
+Participant (Primary): Gary Richard Bell (Gramps ID: I0437)
+
+Type: event
+Gramps ID: E1651
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gary Richard Bell (Gramps ID: I0437)
+
+Type: event
+Gramps ID: E1652
+Event type: Birth
+Event date: 1959-08-14
+Event description: Birth of Cruz, Patti Jo
+Participant (Primary): Patti Jo Cruz (Gramps ID: I0438)
+
+Type: event
+Gramps ID: E1653
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Patti Jo Cruz (Gramps ID: I0438)
+
+Type: event
+Gramps ID: E1654
+Event type: Birth
+Event date: 1956-06-14
+Event description: Birth of Krawczyk, Douglas
+Participant (Primary): Douglas Krawczyk (Gramps ID: I0439)
+
+Type: event
+Gramps ID: E1655
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Douglas Krawczyk (Gramps ID: I0439)
+
+Type: event
+Gramps ID: E1656
+Event type: Birth
+Event date: 1855-06-21
+Event location: Great Falls, MT, USA
+Event description: Birth of Garner, Lewis Anderson
+Participant (Primary): Lewis Anderson Garner von ZieliĆski Sr (Gramps ID: I0044)
+
+Type: event
+Gramps ID: E1657
+Event type: Death
+Event date: 1911-06-28
+Event location: Twin Falls, Twin Falls, ID, USA
+Event description: Death of Garner, Lewis Anderson
+Participant (Primary): Lewis Anderson Garner von ZieliĆski Sr (Gramps ID: I0044)
+
+Type: event
+Gramps ID: E1658
+Event type: Burial
+Event date: 1911-07-01
+Event location: Twin Falls, Twin Falls, ID, USA
+Event description: Burial of Garner, Lewis Anderson
+Participant (Primary): Lewis Anderson Garner von ZieliĆski Sr (Gramps ID: I0044)
+
+Type: event
+Gramps ID: E1659
+Event type: Birth
+Event date: 1968-11-17
+Event description: Birth of Cruz, Ann Lynn
+Participant (Primary): Ann Lynn Cruz (Gramps ID: I0440)
+
+Type: event
+Gramps ID: E1660
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ann Lynn Cruz (Gramps ID: I0440)
+
+Type: event
+Gramps ID: E1661
+Event type: Birth
+Event date: 1972-03-04
+Event description: Birth of Cruz, Jane Elizabeth
+Participant (Primary): Jane Elizabeth Cruz (Gramps ID: I0441)
+
+Type: event
+Gramps ID: E1662
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jane Elizabeth Cruz (Gramps ID: I0441)
+
+Type: event
+Gramps ID: E1663
+Event type: Birth
+Event date: 1962-12-21
+Event description: Birth of Welch, Lisa Dawn
+Participant (Primary): Lisa Dawn Welch (Gramps ID: I0442)
+
+Type: event
+Gramps ID: E1664
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lisa Dawn Welch (Gramps ID: I0442)
+
+Type: event
+Gramps ID: E1665
+Event type: Birth
+Event date: 1963-01-25
+Event description: Birth of Poulsen, Randall Lee
+Participant (Primary): Randall Lee Poulsen (Gramps ID: I0443)
+
+Type: event
+Gramps ID: E1666
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Randall Lee Poulsen (Gramps ID: I0443)
+
+Type: event
+Gramps ID: E1667
+Event type: Birth
+Event date: 1966-09-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Welch, Christopher Paul
+Participant (Primary): Christopher Paul Welch (Gramps ID: I0444)
+
+Type: event
+Gramps ID: E1668
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Christopher Paul Welch (Gramps ID: I0444)
+
+Type: event
+Gramps ID: E1669
+Event type: Birth
+Event date: 1973-04-30
+Event description: Birth of Cruz, Laura Joy
+Participant (Primary): Laura Joy Cruz (Gramps ID: I0445)
+
+Type: event
+Gramps ID: E1670
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Laura Joy Cruz (Gramps ID: I0445)
+
+Type: event
+Gramps ID: E1671
+Event type: Birth
+Event date: 1976-08-07
+Event description: Birth of Cruz, Susan Marguerite
+Participant (Primary): Susan Marguerite Cruz (Gramps ID: I0446)
+
+Type: event
+Gramps ID: E1672
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Susan Marguerite Cruz (Gramps ID: I0446)
+
+Type: event
+Gramps ID: E1673
+Event type: Birth
+Event date: 1968-10-04
+Event description: Birth of Cruz, Marsha Ann
+Participant (Primary): Marsha Ann Cruz (Gramps ID: I0447)
+
+Type: event
+Gramps ID: E1674
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marsha Ann Cruz (Gramps ID: I0447)
+
+Type: event
+Gramps ID: E1675
+Event type: Birth
+Event date: 1972-06-29
+Event description: Birth of Cruz, Karla Sue
+Participant (Primary): Karla Sue Cruz (Gramps ID: I0448)
+
+Type: event
+Gramps ID: E1676
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Karla Sue Cruz (Gramps ID: I0448)
+
+Type: event
+Gramps ID: E1677
+Event type: Birth
+Event date: 1975-09-08
+Event description: Birth of Cruz, Karen Kay
+Participant (Primary): Karen Kay Cruz (Gramps ID: I0449)
+
+Type: event
+Gramps ID: E1678
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Karen Kay Cruz (Gramps ID: I0449)
+
+Type: event
+Gramps ID: E1679
+Event type: Birth
+Event date: 1852-01-23
+Event location: Eureka, Humboldt, CA, USA
+Event description: Birth of Martel, Luella Jacques
+Participant (Primary): Luella Jacques Martel (Gramps ID: I0045)
+
+Type: event
+Gramps ID: E1680
+Event type: Death
+Event date: 1921-04-28
+Event location: Myrtle Beach, SC, USA
+Event description: Death of Martel, Luella Jacques
+Participant (Primary): Luella Jacques Martel (Gramps ID: I0045)
+
+Type: event
+Gramps ID: E1681
+Event type: Burial
+Event date: 1921-04-30
+Event location: Myrtle Beach, SC, USA
+Event description: Burial of Martel, Luella Jacques
+Participant (Primary): Luella Jacques Martel (Gramps ID: I0045)
+
+Type: event
+Gramps ID: E1682
+Event type: Birth
+Event date: 1985-11-06
+Event location: Coos Bay, OR, USA
+Event description: Birth of West, Erin Kathleen
+Participant (Primary): Erin Kathleen West (Gramps ID: I0450)
+
+Type: event
+Gramps ID: E1683
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Erin Kathleen West (Gramps ID: I0450)
+
+Type: event
+Gramps ID: E1684
+Event type: Birth
+Event date: 1979-05-26
+Event description: Birth of Peters, Elissa Marie
+Participant (Primary): Elissa Marie Peters (Gramps ID: I0451)
+
+Type: event
+Gramps ID: E1685
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elissa Marie Peters (Gramps ID: I0451)
+
+Type: event
+Gramps ID: E1686
+Event type: Birth
+Event date: 1977-04-26
+Event description: Birth of Bell, William Austin
+Participant (Primary): William Austin Bell (Gramps ID: I0452)
+
+Type: event
+Gramps ID: E1687
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Austin Bell (Gramps ID: I0452)
+
+Type: event
+Gramps ID: E1688
+Event type: Birth
+Event date: 1980-02-12
+Event description: Birth of Bell, Brandy Nichole
+Participant (Primary): Brandy Nichole Bell (Gramps ID: I0453)
+
+Type: event
+Gramps ID: E1689
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Brandy Nichole Bell (Gramps ID: I0453)
+
+Type: event
+Gramps ID: E1690
+Event type: Birth
+Event date: 1986-12-30
+Event location: Vallejo, Solano, CA, USA
+Event description: Birth of Poulsen, Chelsea Dawn
+Participant (Primary): Chelsea Dawn Poulsen (Gramps ID: I0454)
+
+Type: event
+Gramps ID: E1691
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Chelsea Dawn Poulsen (Gramps ID: I0454)
+
+Type: event
+Gramps ID: E1692
+Event type: Birth
+Event date: 1988-08-19
+Event location: Vallejo, Solano, CA, USA
+Event description: Birth of Poulsen, Curtis Theobald
+Participant (Primary): Curtis Theobald Poulsen (Gramps ID: I0455)
+
+Type: event
+Gramps ID: E1693
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Curtis Theobald Poulsen (Gramps ID: I0455)
+
+Type: event
+Gramps ID: E1694
+Event type: Birth
+Event date: 1911-02-26
+Event location: Gaithersburg, MD, USA
+Event description: Birth of Page, Vernett Gail
+Participant (Primary): Vernett Gail Page (Gramps ID: I0456)
+
+Type: event
+Gramps ID: E1695
+Event type: Death
+Event date: 1998-08-29
+Event description: Death of Page, Vernett Gail
+Participant (Primary): Vernett Gail Page (Gramps ID: I0456)
+
+Type: event
+Gramps ID: E1696
+Event type: Birth
+Event date: 1921-03-25
+Event location: Bozeman, MT, USA
+Event description: Birth of Page, Eleanor Irene
+Participant (Primary): Eleanor Irene Page (Gramps ID: I0457)
+
+Type: event
+Gramps ID: E1697
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Eleanor Irene Page (Gramps ID: I0457)
+
+Type: event
+Gramps ID: E1698
+Event type: Death
+Event date: vor 1750
+Event location: Mooresville, NC, USA
+Event description: Death of Reese
+Participant (Primary): Reese (Gramps ID: I0458)
+
+Type: event
+Gramps ID: E1699
+Event type: Burial
+Event location: Mooresville, NC, USA
+Event description: Burial of Reese
+Participant (Primary): Reese (Gramps ID: I0458)
+
+Type: event
+Gramps ID: E1700
+Event type: Birth
+Event date: 1996-10-20
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Osborne, Andrew Cole
+Participant (Primary): Andrew Cole Osborne (Gramps ID: I0459)
+
+Type: event
+Gramps ID: E1701
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Andrew Cole Osborne (Gramps ID: I0459)
+
+Type: event
+Gramps ID: E1702
+Event type: Birth
+Event date: 1895-12-01
+Event location: Portsmouth, OH, USA
+Event description: Birth of Garner, Eugene Stanley
+Participant (Primary): Eugene Stanley Garner (Gramps ID: I0046)
+
+Type: event
+Gramps ID: E1703
+Event type: Death
+Event date: 1984-03-01
+Event location: Twin Falls, Twin Falls, ID, USA
+Event description: Death of Garner, Eugene Stanley
+Participant (Primary): Eugene Stanley Garner (Gramps ID: I0046)
+
+Type: event
+Gramps ID: E1704
+Event type: Burial
+Event date: 1984-03-03
+Event location: Twin Falls, Twin Falls, ID, USA
+Event description: Burial of Garner, Eugene Stanley
+Participant (Primary): Eugene Stanley Garner (Gramps ID: I0046)
+
+Type: event
+Gramps ID: E1705
+Event type: Death
+Event location: Richmond, Madison, KY, USA
+Event description: Death of Bergeron, John Henry
+Participant (Primary): John Henry Bergeron (Gramps ID: I0460)
+
+Type: event
+Gramps ID: E1706
+Event type: Burial
+Event location: Evansville, Vanderburgh, IN, USA
+Event description: Burial of Bergeron, John Henry
+Participant (Primary): John Henry Bergeron (Gramps ID: I0460)
+
+Type: event
+Gramps ID: E1707
+Event type: Burial
+Event location: Alexandria, MN, USA
+Event description: Burial of Wright, Dr. Charles J.
+Participant (Primary): Dr. Charles J. Wright (Gramps ID: I0461)
+
+Type: event
+Gramps ID: E1708
+Event type: Birth
+Event date: 1760-02-10
+Event description: Birth of Jiménez, George, Sr.
+Participant (Primary): George, Sr. Jiménez (Gramps ID: I0462)
+
+Type: event
+Gramps ID: E1709
+Event type: Death
+Event date: 1827-07-28
+Event location: Effingham, Effingham, IL, USA
+Event description: Death of Jiménez, George, Sr.
+Participant (Primary): George, Sr. Jiménez (Gramps ID: I0462)
+
+Type: event
+Gramps ID: E1710
+Event type: Burial
+Event date: 1827-07-29
+Event location: Fitzgerald, Ben Hill, GA, USA
+Event description: Burial of Jiménez, George, Sr.
+Participant (Primary): George, Sr. Jiménez (Gramps ID: I0462)
+
+Type: event
+Gramps ID: E1711
+Event type: Birth
+Event date: 1806-07-11
+Event location: Lock Haven, PA, USA
+Event description: Birth of Blake, George
+Participant (Primary): George Blake (Gramps ID: I0463)
+
+Type: event
+Gramps ID: E1712
+Event type: Death
+Event date: 1885-06-27
+Event location: San Diego, San Diego, CA, USA
+Event description: Death of Blake, George
+Participant (Primary): George Blake (Gramps ID: I0463)
+
+Type: event
+Gramps ID: E1713
+Event type: Burial
+Event location: Guaynabo, PR, USA
+Event description: Burial of Blake, George
+Participant (Primary): George Blake (Gramps ID: I0463)
+
+Type: event
+Gramps ID: E1714
+Event type: Birth
+Event date: 1805-09-25
+Event location: Canon City, CO, USA
+Event description: Birth of Cunningham, Sally Sarah
+Participant (Primary): Sally Sarah Cunningham (Gramps ID: I0464)
+
+Type: event
+Gramps ID: E1715
+Event type: Death
+Event date: 1867-02-19
+Event location: San Diego, San Diego, CA, USA
+Event description: Death of Cunningham, Sally Sarah
+Participant (Primary): Sally Sarah Cunningham (Gramps ID: I0464)
+
+Type: event
+Gramps ID: E1716
+Event type: Burial
+Event location: Guaynabo, PR, USA
+Event description: Burial of Cunningham, Sally Sarah
+Participant (Primary): Sally Sarah Cunningham (Gramps ID: I0464)
+
+Type: event
+Gramps ID: E1717
+Event type: Birth
+Event location: Laredo, Webb, TX, USA
+Event description: Birth of Blake, Conrad
+Participant (Primary): Conrad Blake (Gramps ID: I0465)
+
+Type: event
+Gramps ID: E1718
+Event type: Death
+Event location: Dallas, Dallas, TX, USA
+Event description: Death of Blake, Conrad
+Participant (Primary): Conrad Blake (Gramps ID: I0465)
+
+Type: event
+Gramps ID: E1719
+Event type: Birth
+Event date: 1786-04-20
+Event location: Laredo, Webb, TX, USA
+Event description: Birth of Ruiz, Catherine
+Participant (Primary): Catherine Ruiz (Gramps ID: I0466)
+
+Type: event
+Gramps ID: E1720
+Event type: Death
+Event date: 1877-09-25
+Event location: Dallas, Dallas, TX, USA
+Event description: Death of Ruiz, Catherine
+Participant (Primary): Catherine Ruiz (Gramps ID: I0466)
+
+Type: event
+Gramps ID: E1721
+Event type: Burial
+Event location: Laurel, MS, USA
+Event description: Burial of Ruiz, Catherine
+Participant (Primary): Catherine Ruiz (Gramps ID: I0466)
+
+Type: event
+Gramps ID: E1722
+Event type: Birth
+Event date: 1765-04-05
+Event location: Woodward, OK, USA
+Event description: Birth of Cunningham, William Philip
+Participant (Primary): William Philip Cunningham (Gramps ID: I0467)
+
+Type: event
+Gramps ID: E1723
+Event type: Death
+Event date: 1871-04-28
+Event location: Morristown, TN, USA
+Event description: Death of Cunningham, William Philip
+Participant (Primary): William Philip Cunningham (Gramps ID: I0467)
+
+Type: event
+Gramps ID: E1724
+Event type: Burial
+Event date: 1871-04-29
+Event location: Brainerd, MN, USA
+Event description: Burial of Cunningham, William Philip
+Participant (Primary): William Philip Cunningham (Gramps ID: I0467)
+
+Type: event
+Gramps ID: E1725
+Event type: Death
+Event date: 1871-04-28
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Death of Park, Susannah
+Participant (Primary): Susannah Park (Gramps ID: I0468)
+
+Type: event
+Gramps ID: E1726
+Event type: Birth
+Event location: Ocean City, NJ, USA
+Event description: Birth of Cunningham, Peter Sr.
+Participant (Primary): Peter Sr. Cunningham (Gramps ID: I0469)
+
+Type: event
+Gramps ID: E1727
+Event type: Death
+Event date: 1832-05
+Event location: Marquette, MI, USA
+Event description: Death of Cunningham, Peter Sr.
+Participant (Primary): Peter Sr. Cunningham (Gramps ID: I0469)
+
+Type: event
+Gramps ID: E1728
+Event type: Burial
+Event date: 1832-05
+Event location: Somerset, Pulaski, KY, USA
+Event description: Burial of Cunningham, Peter Sr.
+Participant (Primary): Peter Sr. Cunningham (Gramps ID: I0469)
+
+Type: event
+Gramps ID: E1729
+Event type: Birth
+Event date: 1857-05-02
+Event location: Mount Sterling, Montgomery, KY, USA
+Event description: Birth of Reed, Francis Vincent
+Participant (Primary): Francis Vincent Reed (Gramps ID: I0047)
+
+Type: event
+Gramps ID: E1730
+Event type: Death
+Event date: 1945-03-02
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Reed, Francis Vincent
+Participant (Primary): Francis Vincent Reed (Gramps ID: I0047)
+
+Type: event
+Gramps ID: E1731
+Event type: Burial
+Event date: 1945-03-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Reed, Francis Vincent
+Participant (Primary): Francis Vincent Reed (Gramps ID: I0047)
+
+Type: event
+Gramps ID: E1732
+Event type: Birth
+Event date: 1821-02-17
+Event location: Fallon, NV, USA
+Event description: Birth of Douglas, Abraham
+Participant (Primary): Abraham Douglas (Gramps ID: I0471)
+
+Type: event
+Gramps ID: E1733
+Event type: Death
+Event date: 1901-01-12
+Event location: Dixon, Lee, IL, USA
+Event description: Death of Douglas, Abraham
+Participant (Primary): Abraham Douglas (Gramps ID: I0471)
+
+Type: event
+Gramps ID: E1734
+Event type: Burial
+Event date: 1901-01-14
+Event location: Dixon, Lee, IL, USA
+Event description: Burial of Douglas, Abraham
+Participant (Primary): Abraham Douglas (Gramps ID: I0471)
+
+Type: event
+Gramps ID: E1735
+Event type: Birth
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of Alvarado, Nancy
+Participant (Primary): Nancy Alvarado (Gramps ID: I0472)
+
+Type: event
+Gramps ID: E1736
+Event type: Death
+Event date: 1861-03-12
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Alvarado, Nancy
+Participant (Primary): Nancy Alvarado (Gramps ID: I0472)
+
+Type: event
+Gramps ID: E1737
+Event type: Birth
+Event location: Mineral Wells, Palo Pinto, TX, USA
+Event description: Birth of Alvarado, Col. Charles
+Participant (Primary): Col. Charles Alvarado (Gramps ID: I0473)
+
+Type: event
+Gramps ID: E1738
+Event type: Death
+Event date: 1864-02
+Event location: Marshall, Harrison, TX, USA
+Event description: Death of Alvarado, Col. Charles
+Participant (Primary): Col. Charles Alvarado (Gramps ID: I0473)
+
+Type: event
+Gramps ID: E1739
+Event type: Burial
+Event date: 1864-02
+Event location: Marshall, Harrison, TX, USA
+Event description: Burial of Alvarado, Col. Charles
+Participant (Primary): Col. Charles Alvarado (Gramps ID: I0473)
+
+Type: event
+Gramps ID: E1740
+Event type: Birth
+Event date: 1799-05-09
+Event location: Santa Cruz, Santa Cruz, CA, USA
+Event description: Birth of Parent, Eleanor
+Participant (Primary): Eleanor Parent (Gramps ID: I0474)
+
+Type: event
+Gramps ID: E1741
+Event type: Death
+Event location: Marshall, Harrison, TX, USA
+Event description: Death of Parent, Eleanor
+Participant (Primary): Eleanor Parent (Gramps ID: I0474)
+
+Type: event
+Gramps ID: E1742
+Event type: Burial
+Event location: Marshall, Harrison, TX, USA
+Event description: Burial of Parent, Eleanor
+Participant (Primary): Eleanor Parent (Gramps ID: I0474)
+
+Type: event
+Gramps ID: E1743
+Event type: Birth
+Event location: Marshall, MO, USA
+Event description: Birth of Parent, Capt.Jacob C.
+Participant (Primary): Capt.Jacob C. Parent (Gramps ID: I0475)
+
+Type: event
+Gramps ID: E1744
+Event type: Death
+Event date: 1811-11-09
+Event location: Cleveland, MS, USA
+Event description: Death of Parent, Capt.Jacob C.
+Participant (Primary): Capt.Jacob C. Parent (Gramps ID: I0475)
+
+Type: event
+Gramps ID: E1745
+Event type: Burial
+Event date: 1811-11-11
+Event location: Des Moines, Polk, IA, USA
+Event description: Burial of Parent, Capt.Jacob C.
+Participant (Primary): Capt.Jacob C. Parent (Gramps ID: I0475)
+
+Type: event
+Gramps ID: E1746
+Event type: Birth
+Event location: Lock Haven, PA, USA
+Event description: Birth of James, Jane
+Participant (Primary): Jane James (Gramps ID: I0476)
+
+Type: event
+Gramps ID: E1747
+Event type: Death
+Event date: 1846-09-03
+Event location: Marshall, MN, USA
+Event description: Death of James, Jane
+Participant (Primary): Jane James (Gramps ID: I0476)
+
+Type: event
+Gramps ID: E1748
+Event type: Birth
+Event date: 1745
+Event location: Philadelphia, PA, USA
+Event description: Birth of James, Thomas Sr.
+Participant (Primary): Thomas Sr. James (Gramps ID: I0477)
+
+Type: event
+Gramps ID: E1749
+Event type: Death
+Event location: Marshall, MN, USA
+Event description: Death of James, Thomas Sr.
+Participant (Primary): Thomas Sr. James (Gramps ID: I0477)
+
+Type: event
+Gramps ID: E1750
+Event type: Birth
+Event date: um 1747
+Event location: Laredo, Webb, TX, USA
+Event description: Birth of Benson, Martha Ellen M.
+Participant (Primary): Martha Ellen M. Benson (Gramps ID: I0478)
+
+Type: event
+Gramps ID: E1751
+Event type: Death
+Event date: vor 1806
+Event location: Davenport, Scott, IA, USA
+Event description: Death of Benson, Martha Ellen M.
+Participant (Primary): Martha Ellen M. Benson (Gramps ID: I0478)
+
+Type: event
+Gramps ID: E1752
+Event type: Birth
+Event date: 1705
+Event location: Cleveland, OH, USA
+Event description: Birth of James, Hugh Sr.
+Participant (Primary): Hugh Sr. James (Gramps ID: I0479)
+
+Type: event
+Gramps ID: E1753
+Event type: Death
+Event date: 1785
+Event location: Coffeyville, Montgomery, KS, USA
+Event description: Death of James, Hugh Sr.
+Participant (Primary): Hugh Sr. James (Gramps ID: I0479)
+
+Type: event
+Gramps ID: E1754
+Event type: Birth
+Event date: 1864-01-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Participant (Primary): Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0048)
+
+Type: event
+Gramps ID: E1755
+Event type: Death
+Event date: 1903-11-27
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Participant (Primary): Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0048)
+
+Type: event
+Gramps ID: E1756
+Event type: Burial
+Event date: 1903-11-29
+Event location: Lexington, NC, USA
+Event description: Burial of йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Participant (Primary): Catherine Virginia йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0048)
+
+Type: event
+Gramps ID: E1757
+Event type: Birth
+Event date: 1711
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Birth of Serrano, Caroline
+Participant (Primary): Caroline Serrano (Gramps ID: I0480)
+
+Type: event
+Gramps ID: E1758
+Event type: Death
+Event location: Auburn, Cayuga, NY, USA
+Event description: Death of Serrano, Caroline
+Participant (Primary): Caroline Serrano (Gramps ID: I0480)
+
+Type: event
+Gramps ID: E1759
+Event type: Birth
+Event date: 1990-10-20
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Warner, Monica Jane
+Participant (Primary): Monica Jane Warner (Gramps ID: I0481)
+
+Type: event
+Gramps ID: E1760
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Monica Jane Warner (Gramps ID: I0481)
+
+Type: event
+Gramps ID: E1761
+Event type: Birth
+Event date: 1990-07-27
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of JĂžrgensen, Molly Marie
+Participant (Primary): Molly Marie JĂžrgensen (Gramps ID: I0482)
+
+Type: event
+Gramps ID: E1762
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Molly Marie JĂžrgensen (Gramps ID: I0482)
+
+Type: event
+Gramps ID: E1763
+Event type: Birth
+Event date: 1990-12-20
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Gosselin, Craig Richard
+Participant (Primary): Craig Richard Gosselin (Gramps ID: I0483)
+
+Type: event
+Gramps ID: E1764
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Craig Richard Gosselin (Gramps ID: I0483)
+
+Type: event
+Gramps ID: E1765
+Event type: Birth
+Event date: 1912-11-03
+Event description: Birth of Lachance, Helen
+Participant (Primary): Helen Lachance (Gramps ID: I0484)
+
+Type: event
+Gramps ID: E1766
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Helen Lachance (Gramps ID: I0484)
+
+Type: event
+Gramps ID: E1767
+Event type: Birth
+Event date: 1990-12-29
+Event location: Youngstown, OH, USA
+Event description: Birth of Cruz, Jesse Christopher
+Participant (Primary): Jesse Christopher Cruz (Gramps ID: I0485)
+
+Type: event
+Gramps ID: E1768
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jesse Christopher Cruz (Gramps ID: I0485)
+
+Type: event
+Gramps ID: E1769
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Thomas
+Participant (Primary): Thomas Boucher (Gramps ID: I0486)
+
+Type: event
+Gramps ID: E1770
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Boucher, Thomas
+Participant (Primary): Thomas Boucher (Gramps ID: I0486)
+
+Type: event
+Gramps ID: E1771
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Boucher, Thomas
+Participant (Primary): Thomas Boucher (Gramps ID: I0486)
+
+Type: event
+Gramps ID: E1772
+Event type: Birth
+Event date: 1837
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Sean
+Participant (Primary): Sean Boucher (Gramps ID: I0487)
+
+Type: event
+Gramps ID: E1773
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Boucher, Sean
+Participant (Primary): Sean Boucher (Gramps ID: I0487)
+
+Type: event
+Gramps ID: E1774
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Boucher, Sean
+Participant (Primary): Sean Boucher (Gramps ID: I0487)
+
+Type: event
+Gramps ID: E1775
+Event type: Birth
+Event date: 1883
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0488)
+
+Type: event
+Gramps ID: E1776
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0488)
+
+Type: event
+Gramps ID: E1777
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0488)
+
+Type: event
+Gramps ID: E1778
+Event type: Birth
+Event date: 1929
+Event location: Hastings, NE, USA
+Event description: Birth of Boucher, John
+Participant (Primary): John Boucher (Gramps ID: I0489)
+
+Type: event
+Gramps ID: E1779
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John Boucher (Gramps ID: I0489)
+
+Type: event
+Gramps ID: E1780
+Event type: Birth
+Event date: 1862-04-08
+Event location: Riverton, WY, USA
+Event description: Birth of MarĂn, Moses Wallace
+Participant (Primary): Moses Wallace MarĂn (Gramps ID: I0049)
+
+Type: event
+Gramps ID: E1781
+Event type: Death
+Event date: 1909-08-08
+Event location: Worthington, MN, USA
+Event description: Death of MarĂn, Moses Wallace
+Participant (Primary): Moses Wallace MarĂn (Gramps ID: I0049)
+
+Type: event
+Gramps ID: E1782
+Event type: Burial
+Event date: 1909-08-10
+Event location: Worthington, MN, USA
+Event description: Burial of MarĂn, Moses Wallace
+Participant (Primary): Moses Wallace MarĂn (Gramps ID: I0049)
+
+Type: event
+Gramps ID: E1783
+Event type: Birth
+Event date: 1949-06-17
+Event location: Midland, MI, USA
+Event description: Birth of Thornton, Phillip James
+Participant (Primary): Phillip James Thornton (Gramps ID: I0490)
+
+Type: event
+Gramps ID: E1784
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Phillip James Thornton (Gramps ID: I0490)
+
+Type: event
+Gramps ID: E1785
+Event type: Birth
+Event date: 1972-07-12
+Event location: Sierra Vista, Cochise, AZ, USA
+Event description: Birth of Lane, Anthony David
+Participant (Primary): Anthony David Lane (Gramps ID: I0492)
+
+Type: event
+Gramps ID: E1786
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Anthony David Lane (Gramps ID: I0492)
+
+Type: event
+Gramps ID: E1787
+Event type: Birth
+Event date: 1974-09-10
+Event location: Bay City, MI, USA
+Event description: Birth of Lane, Donna Elizabeth
+Participant (Primary): Donna Elizabeth Lane (Gramps ID: I0493)
+
+Type: event
+Gramps ID: E1788
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Donna Elizabeth Lane (Gramps ID: I0493)
+
+Type: event
+Gramps ID: E1789
+Event type: Burial
+Event location: Newberry, SC, USA
+Event description: Burial of Howell, Marie
+Participant (Primary): Marie Howell (Gramps ID: I0496)
+
+Type: event
+Gramps ID: E1790
+Event type: Birth
+Event date: 1941-01-11
+Event location: Newberry, SC, USA
+Event description: Birth of Boucher, William J.
+Participant (Primary): William J. Boucher (Gramps ID: I0497)
+
+Type: event
+Gramps ID: E1791
+Event type: Death
+Event date: 1994-10-31
+Event location: Moberly, MO, USA
+Event description: Death of Boucher, William J.
+Participant (Primary): William J. Boucher (Gramps ID: I0497)
+
+Type: event
+Gramps ID: E1792
+Event type: Burial
+Event date: 1994-11-03
+Event location: Lufkin, Angelina, TX, USA
+Event description: Burial of Boucher, William J.
+Participant (Primary): William J. Boucher (Gramps ID: I0497)
+
+Type: event
+Gramps ID: E1793
+Event type: Birth
+Event date: 1943-11-26
+Event description: Birth of Boucher, Sharon
+Participant (Primary): Sharon Boucher (Gramps ID: I0498)
+
+Type: event
+Gramps ID: E1794
+Event type: Death
+Event date: 1973-06-11
+Event description: Death of Boucher, Sharon
+Participant (Primary): Sharon Boucher (Gramps ID: I0498)
+
+Type: event
+Gramps ID: E1795
+Event type: Birth
+Event date: 1952-02-01
+Event location: Worthington, MN, USA
+Event description: Birth of Warner, Allen Carl
+Participant (Primary): Allen Carl Warner (Gramps ID: I0005)
+
+Type: event
+Gramps ID: E1796
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Allen Carl Warner (Gramps ID: I0005)
+
+Type: event
+Gramps ID: E1797
+Event type: Birth
+Event date: 1864-12
+Event location: Worthington, MN, USA
+Event description: Birth of Landry, Eleanor (Nellie) Therese
+Participant (Primary): Eleanor (Nellie) Therese Landry (Gramps ID: I0050)
+
+Type: event
+Gramps ID: E1798
+Event type: Death
+Event date: 1935-12-12
+Event location: Adjuntas, PR, USA
+Event description: Death of Landry, Eleanor (Nellie) Therese
+Participant (Primary): Eleanor (Nellie) Therese Landry (Gramps ID: I0050)
+
+Type: event
+Gramps ID: E1799
+Event type: Burial
+Event date: 1935-12-14
+Event location: Worthington, MN, USA
+Event description: Burial of Landry, Eleanor (Nellie) Therese
+Participant (Primary): Eleanor (Nellie) Therese Landry (Gramps ID: I0050)
+
+Type: event
+Gramps ID: E1800
+Event type: Birth
+Event date: 1896-07-24
+Event description: Birth of Boucher, Fr.Lawrence M.
+Participant (Primary): Fr.Lawrence M. Boucher (Gramps ID: I0506)
+
+Type: event
+Gramps ID: E1801
+Event type: Death
+Event date: 1972-05-03
+Event description: Death of Boucher, Fr.Lawrence M.
+Participant (Primary): Fr.Lawrence M. Boucher (Gramps ID: I0506)
+
+Type: event
+Gramps ID: E1802
+Event type: Burial
+Event location: Selma, Dallas, AL, USA
+Event description: Burial of Boucher, Fr.Lawrence M.
+Participant (Primary): Fr.Lawrence M. Boucher (Gramps ID: I0506)
+
+Type: event
+Gramps ID: E1803
+Event type: Birth
+Event date: 1650
+Event location: Chicago, Cook, IL, USA
+Event description: Birth of Warner, Capt. George
+Participant (Primary): Capt. George Warner (Gramps ID: I0507)
+
+Type: event
+Gramps ID: E1804
+Event type: Death
+Event date: 1710-11-08
+Event location: State College, PA, USA
+Event description: Death of Warner, Capt. George
+Participant (Primary): Capt. George Warner (Gramps ID: I0507)
+
+Type: event
+Gramps ID: E1805
+Event type: Burial
+Event location: Cape Girardeau, MO, USA
+Event description: Burial of Warner, Capt. George
+Participant (Primary): Capt. George Warner (Gramps ID: I0507)
+
+Type: event
+Gramps ID: E1806
+Event type: Birth
+Event location: Ukiah, Mendocino, CA, USA
+Event description: Birth of Alvarez, Mary
+Participant (Primary): Mary Alvarez (Gramps ID: I0508)
+
+Type: event
+Gramps ID: E1807
+Event type: Death
+Event date: 1727
+Event description: Death of Alvarez, Mary
+Participant (Primary): Mary Alvarez (Gramps ID: I0508)
+
+Type: event
+Gramps ID: E1808
+Event type: Birth
+Event date: 1684-01-20
+Event location: Frankfort, Franklin, KY, USA
+Event description: Birth of Warner, Capt. Andrew
+Participant (Primary): Capt. Andrew Warner (Gramps ID: I0509)
+
+Type: event
+Gramps ID: E1809
+Event type: Death
+Event date: 1754-01-11
+Event location: Lake County, IL, USA
+Event description: Death of Warner, Capt. Andrew
+Participant (Primary): Capt. Andrew Warner (Gramps ID: I0509)
+
+Type: event
+Gramps ID: E1810
+Event type: Burial
+Event location: Waycross, Ware, GA, USA
+Event description: Burial of Warner, Capt. Andrew
+Participant (Primary): Capt. Andrew Warner (Gramps ID: I0509)
+
+Type: event
+Gramps ID: E1811
+Event type: Birth
+Event date: 1854-01-25
+Event location: Union, SC, USA
+Event description: Birth of Boucher, William Bernard
+Participant (Primary): William Bernard Boucher (Gramps ID: I0051)
+
+Type: event
+Gramps ID: E1812
+Event type: Death
+Event date: 1928-12-27
+Event location: Worthington, MN, USA
+Event description: Death of Boucher, William Bernard
+Participant (Primary): William Bernard Boucher (Gramps ID: I0051)
+
+Type: event
+Gramps ID: E1813
+Event type: Burial
+Event date: 1928-12-29
+Event location: Worthington, MN, USA
+Event description: Burial of Boucher, William Bernard
+Participant (Primary): William Bernard Boucher (Gramps ID: I0051)
+
+Type: event
+Gramps ID: E1814
+Event type: Birth
+Event date: 1713-01-06
+Event location: Anchorage, AK, USA
+Event description: Birth of Warner, Edward
+Participant (Primary): Edward Warner (Gramps ID: I0510)
+
+Type: event
+Gramps ID: E1815
+Event type: Death
+Event date: 1776-09-27
+Event location: Vicksburg, MS, USA
+Event description: Death of Warner, Edward
+Participant (Primary): Edward Warner (Gramps ID: I0510)
+
+Type: event
+Gramps ID: E1816
+Event type: Burial
+Event location: Grand Rapids, MI, USA
+Event description: Burial of Warner, Edward
+Participant (Primary): Edward Warner (Gramps ID: I0510)
+
+Type: event
+Gramps ID: E1817
+Event type: Birth
+Event date: 1719
+Event location: Shelby, NC, USA
+Event description: Birth of Anderson, Mary Molly
+Participant (Primary): Mary Molly Anderson (Gramps ID: I0511)
+
+Type: event
+Gramps ID: E1818
+Event type: Death
+Event date: 1795-04-20
+Event description: Death of Anderson, Mary Molly
+Participant (Primary): Mary Molly Anderson (Gramps ID: I0511)
+
+Type: event
+Gramps ID: E1819
+Event type: Birth
+Event date: 1740-08-15
+Event location: Morgan City, St. Mary, LA, USA
+Event description: Birth of Warner, Andrew
+Participant (Primary): Andrew Warner (Gramps ID: I0512)
+
+Type: event
+Gramps ID: E1820
+Event type: Death
+Event date: 1827-10-14
+Event description: Death of Warner, Andrew
+Participant (Primary): Andrew Warner (Gramps ID: I0512)
+
+Type: event
+Gramps ID: E1821
+Event type: Birth
+Event date: 1759-11-09
+Event description: Birth of Maldonado, Eunice
+Participant (Primary): Eunice Maldonado (Gramps ID: I0513)
+
+Type: event
+Gramps ID: E1822
+Event type: Death
+Event location: Grand Junction, Mesa, CO, USA
+Event description: Death of Maldonado, Eunice
+Participant (Primary): Eunice Maldonado (Gramps ID: I0513)
+
+Type: event
+Gramps ID: E1823
+Event type: Burial
+Event location: Grand Junction, Mesa, CO, USA
+Event description: Burial of Maldonado, Eunice
+Participant (Primary): Eunice Maldonado (Gramps ID: I0513)
+
+Type: event
+Gramps ID: E1824
+Event type: Birth
+Event date: 1700
+Event location: Yazoo City, MS, USA
+Event description: Birth of Fox, Samuel
+Participant (Primary): Samuel Fox (Gramps ID: I0515)
+
+Type: event
+Gramps ID: E1825
+Event type: Death
+Event date: 1744
+Event location: Pecos, Reeves, TX, USA
+Event description: Death of Fox, Samuel
+Participant (Primary): Samuel Fox (Gramps ID: I0515)
+
+Type: event
+Gramps ID: E1826
+Event type: Burial
+Event location: Thomasville, Fulton, GA, USA
+Event description: Burial of Fox, Samuel
+Participant (Primary): Samuel Fox (Gramps ID: I0515)
+
+Type: event
+Gramps ID: E1827
+Event type: Birth
+Event date: 1738
+Event location: Bangor, ME, USA
+Event description: Birth of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0516)
+
+Type: event
+Gramps ID: E1828
+Event type: Death
+Event location: Thomasville, Fulton, GA, USA
+Event description: Death of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0516)
+
+Type: event
+Gramps ID: E1829
+Event type: Burial
+Event location: Thomasville, Fulton, GA, USA
+Event description: Burial of Fox, David
+Participant (Primary): David Fox (Gramps ID: I0516)
+
+Type: event
+Gramps ID: E1830
+Event type: Birth
+Event date: 1769-02
+Event description: Birth of Fox, Jacob, Sr.
+Participant (Primary): Jacob, Sr. Fox (Gramps ID: I0518)
+
+Type: event
+Gramps ID: E1831
+Event type: Death
+Event date: 1824-09-03
+Event location: Springfield, MO, USA
+Event description: Death of Fox, Jacob, Sr.
+Participant (Primary): Jacob, Sr. Fox (Gramps ID: I0518)
+
+Type: event
+Gramps ID: E1832
+Event type: Birth
+Event date: 1856-11-26
+Event location: Big Spring, Howard, TX, USA
+Event description: Birth of Reeves, Maria
+Participant (Primary): Maria Reeves (Gramps ID: I0052)
+
+Type: event
+Gramps ID: E1833
+Event type: Death
+Event date: 1929-01-29
+Event location: Worthington, MN, USA
+Event description: Death of Reeves, Maria
+Participant (Primary): Maria Reeves (Gramps ID: I0052)
+
+Type: event
+Gramps ID: E1834
+Event type: Burial
+Event date: 1929-01-31
+Event location: Worthington, MN, USA
+Event description: Burial of Reeves, Maria
+Participant (Primary): Maria Reeves (Gramps ID: I0052)
+
+Type: event
+Gramps ID: E1835
+Event type: Death
+Event date: 1819-10-09
+Event location: Springfield, MO, USA
+Event description: Death of Palmer, Sarah
+Participant (Primary): Sarah Palmer (Gramps ID: I0521)
+
+Type: event
+Gramps ID: E1836
+Event type: Birth
+Event date: 1530
+Event location: Hilo, HI, USA
+Event description: Birth of Christiansen, Christopher
+Participant (Primary): Christopher Christiansen (Gramps ID: I0522)
+
+Type: event
+Gramps ID: E1837
+Event type: Death
+Event date: 1588
+Event location: Elizabeth City, NC, USA
+Event description: Death of Christiansen, Christopher
+Participant (Primary): Christopher Christiansen (Gramps ID: I0522)
+
+Type: event
+Gramps ID: E1838
+Event type: Burial
+Event location: Hilo, HI, USA
+Event description: Burial of Christiansen, Christopher
+Participant (Primary): Christopher Christiansen (Gramps ID: I0522)
+
+Type: event
+Gramps ID: E1839
+Event type: Birth
+Event date: um 1600
+Event location: Durant, OK, USA
+Event description: Birth of Barrett, Anne
+Participant (Primary): Anne Barrett (Gramps ID: I0523)
+
+Type: event
+Gramps ID: E1840
+Event type: Birth
+Event date: um 1580
+Event description: Birth of Thomas, Elder Thomas
+Participant (Primary): Elder Thomas Thomas (Gramps ID: I0524)
+
+Type: event
+Gramps ID: E1841
+Event type: Death
+Event date: 1632
+Event location: Hudson, Columbia, NY, USA
+Event description: Death of Thomas, Elder Thomas
+Participant (Primary): Elder Thomas Thomas (Gramps ID: I0524)
+
+Type: event
+Gramps ID: E1842
+Event type: Birth
+Event date: um 1583
+Event location: Corvallis, OR, USA
+Event description: Birth of Christiansen, Edward
+Participant (Primary): Edward Christiansen (Gramps ID: I0525)
+
+Type: event
+Gramps ID: E1843
+Event type: Death
+Event date: 1614
+Event location: Safford, Graham, AZ, USA
+Event description: Death of Christiansen, Edward
+Participant (Primary): Edward Christiansen (Gramps ID: I0525)
+
+Type: event
+Gramps ID: E1844
+Event type: Burial
+Event location: Hilo, HI, USA
+Event description: Burial of Christiansen, Edward
+Participant (Primary): Edward Christiansen (Gramps ID: I0525)
+
+Type: event
+Gramps ID: E1845
+Event type: Birth
+Event date: 1607
+Event location: Amsterdam, Montgomery, NY, USA
+Event description: Birth of Christiansen, Edward
+Participant (Primary): Edward Christiansen (Gramps ID: I0526)
+
+Type: event
+Gramps ID: E1846
+Event type: Death
+Event date: 1684
+Event location: Lake County, IL, USA
+Event description: Death of Christiansen, Edward
+Participant (Primary): Edward Christiansen (Gramps ID: I0526)
+
+Type: event
+Gramps ID: E1847
+Event type: Birth
+Event date: 1620
+Event location: Ashland, OH, USA
+Event description: Birth of Thomas, Elizabeth
+Participant (Primary): Elizabeth Thomas (Gramps ID: I0527)
+
+Type: event
+Gramps ID: E1848
+Event type: Death
+Event date: 1713
+Event location: Wilmington, New Castle, DE-MD-NJ, USA
+Event description: Death of Thomas, Elizabeth
+Participant (Primary): Elizabeth Thomas (Gramps ID: I0527)
+
+Type: event
+Gramps ID: E1849
+Event type: Birth
+Event date: um 1638
+Event location: Lamesa, Dawson, TX, USA
+Event description: Birth of Grenier, Mary
+Participant (Primary): Mary Grenier (Gramps ID: I0528)
+
+Type: event
+Gramps ID: E1850
+Event type: Death
+Event date: 1703-07-12
+Event location: Poplar Bluff, MO, USA
+Event description: Death of Grenier, Mary
+Participant (Primary): Mary Grenier (Gramps ID: I0528)
+
+Type: event
+Gramps ID: E1851
+Event type: Birth
+Event date: 1642-05-15
+Event location: Plainview, Houston, TX, USA
+Event description: Birth of Christiansen, Nathaniel
+Participant (Primary): Nathaniel Christiansen (Gramps ID: I0529)
+
+Type: event
+Gramps ID: E1852
+Event type: Death
+Event date: 1713-11-21
+Event location: Poplar Bluff, MO, USA
+Event description: Death of Christiansen, Nathaniel
+Participant (Primary): Nathaniel Christiansen (Gramps ID: I0529)
+
+Type: event
+Gramps ID: E1853
+Event type: Birth
+Event date: 1902-07-08
+Event location: Worthington, MN, USA
+Event description: Birth of Reed, Frances Lucille (Babe)
+Participant (Primary): Frances Lucille (Babe) Reed (Gramps ID: I0053)
+
+Type: event
+Gramps ID: E1854
+Event type: Death
+Event date: 1988-08-09
+Event location: Worthington, MN, USA
+Event description: Death of Reed, Frances Lucille (Babe)
+Participant (Primary): Frances Lucille (Babe) Reed (Gramps ID: I0053)
+
+Type: event
+Gramps ID: E1855
+Event type: Burial
+Event date: 1988-08-11
+Event location: Worthington, MN, USA
+Event description: Burial of Reed, Frances Lucille (Babe)
+Participant (Primary): Frances Lucille (Babe) Reed (Gramps ID: I0053)
+
+Type: event
+Gramps ID: E1856
+Event type: Birth
+Event date: 1668
+Event location: Plainview, Houston, TX, USA
+Event description: Birth of Christiansen, Samuel
+Participant (Primary): Samuel Christiansen (Gramps ID: I0530)
+
+Type: event
+Gramps ID: E1857
+Event type: Death
+Event date: 1754-06-25
+Event location: Poplar Bluff, MO, USA
+Event description: Death of Christiansen, Samuel
+Participant (Primary): Samuel Christiansen (Gramps ID: I0530)
+
+Type: event
+Gramps ID: E1858
+Event type: Birth
+Event location: Rocky Mount, NC, USA
+Event description: Birth of Alvarado, Mary
+Participant (Primary): Mary Alvarado (Gramps ID: I0531)
+
+Type: event
+Gramps ID: E1859
+Event type: Death
+Event date: 1760-01-17
+Event location: Poplar Bluff, MO, USA
+Event description: Death of Alvarado, Mary
+Participant (Primary): Mary Alvarado (Gramps ID: I0531)
+
+Type: event
+Gramps ID: E1860
+Event type: Birth
+Event date: 1584-12-20
+Event location: Caguas, PR, USA
+Event description: Birth of Lefebvre, Rev. John L.
+Participant (Primary): Rev. John L. Lefebvre (Gramps ID: I0532)
+
+Type: event
+Gramps ID: E1861
+Event type: Death
+Event date: 1653-11-03
+Event location: Plainview, Houston, TX, USA
+Event description: Death of Lefebvre, Rev. John L.
+Participant (Primary): Rev. John L. Lefebvre (Gramps ID: I0532)
+
+Type: event
+Gramps ID: E1862
+Event type: Birth
+Event location: Winona, MN, USA
+Event description: Birth of Lefebvre, Joseph
+Participant (Primary): Joseph Lefebvre (Gramps ID: I0533)
+
+Type: event
+Gramps ID: E1863
+Event type: Birth
+Event location: Ketchikan, AK, USA
+Event description: Birth of Green, Edward
+Participant (Primary): Edward Green (Gramps ID: I0535)
+
+Type: event
+Gramps ID: E1864
+Event type: Death
+Event date: 1688-07-31
+Event location: Minot, ND, USA
+Event description: Death of Green, Edward
+Participant (Primary): Edward Green (Gramps ID: I0535)
+
+Type: event
+Gramps ID: E1865
+Event type: Birth
+Event date: 1654-03-22
+Event description: Birth of Lefebvre, Mary
+Participant (Primary): Mary Lefebvre (Gramps ID: I0536)
+
+Type: event
+Gramps ID: E1866
+Event type: Birth
+Event date: 1708-06-01
+Event description: Birth of GonzĂĄlez, Elizabeth
+Participant (Primary): Elizabeth GonzĂĄlez (Gramps ID: I0539)
+
+Type: event
+Gramps ID: E1867
+Event type: Birth
+Event date: 1893-12-29
+Event location: Worthington, MN, USA
+Event description: Birth of MarĂn, Walter Matthew
+Participant (Primary): Walter Matthew MarĂn (Gramps ID: I0054)
+
+Type: event
+Gramps ID: E1868
+Event type: Death
+Event date: 1969-01-16
+Event location: Worthington, MN, USA
+Event description: Death of MarĂn, Walter Matthew
+Participant (Primary): Walter Matthew MarĂn (Gramps ID: I0054)
+
+Type: event
+Gramps ID: E1869
+Event type: Burial
+Event date: 1969-01-18
+Event location: Worthington, MN, USA
+Event description: Burial of MarĂn, Walter Matthew
+Participant (Primary): Walter Matthew MarĂn (Gramps ID: I0054)
+
+Type: event
+Gramps ID: E1870
+Event type: Birth
+Event date: 1703
+Event location: Poplar Bluff, MO, USA
+Event description: Birth of Christiansen, Joseph
+Participant (Primary): Joseph Christiansen (Gramps ID: I0540)
+
+Type: event
+Gramps ID: E1871
+Event type: Death
+Event location: Chillicothe, OH, USA
+Event description: Death of Christiansen, Joseph
+Participant (Primary): Joseph Christiansen (Gramps ID: I0540)
+
+Type: event
+Gramps ID: E1872
+Event type: Death
+Event date: 1749-10-25
+Event description: Death of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Christina
+Participant (Primary): Christina ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0541)
+
+Type: event
+Gramps ID: E1873
+Event type: Birth
+Event date: 1685-06-06
+Event location: Bellingham, WA, USA
+Event description: Birth of Green, Edward
+Participant (Primary): Edward Green (Gramps ID: I0542)
+
+Type: event
+Gramps ID: E1874
+Event type: Death
+Event date: 1756-10-20
+Event description: Death of Green, Edward
+Participant (Primary): Edward Green (Gramps ID: I0542)
+
+Type: event
+Gramps ID: E1875
+Event type: Birth
+Event date: 1740-02-23
+Event description: Birth of Mitchell, Mary
+Participant (Primary): Mary Mitchell (Gramps ID: I0543)
+
+Type: event
+Gramps ID: E1876
+Event type: Death
+Event date: 1824-12-28
+Event description: Death of Mitchell, Mary
+Participant (Primary): Mary Mitchell (Gramps ID: I0543)
+
+Type: event
+Gramps ID: E1877
+Event type: Birth
+Event date: 1743-08-09
+Event description: Birth of Davis, Jonathan
+Participant (Primary): Jonathan Davis (Gramps ID: I0544)
+
+Type: event
+Gramps ID: E1878
+Event type: Death
+Event date: 1824-12-28
+Event description: Death of Davis, Jonathan
+Participant (Primary): Jonathan Davis (Gramps ID: I0544)
+
+Type: event
+Gramps ID: E1879
+Event type: Death
+Event date: 1796-07-06
+Event description: Death of Christiansen, Frances
+Participant (Primary): Frances Christiansen (Gramps ID: I0545)
+
+Type: event
+Gramps ID: E1880
+Event type: Birth
+Event date: 1739-04-07
+Event location: Minot, ND, USA
+Event description: Birth of Green, James
+Participant (Primary): James Green (Gramps ID: I0546)
+
+Type: event
+Gramps ID: E1881
+Event type: Death
+Event date: 1805-11-28
+Event description: Death of Green, James
+Participant (Primary): James Green (Gramps ID: I0546)
+
+Type: event
+Gramps ID: E1882
+Event type: Birth
+Event date: 1768-03-17
+Event description: Birth of Green, Randolph
+Participant (Primary): Randolph Green (Gramps ID: I0547)
+
+Type: event
+Gramps ID: E1883
+Event type: Death
+Event date: 1838-03-17
+Event location: Keene, NH, USA
+Event description: Death of Green, Randolph
+Participant (Primary): Randolph Green (Gramps ID: I0547)
+
+Type: event
+Gramps ID: E1884
+Event type: Burial
+Event location: Keene, NH, USA
+Event description: Burial of Green, Randolph
+Participant (Primary): Randolph Green (Gramps ID: I0547)
+
+Type: event
+Gramps ID: E1885
+Event type: Birth
+Event date: 1762-09-06
+Event description: Birth of Davis, Sabra
+Participant (Primary): Sabra Davis (Gramps ID: I0548)
+
+Type: event
+Gramps ID: E1886
+Event type: Death
+Event date: 1845-11-01
+Event location: Keene, NH, USA
+Event description: Death of Davis, Sabra
+Participant (Primary): Sabra Davis (Gramps ID: I0548)
+
+Type: event
+Gramps ID: E1887
+Event type: Burial
+Event location: Keene, NH, USA
+Event description: Burial of Davis, Sabra
+Participant (Primary): Sabra Davis (Gramps ID: I0548)
+
+Type: event
+Gramps ID: E1888
+Event type: Death
+Event location: Guayama, PR, USA
+Event description: Death of Burns, Jonathan
+Participant (Primary): Jonathan Burns (Gramps ID: I0549)
+
+Type: event
+Gramps ID: E1889
+Event type: Birth
+Event date: 1890-02-17
+Event location: Worthington, MN, USA
+Event description: Birth of Boucher, Mary Cecilia
+Participant (Primary): Mary Cecilia Boucher (Gramps ID: I0055)
+
+Type: event
+Gramps ID: E1890
+Event type: Death
+Event date: 1945-06-03
+Event location: Worthington, MN, USA
+Event description: Death of Boucher, Mary Cecilia
+Participant (Primary): Mary Cecilia Boucher (Gramps ID: I0055)
+
+Type: event
+Gramps ID: E1891
+Event type: Burial
+Event date: 1945-06-05
+Event location: Worthington, MN, USA
+Event description: Burial of Boucher, Mary Cecilia
+Participant (Primary): Mary Cecilia Boucher (Gramps ID: I0055)
+
+Type: event
+Gramps ID: E1892
+Event type: Death
+Event location: Huntsville, Madison, AL, USA
+Event description: Death of Rubio, Dorcas
+Participant (Primary): Dorcas Rubio (Gramps ID: I0550)
+
+Type: event
+Gramps ID: E1893
+Event type: Birth
+Event location: Ketchikan, AK, USA
+Event description: Birth of Adkins, Robert Sr.
+Participant (Primary): Robert Sr. Adkins (Gramps ID: I0551)
+
+Type: event
+Gramps ID: E1894
+Event type: Birth
+Event date: nach 1737-10-01
+Event location: Maryville, MO, USA
+Event description: Birth of Adkins, John
+Participant (Primary): John Adkins (Gramps ID: I0553)
+
+Type: event
+Gramps ID: E1895
+Event type: Death
+Event date: 1787-05-20
+Event location: Wooster, OH, USA
+Event description: Death of Adkins, John
+Participant (Primary): John Adkins (Gramps ID: I0553)
+
+Type: event
+Gramps ID: E1896
+Event type: Birth
+Event date: zwischen 1746 und 1755
+Event location: Plattsburgh, Clinton, NY, USA
+Event description: Birth of Adams, Jane
+Participant (Primary): Jane Adams (Gramps ID: I0554)
+
+Type: event
+Gramps ID: E1897
+Event type: Death
+Event date: geschÀtzt von 1800 bis 1805
+Event location: Jefferson City, MO, USA
+Event description: Death of Adams, Jane
+Participant (Primary): Jane Adams (Gramps ID: I0554)
+
+Type: event
+Gramps ID: E1898
+Event type: Birth
+Event location: Eagle Pass, Maverick, TX, USA
+Event description: Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+Participant (Primary): Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0555)
+
+Type: event
+Gramps ID: E1899
+Event type: Death
+Event date: 1771
+Event location: St, FL, USA
+Event description: Death of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+Participant (Primary): Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0555)
+
+Type: event
+Gramps ID: E1900
+Event type: Burial
+Event location: Ponce, PR, USA
+Event description: Burial of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph
+Participant (Primary): Col. Joseph ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0555)
+
+Type: event
+Gramps ID: E1901
+Event type: Birth
+Event date: 1723
+Event location: Arkadelphia, Clark, AR, USA
+Event description: Birth of Rice, Virginia Margaret
+Participant (Primary): Virginia Margaret Rice (Gramps ID: I0557)
+
+Type: event
+Gramps ID: E1902
+Event type: Death
+Event date: 1780
+Event location: Lafayette, Lafayette, LA, USA
+Event description: Death of Rice, Virginia Margaret
+Participant (Primary): Virginia Margaret Rice (Gramps ID: I0557)
+
+Type: event
+Gramps ID: E1903
+Event type: Burial
+Event location: Lafayette, Lafayette, LA, USA
+Event description: Burial of Rice, Virginia Margaret
+Participant (Primary): Virginia Margaret Rice (Gramps ID: I0557)
+
+Type: event
+Gramps ID: E1904
+Event type: Birth
+Event location: Mooresville, NC, USA
+Event description: Birth of Ball, Ezekiel
+Participant (Primary): Ezekiel Ball (Gramps ID: I0558)
+
+Type: event
+Gramps ID: E1905
+Event type: Death
+Event location: Mooresville, NC, USA
+Event description: Death of Ball, Ezekiel
+Participant (Primary): Ezekiel Ball (Gramps ID: I0558)
+
+Type: event
+Gramps ID: E1906
+Event type: Birth
+Event date: vor 1763-06-20
+Event location: Shelton, WA, USA
+Event description: Birth of Adkins, Martha
+Participant (Primary): Martha Adkins (Gramps ID: I0559)
+
+Type: event
+Gramps ID: E1907
+Event type: Death
+Event date: 1828-09-05
+Event location: Jefferson City, MO, USA
+Event description: Death of Adkins, Martha
+Participant (Primary): Martha Adkins (Gramps ID: I0559)
+
+Type: event
+Gramps ID: E1908
+Event type: Burial
+Event location: Jefferson City, MO, USA
+Event description: Burial of Adkins, Martha
+Participant (Primary): Martha Adkins (Gramps ID: I0559)
+
+Type: event
+Gramps ID: E1909
+Event type: Death
+Event location: Campbellsville, Taylor, KY, USA
+Event description: Death of Moreno, Herman
+Participant (Primary): Herman Moreno (Gramps ID: I0056)
+
+Type: event
+Gramps ID: E1910
+Event type: Birth
+Event date: 1756-02-15
+Event location: Moultrie, Colquitt, GA, USA
+Event description: Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr.
+Participant (Primary): Joseph Jr. ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0560)
+
+Type: event
+Gramps ID: E1911
+Event type: Death
+Event date: 1801-08-11
+Event location: Altus, OK, USA
+Event description: Death of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr.
+Participant (Primary): Joseph Jr. ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0560)
+
+Type: event
+Gramps ID: E1912
+Event type: Birth
+Event location: Mexico, MO, USA
+Event description: Birth of Bass, Mary
+Participant (Primary): Mary Bass (Gramps ID: I0561)
+
+Type: event
+Gramps ID: E1913
+Event type: Death
+Event date: 1823-10-04
+Event location: Santa Fe, NM, USA
+Event description: Death of Bass, Mary
+Participant (Primary): Mary Bass (Gramps ID: I0561)
+
+Type: event
+Gramps ID: E1914
+Event type: Birth
+Event date: 1734-09-04
+Event description: Birth of КаЎŃĐžĐœ, Mary
+Participant (Primary): Mary КаЎŃĐžĐœ (Gramps ID: I0564)
+
+Type: event
+Gramps ID: E1915
+Event type: Birth
+Event date: 1728-04-18
+Event location: Mooresville, NC, USA
+Event description: Birth of Ball, Thomas
+Participant (Primary): Thomas Ball (Gramps ID: I0565)
+
+Type: event
+Gramps ID: E1916
+Event type: Birth
+Event date: 1790-01-29
+Event location: Searcy, White, AR, USA
+Event description: Birth of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Participant (Primary): Martha ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0566)
+
+Type: event
+Gramps ID: E1917
+Event type: Death
+Event date: 1849-06-27
+Event description: Death of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Participant (Primary): Martha ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0566)
+
+Type: event
+Gramps ID: E1918
+Event type: Burial
+Event date: 1849-06-29
+Event location: Payson, Gila, AZ, USA
+Event description: Burial of ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Participant (Primary): Martha ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0566)
+
+Type: event
+Gramps ID: E1919
+Event type: Birth
+Event date: 1767-03-11
+Event location: Chillicothe, OH, USA
+Event description: Birth of Ball, Matthias Sr.
+Participant (Primary): Matthias Sr. Ball (Gramps ID: I0568)
+
+Type: event
+Gramps ID: E1920
+Event type: Death
+Event date: 1848-01-22
+Event location: New Philadelphia, OH, USA
+Event description: Death of Ball, Matthias Sr.
+Participant (Primary): Matthias Sr. Ball (Gramps ID: I0568)
+
+Type: event
+Gramps ID: E1921
+Event type: Birth
+Event date: 1786-05-11
+Event location: Lawrenceburg, TN, USA
+Event description: Birth of Hopkins, Joseph
+Participant (Primary): Joseph Hopkins (Gramps ID: I0569)
+
+Type: event
+Gramps ID: E1922
+Event type: Death
+Event location: Sandusky, OH, USA
+Event description: Death of Hopkins, Joseph
+Participant (Primary): Joseph Hopkins (Gramps ID: I0569)
+
+Type: event
+Gramps ID: E1923
+Event type: Birth
+Event location: McComb, MS, USA
+Event description: Birth of Moreno, Johann Henrich
+Participant (Primary): Johann Henrich Moreno (Gramps ID: I0057)
+
+Type: event
+Gramps ID: E1924
+Event type: Death
+Event location: Campbellsville, Taylor, KY, USA
+Event description: Death of Moreno, Johann Henrich
+Participant (Primary): Johann Henrich Moreno (Gramps ID: I0057)
+
+Type: event
+Gramps ID: E1925
+Event type: Birth
+Event date: 1785-03-31
+Event description: Birth of Clark, Sarah
+Participant (Primary): Sarah Clark (Gramps ID: I0570)
+
+Type: event
+Gramps ID: E1926
+Event type: Birth
+Event location: Albany, Dougherty, GA, USA
+Event description: Birth of Douglas, Hans Peter
+Participant (Primary): Hans Peter Douglas (Gramps ID: I0573)
+
+Type: event
+Gramps ID: E1927
+Event type: Death
+Event location: Terre Haute, Vigo, IN, USA
+Event description: Death of Douglas, Hans Peter
+Participant (Primary): Hans Peter Douglas (Gramps ID: I0573)
+
+Type: event
+Gramps ID: E1928
+Event type: Burial
+Event location: Fort Valley, Peach, GA, USA
+Event description: Burial of Douglas, Hans Peter
+Participant (Primary): Hans Peter Douglas (Gramps ID: I0573)
+
+Type: event
+Gramps ID: E1929
+Event type: Birth
+Event date: 1739-11-25
+Event location: Colorado Springs, El Paso, CO, USA
+Event description: Birth of Douglas, John Sr.
+Participant (Primary): John Sr. Douglas (Gramps ID: I0574)
+
+Type: event
+Gramps ID: E1930
+Event type: Death
+Event date: 1821-10
+Event location: Selinsgrove, PA, USA
+Event description: Death of Douglas, John Sr.
+Participant (Primary): John Sr. Douglas (Gramps ID: I0574)
+
+Type: event
+Gramps ID: E1931
+Event type: Burial
+Event location: Yakima, WA, USA
+Event description: Burial of Douglas, John Sr.
+Participant (Primary): John Sr. Douglas (Gramps ID: I0574)
+
+Type: event
+Gramps ID: E1932
+Event type: Birth
+Event location: Miami, Miami-Dade, FL, USA
+Event description: Birth of Moran, Andrew
+Participant (Primary): Andrew Moran (Gramps ID: I0575)
+
+Type: event
+Gramps ID: E1933
+Event type: Death
+Event location: Manhattan, Riley, KS, USA
+Event description: Death of Moran, Andrew
+Participant (Primary): Andrew Moran (Gramps ID: I0575)
+
+Type: event
+Gramps ID: E1934
+Event type: Burial
+Event location: Madison, Jefferson, IN, USA
+Event description: Burial of Moran, Andrew
+Participant (Primary): Andrew Moran (Gramps ID: I0575)
+
+Type: event
+Gramps ID: E1935
+Event type: Birth
+Event location: Homosassa Springs, Citrus, FL, USA
+Event description: Birth of Moran, Ann Delilah "Tilley"
+Participant (Primary): Ann Delilah "Tilley" Moran (Gramps ID: I0576)
+
+Type: event
+Gramps ID: E1936
+Event type: Death
+Event date: 1801
+Event location: Las Cruces, NM, USA
+Event description: Death of Moran, Ann Delilah "Tilley"
+Participant (Primary): Ann Delilah "Tilley" Moran (Gramps ID: I0576)
+
+Type: event
+Gramps ID: E1937
+Event type: Birth
+Event date: um 1761
+Event location: Bogalusa, Washington, LA, USA
+Event description: Birth of Douglas, John Jr.
+Participant (Primary): John Jr. Douglas (Gramps ID: I0577)
+
+Type: event
+Gramps ID: E1938
+Event type: Death
+Event location: Rome, Floyd, GA, USA
+Event description: Death of Douglas, John Jr.
+Participant (Primary): John Jr. Douglas (Gramps ID: I0577)
+
+Type: event
+Gramps ID: E1939
+Event type: Birth
+Event date: 1693
+Event location: Kinston, NC, USA
+Event description: Birth of Moreno, Christian, I
+Participant (Primary): Christian, I Moreno (Gramps ID: I0058)
+
+Type: event
+Gramps ID: E1940
+Event type: Death
+Event date: 1772-04-16
+Event location: Spencer, Clay, IA, USA
+Event description: Death of Moreno, Christian, I
+Participant (Primary): Christian, I Moreno (Gramps ID: I0058)
+
+Type: event
+Gramps ID: E1941
+Event type: Burial
+Event location: La Grande, OR, USA
+Event description: Burial of Moreno, Christian, I
+Participant (Primary): Christian, I Moreno (Gramps ID: I0058)
+
+Type: event
+Gramps ID: E1942
+Event type: Birth
+Event date: 1887-06-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Mary Elizabeth
+Participant (Primary): Mary Elizabeth Kristensen (Gramps ID: I0580)
+
+Type: event
+Gramps ID: E1943
+Event type: Death
+Event date: 1918-10-22
+Event description: Death of Kristensen, Mary Elizabeth
+Participant (Primary): Mary Elizabeth Kristensen (Gramps ID: I0580)
+
+Type: event
+Gramps ID: E1944
+Event type: Death
+Event date: 1957-04-24
+Event description: Death of Pope, John
+Participant (Primary): John Pope (Gramps ID: I0581)
+
+Type: event
+Gramps ID: E1945
+Event type: Birth
+Event date: 1885-06-25
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Sarah "Sr. Sabina"
+Participant (Primary): Sarah "Sr. Sabina" Kristensen (Gramps ID: I0582)
+
+Type: event
+Gramps ID: E1946
+Event type: Death
+Event date: 1926-01-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Kristensen, Sarah "Sr. Sabina"
+Participant (Primary): Sarah "Sr. Sabina" Kristensen (Gramps ID: I0582)
+
+Type: event
+Gramps ID: E1947
+Event type: Burial
+Event date: 1926-01-05
+Event location: Lexington, NC, USA
+Event description: Burial of Kristensen, Sarah "Sr. Sabina"
+Participant (Primary): Sarah "Sr. Sabina" Kristensen (Gramps ID: I0582)
+
+Type: event
+Gramps ID: E1948
+Event type: Birth
+Event date: 1892-02-22
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Catherine Virginia
+Participant (Primary): Catherine Virginia Kristensen (Gramps ID: I0583)
+
+Type: event
+Gramps ID: E1949
+Event type: Death
+Event date: 1926-03-01
+Event description: Death of Kristensen, Catherine Virginia
+Participant (Primary): Catherine Virginia Kristensen (Gramps ID: I0583)
+
+Type: event
+Gramps ID: E1950
+Event type: Birth
+Event date: 1889-10-10
+Event description: Birth of Kristensen, John Francis"Chick"
+Participant (Primary): John Francis"Chick" Kristensen (Gramps ID: I0585)
+
+Type: event
+Gramps ID: E1951
+Event type: Death
+Event date: 1938-10-23
+Event description: Death of Kristensen, John Francis"Chick"
+Participant (Primary): John Francis"Chick" Kristensen (Gramps ID: I0585)
+
+Type: event
+Gramps ID: E1952
+Event type: Birth
+Event date: 1897-01-01
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Miles Joseph"Dutch"
+Participant (Primary): Miles Joseph"Dutch" Kristensen (Gramps ID: I0586)
+
+Type: event
+Gramps ID: E1953
+Event type: Death
+Event date: 1971-10-19
+Event location: Athens, Clarke, GA, USA
+Event description: Death of Kristensen, Miles Joseph"Dutch"
+Participant (Primary): Miles Joseph"Dutch" Kristensen (Gramps ID: I0586)
+
+Type: event
+Gramps ID: E1954
+Event type: Burial
+Event date: 1971-10-21
+Event location: Cape Coral-Fort Myers, FL, USA
+Event description: Burial of Kristensen, Miles Joseph"Dutch"
+Participant (Primary): Miles Joseph"Dutch" Kristensen (Gramps ID: I0586)
+
+Type: event
+Gramps ID: E1955
+Event type: Birth
+Event date: 1894-12-02
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Margaret Agnes"Maudy"
+Participant (Primary): Margaret Agnes"Maudy" Kristensen (Gramps ID: I0587)
+
+Type: event
+Gramps ID: E1956
+Event type: Death
+Event date: 1974-07-21
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Kristensen, Margaret Agnes"Maudy"
+Participant (Primary): Margaret Agnes"Maudy" Kristensen (Gramps ID: I0587)
+
+Type: event
+Gramps ID: E1957
+Event type: Burial
+Event date: 1974-07-23
+Event location: Lexington, NC, USA
+Event description: Burial of Kristensen, Margaret Agnes"Maudy"
+Participant (Primary): Margaret Agnes"Maudy" Kristensen (Gramps ID: I0587)
+
+Type: event
+Gramps ID: E1958
+Event type: Birth
+Event date: 1899-09-19
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Kristensen, Anna June
+Participant (Primary): Anna June Kristensen (Gramps ID: I0589)
+
+Type: event
+Gramps ID: E1959
+Event type: Death
+Event date: 1988-11-17
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Kristensen, Anna June
+Participant (Primary): Anna June Kristensen (Gramps ID: I0589)
+
+Type: event
+Gramps ID: E1960
+Event type: Burial
+Event date: 1988-11-19
+Event location: Lexington, NC, USA
+Event description: Burial of Kristensen, Anna June
+Participant (Primary): Anna June Kristensen (Gramps ID: I0589)
+
+Type: event
+Gramps ID: E1961
+Event type: Birth
+Event date: 1726-11-15
+Event location: Albany, Dougherty, GA, USA
+Event description: Birth of Moreno, Johann Christian II
+Participant (Primary): Johann Christian II Moreno (Gramps ID: I0059)
+
+Type: event
+Gramps ID: E1962
+Event type: Death
+Event date: 1797-12-10
+Event location: Harriman, TN, USA
+Event description: Death of Moreno, Johann Christian II
+Participant (Primary): Johann Christian II Moreno (Gramps ID: I0059)
+
+Type: event
+Gramps ID: E1963
+Event type: Burial
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Rhodes, William Sr.
+Participant (Primary): William Sr. Rhodes (Gramps ID: I0590)
+
+Type: event
+Gramps ID: E1964
+Event type: Birth
+Event date: 1968-02-15
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Russell, Beth Ann
+Participant (Primary): Beth Ann Russell (Gramps ID: I0591)
+
+Type: event
+Gramps ID: E1965
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Beth Ann Russell (Gramps ID: I0591)
+
+Type: event
+Gramps ID: E1966
+Event type: Birth
+Event date: 1940-09-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Manning, Judith Ann
+Participant (Primary): Judith Ann Manning (Gramps ID: I0592)
+
+Type: event
+Gramps ID: E1967
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Judith Ann Manning (Gramps ID: I0592)
+
+Type: event
+Gramps ID: E1968
+Event type: Birth
+Event date: 1964-12-12
+Event description: Birth of CÎté, Raymond Patrick
+Participant (Primary): Raymond Patrick CÎté (Gramps ID: I0593)
+
+Type: event
+Gramps ID: E1969
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Raymond Patrick CÎté (Gramps ID: I0593)
+
+Type: event
+Gramps ID: E1970
+Event type: Birth
+Event date: 1964-12-28
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Russell, Bruce Lynn
+Participant (Primary): Bruce Lynn Russell (Gramps ID: I0594)
+
+Type: event
+Gramps ID: E1971
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bruce Lynn Russell (Gramps ID: I0594)
+
+Type: event
+Gramps ID: E1972
+Event type: Birth
+Event date: 1785-08-08
+Event location: Manhattan, Riley, KS, USA
+Event description: Birth of Rodriquez, William M.
+Participant (Primary): William M. Rodriquez (Gramps ID: I0597)
+
+Type: event
+Gramps ID: E1973
+Event type: Death
+Event location: Juneau, AK, USA
+Event description: Death of Rodriquez, William M.
+Participant (Primary): William M. Rodriquez (Gramps ID: I0597)
+
+Type: event
+Gramps ID: E1974
+Event type: Burial
+Event location: San GermĂĄn, PR, USA
+Event description: Burial of Rodriquez, William M.
+Participant (Primary): William M. Rodriquez (Gramps ID: I0597)
+
+Type: event
+Gramps ID: E1975
+Event type: Birth
+Event date: 1814-05-14
+Event location: Santa Isabel, PR, USA
+Event description: Birth of Rodriquez, Mariam
+Participant (Primary): Mariam Rodriquez (Gramps ID: I0598)
+
+Type: event
+Gramps ID: E1976
+Event type: Death
+Event date: 1900-08-31
+Event location: Billings, MT, USA
+Event description: Death of Rodriquez, Mariam
+Participant (Primary): Mariam Rodriquez (Gramps ID: I0598)
+
+Type: event
+Gramps ID: E1977
+Event type: Burial
+Event date: 1900-09-02
+Event location: Grants Pass, OR, USA
+Event description: Burial of Rodriquez, Mariam
+Participant (Primary): Mariam Rodriquez (Gramps ID: I0598)
+
+Type: event
+Gramps ID: E1978
+Event type: Birth
+Event date: 20
+Event location: Cambridge, MD, USA
+Event description: Birth of Blanco, Rufus
+Participant (Primary): Rufus Blanco (Gramps ID: I0599)
+
+Type: event
+Gramps ID: E1979
+Event type: Death
+Event date: 1866-11-04
+Event location: Billings, MT, USA
+Event description: Death of Blanco, Rufus
+Participant (Primary): Rufus Blanco (Gramps ID: I0599)
+
+Type: event
+Gramps ID: E1980
+Event type: Burial
+Event date: 1866-11-06
+Event location: San Juan, PR, USA
+Event description: Burial of Blanco, Rufus
+Participant (Primary): Rufus Blanco (Gramps ID: I0599)
+
+Type: event
+Gramps ID: E1981
+Event type: Birth
+Event date: 1952-09-07
+Event location: Worthington, MN, USA
+Event description: Birth of Garner, Rita Marie
+Participant (Primary): Rita Marie Garner (Gramps ID: I0006)
+
+Type: event
+Gramps ID: E1982
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rita Marie Garner (Gramps ID: I0006)
+
+Type: event
+Gramps ID: E1983
+Event type: Birth
+Event date: 1752-11-23
+Event location: Roanoke Rapids, NC, USA
+Event description: Birth of Moreno, Maj. Christopher
+Participant (Primary): Maj. Christopher Moreno (Gramps ID: I0060)
+
+Type: event
+Gramps ID: E1984
+Event type: Death
+Event date: 1823-09-14
+Event location: Santa Fe, NM, USA
+Event description: Death of Moreno, Maj. Christopher
+Participant (Primary): Maj. Christopher Moreno (Gramps ID: I0060)
+
+Type: event
+Gramps ID: E1985
+Event type: Birth
+Event location: Kapaa, HI, USA
+Event description: Birth of Meyer, P.D.
+Participant (Primary): P.D. Meyer (Gramps ID: I0600)
+
+Type: event
+Gramps ID: E1986
+Event type: Death
+Event location: Kapaa, HI, USA
+Event description: Death of Meyer, P.D.
+Participant (Primary): P.D. Meyer (Gramps ID: I0600)
+
+Type: event
+Gramps ID: E1987
+Event type: Burial
+Event location: Kapaa, HI, USA
+Event description: Burial of Meyer, P.D.
+Participant (Primary): P.D. Meyer (Gramps ID: I0600)
+
+Type: event
+Gramps ID: E1988
+Event type: Birth
+Event location: Toccoa, Stephens, GA, USA
+Event description: Birth of Reeves, John
+Participant (Primary): John Reeves (Gramps ID: I0601)
+
+Type: event
+Gramps ID: E1989
+Event type: Death
+Event location: Lewiston, ME, USA
+Event description: Death of Reeves, John
+Participant (Primary): John Reeves (Gramps ID: I0601)
+
+Type: event
+Gramps ID: E1990
+Event type: Burial
+Event location: Sturgis, MI, USA
+Event description: Burial of Reeves, John
+Participant (Primary): John Reeves (Gramps ID: I0601)
+
+Type: event
+Gramps ID: E1991
+Event type: Birth
+Event location: Malone, Franklin, NY, USA
+Event description: Birth of McCarthy, Mary
+Participant (Primary): Mary McCarthy (Gramps ID: I0602)
+
+Type: event
+Gramps ID: E1992
+Event type: Death
+Event location: Los Angeles, Los Angeles, CA, USA
+Event description: Death of McCarthy, Mary
+Participant (Primary): Mary McCarthy (Gramps ID: I0602)
+
+Type: event
+Gramps ID: E1993
+Event type: Burial
+Event location: Sturgis, MI, USA
+Event description: Burial of McCarthy, Mary
+Participant (Primary): Mary McCarthy (Gramps ID: I0602)
+
+Type: event
+Gramps ID: E1994
+Event type: Death
+Event location: Coamo, PR, USA
+Event description: Death of Johnson, Elizabeth
+Participant (Primary): Elizabeth Johnson (Gramps ID: I0603)
+
+Type: event
+Gramps ID: E1995
+Event type: Birth
+Event date: 1787-09-07
+Event location: Sterling, Logan, CO, USA
+Event description: Birth of Douglas, Joseph
+Participant (Primary): Joseph Douglas (Gramps ID: I0604)
+
+Type: event
+Gramps ID: E1996
+Event type: Death
+Event date: 1857-03-09
+Event location: Marshall, MN, USA
+Event description: Death of Douglas, Joseph
+Participant (Primary): Joseph Douglas (Gramps ID: I0604)
+
+Type: event
+Gramps ID: E1997
+Event type: Burial
+Event date: 1857-03-11
+Event location: Marshall, Harrison, TX, USA
+Event description: Burial of Douglas, Joseph
+Participant (Primary): Joseph Douglas (Gramps ID: I0604)
+
+Type: event
+Gramps ID: E1998
+Event type: Birth
+Event date: 1742
+Event location: Lock Haven, PA, USA
+Event description: Birth of Carroll, Matthias Sr.
+Participant (Primary): Matthias Sr. Carroll (Gramps ID: I0605)
+
+Type: event
+Gramps ID: E1999
+Event type: Death
+Event date: 1817
+Event location: Merced, Merced, CA, USA
+Event description: Death of Carroll, Matthias Sr.
+Participant (Primary): Matthias Sr. Carroll (Gramps ID: I0605)
+
+Type: event
+Gramps ID: E2000
+Event type: Birth
+Event date: 1791-12-20
+Event location: City of The Dalles, OR, USA
+Event description: Birth of Carroll, Grace
+Participant (Primary): Grace Carroll (Gramps ID: I0607)
+
+Type: event
+Gramps ID: E2001
+Event type: Death
+Event date: 1863-02-01
+Event location: Marshall, MN, USA
+Event description: Death of Carroll, Grace
+Participant (Primary): Grace Carroll (Gramps ID: I0607)
+
+Type: event
+Gramps ID: E2002
+Event type: Burial
+Event date: 1863-02-03
+Event location: Marshall, Harrison, TX, USA
+Event description: Burial of Carroll, Grace
+Participant (Primary): Grace Carroll (Gramps ID: I0607)
+
+Type: event
+Gramps ID: E2003
+Event type: Birth
+Event location: Orangeburg, SC, USA
+Event description: Birth of Alvarado, Cadwallader
+Participant (Primary): Cadwallader Alvarado (Gramps ID: I0608)
+
+Type: event
+Gramps ID: E2004
+Event type: Death
+Event location: Clarksdale, MS, USA
+Event description: Death of Alvarado, Cadwallader
+Participant (Primary): Cadwallader Alvarado (Gramps ID: I0608)
+
+Type: event
+Gramps ID: E2005
+Event type: Birth
+Event location: Magnolia, Columbia, AR, USA
+Event description: Birth of Mendez, Martha
+Participant (Primary): Martha Mendez (Gramps ID: I0609)
+
+Type: event
+Gramps ID: E2006
+Event type: Death
+Event location: Marshall, Harrison, TX, USA
+Event description: Death of Mendez, Martha
+Participant (Primary): Martha Mendez (Gramps ID: I0609)
+
+Type: event
+Gramps ID: E2007
+Event type: Burial
+Event location: Forrest City, St. Francis, AR, USA
+Event description: Burial of Mendez, Martha
+Participant (Primary): Martha Mendez (Gramps ID: I0609)
+
+Type: event
+Gramps ID: E2008
+Event type: Birth
+Event date: 1784-02-05
+Event location: Harriman, TN, USA
+Event description: Birth of Moreno, Aaron
+Participant (Primary): Aaron Moreno (Gramps ID: I0061)
+
+Type: event
+Gramps ID: E2009
+Event type: Death
+Event date: 1846-02-18
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Moreno, Aaron
+Participant (Primary): Aaron Moreno (Gramps ID: I0061)
+
+Type: event
+Gramps ID: E2010
+Event type: Burial
+Event date: 1846-02-20
+Event location: Fairbanks, AK, USA
+Event description: Burial of Moreno, Aaron
+Participant (Primary): Aaron Moreno (Gramps ID: I0061)
+
+Type: event
+Gramps ID: E2011
+Event type: Birth
+Event location: Rockford, Winnebago, IL, USA
+Event description: Birth of Oliver, Harmonas I
+Participant (Primary): Harmonas I Oliver (Gramps ID: I0611)
+
+Type: event
+Gramps ID: E2012
+Event type: Death
+Event location: Napa, Napa, CA, USA
+Event description: Death of Oliver, Harmonas I
+Participant (Primary): Harmonas I Oliver (Gramps ID: I0611)
+
+Type: event
+Gramps ID: E2013
+Event type: Burial
+Event location: Napa, Napa, CA, USA
+Event description: Burial of Oliver, Harmonas I
+Participant (Primary): Harmonas I Oliver (Gramps ID: I0611)
+
+Type: event
+Gramps ID: E2014
+Event type: Death
+Event location: Napa, Napa, CA, USA
+Event description: Death of Oliver, Harmonas II
+Participant (Primary): Harmonas II Oliver (Gramps ID: I0612)
+
+Type: event
+Gramps ID: E2015
+Event type: Birth
+Event location: Texarkana, Miller, AR, USA
+Event description: Birth of Oliver, Elizabeth
+Participant (Primary): Elizabeth Oliver (Gramps ID: I0613)
+
+Type: event
+Gramps ID: E2016
+Event type: Death
+Event location: Clinton, Clinton, IA, USA
+Event description: Death of Oliver, Elizabeth
+Participant (Primary): Elizabeth Oliver (Gramps ID: I0613)
+
+Type: event
+Gramps ID: E2017
+Event type: Death
+Event date: 1795
+Event location: Pottsville, PA, USA
+Event description: Death of Morris, Adam
+Participant (Primary): Adam Morris (Gramps ID: I0614)
+
+Type: event
+Gramps ID: E2018
+Event type: Birth
+Event date: 20
+Event location: Roanoke, VA, USA
+Event description: Birth of Morris, Cyrus
+Participant (Primary): Cyrus Morris (Gramps ID: I0615)
+
+Type: event
+Gramps ID: E2019
+Event type: Death
+Event date: 1852-08-10
+Event location: Silver City, NM, USA
+Event description: Death of Morris, Cyrus
+Participant (Primary): Cyrus Morris (Gramps ID: I0615)
+
+Type: event
+Gramps ID: E2020
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of Morris, Cyrus
+Participant (Primary): Cyrus Morris (Gramps ID: I0615)
+
+Type: event
+Gramps ID: E2021
+Event type: Birth
+Event date: 1798-08-16
+Event location: Lock Haven, PA, USA
+Event description: Birth of Graves, Martha
+Participant (Primary): Martha Graves (Gramps ID: I0616)
+
+Type: event
+Gramps ID: E2022
+Event type: Death
+Event date: 1862-12-12
+Event location: Fort Walton Beach, Okaloosa, FL, USA
+Event description: Death of Graves, Martha
+Participant (Primary): Martha Graves (Gramps ID: I0616)
+
+Type: event
+Gramps ID: E2023
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of Graves, Martha
+Participant (Primary): Martha Graves (Gramps ID: I0616)
+
+Type: event
+Gramps ID: E2024
+Event type: Birth
+Event date: 1965-05-08
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Henderson, Cathy Sue
+Participant (Primary): Cathy Sue Henderson (Gramps ID: I0617)
+
+Type: event
+Gramps ID: E2025
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cathy Sue Henderson (Gramps ID: I0617)
+
+Type: event
+Gramps ID: E2026
+Event type: Birth
+Event date: 1987-04-03
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Russell, Nicholas Glen
+Participant (Primary): Nicholas Glen Russell (Gramps ID: I0618)
+
+Type: event
+Gramps ID: E2027
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nicholas Glen Russell (Gramps ID: I0618)
+
+Type: event
+Gramps ID: E2028
+Event type: Birth
+Event date: 1990-03-16
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Russell, Casey John
+Participant (Primary): Casey John Russell (Gramps ID: I0619)
+
+Type: event
+Gramps ID: E2029
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Casey John Russell (Gramps ID: I0619)
+
+Type: event
+Gramps ID: E2030
+Event type: Birth
+Event location: Muncie, Delaware, IN, USA
+Event description: Birth of Page, John
+Participant (Primary): John Page (Gramps ID: I0062)
+
+Type: event
+Gramps ID: E2031
+Event type: Death
+Event location: Point Pleasant, WV, USA
+Event description: Death of Page, John
+Participant (Primary): John Page (Gramps ID: I0062)
+
+Type: event
+Gramps ID: E2032
+Event type: Burial
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Page, John
+Participant (Primary): John Page (Gramps ID: I0062)
+
+Type: event
+Gramps ID: E2033
+Event type: Birth
+Event location: Silverthorne, Summit, CO, USA
+Event description: Birth of ĐŃĐșĐŸĐČ, Scott
+Participant (Primary): Scott ĐŃĐșĐŸĐČ (Gramps ID: I0620)
+
+Type: event
+Gramps ID: E2034
+Event type: Birth
+Event location: Silverthorne, Summit, CO, USA
+Event description: Birth of ĐŃĐșĐŸĐČ, Curtis Dale
+Participant (Primary): Curtis Dale ĐŃĐșĐŸĐČ (Gramps ID: I0621)
+
+Type: event
+Gramps ID: E2035
+Event type: Birth
+Event date: 1894-09-27
+Event description: Birth of Davidson, Bernice
+Participant (Primary): Bernice Davidson (Gramps ID: I0622)
+
+Type: event
+Gramps ID: E2036
+Event type: Death
+Event date: 1980-05-24
+Event description: Death of Davidson, Bernice
+Participant (Primary): Bernice Davidson (Gramps ID: I0622)
+
+Type: event
+Gramps ID: E2037
+Event type: Birth
+Event date: 1876-06-18
+Event location: Paragould, Greene, AR, USA
+Event description: Birth of Garner, Jesse V.
+Participant (Primary): Jesse V. Garner (Gramps ID: I0623)
+
+Type: event
+Gramps ID: E2038
+Event type: Death
+Event date: 1929-01-21
+Event location: Cedar City, UT, USA
+Event description: Death of Garner, Jesse V.
+Participant (Primary): Jesse V. Garner (Gramps ID: I0623)
+
+Type: event
+Gramps ID: E2039
+Event type: Burial
+Event date: 1929
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Jesse V.
+Participant (Primary): Jesse V. Garner (Gramps ID: I0623)
+
+Type: event
+Gramps ID: E2040
+Event type: Birth
+Event date: 1878-09-16
+Event location: Paragould, Greene, AR, USA
+Event description: Birth of Garner, Raymond E.
+Participant (Primary): Raymond E. Garner (Gramps ID: I0624)
+
+Type: event
+Gramps ID: E2041
+Event type: Death
+Event date: 1921-05-02
+Event location: Astoria, OR, USA
+Event description: Death of Garner, Raymond E.
+Participant (Primary): Raymond E. Garner (Gramps ID: I0624)
+
+Type: event
+Gramps ID: E2042
+Event type: Birth
+Event date: 1880-09-11
+Event location: Paragould, Greene, AR, USA
+Event description: Birth of Garner, Jennie S.
+Participant (Primary): Jennie S. Garner (Gramps ID: I0625)
+
+Type: event
+Gramps ID: E2043
+Event type: Death
+Event date: 1964-06-20
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Death of Garner, Jennie S.
+Participant (Primary): Jennie S. Garner (Gramps ID: I0625)
+
+Type: event
+Gramps ID: E2044
+Event type: Burial
+Event date: 1964-06
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Jennie S.
+Participant (Primary): Jennie S. Garner (Gramps ID: I0625)
+
+Type: event
+Gramps ID: E2045
+Event type: Birth
+Event date: 1882-02-17
+Event location: Paragould, Greene, AR, USA
+Event description: Birth of Garner, Walter E.
+Participant (Primary): Walter E. Garner (Gramps ID: I0626)
+
+Type: event
+Gramps ID: E2046
+Event type: Death
+Event date: 1946-10-23
+Event location: Battle Creek, MI, USA
+Event description: Death of Garner, Walter E.
+Participant (Primary): Walter E. Garner (Gramps ID: I0626)
+
+Type: event
+Gramps ID: E2047
+Event type: Burial
+Event date: 1946-10
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Walter E.
+Participant (Primary): Walter E. Garner (Gramps ID: I0626)
+
+Type: event
+Gramps ID: E2048
+Event type: Birth
+Event date: 1883-09-30
+Event location: Hood River, OR, USA
+Event description: Birth of Garner, Daniel Webster
+Participant (Primary): Daniel Webster Garner (Gramps ID: I0627)
+
+Type: event
+Gramps ID: E2049
+Event type: Death
+Event date: 1936-03-02
+Event location: Gary, Lake, IN, USA
+Event description: Death of Garner, Daniel Webster
+Participant (Primary): Daniel Webster Garner (Gramps ID: I0627)
+
+Type: event
+Gramps ID: E2050
+Event type: Burial
+Event date: 1936-03-04
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Daniel Webster
+Participant (Primary): Daniel Webster Garner (Gramps ID: I0627)
+
+Type: event
+Gramps ID: E2051
+Event type: Birth
+Event date: 1888-03-13
+Event location: Hagerstown, MD, USA
+Event description: Birth of Garner, Bertha P.
+Participant (Primary): Bertha P. Garner (Gramps ID: I0628)
+
+Type: event
+Gramps ID: E2052
+Event type: Death
+Event date: 1918-04-05
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Death of Garner, Bertha P.
+Participant (Primary): Bertha P. Garner (Gramps ID: I0628)
+
+Type: event
+Gramps ID: E2053
+Event type: Burial
+Event date: 1918-04
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Bertha P.
+Participant (Primary): Bertha P. Garner (Gramps ID: I0628)
+
+Type: event
+Gramps ID: E2054
+Event type: Birth
+Event date: 1883
+Event description: Birth of Garner, Elizabeth
+Participant (Primary): Elizabeth Garner (Gramps ID: I0629)
+
+Type: event
+Gramps ID: E2055
+Event type: Burial
+Event location: Hays, Ellis, KS, USA
+Event description: Burial of Garner, Elizabeth
+Participant (Primary): Elizabeth Garner (Gramps ID: I0629)
+
+Type: event
+Gramps ID: E2056
+Event type: Birth
+Event location: Boston, Suffolk, MA, USA
+Event description: Birth of Kaczmarek, Isabella
+Participant (Primary): Isabella Kaczmarek (Gramps ID: I0063)
+
+Type: event
+Gramps ID: E2057
+Event type: Death
+Event date: 1904-04-21
+Event location: Point Pleasant, WV, USA
+Event description: Death of Kaczmarek, Isabella
+Participant (Primary): Isabella Kaczmarek (Gramps ID: I0063)
+
+Type: event
+Gramps ID: E2058
+Event type: Burial
+Event date: 1904-04-23
+Event location: Point Pleasant, WV, USA
+Event description: Burial of Kaczmarek, Isabella
+Participant (Primary): Isabella Kaczmarek (Gramps ID: I0063)
+
+Type: event
+Gramps ID: E2059
+Event type: Birth
+Event location: Denver-Aurora, CO, USA
+Event description: Birth of Jackson, Cora Ellen
+Participant (Primary): Cora Ellen Jackson (Gramps ID: I0630)
+
+Type: event
+Gramps ID: E2060
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Jackson, Cora Ellen
+Participant (Primary): Cora Ellen Jackson (Gramps ID: I0630)
+
+Type: event
+Gramps ID: E2061
+Event type: Birth
+Event date: 1908-03-13
+Event location: McMinnville, TN, USA
+Event description: Birth of Garner, Cecile Elizabeth
+Participant (Primary): Cecile Elizabeth Garner (Gramps ID: I0631)
+
+Type: event
+Gramps ID: E2062
+Event type: Death
+Event date: 1975-03-22
+Event location: Baraboo, WI, USA
+Event description: Death of Garner, Cecile Elizabeth
+Participant (Primary): Cecile Elizabeth Garner (Gramps ID: I0631)
+
+Type: event
+Gramps ID: E2063
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Cecile Elizabeth
+Participant (Primary): Cecile Elizabeth Garner (Gramps ID: I0631)
+
+Type: event
+Gramps ID: E2064
+Event type: Birth
+Event date: 1909-11-05
+Event location: Ponca City, OK, USA
+Event description: Birth of Garner, Helen Bernice
+Participant (Primary): Helen Bernice Garner (Gramps ID: I0632)
+
+Type: event
+Gramps ID: E2065
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Helen Bernice Garner (Gramps ID: I0632)
+
+Type: event
+Gramps ID: E2066
+Event type: Birth
+Event date: 1912-10-21
+Event description: Birth of Garner, Bernetha Ellen
+Participant (Primary): Bernetha Ellen Garner (Gramps ID: I0633)
+
+Type: event
+Gramps ID: E2067
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bernetha Ellen Garner (Gramps ID: I0633)
+
+Type: event
+Gramps ID: E2068
+Event type: Birth
+Event date: 1914-09-07
+Event location: Bloomington, Monroe, IN, USA
+Event description: Birth of Garner, Daniel Burton
+Participant (Primary): Daniel Burton Garner (Gramps ID: I0634)
+
+Type: event
+Gramps ID: E2069
+Event type: Death
+Event date: 1916-10-02
+Event location: Paragould, Greene, AR, USA
+Event description: Death of Garner, Daniel Burton
+Participant (Primary): Daniel Burton Garner (Gramps ID: I0634)
+
+Type: event
+Gramps ID: E2070
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Garner, Daniel Burton
+Participant (Primary): Daniel Burton Garner (Gramps ID: I0634)
+
+Type: event
+Gramps ID: E2071
+Event type: Birth
+Event date: 1918-02-17
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Birth of Garner, Raymond Webster
+Participant (Primary): Raymond Webster Garner (Gramps ID: I0635)
+
+Type: event
+Gramps ID: E2072
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Raymond Webster Garner (Gramps ID: I0635)
+
+Type: event
+Gramps ID: E2073
+Event type: Birth
+Event date: 1920-08-25
+Event location: Denver-Aurora, CO, USA
+Event description: Birth of Garner, Betty Jane
+Participant (Primary): Betty Jane Garner (Gramps ID: I0636)
+
+Type: event
+Gramps ID: E2074
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Betty Jane Garner (Gramps ID: I0636)
+
+Type: event
+Gramps ID: E2075
+Event type: Birth
+Event date: 1917-01-13
+Event location: Tupelo, MS, USA
+Event description: Birth of Johnson, Richard F.
+Participant (Primary): Richard F. Johnson (Gramps ID: I0637)
+
+Type: event
+Gramps ID: E2076
+Event type: Death
+Event date: 1982-09-22
+Event description: Death of Johnson, Richard F.
+Participant (Primary): Richard F. Johnson (Gramps ID: I0637)
+
+Type: event
+Gramps ID: E2077
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Johnson, Richard F.
+Participant (Primary): Richard F. Johnson (Gramps ID: I0637)
+
+Type: event
+Gramps ID: E2078
+Event type: Death
+Event location: Albert Lea, MN, USA
+Event description: Death of Andrews, Harold
+Participant (Primary): Harold Andrews (Gramps ID: I0638)
+
+Type: event
+Gramps ID: E2079
+Event type: Death
+Event date: 1967-06-25
+Event description: Death of WĂłjcik, Arnold
+Participant (Primary): Arnold WĂłjcik (Gramps ID: I0639)
+
+Type: event
+Gramps ID: E2080
+Event type: Burial
+Event location: Uvalde, Uvalde, TX, USA
+Event description: Burial of WĂłjcik, Arnold
+Participant (Primary): Arnold WĂłjcik (Gramps ID: I0639)
+
+Type: event
+Gramps ID: E2081
+Event type: Birth
+Event date: 1802-09-29
+Event location: Springfield, Hampden, MA, USA
+Event description: Birth of Jiménez, George Henry, Jr.
+Participant (Primary): George Henry, Jr. Jiménez (Gramps ID: I0064)
+
+Type: event
+Gramps ID: E2082
+Event type: Death
+Event date: 1869-02-19
+Event location: Guaynabo, PR, USA
+Event description: Death of Jiménez, George Henry, Jr.
+Participant (Primary): George Henry, Jr. Jiménez (Gramps ID: I0064)
+
+Type: event
+Gramps ID: E2083
+Event type: Burial
+Event date: 1869-02-21
+Event location: Danville, VA, USA
+Event description: Burial of Jiménez, George Henry, Jr.
+Participant (Primary): George Henry, Jr. Jiménez (Gramps ID: I0064)
+
+Type: event
+Gramps ID: E2084
+Event type: Birth
+Event date: 1916-04-06
+Event description: Birth of BĂ©langer, James
+Participant (Primary): James BĂ©langer (Gramps ID: I0640)
+
+Type: event
+Gramps ID: E2085
+Event type: Death
+Event date: 1964-07-02
+Event description: Death of BĂ©langer, James
+Participant (Primary): James BĂ©langer (Gramps ID: I0640)
+
+Type: event
+Gramps ID: E2086
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of BĂ©langer, James
+Participant (Primary): James BĂ©langer (Gramps ID: I0640)
+
+Type: event
+Gramps ID: E2087
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of ĐŻĐșĐŸĐČлДĐČ, George
+Participant (Primary): George ĐŻĐșĐŸĐČлДĐČ (Gramps ID: I0645)
+
+Type: event
+Gramps ID: E2088
+Event type: Birth
+Event date: 1805-10-06
+Event location: Davenport, Scott, IA, USA
+Event description: Birth of Silva, Mildred
+Participant (Primary): Mildred Silva (Gramps ID: I0065)
+
+Type: event
+Gramps ID: E2089
+Event type: Death
+Event date: 1869-05-10
+Event location: Guaynabo, PR, USA
+Event description: Death of Silva, Mildred
+Participant (Primary): Mildred Silva (Gramps ID: I0065)
+
+Type: event
+Gramps ID: E2090
+Event type: Burial
+Event date: 1869-05-12
+Event location: Guaynabo, PR, USA
+Event description: Burial of Silva, Mildred
+Participant (Primary): Mildred Silva (Gramps ID: I0065)
+
+Type: event
+Gramps ID: E2091
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of GarcĂa, Maude
+Participant (Primary): Maude GarcĂa (Gramps ID: I0650)
+
+Type: event
+Gramps ID: E2092
+Event type: Burial
+Event location: Sterling, Whiteside, IL, USA
+Event description: Burial of Robinson, Clarence
+Participant (Primary): Clarence Robinson (Gramps ID: I0654)
+
+Type: event
+Gramps ID: E2093
+Event type: Birth
+Event date: 1933-11-24
+Event description: Birth of Andrews, William Arthur
+Participant (Primary): William Arthur Andrews (Gramps ID: I0659)
+
+Type: event
+Gramps ID: E2094
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): William Arthur Andrews (Gramps ID: I0659)
+
+Type: event
+Gramps ID: E2095
+Event type: Birth
+Event date: 1826-08-15
+Event location: Adrian, MI, USA
+Event description: Birth of Jiménez, George Henry, III
+Participant (Primary): George Henry, III Jiménez (Gramps ID: I0066)
+
+Type: event
+Gramps ID: E2096
+Event type: Death
+Event date: 1907-10-25
+Event location: Sanford, NC, USA
+Event description: Death of Jiménez, George Henry, III
+Participant (Primary): George Henry, III Jiménez (Gramps ID: I0066)
+
+Type: event
+Gramps ID: E2097
+Event type: Birth
+Event date: 1928-06-25
+Event description: Birth of WĂłjcik, Suzanne
+Participant (Primary): Suzanne WĂłjcik (Gramps ID: I0660)
+
+Type: event
+Gramps ID: E2098
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Suzanne WĂłjcik (Gramps ID: I0660)
+
+Type: event
+Gramps ID: E2099
+Event type: Birth
+Event date: 1929-08-14
+Event description: Birth of WĂłjcik, Richard
+Participant (Primary): Richard WĂłjcik (Gramps ID: I0661)
+
+Type: event
+Gramps ID: E2100
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Richard WĂłjcik (Gramps ID: I0661)
+
+Type: event
+Gramps ID: E2101
+Event type: Birth
+Event date: 1930-10-25
+Event description: Birth of WĂłjcik, Patricia
+Participant (Primary): Patricia WĂłjcik (Gramps ID: I0662)
+
+Type: event
+Gramps ID: E2102
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Patricia WĂłjcik (Gramps ID: I0662)
+
+Type: event
+Gramps ID: E2103
+Event type: Birth
+Event date: 1932-03-24
+Event description: Birth of WĂłjcik, James
+Participant (Primary): James WĂłjcik (Gramps ID: I0663)
+
+Type: event
+Gramps ID: E2104
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James WĂłjcik (Gramps ID: I0663)
+
+Type: event
+Gramps ID: E2105
+Event type: Birth
+Event date: 1944-09-04
+Event description: Birth of WĂłjcik, Arnold Clark
+Participant (Primary): Arnold Clark WĂłjcik (Gramps ID: I0664)
+
+Type: event
+Gramps ID: E2106
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Arnold Clark WĂłjcik (Gramps ID: I0664)
+
+Type: event
+Gramps ID: E2107
+Event type: Birth
+Event date: 1949-08-25
+Event description: Birth of WĂłjcik, Daniel Burton
+Participant (Primary): Daniel Burton WĂłjcik (Gramps ID: I0665)
+
+Type: event
+Gramps ID: E2108
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Daniel Burton WĂłjcik (Gramps ID: I0665)
+
+Type: event
+Gramps ID: E2109
+Event type: Birth
+Event date: 1940-12-30
+Event description: Birth of BĂ©langer, Linda Ellen
+Participant (Primary): Linda Ellen BĂ©langer (Gramps ID: I0666)
+
+Type: event
+Gramps ID: E2110
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Linda Ellen BĂ©langer (Gramps ID: I0666)
+
+Type: event
+Gramps ID: E2111
+Event type: Birth
+Event date: 1946-03-10
+Event description: Birth of BĂ©langer, Pamela Ann
+Participant (Primary): Pamela Ann BĂ©langer (Gramps ID: I0668)
+
+Type: event
+Gramps ID: E2112
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Pamela Ann BĂ©langer (Gramps ID: I0668)
+
+Type: event
+Gramps ID: E2113
+Event type: Birth
+Event date: 1832-09-05
+Event location: Lock Haven, PA, USA
+Event description: Birth of Blake, M. Susannah
+Participant (Primary): M. Susannah Blake (Gramps ID: I0067)
+
+Type: event
+Gramps ID: E2114
+Event type: Death
+Event date: 1921-05-25
+Event location: Guaynabo, PR, USA
+Event description: Death of Blake, M. Susannah
+Participant (Primary): M. Susannah Blake (Gramps ID: I0067)
+
+Type: event
+Gramps ID: E2115
+Event type: Burial
+Event date: 1921-05-27
+Event location: Guaynabo, PR, USA
+Event description: Burial of Blake, M. Susannah
+Participant (Primary): M. Susannah Blake (Gramps ID: I0067)
+
+Type: event
+Gramps ID: E2116
+Event type: Birth
+Event date: 1950-04-27
+Event location: Norwich, New London, CT, USA
+Event description: Birth of Garner, Jane McClellan
+Participant (Primary): Jane McClellan Garner (Gramps ID: I0670)
+
+Type: event
+Gramps ID: E2117
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jane McClellan Garner (Gramps ID: I0670)
+
+Type: event
+Gramps ID: E2118
+Event type: Birth
+Event date: 1956-03-05
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Birth of Garner, Raymond Scott
+Participant (Primary): Raymond Scott Garner (Gramps ID: I0671)
+
+Type: event
+Gramps ID: E2119
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Raymond Scott Garner (Gramps ID: I0671)
+
+Type: event
+Gramps ID: E2120
+Event type: Birth
+Event date: um 1625
+Event location: Ukiah, Mendocino, CA, USA
+Event description: Birth of Foster, William
+Participant (Primary): William Foster (Gramps ID: I0674)
+
+Type: event
+Gramps ID: E2121
+Event type: Birth
+Event date: um 1629
+Event location: Camden, NJ, USA
+Event description: Birth of Sanders, Mary
+Participant (Primary): Mary Sanders (Gramps ID: I0675)
+
+Type: event
+Gramps ID: E2122
+Event type: Birth
+Event date: 1915-09-28
+Event location: Duncan, OK, USA
+Event description: Birth of ĐŃŃŃ
Đ°ĐœĐŸĐČ, Violet Louise
+Participant (Primary): Violet Louise ĐŃŃŃ
Đ°ĐœĐŸĐČ (Gramps ID: I0676)
+
+Type: event
+Gramps ID: E2123
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Violet Louise ĐŃŃŃ
Đ°ĐœĐŸĐČ (Gramps ID: I0676)
+
+Type: event
+Gramps ID: E2124
+Event type: Birth
+Event date: 1655-03-01
+Event location: Plainview, Houston, TX, USA
+Event description: Birth of Christiansen, Joseph
+Participant (Primary): Joseph Christiansen (Gramps ID: I0677)
+
+Type: event
+Gramps ID: E2125
+Event type: Death
+Event date: 1726-01
+Event location: Lake County, IL, USA
+Event description: Death of Christiansen, Joseph
+Participant (Primary): Joseph Christiansen (Gramps ID: I0677)
+
+Type: event
+Gramps ID: E2126
+Event type: Birth
+Event date: 1670-08
+Event location: Poplar Bluff, MO, USA
+Event description: Birth of Allen, Joanna
+Participant (Primary): Joanna Allen (Gramps ID: I0678)
+
+Type: event
+Gramps ID: E2127
+Event type: Birth
+Event date: 1688-02-04
+Event location: Lake County, IL, USA
+Event description: Birth of Christiansen, Hannah
+Participant (Primary): Hannah Christiansen (Gramps ID: I0679)
+
+Type: event
+Gramps ID: E2128
+Event type: Death
+Event date: 1742-06-26
+Event location: Red Bluff, Tehama, CA, USA
+Event description: Death of Christiansen, Hannah
+Participant (Primary): Hannah Christiansen (Gramps ID: I0679)
+
+Type: event
+Gramps ID: E2129
+Event type: Birth
+Event date: 1846-02-11
+Event location: Concord, NH, USA
+Event description: Birth of Webb, Livingstone Martin
+Participant (Primary): Livingstone Martin Webb (Gramps ID: I0068)
+
+Type: event
+Gramps ID: E2130
+Event type: Death
+Event date: 1902-04-10
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Webb, Livingstone Martin
+Participant (Primary): Livingstone Martin Webb (Gramps ID: I0068)
+
+Type: event
+Gramps ID: E2131
+Event type: Burial
+Event date: 1902-04-13
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Webb, Livingstone Martin
+Participant (Primary): Livingstone Martin Webb (Gramps ID: I0068)
+
+Type: event
+Gramps ID: E2132
+Event type: Birth
+Event date: 1685
+Event location: Miami, OK, USA
+Event description: Birth of Anderson, Rev. John
+Participant (Primary): Rev. John Anderson (Gramps ID: I0680)
+
+Type: event
+Gramps ID: E2133
+Event type: Death
+Event date: 1774-11-27
+Event location: Pittsburg, Crawford, KS, USA
+Event description: Death of Anderson, Rev. John
+Participant (Primary): Rev. John Anderson (Gramps ID: I0680)
+
+Type: event
+Gramps ID: E2134
+Event type: Birth
+Event date: 1693-04-25
+Event location: Poplar Bluff, MO, USA
+Event description: Birth of Christiansen, Martha
+Participant (Primary): Martha Christiansen (Gramps ID: I0681)
+
+Type: event
+Gramps ID: E2135
+Event type: Death
+Event date: 1766-04-18
+Event description: Death of Christiansen, Martha
+Participant (Primary): Martha Christiansen (Gramps ID: I0681)
+
+Type: event
+Gramps ID: E2136
+Event type: Birth
+Event location: Sherman-Denison, TX, USA
+Event description: Birth of Fox, William
+Participant (Primary): William Fox (Gramps ID: I0682)
+
+Type: event
+Gramps ID: E2137
+Event type: Death
+Event date: 1709
+Event location: Raleigh-Cary, NC, USA
+Event description: Death of Fox, William
+Participant (Primary): William Fox (Gramps ID: I0682)
+
+Type: event
+Gramps ID: E2138
+Event type: Burial
+Event location: Arcadia, DeSoto, FL, USA
+Event description: Burial of Fox, William
+Participant (Primary): William Fox (Gramps ID: I0682)
+
+Type: event
+Gramps ID: E2139
+Event type: Birth
+Event date: um 1480
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Birth of Sanchez, John
+Participant (Primary): John Sanchez (Gramps ID: I0685)
+
+Type: event
+Gramps ID: E2140
+Event type: Death
+Event date: 1545
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Death of Sanchez, John
+Participant (Primary): John Sanchez (Gramps ID: I0685)
+
+Type: event
+Gramps ID: E2141
+Event type: Birth
+Event date: 1511
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Birth of Lefebvre, Robert
+Participant (Primary): Robert Lefebvre (Gramps ID: I0686)
+
+Type: event
+Gramps ID: E2142
+Event type: Death
+Event date: 1558-10-20
+Event location: Caguas, PR, USA
+Event description: Death of Lefebvre, Robert
+Participant (Primary): Robert Lefebvre (Gramps ID: I0686)
+
+Type: event
+Gramps ID: E2143
+Event type: Birth
+Event date: 1536-06-19
+Event location: Hanford-Corcoran, CA, USA
+Event description: Birth of Wise, Thomas
+Participant (Primary): Thomas Wise (Gramps ID: I0687)
+
+Type: event
+Gramps ID: E2144
+Event type: Death
+Event date: 1606-10-09
+Event location: East Stroudsburg, PA, USA
+Event description: Death of Wise, Thomas
+Participant (Primary): Thomas Wise (Gramps ID: I0687)
+
+Type: event
+Gramps ID: E2145
+Event type: Birth
+Event date: 1849-01-25
+Event location: Lynchburg, VA, USA
+Event description: Birth of Blanco, Lucinda Catherine
+Participant (Primary): Lucinda Catherine Blanco (Gramps ID: I0069)
+
+Type: event
+Gramps ID: E2146
+Event type: Death
+Event date: 1932-10-21
+Event location: Oxford, MS, USA
+Event description: Death of Blanco, Lucinda Catherine
+Participant (Primary): Lucinda Catherine Blanco (Gramps ID: I0069)
+
+Type: event
+Gramps ID: E2147
+Event type: Burial
+Event date: 1932-10-23
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Blanco, Lucinda Catherine
+Participant (Primary): Lucinda Catherine Blanco (Gramps ID: I0069)
+
+Type: event
+Gramps ID: E2148
+Event type: Birth
+Event location: Sheboygan, WI, USA
+Event description: Birth of ĐŃĐșĐŸĐČ, ???????
+Participant (Primary): ??????? ĐŃĐșĐŸĐČ (Gramps ID: I0694)
+
+Type: event
+Gramps ID: E2149
+Event type: Birth
+Event location: Chillicothe, OH, USA
+Event description: Birth of Wallace, Abraham
+Participant (Primary): Abraham Wallace (Gramps ID: I0695)
+
+Type: event
+Gramps ID: E2150
+Event type: Death
+Event location: Johnstown, PA, USA
+Event description: Death of Todd, Wayne
+Participant (Primary): Wayne Todd (Gramps ID: I0697)
+
+Type: event
+Gramps ID: E2151
+Event type: Burial
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Todd, Wayne
+Participant (Primary): Wayne Todd (Gramps ID: I0697)
+
+Type: event
+Gramps ID: E2152
+Event type: Birth
+Event date: 1905-09-05
+Event description: Birth of Todd, Lucille
+Participant (Primary): Lucille Todd (Gramps ID: I0698)
+
+Type: event
+Gramps ID: E2153
+Event type: Death
+Event date: 1995-11-29
+Event location: Cortland, Cortland, NY, USA
+Event description: Death of Todd, Lucille
+Participant (Primary): Lucille Todd (Gramps ID: I0698)
+
+Type: event
+Gramps ID: E2154
+Event type: Burial
+Event date: 1995-12-04
+Event location: Clearwater, Pinellas, FL, USA
+Event description: Burial of Todd, Lucille
+Participant (Primary): Lucille Todd (Gramps ID: I0698)
+
+Type: event
+Gramps ID: E2155
+Event type: Birth
+Event date: 1926-11-01
+Event location: Corinth, MS, USA
+Event description: Birth of Warner, George Edward
+Participant (Primary): George Edward Warner (Gramps ID: I0007)
+
+Type: event
+Gramps ID: E2156
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): George Edward Warner (Gramps ID: I0007)
+
+Type: event
+Gramps ID: E2157
+Event type: Death
+Event date: 1999-04-18
+Event location: Warren, PA, USA
+Event description: Death of Patrick, Robert
+Participant (Primary): Robert Patrick (Gramps ID: I0700)
+
+Type: event
+Gramps ID: E2158
+Event type: Birth
+Event date: um 1700-10-26
+Event location: Dyersburg, TN, USA
+Event description: Birth of Adams, William
+Participant (Primary): William Adams (Gramps ID: I0701)
+
+Type: event
+Gramps ID: E2159
+Event type: Death
+Event date: 1787-03-10
+Event location: Hattiesburg, MS, USA
+Event description: Death of Adams, William
+Participant (Primary): William Adams (Gramps ID: I0701)
+
+Type: event
+Gramps ID: E2160
+Event type: Burial
+Event date: 1787
+Event location: Pensacola, Escambia, FL, USA
+Event description: Burial of Adams, William
+Participant (Primary): William Adams (Gramps ID: I0701)
+
+Type: event
+Gramps ID: E2161
+Event type: Birth
+Event date: nach 1717
+Event location: Hickory-Morganton-Lenoir, NC, USA
+Event description: Birth of Aguilar, Eleanor
+Participant (Primary): Eleanor Aguilar (Gramps ID: I0702)
+
+Type: event
+Gramps ID: E2162
+Event type: Death
+Event date: nach 1760-02
+Event location: Plattsburgh, Clinton, NY, USA
+Event description: Death of Aguilar, Eleanor
+Participant (Primary): Eleanor Aguilar (Gramps ID: I0702)
+
+Type: event
+Gramps ID: E2163
+Event type: Birth
+Event location: McComb, MS, USA
+Event description: Birth of Mann, Agnes
+Participant (Primary): Agnes Mann (Gramps ID: I0703)
+
+Type: event
+Gramps ID: E2164
+Event type: Birth
+Event location: Albany, Dougherty, GA, USA
+Event description: Birth of ĐĐ°ŃĐČДДĐČ, Elizabeth
+Participant (Primary): Elizabeth ĐĐ°ŃĐČДДĐČ (Gramps ID: I0704)
+
+Type: event
+Gramps ID: E2165
+Event type: Death
+Event date: 1829-07-19
+Event location: Menomonie, WI, USA
+Event description: Death of ĐĐ°ŃĐČДДĐČ, Elizabeth
+Participant (Primary): Elizabeth ĐĐ°ŃĐČДДĐČ (Gramps ID: I0704)
+
+Type: event
+Gramps ID: E2166
+Event type: Birth
+Event date: 1853-06-13
+Event location: Mount Sterling, Montgomery, KY, USA
+Event description: Birth of Reed, Hugh
+Participant (Primary): Hugh Reed (Gramps ID: I0705)
+
+Type: event
+Gramps ID: E2167
+Event type: Death
+Event date: 1917-04-24
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Reed, Hugh
+Participant (Primary): Hugh Reed (Gramps ID: I0705)
+
+Type: event
+Gramps ID: E2168
+Event type: Birth
+Event date: 1844-05-19
+Event location: Defiance, OH, USA
+Event description: Birth of Reed, John
+Participant (Primary): John Reed (Gramps ID: I0706)
+
+Type: event
+Gramps ID: E2169
+Event type: Death
+Event date: 1926-03-28
+Event description: Death of Reed, John
+Participant (Primary): John Reed (Gramps ID: I0706)
+
+Type: event
+Gramps ID: E2170
+Event type: Birth
+Event date: 1850-01-19
+Event location: Gulfport, MS, USA
+Event description: Birth of Reed, Bridgette
+Participant (Primary): Bridgette Reed (Gramps ID: I0707)
+
+Type: event
+Gramps ID: E2171
+Event type: Death
+Event date: 1901-08-13
+Event location: Alexandria, Rapides, LA, USA
+Event description: Death of Reed, Bridgette
+Participant (Primary): Bridgette Reed (Gramps ID: I0707)
+
+Type: event
+Gramps ID: E2172
+Event type: Birth
+Event date: 1839-03-08
+Event location: Mount Sterling, Montgomery, KY, USA
+Event description: Birth of Reed, Mary
+Participant (Primary): Mary Reed (Gramps ID: I0708)
+
+Type: event
+Gramps ID: E2173
+Event type: Death
+Event location: Mount Sterling, Montgomery, KY, USA
+Event description: Death of Reed, Mary
+Participant (Primary): Mary Reed (Gramps ID: I0708)
+
+Type: event
+Gramps ID: E2174
+Event type: Birth
+Event location: Hutchinson, Reno, KS, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, Myles
+Participant (Primary): Myles йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0709)
+
+Type: event
+Gramps ID: E2175
+Event type: Birth
+Event location: Kill Devil Hills, NC, USA
+Event description: Birth of Warner, Elizabeth
+Participant (Primary): Elizabeth Warner (Gramps ID: I0071)
+
+Type: event
+Gramps ID: E2176
+Event type: Birth
+Event location: Hutchinson, Reno, KS, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, John
+Participant (Primary): John йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0710)
+
+Type: event
+Gramps ID: E2177
+Event type: Birth
+Event location: Hutchinson, Reno, KS, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, Mary Ellen
+Participant (Primary): Mary Ellen йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0711)
+
+Type: event
+Gramps ID: E2178
+Event type: Birth
+Event location: Springfield, OH, USA
+Event description: Birth of Rhodes, William Jr.
+Participant (Primary): William Jr. Rhodes (Gramps ID: I0713)
+
+Type: event
+Gramps ID: E2179
+Event type: Birth
+Event date: 1928
+Event location: Springfield, OH, USA
+Event description: Birth of Rhodes, Donald E.
+Participant (Primary): Donald E. Rhodes (Gramps ID: I0714)
+
+Type: event
+Gramps ID: E2180
+Event type: Death
+Event date: um 1988
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Rhodes, Donald E.
+Participant (Primary): Donald E. Rhodes (Gramps ID: I0714)
+
+Type: event
+Gramps ID: E2181
+Event type: Burial
+Event date: um 1988
+Event location: Lexington, NC, USA
+Event description: Burial of Rhodes, Donald E.
+Participant (Primary): Donald E. Rhodes (Gramps ID: I0714)
+
+Type: event
+Gramps ID: E2182
+Event type: Birth
+Event date: 1922-05-16
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Rhodes, Mary Jane
+Participant (Primary): Mary Jane Rhodes (Gramps ID: I0715)
+
+Type: event
+Gramps ID: E2183
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Jane Rhodes (Gramps ID: I0715)
+
+Type: event
+Gramps ID: E2184
+Event type: Birth
+Event date: 1945-10-02
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Evans, James Patrick
+Participant (Primary): James Patrick Evans (Gramps ID: I0717)
+
+Type: event
+Gramps ID: E2185
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): James Patrick Evans (Gramps ID: I0717)
+
+Type: event
+Gramps ID: E2186
+Event type: Birth
+Event date: 1976-01-19
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Evans, Patricia Kay
+Participant (Primary): Patricia Kay Evans (Gramps ID: I0718)
+
+Type: event
+Gramps ID: E2187
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Patricia Kay Evans (Gramps ID: I0718)
+
+Type: event
+Gramps ID: E2188
+Event type: Birth
+Event date: 1973-03-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Evans, Michael Patrick
+Participant (Primary): Michael Patrick Evans (Gramps ID: I0719)
+
+Type: event
+Gramps ID: E2189
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Michael Patrick Evans (Gramps ID: I0719)
+
+Type: event
+Gramps ID: E2190
+Event type: Birth
+Event date: 1613
+Event location: Daphne, Baldwin, AL, USA
+Event description: Birth of Piotrowski, John
+Participant (Primary): John Piotrowski (Gramps ID: I0072)
+
+Type: event
+Gramps ID: E2191
+Event type: Death
+Event date: 1670
+Event location: Ashtabula, OH, USA
+Event description: Death of Piotrowski, John
+Participant (Primary): John Piotrowski (Gramps ID: I0072)
+
+Type: event
+Gramps ID: E2192
+Event type: Birth
+Event date: 1969-05-26
+Event location: Pampa, Gray, TX, USA
+Event description: Birth of Evans, Christian Anne
+Participant (Primary): Christian Anne Evans (Gramps ID: I0720)
+
+Type: event
+Gramps ID: E2193
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Christian Anne Evans (Gramps ID: I0720)
+
+Type: event
+Gramps ID: E2194
+Event type: Birth
+Event date: 1977-07-12
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Evans, Heather Lee
+Participant (Primary): Heather Lee Evans (Gramps ID: I0721)
+
+Type: event
+Gramps ID: E2195
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Heather Lee Evans (Gramps ID: I0721)
+
+Type: event
+Gramps ID: E2196
+Event type: Birth
+Event location: Laredo, Webb, TX, USA
+Event description: Birth of Payne, Jane Coppage
+Participant (Primary): Jane Coppage Payne (Gramps ID: I0722)
+
+Type: event
+Gramps ID: E2197
+Event type: Death
+Event date: 1873-06-07
+Event location: Norfolk, NE, USA
+Event description: Death of Payne, Jane Coppage
+Participant (Primary): Jane Coppage Payne (Gramps ID: I0722)
+
+Type: event
+Gramps ID: E2198
+Event type: Burial
+Event date: 1873-06-07
+Event location: Ottawa, La Salle, IL, USA
+Event description: Burial of Payne, Jane Coppage
+Participant (Primary): Jane Coppage Payne (Gramps ID: I0722)
+
+Type: event
+Gramps ID: E2199
+Event type: Birth
+Event location: Hilo, HI, USA
+Event description: Birth of Piotrowski, Sir John
+Participant (Primary): Sir John Piotrowski (Gramps ID: I0723)
+
+Type: event
+Gramps ID: E2200
+Event type: Death
+Event location: Hilo, HI, USA
+Event description: Death of Piotrowski, Sir John
+Participant (Primary): Sir John Piotrowski (Gramps ID: I0723)
+
+Type: event
+Gramps ID: E2201
+Event type: Birth
+Event location: Hilo, HI, USA
+Event description: Birth of Piotrowski, Sir Michael
+Participant (Primary): Sir Michael Piotrowski (Gramps ID: I0725)
+
+Type: event
+Gramps ID: E2202
+Event type: Death
+Event location: Hilo, HI, USA
+Event description: Death of Piotrowski, Sir Michael
+Participant (Primary): Sir Michael Piotrowski (Gramps ID: I0725)
+
+Type: event
+Gramps ID: E2203
+Event type: Death
+Event date: 1699
+Event location: Ashtabula, OH, USA
+Event description: Death of Todd, Hodges
+Participant (Primary): Hodges Todd (Gramps ID: I0073)
+
+Type: event
+Gramps ID: E2204
+Event type: Birth
+Event date: 1702-05-06
+Event location: Cordele, Crisp, GA, USA
+Event description: Birth of Benson, Joseph Louis(Jr.)
+Participant (Primary): Joseph Louis(Jr.) Benson (Gramps ID: I0731)
+
+Type: event
+Gramps ID: E2205
+Event type: Death
+Event location: Anderson, Madison, IN, USA
+Event description: Death of Benson, Joseph Louis(Jr.)
+Participant (Primary): Joseph Louis(Jr.) Benson (Gramps ID: I0731)
+
+Type: event
+Gramps ID: E2206
+Event type: Burial
+Event location: Anderson, Madison, IN, USA
+Event description: Burial of Benson, Joseph Louis(Jr.)
+Participant (Primary): Joseph Louis(Jr.) Benson (Gramps ID: I0731)
+
+Type: event
+Gramps ID: E2207
+Event type: Birth
+Event date: 1703
+Event location: Bartlesville, OK, USA
+Event description: Birth of Richard, Jeanne
+Participant (Primary): Jeanne Richard (Gramps ID: I0732)
+
+Type: event
+Gramps ID: E2208
+Event type: Death
+Event date: 1792
+Event location: Lawrence, Douglas, KS, USA
+Event description: Death of Richard, Jeanne
+Participant (Primary): Jeanne Richard (Gramps ID: I0732)
+
+Type: event
+Gramps ID: E2209
+Event type: Burial
+Event location: Albertville, Marshall, AL, USA
+Event description: Burial of Richard, Jeanne
+Participant (Primary): Jeanne Richard (Gramps ID: I0732)
+
+Type: event
+Gramps ID: E2210
+Event type: Birth
+Event location: Davenport, Scott, IA, USA
+Event description: Birth of Frank, ???
+Participant (Primary): ??? Frank (Gramps ID: I0736)
+
+Type: event
+Gramps ID: E2211
+Event type: Birth
+Event date: 1618
+Event location: Tahlequah, OK, USA
+Event description: Birth of Warner, Capt. Francis
+Participant (Primary): Capt. Francis Warner (Gramps ID: I0737)
+
+Type: event
+Gramps ID: E2212
+Event type: Death
+Event date: 1687-09-24
+Event location: Victoria, Limestone, TX, USA
+Event description: Death of Warner, Capt. Francis
+Participant (Primary): Capt. Francis Warner (Gramps ID: I0737)
+
+Type: event
+Gramps ID: E2213
+Event type: Birth
+Event date: um 1625
+Event location: Fresno, Fresno, CA, USA
+Event description: Birth of Ingram, Mary
+Participant (Primary): Mary Ingram (Gramps ID: I0738)
+
+Type: event
+Gramps ID: E2214
+Event type: Death
+Event date: 1688-07-29
+Event location: Sylacauga, Talladega, AL, USA
+Event description: Death of Ingram, Mary
+Participant (Primary): Mary Ingram (Gramps ID: I0738)
+
+Type: event
+Gramps ID: E2215
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, Miles?
+Participant (Primary): Miles? йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0739)
+
+Type: event
+Gramps ID: E2216
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of йОŃ
ĐŸĐœĐŸĐČ, Miles?
+Participant (Primary): Miles? йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0739)
+
+Type: event
+Gramps ID: E2217
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Smith, Anastasia?
+Participant (Primary): Anastasia? Smith (Gramps ID: I0740)
+
+Type: event
+Gramps ID: E2218
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of Smith, Anastasia?
+Participant (Primary): Anastasia? Smith (Gramps ID: I0740)
+
+Type: event
+Gramps ID: E2219
+Event type: Birth
+Event location: Watertown-Fort Drum, NY, USA
+Event description: Birth of Sharp, ???
+Participant (Primary): ??? Sharp (Gramps ID: I0741)
+
+Type: event
+Gramps ID: E2220
+Event type: Death
+Event date: 9
+Event location: Kahului, HI, USA
+Event description: Death of Sharp, ???
+Participant (Primary): ??? Sharp (Gramps ID: I0741)
+
+Type: event
+Gramps ID: E2221
+Event type: Burial
+Event location: Wichita Falls, Wichita, TX, USA
+Event description: Burial of Sharp, ???
+Participant (Primary): ??? Sharp (Gramps ID: I0741)
+
+Type: event
+Gramps ID: E2222
+Event type: Death
+Event date: 1677
+Event description: Death of Piotrowski, John Jr.
+Participant (Primary): John Jr. Piotrowski (Gramps ID: I0742)
+
+Type: event
+Gramps ID: E2223
+Event type: Birth
+Event date: um 1628
+Event location: Lancaster, SC, USA
+Event description: Birth of Anderson, Thomas
+Participant (Primary): Thomas Anderson (Gramps ID: I0744)
+
+Type: event
+Gramps ID: E2224
+Event type: Death
+Event date: 1687
+Event location: Fort Dodge, Webster, IA, USA
+Event description: Death of Anderson, Thomas
+Participant (Primary): Thomas Anderson (Gramps ID: I0744)
+
+Type: event
+Gramps ID: E2225
+Event type: Birth
+Event date: um 1633
+Event location: Brevard, NC, USA
+Event description: Birth of Carpenter, Sarah
+Participant (Primary): Sarah Carpenter (Gramps ID: I0745)
+
+Type: event
+Gramps ID: E2226
+Event type: Birth
+Event date: 1654
+Event location: Baton Rouge, East Baton Rouge, LA, USA
+Event description: Birth of Anderson, Samuel
+Participant (Primary): Samuel Anderson (Gramps ID: I0746)
+
+Type: event
+Gramps ID: E2227
+Event type: Death
+Event location: Gettysburg, PA, USA
+Event description: Death of Anderson, Samuel
+Participant (Primary): Samuel Anderson (Gramps ID: I0746)
+
+Type: event
+Gramps ID: E2228
+Event type: Birth
+Event date: 1657-02
+Event location: Brevard, NC, USA
+Event description: Birth of Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+Participant (Primary): Elizabeth Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ (Gramps ID: I0747)
+
+Type: event
+Gramps ID: E2229
+Event type: Death
+Event date: 1747-09-03
+Event location: Anchorage, AK, USA
+Event description: Death of Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+Participant (Primary): Elizabeth Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ (Gramps ID: I0747)
+
+Type: event
+Gramps ID: E2230
+Event type: Birth
+Event date: 1662-02-01
+Event location: Plainview, Houston, TX, USA
+Event description: Birth of Christiansen, John
+Participant (Primary): John Christiansen (Gramps ID: I0748)
+
+Type: event
+Gramps ID: E2231
+Event type: Death
+Event date: 1727
+Event location: Poplar Bluff, MO, USA
+Event description: Death of Christiansen, John
+Participant (Primary): John Christiansen (Gramps ID: I0748)
+
+Type: event
+Gramps ID: E2232
+Event type: Birth
+Event date: 1671
+Event description: Birth of Harmon, Martha
+Participant (Primary): Martha Harmon (Gramps ID: I0749)
+
+Type: event
+Gramps ID: E2233
+Event type: Birth
+Event date: 1678
+Event location: Ashtabula, OH, USA
+Event description: Birth of Todd, Hardy
+Participant (Primary): Hardy Todd (Gramps ID: I0075)
+
+Type: event
+Gramps ID: E2234
+Event type: Death
+Event date: 1750
+Event location: Ashtabula, OH, USA
+Event description: Death of Todd, Hardy
+Participant (Primary): Hardy Todd (Gramps ID: I0075)
+
+Type: event
+Gramps ID: E2235
+Event type: Birth
+Event date: 1633-09-08
+Event location: Rio Grande City, Starr, TX, USA
+Event description: Birth of Norris, John
+Participant (Primary): John Norris (Gramps ID: I0750)
+
+Type: event
+Gramps ID: E2236
+Event type: Death
+Event date: 1712-08-27
+Event location: Anchorage, AK, USA
+Event description: Death of Norris, John
+Participant (Primary): John Norris (Gramps ID: I0750)
+
+Type: event
+Gramps ID: E2237
+Event type: Burial
+Event date: 1712
+Event location: Keene, NH, USA
+Event description: Burial of Norris, John
+Participant (Primary): John Norris (Gramps ID: I0750)
+
+Type: event
+Gramps ID: E2238
+Event type: Birth
+Event date: 1641-02-12
+Event location: Ogdensburg, St. Lawrence, NY, USA
+Event description: Birth of Howell, Mary (Sarah)
+Participant (Primary): Mary (Sarah) Howell (Gramps ID: I0751)
+
+Type: event
+Gramps ID: E2239
+Event type: Death
+Event date: 1686
+Event location: Anchorage, AK, USA
+Event description: Death of Howell, Mary (Sarah)
+Participant (Primary): Mary (Sarah) Howell (Gramps ID: I0751)
+
+Type: event
+Gramps ID: E2240
+Event type: Burial
+Event location: Anchorage, AK, USA
+Event description: Burial of Howell, Mary (Sarah)
+Participant (Primary): Mary (Sarah) Howell (Gramps ID: I0751)
+
+Type: event
+Gramps ID: E2241
+Event type: Birth
+Event date: 1605
+Event location: Hilo, HI, USA
+Event description: Birth of Grenier, Joseph
+Participant (Primary): Joseph Grenier (Gramps ID: I0752)
+
+Type: event
+Gramps ID: E2242
+Event type: Death
+Event date: 1647-12-04
+Event location: Roswell, NM, USA
+Event description: Death of Grenier, Joseph
+Participant (Primary): Joseph Grenier (Gramps ID: I0752)
+
+Type: event
+Gramps ID: E2243
+Event type: Burial
+Event location: Dunn, NC, USA
+Event description: Burial of Grenier, Joseph
+Participant (Primary): Joseph Grenier (Gramps ID: I0752)
+
+Type: event
+Gramps ID: E2244
+Event type: Birth
+Event date: 1608
+Event location: Hilo, HI, USA
+Event description: Birth of Peters, Rose
+Participant (Primary): Rose Peters (Gramps ID: I0753)
+
+Type: event
+Gramps ID: E2245
+Event type: Death
+Event date: 1695
+Event location: Florence, Lauderdale, AL, USA
+Event description: Death of Peters, Rose
+Participant (Primary): Rose Peters (Gramps ID: I0753)
+
+Type: event
+Gramps ID: E2246
+Event type: Burial
+Event location: Dunn, NC, USA
+Event description: Burial of Peters, Rose
+Participant (Primary): Rose Peters (Gramps ID: I0753)
+
+Type: event
+Gramps ID: E2247
+Event type: Birth
+Event date: um 1515
+Event description: Birth of ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+Participant (Primary): Ellen ĐĐŸĐœŃĐ°ŃĐŸĐČ (Gramps ID: I0755)
+
+Type: event
+Gramps ID: E2248
+Event type: Death
+Event date: 1572
+Event location: Phoenix, Maricopa, AZ, USA
+Event description: Death of ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+Participant (Primary): Ellen ĐĐŸĐœŃĐ°ŃĐŸĐČ (Gramps ID: I0755)
+
+Type: event
+Gramps ID: E2249
+Event type: Birth
+Event date: um 1556
+Event location: Lebanon, PA, USA
+Event description: Birth of Ramos, Mary
+Participant (Primary): Mary Ramos (Gramps ID: I0756)
+
+Type: event
+Gramps ID: E2250
+Event type: Death
+Event date: 1588-01-07
+Event location: Caguas, PR, USA
+Event description: Death of Ramos, Mary
+Participant (Primary): Mary Ramos (Gramps ID: I0756)
+
+Type: event
+Gramps ID: E2251
+Event type: Burial
+Event location: Washington, NC, USA
+Event description: Burial of Ramos, Mary
+Participant (Primary): Mary Ramos (Gramps ID: I0756)
+
+Type: event
+Gramps ID: E2252
+Event type: Birth
+Event date: 1695
+Event location: Ketchikan, AK, USA
+Event description: Birth of ĐĐ»ĐŸĐ±ĐžĐœ, John
+Participant (Primary): John ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0757)
+
+Type: event
+Gramps ID: E2253
+Event type: Death
+Event location: Eagle Pass, Maverick, TX, USA
+Event description: Death of ĐĐ»ĐŸĐ±ĐžĐœ, John
+Participant (Primary): John ĐĐ»ĐŸĐ±ĐžĐœ (Gramps ID: I0757)
+
+Type: event
+Gramps ID: E2254
+Event type: Birth
+Event location: Santa Ana, Orange, CA, USA
+Event description: Birth of Ferguson, Lord Samuel
+Participant (Primary): Lord Samuel Ferguson (Gramps ID: I0758)
+
+Type: event
+Gramps ID: E2255
+Event type: Birth
+Event date: 1679-05-01
+Event location: Jesup, Wayne, GA, USA
+Event description: Birth of Webster, Johanne(John)
+Participant (Primary): Johanne(John) Webster (Gramps ID: I0759)
+
+Type: event
+Gramps ID: E2256
+Event type: Death
+Event location: Savannah, Chatham, GA, USA
+Event description: Death of Webster, Johanne(John)
+Participant (Primary): Johanne(John) Webster (Gramps ID: I0759)
+
+Type: event
+Gramps ID: E2257
+Event type: Death
+Event date: 1757
+Event location: Ashtabula, OH, USA
+Event description: Death of Cole, Susannah
+Participant (Primary): Susannah Cole (Gramps ID: I0076)
+
+Type: event
+Gramps ID: E2258
+Event type: Birth
+Event date: um 1680
+Event location: Greenville, MS, USA
+Event description: Birth of Saunders, Ursula
+Participant (Primary): Ursula Saunders (Gramps ID: I0760)
+
+Type: event
+Gramps ID: E2259
+Event type: Death
+Event date: 1740
+Event location: Bucyrus, OH, USA
+Event description: Death of Saunders, Ursula
+Participant (Primary): Ursula Saunders (Gramps ID: I0760)
+
+Type: event
+Gramps ID: E2260
+Event type: Birth
+Event date: um 1675
+Event location: Canton, OH, USA
+Event description: Birth of æè€, Zariakius Cyriacus
+Participant (Primary): Zariakius Cyriacus æè€ (Gramps ID: I0761)
+
+Type: event
+Gramps ID: E2261
+Event type: Death
+Event date: nach 1748-07-01
+Event location: Auburn, Lee, AL, USA
+Event description: Death of æè€, Zariakius Cyriacus
+Participant (Primary): Zariakius Cyriacus æè€ (Gramps ID: I0761)
+
+Type: event
+Gramps ID: E2262
+Event type: Birth
+Event date: 1664-09-29
+Event location: Houston, Harris, TX, USA
+Event description: Birth of Bishop, Anna Barbara
+Participant (Primary): Anna Barbara Bishop (Gramps ID: I0762)
+
+Type: event
+Gramps ID: E2263
+Event type: Death
+Event date: nach 1717
+Event location: Waterloo-Cedar Falls, IA, USA
+Event description: Death of Bishop, Anna Barbara
+Participant (Primary): Anna Barbara Bishop (Gramps ID: I0762)
+
+Type: event
+Gramps ID: E2264
+Event type: Birth
+Event date: 1705
+Event location: Albany, Dougherty, GA, USA
+Event description: Birth of Carroll, Jacob A.
+Participant (Primary): Jacob A. Carroll (Gramps ID: I0763)
+
+Type: event
+Gramps ID: E2265
+Event type: Death
+Event date: 1763
+Event location: Savannah, Chatham, GA, USA
+Event description: Death of Carroll, Jacob A.
+Participant (Primary): Jacob A. Carroll (Gramps ID: I0763)
+
+Type: event
+Gramps ID: E2266
+Event type: Birth
+Event date: 1704-01-26
+Event location: Danville, Boyle, KY, USA
+Event description: Birth of ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ, Maria Catharina
+Participant (Primary): Maria Catharina ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ (Gramps ID: I0764)
+
+Type: event
+Gramps ID: E2267
+Event type: Birth
+Event date: 1643-07-10
+Event location: San Luis Obispo, San Luis Obispo, CA, USA
+Event description: Birth of ć±±æŹ, Antoine Desaure Perronett
+Participant (Primary): Antoine Desaure Perronett ć±±æŹ (Gramps ID: I0766)
+
+Type: event
+Gramps ID: E2268
+Event type: Birth
+Event date: 1676-01-09
+Event location: Iowa City, Johnson, IA, USA
+Event description: Birth of Benson, Joseph Louis(Sr.)
+Participant (Primary): Joseph Louis(Sr.) Benson (Gramps ID: I0767)
+
+Type: event
+Gramps ID: E2269
+Event type: Birth
+Event location: Iowa City, Johnson, IA, USA
+Event description: Birth of Simard, Sarah
+Participant (Primary): Sarah Simard (Gramps ID: I0768)
+
+Type: event
+Gramps ID: E2270
+Event type: Birth
+Event location: Sweetwater, Nolan, TX, USA
+Event description: Birth of Simard, Thomas
+Participant (Primary): Thomas Simard (Gramps ID: I0769)
+
+Type: event
+Gramps ID: E2271
+Event type: Birth
+Event date: 1727-08-15
+Event location: Natchez, Natchitoches, MS-LA, USA
+Event description: Birth of Todd, Charles
+Participant (Primary): Charles Todd (Gramps ID: I0077)
+
+Type: event
+Gramps ID: E2272
+Event type: Death
+Event date: 1805-07-06
+Event location: West Palm Beach, Palm Beach, FL, USA
+Event description: Death of Todd, Charles
+Participant (Primary): Charles Todd (Gramps ID: I0077)
+
+Type: event
+Gramps ID: E2273
+Event type: Birth
+Event date: 1742-05-07
+Event location: Olympia, WA, USA
+Event description: Birth of Benson, Col. Joseph
+Participant (Primary): Col. Joseph Benson (Gramps ID: I0770)
+
+Type: event
+Gramps ID: E2274
+Event type: Birth
+Event date: 1709-08-10
+Event location: Wahpeton, ND, USA
+Event description: Birth of Benson, William
+Participant (Primary): William Benson (Gramps ID: I0771)
+
+Type: event
+Gramps ID: E2275
+Event type: Birth
+Event date: 1730
+Event description: Birth of Benson, David
+Participant (Primary): David Benson (Gramps ID: I0772)
+
+Type: event
+Gramps ID: E2276
+Event type: Death
+Event date: 1777
+Event description: Death of Benson, David
+Participant (Primary): David Benson (Gramps ID: I0772)
+
+Type: event
+Gramps ID: E2277
+Event type: Birth
+Event date: 1750
+Event description: Birth of Benson, John
+Participant (Primary): John Benson (Gramps ID: I0773)
+
+Type: event
+Gramps ID: E2278
+Event type: Birth
+Event date: 1786-08-17
+Event location: Valdosta, Lowndes, GA, USA
+Event description: Birth of Benson, Col. David
+Participant (Primary): Col. David Benson (Gramps ID: I0774)
+
+Type: event
+Gramps ID: E2279
+Event type: Death
+Event date: 1836-03-06
+Event location: Holland-Grand Haven, MI, USA
+Event description: Death of Benson, Col. David
+Participant (Primary): Col. David Benson (Gramps ID: I0774)
+
+Type: event
+Gramps ID: E2280
+Event type: Birth
+Event date: 1967-10-02
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Wheeler, Richard Max
+Participant (Primary): Richard Max Wheeler (Gramps ID: I0779)
+
+Type: event
+Gramps ID: E2281
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Richard Max Wheeler (Gramps ID: I0779)
+
+Type: event
+Gramps ID: E2282
+Event type: Birth
+Event date: 1727-08-15
+Event description: Birth of Cole, Eurydice
+Participant (Primary): Eurydice Cole (Gramps ID: I0078)
+
+Type: event
+Gramps ID: E2283
+Event type: Birth
+Event date: 1970-10-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Wheeler, Lynnett Diane
+Participant (Primary): Lynnett Diane Wheeler (Gramps ID: I0780)
+
+Type: event
+Gramps ID: E2284
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lynnett Diane Wheeler (Gramps ID: I0780)
+
+Type: event
+Gramps ID: E2285
+Event type: Birth
+Event date: 1977-01-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Wheeler, Jason Earl
+Participant (Primary): Jason Earl Wheeler (Gramps ID: I0781)
+
+Type: event
+Gramps ID: E2286
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jason Earl Wheeler (Gramps ID: I0781)
+
+Type: event
+Gramps ID: E2287
+Event type: Birth
+Event date: 1990-06-06
+Event location: Rockland, ME, USA
+Event description: Birth of Kelly, Ashley Diane
+Participant (Primary): Ashley Diane Kelly (Gramps ID: I0783)
+
+Type: event
+Gramps ID: E2288
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Ashley Diane Kelly (Gramps ID: I0783)
+
+Type: event
+Gramps ID: E2289
+Event type: Birth
+Event date: 1956-04-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garrett, Terry Lee
+Participant (Primary): Terry Lee Garrett (Gramps ID: I0785)
+
+Type: event
+Gramps ID: E2290
+Event type: Death
+Event date: 1998-04-23
+Event description: Death of Garrett, Terry Lee
+Participant (Primary): Terry Lee Garrett (Gramps ID: I0785)
+
+Type: event
+Gramps ID: E2291
+Event type: Birth
+Event date: 1956-09-30
+Event description: Birth of Holloway, Gail
+Participant (Primary): Gail Holloway (Gramps ID: I0786)
+
+Type: event
+Gramps ID: E2292
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Gail Holloway (Gramps ID: I0786)
+
+Type: event
+Gramps ID: E2293
+Event type: Birth
+Event date: 1961-11-21
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Garrett, Wayne Allen
+Participant (Primary): Wayne Allen Garrett (Gramps ID: I0787)
+
+Type: event
+Gramps ID: E2294
+Event type: Death
+Event date: 1967-01
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Garrett, Wayne Allen
+Participant (Primary): Wayne Allen Garrett (Gramps ID: I0787)
+
+Type: event
+Gramps ID: E2295
+Event type: Birth
+Event date: 1979-08-05
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Rodgers, Shawna Marie
+Participant (Primary): Shawna Marie Rodgers (Gramps ID: I0789)
+
+Type: event
+Gramps ID: E2296
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Shawna Marie Rodgers (Gramps ID: I0789)
+
+Type: event
+Gramps ID: E2297
+Event type: Birth
+Event date: 1765-11-26
+Event location: Shelton, WA, USA
+Event description: Birth of Todd, John
+Participant (Primary): John Todd (Gramps ID: I0079)
+
+Type: event
+Gramps ID: E2298
+Event type: Death
+Event location: Clearlake, Lake, CA, USA
+Event description: Death of Todd, John
+Participant (Primary): John Todd (Gramps ID: I0079)
+
+Type: event
+Gramps ID: E2299
+Event type: Birth
+Event date: 1975-12-12
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Rodgers, Crystal Mae
+Participant (Primary): Crystal Mae Rodgers (Gramps ID: I0790)
+
+Type: event
+Gramps ID: E2300
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Crystal Mae Rodgers (Gramps ID: I0790)
+
+Type: event
+Gramps ID: E2301
+Event type: Birth
+Event date: 1956-01-14
+Event description: Birth of ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ, John
+Participant (Primary): John ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ (Gramps ID: I0791)
+
+Type: event
+Gramps ID: E2302
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): John ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ (Gramps ID: I0791)
+
+Type: event
+Gramps ID: E2303
+Event type: Birth
+Event location: Barnstable Town, MA, USA
+Event description: Birth of Lane, Remo
+Participant (Primary): Remo Lane (Gramps ID: I0792)
+
+Type: event
+Gramps ID: E2304
+Event type: Death
+Event date: 1919-01-19
+Event description: Death of Lane, Remo
+Participant (Primary): Remo Lane (Gramps ID: I0792)
+
+Type: event
+Gramps ID: E2305
+Event type: Burial
+Event location: Maysville, Mason, KY, USA
+Event description: Burial of Lane, Remo
+Participant (Primary): Remo Lane (Gramps ID: I0792)
+
+Type: event
+Gramps ID: E2306
+Event type: Birth
+Event location: Barnstable Town, MA, USA
+Event description: Birth of Barnes, Ernestina
+Participant (Primary): Ernestina Barnes (Gramps ID: I0793)
+
+Type: event
+Gramps ID: E2307
+Event type: Death
+Event date: 1965-04-15
+Event location: Columbus, Jefferson, GA-AL, USA
+Event description: Death of Barnes, Ernestina
+Participant (Primary): Ernestina Barnes (Gramps ID: I0793)
+
+Type: event
+Gramps ID: E2308
+Event type: Burial
+Event location: Maysville, Mason, KY, USA
+Event description: Burial of Barnes, Ernestina
+Participant (Primary): Ernestina Barnes (Gramps ID: I0793)
+
+Type: event
+Gramps ID: E2309
+Event type: Birth
+Event date: 1878-04-15
+Event location: Burlington, VT, USA
+Event description: Birth of Webb, Clarence
+Participant (Primary): Clarence Webb (Gramps ID: I0796)
+
+Type: event
+Gramps ID: E2310
+Event type: Death
+Event date: 1953-12-24
+Event location: Troy, Pike, AL, USA
+Event description: Death of Webb, Clarence
+Participant (Primary): Clarence Webb (Gramps ID: I0796)
+
+Type: event
+Gramps ID: E2311
+Event type: Burial
+Event date: 1953-12-26
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Webb, Clarence
+Participant (Primary): Clarence Webb (Gramps ID: I0796)
+
+Type: event
+Gramps ID: E2312
+Event type: Birth
+Event date: 1878-04-15
+Event location: Burlington, VT, USA
+Event description: Birth of Webb, Lawrence
+Participant (Primary): Lawrence Webb (Gramps ID: I0797)
+
+Type: event
+Gramps ID: E2313
+Event type: Death
+Event date: 1948-08-29
+Event location: Troy, Pike, AL, USA
+Event description: Death of Webb, Lawrence
+Participant (Primary): Lawrence Webb (Gramps ID: I0797)
+
+Type: event
+Gramps ID: E2314
+Event type: Burial
+Event date: 1948-08-31
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Webb, Lawrence
+Participant (Primary): Lawrence Webb (Gramps ID: I0797)
+
+Type: event
+Gramps ID: E2315
+Event type: Burial
+Event location: San Angelo, Tom Green, TX, USA
+Event description: Burial of Dunn, Margaret Mary?
+Participant (Primary): Margaret Mary? Dunn (Gramps ID: I0798)
+
+Type: event
+Gramps ID: E2316
+Event type: Birth
+Event date: 1931-07-10
+Event location: Worthington, MN, USA
+Event description: Birth of Lessard, Elinor Jane
+Participant (Primary): Elinor Jane Lessard (Gramps ID: I0008)
+
+Type: event
+Gramps ID: E2317
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Elinor Jane Lessard (Gramps ID: I0008)
+
+Type: event
+Gramps ID: E2318
+Event type: Birth
+Event date: 1770-04
+Event description: Birth of Henry, Elizabeth
+Participant (Primary): Elizabeth Henry (Gramps ID: I0800)
+
+Type: event
+Gramps ID: E2319
+Event type: Death
+Event date: 1836-05-14
+Event location: Springfield, Hampden, MA, USA
+Event description: Death of Henry, Elizabeth
+Participant (Primary): Elizabeth Henry (Gramps ID: I0800)
+
+Type: event
+Gramps ID: E2320
+Event type: Burial
+Event date: 1836-05-15
+Event location: Fitzgerald, Ben Hill, GA, USA
+Event description: Burial of Henry, Elizabeth
+Participant (Primary): Elizabeth Henry (Gramps ID: I0800)
+
+Type: event
+Gramps ID: E2321
+Event type: Birth
+Event location: East Liverpool, OH, USA
+Event description: Birth of Boucher, David
+Participant (Primary): David Boucher (Gramps ID: I0801)
+
+Type: event
+Gramps ID: E2322
+Event type: Death
+Event location: Fargo, ND, USA
+Event description: Death of Boucher, David
+Participant (Primary): David Boucher (Gramps ID: I0801)
+
+Type: event
+Gramps ID: E2323
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Boucher, David
+Participant (Primary): David Boucher (Gramps ID: I0801)
+
+Type: event
+Gramps ID: E2324
+Event type: Birth
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Morrison, Nancy
+Participant (Primary): Nancy Morrison (Gramps ID: I0802)
+
+Type: event
+Gramps ID: E2325
+Event type: Death
+Event location: Fargo, ND, USA
+Event description: Death of Morrison, Nancy
+Participant (Primary): Nancy Morrison (Gramps ID: I0802)
+
+Type: event
+Gramps ID: E2326
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Morrison, Nancy
+Participant (Primary): Nancy Morrison (Gramps ID: I0802)
+
+Type: event
+Gramps ID: E2327
+Event type: Birth
+Event date: 1816
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Catherine
+Participant (Primary): Catherine Boucher (Gramps ID: I0803)
+
+Type: event
+Gramps ID: E2328
+Event type: Death
+Event date: 1857
+Event location: Hinesville, Liberty, GA, USA
+Event description: Death of Boucher, Catherine
+Participant (Primary): Catherine Boucher (Gramps ID: I0803)
+
+Type: event
+Gramps ID: E2329
+Event type: Burial
+Event date: 1857
+Event location: Urbana, OH, USA
+Event description: Burial of Boucher, Catherine
+Participant (Primary): Catherine Boucher (Gramps ID: I0803)
+
+Type: event
+Gramps ID: E2330
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Patrick
+Participant (Primary): Patrick Boucher (Gramps ID: I0804)
+
+Type: event
+Gramps ID: E2331
+Event type: Death
+Event location: Port St, Lucie, FL, USA
+Event description: Death of Boucher, Patrick
+Participant (Primary): Patrick Boucher (Gramps ID: I0804)
+
+Type: event
+Gramps ID: E2332
+Event type: Burial
+Event location: Celina, OH, USA
+Event description: Burial of Boucher, Patrick
+Participant (Primary): Patrick Boucher (Gramps ID: I0804)
+
+Type: event
+Gramps ID: E2333
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Bridget
+Participant (Primary): Bridget Boucher (Gramps ID: I0805)
+
+Type: event
+Gramps ID: E2334
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0806)
+
+Type: event
+Gramps ID: E2335
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0806)
+
+Type: event
+Gramps ID: E2336
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0806)
+
+Type: event
+Gramps ID: E2337
+Event type: Birth
+Event location: Lexington, Fayette, KY, USA
+Event description: Birth of ĐĐžĐșĐžŃĐžĐœ, Monica
+Participant (Primary): Monica ĐĐžĐșĐžŃĐžĐœ (Gramps ID: I0807)
+
+Type: event
+Gramps ID: E2338
+Event type: Death
+Event location: Mountain Home, White, AR, USA
+Event description: Death of ĐĐžĐșĐžŃĐžĐœ, Monica
+Participant (Primary): Monica ĐĐžĐșĐžŃĐžĐœ (Gramps ID: I0807)
+
+Type: event
+Gramps ID: E2339
+Event type: Birth
+Event date: 1976
+Event location: Kerrville, Kerr, TX, USA
+Event description: Birth of Boucher, Flannan
+Participant (Primary): Flannan Boucher (Gramps ID: I0808)
+
+Type: event
+Gramps ID: E2340
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Flannan Boucher (Gramps ID: I0808)
+
+Type: event
+Gramps ID: E2341
+Event type: Birth
+Event date: 1973
+Event location: Kerrville, Kerr, TX, USA
+Event description: Birth of Boucher, Miread
+Participant (Primary): Miread Boucher (Gramps ID: I0809)
+
+Type: event
+Gramps ID: E2342
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Miread Boucher (Gramps ID: I0809)
+
+Type: event
+Gramps ID: E2343
+Event type: Birth
+Event date: 1790-10-01
+Event location: Jacksonville, Cherokee, TX, USA
+Event description: Birth of Todd, William
+Participant (Primary): William Todd (Gramps ID: I0081)
+
+Type: event
+Gramps ID: E2344
+Event type: Death
+Event date: 1846-07-08
+Event location: Branson, MO, USA
+Event description: Death of Todd, William
+Participant (Primary): William Todd (Gramps ID: I0081)
+
+Type: event
+Gramps ID: E2345
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of Todd, William
+Participant (Primary): William Todd (Gramps ID: I0081)
+
+Type: event
+Gramps ID: E2346
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0810)
+
+Type: event
+Gramps ID: E2347
+Event type: Birth
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0811)
+
+Type: event
+Gramps ID: E2348
+Event type: Death
+Event location: Summerville, Chattooga, GA, USA
+Event description: Death of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0811)
+
+Type: event
+Gramps ID: E2349
+Event type: Burial
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0811)
+
+Type: event
+Gramps ID: E2350
+Event type: Birth
+Event date: 1851-02-07
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0812)
+
+Type: event
+Gramps ID: E2351
+Event type: Death
+Event date: 1952-08-02
+Event location: Summerville, Chattooga, GA, USA
+Event description: Death of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0812)
+
+Type: event
+Gramps ID: E2352
+Event type: Burial
+Event date: 1952-08-03
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Boucher, William
+Participant (Primary): William Boucher (Gramps ID: I0812)
+
+Type: event
+Gramps ID: E2353
+Event type: Birth
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Stephen Francis
+Participant (Primary): Stephen Francis Boucher (Gramps ID: I0813)
+
+Type: event
+Gramps ID: E2354
+Event type: Death
+Event date: 1975-08-24
+Event location: Summerville, Chattooga, GA, USA
+Event description: Death of Boucher, Stephen Francis
+Participant (Primary): Stephen Francis Boucher (Gramps ID: I0813)
+
+Type: event
+Gramps ID: E2355
+Event type: Burial
+Event date: 1975-08
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Boucher, Stephen Francis
+Participant (Primary): Stephen Francis Boucher (Gramps ID: I0813)
+
+Type: event
+Gramps ID: E2356
+Event type: Birth
+Event date: 1926-09-15
+Event location: Philadelphia, PA, USA
+Event description: Birth of Boucher, Rose Mary
+Participant (Primary): Rose Mary Boucher (Gramps ID: I0814)
+
+Type: event
+Gramps ID: E2357
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rose Mary Boucher (Gramps ID: I0814)
+
+Type: event
+Gramps ID: E2358
+Event type: Birth
+Event location: Willimantic, Windham, CT, USA
+Event description: Birth of Hansen, Thomas
+Participant (Primary): Thomas Hansen (Gramps ID: I0815)
+
+Type: event
+Gramps ID: E2359
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Thomas Hansen (Gramps ID: I0815)
+
+Type: event
+Gramps ID: E2360
+Event type: Birth
+Event date: 1953-12
+Event location: Tifton, Tift, GA, USA
+Event description: Birth of Hansen, Noel
+Participant (Primary): Noel Hansen (Gramps ID: I0816)
+
+Type: event
+Gramps ID: E2361
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Noel Hansen (Gramps ID: I0816)
+
+Type: event
+Gramps ID: E2362
+Event type: Birth
+Event location: Tifton, Tift, GA, USA
+Event description: Birth of Hansen, Nula
+Participant (Primary): Nula Hansen (Gramps ID: I0817)
+
+Type: event
+Gramps ID: E2363
+Event type: Birth
+Event location: Tifton, Tift, GA, USA
+Event description: Birth of Hansen, Irene
+Participant (Primary): Irene Hansen (Gramps ID: I0818)
+
+Type: event
+Gramps ID: E2364
+Event type: Birth
+Event location: Tifton, Tift, GA, USA
+Event description: Birth of Hansen, Monica
+Participant (Primary): Monica Hansen (Gramps ID: I0819)
+
+Type: event
+Gramps ID: E2365
+Event type: Birth
+Event date: 1802-06-15
+Event location: Jefferson City, MO, USA
+Event description: Birth of æžĄèŸș, Mary (Polly)
+Participant (Primary): Mary (Polly) æžĄèŸș (Gramps ID: I0082)
+
+Type: event
+Gramps ID: E2366
+Event type: Death
+Event date: 1869-01-25
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of æžĄèŸș, Mary (Polly)
+Participant (Primary): Mary (Polly) æžĄèŸș (Gramps ID: I0082)
+
+Type: event
+Gramps ID: E2367
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of æžĄèŸș, Mary (Polly)
+Participant (Primary): Mary (Polly) æžĄèŸș (Gramps ID: I0082)
+
+Type: event
+Gramps ID: E2368
+Event type: Birth
+Event location: Indianola, MS, USA
+Event description: Birth of ĐĐ°ŃĐżĐŸĐČ, Damian
+Participant (Primary): Damian ĐĐ°ŃĐżĐŸĐČ (Gramps ID: I0820)
+
+Type: event
+Gramps ID: E2369
+Event type: Birth
+Event date: 1987
+Event location: West Helena, Phillips, AR, USA
+Event description: Birth of ĐĐ°ŃĐżĐŸĐČ, Sarah
+Participant (Primary): Sarah ĐĐ°ŃĐżĐŸĐČ (Gramps ID: I0821)
+
+Type: event
+Gramps ID: E2370
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sarah ĐĐ°ŃĐżĐŸĐČ (Gramps ID: I0821)
+
+Type: event
+Gramps ID: E2371
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Ramirez, Helen
+Participant (Primary): Helen Ramirez (Gramps ID: I0822)
+
+Type: event
+Gramps ID: E2372
+Event type: Birth
+Event date: 1982
+Event location: Omaha, NE, USA
+Event description: Birth of Hansen, Barry
+Participant (Primary): Barry Hansen (Gramps ID: I0823)
+
+Type: event
+Gramps ID: E2373
+Event type: Birth
+Event date: 1979
+Event location: Omaha, NE, USA
+Event description: Birth of Hansen, Kevin
+Participant (Primary): Kevin Hansen (Gramps ID: I0824)
+
+Type: event
+Gramps ID: E2374
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Alonso, Joseph
+Participant (Primary): Joseph Alonso (Gramps ID: I0825)
+
+Type: event
+Gramps ID: E2375
+Event type: Birth
+Event date: 1985
+Event location: Erie, PA, USA
+Event description: Birth of Alonso, Roisine
+Participant (Primary): Roisine Alonso (Gramps ID: I0826)
+
+Type: event
+Gramps ID: E2376
+Event type: Birth
+Event date: 1989
+Event location: Erie, PA, USA
+Event description: Birth of Alonso, Laura
+Participant (Primary): Laura Alonso (Gramps ID: I0827)
+
+Type: event
+Gramps ID: E2377
+Event type: Birth
+Event date: 1962
+Event location: Kerrville, Kerr, TX, USA
+Event description: Birth of Boucher, Anne
+Participant (Primary): Anne Boucher (Gramps ID: I0828)
+
+Type: event
+Gramps ID: E2378
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Anne Boucher (Gramps ID: I0828)
+
+Type: event
+Gramps ID: E2379
+Event type: Birth
+Event date: 1963
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Mary
+Participant (Primary): Mary Boucher (Gramps ID: I0829)
+
+Type: event
+Gramps ID: E2380
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mary Boucher (Gramps ID: I0829)
+
+Type: event
+Gramps ID: E2381
+Event type: Birth
+Event date: 1820-01-02
+Event location: Waco, McLennan, TX, USA
+Event description: Birth of Todd, George W.
+Participant (Primary): George W. Todd (Gramps ID: I0083)
+
+Type: event
+Gramps ID: E2382
+Event type: Death
+Event date: 1895-02-16
+Event location: Fayetteville, Washington, AR, USA
+Event description: Death of Todd, George W.
+Participant (Primary): George W. Todd (Gramps ID: I0083)
+
+Type: event
+Gramps ID: E2383
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of Todd, George W.
+Participant (Primary): George W. Todd (Gramps ID: I0083)
+
+Type: event
+Gramps ID: E2384
+Event type: Birth
+Event date: 1963
+Event location: Kerrville, Kerr, TX, USA
+Event description: Birth of Boucher, Martha
+Participant (Primary): Martha Boucher (Gramps ID: I0830)
+
+Type: event
+Gramps ID: E2385
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Martha Boucher (Gramps ID: I0830)
+
+Type: event
+Gramps ID: E2386
+Event type: Birth
+Event date: 1965
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Bridget
+Participant (Primary): Bridget Boucher (Gramps ID: I0831)
+
+Type: event
+Gramps ID: E2387
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Bridget Boucher (Gramps ID: I0831)
+
+Type: event
+Gramps ID: E2388
+Event type: Birth
+Event date: 1968
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Agnes
+Participant (Primary): Agnes Boucher (Gramps ID: I0832)
+
+Type: event
+Gramps ID: E2389
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Agnes Boucher (Gramps ID: I0832)
+
+Type: event
+Gramps ID: E2390
+Event type: Birth
+Event date: 1970
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Norene
+Participant (Primary): Norene Boucher (Gramps ID: I0833)
+
+Type: event
+Gramps ID: E2391
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Norene Boucher (Gramps ID: I0833)
+
+Type: event
+Gramps ID: E2392
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Fields, Bridget M.
+Participant (Primary): Bridget M. Fields (Gramps ID: I0834)
+
+Type: event
+Gramps ID: E2393
+Event type: Death
+Event location: Lumberton, NC, USA
+Event description: Death of Fields, Bridget M.
+Participant (Primary): Bridget M. Fields (Gramps ID: I0834)
+
+Type: event
+Gramps ID: E2394
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Fields, Bridget M.
+Participant (Primary): Bridget M. Fields (Gramps ID: I0834)
+
+Type: event
+Gramps ID: E2395
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Thompson, Bridget
+Participant (Primary): Bridget Thompson (Gramps ID: I0835)
+
+Type: event
+Gramps ID: E2396
+Event type: Death
+Event location: Lumberton, NC, USA
+Event description: Death of Thompson, Bridget
+Participant (Primary): Bridget Thompson (Gramps ID: I0835)
+
+Type: event
+Gramps ID: E2397
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Thompson, Bridget
+Participant (Primary): Bridget Thompson (Gramps ID: I0835)
+
+Type: event
+Gramps ID: E2398
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Gardner, Mary
+Participant (Primary): Mary Gardner (Gramps ID: I0836)
+
+Type: event
+Gramps ID: E2399
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Gardner, Mary
+Participant (Primary): Mary Gardner (Gramps ID: I0836)
+
+Type: event
+Gramps ID: E2400
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Gardner, Mary
+Participant (Primary): Mary Gardner (Gramps ID: I0836)
+
+Type: event
+Gramps ID: E2401
+Event type: Birth
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Gil, Nora
+Participant (Primary): Nora Gil (Gramps ID: I0837)
+
+Type: event
+Gramps ID: E2402
+Event type: Death
+Event location: Andrews, Andrews, TX, USA
+Event description: Death of Gil, Nora
+Participant (Primary): Nora Gil (Gramps ID: I0837)
+
+Type: event
+Gramps ID: E2403
+Event type: Burial
+Event location: Somerset, PA, USA
+Event description: Burial of Gil, Nora
+Participant (Primary): Nora Gil (Gramps ID: I0837)
+
+Type: event
+Gramps ID: E2404
+Event type: Birth
+Event date: 1817
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Savard, Honora
+Participant (Primary): Honora Savard (Gramps ID: I0838)
+
+Type: event
+Gramps ID: E2405
+Event type: Death
+Event date: 1902-04-01
+Event location: Summerville, Chattooga, GA, USA
+Event description: Death of Savard, Honora
+Participant (Primary): Honora Savard (Gramps ID: I0838)
+
+Type: event
+Gramps ID: E2406
+Event type: Burial
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Savard, Honora
+Participant (Primary): Honora Savard (Gramps ID: I0838)
+
+Type: event
+Gramps ID: E2407
+Event type: Birth
+Event date: 1822-11-20
+Event location: Champaign, Champaign, IL, USA
+Event description: Birth of Morris, Jane
+Participant (Primary): Jane Morris (Gramps ID: I0084)
+
+Type: event
+Gramps ID: E2408
+Event type: Death
+Event date: 1877-04-23
+Event location: Fayetteville, Washington, AR, USA
+Event description: Death of Morris, Jane
+Participant (Primary): Jane Morris (Gramps ID: I0084)
+
+Type: event
+Gramps ID: E2409
+Event type: Burial
+Event location: Fayetteville, Washington, AR, USA
+Event description: Burial of Morris, Jane
+Participant (Primary): Jane Morris (Gramps ID: I0084)
+
+Type: event
+Gramps ID: E2410
+Event type: Birth
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Fr. Patrick
+Participant (Primary): Fr. Patrick Boucher (Gramps ID: I0840)
+
+Type: event
+Gramps ID: E2411
+Event type: Birth
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Fr. Daniel Gabriel
+Participant (Primary): Fr. Daniel Gabriel Boucher (Gramps ID: I0841)
+
+Type: event
+Gramps ID: E2412
+Event type: Death
+Event location: Emporia, Lyon, KS, USA
+Event description: Death of Boucher, Fr. Daniel Gabriel
+Participant (Primary): Fr. Daniel Gabriel Boucher (Gramps ID: I0841)
+
+Type: event
+Gramps ID: E2413
+Event type: Birth
+Event date: 1886
+Event location: Summerville, Chattooga, GA, USA
+Event description: Birth of Boucher, Prof. William Joseph
+Participant (Primary): Prof. William Joseph Boucher (Gramps ID: I0842)
+
+Type: event
+Gramps ID: E2414
+Event type: Death
+Event date: 1977-01-26
+Event location: Emporia, Lyon, KS, USA
+Event description: Death of Boucher, Prof. William Joseph
+Participant (Primary): Prof. William Joseph Boucher (Gramps ID: I0842)
+
+Type: event
+Gramps ID: E2415
+Event type: Birth
+Event location: Cornelia, Habersham, GA, USA
+Event description: Birth of Boucher, William Donel
+Participant (Primary): William Donel Boucher (Gramps ID: I0843)
+
+Type: event
+Gramps ID: E2416
+Event type: Birth
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Gardner, Michael
+Participant (Primary): Michael Gardner (Gramps ID: I0844)
+
+Type: event
+Gramps ID: E2417
+Event type: Birth
+Event date: 1556
+Event location: Nogales, Santa Cruz, AZ, USA
+Event description: Birth of Warner, Thomas
+Participant (Primary): Thomas Warner (Gramps ID: I0845)
+
+Type: event
+Gramps ID: E2418
+Event type: Birth
+Event location: Durant, OK, USA
+Event description: Birth of Warner, Rev. Edmund
+Participant (Primary): Rev. Edmund Warner (Gramps ID: I0846)
+
+Type: event
+Gramps ID: E2419
+Event type: Death
+Event location: Naples, Collier, FL, USA
+Event description: Death of Warner, Rev. Edmund
+Participant (Primary): Rev. Edmund Warner (Gramps ID: I0846)
+
+Type: event
+Gramps ID: E2420
+Event type: Birth
+Event date: 1543
+Event location: Tucson, Pima, AZ, USA
+Event description: Birth of Warner, Sir Francis
+Participant (Primary): Sir Francis Warner (Gramps ID: I0847)
+
+Type: event
+Gramps ID: E2421
+Event type: Death
+Event date: 1596-01-28
+Event location: Lexington Park, MD, USA
+Event description: Death of Warner, Sir Francis
+Participant (Primary): Sir Francis Warner (Gramps ID: I0847)
+
+Type: event
+Gramps ID: E2422
+Event type: Burial
+Event date: 1596-01-28
+Event location: Lexington Park, MD, USA
+Event description: Burial of Warner, Sir Francis
+Participant (Primary): Sir Francis Warner (Gramps ID: I0847)
+
+Type: event
+Gramps ID: E2423
+Event type: Death
+Event date: 1683-10-24
+Event description: Death of Green, Yelverton
+Participant (Primary): Yelverton Green (Gramps ID: I0848)
+
+Type: event
+Gramps ID: E2424
+Event type: Death
+Event date: 1703-10-24
+Event description: Death of Robertson, Elizabeth
+Participant (Primary): Elizabeth Robertson (Gramps ID: I0849)
+
+Type: event
+Gramps ID: E2425
+Event type: Birth
+Event date: 1851-06-07
+Event location: Fayetteville, Washington, AR, USA
+Event description: Birth of Todd, John M.
+Participant (Primary): John M. Todd (Gramps ID: I0085)
+
+Type: event
+Gramps ID: E2426
+Event type: Death
+Event date: 1921-02-23
+Event location: Milledgeville, Baldwin, GA, USA
+Event description: Death of Todd, John M.
+Participant (Primary): John M. Todd (Gramps ID: I0085)
+
+Type: event
+Gramps ID: E2427
+Event type: Burial
+Event date: 1921-02-25
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Todd, John M.
+Participant (Primary): John M. Todd (Gramps ID: I0085)
+
+Type: event
+Gramps ID: E2428
+Event type: Birth
+Event date: vor 1583
+Event location: Salisbury, NC, USA
+Event description: Birth of Peters, George Sr.
+Participant (Primary): George Sr. Peters (Gramps ID: I0851)
+
+Type: event
+Gramps ID: E2429
+Event type: Death
+Event date: 1648
+Event location: Lamesa, Dawson, TX, USA
+Event description: Death of Peters, George Sr.
+Participant (Primary): George Sr. Peters (Gramps ID: I0851)
+
+Type: event
+Gramps ID: E2430
+Event type: Burial
+Event location: Longview, Gregg, TX, USA
+Event description: Burial of Peters, George Sr.
+Participant (Primary): George Sr. Peters (Gramps ID: I0851)
+
+Type: event
+Gramps ID: E2431
+Event type: Birth
+Event date: 1920-10-28
+Event location: Torrington, Litchfield, CT, USA
+Event description: Birth of Welch, Irwin Arthur
+Participant (Primary): Irwin Arthur Welch (Gramps ID: I0853)
+
+Type: event
+Gramps ID: E2432
+Event type: Death
+Event date: 1979-06-25
+Event location: Medford, OR, USA
+Event description: Death of Welch, Irwin Arthur
+Participant (Primary): Irwin Arthur Welch (Gramps ID: I0853)
+
+Type: event
+Gramps ID: E2433
+Event type: Burial
+Event date: 1979-06-27
+Event location: West Plains, MO, USA
+Event description: Burial of Welch, Irwin Arthur
+Participant (Primary): Irwin Arthur Welch (Gramps ID: I0853)
+
+Type: event
+Gramps ID: E2434
+Event type: Birth
+Event date: 1949-04-08
+Event location: Midland, MI, USA
+Event description: Birth of Welch, Russell Eugene
+Participant (Primary): Russell Eugene Welch (Gramps ID: I0855)
+
+Type: event
+Gramps ID: E2435
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Russell Eugene Welch (Gramps ID: I0855)
+
+Type: event
+Gramps ID: E2436
+Event type: Birth
+Event date: 1945-11-25
+Event description: Birth of Norton, Dorothy
+Participant (Primary): Dorothy Norton (Gramps ID: I0856)
+
+Type: event
+Gramps ID: E2437
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dorothy Norton (Gramps ID: I0856)
+
+Type: event
+Gramps ID: E2438
+Event type: Birth
+Event date: 1955-01-06
+Event description: Birth of Walsh, Penelope
+Participant (Primary): Penelope Walsh (Gramps ID: I0857)
+
+Type: event
+Gramps ID: E2439
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Penelope Walsh (Gramps ID: I0857)
+
+Type: event
+Gramps ID: E2440
+Event type: Birth
+Event date: 1951-03-30
+Event location: Midland, MI, USA
+Event description: Birth of Welch, Annabelle Elaine
+Participant (Primary): Annabelle Elaine Welch (Gramps ID: I0858)
+
+Type: event
+Gramps ID: E2441
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Annabelle Elaine Welch (Gramps ID: I0858)
+
+Type: event
+Gramps ID: E2442
+Event type: Birth
+Event date: 1948-06-20
+Event description: Birth of Brock, Stephen
+Participant (Primary): Stephen Brock (Gramps ID: I0859)
+
+Type: event
+Gramps ID: E2443
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Stephen Brock (Gramps ID: I0859)
+
+Type: event
+Gramps ID: E2444
+Event type: Birth
+Event date: 1812-01-03
+Event location: Plattsburgh, Clinton, NY, USA
+Event description: Birth of Farmer, Benjamin H.
+Participant (Primary): Benjamin H. Farmer (Gramps ID: I0086)
+
+Type: event
+Gramps ID: E2445
+Event type: Death
+Event date: 1873-08-13
+Event location: Fremont, NE, USA
+Event description: Death of Farmer, Benjamin H.
+Participant (Primary): Benjamin H. Farmer (Gramps ID: I0086)
+
+Type: event
+Gramps ID: E2446
+Event type: Burial
+Event date: 1873-08-14
+Event location: Charlotte, NC, USA
+Event description: Burial of Farmer, Benjamin H.
+Participant (Primary): Benjamin H. Farmer (Gramps ID: I0086)
+
+Type: event
+Gramps ID: E2447
+Event type: Birth
+Event date: 1956-08-03
+Event location: Medford, OR, USA
+Event description: Birth of Welch, Rosalie Jane
+Participant (Primary): Rosalie Jane Welch (Gramps ID: I0860)
+
+Type: event
+Gramps ID: E2448
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Rosalie Jane Welch (Gramps ID: I0860)
+
+Type: event
+Gramps ID: E2449
+Event type: Birth
+Event date: 1951-03-02
+Event description: Birth of SĂĄnchez, David Andrew
+Participant (Primary): David Andrew SĂĄnchez (Gramps ID: I0861)
+
+Type: event
+Gramps ID: E2450
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Andrew SĂĄnchez (Gramps ID: I0861)
+
+Type: event
+Gramps ID: E2451
+Event type: Birth
+Event date: 1969-11-13
+Event location: Chico, Butte, CA, USA
+Event description: Birth of Brock, Lance Edward
+Participant (Primary): Lance Edward Brock (Gramps ID: I0862)
+
+Type: event
+Gramps ID: E2452
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Lance Edward Brock (Gramps ID: I0862)
+
+Type: event
+Gramps ID: E2453
+Event type: Birth
+Event date: 1971-11-10
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Birth of Brock, Celeste Ellen
+Participant (Primary): Celeste Ellen Brock (Gramps ID: I0863)
+
+Type: event
+Gramps ID: E2454
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Celeste Ellen Brock (Gramps ID: I0863)
+
+Type: event
+Gramps ID: E2455
+Event type: Birth
+Event date: 1988-09-12
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Birth of SĂĄnchez, Roxanne Marie
+Participant (Primary): Roxanne Marie SĂĄnchez (Gramps ID: I0864)
+
+Type: event
+Gramps ID: E2456
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Roxanne Marie SĂĄnchez (Gramps ID: I0864)
+
+Type: event
+Gramps ID: E2457
+Event type: Birth
+Event date: 1991-05-06
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Birth of SĂĄnchez, Jonathan Andrew
+Participant (Primary): Jonathan Andrew SĂĄnchez (Gramps ID: I0865)
+
+Type: event
+Gramps ID: E2458
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jonathan Andrew SĂĄnchez (Gramps ID: I0865)
+
+Type: event
+Gramps ID: E2459
+Event type: Birth
+Event date: 1973
+Event location: Hutchinson, Reno, KS, USA
+Event description: Birth of Hawkins, Jennifer Leigh
+Participant (Primary): Jennifer Leigh Hawkins (Gramps ID: I0866)
+
+Type: event
+Gramps ID: E2460
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jennifer Leigh Hawkins (Gramps ID: I0866)
+
+Type: event
+Gramps ID: E2461
+Event type: Birth
+Event date: 1890-05-20
+Event location: Atlanta, Fulton, GA, USA
+Event description: Birth of Zimmerman, Edith Irene
+Participant (Primary): Edith Irene Zimmerman (Gramps ID: I0867)
+
+Type: event
+Gramps ID: E2462
+Event type: Death
+Event date: 1962-12-21
+Event location: Kokomo, Howard, IN, USA
+Event description: Death of Zimmerman, Edith Irene
+Participant (Primary): Edith Irene Zimmerman (Gramps ID: I0867)
+
+Type: event
+Gramps ID: E2463
+Event type: Burial
+Event date: 1962-12-23
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Burial of Zimmerman, Edith Irene
+Participant (Primary): Edith Irene Zimmerman (Gramps ID: I0867)
+
+Type: event
+Gramps ID: E2464
+Event type: Birth
+Event date: 1992-10-30
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Warner, Jeffrey George
+Participant (Primary): Jeffrey George Warner (Gramps ID: I0869)
+
+Type: event
+Gramps ID: E2465
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Jeffrey George Warner (Gramps ID: I0869)
+
+Type: event
+Gramps ID: E2466
+Event type: Birth
+Event date: 1818-01-05
+Event location: Plattsburgh, Clinton, NY, USA
+Event description: Birth of Mills, Isabella
+Participant (Primary): Isabella Mills (Gramps ID: I0087)
+
+Type: event
+Gramps ID: E2467
+Event type: Death
+Event date: 1874-08-20
+Event location: Monroe, Ouachita, LA, USA
+Event description: Death of Mills, Isabella
+Participant (Primary): Isabella Mills (Gramps ID: I0087)
+
+Type: event
+Gramps ID: E2468
+Event type: Burial
+Event date: 1874-08-21
+Event location: Charlotte, NC, USA
+Event description: Burial of Mills, Isabella
+Participant (Primary): Isabella Mills (Gramps ID: I0087)
+
+Type: event
+Gramps ID: E2469
+Event type: Birth
+Event date: 1963-09-17
+Event location: Aberdeen, SD, USA
+Event description: Birth of VĂĄzquez, April Lynn
+Participant (Primary): April Lynn VĂĄzquez (Gramps ID: I0870)
+
+Type: event
+Gramps ID: E2470
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): April Lynn VĂĄzquez (Gramps ID: I0870)
+
+Type: event
+Gramps ID: E2471
+Event type: Death
+Event date: 1963-01-10
+Event location: Whitewater, WI, USA
+Event description: Death of Gardner, Mary Jane
+Participant (Primary): Mary Jane Gardner (Gramps ID: I0871)
+
+Type: event
+Gramps ID: E2472
+Event type: Burial
+Event date: 1963-01-12
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Gardner, Mary Jane
+Participant (Primary): Mary Jane Gardner (Gramps ID: I0871)
+
+Type: event
+Gramps ID: E2473
+Event type: Birth
+Event date: 1864
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Birth of Walters, Mary
+Participant (Primary): Mary Walters (Gramps ID: I0872)
+
+Type: event
+Gramps ID: E2474
+Event type: Death
+Event date: 1937-04-06
+Event location: Ann Arbor, MI, USA
+Event description: Death of Walters, Mary
+Participant (Primary): Mary Walters (Gramps ID: I0872)
+
+Type: event
+Gramps ID: E2475
+Event type: Burial
+Event date: 1937-04-08
+Event location: Marysville, Yuba, CA, USA
+Event description: Burial of Walters, Mary
+Participant (Primary): Mary Walters (Gramps ID: I0872)
+
+Type: event
+Gramps ID: E2476
+Event type: Birth
+Event date: 1836-11-15
+Event location: Scottsbluff, NE, USA
+Event description: Birth of Blanco, Malvina
+Participant (Primary): Malvina Blanco (Gramps ID: I0873)
+
+Type: event
+Gramps ID: E2477
+Event type: Death
+Event date: 1918-03-07
+Event location: Muskegon, MI, USA
+Event description: Death of Blanco, Malvina
+Participant (Primary): Malvina Blanco (Gramps ID: I0873)
+
+Type: event
+Gramps ID: E2478
+Event type: Burial
+Event date: 1918-03-09
+Event location: Camden, Ouachita, AR, USA
+Event description: Burial of Blanco, Malvina
+Participant (Primary): Malvina Blanco (Gramps ID: I0873)
+
+Type: event
+Gramps ID: E2479
+Event type: Birth
+Event date: 1838
+Event location: Scottsbluff, NE, USA
+Event description: Birth of Blanco, John W.
+Participant (Primary): John W. Blanco (Gramps ID: I0874)
+
+Type: event
+Gramps ID: E2480
+Event type: Birth
+Event date: 1846
+Event location: Scottsbluff, NE, USA
+Event description: Birth of Blanco, Mary F.
+Participant (Primary): Mary F. Blanco (Gramps ID: I0875)
+
+Type: event
+Gramps ID: E2481
+Event type: Birth
+Event date: 1846
+Event location: Scottsbluff, NE, USA
+Event description: Birth of Blanco, Paris
+Participant (Primary): Paris Blanco (Gramps ID: I0876)
+
+Type: event
+Gramps ID: E2482
+Event type: Birth
+Event date: 1838-04-25
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of Quinn, Abram
+Participant (Primary): Abram Quinn (Gramps ID: I0877)
+
+Type: event
+Gramps ID: E2483
+Event type: Death
+Event date: 1916-02-18
+Event location: Deltona, Volusia, FL, USA
+Event description: Death of Quinn, Abram
+Participant (Primary): Abram Quinn (Gramps ID: I0877)
+
+Type: event
+Gramps ID: E2484
+Event type: Burial
+Event date: 1916-02
+Event location: Athens, Henderson, TX, USA
+Event description: Burial of Quinn, Abram
+Participant (Primary): Abram Quinn (Gramps ID: I0877)
+
+Type: event
+Gramps ID: E2485
+Event type: Birth
+Event date: 1851-04-14
+Event location: Burlington, VT, USA
+Event description: Birth of Blanco, Stephen
+Participant (Primary): Stephen Blanco (Gramps ID: I0878)
+
+Type: event
+Gramps ID: E2486
+Event type: Death
+Event date: 1903-04-08
+Event location: Corbin, Whitley, KY, USA
+Event description: Death of Blanco, Stephen
+Participant (Primary): Stephen Blanco (Gramps ID: I0878)
+
+Type: event
+Gramps ID: E2487
+Event type: Burial
+Event date: 1903-04-10
+Event location: Brownsville, Cameron, TX, USA
+Event description: Burial of Blanco, Stephen
+Participant (Primary): Stephen Blanco (Gramps ID: I0878)
+
+Type: event
+Gramps ID: E2488
+Event type: Birth
+Event date: 1854
+Event location: Stephenville, Erath, TX, USA
+Event description: Birth of Blanco, Milton
+Participant (Primary): Milton Blanco (Gramps ID: I0879)
+
+Type: event
+Gramps ID: E2489
+Event type: Birth
+Event date: 1850-06-09
+Event location: Salinas, Monterey, CA, USA
+Event description: Birth of Farmer, Elizabeth Ellen
+Participant (Primary): Elizabeth Ellen Farmer (Gramps ID: I0088)
+
+Type: event
+Gramps ID: E2490
+Event type: Death
+Event date: 1931-08-03
+Event location: Milledgeville, Baldwin, GA, USA
+Event description: Death of Farmer, Elizabeth Ellen
+Participant (Primary): Elizabeth Ellen Farmer (Gramps ID: I0088)
+
+Type: event
+Gramps ID: E2491
+Event type: Burial
+Event date: 1931-08
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Burial of Farmer, Elizabeth Ellen
+Participant (Primary): Elizabeth Ellen Farmer (Gramps ID: I0088)
+
+Type: event
+Gramps ID: E2492
+Event type: Birth
+Event date: 1856
+Event location: Cambridge, OH, USA
+Event description: Birth of Blanco, L. J.
+Participant (Primary): L. J. Blanco (Gramps ID: I0880)
+
+Type: event
+Gramps ID: E2493
+Event type: Birth
+Event date: 1813
+Event location: Yuma, Yuma, AZ, USA
+Event description: Birth of Myers, James
+Participant (Primary): James Myers (Gramps ID: I0881)
+
+Type: event
+Gramps ID: E2494
+Event type: Death
+Event date: 1896-06-04
+Event location: Staunton-Waynesboro, VA, USA
+Event description: Death of Myers, James
+Participant (Primary): James Myers (Gramps ID: I0881)
+
+Type: event
+Gramps ID: E2495
+Event type: Burial
+Event date: 1896
+Event description: Burial of Myers, James
+Participant (Primary): James Myers (Gramps ID: I0881)
+
+Type: event
+Gramps ID: E2496
+Event type: Birth
+Event date: 1857-12-22
+Event location: Staunton-Waynesboro, VA, USA
+Event description: Birth of Myers, James Joseph Jr.
+Participant (Primary): James Joseph Jr. Myers (Gramps ID: I0882)
+
+Type: event
+Gramps ID: E2497
+Event type: Death
+Event date: 1934-04-05
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Myers, James Joseph Jr.
+Participant (Primary): James Joseph Jr. Myers (Gramps ID: I0882)
+
+Type: event
+Gramps ID: E2498
+Event type: Burial
+Event date: 1934
+Event description: Burial of Myers, James Joseph Jr.
+Participant (Primary): James Joseph Jr. Myers (Gramps ID: I0882)
+
+Type: event
+Gramps ID: E2499
+Event type: Birth
+Event date: 1897
+Event description: Birth of Myers, Nina Mae
+Participant (Primary): Nina Mae Myers (Gramps ID: I0883)
+
+Type: event
+Gramps ID: E2500
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Nina Mae Myers (Gramps ID: I0883)
+
+Type: event
+Gramps ID: E2501
+Event type: Birth
+Event date: 1926
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Coleman, Marilyn
+Participant (Primary): Marilyn Coleman (Gramps ID: I0884)
+
+Type: event
+Gramps ID: E2502
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marilyn Coleman (Gramps ID: I0884)
+
+Type: event
+Gramps ID: E2503
+Event type: Birth
+Event date: 1949
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Gonzales, Linda S.
+Participant (Primary): Linda S. Gonzales (Gramps ID: I0885)
+
+Type: event
+Gramps ID: E2504
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Linda S. Gonzales (Gramps ID: I0885)
+
+Type: event
+Gramps ID: E2505
+Event type: Birth
+Event date: 1952
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Gonzales, Mark R.
+Participant (Primary): Mark R. Gonzales (Gramps ID: I0886)
+
+Type: event
+Gramps ID: E2506
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mark R. Gonzales (Gramps ID: I0886)
+
+Type: event
+Gramps ID: E2507
+Event type: Birth
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of Lessard, ???
+Participant (Primary): ??? Lessard (Gramps ID: I0887)
+
+Type: event
+Gramps ID: E2508
+Event type: Birth
+Event location: Davenport, Scott, IA, USA
+Event description: Birth of Castro, ???
+Participant (Primary): ??? Castro (Gramps ID: I0888)
+
+Type: event
+Gramps ID: E2509
+Event type: Birth
+Event date: 1811
+Event location: Lock Haven, PA, USA
+Event description: Birth of DomĂnguez, George
+Participant (Primary): George DomĂnguez (Gramps ID: I0889)
+
+Type: event
+Gramps ID: E2510
+Event type: Birth
+Event location: Shelbyville, TN, USA
+Event description: Birth of Reed, John
+Participant (Primary): John Reed (Gramps ID: I0089)
+
+Type: event
+Gramps ID: E2511
+Event type: Death
+Event date: 1886-08-11
+Event location: Shelbyville, TN, USA
+Event description: Death of Reed, John
+Participant (Primary): John Reed (Gramps ID: I0089)
+
+Type: event
+Gramps ID: E2512
+Event type: Burial
+Event date: 1886-08
+Event location: Shelbyville, TN, USA
+Event description: Burial of Reed, John
+Participant (Primary): John Reed (Gramps ID: I0089)
+
+Type: event
+Gramps ID: E2513
+Event type: Birth
+Event location: Mountain Home, Elmore, ID, USA
+Event description: Birth of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Participant (Primary): Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0890)
+
+Type: event
+Gramps ID: E2514
+Event type: Death
+Event date: 1849-05-08
+Event location: Pontiac, St. Clair, IL, USA
+Event description: Death of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Participant (Primary): Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0890)
+
+Type: event
+Gramps ID: E2515
+Event type: Burial
+Event date: 1849-05-09
+Event location: Glens Falls, Warren, NY, USA
+Event description: Burial of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Participant (Primary): Nancy ĐĐ°ĐșŃĐžĐŒĐŸĐČ (Gramps ID: I0890)
+
+Type: event
+Gramps ID: E2516
+Event type: Birth
+Event date: 1887-05-20
+Event description: Birth of Zimmerman, Edith Irene
+Participant (Primary): Edith Irene Zimmerman (Gramps ID: I0891)
+
+Type: event
+Gramps ID: E2517
+Event type: Birth
+Event date: 1914-10-16
+Event location: Alma, MI, USA
+Event description: Birth of Norman, Dorothy Louise
+Participant (Primary): Dorothy Louise Norman (Gramps ID: I0892)
+
+Type: event
+Gramps ID: E2518
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dorothy Louise Norman (Gramps ID: I0892)
+
+Type: event
+Gramps ID: E2519
+Event type: Birth
+Event date: 1950-04-04
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Page, Dwayne Alan
+Participant (Primary): Dwayne Alan Page (Gramps ID: I0893)
+
+Type: event
+Gramps ID: E2520
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Dwayne Alan Page (Gramps ID: I0893)
+
+Type: event
+Gramps ID: E2521
+Event type: Birth
+Event date: 1939-08-21
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Page, Sylvia Louise
+Participant (Primary): Sylvia Louise Page (Gramps ID: I0895)
+
+Type: event
+Gramps ID: E2522
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Sylvia Louise Page (Gramps ID: I0895)
+
+Type: event
+Gramps ID: E2523
+Event type: Birth
+Event date: 1940-01-04
+Event description: Birth of Boucher, Roger Joseph
+Participant (Primary): Roger Joseph Boucher (Gramps ID: I0896)
+
+Type: event
+Gramps ID: E2524
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Roger Joseph Boucher (Gramps ID: I0896)
+
+Type: event
+Gramps ID: E2525
+Event type: Birth
+Event date: 1941-07-30
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Page, Marvin Ray
+Participant (Primary): Marvin Ray Page (Gramps ID: I0897)
+
+Type: event
+Gramps ID: E2526
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Marvin Ray Page (Gramps ID: I0897)
+
+Type: event
+Gramps ID: E2527
+Event type: Birth
+Event date: 1981-05-28
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Page, David Alan
+Participant (Primary): David Alan Page (Gramps ID: I0899)
+
+Type: event
+Gramps ID: E2528
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): David Alan Page (Gramps ID: I0899)
+
+Type: event
+Gramps ID: E2529
+Event type: Birth
+Event date: 1977-06-23
+Event location: New Haven, New Haven, CT, USA
+Event description: Birth of Warner, Matthew Steven
+Participant (Primary): Matthew Steven Warner (Gramps ID: I0009)
+
+Type: event
+Gramps ID: E2530
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Matthew Steven Warner (Gramps ID: I0009)
+
+Type: event
+Gramps ID: E2531
+Event type: Birth
+Event location: Shelbyville, TN, USA
+Event description: Birth of Goodwin, Sarah
+Participant (Primary): Sarah Goodwin (Gramps ID: I0090)
+
+Type: event
+Gramps ID: E2532
+Event type: Death
+Event location: Shelbyville, TN, USA
+Event description: Death of Goodwin, Sarah
+Participant (Primary): Sarah Goodwin (Gramps ID: I0090)
+
+Type: event
+Gramps ID: E2533
+Event type: Burial
+Event date: 1886
+Event location: Loveland, Larimer, CO, USA
+Event description: Burial of Goodwin, Sarah
+Participant (Primary): Sarah Goodwin (Gramps ID: I0090)
+
+Type: event
+Gramps ID: E2534
+Event type: Birth
+Event date: 1983-08-17
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Page, Mitchell Lee
+Participant (Primary): Mitchell Lee Page (Gramps ID: I0900)
+
+Type: event
+Gramps ID: E2535
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Mitchell Lee Page (Gramps ID: I0900)
+
+Type: event
+Gramps ID: E2536
+Event type: Birth
+Event date: 1992-01-10
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Birth of Page, Todd Christopher
+Participant (Primary): Todd Christopher Page (Gramps ID: I0901)
+
+Type: event
+Gramps ID: E2537
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Todd Christopher Page (Gramps ID: I0901)
+
+Type: event
+Gramps ID: E2538
+Event type: Birth
+Event date: 1961-12-05
+Event location: Allentown, PA, USA
+Event description: Birth of Boucher, Cynthia Louise
+Participant (Primary): Cynthia Louise Boucher (Gramps ID: I0902)
+
+Type: event
+Gramps ID: E2539
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Cynthia Louise Boucher (Gramps ID: I0902)
+
+Type: event
+Gramps ID: E2540
+Event type: Birth
+Event date: 1963-07-17
+Event location: Vallejo, Solano, CA, USA
+Event description: Birth of Boucher, Steven Joseph
+Participant (Primary): Steven Joseph Boucher (Gramps ID: I0904)
+
+Type: event
+Gramps ID: E2541
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Steven Joseph Boucher (Gramps ID: I0904)
+
+Type: event
+Gramps ID: E2542
+Event type: Birth
+Event date: 1991-04-16
+Event description: Birth of Boucher, Kyle Joseph
+Participant (Primary): Kyle Joseph Boucher (Gramps ID: I0906)
+
+Type: event
+Gramps ID: E2543
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Kyle Joseph Boucher (Gramps ID: I0906)
+
+Type: event
+Gramps ID: E2544
+Event type: Birth
+Event date: 1963-02-15
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Page, Debra Dale
+Participant (Primary): Debra Dale Page (Gramps ID: I0907)
+
+Type: event
+Gramps ID: E2545
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Debra Dale Page (Gramps ID: I0907)
+
+Type: event
+Gramps ID: E2546
+Event type: Birth
+Event date: 1967-03-02
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of Page, Darvin Ray
+Participant (Primary): Darvin Ray Page (Gramps ID: I0909)
+
+Type: event
+Gramps ID: E2547
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Darvin Ray Page (Gramps ID: I0909)
+
+Type: event
+Gramps ID: E2548
+Event type: Birth
+Event date: 1827
+Event location: Eugene, OR, USA
+Event description: Birth of йОŃ
ĐŸĐœĐŸĐČ, Moses
+Participant (Primary): Moses йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0091)
+
+Type: event
+Gramps ID: E2549
+Event type: Death
+Event date: 1872
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of йОŃ
ĐŸĐœĐŸĐČ, Moses
+Participant (Primary): Moses йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0091)
+
+Type: event
+Gramps ID: E2550
+Event type: Burial
+Event location: Lexington, NC, USA
+Event description: Burial of йОŃ
ĐŸĐœĐŸĐČ, Moses
+Participant (Primary): Moses йОŃ
ĐŸĐœĐŸĐČ (Gramps ID: I0091)
+
+Type: event
+Gramps ID: E2551
+Event type: Birth
+Event date: 1992-12-29
+Event location: Forest City, NC, USA
+Event description: Birth of Warner, Daniel Arthur
+Participant (Primary): Daniel Arthur Warner (Gramps ID: I0912)
+
+Type: event
+Gramps ID: E2552
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Daniel Arthur Warner (Gramps ID: I0912)
+
+Type: event
+Gramps ID: E2553
+Event type: Birth
+Event date: 1718-01-27
+Event location: Norwalk, OH, USA
+Event description: Birth of Blanco, Gerhard
+Participant (Primary): Gerhard Blanco (Gramps ID: I0915)
+
+Type: event
+Gramps ID: E2554
+Event type: Death
+Event date: 1783-04-26
+Event location: Monroe, WI, USA
+Event description: Death of Blanco, Gerhard
+Participant (Primary): Gerhard Blanco (Gramps ID: I0915)
+
+Type: event
+Gramps ID: E2555
+Event type: Birth
+Event date: 1717-01-26
+Event location: Enterprise, Coffee, AL, USA
+Event description: Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Participant (Primary): Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0916)
+
+Type: event
+Gramps ID: E2556
+Event type: Death
+Event date: 1788-04-20
+Event location: Grants, NM, USA
+Event description: Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Participant (Primary): Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0916)
+
+Type: event
+Gramps ID: E2557
+Event type: Burial
+Event date: 1788-04-22
+Event location: Jackson, TN, USA
+Event description: Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Participant (Primary): Catharine ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0916)
+
+Type: event
+Gramps ID: E2558
+Event type: Birth
+Event date: um 1779
+Event location: Cambridge, MD, USA
+Event description: Birth of Blanco, John Sr.
+Participant (Primary): John Sr. Blanco (Gramps ID: I0919)
+
+Type: event
+Gramps ID: E2559
+Event type: Death
+Event location: Lincoln, Logan, IL, USA
+Event description: Death of Blanco, John Sr.
+Participant (Primary): John Sr. Blanco (Gramps ID: I0919)
+
+Type: event
+Gramps ID: E2560
+Event type: Burial
+Event location: Burlington, NC, USA
+Event description: Burial of Blanco, John Sr.
+Participant (Primary): John Sr. Blanco (Gramps ID: I0919)
+
+Type: event
+Gramps ID: E2561
+Event type: Birth
+Event date: 1829-12
+Event location: Manchester, NH, USA
+Event description: Birth of Holt, Bridget
+Participant (Primary): Bridget Holt (Gramps ID: I0092)
+
+Type: event
+Gramps ID: E2562
+Event type: Death
+Event date: 1904-02-14
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Holt, Bridget
+Participant (Primary): Bridget Holt (Gramps ID: I0092)
+
+Type: event
+Gramps ID: E2563
+Event type: Burial
+Event location: Lexington, NC, USA
+Event description: Burial of Holt, Bridget
+Participant (Primary): Bridget Holt (Gramps ID: I0092)
+
+Type: event
+Gramps ID: E2564
+Event type: Birth
+Event date: 1780
+Event location: Cambridge, MD, USA
+Event description: Birth of Lucas, Christina
+Participant (Primary): Christina Lucas (Gramps ID: I0920)
+
+Type: event
+Gramps ID: E2565
+Event type: Death
+Event location: Berlin, NH, USA
+Event description: Death of Lucas, Christina
+Participant (Primary): Christina Lucas (Gramps ID: I0920)
+
+Type: event
+Gramps ID: E2566
+Event type: Burial
+Event location: Berlin, NH, USA
+Event description: Burial of Lucas, Christina
+Participant (Primary): Christina Lucas (Gramps ID: I0920)
+
+Type: event
+Gramps ID: E2567
+Event type: Birth
+Event date: 1785-04-27
+Event location: Lewistown, PA, USA
+Event description: Birth of Douglas, Mary"Polly"
+Participant (Primary): Mary"Polly" Douglas (Gramps ID: I0921)
+
+Type: event
+Gramps ID: E2568
+Event type: Death
+Event date: 1842-08-30
+Event location: Tuskegee, Macon, AL, USA
+Event description: Death of Douglas, Mary"Polly"
+Participant (Primary): Mary"Polly" Douglas (Gramps ID: I0921)
+
+Type: event
+Gramps ID: E2569
+Event type: Burial
+Event date: 1842-09-01
+Event location: Idaho Falls, Bonneville, ID, USA
+Event description: Burial of Douglas, Mary"Polly"
+Participant (Primary): Mary"Polly" Douglas (Gramps ID: I0921)
+
+Type: event
+Gramps ID: E2570
+Event type: Birth
+Event date: um 1462
+Event location: Albany, OR, USA
+Event description: Birth of Blanco, Mr.
+Participant (Primary): Mr. Blanco (Gramps ID: I0922)
+
+Type: event
+Gramps ID: E2571
+Event type: Birth
+Event date: 1494
+Event location: Albany, OR, USA
+Event description: Birth of Blanco, Hans
+Participant (Primary): Hans Blanco (Gramps ID: I0923)
+
+Type: event
+Gramps ID: E2572
+Event type: Birth
+Event date: 1528
+Event location: Traverse City, MI, USA
+Event description: Birth of Blanco, Hans
+Participant (Primary): Hans Blanco (Gramps ID: I0924)
+
+Type: event
+Gramps ID: E2573
+Event type: Birth
+Event date: 1559
+Event description: Birth of Fisher, Bendichtli
+Participant (Primary): Bendichtli Fisher (Gramps ID: I0925)
+
+Type: event
+Gramps ID: E2574
+Event type: Birth
+Event date: 1555
+Event location: Middlesborough, KY, USA
+Event description: Birth of Blanco, Bendicht
+Participant (Primary): Bendicht Blanco (Gramps ID: I0926)
+
+Type: event
+Gramps ID: E2575
+Event type: Birth
+Event date: 1582-01-07
+Event location: Middlesborough, KY, USA
+Event description: Birth of Blanco, Hans
+Participant (Primary): Hans Blanco (Gramps ID: I0927)
+
+Type: event
+Gramps ID: E2576
+Event type: Birth
+Event date: 1584-09-27
+Event description: Birth of Buchanan, Elsbeth
+Participant (Primary): Elsbeth Buchanan (Gramps ID: I0928)
+
+Type: event
+Gramps ID: E2577
+Event type: Birth
+Event date: 1639-11-10
+Event location: Middlesborough, KY, USA
+Event description: Birth of Blanco, Heinrich
+Participant (Primary): Heinrich Blanco (Gramps ID: I0929)
+
+Type: event
+Gramps ID: E2578
+Event type: Birth
+Event location: Paducah, McCracken, KY-IL, USA
+Event description: Birth of MarĂn, Alfred Franklin(Frank)
+Participant (Primary): Alfred Franklin(Frank) MarĂn (Gramps ID: I0093)
+
+Type: event
+Gramps ID: E2579
+Event type: Death
+Event date: 1864-12-25
+Event location: Worthington, MN, USA
+Event description: Death of MarĂn, Alfred Franklin(Frank)
+Participant (Primary): Alfred Franklin(Frank) MarĂn (Gramps ID: I0093)
+
+Type: event
+Gramps ID: E2580
+Event type: Burial
+Event date: 1860-12-27
+Event location: Douglas, Coffee, GA, USA
+Event description: Burial of MarĂn, Alfred Franklin(Frank)
+Participant (Primary): Alfred Franklin(Frank) MarĂn (Gramps ID: I0093)
+
+Type: event
+Gramps ID: E2581
+Event type: Birth
+Event date: um 1655
+Event location: Cheyenne, WY, USA
+Event description: Birth of Schmidt, Barbli
+Participant (Primary): Barbli Schmidt (Gramps ID: I0930)
+
+Type: event
+Gramps ID: E2582
+Event type: Birth
+Event date: 1680-03-28
+Event location: Casper, WY, USA
+Event description: Birth of Blanco, Hans(Johannes)
+Participant (Primary): Hans(Johannes) Blanco (Gramps ID: I0931)
+
+Type: event
+Gramps ID: E2583
+Event type: Death
+Event location: Plattsburgh, Clinton, NY, USA
+Event description: Death of Blanco, Hans(Johannes)
+Participant (Primary): Hans(Johannes) Blanco (Gramps ID: I0931)
+
+Type: event
+Gramps ID: E2584
+Event type: Birth
+Event date: 1691
+Event location: Quincy, Adams, IL-MO, USA
+Event description: Birth of Sullivan, Anna
+Participant (Primary): Anna Sullivan (Gramps ID: I0932)
+
+Type: event
+Gramps ID: E2585
+Event type: Birth
+Event date: 1607
+Event description: Birth of Jenkins, Peter
+Participant (Primary): Peter Jenkins (Gramps ID: I0935)
+
+Type: event
+Gramps ID: E2586
+Event type: Death
+Event date: 1680-10-14
+Event description: Death of Jenkins, Peter
+Participant (Primary): Peter Jenkins (Gramps ID: I0935)
+
+Type: event
+Gramps ID: E2587
+Event type: Birth
+Event date: 1612
+Event description: Birth of Marsh, Margaret
+Participant (Primary): Margaret Marsh (Gramps ID: I0936)
+
+Type: event
+Gramps ID: E2588
+Event type: Death
+Event date: 1680-05-20
+Event description: Death of Marsh, Margaret
+Participant (Primary): Margaret Marsh (Gramps ID: I0936)
+
+Type: event
+Gramps ID: E2589
+Event type: Birth
+Event date: 1632-05-15
+Event description: Birth of Austin, Johannas
+Participant (Primary): Johannas Austin (Gramps ID: I0938)
+
+Type: event
+Gramps ID: E2590
+Event type: Birth
+Event date: 1630-02
+Event description: Birth of Jenkins, Margaret
+Participant (Primary): Margaret Jenkins (Gramps ID: I0939)
+
+Type: event
+Gramps ID: E2591
+Event type: Death
+Event date: 1708-07-25
+Event description: Death of Jenkins, Margaret
+Participant (Primary): Margaret Jenkins (Gramps ID: I0939)
+
+Type: event
+Gramps ID: E2592
+Event type: Birth
+Event date: 1843-05-13
+Event location: Provo, UT, USA
+Event description: Birth of Floyd, Martha Frances "Fannie"
+Participant (Primary): Martha Frances "Fannie" Floyd (Gramps ID: I0094)
+
+Type: event
+Gramps ID: E2593
+Event type: Death
+Event date: 1913-04-17
+Event location: Syracuse, Onondaga, NY, USA
+Event description: Death of Floyd, Martha Frances "Fannie"
+Participant (Primary): Martha Frances "Fannie" Floyd (Gramps ID: I0094)
+
+Type: event
+Gramps ID: E2594
+Event type: Burial
+Event date: 1913-04-19
+Event location: Corpus Christi, Nueces, TX, USA
+Event description: Burial of Floyd, Martha Frances "Fannie"
+Participant (Primary): Martha Frances "Fannie" Floyd (Gramps ID: I0094)
+
+Type: event
+Gramps ID: E2595
+Event type: Birth
+Event date: 1644
+Event description: Birth of Reid, Hans
+Participant (Primary): Hans Reid (Gramps ID: I0940)
+
+Type: event
+Gramps ID: E2596
+Event type: Death
+Event date: 1707-12-06
+Event description: Death of Reid, Hans
+Participant (Primary): Hans Reid (Gramps ID: I0940)
+
+Type: event
+Gramps ID: E2597
+Event type: Birth
+Event date: 1645
+Event description: Birth of ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+Participant (Primary): Cathern ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ (Gramps ID: I0941)
+
+Type: event
+Gramps ID: E2598
+Event type: Death
+Event date: 1699-03-02
+Event description: Death of ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+Participant (Primary): Cathern ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ (Gramps ID: I0941)
+
+Type: event
+Gramps ID: E2599
+Event type: Birth
+Event date: 1658
+Event location: Kalamazoo, MI, USA
+Event description: Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+Participant (Primary): Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0942)
+
+Type: event
+Gramps ID: E2600
+Event type: Death
+Event date: 1718-08-16
+Event location: Kalamazoo, MI, USA
+Event description: Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+Participant (Primary): Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0942)
+
+Type: event
+Gramps ID: E2601
+Event type: Burial
+Event location: Liberal, Seward, KS, USA
+Event description: Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob
+Participant (Primary): Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0942)
+
+Type: event
+Gramps ID: E2602
+Event type: Birth
+Event date: 1656-05-21
+Event description: Birth of SuĂĄrez, Marie
+Participant (Primary): Marie SuĂĄrez (Gramps ID: I0943)
+
+Type: event
+Gramps ID: E2603
+Event type: Death
+Event date: 1731-01-05
+Event description: Death of SuĂĄrez, Marie
+Participant (Primary): Marie SuĂĄrez (Gramps ID: I0943)
+
+Type: event
+Gramps ID: E2604
+Event type: Birth
+Event date: 1664
+Event description: Birth of Fortin, Matthias
+Participant (Primary): Matthias Fortin (Gramps ID: I0944)
+
+Type: event
+Gramps ID: E2605
+Event type: Death
+Event date: 1744-06-23
+Event description: Death of Fortin, Matthias
+Participant (Primary): Matthias Fortin (Gramps ID: I0944)
+
+Type: event
+Gramps ID: E2606
+Event type: Birth
+Event date: 1667-05
+Event description: Birth of Baker, Margaret
+Participant (Primary): Margaret Baker (Gramps ID: I0945)
+
+Type: event
+Gramps ID: E2607
+Event type: Death
+Event date: 1741-10-25
+Event description: Death of Baker, Margaret
+Participant (Primary): Margaret Baker (Gramps ID: I0945)
+
+Type: event
+Gramps ID: E2608
+Event type: Birth
+Event date: 1690-02-23
+Event location: Kalamazoo, MI, USA
+Event description: Birth of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+Participant (Primary): Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0946)
+
+Type: event
+Gramps ID: E2609
+Event type: Death
+Event date: 1750-12-25
+Event location: Kalamazoo, MI, USA
+Event description: Death of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+Participant (Primary): Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0946)
+
+Type: event
+Gramps ID: E2610
+Event type: Burial
+Event location: Liberal, Seward, KS, USA
+Event description: Burial of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob
+Participant (Primary): Johannas Jacob ĐĐ”Đ»ĐŸŃŃĐŸĐČ (Gramps ID: I0946)
+
+Type: event
+Gramps ID: E2611
+Event type: Birth
+Event date: 1694-02-04
+Event description: Birth of Reid, Anna Catherina
+Participant (Primary): Anna Catherina Reid (Gramps ID: I0947)
+
+Type: event
+Gramps ID: E2612
+Event type: Death
+Event date: 1740-11-20
+Event location: Kalamazoo, MI, USA
+Event description: Death of Reid, Anna Catherina
+Participant (Primary): Anna Catherina Reid (Gramps ID: I0947)
+
+Type: event
+Gramps ID: E2613
+Event type: Burial
+Event location: Liberal, Seward, KS, USA
+Event description: Burial of Reid, Anna Catherina
+Participant (Primary): Anna Catherina Reid (Gramps ID: I0947)
+
+Type: event
+Gramps ID: E2614
+Event type: Death
+Event location: Lewisburg, PA, USA
+Event description: Death of MarĂn, William
+Participant (Primary): William MarĂn (Gramps ID: I0948)
+
+Type: event
+Gramps ID: E2615
+Event type: Burial
+Event location: Sheridan, WY, USA
+Event description: Burial of MarĂn, William
+Participant (Primary): William MarĂn (Gramps ID: I0948)
+
+Type: event
+Gramps ID: E2616
+Event type: Birth
+Event location: Peru, Miami, IN, USA
+Event description: Birth of Schultz, Rev.Isaac
+Participant (Primary): Rev.Isaac Schultz (Gramps ID: I0949)
+
+Type: event
+Gramps ID: E2617
+Event type: Death
+Event date: um 1818
+Event location: Seneca Falls, Seneca, NY, USA
+Event description: Death of Schultz, Rev.Isaac
+Participant (Primary): Rev.Isaac Schultz (Gramps ID: I0949)
+
+Type: event
+Gramps ID: E2618
+Event type: Burial
+Event date: um 1818
+Event location: PR, USA
+Event description: Burial of Schultz, Rev.Isaac
+Participant (Primary): Rev.Isaac Schultz (Gramps ID: I0949)
+
+Type: event
+Gramps ID: E2619
+Event type: Birth
+Event date: 1820
+Event location: Andrews, Andrews, TX, USA
+Event description: Birth of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0095)
+
+Type: event
+Gramps ID: E2620
+Event type: Death
+Event date: 1859-01-09
+Event location: Beaumont, Jefferson, TX, USA
+Event description: Death of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0095)
+
+Type: event
+Gramps ID: E2621
+Event type: Burial
+Event date: 1859
+Event location: Lexington, NE, USA
+Event description: Burial of Boucher, Michael
+Participant (Primary): Michael Boucher (Gramps ID: I0095)
+
+Type: event
+Gramps ID: E2622
+Event type: Death
+Event location: Little Rock, Pulaski, AR, USA
+Event description: Death of Francis, Elizabeth
+Participant (Primary): Elizabeth Francis (Gramps ID: I0950)
+
+Type: event
+Gramps ID: E2623
+Event type: Burial
+Event location: Little Rock, Pulaski, AR, USA
+Event description: Burial of Francis, Elizabeth
+Participant (Primary): Elizabeth Francis (Gramps ID: I0950)
+
+Type: event
+Gramps ID: E2624
+Event type: Birth
+Event date: vor 1665
+Event location: Ketchikan, AK, USA
+Event description: Birth of Aguilar, John
+Participant (Primary): John Aguilar (Gramps ID: I0953)
+
+Type: event
+Gramps ID: E2625
+Event type: Death
+Event date: vor 1745-02
+Event location: Wooster, OH, USA
+Event description: Death of Aguilar, John
+Participant (Primary): John Aguilar (Gramps ID: I0953)
+
+Type: event
+Gramps ID: E2626
+Event type: Birth
+Event date: 1615
+Event location: Fajardo, PR, USA
+Event description: Birth of Howell, JOHN
+Participant (Primary): JOHN Howell (Gramps ID: I0954)
+
+Type: event
+Gramps ID: E2627
+Event type: Death
+Event date: 1644-12-28
+Event description: Death of Howell, JOHN
+Participant (Primary): JOHN Howell (Gramps ID: I0954)
+
+Type: event
+Gramps ID: E2628
+Event type: Birth
+Event date: 1747-08-22
+Event location: Lock Haven, PA, USA
+Event description: Birth of Payne, George
+Participant (Primary): George Payne (Gramps ID: I0955)
+
+Type: event
+Gramps ID: E2629
+Event type: Death
+Event date: 1821-07-09
+Event location: Jackson, MI, USA
+Event description: Death of Payne, George
+Participant (Primary): George Payne (Gramps ID: I0955)
+
+Type: event
+Gramps ID: E2630
+Event type: Burial
+Event date: 1821-07-11
+Event location: Jackson, MI, USA
+Event description: Burial of Payne, George
+Participant (Primary): George Payne (Gramps ID: I0955)
+
+Type: event
+Gramps ID: E2631
+Event type: Birth
+Event date: 1675
+Event location: Tampa, Hillsborough, FL, USA
+Event description: Birth of Brooks, Marquis I
+Participant (Primary): Marquis I Brooks (Gramps ID: I0956)
+
+Type: event
+Gramps ID: E2632
+Event type: Death
+Event date: 1741
+Event location: Martinsville, VA, USA
+Event description: Death of Brooks, Marquis I
+Participant (Primary): Marquis I Brooks (Gramps ID: I0956)
+
+Type: event
+Gramps ID: E2633
+Event type: Birth
+Event date: 1705
+Event location: Bennettsville, SC, USA
+Event description: Birth of Brooks, Major Marquis II
+Participant (Primary): Major Marquis II Brooks (Gramps ID: I0957)
+
+Type: event
+Gramps ID: E2634
+Event type: Death
+Event date: 1755-05-10
+Event location: Duluth, MN, USA
+Event description: Death of Brooks, Major Marquis II
+Participant (Primary): Major Marquis II Brooks (Gramps ID: I0957)
+
+Type: event
+Gramps ID: E2635
+Event type: Birth
+Event date: 1709
+Event location: Pittsburgh, PA, USA
+Event description: Birth of Rubio, Winifred
+Participant (Primary): Winifred Rubio (Gramps ID: I0958)
+
+Type: event
+Gramps ID: E2636
+Event type: Death
+Event date: 1751-10-06
+Event location: Laredo, Webb, TX, USA
+Event description: Death of Rubio, Winifred
+Participant (Primary): Winifred Rubio (Gramps ID: I0958)
+
+Type: event
+Gramps ID: E2637
+Event type: Burial
+Event date: 1751
+Event location: Marshfield, WI, USA
+Event description: Burial of Rubio, Winifred
+Participant (Primary): Winifred Rubio (Gramps ID: I0958)
+
+Type: event
+Gramps ID: E2638
+Event type: Birth
+Event location: Durham, NC, USA
+Event description: Birth of Brooks, Elizabeth"Betty"
+Participant (Primary): Elizabeth"Betty" Brooks (Gramps ID: I0959)
+
+Type: event
+Gramps ID: E2639
+Event type: Death
+Event location: Dickinson, ND, USA
+Event description: Death of Brooks, Elizabeth"Betty"
+Participant (Primary): Elizabeth"Betty" Brooks (Gramps ID: I0959)
+
+Type: event
+Gramps ID: E2640
+Event type: Burial
+Event location: Roseburg, OR, USA
+Event description: Burial of Brooks, Elizabeth"Betty"
+Participant (Primary): Elizabeth"Betty" Brooks (Gramps ID: I0959)
+
+Type: event
+Gramps ID: E2641
+Event type: Birth
+Event date: 1824
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Boucher, Honora
+Participant (Primary): Honora Boucher (Gramps ID: I0096)
+
+Type: event
+Gramps ID: E2642
+Event type: Death
+Event date: 1895-02-09
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Boucher, Honora
+Participant (Primary): Honora Boucher (Gramps ID: I0096)
+
+Type: event
+Gramps ID: E2643
+Event type: Burial
+Event date: 1895-02
+Event location: Lexington, NE, USA
+Event description: Burial of Boucher, Honora
+Participant (Primary): Honora Boucher (Gramps ID: I0096)
+
+Type: event
+Gramps ID: E2644
+Event type: Birth
+Event date: um 1655
+Event location: Fort Lauderdale, Broward, FL, USA
+Event description: Birth of Payne, Leonard
+Participant (Primary): Leonard Payne (Gramps ID: I0960)
+
+Type: event
+Gramps ID: E2645
+Event type: Death
+Event date: 1745-10
+Event location: Duluth, MN, USA
+Event description: Death of Payne, Leonard
+Participant (Primary): Leonard Payne (Gramps ID: I0960)
+
+Type: event
+Gramps ID: E2646
+Event type: Burial
+Event date: 1745
+Event location: Duluth, MN, USA
+Event description: Burial of Payne, Leonard
+Participant (Primary): Leonard Payne (Gramps ID: I0960)
+
+Type: event
+Gramps ID: E2647
+Event type: Death
+Event date: vor 1745
+Event location: Duluth, MN, USA
+Event description: Death of Hall, Elizabeth
+Participant (Primary): Elizabeth Hall (Gramps ID: I0961)
+
+Type: event
+Gramps ID: E2648
+Event type: Burial
+Event location: Duluth, MN, USA
+Event description: Burial of Hall, Elizabeth
+Participant (Primary): Elizabeth Hall (Gramps ID: I0961)
+
+Type: event
+Gramps ID: E2649
+Event type: Birth
+Event date: vor 1720
+Event location: Duluth, MN, USA
+Event description: Birth of Payne, Leonard?
+Participant (Primary): Leonard? Payne (Gramps ID: I0962)
+
+Type: event
+Gramps ID: E2650
+Event type: Death
+Event date: nach 1757
+Event location: Duluth, MN, USA
+Event description: Death of Payne, Leonard?
+Participant (Primary): Leonard? Payne (Gramps ID: I0962)
+
+Type: event
+Gramps ID: E2651
+Event type: Burial
+Event location: Duluth, MN, USA
+Event description: Burial of Payne, Leonard?
+Participant (Primary): Leonard? Payne (Gramps ID: I0962)
+
+Type: event
+Gramps ID: E2652
+Event type: Birth
+Event date: 1669
+Event location: Spokane, WA, USA
+Event description: Birth of Reynolds, David
+Participant (Primary): David Reynolds (Gramps ID: I0963)
+
+Type: event
+Gramps ID: E2653
+Event type: Death
+Event date: 1695
+Event location: Sidney, OH, USA
+Event description: Death of Reynolds, David
+Participant (Primary): David Reynolds (Gramps ID: I0963)
+
+Type: event
+Gramps ID: E2654
+Event type: Burial
+Event location: Pierre, SD, USA
+Event description: Burial of Reynolds, David
+Participant (Primary): David Reynolds (Gramps ID: I0963)
+
+Type: event
+Gramps ID: E2655
+Event type: Birth
+Event date: 1622
+Event location: Las Vegas, NM, USA
+Event description: Birth of Reynolds, Col. John
+Participant (Primary): Col. John Reynolds (Gramps ID: I0964)
+
+Type: event
+Gramps ID: E2656
+Event type: Death
+Event date: 1670
+Event location: Laredo, Webb, TX, USA
+Event description: Death of Reynolds, Col. John
+Participant (Primary): Col. John Reynolds (Gramps ID: I0964)
+
+Type: event
+Gramps ID: E2657
+Event type: Burial
+Event location: Laredo, Webb, TX, USA
+Event description: Burial of Reynolds, Col. John
+Participant (Primary): Col. John Reynolds (Gramps ID: I0964)
+
+Type: event
+Gramps ID: E2658
+Event type: Birth
+Event date: 1643
+Event location: Chester, SC, USA
+Event description: Birth of Reynolds, Nicholas
+Participant (Primary): Nicholas Reynolds (Gramps ID: I0965)
+
+Type: event
+Gramps ID: E2659
+Event type: Death
+Event date: vor 1695
+Event location: Sidney, OH, USA
+Event description: Death of Reynolds, Nicholas
+Participant (Primary): Nicholas Reynolds (Gramps ID: I0965)
+
+Type: event
+Gramps ID: E2660
+Event type: Burial
+Event location: Sunbury, PA, USA
+Event description: Burial of Reynolds, Nicholas
+Participant (Primary): Nicholas Reynolds (Gramps ID: I0965)
+
+Type: event
+Gramps ID: E2661
+Event type: Birth
+Event date: um 1695
+Event location: Moses Lake, WA, USA
+Event description: Birth of Reynolds, William
+Participant (Primary): William Reynolds (Gramps ID: I0966)
+
+Type: event
+Gramps ID: E2662
+Event type: Death
+Event date: um 1788
+Event location: Manhattan, Riley, KS, USA
+Event description: Death of Reynolds, William
+Participant (Primary): William Reynolds (Gramps ID: I0966)
+
+Type: event
+Gramps ID: E2663
+Event type: Burial
+Event location: Manhattan, Riley, KS, USA
+Event description: Burial of Reynolds, William
+Participant (Primary): William Reynolds (Gramps ID: I0966)
+
+Type: event
+Gramps ID: E2664
+Event type: Death
+Event date: 1788
+Event location: Easton, MD, USA
+Event description: Death of Reynolds, John
+Participant (Primary): John Reynolds (Gramps ID: I0967)
+
+Type: event
+Gramps ID: E2665
+Event type: Burial
+Event location: Laredo, Webb, TX, USA
+Event description: Burial of Reynolds, John
+Participant (Primary): John Reynolds (Gramps ID: I0967)
+
+Type: event
+Gramps ID: E2666
+Event type: Birth
+Event location: Carson City, NV, USA
+Event description: Birth of Reynolds, Mary Jane
+Participant (Primary): Mary Jane Reynolds (Gramps ID: I0968)
+
+Type: event
+Gramps ID: E2667
+Event type: Death
+Event location: Winchester, VA, USA
+Event description: Death of Reynolds, Mary Jane
+Participant (Primary): Mary Jane Reynolds (Gramps ID: I0968)
+
+Type: event
+Gramps ID: E2668
+Event type: Birth
+Event date: 1735-11-09
+Event location: Willmar, MN, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+Participant (Primary): Moses Aaron ĐĐŒĐžŃŃОДĐČ (Gramps ID: I0969)
+
+Type: event
+Gramps ID: E2669
+Event type: Death
+Event location: Richmond, VA, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+Participant (Primary): Moses Aaron ĐĐŒĐžŃŃОДĐČ (Gramps ID: I0969)
+
+Type: event
+Gramps ID: E2670
+Event type: Burial
+Event location: Danville, Vermilion, IL, USA
+Event description: Burial of ĐĐŒĐžŃŃОДĐČ, Moses Aaron
+Participant (Primary): Moses Aaron ĐĐŒĐžŃŃОДĐČ (Gramps ID: I0969)
+
+Type: event
+Gramps ID: E2671
+Event type: Birth
+Event date: 1825-11-27
+Event location: Escanaba, MI, USA
+Event description: Birth of Fernandez, Thomas
+Participant (Primary): Thomas Fernandez (Gramps ID: I0097)
+
+Type: event
+Gramps ID: E2672
+Event type: Death
+Event date: 1902-11-26
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Fernandez, Thomas
+Participant (Primary): Thomas Fernandez (Gramps ID: I0097)
+
+Type: event
+Gramps ID: E2673
+Event type: Burial
+Event date: 1902
+Event location: The Villages, Sumter, FL, USA
+Event description: Burial of Fernandez, Thomas
+Participant (Primary): Thomas Fernandez (Gramps ID: I0097)
+
+Type: event
+Gramps ID: E2674
+Event type: Birth
+Event date: 1761-08-07
+Event location: Columbia, MO, USA
+Event description: Birth of Diaz, Frances
+Participant (Primary): Frances Diaz (Gramps ID: I0970)
+
+Type: event
+Gramps ID: E2675
+Event type: Death
+Event date: 1851-10-06
+Event location: Jackson, MI, USA
+Event description: Death of Diaz, Frances
+Participant (Primary): Frances Diaz (Gramps ID: I0970)
+
+Type: event
+Gramps ID: E2676
+Event type: Burial
+Event date: 1851-10-08
+Event location: Jackson, MI, USA
+Event description: Burial of Diaz, Frances
+Participant (Primary): Frances Diaz (Gramps ID: I0970)
+
+Type: event
+Gramps ID: E2677
+Event type: Birth
+Event date: 1993-08-20
+Event location: Palm Bay, Brevard, FL, USA
+Event description: Birth of JĂžrgensen, Maggie Leigh
+Participant (Primary): Maggie Leigh JĂžrgensen (Gramps ID: I0971)
+
+Type: event
+Gramps ID: E2678
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Maggie Leigh JĂžrgensen (Gramps ID: I0971)
+
+Type: event
+Gramps ID: E2679
+Event type: Birth
+Event date: um 1784-09
+Event location: Bogalusa, Washington, LA, USA
+Event description: Birth of КДŃŃĐ°ĐșĐŸĐČ, George
+Participant (Primary): George КДŃŃĐ°ĐșĐŸĐČ (Gramps ID: I0972)
+
+Type: event
+Gramps ID: E2680
+Event type: Death
+Event date: 1864-03-09
+Event location: Orlando, Orange, FL, USA
+Event description: Death of КДŃŃĐ°ĐșĐŸĐČ, George
+Participant (Primary): George КДŃŃĐ°ĐșĐŸĐČ (Gramps ID: I0972)
+
+Type: event
+Gramps ID: E2681
+Event type: Burial
+Event date: 1864-03
+Event location: Michigan City, LaPorte, IN, USA
+Event description: Burial of КДŃŃĐ°ĐșĐŸĐČ, George
+Participant (Primary): George КДŃŃĐ°ĐșĐŸĐČ (Gramps ID: I0972)
+
+Type: event
+Gramps ID: E2682
+Event type: Birth
+Event location: Bogalusa, Washington, LA, USA
+Event description: Birth of Daniels, Phoebe
+Participant (Primary): Phoebe Daniels (Gramps ID: I0973)
+
+Type: event
+Gramps ID: E2683
+Event type: Death
+Event location: Ruston, Lincoln, LA, USA
+Event description: Death of Riley, Thomas
+Participant (Primary): Thomas Riley (Gramps ID: I0974)
+
+Type: event
+Gramps ID: E2684
+Event type: Burial
+Event location: Hays, Ellis, KS, USA
+Event description: Burial of Riley, Thomas
+Participant (Primary): Thomas Riley (Gramps ID: I0974)
+
+Type: event
+Gramps ID: E2685
+Event type: Birth
+Event date: 1805-10-27
+Event location: Wauchula, Hardee, FL, USA
+Event description: Birth of Martel, Henry
+Participant (Primary): Henry Martel (Gramps ID: I0975)
+
+Type: event
+Gramps ID: E2686
+Event type: Death
+Event date: 1902-01-18
+Event location: Helena, MT, USA
+Event description: Death of Martel, Henry
+Participant (Primary): Henry Martel (Gramps ID: I0975)
+
+Type: event
+Gramps ID: E2687
+Event type: Burial
+Event date: 1902
+Event location: Helena, MT, USA
+Event description: Burial of Martel, Henry
+Participant (Primary): Henry Martel (Gramps ID: I0975)
+
+Type: event
+Gramps ID: E2688
+Event type: Birth
+Event location: Ardmore, OK, USA
+Event description: Birth of HĂ©bert, Ruth Ann
+Participant (Primary): Ruth Ann HĂ©bert (Gramps ID: I0976)
+
+Type: event
+Gramps ID: E2689
+Event type: Death
+Event date: 1843
+Event description: Death of HĂ©bert, Ruth Ann
+Participant (Primary): Ruth Ann HĂ©bert (Gramps ID: I0976)
+
+Type: event
+Gramps ID: E2690
+Event type: Birth
+Event date: 1993-09-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Birth of Osborne, Aaron Patrick
+Participant (Primary): Aaron Patrick Osborne (Gramps ID: I0977)
+
+Type: event
+Gramps ID: E2691
+Event type: Death
+Event date: 1995-02-15
+Event location: Ottawa, La Salle, IL, USA
+Event description: Death of Osborne, Aaron Patrick
+Participant (Primary): Aaron Patrick Osborne (Gramps ID: I0977)
+
+Type: event
+Gramps ID: E2692
+Event type: Burial
+Event location: Blackfoot, Bingham, ID, USA
+Event description: Burial of Osborne, Aaron Patrick
+Participant (Primary): Aaron Patrick Osborne (Gramps ID: I0977)
+
+Type: event
+Gramps ID: E2693
+Event type: Birth
+Event date: 1843
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Ortega, Catherine
+Participant (Primary): Catherine Ortega (Gramps ID: I0098)
+
+Type: event
+Gramps ID: E2694
+Event type: Death
+Event date: 1876
+Event description: Death of Ortega, Catherine
+Participant (Primary): Catherine Ortega (Gramps ID: I0098)
+
+Type: event
+Gramps ID: E2695
+Event type: Birth
+Event date: 1993-10-27
+Event location: Wheeling, WV-OH, USA
+Event description: Birth of Willis, Carissa Nicole
+Participant (Primary): Carissa Nicole Willis (Gramps ID: I0980)
+
+Type: event
+Gramps ID: E2696
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Carissa Nicole Willis (Gramps ID: I0980)
+
+Type: event
+Gramps ID: E2697
+Event type: Birth
+Event date: 1990
+Event location: Bremerton, WA, USA
+Event description: Birth of Haynes, Melany
+Participant (Primary): Melany Haynes (Gramps ID: I0981)
+
+Type: event
+Gramps ID: E2698
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Melany Haynes (Gramps ID: I0981)
+
+Type: event
+Gramps ID: E2699
+Event type: Birth
+Event date: 1986-08-26
+Event location: Bluefield, WV-VA, USA
+Event description: Birth of Warner, Whitney Lianne
+Participant (Primary): Whitney Lianne Warner (Gramps ID: I0983)
+
+Type: event
+Gramps ID: E2700
+Event type: LVG
+Event description: Custom FTW5 tag to specify LIVING not specified in GEDCOM 5.5
+Participant (Primary): Whitney Lianne Warner (Gramps ID: I0983)
+
+Type: event
+Gramps ID: E2701
+Event type: Birth
+Event date: um 1648
+Event location: Gaffney, SC, USA
+Event description: Birth of Diaz, William
+Participant (Primary): William Diaz (Gramps ID: I0984)
+
+Type: event
+Gramps ID: E2702
+Event type: Death
+Event date: 1700-09-16
+Event location: Coldwater, MI, USA
+Event description: Death of Diaz, William
+Participant (Primary): William Diaz (Gramps ID: I0984)
+
+Type: event
+Gramps ID: E2703
+Event type: Birth
+Event date: um 1656
+Event description: Birth of Baldwin, Anne
+Participant (Primary): Anne Baldwin (Gramps ID: I0985)
+
+Type: event
+Gramps ID: E2704
+Event type: Death
+Event location: Louisville, Jefferson, KY, USA
+Event description: Death of Baldwin, Anne
+Participant (Primary): Anne Baldwin (Gramps ID: I0985)
+
+Type: event
+Gramps ID: E2705
+Event type: Burial
+Event location: Louisville, Jefferson, KY, USA
+Event description: Burial of Baldwin, Anne
+Participant (Primary): Anne Baldwin (Gramps ID: I0985)
+
+Type: event
+Gramps ID: E2706
+Event type: Birth
+Event date: um 1687
+Event location: Keokuk, Lee, IA, USA
+Event description: Birth of ĐĐŒĐžŃŃОДĐČ, Charles Sr.
+Participant (Primary): Charles Sr. ĐĐŒĐžŃŃОДĐČ (Gramps ID: I0986)
+
+Type: event
+Gramps ID: E2707
+Event type: Death
+Event date: 1750-05-13
+Event location: Seneca, SC, USA
+Event description: Death of ĐĐŒĐžŃŃОДĐČ, Charles Sr.
+Participant (Primary): Charles Sr. ĐĐŒĐžŃŃОДĐČ (Gramps ID: I0986)
+
+Type: event
+Gramps ID: E2708
+Event type: Birth
+Event date: um 1718
+Event description: Birth of Lapointe, Lucy aka Sarah
+Participant (Primary): Lucy aka Sarah Lapointe (Gramps ID: I0987)
+
+Type: event
+Gramps ID: E2709
+Event type: Death
+Event date: um 1741
+Event description: Death of Lapointe, Lucy aka Sarah
+Participant (Primary): Lucy aka Sarah Lapointe (Gramps ID: I0987)
+
+Type: event
+Gramps ID: E2710
+Event type: Birth
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Howell, John
+Participant (Primary): John Howell (Gramps ID: I0988)
+
+Type: event
+Gramps ID: E2711
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of Howell, John
+Participant (Primary): John Howell (Gramps ID: I0988)
+
+Type: event
+Gramps ID: E2712
+Event type: Burial
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Burial of Howell, John
+Participant (Primary): John Howell (Gramps ID: I0988)
+
+Type: event
+Gramps ID: E2713
+Event type: Birth
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Yates, Sarah
+Participant (Primary): Sarah Yates (Gramps ID: I0989)
+
+Type: event
+Gramps ID: E2714
+Event type: Death
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Death of Yates, Sarah
+Participant (Primary): Sarah Yates (Gramps ID: I0989)
+
+Type: event
+Gramps ID: E2715
+Event type: Burial
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Burial of Yates, Sarah
+Participant (Primary): Sarah Yates (Gramps ID: I0989)
+
+Type: event
+Gramps ID: E2716
+Event type: Birth
+Event date: 1787
+Event location: Laramie, WY, USA
+Event description: Birth of Fernandez, Thomas
+Participant (Primary): Thomas Fernandez (Gramps ID: I0099)
+
+Type: event
+Gramps ID: E2717
+Event type: Death
+Event location: Oshkosh, WI, USA
+Event description: Death of Fernandez, Thomas
+Participant (Primary): Thomas Fernandez (Gramps ID: I0099)
+
+Type: event
+Gramps ID: E2718
+Event type: Birth
+Event date: 1788
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Webb, Andrew
+Participant (Primary): Andrew Webb (Gramps ID: I0990)
+
+Type: event
+Gramps ID: E2719
+Event type: Death
+Event date: vor 1850
+Event location: Rolla, MO, USA
+Event description: Death of Webb, Andrew
+Participant (Primary): Andrew Webb (Gramps ID: I0990)
+
+Type: event
+Gramps ID: E2720
+Event type: Burial
+Event location: Enid, OK, USA
+Event description: Burial of Webb, Andrew
+Participant (Primary): Andrew Webb (Gramps ID: I0990)
+
+Type: event
+Gramps ID: E2721
+Event type: Birth
+Event date: 1800
+Event location: Loveland, Larimer, CO, USA
+Event description: Birth of Webb, Margaret Margarite?
+Participant (Primary): Margaret Margarite? Webb (Gramps ID: I0991)
+
+Type: event
+Gramps ID: E2722
+Event type: Death
+Event date: nach 1860
+Event location: Rolla, MO, USA
+Event description: Death of Webb, Margaret Margarite?
+Participant (Primary): Margaret Margarite? Webb (Gramps ID: I0991)
+
+Type: event
+Gramps ID: E2723
+Event type: Burial
+Event date: nach 1860
+Event location: Enid, OK, USA
+Event description: Burial of Webb, Margaret Margarite?
+Participant (Primary): Margaret Margarite? Webb (Gramps ID: I0991)
+
+Type: event
+Gramps ID: E2724
+Event type: Death
+Event location: Rolla, MO, USA
+Event description: Death of Delgado
+Participant (Primary): Delgado (Gramps ID: I0992)
+
+Type: event
+Gramps ID: E2725
+Event type: Burial
+Event location: Rolla, MO, USA
+Event description: Burial of Delgado
+Participant (Primary): Delgado (Gramps ID: I0992)
+
+Type: event
+Gramps ID: E2726
+Event type: Birth
+Event date: 1785
+Event location: Meridian, MS, USA
+Event description: Birth of Tyler, Mary A.
+Participant (Primary): Mary A. Tyler (Gramps ID: I0993)
+
+Type: event
+Gramps ID: E2727
+Event type: Death
+Event location: Rolla, MO, USA
+Event description: Death of Tyler, Mary A.
+Participant (Primary): Mary A. Tyler (Gramps ID: I0993)
+
+Type: event
+Gramps ID: E2728
+Event type: Burial
+Event location: Rolla, MO, USA
+Event description: Burial of Tyler, Mary A.
+Participant (Primary): Mary A. Tyler (Gramps ID: I0993)
+
+Type: event
+Gramps ID: E2729
+Event type: Birth
+Event date: 1821
+Event location: Ontario, OR-ID, USA
+Event description: Birth of Webb, Alexander
+Participant (Primary): Alexander Webb (Gramps ID: I0994)
+
+Type: event
+Gramps ID: E2730
+Event type: Death
+Event date: 1854-02-02
+Event location: Janesville, WI, USA
+Event description: Death of Webb, Alexander
+Participant (Primary): Alexander Webb (Gramps ID: I0994)
+
+Type: event
+Gramps ID: E2731
+Event type: Burial
+Event date: 1854-02
+Event location: Fort Worth, Tarrant, TX, USA
+Event description: Burial of Webb, Alexander
+Participant (Primary): Alexander Webb (Gramps ID: I0994)
+
+Type: event
+Gramps ID: E2732
+Event type: Birth
+Event date: 1825
+Event location: Madera, Madera, CA, USA
+Event description: Birth of Delgado, Mary Ann
+Participant (Primary): Mary Ann Delgado (Gramps ID: I0995)
+
+Type: event
+Gramps ID: E2733
+Event type: Death
+Event location: London, Laurel, KY, USA
+Event description: Death of Delgado, Mary Ann
+Participant (Primary): Mary Ann Delgado (Gramps ID: I0995)
+
+Type: event
+Gramps ID: E2734
+Event type: Death
+Event location: Dover, Kent, DE, USA
+Event description: Death of Douglas, Frederick
+Participant (Primary): Frederick Douglas (Gramps ID: I0996)
+
+Type: event
+Gramps ID: E2735
+Event type: Death
+Event location: Dover, Kent, DE, USA
+Event description: Death of Stanley, Barbara
+Participant (Primary): Barbara Stanley (Gramps ID: I0997)
+
+Type: event
+Gramps ID: E2736
+Event type: Birth
+Event date: 1971
+Event location: Hutchinson, Reno, KS, USA
+Event description: Birth of Boucher, William J.
+Participant (Primary): William J. Boucher (Gramps ID: I0998)
+
+Type: event
+Gramps ID: E2737
+Event type: Birth
+Event date: 1607
+Event description: Birth of Rose, Ann
+Participant (Primary): Ann Rose (Gramps ID: I0999)
+
+Type: event
+Gramps ID: E2738
+Event type: Marriage
+Event date: 1974-08-10
+Event location: Worthington, MN, USA
+Event description: Marriage of Warner, Allen Carl and Garner, Rita Marie
+Participant family (Family): F0001
+
+Type: event
+Gramps ID: E2739
+Event type: Marriage
+Event date: 1868-01-01
+Event location: Oxnard, Ventura, CA, USA
+Event description: Marriage of Ball, Jasper and ĐŃĐșĐŸĐČ, Angeline
+Participant family (Family): F0010
+
+Type: event
+Gramps ID: E2740
+Event type: Marriage
+Event date: 1971-06-12
+Event description: Marriage of Bell, Gary Richard and Cruz, Judy Denise
+Participant family (Family): F0100
+
+Type: event
+Gramps ID: E2741
+Event type: Marriage
+Event date: 1979-09-29
+Event description: Marriage of Krawczyk, Douglas and Cruz, Patti Jo
+Participant family (Family): F0101
+
+Type: event
+Gramps ID: E2742
+Event type: Marriage
+Event date: 1984-06-09
+Event description: Marriage of Poulsen, Randall Lee and Welch, Lisa Dawn
+Participant family (Family): F0102
+
+Type: event
+Gramps ID: E2743
+Event type: Marriage
+Event location: Lock Haven, PA, USA
+Event description: Marriage of Blake, Conrad and Ruiz, Catherine
+Participant family (Family): F0103
+
+Type: event
+Gramps ID: E2744
+Event type: Marriage
+Event date: 1801-08-11
+Event description: Marriage of Cunningham, William Philip and Park, Susannah
+Participant family (Family): F0104
+
+Type: event
+Gramps ID: E2745
+Event type: Marriage
+Event date: 1831-12-15
+Event description: Marriage of Blake, George and Cunningham, Sally Sarah
+Participant family (Family): F0105
+
+Type: event
+Gramps ID: E2746
+Event type: Marriage
+Event location: Davenport, Scott, IA, USA
+Event description: Marriage of Jiménez, George Henry, Jr. and Silva, Mildred
+Participant family (Family): F0106
+
+Type: event
+Gramps ID: E2747
+Event type: Marriage
+Event date: 1848-07-30
+Event description: Marriage of Douglas, Abraham and Alvarado, Nancy
+Participant family (Family): F0107
+
+Type: event
+Gramps ID: E2748
+Event type: Marriage
+Event location: Orlando, Orange, FL, USA
+Event description: Marriage of Alvarado, Col. Charles and Parent, Eleanor
+Participant family (Family): F0108
+
+Type: event
+Gramps ID: E2749
+Event type: Marriage
+Event location: Davenport, Scott, IA, USA
+Event description: Marriage of Parent, Capt.Jacob C. and James, Jane
+Participant family (Family): F0109
+
+Type: event
+Gramps ID: E2750
+Event type: Marriage
+Event date: 1920-02-22
+Event location: Oskaloosa, Mahaska, IA, USA
+Event description: Marriage of Warner, Martin Bogarte and Page, Clara Belle
+Participant family (Family): F0011
+
+Type: event
+Gramps ID: E2751
+Event type: Marriage
+Event date: 1767
+Event location: Mayfield, Graves, KY, USA
+Event description: Marriage of James, Thomas Sr. and Benson, Martha Ellen M.
+Participant family (Family): F0110
+
+Type: event
+Gramps ID: E2752
+Event type: Marriage
+Event date: 1726
+Event location: Auburn, Cayuga, NY, USA
+Event description: Marriage of James, Hugh Sr. and Serrano, Caroline
+Participant family (Family): F0111
+
+Type: event
+Gramps ID: E2753
+Event type: Marriage
+Event date: 1945-09-08
+Event description: Marriage of Thornton, James Arthur and Lachance, Helen
+Participant family (Family): F0112
+
+Type: event
+Gramps ID: E2754
+Event type: Marriage
+Event date: 1968-06-08
+Event location: Midland, MI, USA
+Event description: Marriage of Lane, Joseph Edward and ĐĐŸĐ·Đ»ĐŸĐČ, Linda Mae
+Participant family (Family): F0113
+
+Type: event
+Gramps ID: E2755
+Event type: Marriage
+Event description: Marriage of Boucher, James and Dubé, Rose
+Participant family (Family): F0114
+
+Type: event
+Gramps ID: E2756
+Event type: Marriage
+Event description: Marriage of Boucher, William J. and Howell, Marie
+Participant family (Family): F0115
+
+Type: event
+Gramps ID: E2757
+Event type: Marriage
+Event description: Marriage of Alvarado, Wayne and Boucher, Sharon
+Participant family (Family): F0116
+
+Type: event
+Gramps ID: E2758
+Event type: Marriage
+Event description: Marriage of Gutierrez, Thomas and Boucher, Nora A.
+Participant family (Family): F0117
+
+Type: event
+Gramps ID: E2759
+Event type: Marriage
+Event description: Marriage of Boucher, Thomas W. and SzymaĆski, Mary
+Participant family (Family): F0118
+
+Type: event
+Gramps ID: E2760
+Event type: Marriage
+Event date: 1778-11-15
+Event description: Marriage of Warner, Andrew and Maldonado, Eunice
+Participant family (Family): F0119
+
+Type: event
+Gramps ID: E2761
+Event type: Marriage
+Event date: 1911-04-25
+Event location: Henderson, NC, USA
+Event description: Marriage of Warner, Martin Bogarte and Klein, Alma Katherine
+Participant family (Family): F0012
+
+Type: event
+Gramps ID: E2762
+Event type: Marriage
+Event date: 1736-09-22
+Event description: Marriage of Warner, Edward and Anderson, Mary Molly
+Participant family (Family): F0120
+
+Type: event
+Gramps ID: E2763
+Event type: Marriage
+Event date: 1677-11-13
+Event location: Livonia, MI, USA
+Event description: Marriage of Warner, Capt. George and Alvarez, Mary
+Participant family (Family): F0121
+
+Type: event
+Gramps ID: E2764
+Event type: Marriage
+Event description: Marriage of Fox, David and Harris, Mary
+Participant family (Family): F0122
+
+Type: event
+Gramps ID: E2765
+Event type: Marriage
+Event description: Marriage of Fox, Jacob, Sr. and Palmer, Sarah
+Participant family (Family): F0123
+
+Type: event
+Gramps ID: E2766
+Event type: Marriage
+Event description: Marriage of Palmer, Robert and ĐĐŸĐżĐŸĐČ, ???????
+Participant family (Family): F0124
+
+Type: event
+Gramps ID: E2767
+Event type: Marriage
+Event date: 1605-11-10
+Event location: Houma, Terrebonne, LA, USA
+Event description: Marriage of Thomas, Elder Thomas and Barrett, Anne
+Participant family (Family): F0125
+
+Type: event
+Gramps ID: E2768
+Event type: Marriage
+Event date: 1637-05-10
+Event location: Wilmington, NC, USA
+Event description: Marriage of Christiansen, Edward and Thomas, Elizabeth
+Participant family (Family): F0126
+
+Type: event
+Gramps ID: E2769
+Event type: Marriage
+Event date: 1662-03-11
+Event location: Yankton, SD, USA
+Event description: Marriage of Christiansen, Nathaniel and Grenier, Mary
+Participant family (Family): F0127
+
+Type: event
+Gramps ID: E2770
+Event type: Marriage
+Event date: 1693-06-08
+Event location: Poplar Bluff, MO, USA
+Event description: Marriage of Christiansen, Samuel and Alvarado, Mary
+Participant family (Family): F0128
+
+Type: event
+Gramps ID: E2771
+Event type: Marriage
+Event date: 1650-12-11
+Event location: Plainview, Houston, TX, USA
+Event description: Marriage of Lefebvre, Joseph and Gregory, Mary
+Participant family (Family): F0129
+
+Type: event
+Gramps ID: E2772
+Event type: Marriage
+Event date: 1925-09-16
+Event location: Worthington, MN, USA
+Event description: Marriage of Lessard, Carl Tolbert and Webb, Luella Florence
+Participant family (Family): F0013
+
+Type: event
+Gramps ID: E2773
+Event type: Marriage
+Event date: 1674-01-16
+Event location: Plainview, Houston, TX, USA
+Event description: Marriage of Green, Edward and Lefebvre, Mary
+Participant family (Family): F0130
+
+Type: event
+Gramps ID: E2774
+Event type: Marriage
+Event description: Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, George and ĐŃĐșĐŸĐČ, Annabell Gordon
+Participant family (Family): F0131
+
+Type: event
+Gramps ID: E2775
+Event type: Marriage
+Event description: Marriage of Christiansen, Joseph and GonzĂĄlez, Elizabeth
+Participant family (Family): F0132
+
+Type: event
+Gramps ID: E2776
+Event type: Marriage
+Event date: 1701-04-06
+Event description: Marriage of Green, Edward and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Christina
+Participant family (Family): F0133
+
+Type: event
+Gramps ID: E2777
+Event type: Marriage
+Event description: Marriage of Davis, Jonathan and Mitchell, Mary
+Participant family (Family): F0134
+
+Type: event
+Gramps ID: E2778
+Event type: Marriage
+Event date: 1759-01-17
+Event description: Marriage of Green, James and Christiansen, Frances
+Participant family (Family): F0135
+
+Type: event
+Gramps ID: E2779
+Event type: Marriage
+Event date: 1787-02-10
+Event location: Chillicothe, OH, USA
+Event description: Marriage of Green, Randolph and Davis, Sabra
+Participant family (Family): F0136
+
+Type: event
+Gramps ID: E2780
+Event type: Marriage
+Event description: Marriage of Burns, Jonathan and Rubio, Dorcas
+Participant family (Family): F0137
+
+Type: event
+Gramps ID: E2781
+Event type: Marriage
+Event description: Marriage of Adkins, Robert Sr. and Nielsen, Martha
+Participant family (Family): F0138
+
+Type: event
+Gramps ID: E2782
+Event type: Marriage
+Event date: 1762-06-20
+Event description: Marriage of Adkins, John and Adams, Jane
+Participant family (Family): F0139
+
+Type: event
+Gramps ID: E2783
+Event type: Marriage
+Event date: 1894-10-17
+Event location: Sulphur Springs, Rusk, TX, USA
+Event description: Marriage of Lessard, Ira Willis and Jiménez, Lucinda Ellen
+Participant family (Family): F0014
+
+Type: event
+Gramps ID: E2784
+Event type: Marriage
+Event date: 1740
+Event location: Yuba City, Sutter, CA, USA
+Event description: Marriage of ĐĐ»ĐŸĐ±ĐžĐœ, Col. Joseph and Rice, Virginia Margaret
+Participant family (Family): F0140
+
+Type: event
+Gramps ID: E2785
+Event type: Marriage
+Event date: 1782-06-20
+Event description: Marriage of ĐĐ»ĐŸĐ±ĐžĐœ, Joseph Jr. and Adkins, Martha
+Participant family (Family): F0142
+
+Type: event
+Gramps ID: E2786
+Event type: Marriage
+Event date: 1775-03-21
+Event description: Marriage of Moreno, Maj. Christopher and Bass, Mary
+Participant family (Family): F0143
+
+Type: event
+Gramps ID: E2787
+Event type: Marriage
+Event description: Marriage of Maxwell, William and Nielsen, Elizabeth
+Participant family (Family): F0144
+
+Type: event
+Gramps ID: E2788
+Event type: Marriage
+Event description: Marriage of Ball, Thomas and КаЎŃĐžĐœ, Mary
+Participant family (Family): F0145
+
+Type: event
+Gramps ID: E2789
+Event type: Marriage
+Event date: 1813-09-02
+Event description: Marriage of Moreno, Aaron and ĐĐ»ĐŸĐ±ĐžĐœ, Martha
+Participant family (Family): F0146
+
+Type: event
+Gramps ID: E2790
+Event type: Marriage
+Event location: Glasgow, Barren, KY, USA
+Event description: Marriage of Ball, Matthias Sr. and Maxwell, Ann
+Participant family (Family): F0147
+
+Type: event
+Gramps ID: E2791
+Event type: Marriage
+Event date: 1911-11-22
+Event description: Marriage of Pope, John and Kristensen, Mary Elizabeth
+Participant family (Family): F0148
+
+Type: event
+Gramps ID: E2792
+Event type: Marriage
+Event description: Marriage of Kim, Frank and Kristensen, Catherine Virginia
+Participant family (Family): F0149
+
+Type: event
+Gramps ID: E2793
+Event type: Marriage
+Event date: 1851-06-05
+Event location: San Diego, San Diego, CA, USA
+Event description: Marriage of Jiménez, George Henry, III and Blake, M. Susannah
+Participant family (Family): F0015
+
+Type: event
+Gramps ID: E2794
+Event type: Marriage
+Event description: Marriage of ĐĐŸĐłĐžĐœĐŸĐČ, Guy and Kristensen, Margaret Agnes"Maudy"
+Participant family (Family): F0150
+
+Type: event
+Gramps ID: E2795
+Event type: Marriage
+Event description: Marriage of Rhodes, William Sr. and Kristensen, Anna June
+Participant family (Family): F0151
+
+Type: event
+Gramps ID: E2796
+Event type: Marriage
+Event description: Marriage of Todd, John and ĐалДŃĐžĐœ, Elizabeth
+Participant family (Family): F0152
+
+Type: event
+Gramps ID: E2797
+Event type: Marriage
+Event date: 1843-09-20
+Event location: Kendallville, Noble, IN, USA
+Event description: Marriage of Todd, George W. and Morris, Jane
+Participant family (Family): F0153
+
+Type: event
+Gramps ID: E2798
+Event type: Marriage
+Event date: 1871-09-21
+Event location: Kingsville, Kleberg, TX, USA
+Event description: Marriage of Todd, John M. and Farmer, Elizabeth Ellen
+Participant family (Family): F0154
+
+Type: event
+Gramps ID: E2799
+Event type: Marriage
+Event description: Marriage of Todd, John and Warner, Elizabeth
+Participant family (Family): F0155
+
+Type: event
+Gramps ID: E2800
+Event type: Marriage
+Event description: Marriage of Todd, Hodges and Piotrowski, Lucy
+Participant family (Family): F0156
+
+Type: event
+Gramps ID: E2801
+Event type: Marriage
+Event date: 1819
+Event location: Pocatello, Bannock, ID, USA
+Event description: Marriage of Todd, William and æžĄèŸș, Mary (Polly)
+Participant family (Family): F0157
+
+Type: event
+Gramps ID: E2802
+Event type: Marriage
+Event date: 1963-07-21
+Event location: North Vernon, Jennings, IN, USA
+Event description: Marriage of Russell, Melvin Glen and Manning, Judith Ann
+Participant family (Family): F0158
+
+Type: event
+Gramps ID: E2803
+Event type: Marriage
+Event date: 1991-08-24
+Event location: Salt Lake City, UT, USA
+Event description: Marriage of CÎté, Raymond Patrick and Russell, Beth Ann
+Participant family (Family): F0159
+
+Type: event
+Gramps ID: E2804
+Event type: Marriage
+Event date: 1921-01-03
+Event location: Edison, NJ, USA
+Event description: Marriage of Garner, Eugene Stanley and Reed, Frances Lucille (Babe)
+Participant family (Family): F0016
+
+Type: event
+Gramps ID: E2805
+Event type: Marriage
+Event description: Marriage of ĐŃĐșĐŸĐČ, David and Russell, Janet Gail
+Participant family (Family): F0160
+
+Type: event
+Gramps ID: E2806
+Event type: Marriage
+Event description: Marriage of Savard, Walter and Russell, Janet Gail
+Participant family (Family): F0161
+
+Type: event
+Gramps ID: E2807
+Event type: Marriage
+Event date: 1867-04-24
+Event description: Marriage of Webb, Livingstone Martin and Blanco, Lucinda Catherine
+Participant family (Family): F0162
+
+Type: event
+Gramps ID: E2808
+Event type: Marriage
+Event date: 1836-01-07
+Event location: Asheville, NC, USA
+Event description: Marriage of Blanco, Rufus and Rodriquez, Mariam
+Participant family (Family): F0163
+
+Type: event
+Gramps ID: E2809
+Event type: Marriage
+Event date: 1830-12-10
+Event location: Coeur d'Alene, Kootenai, ID, USA
+Event description: Marriage of Floyd, John S. and Coleman, Mary
+Participant family (Family): F0164
+
+Type: event
+Gramps ID: E2810
+Event type: Marriage
+Event date: 1847-08-15
+Event location: Spirit Lake, Dickinson, IA, USA
+Event description: Marriage of Reeves, James and Meyer, Catherine
+Participant family (Family): F0165
+
+Type: event
+Gramps ID: E2811
+Event type: Marriage
+Event location: Loveland, Larimer, CO, USA
+Event description: Marriage of Reeves, John and McCarthy, Mary
+Participant family (Family): F0166
+
+Type: event
+Gramps ID: E2812
+Event type: Marriage
+Event date: 1739-04-30
+Event location: Colorado Springs, El Paso, CO, USA
+Event description: Marriage of Douglas, Hans Peter and Howard, Juliana
+Participant family (Family): F0167
+
+Type: event
+Gramps ID: E2813
+Event type: Marriage
+Event date: um 1760
+Event description: Marriage of Douglas, John Sr. and Moran, Ann Delilah "Tilley"
+Participant family (Family): F0168
+
+Type: event
+Gramps ID: E2814
+Event type: Marriage
+Event description: Marriage of Johnson, Henry and Sparks, Catherine
+Participant family (Family): F0169
+
+Type: event
+Gramps ID: E2815
+Event type: Marriage
+Event date: 1875-04-01
+Event location: Paragould, Greene, AR, USA
+Event description: Marriage of Garner, Lewis Anderson and Martel, Luella Jacques
+Participant (Witness): Robert W. Garner (Gramps ID: I0106)
+Participant (Clergy): Robert Page (Gramps ID: I1387)
+Participant (Clergy): L. J. Blanco (Gramps ID: I0880)
+Participant (Witness): Henry Martel (Gramps ID: I0975)
+Participant family (Family): F0017
+
+Type: event
+Gramps ID: E2816
+Event type: Marriage
+Event date: 1787-04-09
+Event location: Lock Haven, PA, USA
+Event description: Marriage of Douglas, John Jr. and Johnson, Elizabeth
+Participant family (Family): F0170
+
+Type: event
+Gramps ID: E2817
+Event type: Marriage
+Event date: um 1765
+Event description: Marriage of Carroll, Matthias Sr. and ĐĐŸŃĐŸĐ±ŃĐ”ĐČ, Eva
+Participant family (Family): F0171
+
+Type: event
+Gramps ID: E2818
+Event type: Marriage
+Event date: 1807-10-15
+Event location: Rome, Floyd, GA, USA
+Event description: Marriage of Douglas, Joseph and Carroll, Grace
+Participant family (Family): F0172
+
+Type: event
+Gramps ID: E2819
+Event type: Marriage
+Event location: Austin, MN, USA
+Event description: Marriage of Alvarado, Cadwallader and Mendez, Martha
+Participant family (Family): F0173
+
+Type: event
+Gramps ID: E2820
+Event type: Marriage
+Event date: 1818-09-22
+Event location: Greenville, NC, USA
+Event description: Marriage of Morris, Cyrus and Graves, Martha
+Participant family (Family): F0175
+
+Type: event
+Gramps ID: E2821
+Event type: Marriage
+Event date: 1985-06-22
+Event location: Kendallville, Noble, IN, USA
+Event description: Marriage of Russell, Bruce Lynn and Henderson, Cathy Sue
+Participant family (Family): F0176
+
+Type: event
+Gramps ID: E2822
+Event type: Marriage
+Event date: 1921-02-16
+Event description: Marriage of Lessard, Ralph Raymond and Davidson, Bernice
+Participant family (Family): F0177
+
+Type: event
+Gramps ID: E2823
+Event type: Marriage
+Event description: Marriage of Garner, Jesse V. and Taylor, Viola
+Participant family (Family): F0178
+
+Type: event
+Gramps ID: E2824
+Event type: Marriage
+Event date: vor 1911-07-06
+Event description: Marriage of ĐŻĐșĐŸĐČлДĐČ, George and Garner, Jennie S.
+Participant family (Family): F0179
+
+Type: event
+Gramps ID: E2825
+Event type: Marriage
+Event date: 1849-10-04
+Event location: Paragould, Greene, AR, USA
+Event description: Marriage of Garner, Robert W. and ZieliĆski, Phoebe Emily
+Participant family (Family): F0018
+
+Type: event
+Gramps ID: E2826
+Event type: Marriage
+Event description: Marriage of Garner, Walter E. and GarcĂa, Maude
+Participant family (Family): F0180
+
+Type: event
+Gramps ID: E2827
+Event type: Marriage
+Event date: 1931-07-05
+Event description: Marriage of Andrews, Harold and Garner, Cecile Elizabeth
+Participant family (Family): F0181
+
+Type: event
+Gramps ID: E2828
+Event type: Marriage
+Event date: 1940-06-17
+Event location: Tupelo, MS, USA
+Event description: Marriage of Johnson, Richard F. and Garner, Betty Jane
+Participant family (Family): F0182
+
+Type: event
+Gramps ID: E2829
+Event type: Marriage
+Event date: 1927-12-25
+Event description: Marriage of WĂłjcik, Arnold and Garner, Helen Bernice
+Participant (Witness): Robert F. Garner (Gramps ID: I1123)
+Participant family (Family): F0183
+
+Type: event
+Gramps ID: E2830
+Event type: Marriage
+Event date: 1938-02-11
+Event description: Marriage of BĂ©langer, James and Garner, Bernetha Ellen
+Participant family (Family): F0184
+
+Type: event
+Gramps ID: E2831
+Event type: Marriage
+Event description: Marriage of Burgess, Edward and Garner, Marie
+Participant family (Family): F0185
+
+Type: event
+Gramps ID: E2832
+Event type: Marriage
+Event description: Marriage of Arnold, ??????? and ĐŻĐșĐŸĐČлДĐČ, Esther Faye
+Participant family (Family): F0186
+
+Type: event
+Gramps ID: E2833
+Event type: Marriage
+Event description: Marriage of Cooper, ??????? and Garner, Maude
+Participant family (Family): F0187
+
+Type: event
+Gramps ID: E2834
+Event type: Marriage
+Event date: 1907-11-16
+Event location: Columbus, Bartholomew, IN, USA
+Event description: Marriage of Robinson, Clarence and Garner, Bertha P.
+Participant family (Family): F0188
+
+Type: event
+Gramps ID: E2835
+Event type: Marriage
+Event description: Marriage of ĐĐŸŃŃлОŃĐžĐœ, Edward and BĂ©langer, Linda Ellen
+Participant family (Family): F0189
+
+Type: event
+Gramps ID: E2836
+Event type: Marriage
+Event date: 1823-01-03
+Event location: Picayune, MS, USA
+Event description: Marriage of Garner, Joseph and Edwards, Lucy
+Participant family (Family): F0019
+
+Type: event
+Gramps ID: E2837
+Event type: Marriage
+Event date: 1942-04-05
+Event location: Gillette, WY, USA
+Event description: Marriage of Garner, Raymond Webster and Bryant, Kathryn Ladon
+Participant family (Family): F0190
+
+Type: event
+Gramps ID: E2838
+Event type: Marriage
+Event date: 1974-06-08
+Event description: Marriage of Cox, Robert C. and Garner, Jane McClellan
+Participant family (Family): F0191
+
+Type: event
+Gramps ID: E2839
+Event type: Marriage
+Event date: 1975-06-21
+Event description: Marriage of Garner, Raymond Scott and PĂ©rez, Angela Gay
+Participant family (Family): F0192
+
+Type: event
+Gramps ID: E2840
+Event type: Marriage
+Event description: Marriage of Moran, Andrew and Sharp, ???
+Participant family (Family): F0193
+
+Type: event
+Gramps ID: E2841
+Event type: Marriage
+Event location: Chillicothe, OH, USA
+Event description: Marriage of Foster, William and Sanders, Mary
+Participant family (Family): F0194
+
+Type: event
+Gramps ID: E2842
+Event type: Marriage
+Event date: 1687-01-16
+Event location: Poplar Bluff, MO, USA
+Event description: Marriage of Christiansen, Joseph and Allen, Joanna
+Participant family (Family): F0195
+
+Type: event
+Gramps ID: E2843
+Event type: Marriage
+Event date: 1705-05-22
+Event location: Lake County, IL, USA
+Event description: Marriage of Warner, Capt. Andrew and Christiansen, Hannah
+Participant family (Family): F0196
+
+Type: event
+Gramps ID: E2844
+Event type: Marriage
+Event date: 1712-05-17
+Event location: Poplar Bluff, MO, USA
+Event description: Marriage of Anderson, Rev. John and Christiansen, Martha
+Participant family (Family): F0197
+
+Type: event
+Gramps ID: E2845
+Event type: Marriage
+Event description: Marriage of Fox, William and Mason, Hannah
+Participant family (Family): F0198
+
+Type: event
+Gramps ID: E2846
+Event type: Marriage
+Event description: Marriage of Fox, Samuel and Mason, Susannah
+Participant family (Family): F0199
+
+Type: event
+Gramps ID: E2847
+Event type: Marriage
+Event date: 1948-02-02
+Event location: Worthington, MN, USA
+Event description: Marriage of Garner, Howard Lane and MarĂn, Mary Anne
+Participant family (Family): F0002
+
+Type: event
+Gramps ID: E2848
+Event type: Marriage
+Event date: 1980-12-27
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Marriage of Gosselin, Martin Kelly and Warner, Marcia Jane
+Participant family (Family): F0020
+
+Type: event
+Gramps ID: E2849
+Event type: Marriage
+Event description: Marriage of Davis, John and Knight, Hannah
+Participant family (Family): F0200
+
+Type: event
+Gramps ID: E2850
+Event type: Marriage
+Event description: Marriage of Davis, Benjamin and Alexander, Mary
+Participant family (Family): F0201
+
+Type: event
+Gramps ID: E2851
+Event type: Marriage
+Event description: Marriage of Wallace, Abraham and Greene, Marcy
+Participant family (Family): F0202
+
+Type: event
+Gramps ID: E2852
+Event type: Marriage
+Event description: Marriage of Patrick, Melvin and Todd, Lucille
+Participant family (Family): F0203
+
+Type: event
+Gramps ID: E2853
+Event type: Marriage
+Event location: Loveland, Larimer, CO, USA
+Event description: Marriage of Adams, William and Aguilar, Eleanor
+Participant family (Family): F0204
+
+Type: event
+Gramps ID: E2854
+Event type: Marriage
+Event date: 1835-02-10
+Event location: North Platte, NE, USA
+Event description: Marriage of Reed, John and Goodwin, Sarah
+Participant family (Family): F0205
+
+Type: event
+Gramps ID: E2855
+Event type: Marriage
+Event description: Marriage of Moreno, Christian, I and Mann, Agnes
+Participant family (Family): F0206
+
+Type: event
+Gramps ID: E2856
+Event type: Marriage
+Event date: 1749-04-02
+Event location: Clarksburg, WV, USA
+Event description: Marriage of Moreno, Johann Christian II and ĐĐ°ŃĐČДДĐČ, Elizabeth
+Participant family (Family): F0207
+
+Type: event
+Gramps ID: E2857
+Event type: Marriage
+Event date: 1961-10-07
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Garner, John Roger and ĐŃŃŃ
Đ°ĐœĐŸĐČ, Violet Louise
+Participant family (Family): F0208
+
+Type: event
+Gramps ID: E2858
+Event type: Marriage
+Event description: Marriage of Brown, ????? and йОŃ
ĐŸĐœĐŸĐČ, Mary Ellen
+Participant family (Family): F0209
+
+Type: event
+Gramps ID: E2859
+Event type: Marriage
+Event date: 1981-07-25
+Event location: Salina, Saline, KS, USA
+Event description: Marriage of Warner, Fred Loren and Flores, Jamie Lee
+Participant family (Family): F0021
+
+Type: event
+Gramps ID: E2860
+Event type: Marriage
+Event date: 1632
+Event description: Marriage of Piotrowski, John and Todd, Olive
+Participant family (Family): F0210
+
+Type: event
+Gramps ID: E2861
+Event type: Marriage
+Event date: 1759-07
+Event description: Marriage of Todd, Charles and Cole, Eurydice
+Participant family (Family): F0211
+
+Type: event
+Gramps ID: E2862
+Event type: Marriage
+Event date: 1728
+Event description: Marriage of Benson, Joseph Louis(Jr.) and Richard, Jeanne
+Participant family (Family): F0212
+
+Type: event
+Gramps ID: E2863
+Event type: Marriage
+Event date: 1854-02-04
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of йОŃ
ĐŸĐœĐŸĐČ, Moses and Holt, Bridget
+Participant family (Family): F0213
+
+Type: event
+Gramps ID: E2864
+Event type: Marriage
+Event location: Lock Haven, PA, USA
+Event description: Marriage of Morris, Adam and Oliver, Elizabeth
+Participant family (Family): F0214
+
+Type: event
+Gramps ID: E2865
+Event type: Marriage
+Event location: Texarkana, Miller, AR, USA
+Event description: Marriage of Oliver, Harmonas II and Harvey, Lydia
+Participant family (Family): F0215
+
+Type: event
+Gramps ID: E2866
+Event type: Marriage
+Event description: Marriage of Oliver, Harmonas I and Malone, Mary
+Participant family (Family): F0216
+
+Type: event
+Gramps ID: E2867
+Event type: Marriage
+Event description: Marriage of Warner, Capt. Francis and Ingram, Mary
+Participant family (Family): F0217
+
+Type: event
+Gramps ID: E2868
+Event type: Marriage
+Event location: Lansing, MI, USA
+Event description: Marriage of йОŃ
ĐŸĐœĐŸĐČ, Miles? and Smith, Anastasia?
+Participant family (Family): F0218
+
+Type: event
+Gramps ID: E2869
+Event type: Marriage
+Event date: 1650
+Event description: Marriage of Anderson, Thomas and Carpenter, Sarah
+Participant family (Family): F0219
+
+Type: event
+Gramps ID: E2870
+Event type: Marriage
+Event date: 1981-02-14
+Event location: Macomb, McDonough, IL, USA
+Event description: Marriage of Warner, Arthur Maurice and Phillips, Anita Irene
+Participant family (Family): F0022
+
+Type: event
+Gramps ID: E2871
+Event type: Marriage
+Event date: 1677
+Event description: Marriage of Anderson, Samuel and Đ€ĐžĐ»ĐžĐżĐżĐŸĐČ, Elizabeth
+Participant family (Family): F0220
+
+Type: event
+Gramps ID: E2872
+Event type: Marriage
+Event date: 1681
+Event location: Poplar Bluff, MO, USA
+Event description: Marriage of Christiansen, John and Harmon, Martha
+Participant family (Family): F0221
+
+Type: event
+Gramps ID: E2873
+Event type: Marriage
+Event date: 1666-01-12
+Event location: Beeville, Bee, TX, USA
+Event description: Marriage of Norris, John and Howell, Mary (Sarah)
+Participant family (Family): F0222
+
+Type: event
+Gramps ID: E2874
+Event type: Marriage
+Event date: 1628
+Event location: Minneapolis, MN, USA
+Event description: Marriage of Grenier, Joseph and Peters, Rose
+Participant family (Family): F0223
+
+Type: event
+Gramps ID: E2875
+Event type: Marriage
+Event location: Durant, OK, USA
+Event description: Marriage of Lefebvre, Robert and ĐĐŸĐœŃĐ°ŃĐŸĐČ, Ellen
+Participant family (Family): F0224
+
+Type: event
+Gramps ID: E2876
+Event type: Marriage
+Event date: 1575-09-02
+Event location: Caguas, PR, USA
+Event description: Marriage of Wise, Thomas and Ramos, Mary
+Participant family (Family): F0225
+
+Type: event
+Gramps ID: E2877
+Event type: Marriage
+Event date: 1703-11-06
+Event location: Pittsfield, Berkshire, MA, USA
+Event description: Marriage of Webster, Johanne(John) and Saunders, Ursula
+Participant family (Family): F0226
+
+Type: event
+Gramps ID: E2878
+Event type: Marriage
+Event date: 1701-03-05
+Event location: Houston, Harris, TX, USA
+Event description: Marriage of æè€, Zariakius Cyriacus and Bishop, Anna Barbara
+Participant family (Family): F0227
+
+Type: event
+Gramps ID: E2879
+Event type: Marriage
+Event description: Marriage of Carroll, Jacob A. and ĐĐžĐșĐŸĐ»Đ°Đ”ĐČ, Maria Catharina
+Participant family (Family): F0228
+
+Type: event
+Gramps ID: E2880
+Event type: Marriage
+Event location: Charleston, WV, USA
+Event description: Marriage of Page, John and Kaczmarek, Isabella
+Participant family (Family): F0229
+
+Type: event
+Gramps ID: E2881
+Event type: Marriage
+Event date: 1943-11-06
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Marriage of Warner, David Luther and Robbins, Merida Lorene
+Participant family (Family): F0023
+
+Type: event
+Gramps ID: E2882
+Event type: Marriage
+Event location: Sweetwater, Nolan, TX, USA
+Event description: Marriage of Benson, Joseph Louis(Sr.) and Simard, Sarah
+Participant family (Family): F0230
+
+Type: event
+Gramps ID: E2883
+Event type: Marriage
+Event description: Marriage of Thornton, Romaine and Soto, Harriet
+Participant family (Family): F0231
+
+Type: event
+Gramps ID: E2884
+Event type: Marriage
+Event location: Providence, RI, USA
+Event description: Marriage of Thornton, Phillip James and ĐĐ”Đ»ĐŸĐČ, Katherine
+Participant family (Family): F0232
+
+Type: event
+Gramps ID: E2885
+Event type: Marriage
+Event location: Blackfoot, Bingham, ID, USA
+Event description: Marriage of Wheeler, Jacob Earl and ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+Participant family (Family): F0233
+
+Type: event
+Gramps ID: E2886
+Event type: Marriage
+Event location: Fairmont, MN, USA
+Event description: Marriage of Fitzgerald, David Lee and ĐĐŸĐżĐ°ŃĐžĐœ, Donna Elaine
+Participant family (Family): F0234
+
+Type: event
+Gramps ID: E2887
+Event type: Marriage
+Event date: 1978-11-18
+Event location: Americus, Sumter, GA, USA
+Event description: Marriage of Garrett, Terry Lee and Holloway, Gail
+Participant family (Family): F0235
+
+Type: event
+Gramps ID: E2888
+Event type: Marriage
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Rodgers, John and Garrett, Doris Mae
+Participant family (Family): F0236
+
+Type: event
+Gramps ID: E2889
+Event type: Marriage
+Event date: 1988-10-01
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Marriage of ĐĐ”ŃĐ°ŃĐžĐŒĐŸĐČ, John and Garrett, Doris Mae
+Participant family (Family): F0237
+
+Type: event
+Gramps ID: E2890
+Event type: Marriage
+Event description: Marriage of Webb, Lewis I. and ĐĐ°ĐčŃĐ”ĐČ, Ruth L.
+Participant family (Family): F0238
+
+Type: event
+Gramps ID: E2891
+Event type: Marriage
+Event location: Barnstable Town, MA, USA
+Event description: Marriage of Lane, Remo and Barnes, Ernestina
+Participant family (Family): F0239
+
+Type: event
+Gramps ID: E2892
+Event type: Marriage
+Event date: 1936-02-19
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Warner, Michael Warren and ЧДŃĐœŃŃ
, Mary Helen
+Participant family (Family): F0024
+
+Type: event
+Gramps ID: E2893
+Event type: Marriage
+Event description: Marriage of ĐĐŸĐ·Đ»ĐŸĐČ, Samuel C. and Pena, Julia
+Participant family (Family): F0240
+
+Type: event
+Gramps ID: E2894
+Event type: Marriage
+Event date: 1787-11-08
+Event description: Marriage of Jiménez, George, Sr. and Henry, Elizabeth
+Participant family (Family): F0241
+
+Type: event
+Gramps ID: E2895
+Event type: Marriage
+Event description: Marriage of Cunningham, Peter Sr. and Dunn, Margaret Mary?
+Participant family (Family): F0242
+
+Type: event
+Gramps ID: E2896
+Event type: Marriage
+Event date: 1810
+Event location: Loveland, Larimer, CO, USA
+Event description: Marriage of Boucher, David and Morrison, Nancy
+Participant family (Family): F0243
+
+Type: event
+Gramps ID: E2897
+Event type: Marriage
+Event location: Loveland, Larimer, CO, USA
+Event description: Marriage of Boucher, William and Fields, Bridget M.
+Participant family (Family): F0244
+
+Type: event
+Gramps ID: E2898
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Boucher, Thomas and Thompson, Bridget
+Participant family (Family): F0245
+
+Type: event
+Gramps ID: E2899
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Boucher, Sean and Gardner, Mary
+Participant family (Family): F0246
+
+Type: event
+Gramps ID: E2900
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Boucher, Michael and Gil, Nora
+Participant family (Family): F0247
+
+Type: event
+Gramps ID: E2901
+Event type: Marriage
+Event date: 1960
+Event location: Fort Wayne, Allen, IN, USA
+Event description: Marriage of Boucher, John and ĐĐžĐșĐžŃĐžĐœ, Monica
+Participant family (Family): F0248
+
+Type: event
+Gramps ID: E2902
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Boucher, William and Savard, Honora
+Participant family (Family): F0249
+
+Type: event
+Gramps ID: E2903
+Event type: Marriage
+Event date: 1948-07-18
+Event location: Porterville, Tulare, CA, USA
+Event description: Marriage of Warner, Robert Eugene and Barber, Mary Elizabeth
+Participant family (Family): F0025
+
+Type: event
+Gramps ID: E2904
+Event type: Marriage
+Event date: 1952
+Event location: Walterboro, SC, USA
+Event description: Marriage of Hansen, Thomas and Boucher, Rose Mary
+Participant family (Family): F0250
+
+Type: event
+Gramps ID: E2905
+Event type: Marriage
+Event location: Loveland, Larimer, CO, USA
+Event description: Marriage of Hansen, Noel and Ramirez, Helen
+Participant family (Family): F0251
+
+Type: event
+Gramps ID: E2906
+Event type: Marriage
+Event location: Green Bay, WI, USA
+Event description: Marriage of Gardner, Michael and Hansen, Nula
+Participant family (Family): F0252
+
+Type: event
+Gramps ID: E2907
+Event type: Marriage
+Event location: Green Bay, WI, USA
+Event description: Marriage of ĐĐ°ŃĐżĐŸĐČ, Damian and Hansen, Irene
+Participant family (Family): F0253
+
+Type: event
+Gramps ID: E2908
+Event type: Marriage
+Event location: Somerset, PA, USA
+Event description: Marriage of Alonso, Joseph and Hansen, Monica
+Participant family (Family): F0254
+
+Type: event
+Gramps ID: E2909
+Event type: Marriage
+Event description: Marriage of Green, Yelverton and Robertson, Elizabeth
+Participant family (Family): F0255
+
+Type: event
+Gramps ID: E2910
+Event type: Marriage
+Event date: 1596
+Event location: Hilton Head Island-Beaufort, SC, USA
+Event description: Marriage of Peters, George Sr. and Ramsey, Joan
+Participant family (Family): F0256
+
+Type: event
+Gramps ID: E2911
+Event type: Marriage
+Event date: 1945-08-25
+Event location: Adjuntas, PR, USA
+Event description: Marriage of Welch, Irwin Arthur and Page, Eleanor Irene
+Participant family (Family): F0257
+
+Type: event
+Gramps ID: E2912
+Event type: Marriage
+Event date: 1984-10-13
+Event location: Bay City, Matagorda, TX, USA
+Event description: Marriage of Padilla, Otis Earl and Page, Eleanor Irene
+Participant family (Family): F0258
+
+Type: event
+Gramps ID: E2913
+Event type: Marriage
+Event date: 1970-08-15
+Event location: Bedford, Lawrence, IN, USA
+Event description: Marriage of Welch, Russell Eugene and Norton, Dorothy
+Participant family (Family): F0259
+
+Type: event
+Gramps ID: E2914
+Event type: Marriage
+Event date: 1949-06-05
+Event location: Laurinburg, NC, USA
+Event description: Marriage of Warner, Richard Kenneth and ĐДлŃĐœĐžĐșĐŸĐČ, Marylou
+Participant family (Family): F0026
+
+Type: event
+Gramps ID: E2915
+Event type: Marriage
+Event date: 1982-05-16
+Event location: Marion, Grant, IN, USA
+Event description: Marriage of Welch, Russell Eugene and Walsh, Penelope
+Participant family (Family): F0260
+
+Type: event
+Gramps ID: E2916
+Event type: Marriage
+Event date: 1969-05-19
+Event location: Alexandria, MN, USA
+Event description: Marriage of Brock, Stephen and Welch, Annabelle Elaine
+Participant family (Family): F0261
+
+Type: event
+Gramps ID: E2917
+Event type: Marriage
+Event date: 1977-07-31
+Event location: Alexandria, MN, USA
+Event description: Marriage of SĂĄnchez, David Andrew and Welch, Rosalie Jane
+Participant family (Family): F0262
+
+Type: event
+Gramps ID: E2918
+Event type: Marriage
+Event date: 1992-09-19
+Event location: Blackfoot, Bingham, ID, USA
+Event description: Marriage of Osborne, Paul Daniel and Hawkins, Jennifer Leigh
+Participant family (Family): F0263
+
+Type: event
+Gramps ID: E2919
+Event type: Marriage
+Event date: 1908-09-01
+Event location: Kokomo, Howard, IN, USA
+Event description: Marriage of Page, Andrew Vincent and Zimmerman, Edith Irene
+Participant family (Family): F0264
+
+Type: event
+Gramps ID: E2920
+Event type: Marriage
+Event date: 1992-09-05
+Event location: Dayton, OH, USA
+Event description: Marriage of Matthews, Mark John and Warner, Andrea Susan
+Participant family (Family): F0265
+
+Type: event
+Gramps ID: E2921
+Event type: Marriage
+Event date: 1992-11-07
+Event location: Greeneville, TN, USA
+Event description: Marriage of Garner, Barry Joseph and VĂĄzquez, April Lynn
+Participant family (Family): F0266
+
+Type: event
+Gramps ID: E2922
+Event type: Marriage
+Event date: 1924-03-04
+Event location: Winfield, Cowley, KS, USA
+Event description: Marriage of Boucher, Stephen Francis and Gardner, Mary Jane
+Participant family (Family): F0267
+
+Type: event
+Gramps ID: E2923
+Event type: Marriage
+Event date: 1880-02-10
+Event location: Greensburg, Decatur, IN, USA
+Event description: Marriage of Boucher, William and Walters, Mary
+Participant family (Family): F0268
+
+Type: event
+Gramps ID: E2924
+Event type: Marriage
+Event location: Spartanburg, SC, USA
+Event description: Marriage of Myers, James and Boucher, Catherine
+Participant family (Family): F0269
+
+Type: event
+Gramps ID: E2925
+Event type: Marriage
+Event date: 1950-08-13
+Event location: Medford, OR, USA
+Event description: Marriage of Walker, Andrew Vincent and Pearson, Eileen Ruth
+Participant family (Family): F0027
+
+Type: event
+Gramps ID: E2926
+Event type: Marriage
+Event description: Marriage of Lessard, ??? and Castro, ???
+Participant family (Family): F0270
+
+Type: event
+Gramps ID: E2927
+Event type: Marriage
+Event date: 1835-05-13
+Event location: Alamogordo, NM, USA
+Event description: Marriage of DomĂnguez, George and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Nancy
+Participant family (Family): F0271
+
+Type: event
+Gramps ID: E2928
+Event type: Marriage
+Event date: 1936-12-16
+Event location: Kansas City, MO, USA
+Event description: Marriage of Page, Vernett Gail and Norman, Dorothy Louise
+Participant family (Family): F0272
+
+Type: event
+Gramps ID: E2929
+Event type: Marriage
+Event date: 1976-08-09
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Marriage of Page, Dwayne Alan and Scott, Cheryl Lee
+Participant family (Family): F0273
+
+Type: event
+Gramps ID: E2930
+Event type: Marriage
+Event description: Marriage of Boucher, Roger Joseph and Page, Sylvia Louise
+Participant family (Family): F0274
+
+Type: event
+Gramps ID: E2931
+Event type: Marriage
+Event location: Muscatine, Muscatine, IA, USA
+Event description: Marriage of Page, Marvin Ray and Morton, Gail Darlene
+Participant family (Family): F0275
+
+Type: event
+Gramps ID: E2932
+Event type: Marriage
+Event description: Marriage of Cobb, Merrick and Boucher, Cynthia Louise
+Participant family (Family): F0276
+
+Type: event
+Gramps ID: E2933
+Event type: Marriage
+Event description: Marriage of Boucher, Steven Joseph and Nelson, Arlene
+Participant family (Family): F0277
+
+Type: event
+Gramps ID: E2934
+Event type: Marriage
+Event description: Marriage of WoĆșniak, Thomas and Page, Debra Dale
+Participant family (Family): F0278
+
+Type: event
+Gramps ID: E2935
+Event type: Marriage
+Event description: Marriage of Evans, ?m.MaryJane and Rhodes, Mary Jane
+Participant family (Family): F0279
+
+Type: event
+Gramps ID: E2936
+Event type: Marriage
+Event date: 1948-09-07
+Event location: Rockingham County, NH, USA
+Event description: Marriage of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Earl William and Lessard, Dorothy Louise
+Participant family (Family): F0028
+
+Type: event
+Gramps ID: E2937
+Event type: Marriage
+Event description: Marriage of Collins, Loren and Rhodes, Mary Jane
+Participant family (Family): F0280
+
+Type: event
+Gramps ID: E2938
+Event type: Marriage
+Event description: Marriage of Evans, James Patrick and Stevenson, Susan
+Participant family (Family): F0281
+
+Type: event
+Gramps ID: E2939
+Event type: Marriage
+Event date: 1975-02-08
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of ĐĄĐ”ŃгДДĐČ, Dennis and Garner, Kathryn Mary
+Participant family (Family): F0282
+
+Type: event
+Gramps ID: E2940
+Event type: Marriage
+Event description: Marriage of Blanco, Gerhard and ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Catharine
+Participant family (Family): F0283
+
+Type: event
+Gramps ID: E2941
+Event type: Marriage
+Event date: 1771-12-31
+Event location: Joplin, MO, USA
+Event description: Marriage of Blanco, Peter and Glover, Elizabeth
+Participant family (Family): F0284
+
+Type: event
+Gramps ID: E2942
+Event type: Marriage
+Event date: 1799-07-04
+Event location: Cambridge, MD, USA
+Event description: Marriage of Blanco, John Sr. and Lucas, Christina
+Participant family (Family): F0285
+
+Type: event
+Gramps ID: E2943
+Event type: Marriage
+Event date: 1804-08
+Event location: Manhattan, Riley, KS, USA
+Event description: Marriage of Rodriquez, William M. and Douglas, Mary"Polly"
+Participant family (Family): F0286
+
+Type: event
+Gramps ID: E2944
+Event type: Marriage
+Event location: Watertown-Fort Drum, NY, USA
+Event description: Marriage of Blanco, Hans(Johannes) and Sullivan, Anna
+Participant family (Family): F0287
+
+Type: event
+Gramps ID: E2945
+Event type: Marriage
+Event date: 1676-06-15
+Event location: Watertown-Fort Drum, NY, USA
+Event description: Marriage of Blanco, Heinrich and Schmidt, Barbli
+Participant family (Family): F0288
+
+Type: event
+Gramps ID: E2946
+Event type: Marriage
+Event date: 1603
+Event description: Marriage of Blanco, Hans and Buchanan, Elsbeth
+Participant family (Family): F0289
+
+Type: event
+Gramps ID: E2947
+Event type: Marriage
+Event date: 1959-09-13
+Event location: Morehead City, NC, USA
+Event description: Marriage of Osborne, Dwight Billington and Lessard, Mary Alice
+Participant family (Family): F0029
+
+Type: event
+Gramps ID: E2948
+Event type: Marriage
+Event date: 1580-11-03
+Event description: Marriage of Blanco, Bendicht and Fisher, Bendichtli
+Participant family (Family): F0290
+
+Type: event
+Gramps ID: E2949
+Event type: Marriage
+Event date: 1630-06
+Event description: Marriage of Austin, Hans and Burke, Maria
+Participant family (Family): F0291
+
+Type: event
+Gramps ID: E2950
+Event type: Marriage
+Event date: 1629-02-20
+Event description: Marriage of Jenkins, Peter and Marsh, Margaret
+Participant family (Family): F0292
+
+Type: event
+Gramps ID: E2951
+Event type: Marriage
+Event date: 1652-07-02
+Event description: Marriage of Austin, Johannas and Jenkins, Margaret
+Participant family (Family): F0293
+
+Type: event
+Gramps ID: E2952
+Event type: Marriage
+Event description: Marriage of Reid, Hans and ĐĄĐ”ĐŒĐ”ĐœĐŸĐČ, Cathern
+Participant family (Family): F0294
+
+Type: event
+Gramps ID: E2953
+Event type: Marriage
+Event date: 1680-01-12
+Event description: Marriage of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Jacob and SuĂĄrez, Marie
+Participant family (Family): F0295
+
+Type: event
+Gramps ID: E2954
+Event type: Marriage
+Event date: 1691-05-11
+Event description: Marriage of Fortin, Matthias and Baker, Margaret
+Participant family (Family): F0296
+
+Type: event
+Gramps ID: E2955
+Event type: Marriage
+Event date: 1715-12-09
+Event description: Marriage of ĐĐ”Đ»ĐŸŃŃĐŸĐČ, Johannas Jacob and Reid, Anna Catherina
+Participant family (Family): F0297
+
+Type: event
+Gramps ID: E2956
+Event type: Marriage
+Event location: Ocean Pines, MD, USA
+Event description: Marriage of MarĂn, William and Francis, Elizabeth
+Participant family (Family): F0298
+
+Type: event
+Gramps ID: E2957
+Event type: Marriage
+Event date: 5
+Event location: Peru, Miami, IN, USA
+Event description: Marriage of Schultz, Rev.Isaac and Turner, Mary
+Participant family (Family): F0299
+
+Type: event
+Gramps ID: E2958
+Event type: Marriage
+Event date: 1950-04-16
+Event location: Rockingham County, NH, USA
+Event description: Marriage of Warner, George Edward and Lessard, Elinor Jane
+Participant family (Family): F0003
+
+Type: event
+Gramps ID: E2959
+Event type: Marriage
+Event date: 1977-08-18
+Event description: Marriage of Warner, Richard Kenneth and Wade, Joy A.
+Participant family (Family): F0030
+
+Type: event
+Gramps ID: E2960
+Event type: Marriage
+Event date: 1811-06-21
+Event location: De Ridder, LA, USA
+Event description: Marriage of Schultz, John and Payne, Jane Coppage
+Participant family (Family): F0300
+
+Type: event
+Gramps ID: E2961
+Event type: Marriage
+Event date: 1725
+Event location: Laredo, Webb, TX, USA
+Event description: Marriage of Brooks, Major Marquis II and Rubio, Winifred
+Participant family (Family): F0301
+
+Type: event
+Gramps ID: E2962
+Event type: Marriage
+Event description: Marriage of Payne, Leonard and Hall, Elizabeth
+Participant family (Family): F0302
+
+Type: event
+Gramps ID: E2963
+Event type: Marriage
+Event date: 46
+Event location: Georgetown, SC, USA
+Event description: Marriage of Payne, Leonard? and Brooks, Elizabeth"Betty"
+Participant family (Family): F0303
+
+Type: event
+Gramps ID: E2964
+Event type: Marriage
+Event date: 1759
+Event location: Carson City, NV, USA
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, Moses Aaron and Reynolds, Mary Jane
+Participant family (Family): F0304
+
+Type: event
+Gramps ID: E2965
+Event type: Marriage
+Event date: 1783-12-15
+Event location: De Ridder, LA, USA
+Event description: Marriage of Payne, George and Diaz, Frances
+Participant family (Family): F0305
+
+Type: event
+Gramps ID: E2966
+Event type: Marriage
+Event description: Marriage of КДŃŃĐ°ĐșĐŸĐČ, George and Daniels, Phoebe
+Participant family (Family): F0306
+
+Type: event
+Gramps ID: E2967
+Event type: Marriage
+Event date: 1840-04-04
+Event description: Marriage of Martel, Henry and HĂ©bert, Ruth Ann
+Participant family (Family): F0307
+
+Type: event
+Gramps ID: E2968
+Event type: Marriage
+Event date: 1993-11-27
+Event location: Merrill, WI, USA
+Event description: Marriage of ĐŃĐșĐŸĐČ, Curtis Dale and Gordon, Heather Kathleen
+Participant family (Family): F0308
+
+Type: event
+Gramps ID: E2969
+Event type: Marriage
+Event date: 1993
+Event location: Owensboro, Daviess, KY, USA
+Event description: Marriage of Willis, Corey and Poirier, Janelle Marie
+Participant family (Family): F0309
+
+Type: event
+Gramps ID: E2970
+Event type: Marriage
+Event description: Marriage of Garner, Eugene Stanley, Jr. and Pelletier, Josephine
+Participant family (Family): F0031
+
+Type: event
+Gramps ID: E2971
+Event type: Marriage
+Event date: 1983-12-17
+Event description: Marriage of Warner, Robert Douglas and Norton, Christina
+Participant family (Family): F0310
+
+Type: event
+Gramps ID: E2972
+Event type: Marriage
+Event description: Marriage of Warner, Thomas Frederick and Carter, Debra J.
+Participant family (Family): F0311
+
+Type: event
+Gramps ID: E2973
+Event type: Marriage
+Event date: 1977-06-04
+Event location: Statesboro, Bulloch, GA, USA
+Event description: Marriage of Warner, Stephen Paul and Đ„ŃĐŽĐŸĐœĐŸĐłĐŸĐČ, Patricia
+Participant family (Family): F0312
+
+Type: event
+Gramps ID: E2974
+Event type: Marriage
+Event description: Marriage of Diaz, William and Baldwin, Anne
+Participant family (Family): F0313
+
+Type: event
+Gramps ID: E2975
+Event type: Marriage
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, Charles Sr. and Lapointe, Lucy aka Sarah
+Participant family (Family): F0314
+
+Type: event
+Gramps ID: E2976
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Howell, John and Yates, Sarah
+Participant family (Family): F0315
+
+Type: event
+Gramps ID: E2977
+Event type: Marriage
+Event location: Del Rio, Val Verde, TX, USA
+Event description: Marriage of Webb, Andrew and Webb, Margaret Margarite?
+Participant family (Family): F0316
+
+Type: event
+Gramps ID: E2978
+Event type: Marriage
+Event description: Marriage of Delgado and Tyler, Mary A.
+Participant family (Family): F0317
+
+Type: event
+Gramps ID: E2979
+Event type: Marriage
+Event date: 1845-01-23
+Event location: Charleston, SC, USA
+Event description: Marriage of Webb, Alexander and Delgado, Mary Ann
+Participant family (Family): F0318
+
+Type: event
+Gramps ID: E2980
+Event type: Marriage
+Event description: Marriage of Douglas, Frederick and Stanley, Barbara
+Participant family (Family): F0319
+
+Type: event
+Gramps ID: E2981
+Event type: Marriage
+Event date: 1973-09-15
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Hale, Lawrence Paul and Garner, Anne Therese
+Participant family (Family): F0032
+
+Type: event
+Gramps ID: E2982
+Event type: Marriage
+Event description: Marriage of Sanders, Henry and Rose, Ann
+Participant family (Family): F0320
+
+Type: event
+Gramps ID: E2983
+Event type: Marriage
+Event date: 1615
+Event location: Allegan, MI, USA
+Event description: Marriage of Foster, Thomas and Spencer, Ann
+Participant family (Family): F0321
+
+Type: event
+Gramps ID: E2984
+Event type: Marriage
+Event description: Marriage of Warner, Thomas and Black, Jane
+Participant family (Family): F0322
+
+Type: event
+Gramps ID: E2985
+Event type: Marriage
+Event description: Marriage of Christiansen, Edward and Abbott, Frances
+Participant family (Family): F0323
+
+Type: event
+Gramps ID: E2986
+Event type: Marriage
+Event description: Marriage of Jones, Hugh and ĐĐžŃĐžĐ»Đ»ĐŸĐČ, ??
+Participant family (Family): F0324
+
+Type: event
+Gramps ID: E2987
+Event type: Marriage
+Event location: Hilo, HI, USA
+Event description: Marriage of Christiansen, Christopher and Jones, Ann
+Participant family (Family): F0325
+
+Type: event
+Gramps ID: E2988
+Event type: Marriage
+Event description: Marriage of ĐĄĐŒĐžŃĐœĐŸĐČ, Eudo and Rios, Agnes
+Participant family (Family): F0326
+
+Type: event
+Gramps ID: E2989
+Event type: Marriage
+Event description: Marriage of ĐĄĐŒĐžŃĐœĐŸĐČ, Ribald and Gray, Beatrix
+Participant family (Family): F0327
+
+Type: event
+Gramps ID: E2990
+Event type: Marriage
+Event description: Marriage of ĐĐŸĐœĐŸĐŒĐ°ŃĐ”ĐČ, Ralph and RodrĂguez, Agatha
+Participant family (Family): F0328
+
+Type: event
+Gramps ID: E2991
+Event type: Marriage
+Event description: Marriage of Hanson, Robert and Schwartz, Helewisa
+Participant family (Family): F0329
+
+Type: event
+Gramps ID: E2992
+Event type: Marriage
+Event date: 1979-01-06
+Event location: Farmington, MO, USA
+Event description: Marriage of Garner, Gerard Stephen and George, Elizabeth
+Participant family (Family): F0033
+
+Type: event
+Gramps ID: E2993
+Event type: Marriage
+Event description: Marriage of Knudsen, Robert and Schwartz, Helewisa
+Participant family (Family): F0330
+
+Type: event
+Gramps ID: E2994
+Event type: Marriage
+Event description: Marriage of Knudsen, Ranulf and Huff, Bertrama
+Participant family (Family): F0331
+
+Type: event
+Gramps ID: E2995
+Event type: Marriage
+Event description: Marriage of Foster, John and Ryan, Elizabeth
+Participant family (Family): F0332
+
+Type: event
+Gramps ID: E2996
+Event type: Marriage
+Event description: Marriage of Knudsen, Ralph and Walton, Theophania(Tiffany)
+Participant family (Family): F0333
+
+Type: event
+Gramps ID: E2997
+Event type: Marriage
+Event description: Marriage of Knudsen, Ralph and Huff, Isabel
+Participant family (Family): F0334
+
+Type: event
+Gramps ID: E2998
+Event type: Marriage
+Event date: 1343-10
+Event description: Marriage of Knudsen, John and Huff, Isabel
+Participant family (Family): F0335
+
+Type: event
+Gramps ID: E2999
+Event type: Marriage
+Event description: Marriage of Massey, John and ĐĐ°Đ»ŃŃĐ”ĐČ, Joan
+Participant family (Family): F0336
+
+Type: event
+Gramps ID: E3000
+Event type: Marriage
+Event date: 1514
+Event location: Greenville, OH, USA
+Event description: Marriage of Christiansen, Christopher and Gomez, Jane Joane
+Participant family (Family): F0337
+
+Type: event
+Gramps ID: E3001
+Event type: Marriage
+Event date: 1551
+Event location: Wilmington, OH, USA
+Event description: Marriage of Foster, Thomas and KozĆowski, Margret
+Participant family (Family): F0338
+
+Type: event
+Gramps ID: E3002
+Event type: Marriage
+Event date: 1991-06-22
+Event description: Marriage of Garner, Francis William and Gibbs, Connie
+Participant family (Family): F0339
+
+Type: event
+Gramps ID: E3003
+Event type: Marriage
+Event date: 1920-06-23
+Event location: Worthington, MN, USA
+Event description: Marriage of MarĂn, Walter Matthew and Boucher, Mary Cecilia
+Participant family (Family): F0034
+
+Type: event
+Gramps ID: E3004
+Event type: Marriage
+Event description: Marriage of MartĂn and Garner, Melissa Sue
+Participant family (Family): F0340
+
+Type: event
+Gramps ID: E3005
+Event type: Marriage
+Event date: 1971-10-23
+Event description: Marriage of Garner, Richard Eugene and Gibbs, Elaine
+Participant family (Family): F0341
+
+Type: event
+Gramps ID: E3006
+Event type: Marriage
+Event description: Marriage of Garner, Jason Richard and Harper, ??
+Participant family (Family): F0342
+
+Type: event
+Gramps ID: E3007
+Event type: Marriage
+Event date: 1970-08-08
+Event description: Marriage of Garner, Michael Stanley and Gibbs, Sharon
+Participant family (Family): F0343
+
+Type: event
+Gramps ID: E3008
+Event type: Marriage
+Event description: Marriage of DĂez, William George and Garner, Barbara Jo
+Participant family (Family): F0344
+
+Type: event
+Gramps ID: E3009
+Event type: Marriage
+Event date: 1993-06
+Event description: Marriage of Demers, ?? and ĐĄĐ”ŃгДДĐČ, Adria Maria
+Participant family (Family): F0345
+
+Type: event
+Gramps ID: E3010
+Event type: Marriage
+Event date: 1976-01-25
+Event description: Marriage of Garner, Peter George and Gibbs, Joy
+Participant family (Family): F0346
+
+Type: event
+Gramps ID: E3011
+Event type: Marriage
+Event description: Marriage of Hill and Garner, Louella Marie
+Participant family (Family): F0347
+
+Type: event
+Gramps ID: E3012
+Event type: Marriage
+Event date: 1994-03-04
+Event description: Marriage of Garner, John Joseph and Crawford, Lori
+Participant family (Family): F0348
+
+Type: event
+Gramps ID: E3013
+Event type: Marriage
+Event date: 1991-12-02
+Event description: Marriage of Garner, Mark Gerard and Gibbs, Lori
+Participant family (Family): F0349
+
+Type: event
+Gramps ID: E3014
+Event type: Marriage
+Event date: 1885-10-15
+Event location: Worthington, MN, USA
+Event description: Marriage of MarĂn, Moses Wallace and Landry, Eleanor (Nellie) Therese
+Participant family (Family): F0035
+
+Type: event
+Gramps ID: E3015
+Event type: Marriage
+Event description: Marriage of Mullins, Robert? and Houston, Ellender
+Participant family (Family): F0350
+
+Type: event
+Gramps ID: E3016
+Event type: Marriage
+Event date: 1994-03-04
+Event description: Marriage of Christensen, William and Cruz, Judy Denise
+Participant family (Family): F0351
+
+Type: event
+Gramps ID: E3017
+Event type: Marriage
+Event description: Marriage of Holloway, John(?) and ĐŃĐ»ĐŸĐČ, Margaret(?)
+Participant family (Family): F0352
+
+Type: event
+Gramps ID: E3018
+Event type: Marriage
+Event date: 1820-02-13
+Event location: Batesville, Independence, AR, USA
+Event description: Marriage of Fernandez, Thomas and Holloway, Sarah
+Participant family (Family): F0353
+
+Type: event
+Gramps ID: E3019
+Event type: Marriage
+Event date: 1996-05-11
+Event location: Gainesville, Alachua, FL, USA
+Event description: Marriage of Weaver, Steven Matthew and Warner, JenniferMae(Ganoe)
+Participant family (Family): F0354
+
+Type: event
+Gramps ID: E3020
+Event type: Marriage
+Event date: 1727
+Event location: Mooresville, NC, USA
+Event description: Marriage of Ball, Ezekiel and Reese
+Participant family (Family): F0355
+
+Type: event
+Gramps ID: E3021
+Event type: Marriage
+Event date: 1989-08-05
+Event location: Dothan, Houston, AL, USA
+Event description: Marriage of Welch, Christopher Paul and Hayes, LeAnn
+Participant family (Family): F0356
+
+Type: event
+Gramps ID: E3022
+Event type: Marriage
+Event date: 1996-08-10
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Marriage of Graham, Steve and Cruz, Laura Joy
+Participant family (Family): F0357
+
+Type: event
+Gramps ID: E3023
+Event type: Marriage
+Event date: 1995-06-24
+Event location: Harrison, Boone, AR, USA
+Event description: Marriage of Townsend, Mark and ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Heather Michelle
+Participant family (Family): F0358
+
+Type: event
+Gramps ID: E3024
+Event type: Marriage
+Event date: 1990
+Event location: Wheeling, WV-OH, USA
+Event description: Marriage of Wilson, Douglas and Cruz, Marsha Ann
+Participant family (Family): F0359
+
+Type: event
+Gramps ID: E3025
+Event type: Marriage
+Event date: 1860-10
+Event location: Bennington, VT, USA
+Event description: Marriage of MarĂn, Alfred Franklin(Frank) and Floyd, Martha Frances "Fannie"
+Participant family (Family): F0036
+
+Type: event
+Gramps ID: E3026
+Event type: Marriage
+Event date: 1995-03-11
+Event location: Utica-Rome, NY, USA
+Event description: Marriage of Alvarado, Jeffery and Cruz, Patti Jo
+Participant family (Family): F0360
+
+Type: event
+Gramps ID: E3027
+Event type: Marriage
+Event description: Marriage of Brooks, William Waller and ĐĐ°ŃОлŃĐ”ĐČ, Lucy
+Participant family (Family): F0361
+
+Type: event
+Gramps ID: E3028
+Event type: Marriage
+Event description: Marriage of Brooks, Marquis I and Guzman, Isabella
+Participant family (Family): F0362
+
+Type: event
+Gramps ID: E3029
+Event type: Marriage
+Event date: 1834-06-08
+Event location: Winston-Salem, NC, USA
+Event description: Marriage of Riley, Thomas and Edwards, Lucy
+Participant family (Family): F0363
+
+Type: event
+Gramps ID: E3030
+Event type: Marriage
+Event date: 1907-06-02
+Event description: Marriage of Garner, Daniel Webster and Jackson, Cora Ellen
+Participant family (Family): F0364
+
+Type: event
+Gramps ID: E3031
+Event type: Marriage
+Event date: 1875-10-07
+Event location: Paragould, Greene, AR, USA
+Event description: Marriage of RamĂrez, John B. and Garner, Rebecca Catharine
+Participant family (Family): F0366
+
+Type: event
+Gramps ID: E3032
+Event type: Marriage
+Event date: 1875-02-04
+Event location: Denver-Aurora, CO, USA
+Event description: Marriage of Floyd, John Morgan and Carr, Zelpha Josephine
+Participant family (Family): F0367
+
+Type: event
+Gramps ID: E3033
+Event type: Marriage
+Event date: 1879-09-17
+Event location: Vernal, UT, USA
+Event description: Marriage of Ford, Stephen Jacob and Garner, Iola Elizabeth Betty
+Participant family (Family): F0368
+
+Type: event
+Gramps ID: E3034
+Event type: Marriage
+Event date: 1880-11-25
+Event location: Paragould, Greene, AR, USA
+Event description: Marriage of Garner, Robert F. and Cannon, Mary Jane
+Participant family (Family): F0369
+
+Type: event
+Gramps ID: E3035
+Event type: Marriage
+Event date: 1875-04-11
+Event location: Rochester, MN, USA
+Event description: Marriage of Boucher, William Bernard and Reeves, Maria
+Participant family (Family): F0037
+
+Type: event
+Gramps ID: E3036
+Event type: Marriage
+Event date: 1888-08-23
+Event location: Centralia, WA, USA
+Event description: Marriage of Parker, Frank R. and Garner, Anetta
+Participant family (Family): F0370
+
+Type: event
+Gramps ID: E3037
+Event type: Marriage
+Event location: Midland, Midland, TX, USA
+Event description: Marriage of Wheeler, Don and ĐĐŸĐżĐ°ŃĐžĐœ, Carmen Diana
+Participant family (Family): F0371
+
+Type: event
+Gramps ID: E3038
+Event type: Marriage
+Event date: 1879-07-25
+Event location: Greensboro, NC, USA
+Event description: Marriage of Reed, Edward and Reed, Ellen
+Participant family (Family): F0372
+
+Type: event
+Gramps ID: E3039
+Event type: Marriage
+Event description: Marriage of Kristensen, John Francis"Chick" and äŒè€, Mary
+Participant family (Family): F0373
+
+Type: event
+Gramps ID: E3040
+Event type: Marriage
+Event date: 1937
+Event description: Marriage of Jordan, William and Reed, Frances Lucille (Babe)
+Participant family (Family): F0374
+
+Type: event
+Gramps ID: E3041
+Event type: Marriage
+Event date: 1903
+Event description: Marriage of Reed, Francis Vincent and ĐĐ°Đ·Đ°ĐœŃĐ”ĐČ, Katherine
+Participant family (Family): F0375
+
+Type: event
+Gramps ID: E3042
+Event type: Marriage
+Event description: Marriage of Garner, Eugene Stanley, Jr. and Washington, Pearline
+Participant family (Family): F0376
+
+Type: event
+Gramps ID: E3043
+Event type: Marriage
+Event date: 1881-08-15
+Event description: Marriage of Dean, John and Reed, Catherine
+Participant family (Family): F0377
+
+Type: event
+Gramps ID: E3044
+Event type: Marriage
+Event date: 1870-05-24
+Event description: Marriage of Reed, John and Bernier, Margaret
+Participant family (Family): F0378
+
+Type: event
+Gramps ID: E3045
+Event type: Marriage
+Event date: 1610-10-10
+Event location: Burlington, Des Moines, IA, USA
+Event description: Marriage of Lefebvre, Rev. John L. and Kowalski, Hannah
+Participant family (Family): F0379
+
+Type: event
+Gramps ID: E3046
+Event type: Marriage
+Event location: Buffalo, Erie, NY, USA
+Event description: Marriage of Boucher, Michael and Boucher, Honora
+Participant family (Family): F0038
+
+Type: event
+Gramps ID: E3047
+Event type: Marriage
+Event location: McAlester, OK, USA
+Event description: Marriage of Kowalski, John and Wells, Alice
+Participant family (Family): F0380
+
+Type: event
+Gramps ID: E3048
+Event type: Marriage
+Event location: Decatur, Morgan, AL, USA
+Event description: Marriage of Kowalski, Thomas and Santos, Alice
+Participant family (Family): F0381
+
+Type: event
+Gramps ID: E3049
+Event type: Marriage
+Event location: Deming, NM, USA
+Event description: Marriage of Sanchez, John and Curtis, Margaret
+Participant family (Family): F0382
+
+Type: event
+Gramps ID: E3050
+Event type: Marriage
+Event location: Deming, NM, USA
+Event description: Marriage of Curtis, John and Gibbs, Margaret
+Participant family (Family): F0383
+
+Type: event
+Gramps ID: E3051
+Event type: Marriage
+Event location: McAlester, OK, USA
+Event description: Marriage of Molina, Robert
+Participant family (Family): F0384
+
+Type: event
+Gramps ID: E3052
+Event type: Marriage
+Event description: Marriage of James, Robert and Pratt, Sarah
+Participant family (Family): F0385
+
+Type: event
+Gramps ID: E3053
+Event type: Marriage
+Event description: Marriage of Reynolds, David and Vaughn, Mary Meriwether
+Participant family (Family): F0386
+
+Type: event
+Gramps ID: E3054
+Event type: Marriage
+Event date: 1665
+Event description: Marriage of Reynolds, Nicholas and Murray, Susannah
+Participant family (Family): F0387
+
+Type: event
+Gramps ID: E3055
+Event type: Marriage
+Event date: 1663
+Event location: Greenville, SC, USA
+Event description: Marriage of Reynolds, Col. John and Mazur, Elizabeth
+Participant family (Family): F0388
+
+Type: event
+Gramps ID: E3056
+Event type: Marriage
+Event description: Marriage of Mazur, William and Crawford, Margaret
+Participant family (Family): F0389
+
+Type: event
+Gramps ID: E3057
+Event type: Marriage
+Event date: 1968-11-16
+Event location: Santa Rosa-Petaluma, CA, USA
+Event description: Marriage of Warner, David Warren and Simpson, Geraldine Ann
+Participant family (Family): F0039
+
+Type: event
+Gramps ID: E3058
+Event type: Marriage
+Event date: 1623-04-10
+Event description: Marriage of Reynolds, John and ĐĐŸĐČалДĐČ, Sarah
+Participant family (Family): F0390
+
+Type: event
+Gramps ID: E3059
+Event type: Marriage
+Event date: nach 1624
+Event description: Marriage of Elliott, Lodowick and ĐĐŸĐČалДĐČ, Sarah
+Participant family (Family): F0391
+
+Type: event
+Gramps ID: E3060
+Event type: Marriage
+Event date: 1590-11-01
+Event location: Milwaukee, WI, USA
+Event description: Marriage of Goodman, Ralph and Powell, Martha
+Participant family (Family): F0392
+
+Type: event
+Gramps ID: E3061
+Event type: Marriage
+Event date: 1588-10-29
+Event description: Marriage of Reynolds, John and Stevens, Elizabeth
+Participant family (Family): F0393
+
+Type: event
+Gramps ID: E3062
+Event type: Marriage
+Event location: Coldwater, MI, USA
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, William and Page, Sarah
+Participant family (Family): F0394
+
+Type: event
+Gramps ID: E3063
+Event type: Marriage
+Event description: Marriage of BĂ©dard, Swanson and ĐĐŒĐžŃŃОДĐČ, Mary
+Participant family (Family): F0395
+
+Type: event
+Gramps ID: E3064
+Event type: Marriage
+Event description: Marriage of Erickson, Charles and ĐĐŒĐžŃŃОДĐČ, Lucy
+Participant family (Family): F0396
+
+Type: event
+Gramps ID: E3065
+Event type: Marriage
+Event date: um 1640
+Event location: Akron, OH, USA
+Event description: Marriage of Bishop, Quirinus and Simmons, Maria
+Participant family (Family): F0397
+
+Type: event
+Gramps ID: E3066
+Event type: Marriage
+Event description: Marriage of Webster, Conrad and Castillo, Margaretha
+Participant family (Family): F0398
+
+Type: event
+Gramps ID: E3067
+Event type: Marriage
+Event description: Marriage of Lapointe, John and Madsen, Catherine
+Participant family (Family): F0399
+
+Type: event
+Gramps ID: E3068
+Event type: Marriage
+Event date: 1888-08-09
+Event location: Springfield, Sangamon, IL, USA
+Event description: Marriage of Warner, Warren W. and Ball, Abigail
+Participant family (Family): F0004
+
+Type: event
+Gramps ID: E3069
+Event type: Marriage
+Event date: 1928-01-21
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Russell, Norman and Lessard, Helen Belle
+Participant family (Family): F0040
+
+Type: event
+Gramps ID: E3070
+Event type: Marriage
+Event description: Marriage of Baldwin, Peter and ĐĐžĐșĐžŃĐŸŃĐŸĐČ
+Participant family (Family): F0400
+
+Type: event
+Gramps ID: E3071
+Event type: Marriage
+Event description: Marriage of Diaz, William and ĐĐŸĐŒĐ°ŃĐŸĐČ, Jane
+Participant family (Family): F0401
+
+Type: event
+Gramps ID: E3072
+Event type: Marriage
+Event description: Marriage of Swanson, William and Jensen, Elizabeth
+Participant family (Family): F0402
+
+Type: event
+Gramps ID: E3073
+Event type: Marriage
+Event date: 1605-05-27
+Event location: Seattle, WA, USA
+Event description: Marriage of Swanson, Richard and El FernĂĄndez, Avis Fernandez III
+Participant family (Family): F0403
+
+Type: event
+Gramps ID: E3074
+Event type: Marriage
+Event description: Marriage of Diaz, William (Rev.) and Hoffman, Fay
+Participant family (Family): F0404
+
+Type: event
+Gramps ID: E3075
+Event type: Marriage
+Event description: Marriage of ć±±æŹ, Antoine Desaure Perronett and ĐĄĐŸĐșĐŸĐ»ĐŸĐČ, Louise
+Participant family (Family): F0405
+
+Type: event
+Gramps ID: E3076
+Event type: Marriage
+Event date: 1997-07-07
+Event location: Blacksburg, VA, USA
+Event description: Marriage of Garner, Thomas James and ĐĄĐŸŃĐŸĐșĐžĐœ, Holly Ruth
+Participant family (Family): F0406
+
+Type: event
+Gramps ID: E3077
+Event type: Marriage
+Event description: Marriage of ĐĄĐŸŃĐŸĐșĐžĐœ, Robert and ĐĄĐŸŃĐŸĐșĐžĐœ, Candy
+Participant family (Family): F0407
+
+Type: event
+Gramps ID: E3078
+Event type: Marriage
+Event description: Marriage of Webb, Elias and Gibbs, Nancy
+Participant family (Family): F0408
+
+Type: event
+Gramps ID: E3079
+Event type: Marriage
+Event date: vor 1800
+Event location: Canton, Fulton, IL, USA
+Event description: Marriage of Webb, Alex and ĐĐ°ĐșĐ°ŃĐŸĐČ, Nancy
+Participant family (Family): F0409
+
+Type: event
+Gramps ID: E3080
+Event type: Marriage
+Event date: 1983-04-09
+Event location: Madison, WI, USA
+Event description: Marriage of Warner, Stuart Bogarte and Richards, Diana
+Participant family (Family): F0041
+
+Type: event
+Gramps ID: E3081
+Event type: Marriage
+Event description: Marriage of Waters, John and Webb, Mary
+Participant family (Family): F0410
+
+Type: event
+Gramps ID: E3082
+Event type: Marriage
+Event location: Canton, Fulton, IL, USA
+Event description: Marriage of ĐĐ°ĐșĐ°ŃĐŸĐČ, Joseph
+Participant family (Family): F0411
+
+Type: event
+Gramps ID: E3083
+Event type: Marriage
+Event description: Marriage of Webb, William John and Wagner, Martha Ann
+Participant family (Family): F0412
+
+Type: event
+Gramps ID: E3084
+Event type: Marriage
+Event date: 1880-12-14
+Event description: Marriage of Webb, James Marshall and Ballard, Judith Ellen
+Participant family (Family): F0413
+
+Type: event
+Gramps ID: E3085
+Event type: Marriage
+Event date: 1997-06-07
+Event location: Gainesville, Llano, TX, USA
+Event description: Marriage of ĐĐŸĐłĐŽĐ°ĐœĐŸĐČ, Dr. Brent and Cruz, Ann Lynn
+Participant family (Family): F0414
+
+Type: event
+Gramps ID: E3086
+Event type: Marriage
+Event description: Marriage of Farmer, Jacob and ĐĐŸŃĐŸĐ·ĐŸĐČ, Mary Elizabeth
+Participant family (Family): F0415
+
+Type: event
+Gramps ID: E3087
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Simon and ĐŃĐžĐłĐŸŃŃĐ”ĐČ, Anna Maria
+Participant family (Family): F0416
+
+Type: event
+Gramps ID: E3088
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Michael and LĂłpez, Anna Elisabeth
+Participant family (Family): F0417
+
+Type: event
+Gramps ID: E3089
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Simon and Holland, Anna Margaretha
+Participant family (Family): F0418
+
+Type: event
+Gramps ID: E3090
+Event type: Marriage
+Event description: Marriage of Farmer, Simon and ĐĐ°ŃĐ°ĐœĐŸĐČ, Susan
+Participant family (Family): F0419
+
+Type: event
+Gramps ID: E3091
+Event type: Marriage
+Event date: 1839-04-11
+Event location: Athens, OH, USA
+Event description: Marriage of Farmer, Benjamin H. and Mills, Isabella
+Participant family (Family): F0042
+
+Type: event
+Gramps ID: E3092
+Event type: Marriage
+Event description: Marriage of Shelton, Peter and Farmer, Caroline
+Participant family (Family): F0420
+
+Type: event
+Gramps ID: E3093
+Event type: Marriage
+Event description: Marriage of Thomsen, new and Farmer, Elizabeth
+Participant family (Family): F0421
+
+Type: event
+Gramps ID: E3094
+Event type: Marriage
+Event description: Marriage of Farmer, Valentine and Miller, Anna Catherine
+Participant family (Family): F0422
+
+Type: event
+Gramps ID: E3095
+Event type: Marriage
+Event description: Marriage of Farmer, George William and Bradley, Mary
+Participant family (Family): F0423
+
+Type: event
+Gramps ID: E3096
+Event type: Marriage
+Event description: Marriage of Taylor, Jacob and Farmer, Susanna
+Participant family (Family): F0424
+
+Type: event
+Gramps ID: E3097
+Event type: Marriage
+Event description: Marriage of Dubé, Jacob and Farmer, Anna Marie
+Participant family (Family): F0425
+
+Type: event
+Gramps ID: E3098
+Event type: Marriage
+Event description: Marriage of Farmer, Peter Simon and Bowen, Elizabeth
+Participant family (Family): F0426
+
+Type: event
+Gramps ID: E3099
+Event type: Marriage
+Event description: Marriage of Patterson, George and Farmer, Elizabeth
+Participant family (Family): F0427
+
+Type: event
+Gramps ID: E3100
+Event type: Marriage
+Event description: Marriage of Butler, George and Farmer, Eva
+Participant family (Family): F0428
+
+Type: event
+Gramps ID: E3101
+Event type: Marriage
+Event description: Marriage of Ford, Samuel and Farmer, Catharine
+Participant family (Family): F0429
+
+Type: event
+Gramps ID: E3102
+Event type: Marriage
+Event date: 1883-09-12
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Reed, Francis Vincent and йОŃ
ĐŸĐœĐŸĐČ, Catherine Virginia
+Participant family (Family): F0043
+
+Type: event
+Gramps ID: E3103
+Event type: Marriage
+Event description: Marriage of Farmer, Michael and Dubé, Elizabeth
+Participant family (Family): F0430
+
+Type: event
+Gramps ID: E3104
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Valentin and Morgan, Elisabeth Margaretha
+Participant family (Family): F0431
+
+Type: event
+Gramps ID: E3105
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Franciskus and Barnett, Anna Gertrude
+Participant family (Family): F0432
+
+Type: event
+Gramps ID: E3106
+Event type: Marriage
+Event description: Marriage of Frazier, Johann Adam and Hicks, Anna Eva
+Participant family (Family): F0433
+
+Type: event
+Gramps ID: E3107
+Event type: Marriage
+Event description: Marriage of Frazier, Johann Walter and Beaulieu, Anna Margaretha
+Participant family (Family): F0434
+
+Type: event
+Gramps ID: E3108
+Event type: Marriage
+Event description: Marriage of Steele, Valentine and Beaulieu, Anna Elisabeth
+Participant family (Family): F0435
+
+Type: event
+Gramps ID: E3109
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Valentin and Frazier, Maria Margaretha
+Participant family (Family): F0436
+
+Type: event
+Gramps ID: E3110
+Event type: Marriage
+Event description: Marriage of Hardy, Jakob and Beaulieu, Anna Maria
+Participant family (Family): F0437
+
+Type: event
+Gramps ID: E3111
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Adam and Michaud, Anna Eva
+Participant family (Family): F0438
+
+Type: event
+Gramps ID: E3112
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Theobald and Sutton, Anna Maria
+Participant family (Family): F0439
+
+Type: event
+Gramps ID: E3113
+Event type: Marriage
+Event date: 1971-09-05
+Event location: Gaithersburg, MD, USA
+Event description: Marriage of Haynes, Marc W. and Warner, Laura Gail
+Participant family (Family): F0044
+
+Type: event
+Gramps ID: E3114
+Event type: Marriage
+Event description: Marriage of LĂłpez, Hans Valentin and Beaulieu, Anna Ottilia
+Participant family (Family): F0440
+
+Type: event
+Gramps ID: E3115
+Event type: Marriage
+Event description: Marriage of Michaud, Valentin and Beaulieu, Anna Eva
+Participant family (Family): F0441
+
+Type: event
+Gramps ID: E3116
+Event type: Marriage
+Event description: Marriage of ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Johann Adam and Beaulieu, Anna Margaretha
+Participant family (Family): F0442
+
+Type: event
+Gramps ID: E3117
+Event type: Marriage
+Event description: Marriage of Beaulieu, Johann Simon and ĐлДĐșŃĐ°ĐœĐŽŃĐŸĐČ, Anna Margaretha
+Participant family (Family): F0443
+
+Type: event
+Gramps ID: E3118
+Event type: Marriage
+Event date: 1877-09-26
+Event location: Crowley, Acadia, LA, USA
+Event description: Marriage of ĐлаŃĐŸĐČ, John and Floyd, Martha Frances "Fannie"
+Participant family (Family): F0444
+
+Type: event
+Gramps ID: E3119
+Event type: Marriage
+Event date: 1888-12-19
+Event location: Sulphur Springs, Rusk, TX, USA
+Event description: Marriage of LĂ©vesque, James W. and Lessard, Emma Jane
+Participant family (Family): F0445
+
+Type: event
+Gramps ID: E3120
+Event type: Marriage
+Event date: 1895-05-01
+Event location: Lincoln, NE, USA
+Event description: Marriage of Boyd, Charles Newton and Lessard, Izora
+Participant family (Family): F0446
+
+Type: event
+Gramps ID: E3121
+Event type: Marriage
+Event location: Reno-Sparks, NV, USA
+Event description: Marriage of Gilbert, ?? and LĂ©vesque, Wilma
+Participant family (Family): F0449
+
+Type: event
+Gramps ID: E3122
+Event type: Marriage
+Event date: 1882-12-26
+Event location: Columbia, SC, USA
+Event description: Marriage of Page, David and Douglas, Elizabeth
+Participant family (Family): F0045
+
+Type: event
+Gramps ID: E3123
+Event type: Marriage
+Event location: Reno-Sparks, NV, USA
+Event description: Marriage of Mack, ?? and LĂ©vesque, Elsie
+Participant family (Family): F0450
+
+Type: event
+Gramps ID: E3124
+Event type: Marriage
+Event location: Reno-Sparks, NV, USA
+Event description: Marriage of Blais, ?? and LĂ©vesque, Mary
+Participant family (Family): F0451
+
+Type: event
+Gramps ID: E3125
+Event type: Marriage
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Marriage of Neal, James and Page, Elizabeth
+Participant family (Family): F0452
+
+Type: event
+Gramps ID: E3126
+Event type: Marriage
+Event description: Marriage of Schneider and Neal, Margaret
+Participant family (Family): F0453
+
+Type: event
+Gramps ID: E3127
+Event type: Marriage
+Event date: 1901-12-12
+Event location: Palatka, Putnam, FL, USA
+Event description: Marriage of Waters, William and Neal, Matilda
+Participant family (Family): F0454
+
+Type: event
+Gramps ID: E3128
+Event type: Marriage
+Event date: 1871-03-22
+Event location: Binghamton, Broome, NY, USA
+Event description: Marriage of Jankowski, George and Page, Margaret
+Participant family (Family): F0455
+
+Type: event
+Gramps ID: E3129
+Event type: Marriage
+Event location: Troy, Pike, AL, USA
+Event description: Marriage of Sanz, John and Jankowski, Sarah
+Participant family (Family): F0456
+
+Type: event
+Gramps ID: E3130
+Event type: Marriage
+Event description: Marriage of Lewandowski, Thomas and Jankowski, Isabella Belle
+Participant family (Family): F0457
+
+Type: event
+Gramps ID: E3131
+Event type: Marriage
+Event description: Marriage of Owens, Wilford and Jankowski, Matilda
+Participant family (Family): F0458
+
+Type: event
+Gramps ID: E3132
+Event type: Marriage
+Event description: Marriage of ЧДŃĐșĐ°ŃĐžĐœ, Thomas and Jankowski, Margaret Jane "Maggie"
+Participant family (Family): F0459
+
+Type: event
+Gramps ID: E3133
+Event type: Marriage
+Event date: 1947-12-28
+Event location: Morehead City, NC, USA
+Event description: Marriage of Cruz, William Everett and Hawkins, Ellen Marie
+Participant family (Family): F0046
+
+Type: event
+Gramps ID: E3134
+Event type: Marriage
+Event description: Marriage of Romero, Ernest and Jankowski, Minnie
+Participant family (Family): F0460
+
+Type: event
+Gramps ID: E3135
+Event type: Marriage
+Event description: Marriage of Page, John James and Mcdaniel, Margaret
+Participant family (Family): F0461
+
+Type: event
+Gramps ID: E3136
+Event type: Marriage
+Event date: 1908
+Event location: Palm Coast, Flagler, FL, USA
+Event description: Marriage of Page, John James and Adkins, Minnie
+Participant family (Family): F0462
+
+Type: event
+Gramps ID: E3137
+Event type: Marriage
+Event date: 1929-07-20
+Event description: Marriage of Ortiz, Raymond and Page, Ferne
+Participant family (Family): F0463
+
+Type: event
+Gramps ID: E3138
+Event type: Marriage
+Event description: Marriage of McCormick, Dean and Page, Florence
+Participant family (Family): F0464
+
+Type: event
+Gramps ID: E3139
+Event type: Marriage
+Event description: Marriage of Wong and Page, Mildred
+Participant family (Family): F0465
+
+Type: event
+Gramps ID: E3140
+Event type: Marriage
+Event description: Marriage of Daniels and Page, Edith (Dolly)
+Participant family (Family): F0466
+
+Type: event
+Gramps ID: E3141
+Event type: Marriage
+Event description: Marriage of Cross, Thomas and Page, Anna
+Participant family (Family): F0467
+
+Type: event
+Gramps ID: E3142
+Event type: Marriage
+Event date: 1919-08-14
+Event location: Brenham, Washington, TX, USA
+Event description: Marriage of Peters, Frank O. and Cross, Alta M.
+Participant family (Family): F0468
+
+Type: event
+Gramps ID: E3143
+Event type: Marriage
+Event date: 1946-03-02
+Event location: Grand Forks, ND, USA
+Event description: Marriage of Armstrong, Teddy C. and Cross, Gertrude
+Participant family (Family): F0469
+
+Type: event
+Gramps ID: E3144
+Event type: Marriage
+Event date: 1978-06-24
+Event location: Gaithersburg, MD, USA
+Event description: Marriage of ĐĐžŃДлДĐČ, Dennis John and Warner, Nancy Elizabeth
+Participant family (Family): F0047
+
+Type: event
+Gramps ID: E3145
+Event type: Marriage
+Event description: Marriage of Morin and Page, Belle
+Participant family (Family): F0470
+
+Type: event
+Gramps ID: E3146
+Event type: Marriage
+Event location: Warner Robins, Houston, GA, USA
+Event description: Marriage of Moss, Christy and Page, Matilda
+Participant family (Family): F0471
+
+Type: event
+Gramps ID: E3147
+Event type: Marriage
+Event description: Marriage of Waters, Cecil and Đ€ĐŸĐŒĐžĐœ, Grace
+Participant family (Family): F0472
+
+Type: event
+Gramps ID: E3148
+Event type: Marriage
+Event description: Marriage of Waters, Cecil Glenn and Hubbard, Donna
+Participant family (Family): F0473
+
+Type: event
+Gramps ID: E3149
+Event type: Marriage
+Event description: Marriage of Reyes and Armstrong, Sarah
+Participant family (Family): F0474
+
+Type: event
+Gramps ID: E3150
+Event type: Marriage
+Event description: Marriage of Gross and Peters, Dorothy
+Participant family (Family): F0475
+
+Type: event
+Gramps ID: E3151
+Event type: Marriage
+Event date: 1904-02-17
+Event location: Farmington, NM, USA
+Event description: Marriage of Neal, John and Schneider, Belle Irene
+Participant family (Family): F0476
+
+Type: event
+Gramps ID: E3152
+Event type: Marriage
+Event date: 1938-12-03
+Event location: Mankato, MN, USA
+Event description: Marriage of BĂ©langer, Adrian and Neal, Helen M.
+Participant family (Family): F0477
+
+Type: event
+Gramps ID: E3153
+Event type: Marriage
+Event date: 1965-04-10
+Event location: Point Pleasant, WV, USA
+Event description: Marriage of BĂ©langer, Donald and Pierce, Joanne
+Participant family (Family): F0478
+
+Type: event
+Gramps ID: E3154
+Event type: Marriage
+Event description: Marriage of Ortiz, Don and Welch, Shirley
+Participant family (Family): F0479
+
+Type: event
+Gramps ID: E3155
+Event type: Marriage
+Event date: 1944-04-21
+Event location: DuBois, PA, USA
+Event description: Marriage of ĐĐŸĐżĐ°ŃĐžĐœ, Raymond A. and Garrett, Carmen Eloise
+Participant family (Family): F0048
+
+Type: event
+Gramps ID: E3156
+Event type: Marriage
+Event date: 1881-10-04
+Event description: Marriage of Hines and Douglas, Eliza Jane
+Participant family (Family): F0481
+
+Type: event
+Gramps ID: E3157
+Event type: Marriage
+Event description: Marriage of Douglas, Abraham and Greer, Mary Wein
+Participant family (Family): F0482
+
+Type: event
+Gramps ID: E3158
+Event type: Marriage
+Event description: Marriage of Alvarado, John and James, Pamela
+Participant family (Family): F0483
+
+Type: event
+Gramps ID: E3159
+Event type: Marriage
+Event description: Marriage of Boyd, Capt. and Alvarado, Eliza
+Participant family (Family): F0484
+
+Type: event
+Gramps ID: E3160
+Event type: Marriage
+Event description: Marriage of Alvarado, Franklin and Hodges, Comfort
+Participant family (Family): F0485
+
+Type: event
+Gramps ID: E3161
+Event type: Marriage
+Event description: Marriage of Alvarado, William and Moody, Martha
+Participant family (Family): F0486
+
+Type: event
+Gramps ID: E3162
+Event type: Marriage
+Event description: Marriage of Alvarado, Thomas C. and ĐДЎĐČДЎДĐČ, Mary
+Participant family (Family): F0487
+
+Type: event
+Gramps ID: E3163
+Event type: Marriage
+Event description: Marriage of Alvarado, Marshall and Bouchard, Jane
+Participant family (Family): F0488
+
+Type: event
+Gramps ID: E3164
+Event type: Marriage
+Event description: Marriage of Douglas, John Jr. and Rogers, Barbara
+Participant family (Family): F0489
+
+Type: event
+Gramps ID: E3165
+Event type: Marriage
+Event date: 1937-09-11
+Event location: Midland, MI, USA
+Event description: Marriage of Lane, Joseph Robert and Thornton, Dorothy Eleanor
+Participant family (Family): F0049
+
+Type: event
+Gramps ID: E3166
+Event type: Marriage
+Event description: Marriage of HernĂĄndez, Thomas and Douglas, Elizabeth
+Participant family (Family): F0490
+
+Type: event
+Gramps ID: E3167
+Event type: Marriage
+Event description: Marriage of Kelley, Thomas and Douglas, Catherine
+Participant family (Family): F0491
+
+Type: event
+Gramps ID: E3168
+Event type: Marriage
+Event description: Marriage of Parsons, Henry and Douglas, Ellen
+Participant family (Family): F0492
+
+Type: event
+Gramps ID: E3169
+Event type: Marriage
+Event description: Marriage of ĐĐ°ĐČĐ»ĐŸĐČ, Reuben and Douglas, Lucinda J.
+Participant family (Family): F0493
+
+Type: event
+Gramps ID: E3170
+Event type: Marriage
+Event description: Marriage of ĐĐœĐŽŃДДĐČ, William and Douglas, Susan
+Participant family (Family): F0494
+
+Type: event
+Gramps ID: E3171
+Event type: Marriage
+Event date: 1806-07-28
+Event location: Sterling, Logan, CO, USA
+Event description: Marriage of Douglas, John Sr. and Larson, Christena Wiseman
+Participant family (Family): F0495
+
+Type: event
+Gramps ID: E3172
+Event type: Marriage
+Event description: Marriage of Douglas, Hans Peter and Cummings, Leonnah
+Participant family (Family): F0496
+
+Type: event
+Gramps ID: E3173
+Event type: Marriage
+Event description: Marriage of Gibson, Mr. and James, Mary
+Participant family (Family): F0497
+
+Type: event
+Gramps ID: E3174
+Event type: Marriage
+Event description: Marriage of Page, Mr. and James, Martha
+Participant family (Family): F0498
+
+Type: event
+Gramps ID: E3175
+Event type: Marriage
+Event date: um 1817
+Event description: Marriage of Lavoie, Henry and James, Patsy
+Participant family (Family): F0499
+
+Type: event
+Gramps ID: E3176
+Event type: Marriage
+Event location: Huron, SD, USA
+Event description: Marriage of Warner, Noah and Burns, Margaret
+Participant family (Family): F0005
+
+Type: event
+Gramps ID: E3177
+Event type: Marriage
+Event date: 1975-05-24
+Event location: Gaithersburg, MD, USA
+Event description: Marriage of Watkins, Bruce Edward and Warner, Mary Christine
+Participant family (Family): F0050
+
+Type: event
+Gramps ID: E3178
+Event type: Marriage
+Event location: Orlando, Orange, FL, USA
+Event description: Marriage of Santiago, Mathias and James, Molly
+Participant family (Family): F0500
+
+Type: event
+Gramps ID: E3179
+Event type: Marriage
+Event date: 1813-11-07
+Event description: Marriage of Poole, Dr. John and James, Jane
+Participant family (Family): F0501
+
+Type: event
+Gramps ID: E3180
+Event type: Marriage
+Event description: Marriage of Parent, Montgomery and Alvarado, Patsy
+Participant family (Family): F0503
+
+Type: event
+Gramps ID: E3181
+Event type: Marriage
+Event description: Marriage of ĐŃĐșĐŸĐČ, Herod and Parent, Polly
+Participant family (Family): F0504
+
+Type: event
+Gramps ID: E3182
+Event type: Marriage
+Event description: Marriage of Taylor, Philip and ĐŃĐșĐŸĐČ, Harriet
+Participant family (Family): F0505
+
+Type: event
+Gramps ID: E3183
+Event type: Marriage
+Event description: Marriage of ĐŃĐșĐŸĐČ, Charles and Girard, Margaret
+Participant family (Family): F0506
+
+Type: event
+Gramps ID: E3184
+Event type: Marriage
+Event description: Marriage of Moore, George and ĐŃĐșĐŸĐČ, Margaret
+Participant family (Family): F0507
+
+Type: event
+Gramps ID: E3185
+Event type: Marriage
+Event description: Marriage of ĐŃĐșĐŸĐČ, Samuel and Larsen, Nelly
+Participant family (Family): F0508
+
+Type: event
+Gramps ID: E3186
+Event type: Marriage
+Event description: Marriage of Logan, Joseph and ĐŃĐșĐŸĐČ, Janie
+Participant family (Family): F0509
+
+Type: event
+Gramps ID: E3187
+Event type: Marriage
+Event description: Marriage of Poirier, James A. and Walker, Sharon Lynette
+Participant family (Family): F0051
+
+Type: event
+Gramps ID: E3188
+Event type: Marriage
+Event description: Marriage of King, Henry and ĐŃĐșĐŸĐČ, Annie
+Participant family (Family): F0510
+
+Type: event
+Gramps ID: E3189
+Event type: Marriage
+Event description: Marriage of Bergeron, John W. and ĐŃĐșĐŸĐČ, Bettie
+Participant family (Family): F0511
+
+Type: event
+Gramps ID: E3190
+Event type: Marriage
+Event description: Marriage of Lawson, Mr. and Parent, Polly
+Participant family (Family): F0512
+
+Type: event
+Gramps ID: E3191
+Event type: Marriage
+Event description: Marriage of Benson, Walter and Ellis, Margaret Steel
+Participant family (Family): F0513
+
+Type: event
+Gramps ID: E3192
+Event type: Marriage
+Event description: Marriage of Benson, Hugh and Ouellet, Rebecca
+Participant family (Family): F0514
+
+Type: event
+Gramps ID: E3193
+Event type: Marriage
+Event description: Marriage of Benson, Samuel Sr. and Wong, Jane
+Participant family (Family): F0515
+
+Type: event
+Gramps ID: E3194
+Event type: Marriage
+Event description: Marriage of ĐлДĐșŃДДĐČ, Jacob and Benson, Mary
+Participant family (Family): F0516
+
+Type: event
+Gramps ID: E3195
+Event type: Marriage
+Event description: Marriage of Pedersen, William and Benson, Elizabeth
+Participant family (Family): F0517
+
+Type: event
+Gramps ID: E3196
+Event type: Marriage
+Event description: Marriage of Floyd, Henry and Benson, Nancy
+Participant family (Family): F0518
+
+Type: event
+Gramps ID: E3197
+Event type: Marriage
+Event date: 1806-05-20
+Event description: Marriage of äžæ, Thomas and JimĂ©nez, Polly Mary
+Participant family (Family): F0519
+
+Type: event
+Gramps ID: E3198
+Event type: Marriage
+Event date: 1980-01-11
+Event description: Marriage of Nguyen, John Harry and Walker, Sharon Lynette
+Participant family (Family): F0052
+
+Type: event
+Gramps ID: E3199
+Event type: Marriage
+Event date: 1815-09-01
+Event description: Marriage of Williams, Thomas Jr. and Jiménez, Elizabeth
+Participant family (Family): F0520
+
+Type: event
+Gramps ID: E3200
+Event type: Marriage
+Event date: 1820-04-26
+Event description: Marriage of Jiménez, Andrew and Palmer, Sarah
+Participant family (Family): F0521
+
+Type: event
+Gramps ID: E3201
+Event type: Marriage
+Event date: 1818-09-09
+Event description: Marriage of Jiménez, John and Palmer, Mary
+Participant family (Family): F0522
+
+Type: event
+Gramps ID: E3202
+Event type: Marriage
+Event date: 1827-09-13
+Event description: Marriage of McCarthy, Valentine Thomas and Jiménez, Sarah
+Participant family (Family): F0523
+
+Type: event
+Gramps ID: E3203
+Event type: Marriage
+Event date: 1824-01-23
+Event description: Marriage of Curry, Kenner S. and Jiménez, Rebecca
+Participant family (Family): F0524
+
+Type: event
+Gramps ID: E3204
+Event type: Marriage
+Event date: 1828-07-20
+Event description: Marriage of Jiménez, Cornelius and Blair, Jane
+Participant family (Family): F0525
+
+Type: event
+Gramps ID: E3205
+Event type: Marriage
+Event description: Marriage of HĂ©bert, Mr. and Page, Mary
+Participant family (Family): F0526
+
+Type: event
+Gramps ID: E3206
+Event type: Marriage
+Event location: Orlando, Orange, FL, USA
+Event description: Marriage of Page, Robert and Neal, Belle
+Participant family (Family): F0527
+
+Type: event
+Gramps ID: E3207
+Event type: Marriage
+Event description: Marriage of Nowak, John H. and Page, Eleanor Maude
+Participant family (Family): F0528
+
+Type: event
+Gramps ID: E3208
+Event type: Marriage
+Event location: Palatka, Putnam, FL, USA
+Event description: Marriage of ĐĐłĐŸŃĐŸĐČ, Dr. Charles J. and Page, Edith Mae
+Participant family (Family): F0529
+
+Type: event
+Gramps ID: E3209
+Event type: Marriage
+Event description: Marriage of Warner, John William and Miles, Rebecca J.
+Participant family (Family): F0053
+
+Type: event
+Gramps ID: E3210
+Event type: Marriage
+Event description: Marriage of James, Hugh Jr. and WiĆniewski, D.
+Participant family (Family): F0530
+
+Type: event
+Gramps ID: E3211
+Event type: Marriage
+Event description: Marriage of James, Joseph and Floyd, Nancy
+Participant family (Family): F0531
+
+Type: event
+Gramps ID: E3212
+Event type: Marriage
+Event description: Marriage of James, Isaac and Andersen, Martha
+Participant family (Family): F0532
+
+Type: event
+Gramps ID: E3213
+Event type: Marriage
+Event description: Marriage of James, Thomas and Parent, Betsy
+Participant family (Family): F0533
+
+Type: event
+Gramps ID: E3214
+Event type: Marriage
+Event description: Marriage of James, Thomas and Marshall, Kate Teel
+Participant family (Family): F0534
+
+Type: event
+Gramps ID: E3215
+Event type: Marriage
+Event description: Marriage of Strickland, Col. Robert and James, Patsy
+Participant family (Family): F0535
+
+Type: event
+Gramps ID: E3216
+Event type: Marriage
+Event description: Marriage of James, Walter Crockett and HernĂĄndez, Nancy
+Participant family (Family): F0536
+
+Type: event
+Gramps ID: E3217
+Event type: Marriage
+Event description: Marriage of James, Walter Crockett and ĐĐ°Ń
Đ°ŃĐŸĐČ, Margaret
+Participant family (Family): F0537
+
+Type: event
+Gramps ID: E3218
+Event type: Marriage
+Event description: Marriage of Young, Mr. and Waters, Edith
+Participant family (Family): F0538
+
+Type: event
+Gramps ID: E3219
+Event type: Marriage
+Event description: Marriage of ć°æ, Mr. and Waters, Nellie
+Participant family (Family): F0539
+
+Type: event
+Gramps ID: E3220
+Event type: Marriage
+Event description: Marriage of Thornton, Arthur Otto and MarĂn, Lilla Estella
+Participant family (Family): F0054
+
+Type: event
+Gramps ID: E3221
+Event type: Marriage
+Event description: Marriage of Grabowski, Mr. and Waters, Lola
+Participant family (Family): F0540
+
+Type: event
+Gramps ID: E3222
+Event type: Marriage
+Event description: Marriage of Page, Richard C. and Rodriguez, Helen M.
+Participant family (Family): F0541
+
+Type: event
+Gramps ID: E3223
+Event type: Marriage
+Event date: 1978-04-08
+Event location: Blytheville, Mississippi, AR, USA
+Event description: Marriage of Page, Kenneth Fritz and Pittman, June Christine
+Participant family (Family): F0542
+
+Type: event
+Gramps ID: E3224
+Event type: Marriage
+Event date: 1829-11-19
+Event location: Pullman, WA, USA
+Event description: Marriage of Serrano, Archibald and Delgado, Catherine
+Participant family (Family): F0543
+
+Type: event
+Gramps ID: E3225
+Event type: Marriage
+Event description: Marriage of Quinn, Abraham and Blanco, Malvina
+Participant family (Family): F0544
+
+Type: event
+Gramps ID: E3226
+Event type: Marriage
+Event description: Marriage of Serrano, Joseph and Quinn, Elizabeth Marium
+Participant family (Family): F0545
+
+Type: event
+Gramps ID: E3227
+Event type: Marriage
+Event description: Marriage of Blanco, Henry and Fournier, Peggy
+Participant family (Family): F0546
+
+Type: event
+Gramps ID: E3228
+Event type: Marriage
+Event description: Marriage of Blanco, Peter and Leonard, Catherine
+Participant family (Family): F0547
+
+Type: event
+Gramps ID: E3229
+Event type: Marriage
+Event description: Marriage of Stephens, Adam and Blanco, Anna Maria
+Participant family (Family): F0548
+
+Type: event
+Gramps ID: E3230
+Event type: Marriage
+Event description: Marriage of Hammond, Roy and Serrano, Carrie
+Participant family (Family): F0549
+
+Type: event
+Gramps ID: E3231
+Event type: Marriage
+Event date: 1974-07-02
+Event location: Gaithersburg, MD, USA
+Event description: Marriage of Ward, David J. and Warner, Margaret Ruth
+Participant family (Family): F0055
+
+Type: event
+Gramps ID: E3232
+Event type: Marriage
+Event description: Marriage of Day, Charles and Serrano, Dot
+Participant family (Family): F0550
+
+Type: event
+Gramps ID: E3233
+Event type: Marriage
+Event description: Marriage of Little, O. D. and Webb, Anna Mabel
+Participant family (Family): F0552
+
+Type: event
+Gramps ID: E3234
+Event type: Marriage
+Event date: 1993-02-06
+Event location: Southern Pines, NC, USA
+Event description: Marriage of Ford, Phillip D. and Webb, Joan Lorinda
+Participant family (Family): F0553
+
+Type: event
+Gramps ID: E3235
+Event type: Marriage
+Event description: Marriage of éŽæš, Robert B. and Blanco, Mary F.
+Participant family (Family): F0554
+
+Type: event
+Gramps ID: E3236
+Event type: Marriage
+Event date: 1987-11-28
+Event location: Southern Pines, NC, USA
+Event description: Marriage of Parks, Cliff and Gill, Lorie Ann
+Participant family (Family): F0555
+
+Type: event
+Gramps ID: E3237
+Event type: Marriage
+Event date: vor 1988
+Event description: Marriage of Lessard, Robert and Webb, Joan Lorinda
+Participant family (Family): F0556
+
+Type: event
+Gramps ID: E3238
+Event type: Marriage
+Event date: 1789-10-27
+Event location: Moultrie, Colquitt, GA, USA
+Event description: Marriage of Rodriquez, John and ĐĐŸĐ»ŃĐșĐŸĐČ, Eve
+Participant family (Family): F0557
+
+Type: event
+Gramps ID: E3239
+Event type: Marriage
+Event date: 1798-05-31
+Event location: Duluth, MN, USA
+Event description: Marriage of Cook, John and Rodriquez, Mary
+Participant family (Family): F0558
+
+Type: event
+Gramps ID: E3240
+Event type: Marriage
+Event date: 1793-10-20
+Event description: Marriage of Rodriquez, Mordica and ĐĐ°Đ·Đ°ĐșĐŸĐČ, Jane
+Participant family (Family): F0559
+
+Type: event
+Gramps ID: E3241
+Event type: Marriage
+Event date: 1975-06-01
+Event location: Lafayette, Tippecanoe, IN, USA
+Event description: Marriage of Mortensen, Daniel and Warner, Sarah Jane
+Participant family (Family): F0056
+
+Type: event
+Gramps ID: E3242
+Event type: Marriage
+Event date: 1849-02-02
+Event location: Augusta, ME, USA
+Event description: Marriage of Rodriquez, Mordica and ĐĐŸŃĐŸĐœĐŸĐČ, Katherine
+Participant family (Family): F0560
+
+Type: event
+Gramps ID: E3243
+Event type: Marriage
+Event date: 1806-10-17
+Event location: Huntsville, Walker, TX, USA
+Event description: Marriage of Rodriquez, Richard and ĐŃĐșĐŸĐČ, Hannah
+Participant family (Family): F0561
+
+Type: event
+Gramps ID: E3244
+Event type: Marriage
+Event description: Marriage of MartĂnez and Serrano, Reh Dawn
+Participant family (Family): F0562
+
+Type: event
+Gramps ID: E3245
+Event type: Marriage
+Event description: Marriage of Lessard and Castro, ???
+Participant family (Family): F0563
+
+Type: event
+Gramps ID: E3246
+Event type: Marriage
+Event date: 1873-02-18
+Event location: Marysville, Yuba, CA, USA
+Event description: Marriage of Boucher, Patrick and Dennis, Susan
+Participant family (Family): F0564
+
+Type: event
+Gramps ID: E3247
+Event type: Marriage
+Event date: 1876-02-28
+Event location: Marysville, Yuba, CA, USA
+Event description: Marriage of Bush, James and Boucher, Catherine
+Participant family (Family): F0565
+
+Type: event
+Gramps ID: E3248
+Event type: Marriage
+Event location: Owosso, MI, USA
+Event description: Marriage of Boucher, Michael Shannon and Iglesias, Kate
+Participant family (Family): F0566
+
+Type: event
+Gramps ID: E3249
+Event type: Marriage
+Event date: 1995-04-16
+Event location: Montgomery, Montgomery, AL, USA
+Event description: Marriage of Hamilton, John and Boucher, Miread
+Participant family (Family): F0567
+
+Type: event
+Gramps ID: E3250
+Event type: Marriage
+Event description: Marriage of St-Pierre, Joe and Boucher, Norene
+Participant family (Family): F0568
+
+Type: event
+Gramps ID: E3251
+Event type: Marriage
+Event description: Marriage of Brady, Michael and Boucher, Agnes
+Participant family (Family): F0569
+
+Type: event
+Gramps ID: E3252
+Event type: Marriage
+Event date: 1972-07-08
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Bates, William Robert and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Elaine Suzanne
+Participant family (Family): F0057
+
+Type: event
+Gramps ID: E3253
+Event type: Marriage
+Event description: Marriage of Brady, Tony and Boucher, Bridget
+Participant family (Family): F0570
+
+Type: event
+Gramps ID: E3254
+Event type: Marriage
+Event description: Marriage of Caldwell, Paul and Boucher, Martha
+Participant family (Family): F0571
+
+Type: event
+Gramps ID: E3255
+Event type: Marriage
+Event description: Marriage of Hart, Gerry and Boucher, Mary
+Participant family (Family): F0572
+
+Type: event
+Gramps ID: E3256
+Event type: Marriage
+Event description: Marriage of Boucher, Michael and Boucher, Anne
+Participant family (Family): F0573
+
+Type: event
+Gramps ID: E3257
+Event type: Marriage
+Event location: Troy, Pike, AL, USA
+Event description: Marriage of Lindsey, John and Warner, Martha Ellen
+Participant family (Family): F0574
+
+Type: event
+Gramps ID: E3258
+Event type: Marriage
+Event date: 1969-09-09
+Event location: Oneonta, Otsego, NY, USA
+Event description: Marriage of McCoy, Thomas Michael and Howell, Mary
+Participant family (Family): F0575
+
+Type: event
+Gramps ID: E3259
+Event type: Marriage
+Event description: Marriage of Stokes, Gabriel and McCoy, Celine Bridget
+Participant family (Family): F0576
+
+Type: event
+Gramps ID: E3260
+Event type: Marriage
+Event date: um 1939
+Event location: Lima, OH, USA
+Event description: Marriage of McCoy, Francis and Reed, Sarah
+Participant family (Family): F0577
+
+Type: event
+Gramps ID: E3261
+Event type: Marriage
+Event description: Marriage of Reed, Matthew and Gibbs, Mary
+Participant family (Family): F0578
+
+Type: event
+Gramps ID: E3262
+Event type: Marriage
+Event description: Marriage of Reed, Peter and ĐŃĐ·ĐœĐ”ŃĐŸĐČ, Hanora
+Participant family (Family): F0579
+
+Type: event
+Gramps ID: E3263
+Event type: Marriage
+Event date: 1977-01-08
+Event description: Marriage of Floyd, Robert William and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Kathryn Louise
+Participant family (Family): F0058
+
+Type: event
+Gramps ID: E3264
+Event type: Marriage
+Event description: Marriage of Valdez and Reed, Noreen
+Participant family (Family): F0580
+
+Type: event
+Gramps ID: E3265
+Event type: Marriage
+Event description: Marriage of Berry and Reed, Carmel
+Participant family (Family): F0581
+
+Type: event
+Gramps ID: E3266
+Event type: Marriage
+Event description: Marriage of ĐДлŃĐ”ĐČ and Reed, Peggy
+Participant family (Family): F0582
+
+Type: event
+Gramps ID: E3267
+Event type: Marriage
+Event description: Marriage of Duncan and Reed, Joan
+Participant family (Family): F0583
+
+Type: event
+Gramps ID: E3268
+Event type: Marriage
+Event description: Marriage of Reed, Terrence and Gibbs, Maria
+Participant family (Family): F0584
+
+Type: event
+Gramps ID: E3269
+Event type: Marriage
+Event description: Marriage of Dawson and Reed, Anastasia
+Participant family (Family): F0585
+
+Type: event
+Gramps ID: E3270
+Event type: Marriage
+Event description: Marriage of Martinez and Reed, Catherine
+Participant family (Family): F0586
+
+Type: event
+Gramps ID: E3271
+Event type: Marriage
+Event description: Marriage of Poulin and Reed, Rose
+Participant family (Family): F0587
+
+Type: event
+Gramps ID: E3272
+Event type: Marriage
+Event description: Marriage of Đ€Đ”ĐŽĐŸŃĐŸĐČ and Reed, Bridget
+Participant family (Family): F0588
+
+Type: event
+Gramps ID: E3273
+Event type: Marriage
+Event description: Marriage of White and Reed, Mary Ann
+Participant family (Family): F0589
+
+Type: event
+Gramps ID: E3274
+Event type: Marriage
+Event date: 1983-10-16
+Event description: Marriage of Harrison, Paul Allen and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Lucinda Elinor
+Participant family (Family): F0059
+
+Type: event
+Gramps ID: E3275
+Event type: Marriage
+Event description: Marriage of ĐĐ°ŃŃŃĐœĐŸĐČ and Reed, Jane
+Participant family (Family): F0590
+
+Type: event
+Gramps ID: E3276
+Event type: Marriage
+Event description: Marriage of Reed, Patrick and Gibbs, Elizabeth
+Participant family (Family): F0591
+
+Type: event
+Gramps ID: E3277
+Event type: Marriage
+Event description: Marriage of Reed, Peter James? and Reed, Catherine
+Participant family (Family): F0592
+
+Type: event
+Gramps ID: E3278
+Event type: Marriage
+Event location: Oil City, PA, USA
+Event description: Marriage of KamiĆski and Reed, Jane
+Participant family (Family): F0593
+
+Type: event
+Gramps ID: E3279
+Event type: Marriage
+Event description: Marriage of Reed, Michael and Goodwin, Alice
+Participant family (Family): F0594
+
+Type: event
+Gramps ID: E3280
+Event type: Marriage
+Event description: Marriage of Sandoval, Johnnie and Reed, Minnie
+Participant family (Family): F0595
+
+Type: event
+Gramps ID: E3281
+Event type: Marriage
+Event description: Marriage of Goodwin and Sandoval, Liz
+Participant family (Family): F0596
+
+Type: event
+Gramps ID: E3282
+Event type: Marriage
+Event description: Marriage of Johnston and Sandoval, Jean
+Participant family (Family): F0597
+
+Type: event
+Gramps ID: E3283
+Event type: Marriage
+Event description: Marriage of Reed, Terrence (TyNed) and Gibbs, Jennie
+Participant family (Family): F0598
+
+Type: event
+Gramps ID: E3284
+Event type: Marriage
+Event description: Marriage of Reed, Michael and Gibbs, Mary
+Participant family (Family): F0599
+
+Type: event
+Gramps ID: E3285
+Event type: Marriage
+Event date: 1823-01-09
+Event description: Marriage of Fox, David and Green, Frances
+Participant family (Family): F0006
+
+Type: event
+Gramps ID: E3286
+Event type: Marriage
+Event date: 1944-12-24
+Event location: Fostoria, OH, USA
+Event description: Marriage of Cruz, Ivan Wayne and Gagnon, Bettie Lou
+Participant family (Family): F0060
+
+Type: event
+Gramps ID: E3287
+Event type: Marriage
+Event description: Marriage of Love and Reed, Carmel
+Participant family (Family): F0600
+
+Type: event
+Gramps ID: E3288
+Event type: Marriage
+Event description: Marriage of Jimenez and Reed, Maureen
+Participant family (Family): F0601
+
+Type: event
+Gramps ID: E3289
+Event type: Marriage
+Event date: 1843-01-27
+Event description: Marriage of Payne, Fielding and Lawrence, Dorcas C.
+Participant family (Family): F0602
+
+Type: event
+Gramps ID: E3290
+Event type: Marriage
+Event location: De Ridder, LA, USA
+Event description: Marriage of Ford, William and Payne, Winifred
+Participant family (Family): F0603
+
+Type: event
+Gramps ID: E3291
+Event type: Marriage
+Event date: 1818-10-20
+Event location: Guymon, OK, USA
+Event description: Marriage of Payne, Alexander and Salazar, Catherine
+Participant family (Family): F0604
+
+Type: event
+Gramps ID: E3292
+Event type: Marriage
+Event date: 1840-05-04
+Event description: Marriage of Payne, Alexander and KamiĆski, Elizabeth
+Participant family (Family): F0605
+
+Type: event
+Gramps ID: E3293
+Event type: Marriage
+Event description: Marriage of Reynolds, John and Newman, Margaret
+Participant family (Family): F0606
+
+Type: event
+Gramps ID: E3294
+Event type: Marriage
+Event date: 1791-12-19
+Event location: Seymour, Jackson, IN, USA
+Event description: Marriage of Diaz, James and Woods, Nancy
+Participant family (Family): F0607
+
+Type: event
+Gramps ID: E3295
+Event type: Marriage
+Event description: Marriage of Woods, James and ĐŃŃŃĐœĐŸĐČ, Mary
+Participant family (Family): F0608
+
+Type: event
+Gramps ID: E3296
+Event type: Marriage
+Event description: Marriage of Hunt, Isaac and ĐĐŒĐžŃŃОДĐČ, Nancy Ann
+Participant family (Family): F0609
+
+Type: event
+Gramps ID: E3297
+Event type: Marriage
+Event date: 1939-11-23
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Cruz, Paul Eugene and Lambert, Marguerite
+Participant family (Family): F0061
+
+Type: event
+Gramps ID: E3298
+Event type: Marriage
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, Travis and Payne, Elizabeth
+Participant family (Family): F0610
+
+Type: event
+Gramps ID: E3299
+Event type: Marriage
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, William and Wood, Polly
+Participant family (Family): F0611
+
+Type: event
+Gramps ID: E3300
+Event type: Marriage
+Event description: Marriage of Wood, Peter and Gibbs, Lucy
+Participant family (Family): F0612
+
+Type: event
+Gramps ID: E3301
+Event type: Marriage
+Event date: 1803-02-19
+Event location: Steubenville, OH, USA
+Event description: Marriage of Petersen, William and ĐĐŒĐžŃŃОДĐČ, Margaret Jane
+Participant family (Family): F0613
+
+Type: event
+Gramps ID: E3302
+Event type: Marriage
+Event date: 1803-01-31
+Event location: Union City, TN, USA
+Event description: Marriage of ĐĐŒĐžŃŃОДĐČ, Alexander Carroll Sr. and Woods, Mary Polly
+Participant family (Family): F0614
+
+Type: event
+Gramps ID: E3303
+Event type: Marriage
+Event date: 1796-03-14
+Event location: Union City, TN, USA
+Event description: Marriage of Doyle, Robert Gove and Diaz, Mary Polly
+Participant family (Family): F0615
+
+Type: event
+Gramps ID: E3304
+Event type: Marriage
+Event description: Marriage of Pelletier, Esiquio and Leclerc, Sesaria
+Participant family (Family): F0616
+
+Type: event
+Gramps ID: E3305
+Event type: Marriage
+Event description: Marriage of Coleman and Garner, Louella Marie
+Participant family (Family): F0617
+
+Type: event
+Gramps ID: E3306
+Event type: Marriage
+Event description: Marriage of Beck, Jack and Garner, Bernadette
+Participant family (Family): F0618
+
+Type: event
+Gramps ID: E3307
+Event type: Marriage
+Event description: Marriage of ĐĐŸŃбŃĐœĐŸĐČ, Matt and Garner, Cecilia
+Participant family (Family): F0619
+
+Type: event
+Gramps ID: E3308
+Event type: Marriage
+Event date: 1947-01-25
+Event description: Marriage of Garrett, William Forest and Perkins, Wilma Mae
+Participant family (Family): F0062
+
+Type: event
+Gramps ID: E3309
+Event type: Marriage
+Event description: Marriage of Perry, M. and Reeves, Elizabeth
+Participant family (Family): F0620
+
+Type: event
+Gramps ID: E3310
+Event type: Marriage
+Event description: Marriage of Terry, J. and Reeves, Bridget
+Participant family (Family): F0621
+
+Type: event
+Gramps ID: E3311
+Event type: Marriage
+Event description: Marriage of Gagné, Thomas and Reeves, Ann
+Participant family (Family): F0622
+
+Type: event
+Gramps ID: E3312
+Event type: Marriage
+Event description: Marriage of Desjardins, J. and Reeves, Catherine
+Participant family (Family): F0623
+
+Type: event
+Gramps ID: E3313
+Event type: Marriage
+Event date: 1877-08-01
+Event description: Marriage of Reeves, John and Flowers, Mary A.
+Participant family (Family): F0624
+
+Type: event
+Gramps ID: E3314
+Event type: Marriage
+Event date: 1577-08-28
+Event location: Wilmington, OH, USA
+Event description: Marriage of Foster, John and Ryan, Elizabeth
+Participant family (Family): F0625
+
+Type: event
+Gramps ID: E3315
+Event type: Marriage
+Event description: Marriage of Dixon, Thomas and Warner, Mary
+Participant family (Family): F0626
+
+Type: event
+Gramps ID: E3316
+Event type: Marriage
+Event description: Marriage of Warner, Daniel and Higgins, Charity
+Participant family (Family): F0627
+
+Type: event
+Gramps ID: E3317
+Event type: Marriage
+Event description: Marriage of ĐДбДЎДĐČ, Trustum and Warner, Johanna
+Participant family (Family): F0628
+
+Type: event
+Gramps ID: E3318
+Event type: Marriage
+Event description: Marriage of Warner, George and Nichols, Elizabeth
+Participant family (Family): F0629
+
+Type: event
+Gramps ID: E3319
+Event type: Marriage
+Event description: Marriage of Garrett, William Walker and Lessard, Laura Eloise
+Participant family (Family): F0063
+
+Type: event
+Gramps ID: E3320
+Event type: Marriage
+Event date: 1714
+Event description: Marriage of Warner, Johnathon and Montgomery, Mary
+Participant family (Family): F0630
+
+Type: event
+Gramps ID: E3321
+Event type: Marriage
+Event date: 1836-05-31
+Event description: Marriage of Ball, Matthias, Jr. and Snyder, Ann Louisa
+Participant family (Family): F0631
+
+Type: event
+Gramps ID: E3322
+Event type: Marriage
+Event date: 1854-07-23
+Event description: Marriage of Ball, Matthias, Jr. and Gonzalez, Eliza Jane
+Participant family (Family): F0632
+
+Type: event
+Gramps ID: E3323
+Event type: Marriage
+Event date: 1833-09-19
+Event location: De Ridder, LA, USA
+Event description: Marriage of Roy, Prince Alfred and MarĂn, Frances Coppage
+Participant family (Family): F0633
+
+Type: event
+Gramps ID: E3324
+Event type: Marriage
+Event location: Marietta, WV, USA
+Event description: Marriage of Munoz, Shadrach M. and MarĂn, Nancy H.
+Participant family (Family): F0634
+
+Type: event
+Gramps ID: E3325
+Event type: Marriage
+Event date: 1692-12-28
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Harrison, Edward and Allen, Sarah
+Participant family (Family): F0635
+
+Type: event
+Gramps ID: E3326
+Event type: Marriage
+Event date: um 1695
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Allen, John and Dennis, Mary (Hannah?)
+Participant family (Family): F0636
+
+Type: event
+Gramps ID: E3327
+Event type: Marriage
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ and Allen, Abigail
+Participant family (Family): F0637
+
+Type: event
+Gramps ID: E3328
+Event type: Marriage
+Event date: um 1725
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Mendoza, James and Allen, Abigail
+Participant family (Family): F0638
+
+Type: event
+Gramps ID: E3329
+Event type: Marriage
+Event date: um 1713
+Event location: Sikeston, MO, USA
+Event description: Marriage of Allen, Joseph and Barker, Mary
+Participant family (Family): F0639
+
+Type: event
+Gramps ID: E3330
+Event type: Marriage
+Event date: 1943-02-14
+Event location: Crawfordsville, Montgomery, IN, USA
+Event description: Marriage of Cruz, Arthur Ray and Robbins, Myrabel
+Participant family (Family): F0064
+
+Type: event
+Gramps ID: E3331
+Event type: Marriage
+Event date: um 1715
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of ĐĐŸĐČĐžĐșĐŸĐČ, Thomas and Allen, Rachel
+Participant family (Family): F0640
+
+Type: event
+Gramps ID: E3332
+Event type: Marriage
+Event date: um 1729
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Allen, Benjamin and Griffith, Experience
+Participant family (Family): F0641
+
+Type: event
+Gramps ID: E3333
+Event type: Marriage
+Event date: um 1689
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Norris, John and ĐĐŸĐČĐžĐșĐŸĐČ, Sarah
+Participant family (Family): F0642
+
+Type: event
+Gramps ID: E3334
+Event type: Marriage
+Event location: Garden City, Finney, KS, USA
+Event description: Marriage of Hernandez, John and Norris, Elizabeth
+Participant family (Family): F0643
+
+Type: event
+Gramps ID: E3335
+Event type: Marriage
+Event date: um 1705
+Event location: Topeka, Shawnee, KS, USA
+Event description: Marriage of Allen, Gershom and Kennedy, Ann
+Participant family (Family): F0644
+
+Type: event
+Gramps ID: E3336
+Event type: Marriage
+Event description: Marriage of Boyd, Charles Newton and Jones, Martha Elizabeth
+Participant family (Family): F0645
+
+Type: event
+Gramps ID: E3337
+Event type: Marriage
+Event description: Marriage of ĐĐŸŃĐžŃĐŸĐČ and Boyd, Carmen Alberta
+Participant family (Family): F0646
+
+Type: event
+Gramps ID: E3338
+Event type: Marriage
+Event date: 1919-02-14
+Event description: Marriage of Gutiérrez, Walter Harmon and Boyd, Lauretta Esther
+Participant family (Family): F0647
+
+Type: event
+Gramps ID: E3339
+Event type: Marriage
+Event date: 1942-07-23
+Event description: Marriage of Stone, Alfred Wayne and Gutiérrez, Virginia Elizabeth
+Participant family (Family): F0648
+
+Type: event
+Gramps ID: E3340
+Event type: Marriage
+Event date: 1946-06-15
+Event description: Marriage of Colon, William and Gutiérrez, Dorothy Jean
+Participant family (Family): F0649
+
+Type: event
+Gramps ID: E3341
+Event type: Marriage
+Event date: 1971-06-26
+Event location: Gainesville, Hall, GA, USA
+Event description: Marriage of Warner, Harold Lowell and Powers, Nancy Lou
+Participant family (Family): F0065
+
+Type: event
+Gramps ID: E3342
+Event type: Marriage
+Event date: 1946-11
+Event description: Marriage of Medina, Wesley G. and Gutiérrez, Joan Arlene
+Participant family (Family): F0650
+
+Type: event
+Gramps ID: E3343
+Event type: Marriage
+Event description: Marriage of Hawkins, Beckham and ĐŃĐ°ĐœĐ°ŃŃĐ”ĐČ, Angie
+Participant family (Family): F0651
+
+Type: event
+Gramps ID: E3344
+Event type: Marriage
+Event date: 1945-06-22
+Event description: Marriage of Hawkins, William Melvin and Gibbs, Ruth
+Participant family (Family): F0652
+
+Type: event
+Gramps ID: E3345
+Event type: Marriage
+Event description: Marriage of Torres and Hawkins, Gail
+Participant family (Family): F0653
+
+Type: event
+Gramps ID: E3346
+Event type: Marriage
+Event description: Marriage of Stewart and Hawkins, Janelle
+Participant family (Family): F0654
+
+Type: event
+Gramps ID: E3347
+Event type: Marriage
+Event description: Marriage of Becker and Hawkins, Jean
+Participant family (Family): F0655
+
+Type: event
+Gramps ID: E3348
+Event type: Marriage
+Event description: Marriage of Waters and Webb, Mary
+Participant family (Family): F0656
+
+Type: event
+Gramps ID: E3349
+Event type: Marriage
+Event description: Marriage of ĐĐ°ĐČŃĐŽĐŸĐČ and Ball, Jane
+Participant family (Family): F0657
+
+Type: event
+Gramps ID: E3350
+Event type: Marriage
+Event description: Marriage of GonzĂĄlez and Ball, Martha
+Participant family (Family): F0658
+
+Type: event
+Gramps ID: E3351
+Event type: Marriage
+Event date: 1840-11-05
+Event location: Fort Polk South, LA, USA
+Event description: Marriage of Moreno, Thomas H. and DÄ
browski, Letitia C.
+Participant family (Family): F0659
+
+Type: event
+Gramps ID: E3352
+Event type: Marriage
+Event description: Marriage of Cruz, Everett and Lessard, Susanna Marie
+Participant family (Family): F0066
+
+Type: event
+Gramps ID: E3353
+Event type: Marriage
+Event date: 1848-01-07
+Event description: Marriage of Andersen, Samuel and Moreno, Delilah
+Participant family (Family): F0660
+
+Type: event
+Gramps ID: E3354
+Event type: Marriage
+Event date: 1849-11-29
+Event description: Marriage of Porter, David and Moreno, Mary H.
+Participant family (Family): F0661
+
+Type: event
+Gramps ID: E3355
+Event type: Marriage
+Event description: Marriage of Ălvarez and Porter, Mahala J.
+Participant family (Family): F0662
+
+Type: event
+Gramps ID: E3356
+Event type: Marriage
+Event description: Marriage of Joseph, Alfred and Moreno, Minerva
+Participant family (Family): F0663
+
+Type: event
+Gramps ID: E3357
+Event type: Marriage
+Event date: 1858-04-22
+Event description: Marriage of Moreno, Solon and Perkins, Lydia
+Participant family (Family): F0664
+
+Type: event
+Gramps ID: E3358
+Event type: Marriage
+Event date: 1855-07-12
+Event description: Marriage of Moreno, Darius and Craig, Mary J.
+Participant family (Family): F0665
+
+Type: event
+Gramps ID: E3359
+Event type: Marriage
+Event description: Marriage of Ball, William M. and Moreno, Phebe J.
+Participant family (Family): F0666
+
+Type: event
+Gramps ID: E3360
+Event type: Marriage
+Event description: Marriage of Patton, Adolph and Moreno, Lelia L.
+Participant family (Family): F0667
+
+Type: event
+Gramps ID: E3361
+Event type: Marriage
+Event description: Marriage of Moreno, Christian and Price, Mary
+Participant family (Family): F0668
+
+Type: event
+Gramps ID: E3362
+Event type: Marriage
+Event description: Marriage of Ford and Moreno, Elizabeth
+Participant family (Family): F0669
+
+Type: event
+Gramps ID: E3363
+Event type: Marriage
+Event description: Marriage of Watson, Alvin E. and Warner, Beverly Ann
+Participant family (Family): F0067
+
+Type: event
+Gramps ID: E3364
+Event type: Marriage
+Event description: Marriage of Chambers, William and Moreno, Leah
+Participant family (Family): F0670
+
+Type: event
+Gramps ID: E3365
+Event type: Marriage
+Event description: Marriage of Đ ĐŸĐŒĐ°ĐœĐŸĐČ, John and Moreno, Delilah
+Participant family (Family): F0671
+
+Type: event
+Gramps ID: E3366
+Event type: Marriage
+Event description: Marriage of Moreno, Esau and Caron, Mary E.
+Participant family (Family): F0672
+
+Type: event
+Gramps ID: E3367
+Event type: Marriage
+Event description: Marriage of Martin and Moreno, Mary Ann
+Participant family (Family): F0673
+
+Type: event
+Gramps ID: E3368
+Event type: Marriage
+Event date: 1970-01-01
+Event location: Gaithersburg, MD, USA
+Event description: Marriage of French, Jimmy Michael and Warner, Martha Ellen
+Participant family (Family): F0068
+
+Type: event
+Gramps ID: E3369
+Event type: Marriage
+Event description: Marriage of Alvarado, Jack D. and Warner, Shirley Kay
+Participant family (Family): F0069
+
+Type: event
+Gramps ID: E3370
+Event type: Marriage
+Event date: 1843-11-14
+Event location: McPherson, McPherson, KS, USA
+Event description: Marriage of Ball, Matthias, Jr. and Moreno, Abigail Chapman
+Participant family (Family): F0007
+
+Type: event
+Gramps ID: E3371
+Event type: Marriage
+Event date: 1896-03-05
+Event location: Marinette, WI-MI, USA
+Event description: Marriage of Webb, Francis Irvin and Todd, Louella Jane
+Participant family (Family): F0070
+
+Type: event
+Gramps ID: E3372
+Event type: Marriage
+Event date: 1979-06-23
+Event location: Kendallville, Noble, IN, USA
+Event description: Marriage of Welch, Michael and Osborne, Anita June
+Participant family (Family): F0071
+
+Type: event
+Gramps ID: E3373
+Event type: Marriage
+Event description: Marriage of Warner, Michael Louis and Warren, Pansy L.
+Participant family (Family): F0072
+
+Type: event
+Gramps ID: E3374
+Event type: Marriage
+Event description: Marriage of Fernandez, Thomas and Couture, Honora
+Participant family (Family): F0073
+
+Type: event
+Gramps ID: E3375
+Event type: Marriage
+Event description: Marriage of Landry, Michael Edward and Brady, CatherineJosephine
+Participant family (Family): F0074
+
+Type: event
+Gramps ID: E3376
+Event type: Marriage
+Event description: Marriage of Harris, Lawrence and Landry, Alice
+Participant family (Family): F0075
+
+Type: event
+Gramps ID: E3377
+Event type: Marriage
+Event date: 1920-04-17
+Event description: Marriage of Landry, Maurice T. and Estrada, Mary Claire
+Participant family (Family): F0076
+
+Type: event
+Gramps ID: E3378
+Event type: Marriage
+Event date: 1928-09-08
+Event description: Marriage of Landry, Maurice T. and Vargas, Caroline Metzger
+Participant family (Family): F0077
+
+Type: event
+Gramps ID: E3379
+Event type: Marriage
+Event date: 1922-10-14
+Event description: Marriage of Landry, John Anthony and Harris, Ella Mae
+Participant family (Family): F0078
+
+Type: event
+Gramps ID: E3380
+Event type: Marriage
+Event date: 1863-04-27
+Event location: Wabash, Wabash, IN, USA
+Event description: Marriage of Fernandez, Thomas and Ortega, Catherine
+Participant family (Family): F0079
+
+Type: event
+Gramps ID: E3381
+Event type: Marriage
+Event date: 1821-12-27
+Event description: Marriage of ĐŃĐșĐŸĐČ, John and Hopkins, Mary Eve
+Participant family (Family): F0008
+
+Type: event
+Gramps ID: E3382
+Event type: Marriage
+Event description: Marriage of éŽæš, Allen and MarĂn, Alice
+Participant family (Family): F0080
+
+Type: event
+Gramps ID: E3383
+Event type: Marriage
+Event description: Marriage of Olson, ??????? and MarĂn, Alice
+Participant family (Family): F0081
+
+Type: event
+Gramps ID: E3384
+Event type: Marriage
+Event description: Marriage of MarĂn, Willis H. and Floyd, Sarah (Sally)
+Participant family (Family): F0082
+
+Type: event
+Gramps ID: E3385
+Event type: Marriage
+Event description: Marriage of йаŃĐ°ŃĐŸĐČ, Simon and Todd, Flora Belle
+Participant family (Family): F0083
+
+Type: event
+Gramps ID: E3386
+Event type: Marriage
+Event date: 1940-09-25
+Event location: Oklahoma City, OK, USA
+Event description: Marriage of Webb, John Raymond and Ford, Lorinda Catherine
+Participant family (Family): F0084
+
+Type: event
+Gramps ID: E3387
+Event type: Marriage
+Event location: Kendallville, Noble, IN, USA
+Event description: Marriage of ĐĐ»ŃĐžĐœ, Gary and Webb, Marilyn Jean
+Participant family (Family): F0085
+
+Type: event
+Gramps ID: E3388
+Event type: Marriage
+Event date: vor 1967
+Event location: Ottawa, La Salle, IL, USA
+Event description: Marriage of Gill, Lawrence and Webb, Joan Lorinda
+Participant family (Family): F0086
+
+Type: event
+Gramps ID: E3389
+Event type: Marriage
+Event date: 1988-09-17
+Event location: Morehead City, NC, USA
+Event description: Marriage of Mcbride, Paul and ĐĐ°ĐœĐžĐ»ĐŸĐČ, Barbara Joanne
+Participant family (Family): F0087
+
+Type: event
+Gramps ID: E3390
+Event type: Marriage
+Event date: 1982-04-24
+Event location: Cleveland, TN, USA
+Event description: Marriage of ĐĐ°ĐœĐžĐ»ĐŸĐČ, Darrell Edwin and Ross, Evelyn Almazon
+Participant family (Family): F0088
+
+Type: event
+Gramps ID: E3391
+Event type: Marriage
+Event date: 1989-06-10
+Event location: Morehead City, NC, USA
+Event description: Marriage of JĂžrgensen, Jeffrey and Osborne, Julia Marie
+Participant family (Family): F0089
+
+Type: event
+Gramps ID: E3392
+Event type: Marriage
+Event date: 1845-01-01
+Event location: Palestine, Hopkins, TX, USA
+Event description: Marriage of Warner, Piatt D. and Fox, Julia Colville
+Participant family (Family): F0009
+
+Type: event
+Gramps ID: E3393
+Event type: Marriage
+Event date: 1868-03-24
+Event location: Key West-Marathon, FL, USA
+Event description: Marriage of Lessard, Isaac and DomĂnguez, Mary E.
+Participant family (Family): F0090
+
+Type: event
+Gramps ID: E3394
+Event type: Marriage
+Event date: 1968-08-03
+Event description: Marriage of Cruz, Gerald Ray and Rasmussen, Marilyn Joan
+Participant family (Family): F0091
+
+Type: event
+Gramps ID: E3395
+Event type: Marriage
+Event date: 1966-11-12
+Event description: Marriage of ĐĐ°ĐșŃĐžĐŒĐŸĐČ, Rodney Herman and Cruz, Janis Marlene
+Participant family (Family): F0092
+
+Type: event
+Gramps ID: E3396
+Event type: Marriage
+Event date: 1982-04-24
+Event description: Marriage of Cruz, James Richard and Morales, Penelope Margot
+Participant family (Family): F0093
+
+Type: event
+Gramps ID: E3397
+Event type: Marriage
+Event date: 1963-09-05
+Event description: Marriage of Cruz, Thomas Everett and Briggs, Joyce Inez
+Participant family (Family): F0094
+
+Type: event
+Gramps ID: E3398
+Event type: Marriage
+Event date: 1962-01-20
+Event description: Marriage of Welch, Paul Allen and Cruz, Linda Helen
+Participant family (Family): F0095
+
+Type: event
+Gramps ID: E3399
+Event type: Marriage
+Event date: 1968-08-17
+Event description: Marriage of Cruz, Dale Eugene and Gill, Linda
+Participant family (Family): F0096
+
+Type: event
+Gramps ID: E3400
+Event type: Marriage
+Event date: 1967-04-07
+Event description: Marriage of Cruz, David Wayne and Nunez, Barbara Ann
+Participant family (Family): F0097
+
+Type: event
+Gramps ID: E3401
+Event type: Marriage
+Event date: 1984-05-12
+Event description: Marriage of West, Ronald David and Cruz, Melinda Lou
+Participant family (Family): F0098
+
+Type: event
+Gramps ID: E3402
+Event type: Marriage
+Event date: 1974-03-30
+Event description: Marriage of Peters, John C. and Cruz, Joyce Marie
+Participant family (Family): F0099
+
+Type: event
+Gramps ID: E3403
+Event type: Birth
+Event date: 570-04-19
+Participant (Primary): Ù
ŰÙ
ŰŻ (Gramps ID: I2110)
+
+Type: event
+Gramps ID: E3404
+Event type: Death
+Event date: 632-06-08
+Participant (Primary): Ù
ŰÙ
ŰŻ (Gramps ID: I2110)
+
+Type: event
+Gramps ID: E3405
+Event type: Marriage
+Event date: 610
+Participant (Primary): Ù
ŰÙ
ŰŻ (Gramps ID: I2110)
+Participant (Primary): Űčۧۊێ۩ (Gramps ID: I2105)
+
+Type: event
+Gramps ID: E3406
+Event type: Birth
+Event date: 164-03 (Islamisch)
+Participant (Primary): ŰŁŰÙ
ŰŻ (Gramps ID: I2111)
+
+Type: event
+Gramps ID: E3407
+Event type: Death
+Event date: 241-03-12 (Islamisch)
+
+Type: event
+Gramps ID: E3408
+Event type: Marriage
+Event date: 204 (Islamisch)
+Participant (Primary): ŰŁŰÙ
ŰŻ (Gramps ID: I2111)
+Participant (Primary): ۧÙŰčۚۧ۳۩ ۧÙÙŰ¶Ù (Gramps ID: I2112)
+
+Type: event
+Gramps ID: E3409
+Event type: Death
+Event date: 241-03-12 (Islamisch)
+Participant (Primary): ŰŁŰÙ
ŰŻ (Gramps ID: I2111)
+
+Type: event
+Gramps ID: E3410
+Event type: Death
+Event date: 234 (Islamisch)
+Participant (Primary): ۧÙŰčۚۧ۳۩ ۧÙÙŰ¶Ù (Gramps ID: I2112)
+
+Type: event
+Gramps ID: E3411
+Event type: Birth
+Event date: 213 (Islamisch)
+Participant (Primary): Űčۚۯ ۧÙÙÙ (Gramps ID: I2114)
+
+Type: event
+Gramps ID: E3412
+Event type: Death
+Event date: 290 (Islamisch)
+Participant (Primary): Űčۚۯ ۧÙÙÙ (Gramps ID: I2114)
+
+Type: event
+Gramps ID: E3413
+Event type: Birth
+Event date: 203 (Islamisch)
+Participant (Primary): ۔ۧÙŰ (Gramps ID: I2115)
+
+Type: event
+Gramps ID: E3414
+Event type: Death
+Event date: geschÀtzt um 1850
+Participant (Primary): Foon àžàžžàž (Gramps ID: I2116)
+
+Type: event
+Gramps ID: E3416
+Event type: Birth
+Event date: 1940-03-01
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎÎłÎ±ÎŒÎΌΜÏÎœ ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2117)
+
+Type: event
+Gramps ID: E3417
+Event type: Birth
+Event date: 1950-06-18
+Event location: ÎΔÏÏÎ±Î»ÎżÎœÎŻÎșη, Greece
+Participant (Primary): ÎÏ
ÏÎÏÏη ÎÏÎŹÎœÎœÎżÏ
(Gramps ID: I2118)
+
+Type: event
+Gramps ID: E3418
+Event type: Marriage
+Event date: 1970-09-09
+Participant (Primary): ÎÎłÎ±ÎŒÎΌΜÏÎœ ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2117)
+
+Type: event
+Gramps ID: E3419
+Event type: Birth
+Event date: 1971-11-05
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎΌηÏÎżÏ ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2119)
+
+Type: event
+Gramps ID: E3420
+Event type: Birth
+Event date: 1973-04-11
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎÏ
ÏÏÎŻÎœÎ· ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2120)
+
+Type: event
+Gramps ID: E3421
+Event type: Birth
+Event date: 1974-12-03
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎΔÏÎλη ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2121)
+
+Type: event
+Gramps ID: E3422
+Event type: Birth
+Event date: 1976-09-29
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎÎÏÏÎżÏÎ±Ï ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2122)
+
+Type: event
+Gramps ID: E3423
+Event type: Birth
+Event date: 1910-06-29
+Event location: ÎÏÎŹÎœÎœÎčΜα, Greece
+Participant (Primary): ÎÎŹÏÏÎœ ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2123)
+
+Type: event
+Gramps ID: E3424
+Event type: Birth
+Event date: 1920-04-07
+Event location: ÎŁÎčÎŹÏÎčÏÏα, Greece
+Participant (Primary): ÎΔΜΔÏία ÎÎœÎ±ÎłÎœÏÏÏÎżÏÎżÏλοÏ
(Gramps ID: I2124)
+
+Type: event
+Gramps ID: E3425
+Event type: Birth
+Event date: 1915-03-10
+Event location: ÎÏγοÏ, Greece
+Participant (Primary): ÎÏαΌΔÎčÎœÏÎœÎŽÎ±Ï ÎÏÎŹÎœÎœÎżÏ
(Gramps ID: I2125)
+
+Type: event
+Gramps ID: E3426
+Event type: Birth
+Event date: 1925-07-15
+Event location: ÎΔÏολÏγγÎč, Greece
+Participant (Primary): ÎÎżÏ
λία ÎαλÎÏγη (Gramps ID: I2126)
+
+Type: event
+Gramps ID: E3427
+Event type: Birth
+Event date: 1978-11-30
+Event location: ÎÏÎŹÎŒÎ±, Greece
+Participant (Primary): ÎÎłÎ·Ï ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2127)
+
+Type: event
+Gramps ID: E3428
+Event type: Death
+Event date: 1990-02-02
+Participant (Primary): ÎÎŹÏÏÎœ ÎΔληÏÎÏÏÎżÏ
(Gramps ID: I2123)
+
+Type: event
+Gramps ID: E3429
+Event type: Death
+Event date: 1995-03-02
+Participant (Primary): ÎΔΜΔÏία ÎÎœÎ±ÎłÎœÏÏÏÎżÏÎżÏλοÏ
(Gramps ID: I2124)
+
+Type: event
+Gramps ID: E3430
+Event type: Death
+Event date: 2005-06-28
+Participant (Primary): ÎÏαΌΔÎčÎœÏÎœÎŽÎ±Ï ÎÏÎŹÎœÎœÎżÏ
(Gramps ID: I2125)
+
+Type: event
+Gramps ID: E3431
+Event type: Death
+Event date: 2006-01-11
+Participant (Primary): ÎÎżÏ
λία ÎαλÎÏγη (Gramps ID: I2126)
+
+Type: place
+Gramps ID: P0860
+Place name: Gainesville
+Place type: City
+Latitude: 33.62594, Longitude: -97.13335
+Part of: Llano, TX, USA
+
+Type: place
+Gramps ID: P0896
+Place name: LaGrange
+Place type: City
+Part of: GA, USA
+
+Type: place
+Gramps ID: P1472
+Place name: Lock Haven
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P0902
+Place name: Redwood City
+Place type: City
+Latitude: 37.48522, Longitude: -122.23635
+Part of: San Mateo, CA, USA
+
+Type: place
+Gramps ID: P1684
+Place name: Valley
+Place type: City
+Latitude: 32.81874, Longitude: -85.17939
+Part of: Chambers, AL, USA
+
+Type: place
+Gramps ID: P1083
+Place name: Portales
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1611
+Place name: Wilmington
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0873
+Place name: Safford
+Place type: City
+Latitude: 32.83395, Longitude: -109.70758
+Part of: Graham, AZ, USA
+
+Type: place
+Gramps ID: P1378
+Place name: Hereford
+Place type: City
+Latitude: 34.81506, Longitude: -102.39770
+Part of: Deaf Smith, TX, USA
+
+Type: place
+Gramps ID: P1618
+Place name: Cadillac
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P0926
+Place name: Fort Collins
+Place type: City
+Latitude: 40.58526, Longitude: -105.08442
+Part of: Larimer, CO, USA
+
+Type: place
+Gramps ID: P0855
+Place name: Hammond
+Place type: City
+Latitude: 30.50436, Longitude: -90.46120
+Part of: Tangipahoa, LA, USA
+
+Type: place
+Gramps ID: P1395
+Place name: Las Vegas
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1442
+Place name: Atchison
+Place type: City
+Latitude: 39.56305, Longitude: -95.12164
+Part of: Atchison, KS, USA
+
+Type: place
+Gramps ID: P0857
+Place name: Bethesda
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1379
+Place name: Punta Gorda
+Place type: City
+Latitude: 26.92978, Longitude: -82.04537
+Part of: Charlotte, FL, USA
+
+Type: place
+Gramps ID: P1594
+Place name: Palatka
+Place type: City
+Latitude: 29.64858, Longitude: -81.63758
+Part of: Putnam, FL, USA
+
+Type: place
+Gramps ID: P0927
+Place name: Ocala
+Place type: City
+Latitude: 29.18720, Longitude: -82.14009
+Part of: Marion, FL, USA
+
+Type: place
+Gramps ID: P1304
+Place name: Hilo
+Place type: City
+Part of: HI, USA
+
+Type: place
+Gramps ID: P1480
+Place name: Bainbridge
+Place type: City
+Latitude: 30.90380, Longitude: -84.57547
+Part of: Decatur, GA, USA
+
+Type: place
+Gramps ID: P0978
+Place name: Ottawa
+Place type: City
+Latitude: 41.34559, Longitude: -88.84258
+Part of: La Salle, IL, USA
+
+Type: place
+Gramps ID: P1350
+Place name: Steubenville
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1539
+Place name: Shawnee
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1106
+Place name: Jamestowna
+Place type: City
+Part of: NY, USA
+
+Type: place
+Gramps ID: P1424
+Place name: Logan
+Place type: City
+Part of: UT-ID, USA
+
+Type: place
+Gramps ID: P1482
+Place name: Del Rio
+Place type: City
+Latitude: 29.36273, Longitude: -100.89676
+Part of: Val Verde, TX, USA
+
+Type: place
+Gramps ID: P1131
+Place name: Aberdeen
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1388
+Place name: Portsmouth
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1494
+Place name: Knoxville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1132
+Place name: Bogalusa
+Place type: City
+Latitude: 30.79102, Longitude: -89.84869
+Part of: Washington, LA, USA
+
+Type: place
+Gramps ID: P1398
+Place name: Albuquerque
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1623
+Place name: Michigan City
+Place type: City
+Latitude: 41.70754, Longitude: -86.89503
+Part of: LaPorte, IN, USA
+
+Type: place
+Gramps ID: P1426
+Place name: Laredo
+Place type: City
+Latitude: 27.50641, Longitude: -99.50754
+Part of: Webb, TX, USA
+
+Type: place
+Gramps ID: P1506
+Place name: Dumas
+Place type: City
+Latitude: 35.86559, Longitude: -101.97324
+Part of: Moore, TX, USA
+
+Type: place
+Gramps ID: P0905
+Place name: Modesto
+Place type: City
+Latitude: 37.63910, Longitude: -120.99688
+Part of: Stanislaus, CA, USA
+
+Type: place
+Gramps ID: P1507
+Place name: Stevens Point
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P0856
+Place name: Bishop
+Place type: City
+Latitude: 37.36354, Longitude: -118.39511
+Part of: Inyo, CA, USA
+
+Type: place
+Gramps ID: P1491
+Place name: Jasper
+Place type: City
+Latitude: 38.39144, Longitude: -86.93111
+Part of: Dubois, IN, USA
+
+Type: place
+Gramps ID: P1153
+Place name: Gainesville
+Place type: City
+Latitude: 29.65163, Longitude: -82.32483
+Part of: Alachua, FL, USA
+
+Type: place
+Gramps ID: P1382
+Place name: Clovis
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1649
+Place name: Russellville
+Place type: City
+Latitude: 35.27842, Longitude: -93.13379
+Part of: Pope, AR, USA
+
+Type: place
+Gramps ID: P1200
+Place name: Vallejo
+Place type: City
+Latitude: 38.10409, Longitude: -122.25664
+Part of: Solano, CA, USA
+
+Type: place
+Gramps ID: P0956
+Place name: Rockland
+Place type: City
+Part of: ME, USA
+
+Type: place
+Gramps ID: P1177
+Place name: Weirton
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1107
+Place name: Decatur
+Place type: City
+Latitude: 39.84031, Longitude: -88.95480
+Part of: Macon, IL, USA
+
+Type: place
+Gramps ID: P0893
+Place name: Hartford
+Place type: City
+Latitude: 41.76371, Longitude: -72.68509
+Part of: Hartford, CT, USA
+
+Type: place
+Gramps ID: P1362
+Place name: Martinsville
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1584
+Place name: Duluth
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1462
+Place name: Carson City
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1385
+Place name: Worthington
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1625
+Place name: Forest City
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1112
+Place name: McAlester
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P0997
+Place name: Moscow
+Place type: City
+Latitude: 46.73239, Longitude: -117.00017
+Part of: Latah, ID, USA
+
+Type: place
+Gramps ID: P1678
+Place name: Twin Falls
+Place type: City
+Latitude: 42.56297, Longitude: -114.46087
+Part of: Twin Falls, ID, USA
+
+Type: place
+Gramps ID: P1098
+Place name: Oakland
+Place type: City
+Latitude: 37.80437, Longitude: -122.27080
+Part of: Alameda, CA, USA
+
+Type: place
+Gramps ID: P1286
+Place name: Miami Beach
+Place type: City
+Latitude: 25.79065, Longitude: -80.13005
+Part of: Miami-Dade, FL, USA
+
+Type: place
+Gramps ID: P1558
+Place name: Jamestown
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1606
+Place name: Starkville
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P0962
+Place name: Aguadilla
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1561
+Place name: Waterloo-Cedar Falls
+Place type: City
+Part of: IA, USA
+
+Type: place
+Gramps ID: P1129
+Place name: Orlando
+Place type: City
+Latitude: 28.53834, Longitude: -81.37924
+Part of: Orange, FL, USA
+
+Type: place
+Gramps ID: P1640
+Place name: Storm Lake
+Place type: City
+Latitude: 42.64109, Longitude: -95.20972
+Part of: Buena Vista, IA, USA
+
+Type: place
+Gramps ID: P1342
+Place name: Denver-Aurora
+Place type: City
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0964
+Place name: Alice
+Place type: City
+Latitude: 27.75225, Longitude: -98.06972
+Part of: Jim Wells, TX, USA
+
+Type: place
+Gramps ID: P1165
+Place name: Marion
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1190
+Place name: Brownwood
+Place type: City
+Latitude: 30.11438, Longitude: -93.73517
+Part of: Harris, TX, USA
+
+Type: place
+Gramps ID: P1461
+Place name: Beckley
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1669
+Place name: Salina
+Place type: City
+Latitude: 38.84028, Longitude: -97.61142
+Part of: Saline, KS, USA
+
+Type: place
+Gramps ID: P0903
+Place name: Killeen
+Place type: City
+Latitude: 31.11712, Longitude: -97.72780
+Part of: Bell, TX, USA
+
+Type: place
+Gramps ID: P1084
+Place name: College Station
+Place type: City
+Latitude: 30.62798, Longitude: -96.33441
+Part of: Brazos, TX, USA
+
+Type: place
+Gramps ID: P1498
+Place name: Paragould
+Place type: City
+Latitude: 36.05840, Longitude: -90.49733
+Part of: Greene, AR, USA
+
+Type: place
+Gramps ID: P1504
+Place name: Marshalltown
+Place type: City
+Latitude: 42.04943, Longitude: -92.90798
+Part of: Marshall, IA, USA
+
+Type: place
+Gramps ID: P1464
+Place name: Centralia
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1553
+Place name: Columbus
+Place type: City
+Latitude: 39.20144, Longitude: -85.92138
+Part of: Bartholomew, IN, USA
+
+Type: place
+Gramps ID: P1465
+Place name: Crowley
+Place type: City
+Latitude: 30.21409, Longitude: -92.37458
+Part of: Acadia, LA, USA
+
+Type: place
+Gramps ID: P1275
+Place name: Palm Bay
+Place type: City
+Latitude: 28.03446, Longitude: -80.58866
+Part of: Brevard, FL, USA
+
+Type: place
+Gramps ID: P1296
+Place name: El Campo
+Place type: City
+Latitude: 29.19664, Longitude: -96.26969
+Part of: Wharton, TX, USA
+
+Type: place
+Gramps ID: P1593
+Place name: Plymouth
+Place type: City
+Latitude: 41.34366, Longitude: -86.30973
+Part of: Marshall, IN, USA
+
+Type: place
+Gramps ID: P1222
+Place name: Jacksonville
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P0928
+Place name: Gadsden
+Place type: City
+Latitude: 34.01426, Longitude: -86.00664
+Part of: Etowah, AL, USA
+
+Type: place
+Gramps ID: P1323
+Place name: Gulfport
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1318
+Place name: Mount Sterling
+Place type: City
+Latitude: 38.05647, Longitude: -83.94326
+Part of: Montgomery, KY, USA
+
+Type: place
+Gramps ID: P1351
+Place name: Decatur
+Place type: City
+Latitude: 34.60593, Longitude: -86.98334
+Part of: Morgan, AL, USA
+
+Type: place
+Gramps ID: P1145
+Place name: Hutchinson
+Place type: City
+Latitude: 38.06084, Longitude: -97.92977
+Part of: Reno, KS, USA
+
+Type: place
+Gramps ID: P0862
+Place name: Tyler
+Place type: City
+Latitude: 32.35126, Longitude: -95.30106
+Part of: Smith, TX, USA
+
+Type: place
+Gramps ID: P0977
+Place name: Burlington
+Place type: City
+Latitude: 40.80754, Longitude: -91.11292
+Part of: Des Moines, IA, USA
+
+Type: place
+Gramps ID: P1207
+Place name: Allegan
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1402
+Place name: Statesboro
+Place type: City
+Latitude: 32.44879, Longitude: -81.78317
+Part of: Bulloch, GA, USA
+
+Type: place
+Gramps ID: P1281
+Place name: Phoenix
+Place type: City
+Latitude: 33.44838, Longitude: -112.07404
+Part of: Maricopa, AZ, USA
+
+Type: place
+Gramps ID: P1432
+Place name: Deming
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P0880
+Place name: Greenville
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1291
+Place name: Las Vegas
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1239
+Place name: Corning
+Place type: City
+Latitude: 42.14285, Longitude: -77.05469
+Part of: Steuben, NY, USA
+
+Type: place
+Gramps ID: P1141
+Place name: Grenada
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1372
+Place name: Milwaukee
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1166
+Place name: Connersville
+Place type: City
+Latitude: 39.64116, Longitude: -85.14107
+Part of: Fayette, IN, USA
+
+Type: place
+Gramps ID: P1374
+Place name: Wisconsin Rapids
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P0924
+Place name: Pueblo
+Place type: City
+Latitude: 38.25445, Longitude: -104.60914
+Part of: Pueblo, CO, USA
+
+Type: place
+Gramps ID: P1130
+Place name: Akron
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1470
+Place name: Hannibal
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P0858
+Place name: Mobile
+Place type: City
+Latitude: 30.69436, Longitude: -88.04305
+Part of: Mobile, AL, USA
+
+Type: place
+Gramps ID: P0933
+Place name: Flagstaff
+Place type: City
+Latitude: 35.19807, Longitude: -111.65127
+Part of: Coconino, AZ, USA
+
+Type: place
+Gramps ID: P1155
+Place name: St
+Place type: City
+Part of: Marys, St, Marys, PA, USA
+
+Type: place
+Gramps ID: P1158
+Place name: Kennewick
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1249
+Place name: Redding
+Place type: City
+Latitude: 40.58654, Longitude: -122.39168
+Part of: Shasta, CA, USA
+
+Type: place
+Gramps ID: P1633
+Place name: Jefferson City
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P0961
+Place name: Niles
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1485
+Place name: Greenwood
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1120
+Place name: Rockingham
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1044
+Place name: Decatur
+Place type: City
+Latitude: 40.83060, Longitude: -84.92913
+Part of: Adams, IN, USA
+
+Type: place
+Gramps ID: P1564
+Place name: Sault Ste
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1502
+Place name: Lafayette
+Place type: City
+Latitude: 40.41670, Longitude: -86.87529
+Part of: Tippecanoe, IN, USA
+
+Type: place
+Gramps ID: P1533
+Place name: Seaford
+Place type: City
+Latitude: 38.64123, Longitude: -75.61104
+Part of: Sussex, DE, USA
+
+Type: place
+Gramps ID: P1140
+Place name: Canton
+Place type: City
+Latitude: 40.55809, Longitude: -90.03512
+Part of: Fulton, IL, USA
+
+Type: place
+Gramps ID: P1078
+Place name: Eau Claire
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1320
+Place name: Pullman
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1101
+Place name: Reno-Sparks
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1280
+Place name: Lancaster
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1113
+Place name: Portland
+Place type: City
+Part of: ME, USA
+
+Type: place
+Gramps ID: P1668
+Place name: Jennings
+Place type: City
+Latitude: 30.22243, Longitude: -92.65708
+Part of: Jefferson Davis, LA, USA
+
+Type: place
+Gramps ID: P1230
+Place name: Fergus Falls
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P0898
+Place name: Dublin
+Place type: City
+Latitude: 32.54044, Longitude: -82.90375
+Part of: Laurens, GA, USA
+
+Type: place
+Gramps ID: P1228
+Place name: Marquette
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1604
+Place name: Stillwater
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1410
+Place name: New Ulm
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P0932
+Place name: Danville
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1454
+Place name: Fort Smith
+Place type: City
+Latitude: 35.38592, Longitude: -94.39855
+Part of: Sebastian, AR-OK, USA
+
+Type: place
+Gramps ID: P1635
+Place name: Kennett
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P0945
+Place name: Vernon
+Place type: City
+Latitude: 34.15453, Longitude: -99.26508
+Part of: Wilbarger, TX, USA
+
+Type: place
+Gramps ID: P1565
+Place name: Van Wert
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1373
+Place name: Lake Charles
+Place type: City
+Latitude: 30.22659, Longitude: -93.21738
+Part of: Calcasieu, LA, USA
+
+Type: place
+Gramps ID: P1163
+Place name: New Castle
+Place type: City
+Latitude: 39.92894, Longitude: -85.37025
+Part of: Henry, IN, USA
+
+Type: place
+Gramps ID: P1456
+Place name: Monroe
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1253
+Place name: Watertown
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P0931
+Place name: Palm Coast
+Place type: City
+Latitude: 29.58497, Longitude: -81.20784
+Part of: Flagler, FL, USA
+
+Type: place
+Gramps ID: P1061
+Place name: Newton
+Place type: City
+Latitude: 41.69971, Longitude: -93.04798
+Part of: Jasper, IA, USA
+
+Type: place
+Gramps ID: P1047
+Place name: Central City
+Place type: City
+Latitude: 37.29393, Longitude: -87.12333
+Part of: Muhlenberg, KY, USA
+
+Type: place
+Gramps ID: P1290
+Place name: Sevierville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1457
+Place name: Wenatchee
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P0934
+Place name: Crescent City North
+Place type: City
+Part of: CA, USA
+
+Type: place
+Gramps ID: P1067
+Place name: McAllen
+Place type: City
+Latitude: 26.20341, Longitude: -98.23001
+Part of: Hidalgo, TX, USA
+
+Type: place
+Gramps ID: P1451
+Place name: Point Pleasant
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1492
+Place name: Muncie
+Place type: City
+Latitude: 40.19338, Longitude: -85.38636
+Part of: Delaware, IN, USA
+
+Type: place
+Gramps ID: P1450
+Place name: Troy
+Place type: City
+Latitude: 31.80877, Longitude: -85.96995
+Part of: Pike, AL, USA
+
+Type: place
+Gramps ID: P1279
+Place name: Washington
+Place type: City
+Latitude: 38.65922, Longitude: -87.17279
+Part of: Daviess, IN, USA
+
+Type: place
+Gramps ID: P1252
+Place name: Oskaloosa
+Place type: City
+Latitude: 41.29639, Longitude: -92.64436
+Part of: Mahaska, IA, USA
+
+Type: place
+Gramps ID: P1124
+Place name: Rexburg
+Place type: City
+Latitude: 43.82602, Longitude: -111.78969
+Part of: Madison, ID, USA
+
+Type: place
+Gramps ID: P1389
+Place name: Findlay
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1193
+Place name: Racine
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1436
+Place name: Brookings
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1647
+Place name: Corsicana
+Place type: City
+Latitude: 32.09543, Longitude: -96.46887
+Part of: Navarro, TX, USA
+
+Type: place
+Gramps ID: P1052
+Place name: Brookhaven
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1009
+Place name: Detroit
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1466
+Place name: Lake Havasu City
+Place type: City
+Latitude: 34.48390, Longitude: -114.32245
+Part of: Mohave, AZ, USA
+
+Type: place
+Gramps ID: P0854
+Place name: Montrose
+Place type: City
+Latitude: 38.47832, Longitude: -107.87617
+Part of: Montrose, CO, USA
+
+Type: place
+Gramps ID: P1055
+Place name: Warsaw
+Place type: City
+Latitude: 41.23810, Longitude: -85.85305
+Part of: Kosciusko, IN, USA
+
+Type: place
+Gramps ID: P1142
+Place name: Batavia
+Place type: City
+Latitude: 42.99812, Longitude: -78.18752
+Part of: Genesee, NY, USA
+
+Type: place
+Gramps ID: P1468
+Place name: Williamsport
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P0889
+Place name: Grand Forks
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P0960
+Place name: Alexandria
+Place type: City
+Latitude: 31.31129, Longitude: -92.44514
+Part of: Rapides, LA, USA
+
+Type: place
+Gramps ID: P1446
+Place name: Albany
+Place type: City
+Latitude: 42.65258, Longitude: -73.75623
+Part of: Albany, NY, USA
+
+Type: place
+Gramps ID: P1036
+Place name: Cambridge
+Place type: City
+Latitude: 42.24454, Longitude: -71.81202
+Part of: Middlesex, MA, USA
+
+Type: place
+Gramps ID: P1642
+Place name: Jacksonville
+Place type: City
+Latitude: 30.33218, Longitude: -81.65565
+Part of: Duval, FL, USA
+
+Type: place
+Gramps ID: P1178
+Place name: Harrisburg
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1242
+Place name: Dubuque
+Place type: City
+Latitude: 42.50056, Longitude: -90.66457
+Part of: Dubuque, IA, USA
+
+Type: place
+Gramps ID: P1585
+Place name: Mankato
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1556
+Place name: Marshall
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1641
+Place name: Cookeville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1194
+Place name: Cleveland
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1686
+Place name: Big Rapids
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P0950
+Place name: Florence
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P0887
+Place name: Port Angeles
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1408
+Place name: Dixon
+Place type: City
+Latitude: 41.83892, Longitude: -89.47955
+Part of: Lee, IL, USA
+
+Type: place
+Gramps ID: P1543
+Place name: Bemidji
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1206
+Place name: San SebastiĂĄn
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1363
+Place name: Riverside
+Place type: City
+Part of: CA, USA
+
+Type: place
+Gramps ID: P1583
+Place name: Angola
+Place type: City
+Latitude: 41.63477, Longitude: -84.99941
+Part of: Steuben, IN, USA
+
+Type: place
+Gramps ID: P1268
+Place name: Wheeling
+Place type: City
+Part of: WV-OH, USA
+
+Type: place
+Gramps ID: P0966
+Place name: La Follette
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1176
+Place name: Cordele
+Place type: City
+Latitude: 31.96351, Longitude: -83.78239
+Part of: Crisp, GA, USA
+
+Type: place
+Gramps ID: P1091
+Place name: Hope
+Place type: City
+Latitude: 33.66706, Longitude: -93.59157
+Part of: Hempstead, AR, USA
+
+Type: place
+Gramps ID: P1602
+Place name: Peoria
+Place type: City
+Latitude: 40.69365, Longitude: -89.58899
+Part of: Peoria, IL, USA
+
+Type: place
+Gramps ID: P1220
+Place name: Jonesboro
+Place type: City
+Latitude: 35.84230, Longitude: -90.70428
+Part of: Craighead, AR, USA
+
+Type: place
+Gramps ID: P1184
+Place name: Tallahassee
+Place type: City
+Latitude: 30.43826, Longitude: -84.28073
+Part of: Leon, FL, USA
+
+Type: place
+Gramps ID: P1285
+Place name: Paris
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P0886
+Place name: Bremerton
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P0971
+Place name: Alpena
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1493
+Place name: Medford
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P0972
+Place name: Boone
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1476
+Place name: Memphis
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1600
+Place name: Brenham
+Place type: City
+Latitude: 30.16688, Longitude: -96.39774
+Part of: Washington, TX, USA
+
+Type: place
+Gramps ID: P1045
+Place name: Butte
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P1354
+Place name: Concord
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P1235
+Place name: Carlsbad
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1042
+Place name: Goldsboro
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1559
+Place name: Boulder
+Place type: City
+Latitude: 40.01499, Longitude: -105.27055
+Part of: Boulder, CO, USA
+
+Type: place
+Gramps ID: P1043
+Place name: New Bern
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P0965
+Place name: Anniston
+Place type: City
+Latitude: 33.65983, Longitude: -85.83163
+Part of: Calhoun, AL, USA
+
+Type: place
+Gramps ID: P1191
+Place name: Newport
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1077
+Place name: Monroe
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1063
+Place name: Huntsville
+Place type: City
+Latitude: 30.72353, Longitude: -95.55078
+Part of: Walker, TX, USA
+
+Type: place
+Gramps ID: P1224
+Place name: MayagĂŒez
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1685
+Place name: Juneau
+Place type: City
+Part of: AK, USA
+
+Type: place
+Gramps ID: P1019
+Place name: Lewiston
+Place type: City
+Latitude: 46.41655, Longitude: -117.01766
+Part of: Nez Perce, ID, USA
+
+Type: place
+Gramps ID: P1210
+Place name: Augusta
+Place type: City
+Part of: ME, USA
+
+Type: place
+Gramps ID: P1039
+Place name: Gallup
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1097
+Place name: Summerville
+Place type: City
+Latitude: 34.48064, Longitude: -85.34773
+Part of: Chattooga, GA, USA
+
+Type: place
+Gramps ID: P1515
+Place name: Levelland
+Place type: City
+Latitude: 33.58732, Longitude: -102.37796
+Part of: Hockley, TX, USA
+
+Type: place
+Gramps ID: P1139
+Place name: Willimantic
+Place type: City
+Latitude: 41.71065, Longitude: -72.20813
+Part of: Windham, CT, USA
+
+Type: place
+Gramps ID: P1266
+Place name: Ellensburg
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1578
+Place name: Birmingham
+Place type: City
+Latitude: 33.52066, Longitude: -86.80249
+Part of: Jefferson, AL, USA
+
+Type: place
+Gramps ID: P1017
+Place name: Reading
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1110
+Place name: Oneonta
+Place type: City
+Latitude: 42.45286, Longitude: -75.06377
+Part of: Otsego, NY, USA
+
+Type: place
+Gramps ID: P1674
+Place name: Tallulah
+Place type: City
+Latitude: 32.40848, Longitude: -91.18678
+Part of: Madison, LA, USA
+
+Type: place
+Gramps ID: P1548
+Place name: Missoula
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P1251
+Place name: Jackson
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1656
+Place name: Havre
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P0940
+Place name: Evanston
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1409
+Place name: Worcester
+Place type: City
+Latitude: 42.26259, Longitude: -71.80229
+Part of: Worcester, MA, USA
+
+Type: place
+Gramps ID: P1411
+Place name: Faribault-Northfield
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1167
+Place name: Columbus
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1612
+Place name: St
+Place type: City
+Part of: Louis, St, Louis, MO-IL, USA
+
+Type: place
+Gramps ID: P0967
+Place name: Lima
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1505
+Place name: Kingsport
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1616
+Place name: Dodge City
+Place type: City
+Latitude: 37.75280, Longitude: -100.01708
+Part of: Ford, KS, USA
+
+Type: place
+Gramps ID: P0910
+Place name: Poughkeepsie
+Place type: City
+Latitude: 41.70037, Longitude: -73.92097
+Part of: Dutchess, NY, USA
+
+Type: place
+Gramps ID: P1066
+Place name: Coshocton
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1477
+Place name: Hayward
+Place type: City
+Latitude: 37.66882, Longitude: -122.08080
+Part of: Alameda, CA, USA
+
+Type: place
+Gramps ID: P1111
+Place name: Kearney
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P0894
+Place name: Alexandria
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1181
+Place name: Laconia
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P1160
+Place name: Columbus
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1254
+Place name: South Bend
+Place type: City
+Latitude: 41.68338, Longitude: -86.25001
+Part of: St. Joseph, IN, USA
+
+Type: place
+Gramps ID: P1095
+Place name: Greeley
+Place type: City
+Latitude: 40.42331, Longitude: -104.70913
+Part of: Weld, CO, USA
+
+Type: place
+Gramps ID: P1364
+Place name: Centralia
+Place type: City
+Latitude: 38.52505, Longitude: -89.13340
+Part of: Marion, IL, USA
+
+Type: place
+Gramps ID: P0998
+Place name: Lebanon
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1562
+Place name: Rock Springs
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1481
+Place name: Sanford
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1459
+Place name: Sioux Falls
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1080
+Place name: El Centro
+Place type: City
+Latitude: 32.79200, Longitude: -115.56305
+Part of: Imperial, CA, USA
+
+Type: place
+Gramps ID: P1144
+Place name: Morgantown
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1420
+Place name: De Ridder
+Place type: City
+Part of: LA, USA
+
+Type: place
+Gramps ID: P1500
+Place name: Morehead City
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P0974
+Place name: Cabo Rojo
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1201
+Place name: Union City
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1255
+Place name: Edwards
+Place type: City
+Latitude: 39.64499, Longitude: -106.59420
+Part of: Eagle, CO, USA
+
+Type: place
+Gramps ID: P0976
+Place name: Toledo
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1701
+Place name: Winchester
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1514
+Place name: Seymour
+Place type: City
+Latitude: 38.95922, Longitude: -85.89025
+Part of: Jackson, IN, USA
+
+Type: place
+Gramps ID: P1108
+Place name: York
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1384
+Place name: New Orleans
+Place type: City
+Latitude: 29.95465, Longitude: -90.07507
+Part of: Orleans, LA, USA
+
+Type: place
+Gramps ID: P1016
+Place name: Cedartown
+Place type: City
+Latitude: 34.05371, Longitude: -85.25495
+Part of: Polk, GA, USA
+
+Type: place
+Gramps ID: P1247
+Place name: Burley
+Place type: City
+Latitude: 42.53574, Longitude: -113.79279
+Part of: Cassia, ID, USA
+
+Type: place
+Gramps ID: P1119
+Place name: La Crosse
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1366
+Place name: Ada
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P0875
+Place name: Crawfordsville
+Place type: City
+Latitude: 40.04115, Longitude: -86.87445
+Part of: Montgomery, IN, USA
+
+Type: place
+Gramps ID: P0993
+Place name: Greenwood
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1250
+Place name: Indiana
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1072
+Place name: Bridgeport
+Place type: City
+Latitude: 41.16704, Longitude: -73.20483
+Part of: Fairfield, CT, USA
+
+Type: place
+Gramps ID: P1341
+Place name: Longview-Kelso
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1528
+Place name: Warrensburg
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1237
+Place name: Billings
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P1501
+Place name: Kendallville
+Place type: City
+Latitude: 41.44144, Longitude: -85.26498
+Part of: Noble, IN, USA
+
+Type: place
+Gramps ID: P1187
+Place name: San Antonio
+Place type: City
+Latitude: 29.42412, Longitude: -98.49363
+Part of: Bexar, TX, USA
+
+Type: place
+Gramps ID: P1001
+Place name: Mount Vernon
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1026
+Place name: Elmira
+Place type: City
+Latitude: 42.08980, Longitude: -76.80773
+Part of: Chemung, NY, USA
+
+Type: place
+Gramps ID: P1143
+Place name: Brownsville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P0884
+Place name: Hanover
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1700
+Place name: Williston
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1666
+Place name: Clearlake
+Place type: City
+Latitude: 38.95823, Longitude: -122.62637
+Part of: Lake, CA, USA
+
+Type: place
+Gramps ID: P0985
+Place name: Garden City
+Place type: City
+Latitude: 37.97169, Longitude: -100.87266
+Part of: Finney, KS, USA
+
+Type: place
+Gramps ID: P0986
+Place name: Klamath Falls
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1592
+Place name: Topeka
+Place type: City
+Latitude: 39.04833, Longitude: -95.67804
+Part of: Shawnee, KS, USA
+
+Type: place
+Gramps ID: P1027
+Place name: Bay City
+Place type: City
+Latitude: 28.98276, Longitude: -95.96940
+Part of: Matagorda, TX, USA
+
+Type: place
+Gramps ID: P0973
+Place name: Boise City
+Place type: City
+Part of: ID, USA
+
+Type: place
+Gramps ID: P1441
+Place name: Columbus
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0929
+Place name: Honolulu
+Place type: City
+Part of: HI, USA
+
+Type: place
+Gramps ID: P1621
+Place name: Baltimore
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1012
+Place name: Vero Beach
+Place type: City
+Latitude: 27.63864, Longitude: -80.39727
+Part of: Indian River, FL, USA
+
+Type: place
+Gramps ID: P1579
+Place name: Washington
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1460
+Place name: Ames
+Place type: City
+Latitude: 42.03471, Longitude: -93.61994
+Part of: Story, IA, USA
+
+Type: place
+Gramps ID: P1386
+Place name: Ottumwa
+Place type: City
+Latitude: 41.02001, Longitude: -92.41130
+Part of: Wapello, IA, USA
+
+Type: place
+Gramps ID: P1630
+Place name: Spearfish
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P0938
+Place name: Fort Morgan
+Place type: City
+Latitude: 40.25026, Longitude: -103.79995
+Part of: Morgan, CO, USA
+
+Type: place
+Gramps ID: P1292
+Place name: Mitchell
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1499
+Place name: Washington
+Place type: City
+Latitude: 38.89511, Longitude: -77.03637
+Part of: District of Columbia, DC, USA
+
+Type: place
+Gramps ID: P1526
+Place name: Phoenix Lake
+Place type: City
+Latitude: 38.00594, Longitude: -120.30702
+Part of: Tuolumne, CA, USA
+
+Type: place
+Gramps ID: P1137
+Place name: Beeville
+Place type: City
+Latitude: 28.40083, Longitude: -97.74833
+Part of: Bee, TX, USA
+
+Type: place
+Gramps ID: P1412
+Place name: Sikeston
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1698
+Place name: Panama City
+Place type: City
+Latitude: 30.15881, Longitude: -85.66021
+Part of: Bay, FL, USA
+
+Type: place
+Gramps ID: P1238
+Place name: Henderson
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1192
+Place name: St
+Place type: City
+Part of: George, UT, USA
+
+Type: place
+Gramps ID: P1588
+Place name: Lexington
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1645
+Place name: Crossville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1646
+Place name: Sioux City
+Place type: City
+Latitude: 42.49999, Longitude: -96.40031
+Part of: Woodbury, IA-NE-SD, USA
+
+Type: place
+Gramps ID: P1243
+Place name: Midland
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1650
+Place name: Harrisonburg
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1170
+Place name: Flint
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1628
+Place name: Virginia Beach
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1345
+Place name: Kokomo
+Place type: City
+Latitude: 40.48643, Longitude: -86.13360
+Part of: Howard, IN, USA
+
+Type: place
+Gramps ID: P0980
+Place name: Marion
+Place type: City
+Latitude: 37.73061, Longitude: -88.93313
+Part of: Edwards, IL, USA
+
+Type: place
+Gramps ID: P1234
+Place name: McPherson
+Place type: City
+Latitude: 38.37084, Longitude: -97.66421
+Part of: McPherson, KS, USA
+
+Type: place
+Gramps ID: P1421
+Place name: Dalton
+Place type: City
+Latitude: 34.16594, Longitude: -83.17043
+Part of: Madison, GA, USA
+
+Type: place
+Gramps ID: P0906
+Place name: Maysville
+Place type: City
+Latitude: 38.64119, Longitude: -83.74437
+Part of: Mason, KY, USA
+
+Type: place
+Gramps ID: P1076
+Place name: Oxnard
+Place type: City
+Latitude: 34.19750, Longitude: -119.17705
+Part of: Ventura, CA, USA
+
+Type: place
+Gramps ID: P0881
+Place name: Durango
+Place type: City
+Latitude: 37.27528, Longitude: -107.88007
+Part of: La Plata, CO, USA
+
+Type: place
+Gramps ID: P1622
+Place name: Bloomsburg
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1619
+Place name: Minden
+Place type: City
+Latitude: 32.61543, Longitude: -93.28684
+Part of: Webster, LA, USA
+
+Type: place
+Gramps ID: P1088
+Place name: Columbia
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P0923
+Place name: Morgan City
+Place type: City
+Latitude: 29.69937, Longitude: -91.20677
+Part of: St. Mary, LA, USA
+
+Type: place
+Gramps ID: P1102
+Place name: Lake City
+Place type: City
+Latitude: 30.18968, Longitude: -82.63929
+Part of: Columbia, FL, USA
+
+Type: place
+Gramps ID: P1241
+Place name: Kingston
+Place type: City
+Latitude: 41.92704, Longitude: -73.99736
+Part of: Ulster, NY, USA
+
+Type: place
+Gramps ID: P1427
+Place name: Gloversville
+Place type: City
+Latitude: 43.05285, Longitude: -74.34375
+Part of: Fulton, NY, USA
+
+Type: place
+Gramps ID: P1231
+Place name: Taylorville
+Place type: City
+Latitude: 39.54894, Longitude: -89.29453
+Part of: Christian, IL, USA
+
+Type: place
+Gramps ID: P0941
+Place name: New Castle
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P0948
+Place name: Warren-Farmington Hills-Troy
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1126
+Place name: Arlington
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1294
+Place name: Fort Leonard Wood
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1636
+Place name: Lakeland
+Place type: City
+Latitude: 28.03947, Longitude: -81.94980
+Part of: Polk, FL, USA
+
+Type: place
+Gramps ID: P1002
+Place name: Norfolk
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1608
+Place name: Cincinnati
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1663
+Place name: Poplar Bluff
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1007
+Place name: Anderson
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1568
+Place name: Alexandria
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1349
+Place name: Amarillo
+Place type: City
+Latitude: 35.22200, Longitude: -101.83130
+Part of: Potter, TX, USA
+
+Type: place
+Gramps ID: P1575
+Place name: Portland
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P0888
+Place name: Payson
+Place type: City
+Latitude: 34.23087, Longitude: -111.32514
+Part of: Gila, AZ, USA
+
+Type: place
+Gramps ID: P0885
+Place name: Scottsburg
+Place type: City
+Latitude: 38.28866, Longitude: -87.21917
+Part of: Scott, IN, USA
+
+Type: place
+Gramps ID: P1329
+Place name: Bismarck
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1576
+Place name: Hutchinson
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1692
+Place name: Isabela
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P0914
+Place name: Red Wing
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1383
+Place name: Santa Rosa-Petaluma
+Place type: City
+Part of: CA, USA
+
+Type: place
+Gramps ID: P1272
+Place name: Ardmore
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1471
+Place name: Visalia
+Place type: City
+Latitude: 36.33023, Longitude: -119.29206
+Part of: Tulare, CA, USA
+
+Type: place
+Gramps ID: P0863
+Place name: Bowling Green
+Place type: City
+Latitude: 36.99032, Longitude: -86.44360
+Part of: Warren, KY, USA
+
+Type: place
+Gramps ID: P1014
+Place name: Pahrump
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1544
+Place name: Salem
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1226
+Place name: Mount Airy
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1356
+Place name: Muskogee
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1020
+Place name: Taos
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1040
+Place name: San Francisco
+Place type: City
+Latitude: 37.77493, Longitude: -122.41942
+Part of: San Francisco, CA, USA
+
+Type: place
+Gramps ID: P1338
+Place name: Frankfort
+Place type: City
+Latitude: 40.27948, Longitude: -86.51084
+Part of: Clinton, IN, USA
+
+Type: place
+Gramps ID: P1096
+Place name: Allentown
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1162
+Place name: Fond du Lac
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1517
+Place name: Mount Pleasant
+Place type: City
+Latitude: 33.15679, Longitude: -94.96827
+Part of: Taylor, TX, USA
+
+Type: place
+Gramps ID: P0982
+Place name: Cullman
+Place type: City
+Latitude: 34.17482, Longitude: -86.84361
+Part of: Cullman, AL, USA
+
+Type: place
+Gramps ID: P1488
+Place name: Mount Vernon
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1660
+Place name: Beaver Dam
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P0868
+Place name: Lawton
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1069
+Place name: Bridgeton
+Place type: City
+Part of: NJ, USA
+
+Type: place
+Gramps ID: P1321
+Place name: DuBois
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1081
+Place name: Altoona
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1673
+Place name: Wausau
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1171
+Place name: Bluefield
+Place type: City
+Part of: WV-VA, USA
+
+Type: place
+Gramps ID: P1599
+Place name: Fairmont
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1295
+Place name: Hot Springs
+Place type: City
+Latitude: 34.50370, Longitude: -93.05518
+Part of: Garland, AR, USA
+
+Type: place
+Gramps ID: P1150
+Place name: Chillicothe
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1690
+Place name: Carbondale
+Place type: City
+Latitude: 37.72727, Longitude: -89.21675
+Part of: Jackson, IL, USA
+
+Type: place
+Gramps ID: P0958
+Place name: Boone
+Place type: City
+Latitude: 42.05970, Longitude: -93.88023
+Part of: Boone, IA, USA
+
+Type: place
+Gramps ID: P1577
+Place name: Frederick
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P0890
+Place name: Chattanooga
+Place type: City
+Part of: TN-GA, USA
+
+Type: place
+Gramps ID: P1015
+Place name: Shreveport
+Place type: City
+Latitude: 32.52515, Longitude: -93.75018
+Part of: Caddo, LA, USA
+
+Type: place
+Gramps ID: P1653
+Place name: Nashville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1303
+Place name: Thomaston
+Place type: City
+Latitude: 32.88819, Longitude: -84.32659
+Part of: Upson, GA, USA
+
+Type: place
+Gramps ID: P1405
+Place name: Tuscaloosa
+Place type: City
+Latitude: 33.20984, Longitude: -87.56917
+Part of: Tuscaloosa, AL, USA
+
+Type: place
+Gramps ID: P1522
+Place name: Scranton
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P0920
+Place name: Manitowoc
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P0865
+Place name: New Haven
+Place type: City
+Latitude: 41.30815, Longitude: -72.92816
+Part of: New Haven, CT, USA
+
+Type: place
+Gramps ID: P1339
+Place name: Macon
+Place type: City
+Latitude: 32.84069, Longitude: -83.63240
+Part of: Bibb, GA, USA
+
+Type: place
+Gramps ID: P1554
+Place name: Ogden
+Place type: City
+Part of: UT, USA
+
+Type: place
+Gramps ID: P1056
+Place name: Olean
+Place type: City
+Latitude: 42.07756, Longitude: -78.42974
+Part of: Cattaraugus, NY, USA
+
+Type: place
+Gramps ID: P1467
+Place name: Fostoria
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1312
+Place name: Guaynabo
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1064
+Place name: Hobbs
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1624
+Place name: Stockton
+Place type: City
+Latitude: 37.95770, Longitude: -121.29078
+Part of: San Joaquin, CA, USA
+
+Type: place
+Gramps ID: P1305
+Place name: Tullahoma
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1236
+Place name: Richmond
+Place type: City
+Latitude: 39.82894, Longitude: -84.89024
+Part of: Wayne, IN, USA
+
+Type: place
+Gramps ID: P1434
+Place name: Granbury
+Place type: City
+Latitude: 32.44208, Longitude: -97.79420
+Part of: Hood, TX, USA
+
+Type: place
+Gramps ID: P1309
+Place name: Mountain Home
+Place type: City
+Latitude: 43.13295, Longitude: -115.69120
+Part of: Elmore, ID, USA
+
+Type: place
+Gramps ID: P1114
+Place name: Elkhart
+Place type: City
+Latitude: 41.68199, Longitude: -85.97667
+Part of: Elkhart, IN, USA
+
+Type: place
+Gramps ID: P1283
+Place name: Pendleton-Hermiston
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1455
+Place name: Gardnerville Ranchos
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1677
+Place name: Saginaw
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1637
+Place name: Yauco
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1369
+Place name: Iron Mountain
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1435
+Place name: Great Falls
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P1414
+Place name: Eureka
+Place type: City
+Latitude: 40.80207, Longitude: -124.16367
+Part of: Humboldt, CA, USA
+
+Type: place
+Gramps ID: P1661
+Place name: Myrtle Beach
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P0952
+Place name: Coos Bay
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1270
+Place name: Gaithersburg
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1151
+Place name: Bozeman
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P0930
+Place name: Mooresville
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1223
+Place name: Richmond
+Place type: City
+Latitude: 37.74786, Longitude: -84.29465
+Part of: Madison, KY, USA
+
+Type: place
+Gramps ID: P1425
+Place name: Evansville
+Place type: City
+Latitude: 37.97476, Longitude: -87.55585
+Part of: Vanderburgh, IN, USA
+
+Type: place
+Gramps ID: P1651
+Place name: Effingham
+Place type: City
+Latitude: 39.12004, Longitude: -88.54338
+Part of: Effingham, IL, USA
+
+Type: place
+Gramps ID: P1034
+Place name: Fitzgerald
+Place type: City
+Latitude: 31.71491, Longitude: -83.25265
+Part of: Ben Hill, GA, USA
+
+Type: place
+Gramps ID: P0892
+Place name: San Diego
+Place type: City
+Latitude: 32.71533, Longitude: -117.15726
+Part of: San Diego, CA, USA
+
+Type: place
+Gramps ID: P1495
+Place name: Canon City
+Place type: City
+Part of: CO, USA
+
+Type: place
+Gramps ID: P1654
+Place name: Dallas
+Place type: City
+Latitude: 32.78306, Longitude: -96.80667
+Part of: Dallas, TX, USA
+
+Type: place
+Gramps ID: P1497
+Place name: Laurel
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1089
+Place name: Woodward
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1475
+Place name: Morristown
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1672
+Place name: Brainerd
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P0994
+Place name: Ocean City
+Place type: City
+Part of: NJ, USA
+
+Type: place
+Gramps ID: P1431
+Place name: Somerset
+Place type: City
+Latitude: 37.09202, Longitude: -84.60411
+Part of: Pulaski, KY, USA
+
+Type: place
+Gramps ID: P1403
+Place name: Fallon
+Place type: City
+Part of: NV, USA
+
+Type: place
+Gramps ID: P1134
+Place name: Mineral Wells
+Place type: City
+Latitude: 32.80846, Longitude: -98.11282
+Part of: Palo Pinto, TX, USA
+
+Type: place
+Gramps ID: P1407
+Place name: Marshall
+Place type: City
+Latitude: 32.54487, Longitude: -94.36742
+Part of: Harrison, TX, USA
+
+Type: place
+Gramps ID: P1182
+Place name: Santa Cruz
+Place type: City
+Latitude: 36.97412, Longitude: -122.03080
+Part of: Santa Cruz, CA, USA
+
+Type: place
+Gramps ID: P1115
+Place name: Marshall
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1360
+Place name: Cleveland
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1524
+Place name: Des Moines
+Place type: City
+Latitude: 41.60054, Longitude: -93.60911
+Part of: Polk, IA, USA
+
+Type: place
+Gramps ID: P1313
+Place name: Philadelphia
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1397
+Place name: Davenport
+Place type: City
+Latitude: 41.52364, Longitude: -90.57764
+Part of: Scott, IA, USA
+
+Type: place
+Gramps ID: P0879
+Place name: Cleveland
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1073
+Place name: Coffeyville
+Place type: City
+Latitude: 37.03730, Longitude: -95.61637
+Part of: Montgomery, KS, USA
+
+Type: place
+Gramps ID: P0921
+Place name: Auburn
+Place type: City
+Latitude: 42.93173, Longitude: -76.56605
+Part of: Cayuga, NY, USA
+
+Type: place
+Gramps ID: P1534
+Place name: Youngstown
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1104
+Place name: Andrews
+Place type: City
+Latitude: 32.31872, Longitude: -102.54572
+Part of: Andrews, TX, USA
+
+Type: place
+Gramps ID: P1371
+Place name: Somerset
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1699
+Place name: Hastings
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1188
+Place name: Riverton
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1147
+Place name: Sierra Vista
+Place type: City
+Latitude: 31.55454, Longitude: -110.30369
+Part of: Cochise, AZ, USA
+
+Type: place
+Gramps ID: P1687
+Place name: Bay City
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1219
+Place name: Newberry
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1008
+Place name: Moberly
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1198
+Place name: Lufkin
+Place type: City
+Latitude: 31.33824, Longitude: -94.72910
+Part of: Angelina, TX, USA
+
+Type: place
+Gramps ID: P1293
+Place name: Adjuntas
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1573
+Place name: Selma
+Place type: City
+Latitude: 32.40736, Longitude: -87.02110
+Part of: Dallas, AL, USA
+
+Type: place
+Gramps ID: P1175
+Place name: Chicago
+Place type: City
+Latitude: 41.85003, Longitude: -87.65005
+Part of: Cook, IL, USA
+
+Type: place
+Gramps ID: P1423
+Place name: State College
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1595
+Place name: Cape Girardeau
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1246
+Place name: Ukiah
+Place type: City
+Latitude: 39.15017, Longitude: -123.20778
+Part of: Mendocino, CA, USA
+
+Type: place
+Gramps ID: P0991
+Place name: Frankfort
+Place type: City
+Latitude: 38.20091, Longitude: -84.87328
+Part of: Franklin, KY, USA
+
+Type: place
+Gramps ID: P1203
+Place name: Lake County
+Place type: City
+Part of: IL, USA
+
+Type: place
+Gramps ID: P1396
+Place name: Waycross
+Place type: City
+Latitude: 31.21355, Longitude: -82.35402
+Part of: Ware, GA, USA
+
+Type: place
+Gramps ID: P1217
+Place name: Union
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1133
+Place name: Anchorage
+Place type: City
+Part of: AK, USA
+
+Type: place
+Gramps ID: P1380
+Place name: Vicksburg
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1542
+Place name: Grand Rapids
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1154
+Place name: Shelby
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1626
+Place name: Grand Junction
+Place type: City
+Latitude: 39.06387, Longitude: -108.55065
+Part of: Mesa, CO, USA
+
+Type: place
+Gramps ID: P1695
+Place name: Yazoo City
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1068
+Place name: Pecos
+Place type: City
+Latitude: 31.42291, Longitude: -103.49323
+Part of: Reeves, TX, USA
+
+Type: place
+Gramps ID: P1248
+Place name: Thomasville
+Place type: City
+Latitude: 33.69733, Longitude: -84.34965
+Part of: Fulton, GA, USA
+
+Type: place
+Gramps ID: P0917
+Place name: Bangor
+Place type: City
+Part of: ME, USA
+
+Type: place
+Gramps ID: P1277
+Place name: Springfield
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1197
+Place name: Big Spring
+Place type: City
+Latitude: 32.25040, Longitude: -101.47874
+Part of: Howard, TX, USA
+
+Type: place
+Gramps ID: P1549
+Place name: Elizabeth City
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1306
+Place name: Durant
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1041
+Place name: Hudson
+Place type: City
+Latitude: 42.25286, Longitude: -73.79096
+Part of: Columbia, NY, USA
+
+Type: place
+Gramps ID: P1483
+Place name: Corvallis
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1696
+Place name: Amsterdam
+Place type: City
+Latitude: 42.93869, Longitude: -74.18819
+Part of: Montgomery, NY, USA
+
+Type: place
+Gramps ID: P1484
+Place name: Ashland
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0899
+Place name: Wilmington
+Place type: City
+Latitude: 39.74595, Longitude: -75.54659
+Part of: New Castle, DE-MD-NJ, USA
+
+Type: place
+Gramps ID: P1365
+Place name: Lamesa
+Place type: City
+Latitude: 32.73760, Longitude: -101.95099
+Part of: Dawson, TX, USA
+
+Type: place
+Gramps ID: P1183
+Place name: Plainview
+Place type: City
+Latitude: 34.18479, Longitude: -101.70684
+Part of: Houston, TX, USA
+
+Type: place
+Gramps ID: P1586
+Place name: Rocky Mount
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1368
+Place name: Caguas
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1315
+Place name: Winona
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1370
+Place name: Ketchikan
+Place type: City
+Part of: AK, USA
+
+Type: place
+Gramps ID: P1587
+Place name: Minot
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1189
+Place name: Bellingham
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1392
+Place name: Keene
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P1148
+Place name: Guayama
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P0904
+Place name: Huntsville
+Place type: City
+Latitude: 34.73037, Longitude: -86.58610
+Part of: Madison, AL, USA
+
+Type: place
+Gramps ID: P1394
+Place name: Maryville
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1617
+Place name: Wooster
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1257
+Place name: Plattsburgh
+Place type: City
+Latitude: 44.69949, Longitude: -73.45291
+Part of: Clinton, NY, USA
+
+Type: place
+Gramps ID: P1010
+Place name: Eagle Pass
+Place type: City
+Latitude: 28.70914, Longitude: -100.49952
+Part of: Maverick, TX, USA
+
+Type: place
+Gramps ID: P1221
+Place name: St
+Place type: City
+Part of: FL, USA
+
+Type: place
+Gramps ID: P1422
+Place name: Ponce
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1057
+Place name: Arkadelphia
+Place type: City
+Latitude: 34.12093, Longitude: -93.05378
+Part of: Clark, AR, USA
+
+Type: place
+Gramps ID: P1271
+Place name: Lafayette
+Place type: City
+Latitude: 30.22409, Longitude: -92.01984
+Part of: Lafayette, LA, USA
+
+Type: place
+Gramps ID: P1551
+Place name: Shelton
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1648
+Place name: Campbellsville
+Place type: City
+Latitude: 37.34340, Longitude: -85.34191
+Part of: Taylor, KY, USA
+
+Type: place
+Gramps ID: P1512
+Place name: Moultrie
+Place type: City
+Latitude: 31.17991, Longitude: -83.78906
+Part of: Colquitt, GA, USA
+
+Type: place
+Gramps ID: P0913
+Place name: Altus
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1352
+Place name: Mexico
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1032
+Place name: Santa Fe
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1065
+Place name: Searcy
+Place type: City
+Latitude: 35.25064, Longitude: -91.73625
+Part of: White, AR, USA
+
+Type: place
+Gramps ID: P1670
+Place name: New Philadelphia
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1037
+Place name: Lawrenceburg
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1302
+Place name: Sandusky
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1244
+Place name: McComb
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P0970
+Place name: Albany
+Place type: City
+Latitude: 31.57851, Longitude: -84.15574
+Part of: Dougherty, GA, USA
+
+Type: place
+Gramps ID: P1357
+Place name: Terre Haute
+Place type: City
+Latitude: 39.46670, Longitude: -87.41391
+Part of: Vigo, IN, USA
+
+Type: place
+Gramps ID: P1546
+Place name: Fort Valley
+Place type: City
+Latitude: 32.55376, Longitude: -83.88741
+Part of: Peach, GA, USA
+
+Type: place
+Gramps ID: P1180
+Place name: Colorado Springs
+Place type: City
+Latitude: 38.83388, Longitude: -104.82136
+Part of: El Paso, CO, USA
+
+Type: place
+Gramps ID: P1404
+Place name: Selinsgrove
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1581
+Place name: Yakima
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1229
+Place name: Miami
+Place type: City
+Latitude: 25.77427, Longitude: -80.19366
+Part of: Miami-Dade, FL, USA
+
+Type: place
+Gramps ID: P1449
+Place name: Manhattan
+Place type: City
+Latitude: 39.18361, Longitude: -96.57167
+Part of: Riley, KS, USA
+
+Type: place
+Gramps ID: P1676
+Place name: Madison
+Place type: City
+Latitude: 38.73589, Longitude: -85.37996
+Part of: Jefferson, IN, USA
+
+Type: place
+Gramps ID: P1308
+Place name: Homosassa Springs
+Place type: City
+Latitude: 28.80359, Longitude: -82.57593
+Part of: Citrus, FL, USA
+
+Type: place
+Gramps ID: P1552
+Place name: Las Cruces
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1601
+Place name: Rome
+Place type: City
+Latitude: 34.25704, Longitude: -85.16467
+Part of: Floyd, GA, USA
+
+Type: place
+Gramps ID: P0987
+Place name: Kinston
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1199
+Place name: Spencer
+Place type: City
+Latitude: 43.14136, Longitude: -95.14444
+Part of: Clay, IA, USA
+
+Type: place
+Gramps ID: P1377
+Place name: La Grande
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1023
+Place name: Athens
+Place type: City
+Latitude: 33.96095, Longitude: -83.37794
+Part of: Clarke, GA, USA
+
+Type: place
+Gramps ID: P1214
+Place name: Cape Coral-Fort Myers
+Place type: City
+Part of: FL, USA
+
+Type: place
+Gramps ID: P1173
+Place name: Harriman
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1006
+Place name: San GermĂĄn
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1566
+Place name: Santa Isabel
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1050
+Place name: Grants Pass
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1569
+Place name: Cambridge
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1105
+Place name: San Juan
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1665
+Place name: Roanoke Rapids
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1614
+Place name: Kapaa
+Place type: City
+Part of: HI, USA
+
+Type: place
+Gramps ID: P1463
+Place name: Toccoa
+Place type: City
+Latitude: 34.57732, Longitude: -83.33239
+Part of: Stephens, GA, USA
+
+Type: place
+Gramps ID: P1702
+Place name: Lewiston
+Place type: City
+Part of: ME, USA
+
+Type: place
+Gramps ID: P1031
+Place name: Sturgis
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1688
+Place name: Malone
+Place type: City
+Latitude: 44.84866, Longitude: -74.29490
+Part of: Franklin, NY, USA
+
+Type: place
+Gramps ID: P1054
+Place name: Los Angeles
+Place type: City
+Latitude: 34.05223, Longitude: -118.24368
+Part of: Los Angeles, CA, USA
+
+Type: place
+Gramps ID: P0925
+Place name: Coamo
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1439
+Place name: Sterling
+Place type: City
+Latitude: 40.62554, Longitude: -103.20771
+Part of: Logan, CO, USA
+
+Type: place
+Gramps ID: P1510
+Place name: Merced
+Place type: City
+Latitude: 37.30216, Longitude: -120.48297
+Part of: Merced, CA, USA
+
+Type: place
+Gramps ID: P1511
+Place name: City of The Dalles
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1693
+Place name: Orangeburg
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1059
+Place name: Clarksdale
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1513
+Place name: Magnolia
+Place type: City
+Latitude: 33.26707, Longitude: -93.23933
+Part of: Columbia, AR, USA
+
+Type: place
+Gramps ID: P1060
+Place name: Forrest City
+Place type: City
+Latitude: 35.00815, Longitude: -90.78983
+Part of: St. Francis, AR, USA
+
+Type: place
+Gramps ID: P0988
+Place name: Fairbanks
+Place type: City
+Part of: AK, USA
+
+Type: place
+Gramps ID: P1062
+Place name: Rockford
+Place type: City
+Latitude: 42.27113, Longitude: -89.09400
+Part of: Winnebago, IL, USA
+
+Type: place
+Gramps ID: P1298
+Place name: Napa
+Place type: City
+Latitude: 38.29714, Longitude: -122.28553
+Part of: Napa, CA, USA
+
+Type: place
+Gramps ID: P1652
+Place name: Texarkana
+Place type: City
+Latitude: 33.44179, Longitude: -94.03769
+Part of: Miller, AR, USA
+
+Type: place
+Gramps ID: P1013
+Place name: Clinton
+Place type: City
+Latitude: 41.84447, Longitude: -90.18874
+Part of: Clinton, IA, USA
+
+Type: place
+Gramps ID: P0864
+Place name: Pottsville
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1300
+Place name: Roanoke
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1545
+Place name: Silver City
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1136
+Place name: Fayetteville
+Place type: City
+Latitude: 36.06258, Longitude: -94.15743
+Part of: Washington, AR, USA
+
+Type: place
+Gramps ID: P1518
+Place name: Fort Walton Beach
+Place type: City
+Latitude: 30.40576, Longitude: -86.61884
+Part of: Okaloosa, FL, USA
+
+Type: place
+Gramps ID: P1018
+Place name: Silverthorne
+Place type: City
+Latitude: 39.63214, Longitude: -106.07428
+Part of: Summit, CO, USA
+
+Type: place
+Gramps ID: P0871
+Place name: Cedar City
+Place type: City
+Part of: UT, USA
+
+Type: place
+Gramps ID: P1038
+Place name: Sterling
+Place type: City
+Latitude: 41.78864, Longitude: -89.69622
+Part of: Whiteside, IL, USA
+
+Type: place
+Gramps ID: P0897
+Place name: Astoria
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1523
+Place name: Battle Creek
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1525
+Place name: Hood River
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P0942
+Place name: Gary
+Place type: City
+Latitude: 41.59337, Longitude: -87.34643
+Part of: Lake, IN, USA
+
+Type: place
+Gramps ID: P1603
+Place name: Hagerstown
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P0878
+Place name: Hays
+Place type: City
+Latitude: 38.87918, Longitude: -99.32677
+Part of: Ellis, KS, USA
+
+Type: place
+Gramps ID: P1328
+Place name: Boston
+Place type: City
+Latitude: 42.35843, Longitude: -71.05977
+Part of: Suffolk, MA, USA
+
+Type: place
+Gramps ID: P1074
+Place name: McMinnville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1314
+Place name: Baraboo
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1138
+Place name: Ponca City
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1288
+Place name: Bloomington
+Place type: City
+Latitude: 39.16533, Longitude: -86.52639
+Part of: Monroe, IN, USA
+
+Type: place
+Gramps ID: P1319
+Place name: Tupelo
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1260
+Place name: Albert Lea
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1082
+Place name: Uvalde
+Place type: City
+Latitude: 29.20968, Longitude: -99.78617
+Part of: Uvalde, TX, USA
+
+Type: place
+Gramps ID: P1444
+Place name: Springfield
+Place type: City
+Latitude: 42.10148, Longitude: -72.58981
+Part of: Hampden, MA, USA
+
+Type: place
+Gramps ID: P0861
+Place name: Adrian
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1353
+Place name: Norwich
+Place type: City
+Latitude: 41.52426, Longitude: -72.07591
+Part of: New London, CT, USA
+
+Type: place
+Gramps ID: P1208
+Place name: Camden
+Place type: City
+Part of: NJ, USA
+
+Type: place
+Gramps ID: P0992
+Place name: Duncan
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1209
+Place name: Red Bluff
+Place type: City
+Latitude: 40.17849, Longitude: -122.23583
+Part of: Tehama, CA, USA
+
+Type: place
+Gramps ID: P0869
+Place name: Miami
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1090
+Place name: Pittsburg
+Place type: City
+Latitude: 37.41088, Longitude: -94.70496
+Part of: Crawford, KS, USA
+
+Type: place
+Gramps ID: P1335
+Place name: Sherman-Denison
+Place type: City
+Part of: TX, USA
+
+Type: place
+Gramps ID: P1631
+Place name: Raleigh-Cary
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P0959
+Place name: Arcadia
+Place type: City
+Latitude: 27.21588, Longitude: -81.85842
+Part of: DeSoto, FL, USA
+
+Type: place
+Gramps ID: P0900
+Place name: Hanford-Corcoran
+Place type: City
+Part of: CA, USA
+
+Type: place
+Gramps ID: P1118
+Place name: East Stroudsburg
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1274
+Place name: Lynchburg
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1496
+Place name: Oxford
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1099
+Place name: Sheboygan
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1638
+Place name: Johnstown
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1531
+Place name: Cortland
+Place type: City
+Latitude: 42.60118, Longitude: -76.18048
+Part of: Cortland, NY, USA
+
+Type: place
+Gramps ID: P0882
+Place name: Clearwater
+Place type: City
+Latitude: 27.96585, Longitude: -82.80010
+Part of: Pinellas, FL, USA
+
+Type: place
+Gramps ID: P0935
+Place name: Corinth
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P0963
+Place name: Warren
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1416
+Place name: Dyersburg
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1662
+Place name: Hattiesburg
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P0983
+Place name: Pensacola
+Place type: City
+Latitude: 30.42131, Longitude: -87.21691
+Part of: Escambia, FL, USA
+
+Type: place
+Gramps ID: P1682
+Place name: Hickory-Morganton-Lenoir
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1264
+Place name: Menomonie
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1567
+Place name: Defiance
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1520
+Place name: Kill Devil Hills
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1591
+Place name: Springfield
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1070
+Place name: Daphne
+Place type: City
+Latitude: 30.60353, Longitude: -87.90360
+Part of: Baldwin, AL, USA
+
+Type: place
+Gramps ID: P1332
+Place name: Ashtabula
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0989
+Place name: Pampa
+Place type: City
+Latitude: 35.53616, Longitude: -100.95987
+Part of: Gray, TX, USA
+
+Type: place
+Gramps ID: P1474
+Place name: Anderson
+Place type: City
+Latitude: 40.10532, Longitude: -85.68025
+Part of: Madison, IN, USA
+
+Type: place
+Gramps ID: P1276
+Place name: Bartlesville
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1519
+Place name: Lawrence
+Place type: City
+Latitude: 38.97167, Longitude: -95.23525
+Part of: Douglas, KS, USA
+
+Type: place
+Gramps ID: P0866
+Place name: Albertville
+Place type: City
+Latitude: 34.26759, Longitude: -86.20887
+Part of: Marshall, AL, USA
+
+Type: place
+Gramps ID: P1580
+Place name: Tahlequah
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1071
+Place name: Victoria
+Place type: City
+Latitude: 28.80527, Longitude: -97.00360
+Part of: Limestone, TX, USA
+
+Type: place
+Gramps ID: P1629
+Place name: Fresno
+Place type: City
+Latitude: 36.74773, Longitude: -119.77237
+Part of: Fresno, CA, USA
+
+Type: place
+Gramps ID: P0995
+Place name: Sylacauga
+Place type: City
+Latitude: 33.17317, Longitude: -86.25164
+Part of: Talladega, AL, USA
+
+Type: place
+Gramps ID: P0919
+Place name: Watertown-Fort Drum
+Place type: City
+Part of: NY, USA
+
+Type: place
+Gramps ID: P1135
+Place name: Kahului
+Place type: City
+Part of: HI, USA
+
+Type: place
+Gramps ID: P1337
+Place name: Wichita Falls
+Place type: City
+Latitude: 33.91371, Longitude: -98.49339
+Part of: Wichita, TX, USA
+
+Type: place
+Gramps ID: P0943
+Place name: Lancaster
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1161
+Place name: Fort Dodge
+Place type: City
+Latitude: 42.49747, Longitude: -94.16802
+Part of: Webster, IA, USA
+
+Type: place
+Gramps ID: P1658
+Place name: Brevard
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1256
+Place name: Baton Rouge
+Place type: City
+Latitude: 30.45075, Longitude: -91.15455
+Part of: East Baton Rouge, LA, USA
+
+Type: place
+Gramps ID: P1527
+Place name: Gettysburg
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1024
+Place name: Rio Grande City
+Place type: City
+Latitude: 26.37979, Longitude: -98.82030
+Part of: Starr, TX, USA
+
+Type: place
+Gramps ID: P1003
+Place name: Ogdensburg
+Place type: City
+Latitude: 44.69423, Longitude: -75.48634
+Part of: St. Lawrence, NY, USA
+
+Type: place
+Gramps ID: P1346
+Place name: Roswell
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1536
+Place name: Dunn
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1478
+Place name: Florence
+Place type: City
+Latitude: 34.79981, Longitude: -87.67725
+Part of: Lauderdale, AL, USA
+
+Type: place
+Gramps ID: P1021
+Place name: Lebanon
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1359
+Place name: Washington
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1582
+Place name: Santa Ana
+Place type: City
+Latitude: 33.74557, Longitude: -117.86783
+Part of: Orange, CA, USA
+
+Type: place
+Gramps ID: P1233
+Place name: Jesup
+Place type: City
+Latitude: 31.60744, Longitude: -81.88539
+Part of: Wayne, GA, USA
+
+Type: place
+Gramps ID: P1452
+Place name: Savannah
+Place type: City
+Latitude: 32.08354, Longitude: -81.09983
+Part of: Chatham, GA, USA
+
+Type: place
+Gramps ID: P1116
+Place name: Greenville
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1361
+Place name: Bucyrus
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0981
+Place name: Canton
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1211
+Place name: Auburn
+Place type: City
+Latitude: 32.60986, Longitude: -85.48078
+Part of: Lee, AL, USA
+
+Type: place
+Gramps ID: P0877
+Place name: Houston
+Place type: City
+Latitude: 29.76328, Longitude: -95.36327
+Part of: Harris, TX, USA
+
+Type: place
+Gramps ID: P1367
+Place name: Danville
+Place type: City
+Latitude: 37.64563, Longitude: -84.77217
+Part of: Boyle, KY, USA
+
+Type: place
+Gramps ID: P1343
+Place name: San Luis Obispo
+Place type: City
+Latitude: 35.28275, Longitude: -120.65962
+Part of: San Luis Obispo, CA, USA
+
+Type: place
+Gramps ID: P1025
+Place name: Iowa City
+Place type: City
+Latitude: 41.66113, Longitude: -91.53017
+Part of: Johnson, IA, USA
+
+Type: place
+Gramps ID: P1046
+Place name: Sweetwater
+Place type: City
+Latitude: 32.47095, Longitude: -100.40594
+Part of: Nolan, TX, USA
+
+Type: place
+Gramps ID: P1334
+Place name: Natchez
+Place type: City
+Latitude: 31.67544, Longitude: -93.04461
+Part of: Natchitoches, MS-LA, USA
+
+Type: place
+Gramps ID: P1550
+Place name: West Palm Beach
+Place type: City
+Latitude: 26.71534, Longitude: -80.05337
+Part of: Palm Beach, FL, USA
+
+Type: place
+Gramps ID: P1532
+Place name: Olympia
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1123
+Place name: Wahpeton
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1680
+Place name: Valdosta
+Place type: City
+Latitude: 30.83270, Longitude: -83.27849
+Part of: Lowndes, GA, USA
+
+Type: place
+Gramps ID: P1079
+Place name: Holland-Grand Haven
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P0911
+Place name: Barnstable Town
+Place type: City
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0975
+Place name: Columbus
+Place type: City
+Latitude: 33.75816, Longitude: -86.75333
+Part of: Jefferson, GA-AL, USA
+
+Type: place
+Gramps ID: P1445
+Place name: Burlington
+Place type: City
+Part of: VT, USA
+
+Type: place
+Gramps ID: P1330
+Place name: San Angelo
+Place type: City
+Latitude: 31.46377, Longitude: -100.43704
+Part of: Tom Green, TX, USA
+
+Type: place
+Gramps ID: P1516
+Place name: East Liverpool
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0916
+Place name: Fargo
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1458
+Place name: Loveland
+Place type: City
+Latitude: 40.39776, Longitude: -105.07498
+Part of: Larimer, CO, USA
+
+Type: place
+Gramps ID: P1227
+Place name: Hinesville
+Place type: City
+Latitude: 31.84688, Longitude: -81.59595
+Part of: Liberty, GA, USA
+
+Type: place
+Gramps ID: P1430
+Place name: Urbana
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1521
+Place name: Port St
+Place type: City
+Part of: Lucie, FL, USA
+
+Type: place
+Gramps ID: P0895
+Place name: Celina
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1092
+Place name: Lexington
+Place type: City
+Latitude: 37.98869, Longitude: -84.47772
+Part of: Fayette, KY, USA
+
+Type: place
+Gramps ID: P1336
+Place name: Mountain Home
+Place type: City
+Latitude: 35.38675, Longitude: -91.80903
+Part of: White, AR, USA
+
+Type: place
+Gramps ID: P0996
+Place name: Kerrville
+Place type: City
+Latitude: 30.04743, Longitude: -99.14032
+Part of: Kerr, TX, USA
+
+Type: place
+Gramps ID: P1632
+Place name: Jacksonville
+Place type: City
+Latitude: 31.96378, Longitude: -95.27050
+Part of: Cherokee, TX, USA
+
+Type: place
+Gramps ID: P0979
+Place name: Branson
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1284
+Place name: Marysville
+Place type: City
+Latitude: 39.14573, Longitude: -121.59135
+Part of: Yuba, CA, USA
+
+Type: place
+Gramps ID: P1413
+Place name: Philadelphia
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1679
+Place name: Tifton
+Place type: City
+Latitude: 31.45046, Longitude: -83.50850
+Part of: Tift, GA, USA
+
+Type: place
+Gramps ID: P1240
+Place name: Indianola
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1215
+Place name: West Helena
+Place type: City
+Latitude: 34.55066, Longitude: -90.64177
+Part of: Phillips, AR, USA
+
+Type: place
+Gramps ID: P1262
+Place name: Omaha
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1169
+Place name: Erie
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1555
+Place name: Waco
+Place type: City
+Latitude: 31.54933, Longitude: -97.14667
+Part of: McLennan, TX, USA
+
+Type: place
+Gramps ID: P0908
+Place name: Lumberton
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1453
+Place name: Champaign
+Place type: City
+Latitude: 40.11642, Longitude: -88.24338
+Part of: Champaign, IL, USA
+
+Type: place
+Gramps ID: P1469
+Place name: Emporia
+Place type: City
+Latitude: 38.40390, Longitude: -96.18166
+Part of: Lyon, KS, USA
+
+Type: place
+Gramps ID: P1204
+Place name: Cornelia
+Place type: City
+Latitude: 34.51149, Longitude: -83.52712
+Part of: Habersham, GA, USA
+
+Type: place
+Gramps ID: P1157
+Place name: Nogales
+Place type: City
+Latitude: 31.34038, Longitude: -110.93425
+Part of: Santa Cruz, AZ, USA
+
+Type: place
+Gramps ID: P1273
+Place name: Naples
+Place type: City
+Latitude: 26.14204, Longitude: -81.79481
+Part of: Collier, FL, USA
+
+Type: place
+Gramps ID: P1035
+Place name: Tucson
+Place type: City
+Latitude: 32.22174, Longitude: -110.92648
+Part of: Pima, AZ, USA
+
+Type: place
+Gramps ID: P1301
+Place name: Lexington Park
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1560
+Place name: Milledgeville
+Place type: City
+Latitude: 33.08014, Longitude: -83.23210
+Part of: Baldwin, GA, USA
+
+Type: place
+Gramps ID: P1278
+Place name: Salisbury
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1675
+Place name: Longview
+Place type: City
+Latitude: 32.50070, Longitude: -94.74049
+Part of: Gregg, TX, USA
+
+Type: place
+Gramps ID: P1307
+Place name: Torrington
+Place type: City
+Latitude: 41.80065, Longitude: -73.12122
+Part of: Litchfield, CT, USA
+
+Type: place
+Gramps ID: P0872
+Place name: West Plains
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1487
+Place name: Fremont
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P0901
+Place name: Charlotte
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1607
+Place name: Chico
+Place type: City
+Latitude: 39.72849, Longitude: -121.83748
+Part of: Butte, CA, USA
+
+Type: place
+Gramps ID: P1029
+Place name: Atlanta
+Place type: City
+Latitude: 33.74900, Longitude: -84.38798
+Part of: Fulton, GA, USA
+
+Type: place
+Gramps ID: P1563
+Place name: Monroe
+Place type: City
+Latitude: 32.81513, Longitude: -92.20569
+Part of: Ouachita, LA, USA
+
+Type: place
+Gramps ID: P1643
+Place name: Aberdeen
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1390
+Place name: Whitewater
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1391
+Place name: Ann Arbor
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1570
+Place name: Scottsbluff
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P0949
+Place name: Muskegon
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1127
+Place name: Camden
+Place type: City
+Latitude: 33.58456, Longitude: -92.83433
+Part of: Ouachita, AR, USA
+
+Type: place
+Gramps ID: P0852
+Place name: Deltona
+Place type: City
+Latitude: 28.90054, Longitude: -81.26367
+Part of: Volusia, FL, USA
+
+Type: place
+Gramps ID: P1326
+Place name: Athens
+Place type: City
+Latitude: 32.20487, Longitude: -95.85552
+Part of: Henderson, TX, USA
+
+Type: place
+Gramps ID: P1440
+Place name: Corbin
+Place type: City
+Latitude: 36.94870, Longitude: -84.09688
+Part of: Whitley, KY, USA
+
+Type: place
+Gramps ID: P1664
+Place name: Brownsville
+Place type: City
+Latitude: 25.90175, Longitude: -97.49748
+Part of: Cameron, TX, USA
+
+Type: place
+Gramps ID: P1689
+Place name: Stephenville
+Place type: City
+Latitude: 32.22070, Longitude: -98.20226
+Part of: Erath, TX, USA
+
+Type: place
+Gramps ID: P1317
+Place name: Salinas
+Place type: City
+Latitude: 36.67774, Longitude: -121.65550
+Part of: Monterey, CA, USA
+
+Type: place
+Gramps ID: P1297
+Place name: Cambridge
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P0912
+Place name: Yuma
+Place type: City
+Latitude: 32.72532, Longitude: -114.62440
+Part of: Yuma, AZ, USA
+
+Type: place
+Gramps ID: P1152
+Place name: Staunton-Waynesboro
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1289
+Place name: Shelbyville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1447
+Place name: Pontiac
+Place type: City
+Latitude: 40.88087, Longitude: -88.62978
+Part of: St. Clair, IL, USA
+
+Type: place
+Gramps ID: P1671
+Place name: Glens Falls
+Place type: City
+Latitude: 43.30952, Longitude: -73.64401
+Part of: Warren, NY, USA
+
+Type: place
+Gramps ID: P1225
+Place name: Alma
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1030
+Place name: Eugene
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1415
+Place name: Norwalk
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1681
+Place name: Enterprise
+Place type: City
+Latitude: 31.31517, Longitude: -85.85522
+Part of: Coffee, AL, USA
+
+Type: place
+Gramps ID: P1048
+Place name: Grants
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1261
+Place name: Jackson
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1103
+Place name: Lincoln
+Place type: City
+Latitude: 40.14838, Longitude: -89.36482
+Part of: Logan, IL, USA
+
+Type: place
+Gramps ID: P1322
+Place name: Burlington
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1004
+Place name: Manchester
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P1146
+Place name: Berlin
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P0984
+Place name: Lewistown
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1218
+Place name: Tuskegee
+Place type: City
+Latitude: 32.42403, Longitude: -85.69162
+Part of: Macon, AL, USA
+
+Type: place
+Gramps ID: P1438
+Place name: Idaho Falls
+Place type: City
+Latitude: 43.46658, Longitude: -112.03414
+Part of: Bonneville, ID, USA
+
+Type: place
+Gramps ID: P1085
+Place name: Albany
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1086
+Place name: Traverse City
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1053
+Place name: Middlesborough
+Place type: City
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0946
+Place name: Paducah
+Place type: City
+Latitude: 37.08339, Longitude: -88.60005
+Part of: McCracken, KY-IL, USA
+
+Type: place
+Gramps ID: P1263
+Place name: Douglas
+Place type: City
+Latitude: 31.50881, Longitude: -82.84987
+Part of: Coffee, GA, USA
+
+Type: place
+Gramps ID: P1245
+Place name: Cheyenne
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P0909
+Place name: Casper
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1572
+Place name: Quincy
+Place type: City
+Latitude: 39.93560, Longitude: -91.40987
+Part of: Adams, IL-MO, USA
+
+Type: place
+Gramps ID: P1049
+Place name: Provo
+Place type: City
+Part of: UT, USA
+
+Type: place
+Gramps ID: P1265
+Place name: Syracuse
+Place type: City
+Latitude: 43.04812, Longitude: -76.14742
+Part of: Onondaga, NY, USA
+
+Type: place
+Gramps ID: P1437
+Place name: Corpus Christi
+Place type: City
+Latitude: 27.80058, Longitude: -97.39638
+Part of: Nueces, TX, USA
+
+Type: place
+Gramps ID: P0859
+Place name: Kalamazoo
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1205
+Place name: Liberal
+Place type: City
+Latitude: 37.04308, Longitude: -100.92100
+Part of: Seward, KS, USA
+
+Type: place
+Gramps ID: P1448
+Place name: Lewisburg
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1655
+Place name: Sheridan
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P1355
+Place name: Peru
+Place type: City
+Latitude: 40.75365, Longitude: -86.06888
+Part of: Miami, IN, USA
+
+Type: place
+Gramps ID: P1598
+Place name: Seneca Falls
+Place type: City
+Latitude: 42.91062, Longitude: -76.79662
+Part of: Seneca, NY, USA
+
+Type: place
+Gramps ID: P0024
+Place name: PR
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P1348
+Place name: Beaumont
+Place type: City
+Latitude: 30.08605, Longitude: -94.10185
+Part of: Jefferson, TX, USA
+
+Type: place
+Gramps ID: P1503
+Place name: Lexington
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1547
+Place name: Little Rock
+Place type: City
+Latitude: 34.74648, Longitude: -92.28959
+Part of: Pulaski, AR, USA
+
+Type: place
+Gramps ID: P1022
+Place name: Fajardo
+Place type: City
+Part of: PR, USA
+
+Type: place
+Gramps ID: P1310
+Place name: Jackson
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1117
+Place name: Tampa
+Place type: City
+Latitude: 27.94752, Longitude: -82.45843
+Part of: Hillsborough, FL, USA
+
+Type: place
+Gramps ID: P1340
+Place name: Bennettsville
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1212
+Place name: Pittsburgh
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1605
+Place name: Marshfield
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1634
+Place name: Durham
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1000
+Place name: Dickinson
+Place type: City
+Part of: ND, USA
+
+Type: place
+Gramps ID: P1185
+Place name: Roseburg
+Place type: City
+Part of: OR, USA
+
+Type: place
+Gramps ID: P1697
+Place name: Fort Lauderdale
+Place type: City
+Latitude: 26.12231, Longitude: -80.14338
+Part of: Broward, FL, USA
+
+Type: place
+Gramps ID: P1164
+Place name: Spokane
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1417
+Place name: Sidney
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1609
+Place name: Pierre
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1610
+Place name: Chester
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1125
+Place name: Sunbury
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1196
+Place name: Moses Lake
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P1324
+Place name: Easton
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1375
+Place name: Willmar
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1615
+Place name: Richmond
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P0968
+Place name: Danville
+Place type: City
+Latitude: 40.12448, Longitude: -87.63002
+Part of: Vermilion, IL, USA
+
+Type: place
+Gramps ID: P1051
+Place name: Escanaba
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1393
+Place name: The Villages
+Place type: City
+Latitude: 28.93408, Longitude: -81.95994
+Part of: Sumter, FL, USA
+
+Type: place
+Gramps ID: P0969
+Place name: Columbia
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P0955
+Place name: Ruston
+Place type: City
+Latitude: 32.52321, Longitude: -92.63793
+Part of: Lincoln, LA, USA
+
+Type: place
+Gramps ID: P1620
+Place name: Wauchula
+Place type: City
+Latitude: 27.54726, Longitude: -81.81147
+Part of: Hardee, FL, USA
+
+Type: place
+Gramps ID: P0990
+Place name: Helena
+Place type: City
+Part of: MT, USA
+
+Type: place
+Gramps ID: P1011
+Place name: Blackfoot
+Place type: City
+Latitude: 43.19047, Longitude: -112.34498
+Part of: Bingham, ID, USA
+
+Type: place
+Gramps ID: P0867
+Place name: Gaffney
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1109
+Place name: Coldwater
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1479
+Place name: Louisville
+Place type: City
+Latitude: 38.25424, Longitude: -85.75941
+Part of: Jefferson, KY, USA
+
+Type: place
+Gramps ID: P1333
+Place name: Keokuk
+Place type: City
+Latitude: 40.39727, Longitude: -91.38487
+Part of: Lee, IA, USA
+
+Type: place
+Gramps ID: P0870
+Place name: Seneca
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1590
+Place name: Laramie
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P0951
+Place name: Oshkosh
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1093
+Place name: Rolla
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1282
+Place name: Enid
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1557
+Place name: Meridian
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1529
+Place name: Ontario
+Place type: City
+Part of: OR-ID, USA
+
+Type: place
+Gramps ID: P0944
+Place name: Janesville
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1121
+Place name: Fort Worth
+Place type: City
+Latitude: 32.72541, Longitude: -97.32085
+Part of: Tarrant, TX, USA
+
+Type: place
+Gramps ID: P1100
+Place name: Madera
+Place type: City
+Latitude: 36.96134, Longitude: -120.06072
+Part of: Madera, CA, USA
+
+Type: place
+Gramps ID: P1344
+Place name: London
+Place type: City
+Latitude: 37.12898, Longitude: -84.08326
+Part of: Laurel, KY, USA
+
+Type: place
+Gramps ID: P1075
+Place name: Dover
+Place type: City
+Latitude: 39.15817, Longitude: -75.52437
+Part of: Kent, DE, USA
+
+Type: place
+Gramps ID: P1683
+Place name: Mayfield
+Place type: City
+Latitude: 36.74172, Longitude: -88.63672
+Part of: Graves, KY, USA
+
+Type: place
+Gramps ID: P1174
+Place name: Livonia
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1399
+Place name: Houma
+Place type: City
+Latitude: 29.59577, Longitude: -90.71953
+Part of: Terrebonne, LA, USA
+
+Type: place
+Gramps ID: P1156
+Place name: Wilmington
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1400
+Place name: Yankton
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1387
+Place name: Sulphur Springs
+Place type: City
+Latitude: 33.13845, Longitude: -95.60107
+Part of: Rusk, TX, USA
+
+Type: place
+Gramps ID: P0939
+Place name: Yuba City
+Place type: City
+Latitude: 39.14045, Longitude: -121.61691
+Part of: Sutter, CA, USA
+
+Type: place
+Gramps ID: P1028
+Place name: Glasgow
+Place type: City
+Latitude: 36.99588, Longitude: -85.91192
+Part of: Barren, KY, USA
+
+Type: place
+Gramps ID: P0999
+Place name: Kingsville
+Place type: City
+Latitude: 27.51587, Longitude: -97.85611
+Part of: Kleberg, TX, USA
+
+Type: place
+Gramps ID: P1232
+Place name: Pocatello
+Place type: City
+Latitude: 42.87130, Longitude: -112.44553
+Part of: Bannock, ID, USA
+
+Type: place
+Gramps ID: P1149
+Place name: North Vernon
+Place type: City
+Latitude: 39.00617, Longitude: -85.62358
+Part of: Jennings, IN, USA
+
+Type: place
+Gramps ID: P1589
+Place name: Salt Lake City
+Place type: City
+Part of: UT, USA
+
+Type: place
+Gramps ID: P1571
+Place name: Edison
+Place type: City
+Part of: NJ, USA
+
+Type: place
+Gramps ID: P1269
+Place name: Asheville
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1159
+Place name: Coeur d'Alene
+Place type: City
+Latitude: 47.67768, Longitude: -116.78047
+Part of: Kootenai, ID, USA
+
+Type: place
+Gramps ID: P0853
+Place name: Spirit Lake
+Place type: City
+Latitude: 43.42218, Longitude: -95.10222
+Part of: Dickinson, IA, USA
+
+Type: place
+Gramps ID: P1401
+Place name: Austin
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P0918
+Place name: Greenville
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1691
+Place name: Picayune
+Place type: City
+Part of: MS, USA
+
+Type: place
+Gramps ID: P1195
+Place name: Gillette
+Place type: City
+Part of: WY, USA
+
+Type: place
+Gramps ID: P0883
+Place name: North Platte
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1597
+Place name: Clarksburg
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1406
+Place name: Lansing
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1473
+Place name: Macomb
+Place type: City
+Latitude: 40.45921, Longitude: -90.67180
+Part of: McDonough, IL, USA
+
+Type: place
+Gramps ID: P1213
+Place name: Minneapolis
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1316
+Place name: Pittsfield
+Place type: City
+Latitude: 42.45008, Longitude: -73.24538
+Part of: Berkshire, MA, USA
+
+Type: place
+Gramps ID: P1509
+Place name: Charleston
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P0947
+Place name: Providence
+Place type: City
+Part of: RI, USA
+
+Type: place
+Gramps ID: P0891
+Place name: Fairmont
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1347
+Place name: Americus
+Place type: City
+Latitude: 32.07239, Longitude: -84.23269
+Part of: Sumter, GA, USA
+
+Type: place
+Gramps ID: P0954
+Place name: Fort Wayne
+Place type: City
+Latitude: 41.13060, Longitude: -85.12886
+Part of: Allen, IN, USA
+
+Type: place
+Gramps ID: P0876
+Place name: Porterville
+Place type: City
+Latitude: 36.06523, Longitude: -119.01677
+Part of: Tulare, CA, USA
+
+Type: place
+Gramps ID: P1033
+Place name: Walterboro
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1541
+Place name: Green Bay
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1486
+Place name: Hilton Head Island-Beaufort
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1258
+Place name: Bedford
+Place type: City
+Latitude: 38.86116, Longitude: -86.48721
+Part of: Lawrence, IN, USA
+
+Type: place
+Gramps ID: P1094
+Place name: Laurinburg
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1659
+Place name: Marion
+Place type: City
+Latitude: 39.59171, Longitude: -85.75498
+Part of: Grant, IN, USA
+
+Type: place
+Gramps ID: P1122
+Place name: Dayton
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1005
+Place name: Greeneville
+Place type: City
+Part of: TN, USA
+
+Type: place
+Gramps ID: P1644
+Place name: Winfield
+Place type: City
+Latitude: 37.23975, Longitude: -96.99559
+Part of: Cowley, KS, USA
+
+Type: place
+Gramps ID: P1418
+Place name: Greensburg
+Place type: City
+Latitude: 39.33727, Longitude: -85.48358
+Part of: Decatur, IN, USA
+
+Type: place
+Gramps ID: P0953
+Place name: Spartanburg
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1325
+Place name: Alamogordo
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P0907
+Place name: Kansas City
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1327
+Place name: Muscatine
+Place type: City
+Latitude: 41.42447, Longitude: -91.04321
+Part of: Muscatine, IA, USA
+
+Type: place
+Gramps ID: P1259
+Place name: Rockingham County
+Place type: City
+Part of: NH, USA
+
+Type: place
+Gramps ID: P0915
+Place name: Joplin
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1186
+Place name: Ocean Pines
+Place type: City
+Part of: MD, USA
+
+Type: place
+Gramps ID: P1639
+Place name: Georgetown
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1128
+Place name: Merrill
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P1168
+Place name: Owensboro
+Place type: City
+Latitude: 37.77422, Longitude: -87.11333
+Part of: Daviess, KY, USA
+
+Type: place
+Gramps ID: P0936
+Place name: Charleston
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1179
+Place name: Farmington
+Place type: City
+Part of: MO, USA
+
+Type: place
+Gramps ID: P1530
+Place name: Greenville
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1087
+Place name: Batesville
+Place type: City
+Latitude: 35.76980, Longitude: -91.64097
+Part of: Independence, AR, USA
+
+Type: place
+Gramps ID: P1703
+Place name: Dothan
+Place type: City
+Latitude: 31.22323, Longitude: -85.39049
+Part of: Houston, AL, USA
+
+Type: place
+Gramps ID: P1331
+Place name: Harrison
+Place type: City
+Latitude: 36.22979, Longitude: -93.10768
+Part of: Boone, AR, USA
+
+Type: place
+Gramps ID: P1538
+Place name: Bennington
+Place type: City
+Part of: VT, USA
+
+Type: place
+Gramps ID: P1429
+Place name: Utica-Rome
+Place type: City
+Part of: NY, USA
+
+Type: place
+Gramps ID: P1202
+Place name: Winston-Salem
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1574
+Place name: Vernal
+Place type: City
+Part of: UT, USA
+
+Type: place
+Gramps ID: P1613
+Place name: Rochester
+Place type: City
+Part of: MN, USA
+
+Type: place
+Gramps ID: P1381
+Place name: Midland
+Place type: City
+Latitude: 31.99735, Longitude: -102.07791
+Part of: Midland, TX, USA
+
+Type: place
+Gramps ID: P1694
+Place name: Greensboro
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1267
+Place name: Buffalo
+Place type: City
+Latitude: 42.88645, Longitude: -78.87837
+Part of: Erie, NY, USA
+
+Type: place
+Gramps ID: P1172
+Place name: Springfield
+Place type: City
+Latitude: 39.80172, Longitude: -89.64371
+Part of: Sangamon, IL, USA
+
+Type: place
+Gramps ID: P1311
+Place name: Seattle
+Place type: City
+Part of: WA, USA
+
+Type: place
+Gramps ID: P0922
+Place name: Blacksburg
+Place type: City
+Part of: VA, USA
+
+Type: place
+Gramps ID: P1216
+Place name: Madison
+Place type: City
+Part of: WI, USA
+
+Type: place
+Gramps ID: P0874
+Place name: Athens
+Place type: City
+Part of: OH, USA
+
+Type: place
+Gramps ID: P1433
+Place name: Lincoln
+Place type: City
+Part of: NE, USA
+
+Type: place
+Gramps ID: P1657
+Place name: Columbia
+Place type: City
+Part of: SC, USA
+
+Type: place
+Gramps ID: P1537
+Place name: Binghamton
+Place type: City
+Latitude: 42.09869, Longitude: -75.91797
+Part of: Broome, NY, USA
+
+Type: place
+Gramps ID: P1627
+Place name: Warner Robins
+Place type: City
+Latitude: 32.62098, Longitude: -83.59990
+Part of: Houston, GA, USA
+
+Type: place
+Gramps ID: P0937
+Place name: Farmington
+Place type: City
+Part of: NM, USA
+
+Type: place
+Gramps ID: P1490
+Place name: Huron
+Place type: City
+Part of: SD, USA
+
+Type: place
+Gramps ID: P1667
+Place name: Blytheville
+Place type: City
+Latitude: 35.92730, Longitude: -89.91898
+Part of: Mississippi, AR, USA
+
+Type: place
+Gramps ID: P1508
+Place name: Southern Pines
+Place type: City
+Part of: NC, USA
+
+Type: place
+Gramps ID: P1358
+Place name: Owosso
+Place type: City
+Part of: MI, USA
+
+Type: place
+Gramps ID: P1540
+Place name: Montgomery
+Place type: City
+Latitude: 32.36681, Longitude: -86.29997
+Part of: Montgomery, AL, USA
+
+Type: place
+Gramps ID: P1489
+Place name: Oil City
+Place type: City
+Part of: PA, USA
+
+Type: place
+Gramps ID: P1443
+Place name: Guymon
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1428
+Place name: Marietta
+Place type: City
+Part of: WV, USA
+
+Type: place
+Gramps ID: P1535
+Place name: Gainesville
+Place type: City
+Latitude: 34.29788, Longitude: -83.82407
+Part of: Hall, GA, USA
+
+Type: place
+Gramps ID: P1419
+Place name: Fort Polk South
+Place type: City
+Part of: LA, USA
+
+Type: place
+Gramps ID: P1287
+Place name: Marinette
+Place type: City
+Part of: WI-MI, USA
+
+Type: place
+Gramps ID: P1376
+Place name: Wabash
+Place type: City
+Latitude: 40.79782, Longitude: -85.82054
+Part of: Wabash, IN, USA
+
+Type: place
+Gramps ID: P1058
+Place name: Oklahoma City
+Place type: City
+Part of: OK, USA
+
+Type: place
+Gramps ID: P1299
+Place name: Palestine
+Place type: City
+Latitude: 31.76212, Longitude: -95.63079
+Part of: Hopkins, TX, USA
+
+Type: place
+Gramps ID: P1596
+Place name: Key West-Marathon
+Place type: City
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0435
+Place name: ÎÏÎŹÎŒÎ±
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0436
+Place name: ÎΔÏÏÎ±Î»ÎżÎœÎŻÎșη
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0437
+Place name: ÎÏÎŹÎœÎœÎčΜα
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0438
+Place name: ÎŁÎčÎŹÏÎčÏÏα
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0439
+Place name: ÎÏγοÏ
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0440
+Place name: ÎΔÏολÏγγÎč
+Place type: City
+Part of: Greece
+
+Type: place
+Gramps ID: P0106
+Place name: Volusia
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0213
+Place name: Dickinson
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0394
+Place name: Montrose
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0145
+Place name: Tangipahoa
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0400
+Place name: Inyo
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0093
+Place name: MD
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0348
+Place name: Mobile
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0047
+Place name: MI
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0194
+Place name: Llano
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0045
+Place name: Smith
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0015
+Place name: Warren
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0002
+Place name: PA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0414
+Place name: New Haven
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0133
+Place name: Marshall
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0032
+Place name: SC
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0023
+Place name: OK
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0067
+Place name: UT
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0033
+Place name: MO
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0430
+Place name: Graham
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0000
+Place name: OH
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0164
+Place name: Montgomery
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0035
+Place name: Tulare
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0312
+Place name: Harris
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0328
+Place name: Ellis
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0259
+Place name: La Plata
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0300
+Place name: Pinellas
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0097
+Place name: NE
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0055
+Place name: Scott
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0022
+Place name: WA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0115
+Place name: Gila
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0060
+Place name: ND
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0061
+Place name: TN-GA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0050
+Place name: MN
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0401
+Place name: San Diego
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0222
+Place name: Hartford
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0005
+Place name: GA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0021
+Place name: OR
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0311
+Place name: Laurens
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0018
+Place name: New Castle
+Place type: County
+Part of: DE-MD-NJ, USA
+
+Type: place
+Gramps ID: P0007
+Place name: CA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0044
+Place name: NC
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0096
+Place name: San Mateo
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0273
+Place name: Bell
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0330
+Place name: Madison
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0333
+Place name: Stanislaus
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0332
+Place name: Mason
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0058
+Place name: WY
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0202
+Place name: Dutchess
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0075
+Place name: MA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0282
+Place name: Yuma
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0026
+Place name: ME
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0057
+Place name: NY
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0009
+Place name: WI
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0210
+Place name: Cayuga
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0080
+Place name: VA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0384
+Place name: St. Mary
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0219
+Place name: Pueblo
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0170
+Place name: Larimer
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0234
+Place name: Marion
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0406
+Place name: Etowah
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0178
+Place name: HI
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0416
+Place name: Flagler
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0386
+Place name: Coconino
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0041
+Place name: MS
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0042
+Place name: NM
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0092
+Place name: Morgan
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0370
+Place name: Sutter
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0304
+Place name: Lake
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0337
+Place name: Wilbarger
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0141
+Place name: McCracken
+Place type: County
+Part of: KY-IL, USA
+
+Type: place
+Gramps ID: P0223
+Place name: RI
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0429
+Place name: Allen
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0265
+Place name: Lincoln
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0957
+Place name: USA
+Place type: Country
+
+Type: place
+Gramps ID: P0082
+Place name: Boone
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0392
+Place name: DeSoto
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0166
+Place name: Rapides
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0135
+Place name: Jim Wells
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0405
+Place name: Calhoun
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0029
+Place name: TN
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0150
+Place name: Vermilion
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0043
+Place name: Dougherty
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0070
+Place name: ID
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0272
+Place name: Jefferson
+Place type: County
+Part of: GA-AL, USA
+
+Type: place
+Gramps ID: P0291
+Place name: Des Moines
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0408
+Place name: La Salle
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0365
+Place name: Edwards
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0064
+Place name: Cullman
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0226
+Place name: Escambia
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0278
+Place name: Finney
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0117
+Place name: AK
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0056
+Place name: Gray
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0066
+Place name: MT
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0315
+Place name: Franklin
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0200
+Place name: NJ
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0349
+Place name: Talladega
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0399
+Place name: Kerr
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0317
+Place name: Latah
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0180
+Place name: Kleberg
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0434
+Place name: St. Lawrence
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0192
+Place name: NH
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0119
+Place name: Maverick
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0071
+Place name: Bingham
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0016
+Place name: Indian River
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0124
+Place name: Clinton
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0028
+Place name: NV
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0167
+Place name: Caddo
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0376
+Place name: Polk
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0211
+Place name: Summit
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0417
+Place name: Nez Perce
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0385
+Place name: Clarke
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0212
+Place name: Starr
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0132
+Place name: Johnson
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0415
+Place name: Chemung
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0301
+Place name: Matagorda
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0147
+Place name: Barren
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0209
+Place name: Fulton
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0261
+Place name: Ben Hill
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0341
+Place name: Pima
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0419
+Place name: Middlesex
+Place type: County
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0228
+Place name: Whiteside
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0342
+Place name: San Francisco
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0120
+Place name: Columbia
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0193
+Place name: Adams
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0130
+Place name: Nolan
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0395
+Place name: Muhlenberg
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0014
+Place name: KY
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0331
+Place name: Los Angeles
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0040
+Place name: Kosciusko
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0251
+Place name: Cattaraugus
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0306
+Place name: Clark
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0410
+Place name: St. Francis
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0244
+Place name: Jasper
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0187
+Place name: Winnebago
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0364
+Place name: Walker
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0220
+Place name: White
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0264
+Place name: Hidalgo
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0053
+Place name: Reeves
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0168
+Place name: Baldwin
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0362
+Place name: Limestone
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0199
+Place name: Fairfield
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0188
+Place name: Montgomery
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0293
+Place name: Kent
+Place type: County
+Part of: DE, USA
+
+Type: place
+Gramps ID: P0308
+Place name: Ventura
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0205
+Place name: Imperial
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0423
+Place name: Uvalde
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0112
+Place name: Brazos
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0154
+Place name: Independence
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0289
+Place name: Crawford
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0340
+Place name: Hempstead
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0283
+Place name: Fayette
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0088
+Place name: Weld
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0153
+Place name: Chattooga
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0159
+Place name: Alameda
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0366
+Place name: Madera
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0081
+Place name: Columbia
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0393
+Place name: Logan
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0123
+Place name: Andrews
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0274
+Place name: Macon
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0425
+Place name: Otsego
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0383
+Place name: Elkhart
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0046
+Place name: Hillsborough
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0351
+Place name: Tarrant
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0177
+Place name: Madison
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0262
+Place name: Ouachita
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0353
+Place name: Orange
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0433
+Place name: Washington
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0190
+Place name: Palo Pinto
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0217
+Place name: Washington
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0236
+Place name: Bee
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0269
+Place name: Windham
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0347
+Place name: Fulton
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0068
+Place name: Genesee
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0001
+Place name: WV
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0136
+Place name: Reno
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0373
+Place name: Cochise
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0397
+Place name: Jennings
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0374
+Place name: Alachua
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0110
+Place name: Marys, St, Marys, PA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0253
+Place name: Santa Cruz
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0260
+Place name: Kootenai
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0051
+Place name: Webster
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0186
+Place name: Henry
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0189
+Place name: Fayette
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0238
+Place name: Daviess
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0354
+Place name: WV-VA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0216
+Place name: Sangamon
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0160
+Place name: Cook
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0292
+Place name: Crisp
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0288
+Place name: El Paso
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0413
+Place name: Santa Cruz
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0396
+Place name: Houston
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0280
+Place name: Leon
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0030
+Place name: Bexar
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0183
+Place name: George, UT
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0420
+Place name: Howard
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0377
+Place name: Angelina
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0403
+Place name: Clay
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0116
+Place name: Solano
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0078
+Place name: IL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0091
+Place name: Habersham
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0148
+Place name: Seward
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0162
+Place name: Tehama
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0100
+Place name: Lee
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0003
+Place name: FL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0138
+Place name: Phillips
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0161
+Place name: Macon
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0174
+Place name: Craighead
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0322
+Place name: Madison
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0139
+Place name: Liberty
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0004
+Place name: Miami-Dade
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0195
+Place name: Christian
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0372
+Place name: Bannock
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0231
+Place name: Wayne
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0320
+Place name: McPherson
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0284
+Place name: Wayne
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0077
+Place name: Steuben
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0196
+Place name: Ulster
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0375
+Place name: Dubuque
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0387
+Place name: Mendocino
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0095
+Place name: Cassia
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0428
+Place name: Shasta
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0025
+Place name: Mahaska
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0059
+Place name: SD
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0310
+Place name: St. Joseph
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0203
+Place name: Eagle
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0314
+Place name: East Baton Rouge
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0355
+Place name: Clinton
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0214
+Place name: Lawrence
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0343
+Place name: Coffee
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0182
+Place name: Onondaga
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0398
+Place name: Erie
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0038
+Place name: WV-OH
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0297
+Place name: Lafayette
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0321
+Place name: Collier
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0295
+Place name: Brevard
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0173
+Place name: Daviess
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0165
+Place name: Maricopa
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0390
+Place name: Yuba
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0152
+Place name: WI-MI
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0356
+Place name: Monroe
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0407
+Place name: Garland
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0285
+Place name: Wharton
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0201
+Place name: Napa
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0281
+Place name: Hopkins
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0128
+Place name: Upson
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0361
+Place name: Litchfield
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0378
+Place name: Citrus
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0258
+Place name: Elmore
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0076
+Place name: Berkshire
+Place type: County
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0242
+Place name: Monterey
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0294
+Place name: Montgomery
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0279
+Place name: Henderson
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0307
+Place name: Muscatine
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0270
+Place name: Suffolk
+Place type: County
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0323
+Place name: Tom Green
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0250
+Place name: Boone
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0013
+Place name: Lee
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0020
+Place name: Natchitoches
+Place type: County
+Part of: MS-LA, USA
+
+Type: place
+Gramps ID: P0010
+Place name: TX
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0235
+Place name: Wichita
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0252
+Place name: Clinton
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0381
+Place name: Bibb
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0087
+Place name: CO
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0008
+Place name: San Luis Obispo
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0105
+Place name: Laurel
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0171
+Place name: Howard
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0065
+Place name: Sumter
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0256
+Place name: Jefferson
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0104
+Place name: Potter
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0299
+Place name: Morgan
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0368
+Place name: New London
+Place type: County
+Part of: CT, USA
+
+Type: place
+Gramps ID: P0074
+Place name: Miami
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0263
+Place name: Vigo
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0334
+Place name: Marion
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0296
+Place name: Dawson
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0382
+Place name: Boyle
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0063
+Place name: Calcasieu
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0207
+Place name: Wabash
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0206
+Place name: Deaf Smith
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0204
+Place name: Charlotte
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0404
+Place name: Midland
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0257
+Place name: Orleans
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0125
+Place name: Wapello
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0287
+Place name: Rusk
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0122
+Place name: Sumter
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0155
+Place name: Ware
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0277
+Place name: Scott
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0391
+Place name: Terrebonne
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0221
+Place name: Bulloch
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0431
+Place name: Tuscaloosa
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0319
+Place name: Harrison
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0197
+Place name: Lee
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0229
+Place name: Worcester
+Place type: County
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0239
+Place name: Humboldt
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0237
+Place name: Decatur
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0062
+Place name: LA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0111
+Place name: Madison
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0163
+Place name: UT-ID
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0118
+Place name: Vanderburgh
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0157
+Place name: Webb
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0134
+Place name: Fulton
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0245
+Place name: Pulaski
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0344
+Place name: Hood
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0335
+Place name: Nueces
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0290
+Place name: Bonneville
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0143
+Place name: Logan
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0325
+Place name: Whitley
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0412
+Place name: Atchison
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0083
+Place name: Hampden
+Place type: County
+Part of: MA, USA
+
+Type: place
+Gramps ID: P0109
+Place name: VT
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0232
+Place name: Albany
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0303
+Place name: St. Clair
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0103
+Place name: Riley
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0094
+Place name: Pike
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0129
+Place name: Chatham
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0380
+Place name: Champaign
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0176
+Place name: Sebastian
+Place type: County
+Part of: AR-OK, USA
+
+Type: place
+Gramps ID: P0156
+Place name: Story
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0069
+Place name: Stephens
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0329
+Place name: Acadia
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0246
+Place name: Mohave
+Place type: County
+Part of: AZ, USA
+
+Type: place
+Gramps ID: P0131
+Place name: Lyon
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0357
+Place name: McDonough
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0144
+Place name: Madison
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0142
+Place name: Lauderdale
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0099
+Place name: Jefferson
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0276
+Place name: Decatur
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0085
+Place name: Val Verde
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0402
+Place name: Dubois
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0268
+Place name: Delaware
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0266
+Place name: Greene
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0359
+Place name: District of Columbia
+Place type: County
+Part of: DC, USA
+
+Type: place
+Gramps ID: P0360
+Place name: Noble
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0230
+Place name: Tippecanoe
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0027
+Place name: Marshall
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0318
+Place name: Moore
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0422
+Place name: Merced
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0073
+Place name: Colquitt
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0037
+Place name: Columbia
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0086
+Place name: Jackson
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0158
+Place name: Hockley
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0305
+Place name: Taylor
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0324
+Place name: Okaloosa
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0151
+Place name: Douglas
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0298
+Place name: Lucie, FL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0247
+Place name: Polk
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0411
+Place name: Tuolumne
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0084
+Place name: OR-ID
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0241
+Place name: Cortland
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0090
+Place name: Sussex
+Place type: County
+Part of: DE, USA
+
+Type: place
+Gramps ID: P0169
+Place name: Hall
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0326
+Place name: Broome
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0352
+Place name: Montgomery
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0302
+Place name: Peach
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0240
+Place name: Pulaski
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0179
+Place name: Palm Beach
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0225
+Place name: Bartholomew
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0184
+Place name: McLennan
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0286
+Place name: Boulder
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0418
+Place name: Baldwin
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0012
+Place name: IA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0254
+Place name: Ouachita
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0127
+Place name: Adams
+Place type: County
+Part of: IL-MO, USA
+
+Type: place
+Gramps ID: P0421
+Place name: Dallas
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0426
+Place name: Jefferson
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0309
+Place name: Orange
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0149
+Place name: Steuben
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0191
+Place name: Shawnee
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0233
+Place name: Marshall
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0101
+Place name: Putnam
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0215
+Place name: Seneca
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0185
+Place name: Washington
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0336
+Place name: Floyd
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0379
+Place name: Peoria
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0350
+Place name: Butte
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0072
+Place name: Louis, St, Louis, MO-IL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0424
+Place name: Ford
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0346
+Place name: Webster
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0208
+Place name: Hardee
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0316
+Place name: LaPorte
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0031
+Place name: San Joaquin
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0121
+Place name: Mesa
+Place type: County
+Part of: CO, USA
+
+Type: place
+Gramps ID: P0218
+Place name: Houston
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0389
+Place name: Fresno
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0113
+Place name: Cherokee
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0327
+Place name: Polk
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0146
+Place name: Buena Vista
+Place type: County
+Part of: IA, USA
+
+Type: place
+Gramps ID: P0249
+Place name: Duval
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0137
+Place name: Cowley
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0108
+Place name: Woodbury
+Place type: County
+Part of: IA-NE-SD, USA
+
+Type: place
+Gramps ID: P0011
+Place name: Navarro
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0224
+Place name: Taylor
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0098
+Place name: Pope
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0255
+Place name: Effingham
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0371
+Place name: Miller
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0367
+Place name: Dallas
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0172
+Place name: Grant
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0339
+Place name: Cameron
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0427
+Place name: Lake
+Place type: County
+Part of: CA, USA
+
+Type: place
+Gramps ID: P0338
+Place name: Mississippi
+Place type: County
+Part of: AR, USA
+
+Type: place
+Gramps ID: P0388
+Place name: Jefferson Davis
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0243
+Place name: Saline
+Place type: County
+Part of: KS, USA
+
+Type: place
+Gramps ID: P0227
+Place name: Warren
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0181
+Place name: Madison
+Place type: Parish
+Part of: LA, USA
+
+Type: place
+Gramps ID: P0034
+Place name: Gregg
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0275
+Place name: Jefferson
+Place type: County
+Part of: IN, USA
+
+Type: place
+Gramps ID: P0409
+Place name: Twin Falls
+Place type: County
+Part of: ID, USA
+
+Type: place
+Gramps ID: P0006
+Place name: Tift
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0313
+Place name: Lowndes
+Place type: County
+Part of: GA, USA
+
+Type: place
+Gramps ID: P0049
+Place name: Coffee
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0054
+Place name: Graves
+Place type: County
+Part of: KY, USA
+
+Type: place
+Gramps ID: P0267
+Place name: Chambers
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0369
+Place name: Franklin
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0345
+Place name: Erath
+Place type: County
+Part of: TX, USA
+
+Type: place
+Gramps ID: P0079
+Place name: Jackson
+Place type: County
+Part of: IL, USA
+
+Type: place
+Gramps ID: P0432
+Place name: Montgomery
+Place type: County
+Part of: NY, USA
+
+Type: place
+Gramps ID: P0052
+Place name: Broward
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0248
+Place name: Bay
+Place type: County
+Part of: FL, USA
+
+Type: place
+Gramps ID: P0363
+Place name: Houston
+Place type: County
+Part of: AL, USA
+
+Type: place
+Gramps ID: P0017
+Place name: DE-MD-NJ
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0019
+Place name: MS-LA
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0036
+Place name: AR
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0039
+Place name: IN
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0048
+Place name: AL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0089
+Place name: DE
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0102
+Place name: KS
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0107
+Place name: IA-NE-SD
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0114
+Place name: AZ
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0126
+Place name: IL-MO
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0140
+Place name: KY-IL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0175
+Place name: AR-OK
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0198
+Place name: CT
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0271
+Place name: GA-AL
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0358
+Place name: DC
+Place type: State
+Part of: USA
+
+Type: place
+Gramps ID: P0441
+Place name: Greece
+Place type: Country
+
+Type: citation
+Gramps ID: C2845
+Page/Volume: page 18
+
+Type: citation
+Gramps ID: C0000
+Date: 1855-06-25
+
+Type: citation
+Gramps ID: C2844
+Page/Volume: page 17
+
+Type: citation
+Gramps ID: C2847
+Page/Volume: page 20
+
+Type: citation
+Gramps ID: C2846
+Page/Volume: page 19
+
+Type: citation
+Gramps ID: C0001
+
+Type: citation
+Gramps ID: C0002
+
+Type: citation
+Gramps ID: C0003
+
+Type: citation
+Gramps ID: C0004
+
+Type: citation
+Gramps ID: C0005
+
+Type: citation
+Gramps ID: C0006
+
+Type: citation
+Gramps ID: C0007
+
+Type: citation
+Gramps ID: C0008
+
+Type: citation
+Gramps ID: C0009
+
+Type: citation
+Gramps ID: C0010
+
+Type: citation
+Gramps ID: C0011
+
+Type: citation
+Gramps ID: C0012
+
+Type: citation
+Gramps ID: C0013
+
+Type: citation
+Gramps ID: C0014
+
+Type: citation
+Gramps ID: C0015
+
+Type: citation
+Gramps ID: C0016
+
+Type: citation
+Gramps ID: C0017
+
+Type: citation
+Gramps ID: C0018
+
+Type: citation
+Gramps ID: C0019
+
+Type: citation
+Gramps ID: C0020
+
+Type: citation
+Gramps ID: C0021
+
+Type: citation
+Gramps ID: C0022
+
+Type: citation
+Gramps ID: C0023
+
+Type: citation
+Gramps ID: C0024
+
+Type: citation
+Gramps ID: C0025
+
+Type: citation
+Gramps ID: C0026
+
+Type: citation
+Gramps ID: C0027
+
+Type: citation
+Gramps ID: C0028
+
+Type: citation
+Gramps ID: C0029
+
+Type: citation
+Gramps ID: C0030
+
+Type: citation
+Gramps ID: C0031
+
+Type: citation
+Gramps ID: C0032
+
+Type: citation
+Gramps ID: C0033
+
+Type: citation
+Gramps ID: C0034
+
+Type: citation
+Gramps ID: C0035
+
+Type: citation
+Gramps ID: C0036
+
+Type: citation
+Gramps ID: C0037
+
+Type: citation
+Gramps ID: C0038
+
+Type: citation
+Gramps ID: C0039
+
+Type: citation
+Gramps ID: C0040
+
+Type: citation
+Gramps ID: C0041
+
+Type: citation
+Gramps ID: C0042
+
+Type: citation
+Gramps ID: C0043
+
+Type: citation
+Gramps ID: C0044
+
+Type: citation
+Gramps ID: C0045
+
+Type: citation
+Gramps ID: C0046
+
+Type: citation
+Gramps ID: C0047
+
+Type: citation
+Gramps ID: C0048
+
+Type: citation
+Gramps ID: C0049
+
+Type: citation
+Gramps ID: C0050
+
+Type: citation
+Gramps ID: C0051
+
+Type: citation
+Gramps ID: C0052
+
+Type: citation
+Gramps ID: C0053
+
+Type: citation
+Gramps ID: C0054
+
+Type: citation
+Gramps ID: C0055
+
+Type: citation
+Gramps ID: C0056
+
+Type: citation
+Gramps ID: C0057
+
+Type: citation
+Gramps ID: C0058
+
+Type: citation
+Gramps ID: C0059
+
+Type: citation
+Gramps ID: C0060
+
+Type: citation
+Gramps ID: C0061
+
+Type: citation
+Gramps ID: C0062
+
+Type: citation
+Gramps ID: C0063
+
+Type: citation
+Gramps ID: C0064
+
+Type: citation
+Gramps ID: C0065
+
+Type: citation
+Gramps ID: C0066
+
+Type: citation
+Gramps ID: C0067
+
+Type: citation
+Gramps ID: C0068
+
+Type: citation
+Gramps ID: C0069
+
+Type: citation
+Gramps ID: C0070
+
+Type: citation
+Gramps ID: C0071
+
+Type: citation
+Gramps ID: C0072
+
+Type: citation
+Gramps ID: C0073
+
+Type: citation
+Gramps ID: C0074
+
+Type: citation
+Gramps ID: C0075
+
+Type: citation
+Gramps ID: C0076
+
+Type: citation
+Gramps ID: C0077
+
+Type: citation
+Gramps ID: C0078
+
+Type: citation
+Gramps ID: C0079
+
+Type: citation
+Gramps ID: C0080
+
+Type: citation
+Gramps ID: C0081
+
+Type: citation
+Gramps ID: C0082
+
+Type: citation
+Gramps ID: C0083
+
+Type: citation
+Gramps ID: C0084
+
+Type: citation
+Gramps ID: C0085
+
+Type: citation
+Gramps ID: C0086
+
+Type: citation
+Gramps ID: C0087
+
+Type: citation
+Gramps ID: C0088
+
+Type: citation
+Gramps ID: C0089
+
+Type: citation
+Gramps ID: C0090
+
+Type: citation
+Gramps ID: C0091
+
+Type: citation
+Gramps ID: C0092
+
+Type: citation
+Gramps ID: C0093
+
+Type: citation
+Gramps ID: C0094
+
+Type: citation
+Gramps ID: C0095
+
+Type: citation
+Gramps ID: C0096
+
+Type: citation
+Gramps ID: C0097
+
+Type: citation
+Gramps ID: C0098
+
+Type: citation
+Gramps ID: C0099
+
+Type: citation
+Gramps ID: C0100
+
+Type: citation
+Gramps ID: C0101
+
+Type: citation
+Gramps ID: C0102
+
+Type: citation
+Gramps ID: C0103
+
+Type: citation
+Gramps ID: C0104
+
+Type: citation
+Gramps ID: C0105
+
+Type: citation
+Gramps ID: C0106
+
+Type: citation
+Gramps ID: C0107
+
+Type: citation
+Gramps ID: C0108
+
+Type: citation
+Gramps ID: C0109
+
+Type: citation
+Gramps ID: C0110
+
+Type: citation
+Gramps ID: C0111
+
+Type: citation
+Gramps ID: C0112
+
+Type: citation
+Gramps ID: C0113
+
+Type: citation
+Gramps ID: C0114
+
+Type: citation
+Gramps ID: C0115
+
+Type: citation
+Gramps ID: C0116
+
+Type: citation
+Gramps ID: C0117
+
+Type: citation
+Gramps ID: C0118
+
+Type: citation
+Gramps ID: C0119
+
+Type: citation
+Gramps ID: C0120
+
+Type: citation
+Gramps ID: C0121
+
+Type: citation
+Gramps ID: C0122
+
+Type: citation
+Gramps ID: C0123
+
+Type: citation
+Gramps ID: C0124
+
+Type: citation
+Gramps ID: C0125
+
+Type: citation
+Gramps ID: C0126
+
+Type: citation
+Gramps ID: C0127
+
+Type: citation
+Gramps ID: C0128
+
+Type: citation
+Gramps ID: C0129
+
+Type: citation
+Gramps ID: C0130
+
+Type: citation
+Gramps ID: C0131
+
+Type: citation
+Gramps ID: C0132
+
+Type: citation
+Gramps ID: C0133
+
+Type: citation
+Gramps ID: C0134
+
+Type: citation
+Gramps ID: C0135
+
+Type: citation
+Gramps ID: C0136
+
+Type: citation
+Gramps ID: C0137
+
+Type: citation
+Gramps ID: C0138
+
+Type: citation
+Gramps ID: C0139
+
+Type: citation
+Gramps ID: C0140
+
+Type: citation
+Gramps ID: C0141
+
+Type: citation
+Gramps ID: C0142
+
+Type: citation
+Gramps ID: C0143
+
+Type: citation
+Gramps ID: C0144
+
+Type: citation
+Gramps ID: C0145
+
+Type: citation
+Gramps ID: C0146
+
+Type: citation
+Gramps ID: C0147
+
+Type: citation
+Gramps ID: C0148
+
+Type: citation
+Gramps ID: C0149
+
+Type: citation
+Gramps ID: C0150
+
+Type: citation
+Gramps ID: C0151
+
+Type: citation
+Gramps ID: C0152
+
+Type: citation
+Gramps ID: C0153
+
+Type: citation
+Gramps ID: C0154
+
+Type: citation
+Gramps ID: C0155
+
+Type: citation
+Gramps ID: C0156
+
+Type: citation
+Gramps ID: C0157
+
+Type: citation
+Gramps ID: C0158
+
+Type: citation
+Gramps ID: C0159
+
+Type: citation
+Gramps ID: C0160
+
+Type: citation
+Gramps ID: C0161
+
+Type: citation
+Gramps ID: C0162
+
+Type: citation
+Gramps ID: C0163
+
+Type: citation
+Gramps ID: C0164
+
+Type: citation
+Gramps ID: C0165
+
+Type: citation
+Gramps ID: C0166
+
+Type: citation
+Gramps ID: C0167
+
+Type: citation
+Gramps ID: C0168
+
+Type: citation
+Gramps ID: C0169
+
+Type: citation
+Gramps ID: C0170
+
+Type: citation
+Gramps ID: C0171
+
+Type: citation
+Gramps ID: C0172
+
+Type: citation
+Gramps ID: C0173
+
+Type: citation
+Gramps ID: C0174
+
+Type: citation
+Gramps ID: C0175
+
+Type: citation
+Gramps ID: C0176
+
+Type: citation
+Gramps ID: C0177
+
+Type: citation
+Gramps ID: C0178
+
+Type: citation
+Gramps ID: C0179
+
+Type: citation
+Gramps ID: C0180
+
+Type: citation
+Gramps ID: C0181
+
+Type: citation
+Gramps ID: C2843
+Page/Volume: page 16
+
+Type: citation
+Gramps ID: C0182
+
+Type: citation
+Gramps ID: C0183
+
+Type: citation
+Gramps ID: C0184
+
+Type: citation
+Gramps ID: C0185
+
+Type: citation
+Gramps ID: C0186
+
+Type: citation
+Gramps ID: C0187
+
+Type: citation
+Gramps ID: C0188
+
+Type: citation
+Gramps ID: C0189
+
+Type: citation
+Gramps ID: C0190
+
+Type: citation
+Gramps ID: C0191
+
+Type: citation
+Gramps ID: C0192
+
+Type: citation
+Gramps ID: C0193
+
+Type: citation
+Gramps ID: C0194
+
+Type: citation
+Gramps ID: C0195
+
+Type: citation
+Gramps ID: C0196
+
+Type: citation
+Gramps ID: C0197
+
+Type: citation
+Gramps ID: C0198
+
+Type: citation
+Gramps ID: C0199
+
+Type: citation
+Gramps ID: C0200
+
+Type: citation
+Gramps ID: C0201
+
+Type: citation
+Gramps ID: C0202
+
+Type: citation
+Gramps ID: C0203
+
+Type: citation
+Gramps ID: C0204
+
+Type: citation
+Gramps ID: C0205
+
+Type: citation
+Gramps ID: C0206
+
+Type: citation
+Gramps ID: C0207
+
+Type: citation
+Gramps ID: C0208
+
+Type: citation
+Gramps ID: C0209
+
+Type: citation
+Gramps ID: C0210
+
+Type: citation
+Gramps ID: C0211
+
+Type: citation
+Gramps ID: C0212
+
+Type: citation
+Gramps ID: C0213
+
+Type: citation
+Gramps ID: C0214
+
+Type: citation
+Gramps ID: C0215
+
+Type: citation
+Gramps ID: C0216
+
+Type: citation
+Gramps ID: C0217
+
+Type: citation
+Gramps ID: C0218
+
+Type: citation
+Gramps ID: C0219
+
+Type: citation
+Gramps ID: C0220
+
+Type: citation
+Gramps ID: C0221
+
+Type: citation
+Gramps ID: C0222
+
+Type: citation
+Gramps ID: C0223
+
+Type: citation
+Gramps ID: C0224
+
+Type: citation
+Gramps ID: C0225
+
+Type: citation
+Gramps ID: C0226
+
+Type: citation
+Gramps ID: C0227
+
+Type: citation
+Gramps ID: C0228
+
+Type: citation
+Gramps ID: C0229
+
+Type: citation
+Gramps ID: C0230
+
+Type: citation
+Gramps ID: C0231
+
+Type: citation
+Gramps ID: C0232
+
+Type: citation
+Gramps ID: C0233
+
+Type: citation
+Gramps ID: C0234
+
+Type: citation
+Gramps ID: C0235
+
+Type: citation
+Gramps ID: C0236
+
+Type: citation
+Gramps ID: C0237
+
+Type: citation
+Gramps ID: C0238
+
+Type: citation
+Gramps ID: C0239
+
+Type: citation
+Gramps ID: C0240
+
+Type: citation
+Gramps ID: C0241
+
+Type: citation
+Gramps ID: C0242
+
+Type: citation
+Gramps ID: C0243
+
+Type: citation
+Gramps ID: C0244
+
+Type: citation
+Gramps ID: C0245
+
+Type: citation
+Gramps ID: C0246
+
+Type: citation
+Gramps ID: C0247
+
+Type: citation
+Gramps ID: C0248
+
+Type: citation
+Gramps ID: C0249
+
+Type: citation
+Gramps ID: C0250
+
+Type: citation
+Gramps ID: C0251
+
+Type: citation
+Gramps ID: C0252
+
+Type: citation
+Gramps ID: C0253
+
+Type: citation
+Gramps ID: C0254
+
+Type: citation
+Gramps ID: C0255
+
+Type: citation
+Gramps ID: C0256
+
+Type: citation
+Gramps ID: C0257
+
+Type: citation
+Gramps ID: C0258
+
+Type: citation
+Gramps ID: C0259
+
+Type: citation
+Gramps ID: C0260
+
+Type: citation
+Gramps ID: C0261
+
+Type: citation
+Gramps ID: C0262
+
+Type: citation
+Gramps ID: C0263
+
+Type: citation
+Gramps ID: C0264
+
+Type: citation
+Gramps ID: C0265
+
+Type: citation
+Gramps ID: C0266
+
+Type: citation
+Gramps ID: C0267
+
+Type: citation
+Gramps ID: C0268
+
+Type: citation
+Gramps ID: C0269
+
+Type: citation
+Gramps ID: C0270
+
+Type: citation
+Gramps ID: C0271
+
+Type: citation
+Gramps ID: C0272
+
+Type: citation
+Gramps ID: C0273
+
+Type: citation
+Gramps ID: C0274
+
+Type: citation
+Gramps ID: C0275
+
+Type: citation
+Gramps ID: C0276
+
+Type: citation
+Gramps ID: C0277
+
+Type: citation
+Gramps ID: C0278
+
+Type: citation
+Gramps ID: C0279
+
+Type: citation
+Gramps ID: C0280
+
+Type: citation
+Gramps ID: C0281
+
+Type: citation
+Gramps ID: C0282
+
+Type: citation
+Gramps ID: C0283
+
+Type: citation
+Gramps ID: C0284
+
+Type: citation
+Gramps ID: C0285
+
+Type: citation
+Gramps ID: C0286
+
+Type: citation
+Gramps ID: C0287
+
+Type: citation
+Gramps ID: C0288
+
+Type: citation
+Gramps ID: C0289
+
+Type: citation
+Gramps ID: C0290
+
+Type: citation
+Gramps ID: C0291
+
+Type: citation
+Gramps ID: C0292
+
+Type: citation
+Gramps ID: C0293
+
+Type: citation
+Gramps ID: C0294
+
+Type: citation
+Gramps ID: C0295
+
+Type: citation
+Gramps ID: C0296
+
+Type: citation
+Gramps ID: C0297
+
+Type: citation
+Gramps ID: C0298
+
+Type: citation
+Gramps ID: C0299
+
+Type: citation
+Gramps ID: C0300
+
+Type: citation
+Gramps ID: C0301
+
+Type: citation
+Gramps ID: C0302
+
+Type: citation
+Gramps ID: C0303
+
+Type: citation
+Gramps ID: C0304
+
+Type: citation
+Gramps ID: C0305
+
+Type: citation
+Gramps ID: C0306
+
+Type: citation
+Gramps ID: C0307
+
+Type: citation
+Gramps ID: C0308
+
+Type: citation
+Gramps ID: C0309
+
+Type: citation
+Gramps ID: C0310
+
+Type: citation
+Gramps ID: C0311
+
+Type: citation
+Gramps ID: C0312
+
+Type: citation
+Gramps ID: C0313
+
+Type: citation
+Gramps ID: C0314
+
+Type: citation
+Gramps ID: C0315
+
+Type: citation
+Gramps ID: C0316
+
+Type: citation
+Gramps ID: C0317
+
+Type: citation
+Gramps ID: C0318
+
+Type: citation
+Gramps ID: C0319
+
+Type: citation
+Gramps ID: C0320
+
+Type: citation
+Gramps ID: C0321
+
+Type: citation
+Gramps ID: C0322
+
+Type: citation
+Gramps ID: C0323
+
+Type: citation
+Gramps ID: C0324
+
+Type: citation
+Gramps ID: C0325
+
+Type: citation
+Gramps ID: C0326
+
+Type: citation
+Gramps ID: C0327
+
+Type: citation
+Gramps ID: C0328
+
+Type: citation
+Gramps ID: C0329
+
+Type: citation
+Gramps ID: C0330
+
+Type: citation
+Gramps ID: C0331
+
+Type: citation
+Gramps ID: C0332
+
+Type: citation
+Gramps ID: C0333
+
+Type: citation
+Gramps ID: C0334
+
+Type: citation
+Gramps ID: C0335
+
+Type: citation
+Gramps ID: C0336
+
+Type: citation
+Gramps ID: C0337
+
+Type: citation
+Gramps ID: C0338
+
+Type: citation
+Gramps ID: C0339
+
+Type: citation
+Gramps ID: C0340
+
+Type: citation
+Gramps ID: C0341
+
+Type: citation
+Gramps ID: C0342
+
+Type: citation
+Gramps ID: C0343
+
+Type: citation
+Gramps ID: C0344
+
+Type: citation
+Gramps ID: C0345
+
+Type: citation
+Gramps ID: C0346
+
+Type: citation
+Gramps ID: C0347
+
+Type: citation
+Gramps ID: C0348
+
+Type: citation
+Gramps ID: C0349
+
+Type: citation
+Gramps ID: C0350
+
+Type: citation
+Gramps ID: C0351
+
+Type: citation
+Gramps ID: C0352
+
+Type: citation
+Gramps ID: C0353
+
+Type: citation
+Gramps ID: C0354
+
+Type: citation
+Gramps ID: C0355
+
+Type: citation
+Gramps ID: C0356
+
+Type: citation
+Gramps ID: C0357
+
+Type: citation
+Gramps ID: C0358
+
+Type: citation
+Gramps ID: C0359
+
+Type: citation
+Gramps ID: C0360
+
+Type: citation
+Gramps ID: C0361
+
+Type: citation
+Gramps ID: C0362
+
+Type: citation
+Gramps ID: C0363
+
+Type: citation
+Gramps ID: C0364
+
+Type: citation
+Gramps ID: C0365
+
+Type: citation
+Gramps ID: C0366
+
+Type: citation
+Gramps ID: C0367
+
+Type: citation
+Gramps ID: C0368
+
+Type: citation
+Gramps ID: C0369
+
+Type: citation
+Gramps ID: C0370
+
+Type: citation
+Gramps ID: C0371
+
+Type: citation
+Gramps ID: C0372
+
+Type: citation
+Gramps ID: C0373
+
+Type: citation
+Gramps ID: C0374
+
+Type: citation
+Gramps ID: C0375
+
+Type: citation
+Gramps ID: C0376
+
+Type: citation
+Gramps ID: C0377
+
+Type: citation
+Gramps ID: C0378
+
+Type: citation
+Gramps ID: C0379
+
+Type: citation
+Gramps ID: C0380
+
+Type: citation
+Gramps ID: C0381
+
+Type: citation
+Gramps ID: C0382
+
+Type: citation
+Gramps ID: C0383
+
+Type: citation
+Gramps ID: C0384
+
+Type: citation
+Gramps ID: C0385
+
+Type: citation
+Gramps ID: C0386
+
+Type: citation
+Gramps ID: C0387
+
+Type: citation
+Gramps ID: C0388
+
+Type: citation
+Gramps ID: C0389
+
+Type: citation
+Gramps ID: C0390
+
+Type: citation
+Gramps ID: C0391
+
+Type: citation
+Gramps ID: C0392
+
+Type: citation
+Gramps ID: C0393
+
+Type: citation
+Gramps ID: C0394
+
+Type: citation
+Gramps ID: C0395
+
+Type: citation
+Gramps ID: C0396
+
+Type: citation
+Gramps ID: C0397
+
+Type: citation
+Gramps ID: C0398
+
+Type: citation
+Gramps ID: C0399
+
+Type: citation
+Gramps ID: C0400
+
+Type: citation
+Gramps ID: C0401
+
+Type: citation
+Gramps ID: C0402
+
+Type: citation
+Gramps ID: C0403
+
+Type: citation
+Gramps ID: C0404
+
+Type: citation
+Gramps ID: C0405
+
+Type: citation
+Gramps ID: C0406
+
+Type: citation
+Gramps ID: C0407
+
+Type: citation
+Gramps ID: C0408
+
+Type: citation
+Gramps ID: C0409
+
+Type: citation
+Gramps ID: C0410
+
+Type: citation
+Gramps ID: C0411
+
+Type: citation
+Gramps ID: C0412
+
+Type: citation
+Gramps ID: C0413
+
+Type: citation
+Gramps ID: C0414
+
+Type: citation
+Gramps ID: C0415
+
+Type: citation
+Gramps ID: C0416
+
+Type: citation
+Gramps ID: C0417
+
+Type: citation
+Gramps ID: C0418
+
+Type: citation
+Gramps ID: C0419
+
+Type: citation
+Gramps ID: C0420
+
+Type: citation
+Gramps ID: C0421
+
+Type: citation
+Gramps ID: C0422
+
+Type: citation
+Gramps ID: C0423
+
+Type: citation
+Gramps ID: C0424
+
+Type: citation
+Gramps ID: C0425
+
+Type: citation
+Gramps ID: C0426
+
+Type: citation
+Gramps ID: C0427
+
+Type: citation
+Gramps ID: C0428
+
+Type: citation
+Gramps ID: C0429
+
+Type: citation
+Gramps ID: C0430
+
+Type: citation
+Gramps ID: C0431
+
+Type: citation
+Gramps ID: C0432
+
+Type: citation
+Gramps ID: C0433
+
+Type: citation
+Gramps ID: C0434
+
+Type: citation
+Gramps ID: C0435
+
+Type: citation
+Gramps ID: C0436
+
+Type: citation
+Gramps ID: C0437
+
+Type: citation
+Gramps ID: C0438
+
+Type: citation
+Gramps ID: C0439
+
+Type: citation
+Gramps ID: C0440
+
+Type: citation
+Gramps ID: C0441
+
+Type: citation
+Gramps ID: C0442
+
+Type: citation
+Gramps ID: C0443
+
+Type: citation
+Gramps ID: C0444
+
+Type: citation
+Gramps ID: C0445
+
+Type: citation
+Gramps ID: C0446
+
+Type: citation
+Gramps ID: C0447
+
+Type: citation
+Gramps ID: C0448
+
+Type: citation
+Gramps ID: C0449
+
+Type: citation
+Gramps ID: C0450
+
+Type: citation
+Gramps ID: C0451
+
+Type: citation
+Gramps ID: C0452
+
+Type: citation
+Gramps ID: C0453
+
+Type: citation
+Gramps ID: C0454
+
+Type: citation
+Gramps ID: C0455
+
+Type: citation
+Gramps ID: C0456
+
+Type: citation
+Gramps ID: C0457
+
+Type: citation
+Gramps ID: C0458
+
+Type: citation
+Gramps ID: C0459
+
+Type: citation
+Gramps ID: C0460
+
+Type: citation
+Gramps ID: C0461
+
+Type: citation
+Gramps ID: C0462
+
+Type: citation
+Gramps ID: C0463
+
+Type: citation
+Gramps ID: C0464
+
+Type: citation
+Gramps ID: C0465
+
+Type: citation
+Gramps ID: C0466
+
+Type: citation
+Gramps ID: C0467
+
+Type: citation
+Gramps ID: C0468
+
+Type: citation
+Gramps ID: C0469
+
+Type: citation
+Gramps ID: C0470
+
+Type: citation
+Gramps ID: C0471
+
+Type: citation
+Gramps ID: C0472
+
+Type: citation
+Gramps ID: C0473
+
+Type: citation
+Gramps ID: C0474
+
+Type: citation
+Gramps ID: C0475
+
+Type: citation
+Gramps ID: C0476
+
+Type: citation
+Gramps ID: C0477
+
+Type: citation
+Gramps ID: C0478
+
+Type: citation
+Gramps ID: C0479
+
+Type: citation
+Gramps ID: C0480
+
+Type: citation
+Gramps ID: C0481
+
+Type: citation
+Gramps ID: C0482
+
+Type: citation
+Gramps ID: C0483
+
+Type: citation
+Gramps ID: C0484
+
+Type: citation
+Gramps ID: C0485
+
+Type: citation
+Gramps ID: C0486
+
+Type: citation
+Gramps ID: C0487
+
+Type: citation
+Gramps ID: C0488
+
+Type: citation
+Gramps ID: C0489
+
+Type: citation
+Gramps ID: C0490
+
+Type: citation
+Gramps ID: C0491
+
+Type: citation
+Gramps ID: C0492
+
+Type: citation
+Gramps ID: C0493
+
+Type: citation
+Gramps ID: C0494
+
+Type: citation
+Gramps ID: C0495
+
+Type: citation
+Gramps ID: C0496
+
+Type: citation
+Gramps ID: C0497
+
+Type: citation
+Gramps ID: C0498
+
+Type: citation
+Gramps ID: C0499
+
+Type: citation
+Gramps ID: C0500
+
+Type: citation
+Gramps ID: C0501
+
+Type: citation
+Gramps ID: C0502
+
+Type: citation
+Gramps ID: C0503
+
+Type: citation
+Gramps ID: C0504
+
+Type: citation
+Gramps ID: C0505
+
+Type: citation
+Gramps ID: C0506
+
+Type: citation
+Gramps ID: C0507
+
+Type: citation
+Gramps ID: C0508
+
+Type: citation
+Gramps ID: C0509
+
+Type: citation
+Gramps ID: C0510
+
+Type: citation
+Gramps ID: C0511
+
+Type: citation
+Gramps ID: C0512
+
+Type: citation
+Gramps ID: C0513
+
+Type: citation
+Gramps ID: C0514
+
+Type: citation
+Gramps ID: C0515
+
+Type: citation
+Gramps ID: C0516
+
+Type: citation
+Gramps ID: C0517
+
+Type: citation
+Gramps ID: C0518
+
+Type: citation
+Gramps ID: C0519
+
+Type: citation
+Gramps ID: C0520
+
+Type: citation
+Gramps ID: C0521
+
+Type: citation
+Gramps ID: C0522
+
+Type: citation
+Gramps ID: C0523
+
+Type: citation
+Gramps ID: C0524
+
+Type: citation
+Gramps ID: C0525
+
+Type: citation
+Gramps ID: C0526
+
+Type: citation
+Gramps ID: C0527
+
+Type: citation
+Gramps ID: C0528
+
+Type: citation
+Gramps ID: C0529
+
+Type: citation
+Gramps ID: C0530
+
+Type: citation
+Gramps ID: C0531
+
+Type: citation
+Gramps ID: C0532
+
+Type: citation
+Gramps ID: C0533
+
+Type: citation
+Gramps ID: C0534
+
+Type: citation
+Gramps ID: C0535
+
+Type: citation
+Gramps ID: C0536
+
+Type: citation
+Gramps ID: C0537
+
+Type: citation
+Gramps ID: C0538
+
+Type: citation
+Gramps ID: C0539
+
+Type: citation
+Gramps ID: C0540
+
+Type: citation
+Gramps ID: C0541
+
+Type: citation
+Gramps ID: C0542
+
+Type: citation
+Gramps ID: C0543
+
+Type: citation
+Gramps ID: C0544
+
+Type: citation
+Gramps ID: C0545
+
+Type: citation
+Gramps ID: C0546
+
+Type: citation
+Gramps ID: C0547
+
+Type: citation
+Gramps ID: C0548
+
+Type: citation
+Gramps ID: C0549
+
+Type: citation
+Gramps ID: C0550
+
+Type: citation
+Gramps ID: C0551
+
+Type: citation
+Gramps ID: C0552
+
+Type: citation
+Gramps ID: C0553
+
+Type: citation
+Gramps ID: C0554
+
+Type: citation
+Gramps ID: C0555
+
+Type: citation
+Gramps ID: C0556
+
+Type: citation
+Gramps ID: C0557
+
+Type: citation
+Gramps ID: C0558
+
+Type: citation
+Gramps ID: C0559
+
+Type: citation
+Gramps ID: C0560
+
+Type: citation
+Gramps ID: C0561
+
+Type: citation
+Gramps ID: C0562
+
+Type: citation
+Gramps ID: C0563
+
+Type: citation
+Gramps ID: C0564
+
+Type: citation
+Gramps ID: C0565
+
+Type: citation
+Gramps ID: C0566
+
+Type: citation
+Gramps ID: C0567
+
+Type: citation
+Gramps ID: C0568
+
+Type: citation
+Gramps ID: C0569
+
+Type: citation
+Gramps ID: C0570
+
+Type: citation
+Gramps ID: C0571
+
+Type: citation
+Gramps ID: C0572
+
+Type: citation
+Gramps ID: C0573
+
+Type: citation
+Gramps ID: C0574
+
+Type: citation
+Gramps ID: C0575
+
+Type: citation
+Gramps ID: C0576
+
+Type: citation
+Gramps ID: C0577
+
+Type: citation
+Gramps ID: C0578
+
+Type: citation
+Gramps ID: C0579
+
+Type: citation
+Gramps ID: C0580
+
+Type: citation
+Gramps ID: C0581
+
+Type: citation
+Gramps ID: C0582
+
+Type: citation
+Gramps ID: C0583
+
+Type: citation
+Gramps ID: C0584
+
+Type: citation
+Gramps ID: C0585
+
+Type: citation
+Gramps ID: C0586
+
+Type: citation
+Gramps ID: C0587
+
+Type: citation
+Gramps ID: C0588
+
+Type: citation
+Gramps ID: C0589
+
+Type: citation
+Gramps ID: C0590
+
+Type: citation
+Gramps ID: C0591
+
+Type: citation
+Gramps ID: C0592
+
+Type: citation
+Gramps ID: C0593
+
+Type: citation
+Gramps ID: C0594
+
+Type: citation
+Gramps ID: C0595
+
+Type: citation
+Gramps ID: C0596
+
+Type: citation
+Gramps ID: C0597
+
+Type: citation
+Gramps ID: C0598
+
+Type: citation
+Gramps ID: C0599
+
+Type: citation
+Gramps ID: C0600
+
+Type: citation
+Gramps ID: C0601
+
+Type: citation
+Gramps ID: C0602
+
+Type: citation
+Gramps ID: C0603
+
+Type: citation
+Gramps ID: C0604
+
+Type: citation
+Gramps ID: C0605
+
+Type: citation
+Gramps ID: C0606
+
+Type: citation
+Gramps ID: C0607
+
+Type: citation
+Gramps ID: C0608
+
+Type: citation
+Gramps ID: C0609
+
+Type: citation
+Gramps ID: C0610
+
+Type: citation
+Gramps ID: C0611
+
+Type: citation
+Gramps ID: C0612
+
+Type: citation
+Gramps ID: C0613
+
+Type: citation
+Gramps ID: C0614
+
+Type: citation
+Gramps ID: C0615
+
+Type: citation
+Gramps ID: C0616
+
+Type: citation
+Gramps ID: C0617
+
+Type: citation
+Gramps ID: C0618
+
+Type: citation
+Gramps ID: C0619
+
+Type: citation
+Gramps ID: C0620
+
+Type: citation
+Gramps ID: C0621
+
+Type: citation
+Gramps ID: C0622
+
+Type: citation
+Gramps ID: C0623
+
+Type: citation
+Gramps ID: C0624
+
+Type: citation
+Gramps ID: C0625
+
+Type: citation
+Gramps ID: C0626
+
+Type: citation
+Gramps ID: C0627
+
+Type: citation
+Gramps ID: C0628
+
+Type: citation
+Gramps ID: C0629
+
+Type: citation
+Gramps ID: C0630
+
+Type: citation
+Gramps ID: C0631
+
+Type: citation
+Gramps ID: C0632
+
+Type: citation
+Gramps ID: C0633
+
+Type: citation
+Gramps ID: C0634
+
+Type: citation
+Gramps ID: C0635
+
+Type: citation
+Gramps ID: C0636
+
+Type: citation
+Gramps ID: C0637
+
+Type: citation
+Gramps ID: C0638
+
+Type: citation
+Gramps ID: C0639
+
+Type: citation
+Gramps ID: C0640
+
+Type: citation
+Gramps ID: C0641
+
+Type: citation
+Gramps ID: C0642
+
+Type: citation
+Gramps ID: C0643
+
+Type: citation
+Gramps ID: C0644
+
+Type: citation
+Gramps ID: C0645
+
+Type: citation
+Gramps ID: C0646
+
+Type: citation
+Gramps ID: C0647
+
+Type: citation
+Gramps ID: C0648
+
+Type: citation
+Gramps ID: C0649
+
+Type: citation
+Gramps ID: C0650
+
+Type: citation
+Gramps ID: C0651
+
+Type: citation
+Gramps ID: C0652
+
+Type: citation
+Gramps ID: C0653
+
+Type: citation
+Gramps ID: C0654
+
+Type: citation
+Gramps ID: C0655
+
+Type: citation
+Gramps ID: C0656
+
+Type: citation
+Gramps ID: C0657
+
+Type: citation
+Gramps ID: C0658
+
+Type: citation
+Gramps ID: C0659
+
+Type: citation
+Gramps ID: C0660
+
+Type: citation
+Gramps ID: C0661
+
+Type: citation
+Gramps ID: C0662
+
+Type: citation
+Gramps ID: C0663
+
+Type: citation
+Gramps ID: C0664
+
+Type: citation
+Gramps ID: C0665
+
+Type: citation
+Gramps ID: C0666
+
+Type: citation
+Gramps ID: C0667
+
+Type: citation
+Gramps ID: C0668
+
+Type: citation
+Gramps ID: C0669
+
+Type: citation
+Gramps ID: C0670
+
+Type: citation
+Gramps ID: C0671
+
+Type: citation
+Gramps ID: C0672
+
+Type: citation
+Gramps ID: C0673
+
+Type: citation
+Gramps ID: C0674
+
+Type: citation
+Gramps ID: C0675
+
+Type: citation
+Gramps ID: C0676
+
+Type: citation
+Gramps ID: C0677
+
+Type: citation
+Gramps ID: C0678
+
+Type: citation
+Gramps ID: C0679
+
+Type: citation
+Gramps ID: C0680
+
+Type: citation
+Gramps ID: C0681
+
+Type: citation
+Gramps ID: C0682
+
+Type: citation
+Gramps ID: C0683
+
+Type: citation
+Gramps ID: C0684
+
+Type: citation
+Gramps ID: C0685
+
+Type: citation
+Gramps ID: C0686
+
+Type: citation
+Gramps ID: C0687
+
+Type: citation
+Gramps ID: C0688
+
+Type: citation
+Gramps ID: C0689
+
+Type: citation
+Gramps ID: C0690
+
+Type: citation
+Gramps ID: C0691
+
+Type: citation
+Gramps ID: C0692
+
+Type: citation
+Gramps ID: C0693
+
+Type: citation
+Gramps ID: C0694
+
+Type: citation
+Gramps ID: C0695
+
+Type: citation
+Gramps ID: C0696
+
+Type: citation
+Gramps ID: C0697
+
+Type: citation
+Gramps ID: C0698
+
+Type: citation
+Gramps ID: C0699
+
+Type: citation
+Gramps ID: C0700
+
+Type: citation
+Gramps ID: C0701
+
+Type: citation
+Gramps ID: C0702
+
+Type: citation
+Gramps ID: C0703
+
+Type: citation
+Gramps ID: C0704
+
+Type: citation
+Gramps ID: C0705
+
+Type: citation
+Gramps ID: C0706
+
+Type: citation
+Gramps ID: C0707
+
+Type: citation
+Gramps ID: C0708
+
+Type: citation
+Gramps ID: C0709
+
+Type: citation
+Gramps ID: C0710
+
+Type: citation
+Gramps ID: C0711
+
+Type: citation
+Gramps ID: C0712
+
+Type: citation
+Gramps ID: C0713
+
+Type: citation
+Gramps ID: C0714
+
+Type: citation
+Gramps ID: C0715
+
+Type: citation
+Gramps ID: C0716
+
+Type: citation
+Gramps ID: C0717
+
+Type: citation
+Gramps ID: C0718
+
+Type: citation
+Gramps ID: C0719
+
+Type: citation
+Gramps ID: C0720
+
+Type: citation
+Gramps ID: C0721
+
+Type: citation
+Gramps ID: C0722
+
+Type: citation
+Gramps ID: C0723
+
+Type: citation
+Gramps ID: C0724
+
+Type: citation
+Gramps ID: C0725
+
+Type: citation
+Gramps ID: C0726
+
+Type: citation
+Gramps ID: C0727
+
+Type: citation
+Gramps ID: C0728
+
+Type: citation
+Gramps ID: C0729
+
+Type: citation
+Gramps ID: C0730
+
+Type: citation
+Gramps ID: C0731
+
+Type: citation
+Gramps ID: C0732
+
+Type: citation
+Gramps ID: C0733
+
+Type: citation
+Gramps ID: C0734
+
+Type: citation
+Gramps ID: C0735
+
+Type: citation
+Gramps ID: C0736
+
+Type: citation
+Gramps ID: C0737
+
+Type: citation
+Gramps ID: C0738
+
+Type: citation
+Gramps ID: C0739
+
+Type: citation
+Gramps ID: C0740
+
+Type: citation
+Gramps ID: C0741
+
+Type: citation
+Gramps ID: C0742
+
+Type: citation
+Gramps ID: C0743
+
+Type: citation
+Gramps ID: C0744
+
+Type: citation
+Gramps ID: C0745
+
+Type: citation
+Gramps ID: C0746
+
+Type: citation
+Gramps ID: C0747
+
+Type: citation
+Gramps ID: C0748
+
+Type: citation
+Gramps ID: C0749
+
+Type: citation
+Gramps ID: C0750
+
+Type: citation
+Gramps ID: C0751
+
+Type: citation
+Gramps ID: C0752
+
+Type: citation
+Gramps ID: C0753
+
+Type: citation
+Gramps ID: C0754
+
+Type: citation
+Gramps ID: C0755
+
+Type: citation
+Gramps ID: C0756
+
+Type: citation
+Gramps ID: C0757
+
+Type: citation
+Gramps ID: C0758
+
+Type: citation
+Gramps ID: C0759
+
+Type: citation
+Gramps ID: C0760
+
+Type: citation
+Gramps ID: C0761
+
+Type: citation
+Gramps ID: C0762
+
+Type: citation
+Gramps ID: C0763
+
+Type: citation
+Gramps ID: C0764
+
+Type: citation
+Gramps ID: C0765
+
+Type: citation
+Gramps ID: C0766
+
+Type: citation
+Gramps ID: C0767
+
+Type: citation
+Gramps ID: C0768
+
+Type: citation
+Gramps ID: C0769
+
+Type: citation
+Gramps ID: C0770
+
+Type: citation
+Gramps ID: C0771
+
+Type: citation
+Gramps ID: C0772
+
+Type: citation
+Gramps ID: C0773
+
+Type: citation
+Gramps ID: C0774
+
+Type: citation
+Gramps ID: C0775
+
+Type: citation
+Gramps ID: C0776
+
+Type: citation
+Gramps ID: C0777
+
+Type: citation
+Gramps ID: C0778
+
+Type: citation
+Gramps ID: C0779
+
+Type: citation
+Gramps ID: C0780
+
+Type: citation
+Gramps ID: C0781
+
+Type: citation
+Gramps ID: C0782
+
+Type: citation
+Gramps ID: C0783
+
+Type: citation
+Gramps ID: C0784
+
+Type: citation
+Gramps ID: C0785
+
+Type: citation
+Gramps ID: C0786
+
+Type: citation
+Gramps ID: C0787
+
+Type: citation
+Gramps ID: C0788
+
+Type: citation
+Gramps ID: C0789
+
+Type: citation
+Gramps ID: C0790
+
+Type: citation
+Gramps ID: C0791
+
+Type: citation
+Gramps ID: C0792
+
+Type: citation
+Gramps ID: C0793
+
+Type: citation
+Gramps ID: C0794
+
+Type: citation
+Gramps ID: C0795
+
+Type: citation
+Gramps ID: C0796
+
+Type: citation
+Gramps ID: C0797
+
+Type: citation
+Gramps ID: C0798
+
+Type: citation
+Gramps ID: C0799
+
+Type: citation
+Gramps ID: C0800
+
+Type: citation
+Gramps ID: C0801
+
+Type: citation
+Gramps ID: C0802
+
+Type: citation
+Gramps ID: C0803
+
+Type: citation
+Gramps ID: C0804
+
+Type: citation
+Gramps ID: C0805
+
+Type: citation
+Gramps ID: C0806
+
+Type: citation
+Gramps ID: C0807
+
+Type: citation
+Gramps ID: C0808
+
+Type: citation
+Gramps ID: C0809
+
+Type: citation
+Gramps ID: C0810
+
+Type: citation
+Gramps ID: C0811
+
+Type: citation
+Gramps ID: C0812
+
+Type: citation
+Gramps ID: C0813
+
+Type: citation
+Gramps ID: C0814
+
+Type: citation
+Gramps ID: C0815
+
+Type: citation
+Gramps ID: C0816
+
+Type: citation
+Gramps ID: C0817
+
+Type: citation
+Gramps ID: C0818
+
+Type: citation
+Gramps ID: C0819
+
+Type: citation
+Gramps ID: C0820
+
+Type: citation
+Gramps ID: C0821
+
+Type: citation
+Gramps ID: C0822
+
+Type: citation
+Gramps ID: C0823
+
+Type: citation
+Gramps ID: C0824
+
+Type: citation
+Gramps ID: C0825
+
+Type: citation
+Gramps ID: C0826
+
+Type: citation
+Gramps ID: C0827
+
+Type: citation
+Gramps ID: C0828
+
+Type: citation
+Gramps ID: C0829
+
+Type: citation
+Gramps ID: C0830
+
+Type: citation
+Gramps ID: C0831
+
+Type: citation
+Gramps ID: C0832
+
+Type: citation
+Gramps ID: C0833
+
+Type: citation
+Gramps ID: C0834
+
+Type: citation
+Gramps ID: C0835
+
+Type: citation
+Gramps ID: C0836
+
+Type: citation
+Gramps ID: C0837
+
+Type: citation
+Gramps ID: C0838
+
+Type: citation
+Gramps ID: C0839
+
+Type: citation
+Gramps ID: C0840
+
+Type: citation
+Gramps ID: C0841
+
+Type: citation
+Gramps ID: C0842
+
+Type: citation
+Gramps ID: C0843
+
+Type: citation
+Gramps ID: C0844
+
+Type: citation
+Gramps ID: C0845
+
+Type: citation
+Gramps ID: C0846
+
+Type: citation
+Gramps ID: C0847
+
+Type: citation
+Gramps ID: C0848
+
+Type: citation
+Gramps ID: C0849
+
+Type: citation
+Gramps ID: C0850
+
+Type: citation
+Gramps ID: C0851
+
+Type: citation
+Gramps ID: C0852
+
+Type: citation
+Gramps ID: C0853
+
+Type: citation
+Gramps ID: C0854
+
+Type: citation
+Gramps ID: C0855
+
+Type: citation
+Gramps ID: C0856
+
+Type: citation
+Gramps ID: C0857
+
+Type: citation
+Gramps ID: C0858
+
+Type: citation
+Gramps ID: C0859
+
+Type: citation
+Gramps ID: C0860
+
+Type: citation
+Gramps ID: C0861
+
+Type: citation
+Gramps ID: C0862
+
+Type: citation
+Gramps ID: C0863
+
+Type: citation
+Gramps ID: C0864
+
+Type: citation
+Gramps ID: C0865
+
+Type: citation
+Gramps ID: C0866
+
+Type: citation
+Gramps ID: C0867
+
+Type: citation
+Gramps ID: C0868
+
+Type: citation
+Gramps ID: C0869
+
+Type: citation
+Gramps ID: C0870
+
+Type: citation
+Gramps ID: C0871
+
+Type: citation
+Gramps ID: C0872
+
+Type: citation
+Gramps ID: C0873
+
+Type: citation
+Gramps ID: C0874
+
+Type: citation
+Gramps ID: C0875
+
+Type: citation
+Gramps ID: C0876
+
+Type: citation
+Gramps ID: C0877
+
+Type: citation
+Gramps ID: C0878
+
+Type: citation
+Gramps ID: C0879
+
+Type: citation
+Gramps ID: C0880
+
+Type: citation
+Gramps ID: C0881
+
+Type: citation
+Gramps ID: C0882
+
+Type: citation
+Gramps ID: C0883
+
+Type: citation
+Gramps ID: C0884
+
+Type: citation
+Gramps ID: C0885
+
+Type: citation
+Gramps ID: C0886
+
+Type: citation
+Gramps ID: C0887
+
+Type: citation
+Gramps ID: C0888
+
+Type: citation
+Gramps ID: C0889
+
+Type: citation
+Gramps ID: C0890
+
+Type: citation
+Gramps ID: C0891
+
+Type: citation
+Gramps ID: C0892
+
+Type: citation
+Gramps ID: C0893
+
+Type: citation
+Gramps ID: C0894
+
+Type: citation
+Gramps ID: C0895
+
+Type: citation
+Gramps ID: C0896
+
+Type: citation
+Gramps ID: C0897
+
+Type: citation
+Gramps ID: C0898
+
+Type: citation
+Gramps ID: C0899
+
+Type: citation
+Gramps ID: C0900
+
+Type: citation
+Gramps ID: C0901
+
+Type: citation
+Gramps ID: C0902
+
+Type: citation
+Gramps ID: C0903
+
+Type: citation
+Gramps ID: C0904
+
+Type: citation
+Gramps ID: C0905
+
+Type: citation
+Gramps ID: C0906
+
+Type: citation
+Gramps ID: C0907
+
+Type: citation
+Gramps ID: C0908
+
+Type: citation
+Gramps ID: C0909
+
+Type: citation
+Gramps ID: C0910
+
+Type: citation
+Gramps ID: C0911
+
+Type: citation
+Gramps ID: C0912
+
+Type: citation
+Gramps ID: C0913
+
+Type: citation
+Gramps ID: C0914
+
+Type: citation
+Gramps ID: C0915
+
+Type: citation
+Gramps ID: C0916
+
+Type: citation
+Gramps ID: C0917
+
+Type: citation
+Gramps ID: C0918
+
+Type: citation
+Gramps ID: C0919
+
+Type: citation
+Gramps ID: C0920
+
+Type: citation
+Gramps ID: C0921
+
+Type: citation
+Gramps ID: C0922
+
+Type: citation
+Gramps ID: C0923
+
+Type: citation
+Gramps ID: C0924
+
+Type: citation
+Gramps ID: C0925
+
+Type: citation
+Gramps ID: C0926
+
+Type: citation
+Gramps ID: C0927
+
+Type: citation
+Gramps ID: C0928
+
+Type: citation
+Gramps ID: C0929
+
+Type: citation
+Gramps ID: C0930
+
+Type: citation
+Gramps ID: C0931
+
+Type: citation
+Gramps ID: C0932
+
+Type: citation
+Gramps ID: C0933
+
+Type: citation
+Gramps ID: C0934
+
+Type: citation
+Gramps ID: C0935
+
+Type: citation
+Gramps ID: C0936
+
+Type: citation
+Gramps ID: C0937
+
+Type: citation
+Gramps ID: C0938
+
+Type: citation
+Gramps ID: C0939
+
+Type: citation
+Gramps ID: C0940
+
+Type: citation
+Gramps ID: C0941
+
+Type: citation
+Gramps ID: C0942
+
+Type: citation
+Gramps ID: C0943
+
+Type: citation
+Gramps ID: C0944
+
+Type: citation
+Gramps ID: C0945
+
+Type: citation
+Gramps ID: C0946
+
+Type: citation
+Gramps ID: C0947
+
+Type: citation
+Gramps ID: C0948
+
+Type: citation
+Gramps ID: C0949
+
+Type: citation
+Gramps ID: C0950
+
+Type: citation
+Gramps ID: C0951
+
+Type: citation
+Gramps ID: C0952
+
+Type: citation
+Gramps ID: C0953
+
+Type: citation
+Gramps ID: C0954
+
+Type: citation
+Gramps ID: C0955
+
+Type: citation
+Gramps ID: C0956
+
+Type: citation
+Gramps ID: C0957
+
+Type: citation
+Gramps ID: C0958
+
+Type: citation
+Gramps ID: C0959
+
+Type: citation
+Gramps ID: C0960
+
+Type: citation
+Gramps ID: C0961
+
+Type: citation
+Gramps ID: C0962
+
+Type: citation
+Gramps ID: C0963
+
+Type: citation
+Gramps ID: C0964
+
+Type: citation
+Gramps ID: C0965
+
+Type: citation
+Gramps ID: C0966
+
+Type: citation
+Gramps ID: C0967
+
+Type: citation
+Gramps ID: C0968
+
+Type: citation
+Gramps ID: C0969
+
+Type: citation
+Gramps ID: C0970
+
+Type: citation
+Gramps ID: C0971
+
+Type: citation
+Gramps ID: C0972
+
+Type: citation
+Gramps ID: C2829
+Page/Volume: page 02
+
+Type: citation
+Gramps ID: C0973
+Date: 1990-03-05
+Page/Volume: Page 11 2/3.
+
+Type: citation
+Gramps ID: C2836
+Page/Volume: page 09
+
+Type: citation
+Gramps ID: C2831
+Page/Volume: page 04
+
+Type: citation
+Gramps ID: C2835
+Page/Volume: page 08
+
+Type: citation
+Gramps ID: C2834
+Page/Volume: page 07
+
+Type: citation
+Gramps ID: C2833
+Page/Volume: page 06
+
+Type: citation
+Gramps ID: C2830
+Page/Volume: page 03
+
+Type: citation
+Gramps ID: C2832
+Page/Volume: page 05
+
+Type: citation
+Gramps ID: C0974
+
+Type: citation
+Gramps ID: C0975
+Date: 1855-06-25
+
+Type: citation
+Gramps ID: C2828
+Page/Volume: page 01
+
+Type: citation
+Gramps ID: C0976
+
+Type: citation
+Gramps ID: C0977
+
+Type: citation
+Gramps ID: C0978
+
+Type: citation
+Gramps ID: C0979
+
+Type: citation
+Gramps ID: C0980
+
+Type: citation
+Gramps ID: C0981
+
+Type: citation
+Gramps ID: C0982
+
+Type: citation
+Gramps ID: C0983
+
+Type: citation
+Gramps ID: C0984
+
+Type: citation
+Gramps ID: C0985
+
+Type: citation
+Gramps ID: C0986
+
+Type: citation
+Gramps ID: C0987
+
+Type: citation
+Gramps ID: C0988
+
+Type: citation
+Gramps ID: C0989
+
+Type: citation
+Gramps ID: C0990
+
+Type: citation
+Gramps ID: C0991
+
+Type: citation
+Gramps ID: C0992
+
+Type: citation
+Gramps ID: C0993
+
+Type: citation
+Gramps ID: C0994
+
+Type: citation
+Gramps ID: C0995
+
+Type: citation
+Gramps ID: C0996
+
+Type: citation
+Gramps ID: C0997
+
+Type: citation
+Gramps ID: C0998
+
+Type: citation
+Gramps ID: C0999
+
+Type: citation
+Gramps ID: C1000
+
+Type: citation
+Gramps ID: C1001
+
+Type: citation
+Gramps ID: C1002
+
+Type: citation
+Gramps ID: C1003
+
+Type: citation
+Gramps ID: C1004
+
+Type: citation
+Gramps ID: C1005
+
+Type: citation
+Gramps ID: C1006
+
+Type: citation
+Gramps ID: C1007
+
+Type: citation
+Gramps ID: C1008
+
+Type: citation
+Gramps ID: C1009
+
+Type: citation
+Gramps ID: C1010
+
+Type: citation
+Gramps ID: C1011
+
+Type: citation
+Gramps ID: C1012
+
+Type: citation
+Gramps ID: C1013
+
+Type: citation
+Gramps ID: C1014
+
+Type: citation
+Gramps ID: C1015
+
+Type: citation
+Gramps ID: C1016
+
+Type: citation
+Gramps ID: C1017
+
+Type: citation
+Gramps ID: C1018
+
+Type: citation
+Gramps ID: C1019
+
+Type: citation
+Gramps ID: C1020
+
+Type: citation
+Gramps ID: C1021
+
+Type: citation
+Gramps ID: C1022
+
+Type: citation
+Gramps ID: C1023
+
+Type: citation
+Gramps ID: C1024
+
+Type: citation
+Gramps ID: C1025
+
+Type: citation
+Gramps ID: C1026
+
+Type: citation
+Gramps ID: C1027
+
+Type: citation
+Gramps ID: C1028
+
+Type: citation
+Gramps ID: C1029
+
+Type: citation
+Gramps ID: C1030
+
+Type: citation
+Gramps ID: C1031
+
+Type: citation
+Gramps ID: C1032
+
+Type: citation
+Gramps ID: C1033
+
+Type: citation
+Gramps ID: C1034
+
+Type: citation
+Gramps ID: C1035
+
+Type: citation
+Gramps ID: C1036
+
+Type: citation
+Gramps ID: C1037
+
+Type: citation
+Gramps ID: C1038
+
+Type: citation
+Gramps ID: C1039
+
+Type: citation
+Gramps ID: C1040
+
+Type: citation
+Gramps ID: C1041
+
+Type: citation
+Gramps ID: C1042
+
+Type: citation
+Gramps ID: C1043
+
+Type: citation
+Gramps ID: C1044
+
+Type: citation
+Gramps ID: C1045
+
+Type: citation
+Gramps ID: C1046
+
+Type: citation
+Gramps ID: C1047
+
+Type: citation
+Gramps ID: C1048
+
+Type: citation
+Gramps ID: C1049
+
+Type: citation
+Gramps ID: C1050
+
+Type: citation
+Gramps ID: C1051
+
+Type: citation
+Gramps ID: C1052
+
+Type: citation
+Gramps ID: C1053
+
+Type: citation
+Gramps ID: C1054
+
+Type: citation
+Gramps ID: C1055
+
+Type: citation
+Gramps ID: C1056
+
+Type: citation
+Gramps ID: C1057
+
+Type: citation
+Gramps ID: C1058
+
+Type: citation
+Gramps ID: C1059
+
+Type: citation
+Gramps ID: C1060
+
+Type: citation
+Gramps ID: C1061
+
+Type: citation
+Gramps ID: C1062
+
+Type: citation
+Gramps ID: C1063
+
+Type: citation
+Gramps ID: C1064
+
+Type: citation
+Gramps ID: C1065
+
+Type: citation
+Gramps ID: C1066
+
+Type: citation
+Gramps ID: C1067
+
+Type: citation
+Gramps ID: C1068
+
+Type: citation
+Gramps ID: C1069
+
+Type: citation
+Gramps ID: C1070
+
+Type: citation
+Gramps ID: C1071
+
+Type: citation
+Gramps ID: C1072
+
+Type: citation
+Gramps ID: C1073
+
+Type: citation
+Gramps ID: C1074
+
+Type: citation
+Gramps ID: C1075
+
+Type: citation
+Gramps ID: C1076
+
+Type: citation
+Gramps ID: C1077
+
+Type: citation
+Gramps ID: C1078
+
+Type: citation
+Gramps ID: C1079
+
+Type: citation
+Gramps ID: C1080
+
+Type: citation
+Gramps ID: C1081
+
+Type: citation
+Gramps ID: C1082
+
+Type: citation
+Gramps ID: C1083
+
+Type: citation
+Gramps ID: C1084
+
+Type: citation
+Gramps ID: C1085
+
+Type: citation
+Gramps ID: C1086
+
+Type: citation
+Gramps ID: C1087
+
+Type: citation
+Gramps ID: C1088
+
+Type: citation
+Gramps ID: C1089
+
+Type: citation
+Gramps ID: C1090
+
+Type: citation
+Gramps ID: C1091
+
+Type: citation
+Gramps ID: C1092
+
+Type: citation
+Gramps ID: C1093
+
+Type: citation
+Gramps ID: C1094
+
+Type: citation
+Gramps ID: C1095
+
+Type: citation
+Gramps ID: C1096
+
+Type: citation
+Gramps ID: C1097
+
+Type: citation
+Gramps ID: C1098
+
+Type: citation
+Gramps ID: C1099
+
+Type: citation
+Gramps ID: C1100
+
+Type: citation
+Gramps ID: C1101
+
+Type: citation
+Gramps ID: C1102
+
+Type: citation
+Gramps ID: C1103
+
+Type: citation
+Gramps ID: C1104
+
+Type: citation
+Gramps ID: C1105
+
+Type: citation
+Gramps ID: C1106
+
+Type: citation
+Gramps ID: C1107
+
+Type: citation
+Gramps ID: C1108
+
+Type: citation
+Gramps ID: C1109
+
+Type: citation
+Gramps ID: C1110
+
+Type: citation
+Gramps ID: C1111
+
+Type: citation
+Gramps ID: C1112
+
+Type: citation
+Gramps ID: C1113
+
+Type: citation
+Gramps ID: C1114
+
+Type: citation
+Gramps ID: C1115
+
+Type: citation
+Gramps ID: C1116
+
+Type: citation
+Gramps ID: C1117
+
+Type: citation
+Gramps ID: C1118
+
+Type: citation
+Gramps ID: C1119
+
+Type: citation
+Gramps ID: C1120
+
+Type: citation
+Gramps ID: C1121
+
+Type: citation
+Gramps ID: C1122
+
+Type: citation
+Gramps ID: C1123
+
+Type: citation
+Gramps ID: C1124
+
+Type: citation
+Gramps ID: C1125
+
+Type: citation
+Gramps ID: C1126
+
+Type: citation
+Gramps ID: C1127
+
+Type: citation
+Gramps ID: C1128
+
+Type: citation
+Gramps ID: C1129
+
+Type: citation
+Gramps ID: C1130
+
+Type: citation
+Gramps ID: C1131
+
+Type: citation
+Gramps ID: C1132
+
+Type: citation
+Gramps ID: C1133
+
+Type: citation
+Gramps ID: C1134
+
+Type: citation
+Gramps ID: C1135
+
+Type: citation
+Gramps ID: C1136
+
+Type: citation
+Gramps ID: C1137
+
+Type: citation
+Gramps ID: C1138
+
+Type: citation
+Gramps ID: C1139
+
+Type: citation
+Gramps ID: C1140
+
+Type: citation
+Gramps ID: C1141
+
+Type: citation
+Gramps ID: C1142
+
+Type: citation
+Gramps ID: C1143
+
+Type: citation
+Gramps ID: C1144
+
+Type: citation
+Gramps ID: C1145
+
+Type: citation
+Gramps ID: C1146
+
+Type: citation
+Gramps ID: C1147
+
+Type: citation
+Gramps ID: C1148
+
+Type: citation
+Gramps ID: C1149
+
+Type: citation
+Gramps ID: C1150
+
+Type: citation
+Gramps ID: C1151
+
+Type: citation
+Gramps ID: C1152
+
+Type: citation
+Gramps ID: C1153
+
+Type: citation
+Gramps ID: C1154
+
+Type: citation
+Gramps ID: C1155
+
+Type: citation
+Gramps ID: C1156
+
+Type: citation
+Gramps ID: C1157
+
+Type: citation
+Gramps ID: C1158
+
+Type: citation
+Gramps ID: C1159
+
+Type: citation
+Gramps ID: C1160
+
+Type: citation
+Gramps ID: C1161
+
+Type: citation
+Gramps ID: C1162
+
+Type: citation
+Gramps ID: C1163
+
+Type: citation
+Gramps ID: C1164
+
+Type: citation
+Gramps ID: C1165
+
+Type: citation
+Gramps ID: C1166
+
+Type: citation
+Gramps ID: C1167
+
+Type: citation
+Gramps ID: C1168
+
+Type: citation
+Gramps ID: C1169
+
+Type: citation
+Gramps ID: C1170
+
+Type: citation
+Gramps ID: C1171
+
+Type: citation
+Gramps ID: C1172
+
+Type: citation
+Gramps ID: C1173
+
+Type: citation
+Gramps ID: C1174
+
+Type: citation
+Gramps ID: C1175
+
+Type: citation
+Gramps ID: C1176
+
+Type: citation
+Gramps ID: C1177
+
+Type: citation
+Gramps ID: C1178
+
+Type: citation
+Gramps ID: C1179
+
+Type: citation
+Gramps ID: C1180
+
+Type: citation
+Gramps ID: C1181
+
+Type: citation
+Gramps ID: C1182
+
+Type: citation
+Gramps ID: C1183
+
+Type: citation
+Gramps ID: C1184
+
+Type: citation
+Gramps ID: C1185
+
+Type: citation
+Gramps ID: C1186
+
+Type: citation
+Gramps ID: C1187
+
+Type: citation
+Gramps ID: C1188
+
+Type: citation
+Gramps ID: C1189
+
+Type: citation
+Gramps ID: C1190
+
+Type: citation
+Gramps ID: C1191
+
+Type: citation
+Gramps ID: C1192
+
+Type: citation
+Gramps ID: C1193
+
+Type: citation
+Gramps ID: C1194
+
+Type: citation
+Gramps ID: C1195
+
+Type: citation
+Gramps ID: C1196
+
+Type: citation
+Gramps ID: C1197
+
+Type: citation
+Gramps ID: C1198
+
+Type: citation
+Gramps ID: C1199
+
+Type: citation
+Gramps ID: C1200
+
+Type: citation
+Gramps ID: C1201
+
+Type: citation
+Gramps ID: C1202
+
+Type: citation
+Gramps ID: C1203
+
+Type: citation
+Gramps ID: C1204
+
+Type: citation
+Gramps ID: C1205
+
+Type: citation
+Gramps ID: C1206
+
+Type: citation
+Gramps ID: C1207
+
+Type: citation
+Gramps ID: C1208
+
+Type: citation
+Gramps ID: C1209
+
+Type: citation
+Gramps ID: C1210
+
+Type: citation
+Gramps ID: C1211
+
+Type: citation
+Gramps ID: C1212
+
+Type: citation
+Gramps ID: C1213
+
+Type: citation
+Gramps ID: C1214
+
+Type: citation
+Gramps ID: C1215
+
+Type: citation
+Gramps ID: C1216
+
+Type: citation
+Gramps ID: C1217
+
+Type: citation
+Gramps ID: C1218
+
+Type: citation
+Gramps ID: C1219
+
+Type: citation
+Gramps ID: C1220
+
+Type: citation
+Gramps ID: C1221
+
+Type: citation
+Gramps ID: C1222
+
+Type: citation
+Gramps ID: C1223
+
+Type: citation
+Gramps ID: C1224
+
+Type: citation
+Gramps ID: C1225
+
+Type: citation
+Gramps ID: C1226
+
+Type: citation
+Gramps ID: C1227
+
+Type: citation
+Gramps ID: C1228
+
+Type: citation
+Gramps ID: C1229
+
+Type: citation
+Gramps ID: C1230
+
+Type: citation
+Gramps ID: C1231
+
+Type: citation
+Gramps ID: C1232
+
+Type: citation
+Gramps ID: C1233
+
+Type: citation
+Gramps ID: C1234
+
+Type: citation
+Gramps ID: C1235
+
+Type: citation
+Gramps ID: C1236
+
+Type: citation
+Gramps ID: C1237
+
+Type: citation
+Gramps ID: C1238
+
+Type: citation
+Gramps ID: C1239
+
+Type: citation
+Gramps ID: C1240
+
+Type: citation
+Gramps ID: C1241
+
+Type: citation
+Gramps ID: C1242
+
+Type: citation
+Gramps ID: C1243
+
+Type: citation
+Gramps ID: C1244
+
+Type: citation
+Gramps ID: C1245
+
+Type: citation
+Gramps ID: C1246
+
+Type: citation
+Gramps ID: C1247
+
+Type: citation
+Gramps ID: C1248
+
+Type: citation
+Gramps ID: C1249
+
+Type: citation
+Gramps ID: C1250
+
+Type: citation
+Gramps ID: C1251
+
+Type: citation
+Gramps ID: C1252
+
+Type: citation
+Gramps ID: C1253
+
+Type: citation
+Gramps ID: C1254
+
+Type: citation
+Gramps ID: C1255
+
+Type: citation
+Gramps ID: C1256
+
+Type: citation
+Gramps ID: C1257
+
+Type: citation
+Gramps ID: C1258
+
+Type: citation
+Gramps ID: C1259
+
+Type: citation
+Gramps ID: C1260
+
+Type: citation
+Gramps ID: C1261
+
+Type: citation
+Gramps ID: C1262
+
+Type: citation
+Gramps ID: C1263
+
+Type: citation
+Gramps ID: C1264
+
+Type: citation
+Gramps ID: C1265
+
+Type: citation
+Gramps ID: C1266
+
+Type: citation
+Gramps ID: C1267
+
+Type: citation
+Gramps ID: C1268
+
+Type: citation
+Gramps ID: C1269
+
+Type: citation
+Gramps ID: C1270
+
+Type: citation
+Gramps ID: C1271
+
+Type: citation
+Gramps ID: C1272
+
+Type: citation
+Gramps ID: C1273
+
+Type: citation
+Gramps ID: C1274
+
+Type: citation
+Gramps ID: C1275
+
+Type: citation
+Gramps ID: C1276
+
+Type: citation
+Gramps ID: C1277
+
+Type: citation
+Gramps ID: C1278
+
+Type: citation
+Gramps ID: C1279
+
+Type: citation
+Gramps ID: C1280
+
+Type: citation
+Gramps ID: C1281
+
+Type: citation
+Gramps ID: C1282
+
+Type: citation
+Gramps ID: C1283
+
+Type: citation
+Gramps ID: C1284
+
+Type: citation
+Gramps ID: C1285
+
+Type: citation
+Gramps ID: C1286
+
+Type: citation
+Gramps ID: C1287
+
+Type: citation
+Gramps ID: C1288
+
+Type: citation
+Gramps ID: C1289
+
+Type: citation
+Gramps ID: C1290
+
+Type: citation
+Gramps ID: C1291
+
+Type: citation
+Gramps ID: C1292
+
+Type: citation
+Gramps ID: C1293
+
+Type: citation
+Gramps ID: C1294
+
+Type: citation
+Gramps ID: C1295
+
+Type: citation
+Gramps ID: C1296
+
+Type: citation
+Gramps ID: C1297
+
+Type: citation
+Gramps ID: C1298
+
+Type: citation
+Gramps ID: C1299
+
+Type: citation
+Gramps ID: C1300
+
+Type: citation
+Gramps ID: C1301
+
+Type: citation
+Gramps ID: C1302
+
+Type: citation
+Gramps ID: C1303
+
+Type: citation
+Gramps ID: C1304
+
+Type: citation
+Gramps ID: C1305
+
+Type: citation
+Gramps ID: C1306
+
+Type: citation
+Gramps ID: C1307
+
+Type: citation
+Gramps ID: C1308
+
+Type: citation
+Gramps ID: C1309
+
+Type: citation
+Gramps ID: C1310
+
+Type: citation
+Gramps ID: C1311
+
+Type: citation
+Gramps ID: C1312
+
+Type: citation
+Gramps ID: C1313
+
+Type: citation
+Gramps ID: C1314
+
+Type: citation
+Gramps ID: C1315
+
+Type: citation
+Gramps ID: C1316
+
+Type: citation
+Gramps ID: C1317
+
+Type: citation
+Gramps ID: C1318
+
+Type: citation
+Gramps ID: C1319
+
+Type: citation
+Gramps ID: C1320
+
+Type: citation
+Gramps ID: C1321
+
+Type: citation
+Gramps ID: C1322
+
+Type: citation
+Gramps ID: C1323
+
+Type: citation
+Gramps ID: C1324
+
+Type: citation
+Gramps ID: C1325
+
+Type: citation
+Gramps ID: C1326
+
+Type: citation
+Gramps ID: C1327
+
+Type: citation
+Gramps ID: C1328
+
+Type: citation
+Gramps ID: C1329
+
+Type: citation
+Gramps ID: C1330
+
+Type: citation
+Gramps ID: C1331
+
+Type: citation
+Gramps ID: C1332
+
+Type: citation
+Gramps ID: C1333
+
+Type: citation
+Gramps ID: C1334
+
+Type: citation
+Gramps ID: C1335
+
+Type: citation
+Gramps ID: C1336
+
+Type: citation
+Gramps ID: C1337
+
+Type: citation
+Gramps ID: C1338
+
+Type: citation
+Gramps ID: C1339
+
+Type: citation
+Gramps ID: C1340
+
+Type: citation
+Gramps ID: C1341
+
+Type: citation
+Gramps ID: C1342
+
+Type: citation
+Gramps ID: C1343
+
+Type: citation
+Gramps ID: C1344
+
+Type: citation
+Gramps ID: C1345
+
+Type: citation
+Gramps ID: C1346
+
+Type: citation
+Gramps ID: C1347
+
+Type: citation
+Gramps ID: C1348
+
+Type: citation
+Gramps ID: C1349
+
+Type: citation
+Gramps ID: C1350
+
+Type: citation
+Gramps ID: C1351
+
+Type: citation
+Gramps ID: C1352
+
+Type: citation
+Gramps ID: C1353
+
+Type: citation
+Gramps ID: C1354
+
+Type: citation
+Gramps ID: C1355
+
+Type: citation
+Gramps ID: C1356
+
+Type: citation
+Gramps ID: C1357
+
+Type: citation
+Gramps ID: C1358
+
+Type: citation
+Gramps ID: C1359
+
+Type: citation
+Gramps ID: C1360
+
+Type: citation
+Gramps ID: C1361
+
+Type: citation
+Gramps ID: C1362
+
+Type: citation
+Gramps ID: C1363
+
+Type: citation
+Gramps ID: C1364
+
+Type: citation
+Gramps ID: C1365
+
+Type: citation
+Gramps ID: C1366
+
+Type: citation
+Gramps ID: C1367
+
+Type: citation
+Gramps ID: C1368
+
+Type: citation
+Gramps ID: C1369
+
+Type: citation
+Gramps ID: C1370
+
+Type: citation
+Gramps ID: C1371
+
+Type: citation
+Gramps ID: C1372
+
+Type: citation
+Gramps ID: C1373
+
+Type: citation
+Gramps ID: C1374
+
+Type: citation
+Gramps ID: C1375
+
+Type: citation
+Gramps ID: C1376
+
+Type: citation
+Gramps ID: C1377
+
+Type: citation
+Gramps ID: C1378
+
+Type: citation
+Gramps ID: C1379
+
+Type: citation
+Gramps ID: C1380
+
+Type: citation
+Gramps ID: C1381
+
+Type: citation
+Gramps ID: C1382
+
+Type: citation
+Gramps ID: C1383
+
+Type: citation
+Gramps ID: C1384
+
+Type: citation
+Gramps ID: C1385
+
+Type: citation
+Gramps ID: C1386
+
+Type: citation
+Gramps ID: C1387
+
+Type: citation
+Gramps ID: C1388
+
+Type: citation
+Gramps ID: C1389
+
+Type: citation
+Gramps ID: C1390
+
+Type: citation
+Gramps ID: C1391
+
+Type: citation
+Gramps ID: C1392
+
+Type: citation
+Gramps ID: C1393
+
+Type: citation
+Gramps ID: C1394
+
+Type: citation
+Gramps ID: C1395
+
+Type: citation
+Gramps ID: C1396
+
+Type: citation
+Gramps ID: C1397
+
+Type: citation
+Gramps ID: C1398
+
+Type: citation
+Gramps ID: C1399
+
+Type: citation
+Gramps ID: C1400
+
+Type: citation
+Gramps ID: C1401
+
+Type: citation
+Gramps ID: C1402
+
+Type: citation
+Gramps ID: C1403
+
+Type: citation
+Gramps ID: C1404
+
+Type: citation
+Gramps ID: C1405
+
+Type: citation
+Gramps ID: C1406
+
+Type: citation
+Gramps ID: C1407
+
+Type: citation
+Gramps ID: C1408
+
+Type: citation
+Gramps ID: C1409
+
+Type: citation
+Gramps ID: C1410
+
+Type: citation
+Gramps ID: C1411
+
+Type: citation
+Gramps ID: C1412
+
+Type: citation
+Gramps ID: C1413
+
+Type: citation
+Gramps ID: C1414
+
+Type: citation
+Gramps ID: C1415
+
+Type: citation
+Gramps ID: C1416
+
+Type: citation
+Gramps ID: C1417
+
+Type: citation
+Gramps ID: C1418
+
+Type: citation
+Gramps ID: C1419
+
+Type: citation
+Gramps ID: C1420
+
+Type: citation
+Gramps ID: C1421
+
+Type: citation
+Gramps ID: C1422
+
+Type: citation
+Gramps ID: C1423
+
+Type: citation
+Gramps ID: C1424
+
+Type: citation
+Gramps ID: C1425
+
+Type: citation
+Gramps ID: C1426
+
+Type: citation
+Gramps ID: C1427
+
+Type: citation
+Gramps ID: C1428
+
+Type: citation
+Gramps ID: C1429
+
+Type: citation
+Gramps ID: C1430
+
+Type: citation
+Gramps ID: C1431
+
+Type: citation
+Gramps ID: C1432
+
+Type: citation
+Gramps ID: C1433
+
+Type: citation
+Gramps ID: C1434
+
+Type: citation
+Gramps ID: C1435
+
+Type: citation
+Gramps ID: C1436
+
+Type: citation
+Gramps ID: C1437
+
+Type: citation
+Gramps ID: C1438
+
+Type: citation
+Gramps ID: C1439
+
+Type: citation
+Gramps ID: C1440
+
+Type: citation
+Gramps ID: C1441
+
+Type: citation
+Gramps ID: C1442
+
+Type: citation
+Gramps ID: C1443
+
+Type: citation
+Gramps ID: C1444
+
+Type: citation
+Gramps ID: C1445
+
+Type: citation
+Gramps ID: C1446
+
+Type: citation
+Gramps ID: C1447
+
+Type: citation
+Gramps ID: C1448
+
+Type: citation
+Gramps ID: C1449
+
+Type: citation
+Gramps ID: C1450
+
+Type: citation
+Gramps ID: C1451
+
+Type: citation
+Gramps ID: C1452
+
+Type: citation
+Gramps ID: C1453
+
+Type: citation
+Gramps ID: C1454
+
+Type: citation
+Gramps ID: C1455
+
+Type: citation
+Gramps ID: C1456
+
+Type: citation
+Gramps ID: C1457
+
+Type: citation
+Gramps ID: C1458
+
+Type: citation
+Gramps ID: C1459
+
+Type: citation
+Gramps ID: C1460
+
+Type: citation
+Gramps ID: C1461
+
+Type: citation
+Gramps ID: C1462
+
+Type: citation
+Gramps ID: C1463
+
+Type: citation
+Gramps ID: C1464
+
+Type: citation
+Gramps ID: C1465
+
+Type: citation
+Gramps ID: C1466
+
+Type: citation
+Gramps ID: C1467
+
+Type: citation
+Gramps ID: C1468
+
+Type: citation
+Gramps ID: C1469
+
+Type: citation
+Gramps ID: C1470
+
+Type: citation
+Gramps ID: C1471
+
+Type: citation
+Gramps ID: C1472
+
+Type: citation
+Gramps ID: C1473
+
+Type: citation
+Gramps ID: C1474
+
+Type: citation
+Gramps ID: C1475
+
+Type: citation
+Gramps ID: C1476
+
+Type: citation
+Gramps ID: C1477
+
+Type: citation
+Gramps ID: C1478
+
+Type: citation
+Gramps ID: C1479
+
+Type: citation
+Gramps ID: C1480
+
+Type: citation
+Gramps ID: C1481
+
+Type: citation
+Gramps ID: C1482
+
+Type: citation
+Gramps ID: C1483
+
+Type: citation
+Gramps ID: C1484
+
+Type: citation
+Gramps ID: C1485
+
+Type: citation
+Gramps ID: C1486
+
+Type: citation
+Gramps ID: C1487
+
+Type: citation
+Gramps ID: C1488
+
+Type: citation
+Gramps ID: C1489
+
+Type: citation
+Gramps ID: C1490
+
+Type: citation
+Gramps ID: C1491
+
+Type: citation
+Gramps ID: C1492
+
+Type: citation
+Gramps ID: C1493
+
+Type: citation
+Gramps ID: C1494
+
+Type: citation
+Gramps ID: C1495
+
+Type: citation
+Gramps ID: C1496
+
+Type: citation
+Gramps ID: C1497
+
+Type: citation
+Gramps ID: C1498
+
+Type: citation
+Gramps ID: C1499
+
+Type: citation
+Gramps ID: C1500
+
+Type: citation
+Gramps ID: C1501
+
+Type: citation
+Gramps ID: C1502
+
+Type: citation
+Gramps ID: C1503
+
+Type: citation
+Gramps ID: C1504
+
+Type: citation
+Gramps ID: C1505
+
+Type: citation
+Gramps ID: C1506
+
+Type: citation
+Gramps ID: C1507
+
+Type: citation
+Gramps ID: C1508
+
+Type: citation
+Gramps ID: C1509
+
+Type: citation
+Gramps ID: C1510
+
+Type: citation
+Gramps ID: C1511
+
+Type: citation
+Gramps ID: C1512
+
+Type: citation
+Gramps ID: C1513
+
+Type: citation
+Gramps ID: C1514
+
+Type: citation
+Gramps ID: C1515
+
+Type: citation
+Gramps ID: C1516
+
+Type: citation
+Gramps ID: C1517
+
+Type: citation
+Gramps ID: C1518
+
+Type: citation
+Gramps ID: C1519
+
+Type: citation
+Gramps ID: C1520
+
+Type: citation
+Gramps ID: C1521
+
+Type: citation
+Gramps ID: C1522
+
+Type: citation
+Gramps ID: C1523
+
+Type: citation
+Gramps ID: C1524
+
+Type: citation
+Gramps ID: C1525
+
+Type: citation
+Gramps ID: C1526
+
+Type: citation
+Gramps ID: C1527
+
+Type: citation
+Gramps ID: C1528
+
+Type: citation
+Gramps ID: C1529
+
+Type: citation
+Gramps ID: C1530
+
+Type: citation
+Gramps ID: C1531
+
+Type: citation
+Gramps ID: C1532
+
+Type: citation
+Gramps ID: C1533
+
+Type: citation
+Gramps ID: C1534
+
+Type: citation
+Gramps ID: C1535
+
+Type: citation
+Gramps ID: C1536
+
+Type: citation
+Gramps ID: C1537
+
+Type: citation
+Gramps ID: C1538
+
+Type: citation
+Gramps ID: C1539
+
+Type: citation
+Gramps ID: C1540
+
+Type: citation
+Gramps ID: C1541
+
+Type: citation
+Gramps ID: C1542
+
+Type: citation
+Gramps ID: C1543
+
+Type: citation
+Gramps ID: C1544
+
+Type: citation
+Gramps ID: C1545
+
+Type: citation
+Gramps ID: C1546
+
+Type: citation
+Gramps ID: C1547
+
+Type: citation
+Gramps ID: C1548
+
+Type: citation
+Gramps ID: C1549
+
+Type: citation
+Gramps ID: C1550
+
+Type: citation
+Gramps ID: C1551
+
+Type: citation
+Gramps ID: C1552
+
+Type: citation
+Gramps ID: C1553
+
+Type: citation
+Gramps ID: C1554
+
+Type: citation
+Gramps ID: C1555
+
+Type: citation
+Gramps ID: C1556
+
+Type: citation
+Gramps ID: C1557
+
+Type: citation
+Gramps ID: C1558
+
+Type: citation
+Gramps ID: C1559
+
+Type: citation
+Gramps ID: C1560
+
+Type: citation
+Gramps ID: C1561
+
+Type: citation
+Gramps ID: C1562
+
+Type: citation
+Gramps ID: C1563
+
+Type: citation
+Gramps ID: C1564
+
+Type: citation
+Gramps ID: C1565
+
+Type: citation
+Gramps ID: C1566
+
+Type: citation
+Gramps ID: C1567
+
+Type: citation
+Gramps ID: C1568
+
+Type: citation
+Gramps ID: C1569
+
+Type: citation
+Gramps ID: C1570
+
+Type: citation
+Gramps ID: C1571
+
+Type: citation
+Gramps ID: C1572
+
+Type: citation
+Gramps ID: C1573
+
+Type: citation
+Gramps ID: C1574
+
+Type: citation
+Gramps ID: C1575
+
+Type: citation
+Gramps ID: C1576
+
+Type: citation
+Gramps ID: C1577
+
+Type: citation
+Gramps ID: C1578
+
+Type: citation
+Gramps ID: C1579
+
+Type: citation
+Gramps ID: C1580
+
+Type: citation
+Gramps ID: C1581
+
+Type: citation
+Gramps ID: C1582
+
+Type: citation
+Gramps ID: C1583
+
+Type: citation
+Gramps ID: C1584
+
+Type: citation
+Gramps ID: C1585
+
+Type: citation
+Gramps ID: C1586
+
+Type: citation
+Gramps ID: C1587
+
+Type: citation
+Gramps ID: C1588
+
+Type: citation
+Gramps ID: C1589
+
+Type: citation
+Gramps ID: C1590
+
+Type: citation
+Gramps ID: C1591
+
+Type: citation
+Gramps ID: C1592
+
+Type: citation
+Gramps ID: C1593
+
+Type: citation
+Gramps ID: C1594
+
+Type: citation
+Gramps ID: C1595
+
+Type: citation
+Gramps ID: C1596
+
+Type: citation
+Gramps ID: C1597
+
+Type: citation
+Gramps ID: C1598
+
+Type: citation
+Gramps ID: C1599
+
+Type: citation
+Gramps ID: C1600
+
+Type: citation
+Gramps ID: C1601
+
+Type: citation
+Gramps ID: C1602
+
+Type: citation
+Gramps ID: C1603
+
+Type: citation
+Gramps ID: C1604
+
+Type: citation
+Gramps ID: C1605
+
+Type: citation
+Gramps ID: C1606
+
+Type: citation
+Gramps ID: C1607
+
+Type: citation
+Gramps ID: C1608
+
+Type: citation
+Gramps ID: C1609
+
+Type: citation
+Gramps ID: C1610
+
+Type: citation
+Gramps ID: C1611
+
+Type: citation
+Gramps ID: C1612
+
+Type: citation
+Gramps ID: C1613
+
+Type: citation
+Gramps ID: C1614
+
+Type: citation
+Gramps ID: C1615
+
+Type: citation
+Gramps ID: C1616
+
+Type: citation
+Gramps ID: C1617
+
+Type: citation
+Gramps ID: C1618
+
+Type: citation
+Gramps ID: C1619
+
+Type: citation
+Gramps ID: C1620
+
+Type: citation
+Gramps ID: C1621
+
+Type: citation
+Gramps ID: C1622
+
+Type: citation
+Gramps ID: C1623
+
+Type: citation
+Gramps ID: C1624
+
+Type: citation
+Gramps ID: C1625
+
+Type: citation
+Gramps ID: C1626
+
+Type: citation
+Gramps ID: C1627
+
+Type: citation
+Gramps ID: C1628
+
+Type: citation
+Gramps ID: C1629
+
+Type: citation
+Gramps ID: C1630
+
+Type: citation
+Gramps ID: C1631
+
+Type: citation
+Gramps ID: C1632
+
+Type: citation
+Gramps ID: C1633
+
+Type: citation
+Gramps ID: C1634
+
+Type: citation
+Gramps ID: C1635
+
+Type: citation
+Gramps ID: C1636
+
+Type: citation
+Gramps ID: C1637
+
+Type: citation
+Gramps ID: C1638
+
+Type: citation
+Gramps ID: C1639
+
+Type: citation
+Gramps ID: C1640
+
+Type: citation
+Gramps ID: C1641
+
+Type: citation
+Gramps ID: C1642
+
+Type: citation
+Gramps ID: C1643
+
+Type: citation
+Gramps ID: C1644
+
+Type: citation
+Gramps ID: C1645
+
+Type: citation
+Gramps ID: C1646
+
+Type: citation
+Gramps ID: C1647
+
+Type: citation
+Gramps ID: C1648
+
+Type: citation
+Gramps ID: C1649
+
+Type: citation
+Gramps ID: C1650
+
+Type: citation
+Gramps ID: C1651
+
+Type: citation
+Gramps ID: C1652
+
+Type: citation
+Gramps ID: C1653
+
+Type: citation
+Gramps ID: C1654
+
+Type: citation
+Gramps ID: C1655
+
+Type: citation
+Gramps ID: C1656
+
+Type: citation
+Gramps ID: C1657
+
+Type: citation
+Gramps ID: C1658
+
+Type: citation
+Gramps ID: C1659
+
+Type: citation
+Gramps ID: C1660
+
+Type: citation
+Gramps ID: C1661
+
+Type: citation
+Gramps ID: C1662
+
+Type: citation
+Gramps ID: C1663
+
+Type: citation
+Gramps ID: C1664
+
+Type: citation
+Gramps ID: C1665
+
+Type: citation
+Gramps ID: C1666
+
+Type: citation
+Gramps ID: C1667
+
+Type: citation
+Gramps ID: C1668
+
+Type: citation
+Gramps ID: C1669
+
+Type: citation
+Gramps ID: C1670
+
+Type: citation
+Gramps ID: C1671
+
+Type: citation
+Gramps ID: C1672
+
+Type: citation
+Gramps ID: C1673
+
+Type: citation
+Gramps ID: C1674
+
+Type: citation
+Gramps ID: C1675
+
+Type: citation
+Gramps ID: C1676
+
+Type: citation
+Gramps ID: C1677
+
+Type: citation
+Gramps ID: C1678
+
+Type: citation
+Gramps ID: C1679
+
+Type: citation
+Gramps ID: C1680
+
+Type: citation
+Gramps ID: C1681
+
+Type: citation
+Gramps ID: C1682
+
+Type: citation
+Gramps ID: C1683
+
+Type: citation
+Gramps ID: C1684
+
+Type: citation
+Gramps ID: C1685
+
+Type: citation
+Gramps ID: C1686
+
+Type: citation
+Gramps ID: C1687
+
+Type: citation
+Gramps ID: C1688
+
+Type: citation
+Gramps ID: C1689
+
+Type: citation
+Gramps ID: C1690
+
+Type: citation
+Gramps ID: C1691
+
+Type: citation
+Gramps ID: C1692
+
+Type: citation
+Gramps ID: C1693
+
+Type: citation
+Gramps ID: C1694
+
+Type: citation
+Gramps ID: C1695
+
+Type: citation
+Gramps ID: C1696
+
+Type: citation
+Gramps ID: C1697
+
+Type: citation
+Gramps ID: C1698
+
+Type: citation
+Gramps ID: C1699
+
+Type: citation
+Gramps ID: C1700
+
+Type: citation
+Gramps ID: C1701
+
+Type: citation
+Gramps ID: C1702
+
+Type: citation
+Gramps ID: C1703
+
+Type: citation
+Gramps ID: C1704
+
+Type: citation
+Gramps ID: C1705
+
+Type: citation
+Gramps ID: C1706
+
+Type: citation
+Gramps ID: C1707
+
+Type: citation
+Gramps ID: C1708
+
+Type: citation
+Gramps ID: C1709
+
+Type: citation
+Gramps ID: C1710
+
+Type: citation
+Gramps ID: C1711
+
+Type: citation
+Gramps ID: C1712
+
+Type: citation
+Gramps ID: C1713
+
+Type: citation
+Gramps ID: C1714
+
+Type: citation
+Gramps ID: C1715
+
+Type: citation
+Gramps ID: C1716
+
+Type: citation
+Gramps ID: C1717
+
+Type: citation
+Gramps ID: C1718
+
+Type: citation
+Gramps ID: C1719
+
+Type: citation
+Gramps ID: C1720
+
+Type: citation
+Gramps ID: C1721
+
+Type: citation
+Gramps ID: C1722
+
+Type: citation
+Gramps ID: C1723
+
+Type: citation
+Gramps ID: C1724
+
+Type: citation
+Gramps ID: C1725
+
+Type: citation
+Gramps ID: C1726
+
+Type: citation
+Gramps ID: C1727
+
+Type: citation
+Gramps ID: C1728
+
+Type: citation
+Gramps ID: C1729
+
+Type: citation
+Gramps ID: C1730
+
+Type: citation
+Gramps ID: C1731
+
+Type: citation
+Gramps ID: C1732
+
+Type: citation
+Gramps ID: C1733
+
+Type: citation
+Gramps ID: C1734
+
+Type: citation
+Gramps ID: C1735
+
+Type: citation
+Gramps ID: C1736
+
+Type: citation
+Gramps ID: C1737
+
+Type: citation
+Gramps ID: C1738
+
+Type: citation
+Gramps ID: C1739
+
+Type: citation
+Gramps ID: C1740
+
+Type: citation
+Gramps ID: C1741
+
+Type: citation
+Gramps ID: C1742
+
+Type: citation
+Gramps ID: C1743
+
+Type: citation
+Gramps ID: C1744
+
+Type: citation
+Gramps ID: C1745
+
+Type: citation
+Gramps ID: C1746
+
+Type: citation
+Gramps ID: C1747
+
+Type: citation
+Gramps ID: C1748
+
+Type: citation
+Gramps ID: C1749
+
+Type: citation
+Gramps ID: C1750
+
+Type: citation
+Gramps ID: C1751
+
+Type: citation
+Gramps ID: C1752
+
+Type: citation
+Gramps ID: C1753
+
+Type: citation
+Gramps ID: C1754
+
+Type: citation
+Gramps ID: C1755
+
+Type: citation
+Gramps ID: C1756
+
+Type: citation
+Gramps ID: C1757
+
+Type: citation
+Gramps ID: C1758
+
+Type: citation
+Gramps ID: C1759
+
+Type: citation
+Gramps ID: C1760
+
+Type: citation
+Gramps ID: C1761
+
+Type: citation
+Gramps ID: C1762
+
+Type: citation
+Gramps ID: C1763
+
+Type: citation
+Gramps ID: C1764
+
+Type: citation
+Gramps ID: C1765
+
+Type: citation
+Gramps ID: C1766
+
+Type: citation
+Gramps ID: C1767
+
+Type: citation
+Gramps ID: C1768
+
+Type: citation
+Gramps ID: C1769
+
+Type: citation
+Gramps ID: C1770
+
+Type: citation
+Gramps ID: C1771
+
+Type: citation
+Gramps ID: C1772
+
+Type: citation
+Gramps ID: C1773
+
+Type: citation
+Gramps ID: C1774
+
+Type: citation
+Gramps ID: C1775
+
+Type: citation
+Gramps ID: C1776
+
+Type: citation
+Gramps ID: C1777
+
+Type: citation
+Gramps ID: C1778
+
+Type: citation
+Gramps ID: C1779
+
+Type: citation
+Gramps ID: C1780
+
+Type: citation
+Gramps ID: C1781
+
+Type: citation
+Gramps ID: C1782
+
+Type: citation
+Gramps ID: C1783
+
+Type: citation
+Gramps ID: C1784
+
+Type: citation
+Gramps ID: C1785
+
+Type: citation
+Gramps ID: C1786
+
+Type: citation
+Gramps ID: C1787
+
+Type: citation
+Gramps ID: C1788
+
+Type: citation
+Gramps ID: C1789
+
+Type: citation
+Gramps ID: C1790
+
+Type: citation
+Gramps ID: C1791
+
+Type: citation
+Gramps ID: C1792
+
+Type: citation
+Gramps ID: C1793
+
+Type: citation
+Gramps ID: C1794
+
+Type: citation
+Gramps ID: C1795
+
+Type: citation
+Gramps ID: C1796
+
+Type: citation
+Gramps ID: C1797
+
+Type: citation
+Gramps ID: C1798
+
+Type: citation
+Gramps ID: C1799
+
+Type: citation
+Gramps ID: C1800
+
+Type: citation
+Gramps ID: C1801
+
+Type: citation
+Gramps ID: C1802
+
+Type: citation
+Gramps ID: C1803
+
+Type: citation
+Gramps ID: C1804
+
+Type: citation
+Gramps ID: C1805
+
+Type: citation
+Gramps ID: C1806
+
+Type: citation
+Gramps ID: C1807
+
+Type: citation
+Gramps ID: C1808
+
+Type: citation
+Gramps ID: C1809
+
+Type: citation
+Gramps ID: C1810
+
+Type: citation
+Gramps ID: C1811
+
+Type: citation
+Gramps ID: C1812
+
+Type: citation
+Gramps ID: C1813
+
+Type: citation
+Gramps ID: C1814
+
+Type: citation
+Gramps ID: C1815
+
+Type: citation
+Gramps ID: C1816
+
+Type: citation
+Gramps ID: C1817
+
+Type: citation
+Gramps ID: C1818
+
+Type: citation
+Gramps ID: C1819
+
+Type: citation
+Gramps ID: C1820
+
+Type: citation
+Gramps ID: C1821
+
+Type: citation
+Gramps ID: C1822
+
+Type: citation
+Gramps ID: C1823
+
+Type: citation
+Gramps ID: C1824
+
+Type: citation
+Gramps ID: C1825
+
+Type: citation
+Gramps ID: C1826
+
+Type: citation
+Gramps ID: C1827
+
+Type: citation
+Gramps ID: C1828
+
+Type: citation
+Gramps ID: C1829
+
+Type: citation
+Gramps ID: C1830
+
+Type: citation
+Gramps ID: C1831
+
+Type: citation
+Gramps ID: C1832
+
+Type: citation
+Gramps ID: C1833
+
+Type: citation
+Gramps ID: C1834
+
+Type: citation
+Gramps ID: C1835
+
+Type: citation
+Gramps ID: C1836
+
+Type: citation
+Gramps ID: C1837
+
+Type: citation
+Gramps ID: C1838
+
+Type: citation
+Gramps ID: C1839
+
+Type: citation
+Gramps ID: C1840
+
+Type: citation
+Gramps ID: C1841
+
+Type: citation
+Gramps ID: C1842
+
+Type: citation
+Gramps ID: C1843
+
+Type: citation
+Gramps ID: C1844
+
+Type: citation
+Gramps ID: C1845
+
+Type: citation
+Gramps ID: C1846
+
+Type: citation
+Gramps ID: C1847
+
+Type: citation
+Gramps ID: C1848
+
+Type: citation
+Gramps ID: C1849
+
+Type: citation
+Gramps ID: C1850
+
+Type: citation
+Gramps ID: C1851
+
+Type: citation
+Gramps ID: C1852
+
+Type: citation
+Gramps ID: C1853
+
+Type: citation
+Gramps ID: C1854
+
+Type: citation
+Gramps ID: C1855
+
+Type: citation
+Gramps ID: C1856
+
+Type: citation
+Gramps ID: C1857
+
+Type: citation
+Gramps ID: C1858
+
+Type: citation
+Gramps ID: C1859
+
+Type: citation
+Gramps ID: C1860
+
+Type: citation
+Gramps ID: C1861
+
+Type: citation
+Gramps ID: C1862
+
+Type: citation
+Gramps ID: C1863
+
+Type: citation
+Gramps ID: C1864
+
+Type: citation
+Gramps ID: C1865
+
+Type: citation
+Gramps ID: C1866
+
+Type: citation
+Gramps ID: C1867
+
+Type: citation
+Gramps ID: C1868
+
+Type: citation
+Gramps ID: C1869
+
+Type: citation
+Gramps ID: C1870
+
+Type: citation
+Gramps ID: C1871
+
+Type: citation
+Gramps ID: C1872
+
+Type: citation
+Gramps ID: C1873
+
+Type: citation
+Gramps ID: C1874
+
+Type: citation
+Gramps ID: C1875
+
+Type: citation
+Gramps ID: C1876
+
+Type: citation
+Gramps ID: C1877
+
+Type: citation
+Gramps ID: C1878
+
+Type: citation
+Gramps ID: C1879
+
+Type: citation
+Gramps ID: C1880
+
+Type: citation
+Gramps ID: C1881
+
+Type: citation
+Gramps ID: C1882
+
+Type: citation
+Gramps ID: C1883
+
+Type: citation
+Gramps ID: C1884
+
+Type: citation
+Gramps ID: C1885
+
+Type: citation
+Gramps ID: C1886
+
+Type: citation
+Gramps ID: C1887
+
+Type: citation
+Gramps ID: C1888
+
+Type: citation
+Gramps ID: C1889
+
+Type: citation
+Gramps ID: C1890
+
+Type: citation
+Gramps ID: C1891
+
+Type: citation
+Gramps ID: C1892
+
+Type: citation
+Gramps ID: C1893
+
+Type: citation
+Gramps ID: C1894
+
+Type: citation
+Gramps ID: C1895
+
+Type: citation
+Gramps ID: C1896
+
+Type: citation
+Gramps ID: C1897
+
+Type: citation
+Gramps ID: C1898
+
+Type: citation
+Gramps ID: C1899
+
+Type: citation
+Gramps ID: C1900
+
+Type: citation
+Gramps ID: C1901
+
+Type: citation
+Gramps ID: C1902
+
+Type: citation
+Gramps ID: C1903
+
+Type: citation
+Gramps ID: C1904
+
+Type: citation
+Gramps ID: C1905
+
+Type: citation
+Gramps ID: C1906
+
+Type: citation
+Gramps ID: C1907
+
+Type: citation
+Gramps ID: C1908
+
+Type: citation
+Gramps ID: C1909
+
+Type: citation
+Gramps ID: C1910
+
+Type: citation
+Gramps ID: C1911
+
+Type: citation
+Gramps ID: C1912
+
+Type: citation
+Gramps ID: C1913
+
+Type: citation
+Gramps ID: C1914
+
+Type: citation
+Gramps ID: C1915
+
+Type: citation
+Gramps ID: C1916
+
+Type: citation
+Gramps ID: C1917
+
+Type: citation
+Gramps ID: C1918
+
+Type: citation
+Gramps ID: C1919
+
+Type: citation
+Gramps ID: C1920
+
+Type: citation
+Gramps ID: C1921
+
+Type: citation
+Gramps ID: C1922
+
+Type: citation
+Gramps ID: C1923
+
+Type: citation
+Gramps ID: C1924
+
+Type: citation
+Gramps ID: C1925
+
+Type: citation
+Gramps ID: C1926
+
+Type: citation
+Gramps ID: C1927
+
+Type: citation
+Gramps ID: C1928
+
+Type: citation
+Gramps ID: C1929
+
+Type: citation
+Gramps ID: C1930
+
+Type: citation
+Gramps ID: C1931
+
+Type: citation
+Gramps ID: C1932
+
+Type: citation
+Gramps ID: C1933
+
+Type: citation
+Gramps ID: C1934
+
+Type: citation
+Gramps ID: C1935
+
+Type: citation
+Gramps ID: C1936
+
+Type: citation
+Gramps ID: C1937
+
+Type: citation
+Gramps ID: C1938
+
+Type: citation
+Gramps ID: C1939
+
+Type: citation
+Gramps ID: C1940
+
+Type: citation
+Gramps ID: C1941
+
+Type: citation
+Gramps ID: C1942
+
+Type: citation
+Gramps ID: C1943
+
+Type: citation
+Gramps ID: C1944
+
+Type: citation
+Gramps ID: C1945
+
+Type: citation
+Gramps ID: C1946
+
+Type: citation
+Gramps ID: C1947
+
+Type: citation
+Gramps ID: C1948
+
+Type: citation
+Gramps ID: C1949
+
+Type: citation
+Gramps ID: C1950
+
+Type: citation
+Gramps ID: C1951
+
+Type: citation
+Gramps ID: C1952
+
+Type: citation
+Gramps ID: C1953
+
+Type: citation
+Gramps ID: C1954
+
+Type: citation
+Gramps ID: C1955
+
+Type: citation
+Gramps ID: C1956
+
+Type: citation
+Gramps ID: C1957
+
+Type: citation
+Gramps ID: C1958
+
+Type: citation
+Gramps ID: C1959
+
+Type: citation
+Gramps ID: C1960
+
+Type: citation
+Gramps ID: C1961
+
+Type: citation
+Gramps ID: C1962
+
+Type: citation
+Gramps ID: C1963
+
+Type: citation
+Gramps ID: C1964
+
+Type: citation
+Gramps ID: C1965
+
+Type: citation
+Gramps ID: C1966
+
+Type: citation
+Gramps ID: C1967
+
+Type: citation
+Gramps ID: C1968
+
+Type: citation
+Gramps ID: C1969
+
+Type: citation
+Gramps ID: C1970
+
+Type: citation
+Gramps ID: C1971
+
+Type: citation
+Gramps ID: C1972
+
+Type: citation
+Gramps ID: C1973
+
+Type: citation
+Gramps ID: C1974
+
+Type: citation
+Gramps ID: C1975
+
+Type: citation
+Gramps ID: C1976
+
+Type: citation
+Gramps ID: C1977
+
+Type: citation
+Gramps ID: C1978
+
+Type: citation
+Gramps ID: C1979
+
+Type: citation
+Gramps ID: C1980
+
+Type: citation
+Gramps ID: C1981
+
+Type: citation
+Gramps ID: C1982
+
+Type: citation
+Gramps ID: C1983
+
+Type: citation
+Gramps ID: C1984
+
+Type: citation
+Gramps ID: C1985
+
+Type: citation
+Gramps ID: C1986
+
+Type: citation
+Gramps ID: C1987
+
+Type: citation
+Gramps ID: C1988
+
+Type: citation
+Gramps ID: C1989
+
+Type: citation
+Gramps ID: C1990
+
+Type: citation
+Gramps ID: C1991
+
+Type: citation
+Gramps ID: C1992
+
+Type: citation
+Gramps ID: C1993
+
+Type: citation
+Gramps ID: C1994
+
+Type: citation
+Gramps ID: C1995
+
+Type: citation
+Gramps ID: C1996
+
+Type: citation
+Gramps ID: C1997
+
+Type: citation
+Gramps ID: C1998
+
+Type: citation
+Gramps ID: C1999
+
+Type: citation
+Gramps ID: C2000
+
+Type: citation
+Gramps ID: C2001
+
+Type: citation
+Gramps ID: C2002
+
+Type: citation
+Gramps ID: C2003
+
+Type: citation
+Gramps ID: C2004
+
+Type: citation
+Gramps ID: C2005
+
+Type: citation
+Gramps ID: C2006
+
+Type: citation
+Gramps ID: C2007
+
+Type: citation
+Gramps ID: C2008
+
+Type: citation
+Gramps ID: C2009
+
+Type: citation
+Gramps ID: C2010
+
+Type: citation
+Gramps ID: C2011
+
+Type: citation
+Gramps ID: C2012
+
+Type: citation
+Gramps ID: C2013
+
+Type: citation
+Gramps ID: C2014
+
+Type: citation
+Gramps ID: C2015
+
+Type: citation
+Gramps ID: C2016
+
+Type: citation
+Gramps ID: C2017
+
+Type: citation
+Gramps ID: C2018
+
+Type: citation
+Gramps ID: C2019
+
+Type: citation
+Gramps ID: C2020
+
+Type: citation
+Gramps ID: C2021
+
+Type: citation
+Gramps ID: C2022
+
+Type: citation
+Gramps ID: C2023
+
+Type: citation
+Gramps ID: C2024
+
+Type: citation
+Gramps ID: C2025
+
+Type: citation
+Gramps ID: C2026
+
+Type: citation
+Gramps ID: C2027
+
+Type: citation
+Gramps ID: C2028
+
+Type: citation
+Gramps ID: C2029
+
+Type: citation
+Gramps ID: C2030
+
+Type: citation
+Gramps ID: C2031
+
+Type: citation
+Gramps ID: C2032
+
+Type: citation
+Gramps ID: C2033
+
+Type: citation
+Gramps ID: C2034
+
+Type: citation
+Gramps ID: C2035
+
+Type: citation
+Gramps ID: C2036
+
+Type: citation
+Gramps ID: C2037
+
+Type: citation
+Gramps ID: C2038
+
+Type: citation
+Gramps ID: C2039
+
+Type: citation
+Gramps ID: C2040
+
+Type: citation
+Gramps ID: C2041
+
+Type: citation
+Gramps ID: C2042
+
+Type: citation
+Gramps ID: C2043
+
+Type: citation
+Gramps ID: C2044
+
+Type: citation
+Gramps ID: C2045
+
+Type: citation
+Gramps ID: C2046
+
+Type: citation
+Gramps ID: C2047
+
+Type: citation
+Gramps ID: C2048
+
+Type: citation
+Gramps ID: C2049
+
+Type: citation
+Gramps ID: C2050
+
+Type: citation
+Gramps ID: C2051
+
+Type: citation
+Gramps ID: C2052
+
+Type: citation
+Gramps ID: C2053
+
+Type: citation
+Gramps ID: C2054
+
+Type: citation
+Gramps ID: C2055
+
+Type: citation
+Gramps ID: C2056
+
+Type: citation
+Gramps ID: C2057
+
+Type: citation
+Gramps ID: C2058
+
+Type: citation
+Gramps ID: C2059
+
+Type: citation
+Gramps ID: C2060
+
+Type: citation
+Gramps ID: C2061
+
+Type: citation
+Gramps ID: C2062
+
+Type: citation
+Gramps ID: C2063
+
+Type: citation
+Gramps ID: C2064
+
+Type: citation
+Gramps ID: C2065
+
+Type: citation
+Gramps ID: C2066
+
+Type: citation
+Gramps ID: C2067
+
+Type: citation
+Gramps ID: C2068
+
+Type: citation
+Gramps ID: C2069
+
+Type: citation
+Gramps ID: C2070
+
+Type: citation
+Gramps ID: C2071
+
+Type: citation
+Gramps ID: C2072
+
+Type: citation
+Gramps ID: C2073
+
+Type: citation
+Gramps ID: C2074
+
+Type: citation
+Gramps ID: C2075
+
+Type: citation
+Gramps ID: C2076
+
+Type: citation
+Gramps ID: C2077
+
+Type: citation
+Gramps ID: C2078
+
+Type: citation
+Gramps ID: C2079
+
+Type: citation
+Gramps ID: C2080
+
+Type: citation
+Gramps ID: C2081
+
+Type: citation
+Gramps ID: C2082
+
+Type: citation
+Gramps ID: C2083
+
+Type: citation
+Gramps ID: C2084
+
+Type: citation
+Gramps ID: C2085
+
+Type: citation
+Gramps ID: C2086
+
+Type: citation
+Gramps ID: C2087
+
+Type: citation
+Gramps ID: C2088
+
+Type: citation
+Gramps ID: C2089
+
+Type: citation
+Gramps ID: C2090
+
+Type: citation
+Gramps ID: C2091
+
+Type: citation
+Gramps ID: C2092
+
+Type: citation
+Gramps ID: C2093
+
+Type: citation
+Gramps ID: C2094
+
+Type: citation
+Gramps ID: C2095
+
+Type: citation
+Gramps ID: C2096
+
+Type: citation
+Gramps ID: C2097
+
+Type: citation
+Gramps ID: C2098
+
+Type: citation
+Gramps ID: C2099
+
+Type: citation
+Gramps ID: C2100
+
+Type: citation
+Gramps ID: C2101
+
+Type: citation
+Gramps ID: C2102
+
+Type: citation
+Gramps ID: C2103
+
+Type: citation
+Gramps ID: C2104
+
+Type: citation
+Gramps ID: C2105
+
+Type: citation
+Gramps ID: C2106
+
+Type: citation
+Gramps ID: C2107
+
+Type: citation
+Gramps ID: C2108
+
+Type: citation
+Gramps ID: C2109
+
+Type: citation
+Gramps ID: C2110
+
+Type: citation
+Gramps ID: C2111
+
+Type: citation
+Gramps ID: C2112
+
+Type: citation
+Gramps ID: C2113
+
+Type: citation
+Gramps ID: C2114
+
+Type: citation
+Gramps ID: C2115
+
+Type: citation
+Gramps ID: C2116
+
+Type: citation
+Gramps ID: C2117
+
+Type: citation
+Gramps ID: C2118
+
+Type: citation
+Gramps ID: C2119
+
+Type: citation
+Gramps ID: C2120
+
+Type: citation
+Gramps ID: C2121
+
+Type: citation
+Gramps ID: C2122
+
+Type: citation
+Gramps ID: C2123
+
+Type: citation
+Gramps ID: C2124
+
+Type: citation
+Gramps ID: C2125
+
+Type: citation
+Gramps ID: C2126
+
+Type: citation
+Gramps ID: C2127
+
+Type: citation
+Gramps ID: C2128
+
+Type: citation
+Gramps ID: C2129
+
+Type: citation
+Gramps ID: C2130
+
+Type: citation
+Gramps ID: C2131
+
+Type: citation
+Gramps ID: C2132
+
+Type: citation
+Gramps ID: C2133
+
+Type: citation
+Gramps ID: C2134
+
+Type: citation
+Gramps ID: C2135
+
+Type: citation
+Gramps ID: C2136
+
+Type: citation
+Gramps ID: C2137
+
+Type: citation
+Gramps ID: C2138
+
+Type: citation
+Gramps ID: C2139
+
+Type: citation
+Gramps ID: C2140
+
+Type: citation
+Gramps ID: C2141
+
+Type: citation
+Gramps ID: C2142
+
+Type: citation
+Gramps ID: C2143
+
+Type: citation
+Gramps ID: C2144
+
+Type: citation
+Gramps ID: C2145
+
+Type: citation
+Gramps ID: C2146
+
+Type: citation
+Gramps ID: C2147
+
+Type: citation
+Gramps ID: C2148
+
+Type: citation
+Gramps ID: C2149
+
+Type: citation
+Gramps ID: C2150
+
+Type: citation
+Gramps ID: C2151
+
+Type: citation
+Gramps ID: C2152
+
+Type: citation
+Gramps ID: C2153
+
+Type: citation
+Gramps ID: C2154
+
+Type: citation
+Gramps ID: C2155
+
+Type: citation
+Gramps ID: C2156
+
+Type: citation
+Gramps ID: C2157
+
+Type: citation
+Gramps ID: C2158
+
+Type: citation
+Gramps ID: C2159
+
+Type: citation
+Gramps ID: C2160
+
+Type: citation
+Gramps ID: C2161
+
+Type: citation
+Gramps ID: C2162
+
+Type: citation
+Gramps ID: C2163
+
+Type: citation
+Gramps ID: C2164
+
+Type: citation
+Gramps ID: C2165
+
+Type: citation
+Gramps ID: C2166
+
+Type: citation
+Gramps ID: C2167
+
+Type: citation
+Gramps ID: C2168
+
+Type: citation
+Gramps ID: C2169
+
+Type: citation
+Gramps ID: C2170
+
+Type: citation
+Gramps ID: C2171
+
+Type: citation
+Gramps ID: C2172
+
+Type: citation
+Gramps ID: C2173
+
+Type: citation
+Gramps ID: C2174
+
+Type: citation
+Gramps ID: C2175
+
+Type: citation
+Gramps ID: C2176
+
+Type: citation
+Gramps ID: C2177
+
+Type: citation
+Gramps ID: C2178
+
+Type: citation
+Gramps ID: C2179
+
+Type: citation
+Gramps ID: C2180
+
+Type: citation
+Gramps ID: C2181
+
+Type: citation
+Gramps ID: C2182
+
+Type: citation
+Gramps ID: C2183
+
+Type: citation
+Gramps ID: C2184
+
+Type: citation
+Gramps ID: C2185
+
+Type: citation
+Gramps ID: C2186
+
+Type: citation
+Gramps ID: C2187
+
+Type: citation
+Gramps ID: C2188
+
+Type: citation
+Gramps ID: C2189
+
+Type: citation
+Gramps ID: C2190
+
+Type: citation
+Gramps ID: C2191
+
+Type: citation
+Gramps ID: C2192
+
+Type: citation
+Gramps ID: C2193
+
+Type: citation
+Gramps ID: C2194
+
+Type: citation
+Gramps ID: C2195
+
+Type: citation
+Gramps ID: C2196
+
+Type: citation
+Gramps ID: C2197
+
+Type: citation
+Gramps ID: C2198
+
+Type: citation
+Gramps ID: C2199
+
+Type: citation
+Gramps ID: C2200
+
+Type: citation
+Gramps ID: C2201
+
+Type: citation
+Gramps ID: C2202
+
+Type: citation
+Gramps ID: C2203
+
+Type: citation
+Gramps ID: C2204
+
+Type: citation
+Gramps ID: C2205
+
+Type: citation
+Gramps ID: C2206
+
+Type: citation
+Gramps ID: C2207
+
+Type: citation
+Gramps ID: C2208
+
+Type: citation
+Gramps ID: C2209
+
+Type: citation
+Gramps ID: C2210
+
+Type: citation
+Gramps ID: C2211
+
+Type: citation
+Gramps ID: C2212
+
+Type: citation
+Gramps ID: C2213
+
+Type: citation
+Gramps ID: C2214
+
+Type: citation
+Gramps ID: C2215
+
+Type: citation
+Gramps ID: C2216
+
+Type: citation
+Gramps ID: C2217
+
+Type: citation
+Gramps ID: C2218
+
+Type: citation
+Gramps ID: C2219
+
+Type: citation
+Gramps ID: C2220
+
+Type: citation
+Gramps ID: C2221
+
+Type: citation
+Gramps ID: C2222
+
+Type: citation
+Gramps ID: C2223
+
+Type: citation
+Gramps ID: C2224
+
+Type: citation
+Gramps ID: C2225
+
+Type: citation
+Gramps ID: C2226
+
+Type: citation
+Gramps ID: C2227
+
+Type: citation
+Gramps ID: C2228
+
+Type: citation
+Gramps ID: C2229
+
+Type: citation
+Gramps ID: C2230
+
+Type: citation
+Gramps ID: C2231
+
+Type: citation
+Gramps ID: C2232
+
+Type: citation
+Gramps ID: C2233
+
+Type: citation
+Gramps ID: C2234
+
+Type: citation
+Gramps ID: C2235
+
+Type: citation
+Gramps ID: C2236
+
+Type: citation
+Gramps ID: C2237
+
+Type: citation
+Gramps ID: C2238
+
+Type: citation
+Gramps ID: C2239
+
+Type: citation
+Gramps ID: C2240
+
+Type: citation
+Gramps ID: C2241
+
+Type: citation
+Gramps ID: C2242
+
+Type: citation
+Gramps ID: C2243
+
+Type: citation
+Gramps ID: C2244
+
+Type: citation
+Gramps ID: C2245
+
+Type: citation
+Gramps ID: C2246
+
+Type: citation
+Gramps ID: C2247
+
+Type: citation
+Gramps ID: C2248
+
+Type: citation
+Gramps ID: C2249
+
+Type: citation
+Gramps ID: C2250
+
+Type: citation
+Gramps ID: C2251
+
+Type: citation
+Gramps ID: C2252
+
+Type: citation
+Gramps ID: C2253
+
+Type: citation
+Gramps ID: C2254
+
+Type: citation
+Gramps ID: C2255
+
+Type: citation
+Gramps ID: C2256
+
+Type: citation
+Gramps ID: C2257
+
+Type: citation
+Gramps ID: C2258
+
+Type: citation
+Gramps ID: C2259
+
+Type: citation
+Gramps ID: C2260
+
+Type: citation
+Gramps ID: C2261
+
+Type: citation
+Gramps ID: C2262
+
+Type: citation
+Gramps ID: C2263
+
+Type: citation
+Gramps ID: C2264
+
+Type: citation
+Gramps ID: C2265
+
+Type: citation
+Gramps ID: C2266
+
+Type: citation
+Gramps ID: C2267
+
+Type: citation
+Gramps ID: C2268
+
+Type: citation
+Gramps ID: C2269
+
+Type: citation
+Gramps ID: C2270
+
+Type: citation
+Gramps ID: C2271
+
+Type: citation
+Gramps ID: C2272
+
+Type: citation
+Gramps ID: C2273
+
+Type: citation
+Gramps ID: C2274
+
+Type: citation
+Gramps ID: C2275
+
+Type: citation
+Gramps ID: C2276
+
+Type: citation
+Gramps ID: C2277
+
+Type: citation
+Gramps ID: C2278
+
+Type: citation
+Gramps ID: C2279
+
+Type: citation
+Gramps ID: C2280
+
+Type: citation
+Gramps ID: C2281
+
+Type: citation
+Gramps ID: C2282
+
+Type: citation
+Gramps ID: C2283
+
+Type: citation
+Gramps ID: C2284
+
+Type: citation
+Gramps ID: C2285
+
+Type: citation
+Gramps ID: C2286
+
+Type: citation
+Gramps ID: C2287
+
+Type: citation
+Gramps ID: C2288
+
+Type: citation
+Gramps ID: C2289
+
+Type: citation
+Gramps ID: C2290
+
+Type: citation
+Gramps ID: C2291
+
+Type: citation
+Gramps ID: C2292
+
+Type: citation
+Gramps ID: C2293
+
+Type: citation
+Gramps ID: C2294
+
+Type: citation
+Gramps ID: C2295
+
+Type: citation
+Gramps ID: C2296
+
+Type: citation
+Gramps ID: C2297
+
+Type: citation
+Gramps ID: C2298
+
+Type: citation
+Gramps ID: C2299
+
+Type: citation
+Gramps ID: C2300
+
+Type: citation
+Gramps ID: C2301
+
+Type: citation
+Gramps ID: C2302
+
+Type: citation
+Gramps ID: C2303
+
+Type: citation
+Gramps ID: C2304
+
+Type: citation
+Gramps ID: C2305
+
+Type: citation
+Gramps ID: C2306
+
+Type: citation
+Gramps ID: C2307
+
+Type: citation
+Gramps ID: C2308
+
+Type: citation
+Gramps ID: C2309
+
+Type: citation
+Gramps ID: C2310
+
+Type: citation
+Gramps ID: C2311
+
+Type: citation
+Gramps ID: C2312
+
+Type: citation
+Gramps ID: C2313
+
+Type: citation
+Gramps ID: C2314
+
+Type: citation
+Gramps ID: C2315
+
+Type: citation
+Gramps ID: C2316
+
+Type: citation
+Gramps ID: C2317
+
+Type: citation
+Gramps ID: C2318
+
+Type: citation
+Gramps ID: C2319
+
+Type: citation
+Gramps ID: C2320
+
+Type: citation
+Gramps ID: C2321
+
+Type: citation
+Gramps ID: C2322
+
+Type: citation
+Gramps ID: C2323
+
+Type: citation
+Gramps ID: C2842
+Page/Volume: page 15
+
+Type: citation
+Gramps ID: C2841
+Page/Volume: page 14
+
+Type: citation
+Gramps ID: C2840
+Page/Volume: page 13
+
+Type: citation
+Gramps ID: C2839
+Page/Volume: page 12
+
+Type: citation
+Gramps ID: C2324
+Page/Volume: Page pi
+
+Type: citation
+Gramps ID: C2838
+Page/Volume: page 11
+
+Type: citation
+Gramps ID: C2325
+
+Type: citation
+Gramps ID: C2837
+Page/Volume: page 10
+
+Type: citation
+Gramps ID: C2326
+
+Type: citation
+Gramps ID: C2327
+
+Type: citation
+Gramps ID: C2328
+
+Type: citation
+Gramps ID: C2329
+
+Type: citation
+Gramps ID: C2330
+
+Type: citation
+Gramps ID: C2331
+
+Type: citation
+Gramps ID: C2332
+
+Type: citation
+Gramps ID: C2333
+
+Type: citation
+Gramps ID: C2334
+
+Type: citation
+Gramps ID: C2335
+
+Type: citation
+Gramps ID: C2336
+
+Type: citation
+Gramps ID: C2337
+
+Type: citation
+Gramps ID: C2338
+
+Type: citation
+Gramps ID: C2339
+
+Type: citation
+Gramps ID: C2340
+
+Type: citation
+Gramps ID: C2341
+
+Type: citation
+Gramps ID: C2342
+
+Type: citation
+Gramps ID: C2343
+
+Type: citation
+Gramps ID: C2344
+
+Type: citation
+Gramps ID: C2345
+
+Type: citation
+Gramps ID: C2346
+
+Type: citation
+Gramps ID: C2347
+
+Type: citation
+Gramps ID: C2348
+
+Type: citation
+Gramps ID: C2349
+
+Type: citation
+Gramps ID: C2350
+
+Type: citation
+Gramps ID: C2351
+
+Type: citation
+Gramps ID: C2352
+
+Type: citation
+Gramps ID: C2353
+
+Type: citation
+Gramps ID: C2354
+
+Type: citation
+Gramps ID: C2355
+
+Type: citation
+Gramps ID: C2356
+
+Type: citation
+Gramps ID: C2357
+
+Type: citation
+Gramps ID: C2358
+
+Type: citation
+Gramps ID: C2359
+
+Type: citation
+Gramps ID: C2360
+
+Type: citation
+Gramps ID: C2361
+
+Type: citation
+Gramps ID: C2362
+
+Type: citation
+Gramps ID: C2363
+
+Type: citation
+Gramps ID: C2364
+
+Type: citation
+Gramps ID: C2365
+
+Type: citation
+Gramps ID: C2366
+
+Type: citation
+Gramps ID: C2367
+
+Type: citation
+Gramps ID: C2368
+
+Type: citation
+Gramps ID: C2369
+
+Type: citation
+Gramps ID: C2370
+
+Type: citation
+Gramps ID: C2371
+
+Type: citation
+Gramps ID: C2372
+
+Type: citation
+Gramps ID: C2373
+
+Type: citation
+Gramps ID: C2374
+
+Type: citation
+Gramps ID: C2375
+
+Type: citation
+Gramps ID: C2376
+
+Type: citation
+Gramps ID: C2377
+
+Type: citation
+Gramps ID: C2378
+
+Type: citation
+Gramps ID: C2379
+
+Type: citation
+Gramps ID: C2380
+
+Type: citation
+Gramps ID: C2381
+
+Type: citation
+Gramps ID: C2382
+
+Type: citation
+Gramps ID: C2383
+
+Type: citation
+Gramps ID: C2384
+
+Type: citation
+Gramps ID: C2385
+
+Type: citation
+Gramps ID: C2386
+
+Type: citation
+Gramps ID: C2387
+
+Type: citation
+Gramps ID: C2388
+
+Type: citation
+Gramps ID: C2389
+
+Type: citation
+Gramps ID: C2390
+
+Type: citation
+Gramps ID: C2391
+
+Type: citation
+Gramps ID: C2392
+
+Type: citation
+Gramps ID: C2393
+
+Type: citation
+Gramps ID: C2394
+
+Type: citation
+Gramps ID: C2395
+
+Type: citation
+Gramps ID: C2396
+
+Type: citation
+Gramps ID: C2397
+
+Type: citation
+Gramps ID: C2398
+
+Type: citation
+Gramps ID: C2399
+
+Type: citation
+Gramps ID: C2400
+
+Type: citation
+Gramps ID: C2401
+
+Type: citation
+Gramps ID: C2402
+
+Type: citation
+Gramps ID: C2403
+
+Type: citation
+Gramps ID: C2404
+
+Type: citation
+Gramps ID: C2405
+
+Type: citation
+Gramps ID: C2406
+
+Type: citation
+Gramps ID: C2407
+
+Type: citation
+Gramps ID: C2408
+
+Type: citation
+Gramps ID: C2409
+
+Type: citation
+Gramps ID: C2410
+
+Type: citation
+Gramps ID: C2411
+
+Type: citation
+Gramps ID: C2412
+
+Type: citation
+Gramps ID: C2413
+
+Type: citation
+Gramps ID: C2414
+
+Type: citation
+Gramps ID: C2415
+
+Type: citation
+Gramps ID: C2416
+
+Type: citation
+Gramps ID: C2417
+
+Type: citation
+Gramps ID: C2418
+
+Type: citation
+Gramps ID: C2419
+
+Type: citation
+Gramps ID: C2420
+
+Type: citation
+Gramps ID: C2421
+
+Type: citation
+Gramps ID: C2422
+
+Type: citation
+Gramps ID: C2423
+
+Type: citation
+Gramps ID: C2424
+
+Type: citation
+Gramps ID: C2425
+
+Type: citation
+Gramps ID: C2426
+
+Type: citation
+Gramps ID: C2427
+
+Type: citation
+Gramps ID: C2428
+
+Type: citation
+Gramps ID: C2429
+
+Type: citation
+Gramps ID: C2430
+
+Type: citation
+Gramps ID: C2431
+
+Type: citation
+Gramps ID: C2432
+
+Type: citation
+Gramps ID: C2433
+
+Type: citation
+Gramps ID: C2434
+
+Type: citation
+Gramps ID: C2435
+
+Type: citation
+Gramps ID: C2436
+
+Type: citation
+Gramps ID: C2437
+
+Type: citation
+Gramps ID: C2438
+
+Type: citation
+Gramps ID: C2439
+
+Type: citation
+Gramps ID: C2440
+
+Type: citation
+Gramps ID: C2441
+
+Type: citation
+Gramps ID: C2442
+
+Type: citation
+Gramps ID: C2443
+
+Type: citation
+Gramps ID: C2444
+
+Type: citation
+Gramps ID: C2445
+
+Type: citation
+Gramps ID: C2446
+
+Type: citation
+Gramps ID: C2447
+
+Type: citation
+Gramps ID: C2448
+
+Type: citation
+Gramps ID: C2449
+
+Type: citation
+Gramps ID: C2450
+
+Type: citation
+Gramps ID: C2451
+
+Type: citation
+Gramps ID: C2452
+
+Type: citation
+Gramps ID: C2453
+
+Type: citation
+Gramps ID: C2454
+
+Type: citation
+Gramps ID: C2455
+
+Type: citation
+Gramps ID: C2456
+
+Type: citation
+Gramps ID: C2457
+
+Type: citation
+Gramps ID: C2458
+
+Type: citation
+Gramps ID: C2459
+
+Type: citation
+Gramps ID: C2460
+
+Type: citation
+Gramps ID: C2461
+
+Type: citation
+Gramps ID: C2462
+
+Type: citation
+Gramps ID: C2463
+
+Type: citation
+Gramps ID: C2464
+
+Type: citation
+Gramps ID: C2465
+
+Type: citation
+Gramps ID: C2466
+
+Type: citation
+Gramps ID: C2467
+
+Type: citation
+Gramps ID: C2468
+
+Type: citation
+Gramps ID: C2469
+
+Type: citation
+Gramps ID: C2470
+
+Type: citation
+Gramps ID: C2471
+
+Type: citation
+Gramps ID: C2472
+
+Type: citation
+Gramps ID: C2473
+
+Type: citation
+Gramps ID: C2474
+
+Type: citation
+Gramps ID: C2475
+
+Type: citation
+Gramps ID: C2476
+
+Type: citation
+Gramps ID: C2477
+
+Type: citation
+Gramps ID: C2478
+
+Type: citation
+Gramps ID: C2479
+
+Type: citation
+Gramps ID: C2480
+
+Type: citation
+Gramps ID: C2481
+
+Type: citation
+Gramps ID: C2482
+
+Type: citation
+Gramps ID: C2483
+
+Type: citation
+Gramps ID: C2484
+
+Type: citation
+Gramps ID: C2485
+
+Type: citation
+Gramps ID: C2486
+
+Type: citation
+Gramps ID: C2487
+
+Type: citation
+Gramps ID: C2488
+
+Type: citation
+Gramps ID: C2489
+
+Type: citation
+Gramps ID: C2490
+
+Type: citation
+Gramps ID: C2491
+
+Type: citation
+Gramps ID: C2492
+
+Type: citation
+Gramps ID: C2493
+
+Type: citation
+Gramps ID: C2494
+
+Type: citation
+Gramps ID: C2495
+
+Type: citation
+Gramps ID: C2496
+
+Type: citation
+Gramps ID: C2497
+
+Type: citation
+Gramps ID: C2498
+
+Type: citation
+Gramps ID: C2499
+
+Type: citation
+Gramps ID: C2500
+
+Type: citation
+Gramps ID: C2501
+
+Type: citation
+Gramps ID: C2502
+
+Type: citation
+Gramps ID: C2503
+
+Type: citation
+Gramps ID: C2504
+
+Type: citation
+Gramps ID: C2505
+
+Type: citation
+Gramps ID: C2506
+
+Type: citation
+Gramps ID: C2507
+
+Type: citation
+Gramps ID: C2508
+
+Type: citation
+Gramps ID: C2509
+
+Type: citation
+Gramps ID: C2510
+
+Type: citation
+Gramps ID: C2511
+
+Type: citation
+Gramps ID: C2512
+
+Type: citation
+Gramps ID: C2513
+
+Type: citation
+Gramps ID: C2514
+
+Type: citation
+Gramps ID: C2515
+
+Type: citation
+Gramps ID: C2516
+
+Type: citation
+Gramps ID: C2517
+
+Type: citation
+Gramps ID: C2518
+
+Type: citation
+Gramps ID: C2519
+
+Type: citation
+Gramps ID: C2520
+
+Type: citation
+Gramps ID: C2521
+
+Type: citation
+Gramps ID: C2522
+
+Type: citation
+Gramps ID: C2523
+
+Type: citation
+Gramps ID: C2524
+
+Type: citation
+Gramps ID: C2525
+
+Type: citation
+Gramps ID: C2526
+
+Type: citation
+Gramps ID: C2527
+
+Type: citation
+Gramps ID: C2528
+
+Type: citation
+Gramps ID: C2529
+
+Type: citation
+Gramps ID: C2530
+
+Type: citation
+Gramps ID: C2531
+
+Type: citation
+Gramps ID: C2532
+
+Type: citation
+Gramps ID: C2533
+
+Type: citation
+Gramps ID: C2534
+
+Type: citation
+Gramps ID: C2535
+
+Type: citation
+Gramps ID: C2536
+
+Type: citation
+Gramps ID: C2537
+
+Type: citation
+Gramps ID: C2538
+
+Type: citation
+Gramps ID: C2539
+
+Type: citation
+Gramps ID: C2540
+
+Type: citation
+Gramps ID: C2541
+
+Type: citation
+Gramps ID: C2542
+
+Type: citation
+Gramps ID: C2543
+
+Type: citation
+Gramps ID: C2544
+
+Type: citation
+Gramps ID: C2545
+
+Type: citation
+Gramps ID: C2546
+
+Type: citation
+Gramps ID: C2547
+
+Type: citation
+Gramps ID: C2548
+
+Type: citation
+Gramps ID: C2549
+
+Type: citation
+Gramps ID: C2550
+
+Type: citation
+Gramps ID: C2551
+
+Type: citation
+Gramps ID: C2552
+
+Type: citation
+Gramps ID: C2553
+
+Type: citation
+Gramps ID: C2554
+
+Type: citation
+Gramps ID: C2555
+
+Type: citation
+Gramps ID: C2556
+
+Type: citation
+Gramps ID: C2557
+
+Type: citation
+Gramps ID: C2558
+
+Type: citation
+Gramps ID: C2559
+
+Type: citation
+Gramps ID: C2560
+
+Type: citation
+Gramps ID: C2561
+
+Type: citation
+Gramps ID: C2562
+
+Type: citation
+Gramps ID: C2563
+
+Type: citation
+Gramps ID: C2564
+
+Type: citation
+Gramps ID: C2565
+
+Type: citation
+Gramps ID: C2566
+
+Type: citation
+Gramps ID: C2567
+
+Type: citation
+Gramps ID: C2568
+
+Type: citation
+Gramps ID: C2569
+
+Type: citation
+Gramps ID: C2570
+
+Type: citation
+Gramps ID: C2571
+
+Type: citation
+Gramps ID: C2572
+
+Type: citation
+Gramps ID: C2573
+
+Type: citation
+Gramps ID: C2574
+
+Type: citation
+Gramps ID: C2575
+
+Type: citation
+Gramps ID: C2576
+
+Type: citation
+Gramps ID: C2577
+
+Type: citation
+Gramps ID: C2578
+
+Type: citation
+Gramps ID: C2579
+
+Type: citation
+Gramps ID: C2580
+
+Type: citation
+Gramps ID: C2581
+
+Type: citation
+Gramps ID: C2582
+
+Type: citation
+Gramps ID: C2583
+
+Type: citation
+Gramps ID: C2584
+
+Type: citation
+Gramps ID: C2585
+
+Type: citation
+Gramps ID: C2586
+
+Type: citation
+Gramps ID: C2587
+
+Type: citation
+Gramps ID: C2588
+
+Type: citation
+Gramps ID: C2589
+
+Type: citation
+Gramps ID: C2590
+
+Type: citation
+Gramps ID: C2591
+
+Type: citation
+Gramps ID: C2592
+
+Type: citation
+Gramps ID: C2593
+
+Type: citation
+Gramps ID: C2594
+
+Type: citation
+Gramps ID: C2595
+
+Type: citation
+Gramps ID: C2596
+
+Type: citation
+Gramps ID: C2597
+
+Type: citation
+Gramps ID: C2598
+
+Type: citation
+Gramps ID: C2599
+
+Type: citation
+Gramps ID: C2600
+
+Type: citation
+Gramps ID: C2601
+
+Type: citation
+Gramps ID: C2602
+
+Type: citation
+Gramps ID: C2603
+
+Type: citation
+Gramps ID: C2604
+
+Type: citation
+Gramps ID: C2605
+
+Type: citation
+Gramps ID: C2606
+
+Type: citation
+Gramps ID: C2607
+
+Type: citation
+Gramps ID: C2608
+
+Type: citation
+Gramps ID: C2609
+
+Type: citation
+Gramps ID: C2610
+
+Type: citation
+Gramps ID: C2611
+
+Type: citation
+Gramps ID: C2612
+
+Type: citation
+Gramps ID: C2613
+
+Type: citation
+Gramps ID: C2614
+
+Type: citation
+Gramps ID: C2615
+
+Type: citation
+Gramps ID: C2616
+
+Type: citation
+Gramps ID: C2617
+
+Type: citation
+Gramps ID: C2618
+
+Type: citation
+Gramps ID: C2619
+
+Type: citation
+Gramps ID: C2620
+
+Type: citation
+Gramps ID: C2621
+
+Type: citation
+Gramps ID: C2622
+
+Type: citation
+Gramps ID: C2623
+
+Type: citation
+Gramps ID: C2624
+
+Type: citation
+Gramps ID: C2625
+
+Type: citation
+Gramps ID: C2626
+
+Type: citation
+Gramps ID: C2627
+
+Type: citation
+Gramps ID: C2628
+
+Type: citation
+Gramps ID: C2629
+
+Type: citation
+Gramps ID: C2630
+
+Type: citation
+Gramps ID: C2631
+
+Type: citation
+Gramps ID: C2632
+
+Type: citation
+Gramps ID: C2633
+
+Type: citation
+Gramps ID: C2634
+
+Type: citation
+Gramps ID: C2635
+
+Type: citation
+Gramps ID: C2636
+
+Type: citation
+Gramps ID: C2637
+
+Type: citation
+Gramps ID: C2638
+
+Type: citation
+Gramps ID: C2639
+
+Type: citation
+Gramps ID: C2640
+
+Type: citation
+Gramps ID: C2641
+
+Type: citation
+Gramps ID: C2642
+
+Type: citation
+Gramps ID: C2643
+
+Type: citation
+Gramps ID: C2644
+
+Type: citation
+Gramps ID: C2645
+
+Type: citation
+Gramps ID: C2646
+
+Type: citation
+Gramps ID: C2647
+
+Type: citation
+Gramps ID: C2648
+
+Type: citation
+Gramps ID: C2649
+
+Type: citation
+Gramps ID: C2650
+
+Type: citation
+Gramps ID: C2651
+
+Type: citation
+Gramps ID: C2652
+
+Type: citation
+Gramps ID: C2653
+
+Type: citation
+Gramps ID: C2654
+
+Type: citation
+Gramps ID: C2655
+
+Type: citation
+Gramps ID: C2656
+
+Type: citation
+Gramps ID: C2657
+
+Type: citation
+Gramps ID: C2658
+
+Type: citation
+Gramps ID: C2659
+
+Type: citation
+Gramps ID: C2660
+
+Type: citation
+Gramps ID: C2661
+
+Type: citation
+Gramps ID: C2662
+
+Type: citation
+Gramps ID: C2663
+
+Type: citation
+Gramps ID: C2664
+
+Type: citation
+Gramps ID: C2665
+
+Type: citation
+Gramps ID: C2666
+
+Type: citation
+Gramps ID: C2667
+
+Type: citation
+Gramps ID: C2668
+
+Type: citation
+Gramps ID: C2669
+
+Type: citation
+Gramps ID: C2670
+
+Type: citation
+Gramps ID: C2671
+
+Type: citation
+Gramps ID: C2672
+
+Type: citation
+Gramps ID: C2673
+
+Type: citation
+Gramps ID: C2674
+
+Type: citation
+Gramps ID: C2675
+
+Type: citation
+Gramps ID: C2676
+
+Type: citation
+Gramps ID: C2677
+
+Type: citation
+Gramps ID: C2678
+
+Type: citation
+Gramps ID: C2679
+
+Type: citation
+Gramps ID: C2680
+
+Type: citation
+Gramps ID: C2681
+
+Type: citation
+Gramps ID: C2682
+
+Type: citation
+Gramps ID: C2683
+
+Type: citation
+Gramps ID: C2684
+
+Type: citation
+Gramps ID: C2685
+
+Type: citation
+Gramps ID: C2686
+
+Type: citation
+Gramps ID: C2687
+
+Type: citation
+Gramps ID: C2688
+
+Type: citation
+Gramps ID: C2689
+
+Type: citation
+Gramps ID: C2690
+
+Type: citation
+Gramps ID: C2691
+
+Type: citation
+Gramps ID: C2692
+
+Type: citation
+Gramps ID: C2693
+
+Type: citation
+Gramps ID: C2694
+
+Type: citation
+Gramps ID: C2695
+
+Type: citation
+Gramps ID: C2696
+
+Type: citation
+Gramps ID: C2697
+
+Type: citation
+Gramps ID: C2698
+
+Type: citation
+Gramps ID: C2699
+
+Type: citation
+Gramps ID: C2700
+
+Type: citation
+Gramps ID: C2701
+
+Type: citation
+Gramps ID: C2702
+
+Type: citation
+Gramps ID: C2703
+
+Type: citation
+Gramps ID: C2704
+
+Type: citation
+Gramps ID: C2705
+
+Type: citation
+Gramps ID: C2706
+
+Type: citation
+Gramps ID: C2707
+
+Type: citation
+Gramps ID: C2708
+
+Type: citation
+Gramps ID: C2709
+
+Type: citation
+Gramps ID: C2710
+
+Type: citation
+Gramps ID: C2711
+
+Type: citation
+Gramps ID: C2712
+
+Type: citation
+Gramps ID: C2713
+
+Type: citation
+Gramps ID: C2714
+
+Type: citation
+Gramps ID: C2715
+
+Type: citation
+Gramps ID: C2716
+
+Type: citation
+Gramps ID: C2717
+
+Type: citation
+Gramps ID: C2718
+
+Type: citation
+Gramps ID: C2719
+
+Type: citation
+Gramps ID: C2720
+
+Type: citation
+Gramps ID: C2721
+
+Type: citation
+Gramps ID: C2722
+
+Type: citation
+Gramps ID: C2723
+
+Type: citation
+Gramps ID: C2724
+
+Type: citation
+Gramps ID: C2725
+
+Type: citation
+Gramps ID: C2726
+
+Type: citation
+Gramps ID: C2727
+
+Type: citation
+Gramps ID: C2728
+
+Type: citation
+Gramps ID: C2729
+
+Type: citation
+Gramps ID: C2730
+
+Type: citation
+Gramps ID: C2731
+
+Type: citation
+Gramps ID: C2732
+
+Type: citation
+Gramps ID: C2733
+
+Type: citation
+Gramps ID: C2734
+
+Type: citation
+Gramps ID: C2735
+
+Type: citation
+Gramps ID: C2736
+
+Type: citation
+Gramps ID: C2737
+
+Type: citation
+Gramps ID: C2738
+
+Type: citation
+Gramps ID: C2739
+
+Type: citation
+Gramps ID: C2740
+
+Type: citation
+Gramps ID: C2741
+
+Type: citation
+Gramps ID: C2742
+
+Type: citation
+Gramps ID: C2743
+
+Type: citation
+Gramps ID: C2744
+
+Type: citation
+Gramps ID: C2745
+
+Type: citation
+Gramps ID: C2746
+
+Type: citation
+Gramps ID: C2747
+
+Type: citation
+Gramps ID: C2748
+
+Type: citation
+Gramps ID: C2749
+
+Type: citation
+Gramps ID: C2750
+
+Type: citation
+Gramps ID: C2751
+
+Type: citation
+Gramps ID: C2752
+
+Type: citation
+Gramps ID: C2753
+
+Type: citation
+Gramps ID: C2754
+
+Type: citation
+Gramps ID: C2755
+
+Type: citation
+Gramps ID: C2756
+
+Type: citation
+Gramps ID: C2757
+
+Type: citation
+Gramps ID: C2758
+
+Type: citation
+Gramps ID: C2759
+
+Type: citation
+Gramps ID: C2760
+
+Type: citation
+Gramps ID: C2761
+
+Type: citation
+Gramps ID: C2762
+
+Type: citation
+Gramps ID: C2763
+
+Type: citation
+Gramps ID: C2764
+
+Type: citation
+Gramps ID: C2765
+
+Type: citation
+Gramps ID: C2766
+
+Type: citation
+Gramps ID: C2767
+
+Type: citation
+Gramps ID: C2768
+
+Type: citation
+Gramps ID: C2769
+
+Type: citation
+Gramps ID: C2770
+
+Type: citation
+Gramps ID: C2771
+
+Type: citation
+Gramps ID: C2772
+
+Type: citation
+Gramps ID: C2773
+
+Type: citation
+Gramps ID: C2774
+
+Type: citation
+Gramps ID: C2775
+
+Type: citation
+Gramps ID: C2776
+
+Type: citation
+Gramps ID: C2777
+
+Type: citation
+Gramps ID: C2778
+
+Type: citation
+Gramps ID: C2779
+
+Type: citation
+Gramps ID: C2780
+
+Type: citation
+Gramps ID: C2781
+
+Type: citation
+Gramps ID: C2782
+
+Type: citation
+Gramps ID: C2783
+
+Type: citation
+Gramps ID: C2784
+
+Type: citation
+Gramps ID: C2785
+
+Type: citation
+Gramps ID: C2786
+
+Type: citation
+Gramps ID: C2787
+
+Type: citation
+Gramps ID: C2788
+
+Type: citation
+Gramps ID: C2789
+
+Type: citation
+Gramps ID: C2790
+
+Type: citation
+Gramps ID: C2791
+
+Type: citation
+Gramps ID: C2792
+
+Type: citation
+Gramps ID: C2793
+
+Type: citation
+Gramps ID: C2794
+
+Type: citation
+Gramps ID: C2795
+
+Type: citation
+Gramps ID: C2796
+
+Type: citation
+Gramps ID: C2797
+
+Type: citation
+Gramps ID: C2798
+
+Type: citation
+Gramps ID: C2799
+
+Type: citation
+Gramps ID: C2800
+
+Type: citation
+Gramps ID: C2801
+
+Type: citation
+Gramps ID: C2802
+
+Type: citation
+Gramps ID: C2803
+
+Type: citation
+Gramps ID: C2804
+
+Type: citation
+Gramps ID: C2805
+
+Type: citation
+Gramps ID: C2806
+
+Type: citation
+Gramps ID: C2807
+
+Type: citation
+Gramps ID: C2808
+
+Type: citation
+Gramps ID: C2809
+
+Type: citation
+Gramps ID: C2810
+
+Type: citation
+Gramps ID: C2811
+
+Type: citation
+Gramps ID: C2812
+
+Type: citation
+Gramps ID: C2813
+
+Type: citation
+Gramps ID: C2814
+
+Type: citation
+Gramps ID: C2815
+
+Type: citation
+Gramps ID: C2816
+
+Type: citation
+Gramps ID: C2817
+
+Type: citation
+Gramps ID: C2818
+
+Type: citation
+Gramps ID: C2819
+
+Type: citation
+Gramps ID: C2820
+
+Type: citation
+Gramps ID: C2821
+
+Type: citation
+Gramps ID: C2822
+
+Type: citation
+Gramps ID: C2823
+
+Type: citation
+Gramps ID: C2824
+
+Type: citation
+Gramps ID: C2825
+
+Type: citation
+Gramps ID: C2826
+
+Type: citation
+Gramps ID: C2827
+
+Type: citation
+Gramps ID: C2848
+Page/Volume: page 21
+
+Type: citation
+Gramps ID: C2849
+Page/Volume: page 22
+
+Type: citation
+Gramps ID: C2850
+Page/Volume: page 23
+
+Type: citation
+Gramps ID: C2851
+Page/Volume: page 24
+
+Type: citation
+Gramps ID: C2852
+Page/Volume: page 25
+
+Type: citation
+Gramps ID: C2853
+Page/Volume: page 26
+
+Type: source
+Gramps ID: S0000
+Source title: Baptize registry 1850 - 1867 Great Falls Church
+Source author: Priests of Great Falls Church 1850 - 1867
+Source publication info: Microfilm Public Library Great Falls
+Source abbrevation: BR-GFC 1850
+
+Type: source
+Gramps ID: S0003
+Source title: Import from test2.ged
+
+Type: source
+Gramps ID: S0002
+Source title: World of the Wierd
+Source author: John Jacob Jinglehiemerschmitt
+Source abbrevation: WOTW
+
+Type: source
+Gramps ID: S0001
+Source title: All possible citations
+
+Type: repository
+Gramps ID: R0002
+Repository type: Library
+Repository name: New York Public Library
+
+Type: repository
+Gramps ID: R0003
+Repository type: Collection
+Repository name: Aunt Martha's Attic
+
+Type: repository
+Gramps ID: R0000
+Repository type: Library
+Repository name: Public Library Great Falls
+
+Type: media object
+Gramps ID: O0000
+Media type: image/png
+Media description: 1855-06-25 scanned birth record
+
+Type: media object
+Gramps ID: O0010
+Media type: image/jpeg
+Media description: 1897_expeditionsmannschaft_rio_a
+Media date: 1897
+
+Type: media object
+Gramps ID: O0009
+Media type: image/jpeg
+Media description: Yawn
+
+Type: media object
+Gramps ID: O0011
+Media type: image/png
+Media description: AntoineClaudet
+
+Type: media object
+Gramps ID: O0008
+Media type: image/jpeg
+Media description: 654px-Aksel_Andersson
+
+Type: media object
+Gramps ID: O0007
+Media type: image/jpeg
+Media description: E_W_Dahlgren
+
+Type: media object
+Gramps ID: O0006
+Media type: image/jpeg
+Media description: Alimehemet
+
+Type: note
+Gramps ID: N0012
+Note text:
+How did he die? We need to find out!
+
+Perhaps we find info in the new york library
+
+Type: note
+Gramps ID: N0001
+Note text:
+Names can notes, too. This is a note for the alternate name of Louse Garner for Lewis Anderson Garner.
+
+Type: note
+Gramps ID: N0003
+Note text:
+We have committed to synergistically disseminate resource-leveling methods of empowerment to set us apart from the competition. We envision to globally integrate inexpensive paradigms and professionally engineer timely technology while promoting personal employee growth. Our mission is to assertively build world-class methods of empowerment so that we may professionally promote parallel services to set us apart from the competition. It's our responsibility to dramatically maintain value-added services as well as to professionally simplify principle-centered technology for 100% customer satisfaction.
+
+Thanks to the Mission Statement Generator from http://www.dilbert.com.
+
+Type: note
+Gramps ID: N0013
+Note text:
+This is a note showing a lot of different markup that mixes with each other making it a good stress test for markup notes.
+This is a note showing a lot of different markup that mixes with each other making it a good stress test for markup notes.
+
+This is a note showing a lot of different markup that mixes with each other making it a good stress test for markup notes.
+
+Type: note
+Gramps ID: N0014
+Note text:
+This is a preformatted note showing a lot of different markup that mixes with each other making it a good stress test for markup notes.
+ This is a note showing a lot of different markup that mixes with each other making it a good stress test for markup notes.
+
+This is
+ a note showing
+ a lot of different markup
+ that mixes with each
+other making it a good stress test for markup notes.
+
+ test | val1 | val2
+ ------------------------------
+ me | blue | red
+
+Type: note
+Gramps ID: N0015
+Note text:
+This source has all possible references pointing to it. The references are as follows:
+
+This note appears as a note to the source and also as a note for the person.
+
+page 01 Person
+page 02 Name
+page 03 Address
+page 04 Attribute
+page 05 PersonRef
+page 06 MediaRef
+page 07 Attribute
+page 08 LdsOrd
+page 09 EventRef:Attribute
+page 10 Family
+page 11 Attribute
+page 12 ChildRef
+page 13 MediaRef
+page 14 Attribute
+page 15 LdsOrd
+page 16 EventRef:Attribute
+page 17 Event
+page 18 Attribute
+page 19 MediaRef
+page 20 Attribute
+page 21 MediaObject
+page 22 Attribute
+page 23 Place
+page 24 MediaRef
+page 25 Attribute
+page 26 Repository:Address
+
+Type: note
+Gramps ID: N0004
+Note text:
+Courtesy of pyschoanalyze-pinhead from Emacs.
+
+I am the psychotherapist. Please, describe your problems. Each time
+you are finished talking, type RET twice.
+
+SHHHH!! I hear SIX TATTOOED TRUCK-DRIVERS tossing ENGINE BLOCKS
+ into empty OIL DRUMS..
+
+Why do you say that?
+
+I have accepted Provolone into my life!
+
+What makes you believe you have accepted provolone into your life?
+
+It's 74 degrees, 12 minutes NORTH, and 41 degrees, 3 minutes EAST!!
+ Soon, it will be TUESDAY!!
+
+Maybe your plans have something to do with this.
+
+GOOD-NIGHT, everybody.. Now I have to go administer FIRST-AID
+ to my pet LEISURE SUIT!!
+
+I don't understand.
+
+I'm QUIETLY reading the latest issue of ``BOWLING WORLD''
+ while my wife and two children stand QUIETLY BY..
+
+Tell me something about your family.
+
+How do I get HOME?
+
+Is it because do you get home that you came to me?
+
+Kids, the seven basic food groups are GUM, PUFF PASTRY, PIZZA,
+ PESTICIDES, ANTIBIOTICS, NUTRA-SWEET and MILK DUDS!!
+
+Type: note
+Gramps ID: N0005
+Note text:
+GRAMPS aid to look for its tree to him of family. It allows that you store data of genealogische to draw for above and investigating. GRAMPS tries to make all the general capacities available of other programs of genealogischer more importantly but, to put an additional capacity of integration at your service not generally for these programs. This one is the capacity to directly incorporate all the possible pieces of the information in Gramps and the cases of the data cambiar/manipulateany/all in the whole data base (in any order or order) around the user to support, if it makes the investigation, analysis and interrelation with the potential of the distances of the relation that fill.
+
+This is a paragraph from the gramps-project.org page that was translated by Google's Language Tools to German, back to English, then to Spanish, and once again back to English.
+
+Type: note
+Gramps ID: N0002
+Note text:
+Strange, isn't it.
+
+Type: note
+Gramps ID: N0000
+Note text:
+On every third blue moon, Lewis Anderson Garner would dress in a purple dress and claim that his name was Louis Garner.
+
+Type: note
+Gramps ID: N0006
+Note text:
+His name is my name, too.
+
+Type: note
+Gramps ID: N0007
+Note text:
+The repository reference from the source is important
+
+Type: note
+Gramps ID: N0010
+Note text:
+1855-06-25
+
+ line 1 fac secunda Junij Baptiza-
+ line 2 tus est Lewis Anderson
+ line 3 filius legitimus Guillielmus
+ line 4 Garner et Elisabetha
+ line 5 Becks. Susceptores fuerent
+ line 6 petrus Arts et Catharina
+ line 7 van de Voorde
+
+Type: note
+Gramps ID: N0011
+Note text:
+1855-06-25:
+I baptized on June the second Lewis Anderson legitimate son of Guillielmus Garner and Elisabetha Becke. Godparents were petrus Arts and Catharina Van de Voorde
+
+Type: note
+Gramps ID: N0008
+Note text:
+Some note on the repo
+
+Type: note
+Gramps ID: N0009
+Note text:
+Ask librarian for key to the microfilm closet of Great Falls church, it is closed normally
+
+Type: note
+Gramps ID: _header1
+Note text:
+Title for the example pages
+
+Type: note
+Gramps ID: _footer1
+Note text:
+Footer: exported by __GRAMPS_HOMEPAGE__ on __EXPORT_DATE__
+
+Type: note
+Gramps ID: _custom1
+Note text:
+Export date: __EXPORT_DATE__
+GRAMPS homepage: __GRAMPS_HOMEPAGE__
+GRAMPS version: __GRAMPS_VERSION__
+
+Number of families: __NB_FAMILIES__
+Number of persons: __NB_INDIVIDUALS__
+Number of media objects: __NB_MEDIA__
+Number of sources: __NB_SOURCES__
+Number of repositories: __NB_REPOSITORIES__
+Number of places: __NB_PLACES__
+
+Search form:
+__SEARCH_FORM__
+
+Test link person: Garner von ZieliĆski, Lewis Anderson Sr
+Test link family: Family of Warner, Allen Carl and Garner, Rita Marie
+Test link source: World of the Wierd
+Test link media: 1897_expeditionsmannschaft_rio_a
+Test link place: Warren-Farmington Hills-Troy, MI
+
+Test internet link: blog.codinghorror.com
+Test relative path link: relative file path to "archive.zip"
+Test relative path link: relative file path to "archive.tgz"
+
+Thumbnail for "1897_expeditionsmannschaft_rio_a":
+__THUMB_O0010__
+Image "AntoineClaudet":
+__MEDIA_O0011__
+Thumbnail for "1897_expeditionsmannschaft_rio_a" with link:
+__THUMB_O0010__
+Image "AntoineClaudet" with link:
+__MEDIA_O0011__
+
+Wrong media ID:
+__MEDIA_wrong id__
+
+.
+
+=============================== warnings summary ===============================
+tests/test_endpoints/__init__.py:30
+tests/test_endpoints/__init__.py:30
+ /home/david/Dokumente/Code/gramps/web-api/tests/test_endpoints/__init__.py:30: DeprecationWarning: jsonschema.RefResolver is deprecated as of v4.18.0, in favor of the https://github.com/python-jsonschema/referencing library, which provides more compliant referencing behavior as well as more flexible APIs for customization. A future release will remove RefResolver. Please file a feature request (on referencing) if you are missing an API for the kind of customization you need.
+ from jsonschema import RefResolver
+
+../grampsweb-env/lib/python3.12/site-packages/pytesseract/pytesseract.py:32
+ /home/david/Dokumente/Code/gramps/grampsweb-env/lib/python3.12/site-packages/pytesseract/pytesseract.py:32: DeprecationWarning: 'pkgutil.find_loader' is deprecated and slated for removal in Python 3.14; use importlib.util.find_spec() instead
+ numpy_installed = find_loader('numpy') is not None
+
+../grampsweb-env/lib/python3.12/site-packages/pytesseract/pytesseract.py:36
+ /home/david/Dokumente/Code/gramps/grampsweb-env/lib/python3.12/site-packages/pytesseract/pytesseract.py:36: DeprecationWarning: 'pkgutil.find_loader' is deprecated and slated for removal in Python 3.14; use importlib.util.find_spec() instead
+ pandas_installed = find_loader('pandas') is not None
+
+../grampsweb-env/lib/python3.12/site-packages/gramps/plugins/tool/check.py:51
+ /home/david/Dokumente/Code/gramps/grampsweb-env/lib/python3.12/site-packages/gramps/plugins/tool/check.py:51: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
+ from gi.repository import Gtk
+
+tests/test_endpoints/test_search_semantic.py::TestSemanticSearch::test_nothing
+ /home/david/Dokumente/Code/gramps/web-api/gramps_webapi/app.py:115: UserWarning: You have enabled multi-tree support, but `MEDIA_PREFIX_TREE` is set to `False`. This is strongly discouraged as it exposes media files to users belonging to different trees!
+ warnings.warn(
+
+tests/test_endpoints/test_search_semantic.py::TestSemanticSearch::test_nothing
+ /home/david/Dokumente/Code/gramps/web-api/gramps_webapi/api/search/__init__.py:37: UserWarning: The SEARCH_INDEX_DIR config option is deprecated and will be removed in a future release. Please use SEARCH_INDEX_DB_URI instead, e.g. setting it to sqlite:///indexdir/search_index.db
+ warnings.warn(
+
+-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
+======================== 1 passed, 7 warnings in 23.14s ========================
diff --git a/tests/test_endpoints/__init__.py b/tests/test_endpoints/__init__.py
index 92d79958..7c3cfad6 100644
--- a/tests/test_endpoints/__init__.py
+++ b/tests/test_endpoints/__init__.py
@@ -19,18 +19,14 @@
"""Tests for the `gramps_webapi.api` module."""
-import importlib
import os
import shutil
-import tempfile
from unittest.mock import patch
-import gramps.gen.const
import yaml
from jsonschema import RefResolver
from pkg_resources import resource_filename
-import gramps_webapi.app
from gramps_webapi.api.search import get_search_indexer
from gramps_webapi.app import create_app
from gramps_webapi.auth import add_user, user_db
@@ -75,7 +71,9 @@ def setUpModule():
"""Test module setup."""
global TEST_CLIENT, TEST_OBJECT_COUNTS
+ # create a database with the Gramps example tree
test_db = ExampleDbSQLite(name="example_gramps")
+
with patch.dict("os.environ", {ENV_CONFIG_FILE: TEST_EXAMPLE_GRAMPS_AUTH_CONFIG}):
test_app = create_app(
@@ -83,26 +81,33 @@ def setUpModule():
"TESTING": True,
"RATELIMIT_ENABLED": False,
"MEDIA_BASE_DIR": f"{os.environ['GRAMPS_RESOURCES']}/doc/gramps/example/gramps",
+ "VECTOR_EMBEDDING_MODEL": "paraphrase-albert-small-v2",
+ "LLM_MODEL": "mock-model",
}
)
TEST_CLIENT = test_app.test_client()
with test_app.app_context():
user_db.create_all()
- db_manager = WebDbManager(name=test_db.name, create_if_missing=False)
- tree = db_manager.dirname
-
- for role, user in TEST_USERS.items():
- add_user(
- name=user["name"],
- password=user["password"],
- role=role,
- tree=tree,
- )
-
- db_state = db_manager.get_db()
- search_index = get_search_indexer(tree)
- db = db_state.db
- search_index.reindex_full(db)
+
+ # create also an empty db in addition to the example db
+ for db_name in "empty_db", test_db.name:
+ db_manager = WebDbManager(name=db_name, create_if_missing=True)
+ tree = db_manager.dirname
+
+ for role, user in TEST_USERS.items():
+ # for the empty db, append "_empty" to usernames
+ user_suffix = "_empty" if "empty" in db_name else ""
+ add_user(
+ name=user["name"] + user_suffix,
+ password=user["password"],
+ role=role,
+ tree=tree,
+ )
+
+ db_state = db_manager.get_db()
+ search_index = get_search_indexer(tree)
+ db = db_state.db
+ search_index.reindex_full(db)
TEST_OBJECT_COUNTS = {
"people": db_state.db.get_number_of_people(),
"families": db_state.db.get_number_of_families(),
diff --git a/tests/test_endpoints/test_chat.py b/tests/test_endpoints/test_chat.py
new file mode 100644
index 00000000..766e8543
--- /dev/null
+++ b/tests/test_endpoints/test_chat.py
@@ -0,0 +1,120 @@
+#
+# Gramps Web API - A RESTful API for the Gramps genealogy program
+#
+# Copyright (C) 2020-2024 David Straub
+# Copyright (C) 2020 Christopher Horn
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+
+"""Test chat endpoint."""
+
+import unittest
+from unittest.mock import patch, MagicMock
+from urllib.parse import quote
+
+
+from . import BASE_URL, get_test_client
+from .util import fetch_header
+
+from gramps_webapi.auth.const import ROLE_EDITOR, ROLE_OWNER
+
+TEST_URL = BASE_URL + "/chat/"
+
+
+class TestChat(unittest.TestCase):
+ """Test cases for semantic search."""
+
+ @classmethod
+ def setUpClass(cls):
+ """Test class setup."""
+ cls.client = get_test_client()
+ # add objects
+ header = fetch_header(cls.client, empty_db=True)
+ obj = {
+ "_class": "Note",
+ "gramps_id": "N01",
+ "text": {"_class": "StyledText", "string": "The sky is blue."},
+ }
+ rv = cls.client.post("/api/notes/", json=obj, headers=header)
+ obj = {
+ "_class": "Note",
+ "gramps_id": "N02",
+ "text": {"_class": "StyledText", "string": "Everyone loves Pizza."},
+ }
+ rv = cls.client.post("/api/notes/", json=obj, headers=header)
+ assert rv.status_code == 201
+ rv = cls.client.get("/api/metadata/", json=obj, headers=header)
+ assert rv.status_code == 200
+ assert rv.json["search"]["sifts"]["count_semantic"] == 2
+
+ def test_search(self):
+ header = fetch_header(self.client, empty_db=True)
+ query = "What should I have for dinner tonight?"
+ rv = self.client.get(
+ f"/api/search/?semantic=1&query={quote(query)}", headers=header
+ )
+ assert rv.status_code == 200
+ assert len(rv.json) == 2
+ assert rv.json[0]["object"]["gramps_id"] == "N02" # Pizza!
+ assert rv.json[1]["object"]["gramps_id"] == "N01"
+
+ @patch("gramps_webapi.api.llm.get_client")
+ def test_chat(self, mock_get_client):
+ mock_client = MagicMock()
+ mock_get_client.return_value = mock_client
+
+ def mock_reply(system_prompt, user_prompt):
+ if "Pizza" in system_prompt and "dinner" in user_prompt:
+ return "Pizza of course!"
+ else:
+ return "I don't know."
+
+ def mock_chat_completion_create(messages, model):
+ return MagicMock(
+ to_dict=lambda: {
+ "choices": [
+ {
+ "message": {
+ "content": mock_reply(
+ messages[0]["content"], messages[1]["content"]
+ )
+ }
+ }
+ ]
+ }
+ )
+
+ mock_client.chat.completions.create.side_effect = mock_chat_completion_create
+ header = fetch_header(self.client, empty_db=True)
+ header_editor = fetch_header(self.client, empty_db=True, role=ROLE_EDITOR)
+ rv = self.client.get("/api/trees/", headers=header)
+ assert rv.status_code == 200
+ tree_id = rv.json[0]["id"]
+ assert rv.status_code == 200
+ rv = self.client.put(
+ f"/api/trees/{tree_id}", json={"min_role_ai": ROLE_OWNER}, headers=header
+ )
+ assert rv.status_code == 200
+ header = fetch_header(self.client, empty_db=True)
+ header_editor = fetch_header(self.client, empty_db=True, role=ROLE_EDITOR)
+ query = "What should I have for dinner tonight?"
+ rv = self.client.post(
+ "/api/chat/", json={"query": query}, headers=header_editor
+ )
+ assert rv.status_code == 403
+ rv = self.client.post("/api/chat/", json={"query": query}, headers=header)
+ assert rv.status_code == 200
+ assert "response" in rv.json
+ assert rv.json["response"] == "Pizza of course!"
diff --git a/tests/test_endpoints/test_importers.py b/tests/test_endpoints/test_importers.py
index 825731ad..93683dcf 100644
--- a/tests/test_endpoints/test_importers.py
+++ b/tests/test_endpoints/test_importers.py
@@ -29,7 +29,7 @@
from gramps.gen.dbstate import DbState
from gramps_webapi.app import create_app
-from gramps_webapi.auth import add_user, set_tree_quota, user_db
+from gramps_webapi.auth import add_user, set_tree_details, user_db
from gramps_webapi.auth.const import ROLE_EDITOR, ROLE_OWNER
from gramps_webapi.const import ENV_CONFIG_FILE, TEST_EMPTY_GRAMPS_AUTH_CONFIG
@@ -194,7 +194,7 @@ def test_importers_example_data_quota(self):
"""Test importing example.gramps with a quota."""
os.remove(os.path.join(self.dbpath, "sqlite.db"))
with self.test_app.app_context():
- set_tree_quota(self.tree, quota_people=2000)
+ set_tree_details(self.tree, quota_people=2000)
example_db = ExampleDbInMemory()
file_obj = io.BytesIO()
with open(example_db.path, "rb") as f:
@@ -213,4 +213,4 @@ def test_importers_example_data_quota(self):
rv = check_success(self, f"{BASE_URL}/people/")
assert len(rv) == 0
with self.test_app.app_context():
- set_tree_quota(self.tree, quota_people=None)
+ set_tree_details(self.tree, quota_people=None)
diff --git a/tests/test_endpoints/test_post.py b/tests/test_endpoints/test_post.py
index 2f680ad0..11b9f26f 100644
--- a/tests/test_endpoints/test_post.py
+++ b/tests/test_endpoints/test_post.py
@@ -33,7 +33,7 @@
from gramps_webapi.api.search import get_search_indexer
from gramps_webapi.app import create_app
-from gramps_webapi.auth import add_user, set_tree_quota, user_db
+from gramps_webapi.auth import add_user, set_tree_details, user_db
from gramps_webapi.auth.const import (
ROLE_CONTRIBUTOR,
ROLE_EDITOR,
@@ -77,7 +77,7 @@ def setUpClass(cls):
name="contributor", password="123", role=ROLE_CONTRIBUTOR, tree=tree
)
add_user(name="editor", password="123", role=ROLE_EDITOR, tree=tree)
- set_tree_quota(tree, quota_people=3)
+ set_tree_details(tree, quota_people=3)
@classmethod
def tearDownClass(cls):
diff --git a/tests/test_endpoints/test_search.py b/tests/test_endpoints/test_search.py
index 696321e3..1b0b7746 100644
--- a/tests/test_endpoints/test_search.py
+++ b/tests/test_endpoints/test_search.py
@@ -50,7 +50,9 @@ def setUpClass(cls):
cls.client = get_test_client()
cls.index_dir = tempfile.mkdtemp()
cls.dbmgr = WebDbManager(name="example_gramps", create_if_missing=False)
- cls.search = SearchIndexer(cls.index_dir)
+ tree = cls.dbmgr.dirname
+ db_url = f"sqlite:///{cls.index_dir}/search_index.db"
+ cls.search = SearchIndexer(tree, db_url)
db = cls.dbmgr.get_db().db
cls.search.reindex_full(db)
db.close()
diff --git a/tests/test_endpoints/test_upload.py b/tests/test_endpoints/test_upload.py
index 9d174b9f..bf63611a 100644
--- a/tests/test_endpoints/test_upload.py
+++ b/tests/test_endpoints/test_upload.py
@@ -33,7 +33,7 @@
from PIL import Image
from gramps_webapi.app import create_app
-from gramps_webapi.auth import add_user, set_tree_quota, user_db
+from gramps_webapi.auth import add_user, user_db
from gramps_webapi.auth.const import ROLE_GUEST, ROLE_OWNER, ROLE_ADMIN
from gramps_webapi.const import ENV_CONFIG_FILE, TEST_AUTH_CONFIG
diff --git a/tests/test_endpoints/util.py b/tests/test_endpoints/util.py
index 838f4524..c8d91ad8 100644
--- a/tests/test_endpoints/util.py
+++ b/tests/test_endpoints/util.py
@@ -24,12 +24,15 @@
from . import TEST_USERS
-def fetch_header(test, role=ROLE_OWNER):
+def fetch_header(test, role=ROLE_OWNER, empty_db: bool = False):
"""Return authorization header with valid token."""
+ username = TEST_USERS[role]["name"]
+ if empty_db:
+ username += "_empty"
rv = test.post(
"/api/token/",
json={
- "username": TEST_USERS[role]["name"],
+ "username": username,
"password": TEST_USERS[role]["password"],
},
)
diff --git a/tests/test_text.py b/tests/test_text.py
new file mode 100644
index 00000000..474fe8d3
--- /dev/null
+++ b/tests/test_text.py
@@ -0,0 +1,68 @@
+#
+# Gramps Web API - A RESTful API for the Gramps genealogy program
+#
+# Copyright (C) 2024 David Straub
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+
+"""Test search text functions."""
+
+from gramps_webapi.api.search.text_semantic import PString
+
+# tests for the PString class
+
+
+def test_pstring_add():
+ c = PString("a") + PString("b")
+ assert c.string_all == "ab"
+ assert c.string_public == "ab"
+
+
+def test_pstring_add_string():
+ c = PString("a") + "b"
+ assert c.string_all == "ab"
+ assert c.string_public == "ab"
+
+
+def test_pstring_radd_string():
+ c = "a" + PString("b")
+ assert c.string_all == "ab"
+ assert c.string_public == "ab"
+
+
+def test_pstring_add_public_only():
+ c = PString("a", public_only=True) + PString("b", public_only=True)
+ assert c.string_all == ""
+ assert c.string_public == "ab"
+
+
+def test_pstring_add_private():
+ c = PString("a", private=True) + PString("b", private=True)
+ assert c.string_all == "ab"
+ assert c.string_public == ""
+
+
+def test_pstring_iadd():
+ c = PString("a")
+ c += PString("b")
+ assert c.string_all == "ab"
+ assert c.string_public == "ab"
+
+
+def test_pstring_iadd_string():
+ c = PString("a")
+ c += "b"
+ assert c.string_all == "ab"
+ assert c.string_public == "ab"