Compare commits

..

9 Commits

Author SHA1 Message Date
Jérôme Rapinat
7c6872c11a alpha1 environment, what should be the VERSION into gen/const.py.in ?
svn: r20810
2012-12-21 14:15:45 +00:00
Jérôme Rapinat
71f87a31b3 update content for 4.0.0-alpha1
svn: r20809
2012-12-21 14:09:38 +00:00
Jérôme Rapinat
eb2ca43ff6 avoid fatal errors on norwegian bokmål translation, string status to fuzzy before review
svn: r20808
2012-12-21 13:47:14 +00:00
Jérôme Rapinat
71b951f31d avoid fatal errors on swedish translation, string status to fuzzy before review
svn: r20807
2012-12-21 13:38:45 +00:00
Jérôme Rapinat
a542081e25 test update and merge processes with the french translation file
svn: r20806
2012-12-21 13:26:33 +00:00
Jérôme Rapinat
5b8da49bae do not need to check untranslated and fuzzy strings because they have not been reviewed yet; warning this script uses tab for the bloc indentation...
svn: r20804
2012-12-20 17:41:09 +00:00
Benny Malengier
4d7e1043ef On translation error, allow build to continue after asking user
svn: r20802
2012-12-20 16:40:23 +00:00
Jérôme Rapinat
2040716b9c common date handler for Norwegian Bokmål and Norwegian Nynorsk
svn: r20801
2012-12-20 14:16:30 +00:00
Brian Matherly
8a3a477ea4 Create 4.0 branch
svn: r20798
2012-12-20 13:31:33 +00:00
2061 changed files with 1092378 additions and 1635982 deletions

11
.get_packages_list.py Normal file
View File

@@ -0,0 +1,11 @@
import os
from distutils2.util import find_packages
exclude_list = ('src.gui.glade', 'src.guiQML', 'src.guiQML.views', 'src.images', 'src.plugins',
'src.webapp', 'src.webapp.grampsdb', 'src.webapp.grampsdb.templatetags', 'src.webapp.grampsdb.view', )
packages = sorted(find_packages(exclude=exclude_list))
for package in packages:
print(" '%s'," % package)

18
.gitattributes vendored
View File

@@ -1,18 +0,0 @@
# Make Github recognise Gramps as a Python project,
# by marking .sql files as text files!
# See: https://github.com/github/linguist/issues/2462
# https://github.com/github/linguist/blob/master/README.md
*.sql linguist-language=txt
# Have Github ignore js vendored files.
# https://github.com/gramps-project/gramps/tree/master/data/javascript
#data/javascript/*.js linguist-vendored
# don't mess with line endings for test files
*.vcs -text
*.ged -text
*.GED -text
*.csv -text
*.DEF -text
*.IXI -text
*.REM -text

23
.gitignore vendored
View File

@@ -2,26 +2,11 @@
*.py[cod]
# Distutils
MANIFEST
build/
dist/
sdist/
# Gramps
data/tips.xml
data/holidays.xml
gramps/data/tips.xml
gramps/gen/const.py
gramps/plugins/lib/holidays.xml
po/.intltool-merge-cache
docs/_build/
# Editing
tags
*.swp
# Testing
test/data
# Windows image file caches
Thumbs.db
ehthumbs.db
# Glade temp files
*~

View File

@@ -1,28 +0,0 @@
<benny.malengier@gramps-project.org> <benny.malengier@gmail.com>
<doug.blank@gmail.com> <dsblank@bitbucket.org>
<doug.blank@gmail.com> <dblank@cs.brynmawr.edu>
<beernarrd@gmail.com> <beernarrd@users.sourceforge.net>
<igal.shapira@gmail.com> <igalshapira@users.sourceforge.net>
<romjerome@yahoo.fr> <romjerome@users.noreply.github.com>
<jralls@ceridwen.us> <john@aeolus.local>
<josip@pisoj.com> <bpisoj@gmail.com>
Josip Pisoj <josip@pisoj.com>
Mirko Leonhaeuser <mirko@leonhaeuser.de>
<martin.hawlisch@gmx.de> <loshawlos@users.sourceforge.net>
Matti Niemelä <matti.u.niemela@gmail.com> <niememat@gmail.com>
<nick-h@gramps-project.org> <nick__hall@hotmail.com>
<nick-h@gramps-project.org> <Nick-Hall@users.noreply.github.com>
Ondrej Krč-Jediný <hou@centrum.sk>
<hou@centrum.sk> <ondrisko@users.sourceforge.com>
Pierre Bélissent <pierre.belissent@gmail.com>
Serge Noiraud <Serge.Noiraud@free.fr>
<Serge.Noiraud@free.fr> <serge.noiraud@free.fr>
<Serge.Noiraud@free.fr> <serge.noiraud@laposte.net>
Zdeněk Hataš <zdenek.hatas@gmail.com>
<zdenek.hatas@gmail.com> <zdenek.hatas@hp.com>
<zdenek.hatas@gmail.com> <zenhas@users.sourceforge.net>
<gerald@gkunzmann.de> <g.kunzmann@arcor.de>
Tim G L Lyons <tim.g.lyons@gmail.com>
<tim.g.lyons@gmail.com> <guy.linton@gmail.com>
Elder Evans <elderamevans@gmail.com>

378
.pylintrc
View File

@@ -1,378 +0,0 @@
[MASTER]
# Specify a configuration file.
#rcfile=
# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
#init-hook=
# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=CVS
# Pickle collected data for later comparisons.
persistent=yes
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=
# Use multiple processes to speed up Pylint.
jobs=1
# Allow loading of arbitrary C extensions. Extensions are imported into the
# active Python interpreter and may run arbitrary code.
unsafe-load-any-extension=no
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=
# Allow optimization of some AST trees. This will activate a peephole AST
# optimizer, which will apply various small optimizations. For instance, it can
# be used to obtain the result of joining multiple strings with the addition
# operator. Joining a lot of strings can lead to a maximum recursion error in
# Pylint and this flag can prevent that. It has one side effect, the resulting
# AST will be different than the one from reality.
optimize-ast=no
[MESSAGES CONTROL]
# Only show warnings with the listed confidence levels. Leave empty to show
# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
confidence=
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time. See also the "--disable" option for examples.
#enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once).You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=suppressed-message,intern-builtin,round-builtin,unicode-builtin,range-builtin-not-iterating,long-builtin,basestring-builtin,setslice-method,print-statement,reload-builtin,metaclass-assignment,raising-string,next-method-called,import-star-module-level,xrange-builtin,getslice-method,zip-builtin-not-iterating,reduce-builtin,dict-iter-method,delslice-method,using-cmp-argument,hex-method,buffer-builtin,old-ne-operator,nonzero-method,backtick,parameter-unpacking,indexing-exception,file-builtin,filter-builtin-not-iterating,raw_input-builtin,execfile-builtin,oct-method,cmp-method,coerce-builtin,long-suffix,cmp-builtin,input-builtin,dict-view-method,standarderror-builtin,apply-builtin,old-raise-syntax,unichr-builtin,old-division,coerce-method,unpacking-in-except,useless-suppression,no-absolute-import,map-builtin-not-iterating,old-octal-literal
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=text
# Put messages in a separate file for each module / package specified on the
# command line instead of printing them on stdout. Reports (if any) will be
# written in a file name "pylint_global.[txt|html]".
files-output=no
# Tells whether to display a full report or only the messages
reports=yes
# Python expression which should return a note less than 10 (10 is the highest
# note). You have access to the variables errors warning, statement which
# respectively contain the number of errors / warnings messages and the total
# number of statements analyzed. This is used by the global evaluation report
# (RP0004).
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details
#msg-template=
[BASIC]
# List of builtins function names that should not be used, separated by a comma
bad-functions=map,filter
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,ex,Run,_,db
# Bad variable names which should always be refused, separated by a comma
bad-names=foo,bar,baz,toto,tutu,tata
# Colon-delimited sets of names that determine each other's naming style when
# the name regexes allow several styles.
name-group=
# Include a hint for the correct naming format with invalid-name
include-naming-hint=no
# Regular expression matching correct argument names
argument-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for argument names
argument-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression matching correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Naming hint for module names
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Regular expression matching correct class attribute names
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
# Naming hint for class attribute names
class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
# Regular expression matching correct function names
function-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for function names
function-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression matching correct inline iteration names
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
# Naming hint for inline iteration names
inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
# Regular expression matching correct constant names
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
# Naming hint for constant names
const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
# Regular expression matching correct method names
method-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for method names
method-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression matching correct class names
class-rgx=[A-Z_][a-zA-Z0-9]+$
# Naming hint for class names
class-name-hint=[A-Z_][a-zA-Z0-9]+$
# Regular expression matching correct variable names
variable-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for variable names
variable-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression matching correct attribute names
attr-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming hint for attribute names
attr-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=^_
# Minimum line length for functions/classes that require docstrings, shorter
# ones are exempt.
docstring-min-length=-1
[ELIF]
# Maximum number of nested blocks for function / method body
max-nested-blocks=5
[LOGGING]
# Logging modules to check that the string format arguments are in logging
# function parameter format
logging-modules=logging
[SPELLING]
# Spelling dictionary name. Available dictionaries: none. To make it working
# install python-enchant package.
spelling-dict=
# List of comma separated words that should not be checked.
spelling-ignore-words=
# A path to a file that contains private dictionary; one word per line.
spelling-private-dict-file=
# Tells whether to store unknown words to indicated private dictionary in
# --spelling-private-dict-file option instead of raising a message.
spelling-store-unknown-words=no
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,XXX,TODO
[TYPECHECK]
# Tells whether missing members accessed in mixin class should be ignored. A
# mixin class is detected if its name ends with "mixin" (case insensitive).
ignore-mixin-members=yes
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set). This supports can work
# with qualified names.
ignored-classes=
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=4
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=no
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=80
# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
# Allow the body of an if to be on the same line as the test if there is no
# else.
single-line-if-stmt=no
# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,dict-separator
# Maximum number of lines in a module
max-module-lines=1000
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string=' '
# Number of spaces of indent required inside a hanging or continued line.
indent-after-paren=4
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=no
# A regular expression matching the name of dummy variables (i.e. expectedly
# not used).
dummy-variables-rgx=_$|dummy
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.
additional-builtins=
# List of strings which can identify a callback function by name. A callback
# name must start or end with one of those strings.
callbacks=cb_,_cb
[CLASSES]
# List of method names used to declare (i.e. assign) instance attributes.
defining-attr-methods=__init__,__new__,setUp
# List of valid names for the first argument in a class method.
valid-classmethod-first-arg=cls
# List of valid names for the first argument in a metaclass class method.
valid-metaclass-classmethod-first-arg=mcs
# List of member names, which should be excluded from the protected access
# warning.
exclude-protected=_asdict,_fields,_replace,_source,_make
[IMPORTS]
# Deprecated modules which should not be used, separated by a comma
deprecated-modules=optparse
# Create a graph of every (i.e. internal and external) dependencies in the
# given file (report RP0402 must not be disabled)
import-graph=
# Create a graph of external dependencies in the given file (report RP0402 must
# not be disabled)
ext-import-graph=
# Create a graph of internal dependencies in the given file (report RP0402 must
# not be disabled)
int-import-graph=
[DESIGN]
# Maximum number of arguments for function / method
max-args=5
# Argument names that match this expression will be ignored. Default to name
# with leading underscore
ignored-argument-names=_.*
# Maximum number of locals for function / method body
max-locals=15
# Maximum number of return / yield for function / method body
max-returns=6
# Maximum number of branch for function / method body
max-branches=12
# Maximum number of statements in function / method body
max-statements=50
# Maximum number of parents for a class (see R0901).
max-parents=7
# Maximum number of attributes for a class (see R0902).
max-attributes=7
# Minimum number of public methods for a class (see R0903).
min-public-methods=2
# Maximum number of public methods for a class (see R0904).
max-public-methods=20
# Maximum number of boolean expressions in a if statement
max-bool-expr=5
[EXCEPTIONS]
# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
overgeneral-exceptions=Exception

View File

@@ -1,129 +0,0 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2015-2015 Doug Blank
# Copyright (C) 2016 DaAwesomeP
# Copyright (C) 2016 QuLogic
# Copyright (C) 2016 Tim G L Lyons
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# After changing this file, check it on:
# http://lint.travis-ci.org/
sudo: required
dist: trusty
language: python
python:
- 3.3 # This is irrelevant, because the virtualenv is not used at all
# FIXME: The minimum requirement for Gramps is Python 3.2, so a test environment
# for Python 3.2 should be added to this environment which is Python 3.3. It
# will not be possible to run coverage under Python 3.2, because coverage is
# Python 3.3 (or above) only.
addons:
apt:
packages:
- gir1.2-pango-1.0
- gir1.2-gtk-3.0
- xdg-utils
- librsvg2-common
- libglib2.0-dev
- intltool
# - python3-gobject Provided by python3-gi
- python3-gi
- python3-cairo
- python3-gi-cairo
- python3-bsddb3
- python3-dev
- python3-nose
- python3-mock
- python3-pyicu
- python3-coverage
- python3-jsonschema
# lxml dependencies. for merge_ref_test to work
# - libxml2-dev
# - libxslt1-dev
- libxml2-utils
- python3-lxml
- python-libxml2
# ubuntu 14.04 requires this in addition to libxml2-dev and
# libxslt1-dev for compiling lxml.
# https://github.com/deanmalmgren/textract/issues/19
- zlib1g-dev
before_install:
install:
# The working directory is set to /home/travis/build/gramps-project/gramps
# by the automatic git checkout.
# Download Sean Ross-Ross's Pure Python module containing a framework to
# manipulate and analyze python ast<73>s and bytecode. This is loaded to
# /home/travis/build/gramps-project/gramps/meta
# FIXME: This should be loaded from the release directory at
# https://pypi.python.org/pypi/meta
- git clone -b master https://github.com/srossross/meta
# Build Gramps package. This seems to copy everything to
# /home/travis/build/scripts-3.3
- python setup.py build
before_script:
# Create the Gramps database directory.
- mkdir -p ~/.gramps/grampsdb/
# set PYTHONPATH so the directly installed module (meta) is picked up from
# /home/travis/build/gramps-project/gramps/meta
- export PYTHONPATH=meta
# set module exclusions. --exclude=TestUser because of older version of mock
# without configure_mock
- export EXCLUDE="--exclude=TestcaseGenerator"
# --exclude=merge_ref_test"
# set GRAMPS_RESOURCES for locale, data,image and documentation
- export GRAMPS_RESOURCES=.
# Install addons
- mkdir -p ~/.gramps/gramps50/plugins/
- wget https://github.com/gramps-project/addons/raw/master/gramps50/download/CliMerge.addon.tgz
- tar -C ~/.gramps/gramps50/plugins -xzf CliMerge.addon.tgz
- wget https://github.com/gramps-project/addons/raw/master/gramps50/download/ExportRaw.addon.tgz
- tar -C ~/.gramps/gramps50/plugins -xzf ExportRaw.addon.tgz
script:
# Ignore the virtualenv entirely. Use nosetests3, python3 (3.4.0) and coverage
# from /usr/bin. Use libraries from /usr/lib/python3.4,
# /usr/local/lib/python3.4/dist-packages and /usr/lib/python3/dist-packages
- nosetests3 --nologcapture --with-coverage --cover-package=gramps $EXCLUDE
gramps
# FIXME: This should have run from the current directory, rather than from
# gramps, because there is some test code in that directory.
# give an error for any trailing whitespace
- if git --no-pager grep --color -n --full-name '[ ]$' -- \*.py; then
echo "ERROR - Trailing whitespace found in source file(s)";
exit 1;
fi
after_success:
# apt-get installs python3-coverage, but codecov only invokes coverage, so make
# a link
- sudo ln /usr/bin/python3-coverage /usr/bin/coverage
# We have to use the bash script because the apt-get coverage does not install
# codecov. If we used pip to install codecov, it would run inside the
# virtualenv, and that doesn't work. Change the path to ensure that codecov
# picks up coverage from /usr/bin, rather than from
# /home/travis/virtualenv/python3.3.6/bin/
- PATH=/usr/bin:$PATH bash <(curl -s https://codecov.io/bash)

View File

@@ -1,3 +1,4 @@
<!-- $Id$ -->
Alex Roitman shura@gramps-project.org

View File

@@ -1,12 +0,0 @@
See developer documentation at:
https://gramps-project.org/wiki/index.php?title=Portal:Developers
https://gramps-project.org/wiki/index.php?title=Brief_introduction_to_Git#Making_a_patchfile
https://gramps-project.org/wiki/index.php?title=Brief_introduction_to_Git#Making_a_PR
If you are interested in translating:
* The Gramps program to your language see:
https://gramps-project.org/wiki/index.php?title=Translating_Gramps
https://gramps-project.org/wiki/index.php?title=Portal:Translators
* The Gramps user manual to your language see:
https://gramps-project.org/wiki/index.php?title=Translating_the_Gramps_User_manual

View File

@@ -2,7 +2,7 @@
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
675 Mass Ave, Cambridge, MA 02139, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

746
ChangeLog
View File

@@ -1,746 +0,0 @@
2018-12-20 Paul Culley <paulr2787@gmail.com>
* gramps/gui/configure.py, gramps/gui/display.py,
gramps/gui/glade/book.glade, gramps/gui/glade/styleeditor.glade,
gramps/gui/plug/report/_bookdialog.py,
gramps/gui/plug/report/_styleeditor.py,
gramps/gui/selectors/selectperson.py,
gramps/gui/selectors/selectrepository.py,
gramps/gui/widgets/grampletpane.py,
gramps/gui/widgets/reorderfam.py,
gramps/plugins/tool/mediamanager.py,
gramps/plugins/tool/relcalc.glade, gramps/plugins/tool/relcalc.py,
po/ar.po, po/bg.po, po/br.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/el.po, po/en_GB.po, po/eo.po, po/es.po, po/fi.po,
po/fr.po, po/ga.po, po/gramps.pot, po/he.po, po/hr.po, po/hu.po,
po/is.po, po/it.po, po/ja.po, po/lt.po, po/mk.po, po/nb.po,
po/nl.po, po/nn.po, po/pl.po, po/pt_BR.po, po/pt_PT.po, po/ro.po,
po/ru.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr_Latn.po,
po/sv.po, po/ta.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po,
po/zh_HK.po, po/zh_TW.po: Help issues for bug 9042 (#738) * Media Manager: add help button and remove '...' Issue #9042 * Edit/Preferences: add Help button Issue #9042 * Style Editor, Document Styles dialog: add help buttons Issue #9042 * Fix Select Person dialog Help button URL Issue #9042 * Fix Select Repository dialog Help button URL Issue #9042 * Relationship Calculator: Add help button Issue #9042 * Reorder Relationships dialog; add Help button Issue #9042 * Generate Book Dialog; Fix Help URL Issue #9042 * Manage Book dialog; add help button Issue #9042 * Fix Detached Gramplets Help button URL when 'help_url' not in .gpr Issue #9042 * Fix help URLs when they contain illegal characters and to match
wiki section targetID algorithm Issue #9042
2018-12-20 prculley <paulr2787@gmail.com>
* po/hu.po: Updated Hungarian translation
2018-12-20 milotype <43657314+milotype@users.noreply.github.com>
* gramps/gen/datehandler/_date_hr.py, po/hr.po: Croatian
localisation updates (#741) * Update/Completion Croatian translation This is a big update. The croatian translation is now 100% complete.
Translated all missing strings, made lots of corrections, improved
consistency in the wording, tested thoroughly. Also, it will work
with the updated datehandler file "_date_hr.py", which i'll be
updating simultaneously. * Croatian Datehandler update Made changes to fit croatian specific date handling. Also because
i've updated the hr.po file. I've tested it with the present
"_datedisplay.py" of the maintainance/gramps50 branch. Basically it would be great, if next to the obligatory "display_iso"
format, only two more formats would show up in the croatian
drop-down menus: "dd_dformat01" (numerical) and "dd_dformat04".
Other formats are unneeded. 9. 5. 2018. => ordinal numbers, all separated by spaces 9. svibnja 2018. => ordinal numbers and genitiv month's form, all
separated by spaces
2018-12-20 Nick Hall <nick-h@gramps-project.org>
* gramps/gen/db/generic.py: Fix contents of enclosed_by secondary
dbapi column (#742) The enclosed_by column should contain the first value in the list
instead of the last. Resolves #10907.
2018-12-18 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2018-12-15 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/mapservices/googlemap.py: Google maps URL problem Fixes #10772
2018-12-09 prculley <paulr2787@gmail.com>
* gramps/gen/plug/docbackend/docbackend.py: Fix ODT reports with
links when run in non-English languages Fixes #10911
2018-12-06 prculley <paulr2787@gmail.com>
* gramps/gui/plug/report/_reportdialog.py: Allow addon Reports to
specify a help button URL for options dialog Fixes #10910
2018-12-01 Nick Hall <nick-h@gramps-project.org>
* gramps/plugins/db/dbapi/dbapi.py, gramps/plugins/tool/rebuild.py:
Fix Rebuild Secondary Indexes tool for dbapi backends For dbapi backends, this tool will update the secondary columns that
are used for indexing. Resolves #10757.
2018-11-15 prculley <paulr2787@gmail.com>
* gramps/plugins/db/dbapi/dbapi.py: Fix dbapi set_name_group_mapping
to properly close transaction Fixes #10730
2018-10-24 prculley <paulr2787@gmail.com>
* gramps/gen/datehandler/_date_ru.py: Fix Russian date handler crash
when Russian .po isn't present Fixes #10855
2018-12-04 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2018-12-04 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2018-11-29 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/plug/quick/_quicktable.py: Fix Quickview for missing
table data on some Gtk Versions (#593) Issue #10448 Issue #7867
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/cli/arghandler.py, gramps/gui/grampsgui.py: Fix startup
messages with bad filename (#720) Fixes #10885
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/selectors/selectplace.py,
gramps/gui/views/treemodels/placemodel.py,
gramps/plugins/lib/libplaceview.py: Restrict Place view Name col to
the primary name (#673) while allowing searchbar to find alt and primary names related to Issue #9276 while allowing searchbar to find alt and primary names. Currently, the Place View and Place Selector name column shows a
comma separated list of the primary and alt names for a place. With
the advent of GeoNames and Gov data, the alt names lists are getting
populated with (sometimes long) lists of (sometimes duplicated)
names. This doesn't look very good in the view. I've gotten a couple
of email complaints about this. The Name column was originally extended (for Gramps50) to include
alt names to allow the use of the top search bar (enabled when
sidebar is turned off via 'View/Sidebar'), to perform a search
through all the alt names as well as primary name.
https://gramps-project.org/bugs/view.php?id=9276 This PR creates a new (hidden) column in the place model containing
the full name list, and reverts the 'Name' column to the primary
name. It also modifies the PlaceSelector and PlaceView classes to
cause the search bar to use the new (hidden) column.
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/filters/sidebar/_personsidebarfilter.py: Fix Person
Sidebarfilter when using 'Event' and Reg expressions (#729) Fixes #10659
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/tool/finddupes.py: Fix Find Duplicate People;
exception when deleting someone shown (#728) outside of the tool Fixes #10875
2018-11-28 Paul Culley <paulr2787@gmail.com>
* data/tests/exp_sample_ged.ged,
gramps/plugins/export/exportgedcom.py,
gramps/plugins/test/exports_test.py: Gedcom export, upgrade OBJE
handling to Gedcom 5.5.1 style (#702) Fixes #10797
2018-11-28 Paul Culley <paulr2787@gmail.com>
* data/tests/imp_sample_csv.gramps,
gramps/plugins/importer/importcsv.py: Fix CSV import to set marriage
event role to family (#725) Fixes #9952
2018-11-28 Paul Culley <paulr2787@gmail.com>
* data/tips.xml.in, po/ar.po, po/bg.po, po/br.po, po/ca.po,
po/cs.po, po/da.po, po/de.po, po/el.po, po/en_GB.po, po/eo.po,
po/es.po, po/fi.po, po/fr.po, po/ga.po, po/gramps.pot, po/he.po,
po/hr.po, po/hu.po, po/is.po, po/it.po, po/ja.po, po/lt.po,
po/mk.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt_BR.po,
po/pt_PT.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sq.po,
po/sr.po, po/sr_Latn.po, po/sv.po, po/ta.po, po/tr.po, po/uk.po,
po/vi.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: Update gramps
bugtracker URL in all po files (#710) Fixes #10543
2018-11-28 Serge Noiraud <Serge.Noiraud@laposte.net>
* data/css/Web_Basic-Ash.css, data/css/Web_Basic-Blue.css,
data/css/Web_Basic-Cypress.css, data/css/Web_Basic-Lilac.css,
data/css/Web_Basic-Peach.css, data/css/Web_Basic-Spruce.css,
data/css/Web_Mainz.css, data/css/Web_Nebraska.css: Narrative Web :
thumbnails bad alignment. (#691) * Narrative Web : thumbnails bad alignment. Fixes #10854 also solves the following problems in the Nebraska style sheet : 1 - float parameter has no value "center" 2 - "[" instead of ";" at end of line 1100 * overlapping with long titles
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/views/treemodels/citationlistmodel.py: Fix typo in
CitationListModel for sort change (#730)
2018-11-28 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/gramplet/todo.py: Fix Adding "ToDo" note crash when
no active object (#685) * Fix Adding "ToDo" note crash when no active object Fixes #10795 * Better message when no active object. * resolve conflict: Fixes #10795
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/views/treemodels/citationbasemodel.py,
gramps/gui/views/treemodels/citationlistmodel.py: Fix Citation List
view Source Last Changed Column to sort properly (#723) Fixes #10893
2018-11-28 pmraps <43935667+pmraps@users.noreply.github.com>
* po/pt_PT.po: some pt_PT.po translation changes (#703) * some header changes * more changes
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/viewmanager.py: Fix for re-entrant main window close
when user hits 'x' again (#724) Fixes #10897
2018-11-28 Paul Culley <paulr2787@gmail.com>
* gramps/gui/managedwindow.py: Fix exception when closing early
editor in tree of editors (#706) Fixes #10876
2018-11-28 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/webreport/basepage.py: Narrative Web: thumbnails
problems in some cases. (#722) Fixes #10890
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/plug/report/_bookdialog.py: Fix 'Generate Book' dialog
for crash on 'x' close (#726) Fixes #10901
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/gramplet/todo.py: Fix ToDo Gramplet for multiple
attempts to edit a note (#719) Fixes #10645
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/widgets/grampletpane.py: Fix Dashboard for multiple
copies of a Gramplet (#718) * Fix Dashboard for multiple copies of a Gramplet Fixes #10650 * Fix Dashboard to recall minimized or undocked Gramplets
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/displaystate.py: Fix Statusbar update to avoid
intermittent exception on closed db (#716) Fixes #10882
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gen/filters/_filterparser.py: Fix FilterParser for much
older 3.x custom_filters.xml files (#715) Fixes #8075 Fixes #10669 Fixes #10516
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gen/filters/rules/person/_isduplicatedancestorof.py: Fix
IsDuplicatedAncestorOf filter rule to avoid crash on tree loop
(#714) Fixes #10685
2018-11-28 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/webreport/person.py,
gramps/plugins/webreport/place.py: Narrative web : use latest
version from openlayers. (#713) Fixes #10884
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/editors/editlink.py: Fix StyledTextEditor EditLink for
root text changed to zero length (#709) in the background Fixes #9750
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gen/simple/_simpleaccess.py: Fix AgeOnDate and some reports
using SimpleAccess for missing surname (#708) Fixes #9958 Fixes #9800
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gen/filters/rules/_rule.py: Fix crash when a filter with
loop in definition is defined (#707) Fixes #10621
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gen/proxy/referencedbyselection.py,
gramps/plugins/gramplet/citations.py: Fix HandleErrors related to
LDS (#697) * Fix ReferencedBySelection proxy for 'None' LDS Parents Fixes #10865 * Fix HandleError in Citations Gramplet for lds place missing
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/lib/libplaceview.py: Change PlaceView drag from
whole row to just icon during drag (#695) Fixes #10863
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/editors/displaytabs/embeddedlist.py: Add drag Icon to
drags from DisplayTabs Gramplet lists (#694) Fixes #10859
2018-11-27 Paul Culley <paulr2787@gmail.com>
* gramps/gui/glade/baseselector.glade,
gramps/gui/glade/dbman.glade,
gramps/gui/plug/report/_bookdialog.py,
gramps/gui/selectors/baseselector.py,
gramps/gui/selectors/selectcitation.py,
gramps/gui/selectors/selectevent.py,
gramps/gui/selectors/selectfamily.py,
gramps/gui/selectors/selectnote.py,
gramps/gui/selectors/selectobject.py,
gramps/gui/selectors/selectperson.py,
gramps/gui/selectors/selectplace.py,
gramps/gui/selectors/selectrepository.py,
gramps/gui/selectors/selectsource.py,
gramps/plugins/tool/testcasegenerator.py: Fix dialogs for 'Help'
button closes the dialog, and non-functional 'Help' (#727) * Fix Family Tree manager for 'Help' button closes dialog Fixes #10589 * Fix selectors for 'Help' button closes dialog Fixes #10589 * Fix 'Generate Book' dialog for 'Help' button closes dialog Fixes #10589 * Fix TestcaseGenerator for 'Help' button closes dialog Fixes #10589 * Fix Selectors to enable the 'Help' buttons to actually work Fixes #10589
2018-10-26 prculley <paulr2787@gmail.com>
* gramps/gui/editors/editfamily.py: Avoid HandleError when dragging
an Added Family from EditFamily Fixes #10858
2018-10-26 prculley <paulr2787@gmail.com>
* gramps/gui/editors/editperson.py: Avoid HandleError when dragging
an Added Person from EditPerson Fixes #10857
2018-10-20 prculley <paulr2787@gmail.com>
* gramps/gui/clipboard.py: Fix Clipboard rows cannot be sorted via
drag/drop Fixes #10849
2018-10-19 prculley <paulr2787@gmail.com>
* gramps/gen/config.py, gramps/gui/dbloader.py,
gramps/gui/plug/export/_exportassistant.py,
gramps/gui/views/listview.py: Better default directory choices for
import/export Use recent-export-dir as default for Export View instead of the
console default directory, which can be where program resides (on
Windows), or other inappropriate place. Use USER_HOME for default directory on 'Export' (recent-export-dir)
if first run (default settings) rather than default directory, which
can be where program resides (on Windows), or other inappropriate
place. Use USER_HOME for default directory on 'Import' (recent-import-dir)
if first run (default settings) rather than recent file which is
generally set to the grampsdb path. Fixes #10802
2018-10-16 SNoiraud <serge.noiraud@laposte.net>
* gramps/plugins/docgen/htmldoc.py: Records Report: call name not
underlined in HTML Fixes #10816
2018-11-20 Christophe <khrys63@gmail.com>
* po/fr.po: Fix French translation
2018-10-14 prculley <paulr2787@gmail.com>
* gramps/gui/widgets/interactivesearchbox.py: Fix InteractiveSearch
for find before model is populated Fixes #10844
2018-10-07 prculley <paulr2787@gmail.com>
* gramps/plugins/export/exportgedcom.py: Fix Gedcom export for
incorrect escaping with @#DFRENCH R@ Fixes #10833
2018-10-06 prculley <paulr2787@gmail.com>
* gramps/plugins/textreport/detancestralreport.py,
gramps/plugins/textreport/detdescendantreport.py,
gramps/plugins/textreport/indivcomplete.py,
gramps/plugins/webreport/basepage.py: Fix reports for shared event
attribute and note errors Fixes #10720
2018-10-02 prculley <paulr2787@gmail.com>
* gramps/gui/widgets/fanchart.py,
gramps/gui/widgets/fanchartdesc.py: Fix Fan and Descendant Fan
charts in Quadrant and Half Circle modes The Descendant Fan chart
had several bugs: 1) a bug that affected the centering of the chart for these modes 2) the chart was drawn in the wrong quadrant 3) the centering of the chart for printing was incorrect (the legend was off the page some of the time). 4) the sizing of the chart for printing was incorrect (for very small charts of one generation, the legend would overwrite the chart). The Fan Chart for the quadrant view: 1) the centering of the chart for printing was incorrect (the legend was off the page some of the time). Fixes #10817
2018-09-30 Robin van der Vliet <info@robinvandervliet.com>
* gramps/plugins/rel/rel_nl.py: Fixed issues in the Dutch
relationship calculator Fixed some issues in the Dutch relationship calculator and also
extended the ordinal and removed lists till 50, just like the
English lists. * Replaced huge lists by reusable lists. * Fixed bug in which uncles/aunts, nephews/nieces (niblings), siblings and cousins with an unknown gender show up as female. * Fixed some misspellings: drieëntwingste > drieëntwinTIgste vierentwingste > vierentwinTIgste edelovergrootOUD > edelovergroot edeloudvergroot > edeloudOvergroot
2018-11-15 P<>r Ekholm <pelle.ekh@koping.net>
* po/sv.po: Update Swedish translation
2018-11-18 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-11-10 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2018-11-09 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2018-09-28 SNoiraud <serge.noiraud@laposte.net>
* data/css/Web_Basic-Ash.css, data/css/Web_Basic-Blue.css,
data/css/Web_Basic-Cypress.css, data/css/Web_Basic-Lilac.css,
data/css/Web_Basic-Peach.css, data/css/Web_Basic-Spruce.css,
data/css/Web_Horizontal-Menus.css, data/css/Web_Mainz.css,
data/css/Web_Nebraska.css, gramps/plugins/webreport/basepage.py:
NarrativeWeb fixes Space between place, description and the event note when there are
many sources. Change the css order between print and screen. The
chosen theme can erase prior values. Add a width for the source
column in all themes. Fixes #10810
2018-10-17 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-10-07 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/drawreport/statisticschart.py,
gramps/plugins/graph/gvfamilylines.py,
gramps/plugins/graph/gvrelgraph.py,
gramps/plugins/webreport/webcal.py: Setting the year as an ordinal
number in Croatian With this commit, two more reports now show a year as an ordinal
number in Croatian, and a year I missed before in webcal.py is now
fixed. This commit also reverts the Croatian ordinal year fix in the
gramps50 statisticschart.py since upon reflection I feel it would be
better done in master, since then our translators will have until
5.1.0 is released to do the two new strings the fix requires. Issue #10822
2018-10-07 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/textreport/indivcomplete.py: name-note is not being
cleared in Complete Individual report I ran gramps with a fresh copy of the example.gramps tree, then ran
the Complete Individual report. The options which matter are
"Entire Database" and "Include Notes" but I also included the
gramps-ID since that speeds up my work. Then I noticed that hundreds of names at the end of the output file
all had the same note (N0001), whose text said it referred to a
specific person. So I looked higher and the note inclusion started with I0044, the
default person. It was real for him but not for the next person
after him, or all the people after her. I introduced the problem when I fixed 10033, in d6a97cf90e. Note that this bug is independent of the CIR fix in p.r. 676 and
still happens even after that pull request is applied.
2018-10-04 prculley <paulr2787@gmail.com>
* gramps/gui/columnorder.py, gramps/gui/views/listview.py: Fix View
Column sizing so last column size setting is maintained Fixes #10800
2018-08-06 prculley <paulr2787@gmail.com>
* gramps/gui/views/listview.py: Fix view so column widths are
preserved when using filters Fixes #10725
2018-08-29 vantu5z <vantu5z@mail.ru>
* po/ru.po: update Russian translation
2018-10-04 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/display/place.py: fix typo in cbac98894bfa7e1969625efceccc19c4d5374a7e
2018-10-04 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/lib/libnarrate.py,
gramps/plugins/textreport/detancestralreport.py,
gramps/plugins/textreport/detdescendantreport.py: fix the
place-format option in DDR and DAR The place-format option was added to the Detailed Descendant and
Detailed Ancestor text reports in
cbac98894bfa7e1969625efceccc19c4d5374a7e But those two reports use the Narrator class to show many of their
places (and dates), and that class was not modified to use the
user's custom place format. So if a user had created a custom place format and ran either of
those two reports, their places would be shown inconsistently. This
commit fixes that. (The non-detailed ancestor text report also uses Narrator to show
its places but that report has not had the place-format option added
to it, so this commit doesn't touch it.)
2018-10-04 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/drawreport/fanchart.py,
gramps/plugins/drawreport/statisticschart.py,
gramps/plugins/drawreport/timeline.py, po/hr.po: Setting the year as
an ordinal number in Croatian With this commit, three more reports now show a year as an ordinal
number in Croatian. Issue #10822
2018-05-09 prculley <paulr2787@gmail.com>
* gramps/plugins/db/bsddb/read.py: Fix bsddb for person sort with
empty Surname list Fixes #10078, #10577
2018-10-01 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/drawreport/calendarreport.py,
gramps/plugins/textreport/birthdayreport.py,
gramps/plugins/webreport/webcal.py, po/hr.po: Setting the year as an
ordinal number in Croatian When I started investigating 10822, I saw some Croatian dates didn't
seem to be working in 5.0.0, to my surprise. I believe I fixed that
in the previous commit. With this commit, the three reports now show a year as an ordinal
number in Croatian, so I consider 10822 fixed. If there are any additional problems displaying Croatian, please
file additional bug reports ("one bug, one report"). Fixes #10822
2018-10-01 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_date_hr.py,
gramps/gen/datehandler/_datedisplay.py, po/hr.po: Setting the year
as an ordinal number in Croatian When I started investigating 10822 I saw some Croatian dates didn't
seem to be working in 5.0.0, to my surprise. There seems to have
been some kind of regression from 4.2.8. But the Croatian translation for gramps hasn't been updated in about
three years -- except by non-Croatians. So I don't know why some
"translated" strings which control how dates are displayed were
disabled (marked as "fuzzy") in this:
6c67053e1fa22405bde0fae38e81de7ace222d41 Also, I saw some code in the 4.2.8 Croatian date handler which was
not in the 5.0.0 Croatian date handler -- somehow. So I believe this commit fixes the Croatian date handler. Issue #10822
2018-09-30 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/webreport/webcal.py: Webcal: link problems in some
cases (#661) * Webcal: link problems in some cases Year 2016 is highlighted by default instead of current year. Fixes #10801 * Webcal: Missing links when muliyear unselected
2018-09-29 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/view/geoclose.py: Geoclose: exception when a family
has no father (#662)
2018-09-26 Paul Franklin <pf.98052@gmail.com>
* gramps/plugins/drawreport/descendtree.py: Report plugin krasch Load data.gramps, start with the default person (I0037, Edwin
Michael Smith), run Family Descendant Tree, choose "Start with the
parent(s) of the selected first", hit OK: .../descendtree.py", line 881, in start family2 = self.database.get_family_from_handle(family2_h) ... Or start with I0057 (Anna Louise Smith), run Family Descendant Tree,
choose "Start with the parent(s) ...", hit OK: .../descendtree.py", line 773, in start family2 = self.database.get_family_from_handle(family2_h) ... Fixes #10811
2018-09-26 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_date_is.py,
gramps/gen/datehandler/_datedisplay.py: [unhandled exception parsing
"future dates" in some locales] There is already a check in the MonitoredDate class for years which
are more than one year in the future, so such a date is already
going to be shown in red. But some locales use the "datetime" library to parse typed-in dates
and that has a maximum year of datetime.MAXYEAR, 9999 currently, so
dates greater than that produce a ValueError. Besides adding checks for that, I have also made it so that locales
which don't need that library don't use it. Fixes #10815
2018-09-24 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/datehandler/_date_nb.py: Julian/Gregorian calendar
issue when entering only year as date when running gramps in Norwegian Fixes #10687
2018-09-23 Serge Noiraud <Serge.Noiraud@laposte.net>
* gramps/plugins/webreport/basepage.py: Events difficult to read
(screen and mobile) (#658)
2018-09-17 Paul Franklin <pf.98052@gmail.com>
* gramps/gen/plug/report/stdoptions.py,
gramps/plugins/textreport/placereport.py: fix typo in cf42e5a4b847e6881f180cd1b776fb02234768be and
cbac98894bfa7e1969625efceccc19c4d5374a7e Fixes #10782
2018-09-08 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: update German translation
2018-09-06 niememat <niememat@gmail.com>
* po/fi.po: New update for Finnish translation
2018-09-06 niememat <niememat@gmail.com>
* po/fi.po: Update finnish translation
2018-09-05 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/gramplet/statsgramplet.py: Fix and restore
Statistics Gramplet to 4.2.x status (#653) Fixes #10754 A bit of history. bug 2060 was filed a long time ago (2008), and a
patch was added to close it in 2016. I believe that the bug had
already been patched by then, although I cannot be sure. The patch
caused the Gramplet to update anytime the active-changed signal
occurred on a person view. I suspect that this caused a fair amount
of overhead on very large dbs as the entire person list was
rescanned. In any event, Doug Blank recently removed the original scan code, as
well as some useful functionality. And left behind a bug where a
value was always zero. The users email list had some complaints
about the lost functionality, and I also saw some recent complaints
that the gender statistics were incorrect. Turns out that the db's
genderstats data was incorrect, probably due to crashes after db
updates. The Genderstats don't get saved until db closes normally.
In addition, running the Genderstats rebuild tool, did not
immediately appear to correct the situation, Gramps had to be
restarted to show the updated results. I added the original statistics code back into the Gramplet,
suitably updated for 5.0.x. So the Gramplet no longer depends on dbs
genderstats, it scans for it now on its own. I removed the update on active-changed function, so overhead is only
present on actual db updates (which have their own signals). I
tested that the add, edit, and delete person changes do properly
cause the statistics to update now. So the active-changed signal is
not necessary.
2018-09-04 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/test/tools_test.py, gramps/plugins/tool/check.py:
Fix Check and Repair to deal with bad references empty handle string
(#657) Fixes #10783 Check and Repair tool doesn't fix bad references when the reference
handle is an empty string. Found when rewriting the backlinks scan
on same tool. I assumed that the prior checks had already corrected
any bad forward references, and did not put in a test for them in my
new code. The Travis test failed and when I debugged, I found that
the tool had an exception on a handle that consisted of an empty
string. Its interesting to note that when I changed the code, a lot more
citation and source references were fixed in the test.
2018-09-04 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/tool/check.py: Speed up Check and Repair, backlinks
check stage. (#656) Fixes #10618 * Speed up Check and Repair, backlinks check stage. * Fix Check and repair; backlinks scan to deal with bad references
which should have been fixed in earlier checks!
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gen/config.py, gramps/gen/datehandler/_date_ar.py,
gramps/gen/datehandler/_date_bg.py,
gramps/gen/datehandler/_date_ca.py,
gramps/gen/datehandler/_date_da.py,
gramps/gen/datehandler/_date_de.py,
gramps/gen/datehandler/_date_el.py,
gramps/gen/datehandler/_date_es.py,
gramps/gen/datehandler/_date_fi.py,
gramps/gen/datehandler/_date_hr.py,
gramps/gen/datehandler/_date_hu.py,
gramps/gen/datehandler/_date_is.py,
gramps/gen/datehandler/_date_it.py,
gramps/gen/datehandler/_date_ja.py,
gramps/gen/datehandler/_date_lt.py,
gramps/gen/datehandler/_date_nb.py,
gramps/gen/datehandler/_date_nl.py,
gramps/gen/datehandler/_date_pl.py,
gramps/gen/datehandler/_date_pt.py,
gramps/gen/datehandler/_date_ru.py,
gramps/gen/datehandler/_date_sk.py,
gramps/gen/datehandler/_date_sl.py,
gramps/gen/datehandler/_date_sr.py,
gramps/gen/datehandler/_date_sv.py,
gramps/gen/datehandler/_date_uk.py,
gramps/gen/datehandler/_date_zh_CN.py,
gramps/gen/datehandler/_date_zh_TW.py,
gramps/gen/datehandler/_dateparser.py, gramps/gen/display/name.py,
gramps/gen/filters/rules/_changedsincebase.py,
gramps/gen/lib/place.py, gramps/gen/mime/_winmime.py,
gramps/gen/soundex.py, gramps/gen/utils/db.py, gramps/gui/dbman.py,
gramps/gui/editors/editlink.py, gramps/plugins/docgen/latexdoc.py,
gramps/plugins/docgen/rtfdoc.py,
gramps/plugins/export/test/exportvcard_test.py,
gramps/plugins/importer/importgeneweb.py,
gramps/plugins/importer/importxml.py,
gramps/plugins/importer/test/importvcard_test.py,
gramps/plugins/tool/reorderids.py, setup.py,
windows/nonAIO/builder/build_GrampsWin32.py,
windows/nonAIO/builder/check_gtk_install.py,
windows/nonAIO/builder/make_launcher.py,
windows/nonAIO/check_gtk_install.py: Fix strings containing
deprecated illegal escape sequences (#648) Python 3.6 and above has deprecated illegal string escape sequences.
Escape sequences are preceded by a '\' and valid ones are "\n\t\r"
etc. Illegal ones are not in the list
https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals.Previous to Python 3.6 these illegal sequences were ignored and the
'\' was left in place. Pylint has been noting these for a while now. This PR corrects these sequences in Gramps. I used find . -name "*.py" | xargs -t -n 1 python3 -Wd -m py_compile 2>&1 |
grep Depre to locate the failing strings.
2018-09-04 Ivan <vantu5z@mail.ru>
* gramps/plugins/gramplet/whatsnext.py: [Whatsnext] check if db is
open (#651) Fixes #10732
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gui/viewmanager.py,
gramps/plugins/gramplet/statsgramplet.py,
gramps/plugins/quickview/filterbyname.py,
gramps/plugins/textreport/summary.py,
gramps/plugins/webreport/statistics.py: Fix usage of posixpath;
should be os.path for os independence (#650) Fixes #10740
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gen/utils/file.py: Fix generate_checksum routine to avoid
MemoryError crash (#649) with very large files and 32-bit OS Issue #10690
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gui/views/bookmarks.py: Fix corrupted Bookmarks that can
happen after Gramps crash (#655) Fixes #10759
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gen/merge/mergefamilyquery.py: Fix Merge Family when same
parent is missing from both families (#654) Fixes #10760
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gui/views/pageview.py: Fix <ctrl>c in view to get selected
item to clipboard (#652) Fixes #10682
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/gramplet/quickviewgramplet.py: Fix Quickview
Gramplet so updates work when changing active (#642) Fixes #10713
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/gui/editors/editplaceref.py: Fix place reference editor for
bad cut/paste on set_latlongitude (#644) Fixes #10719
2018-09-03 Paul Culley <paulr2787@gmail.com>
* gramps/plugins/tool/findloop.py: Fix Find Database Loop Tool (bad
import of _collections) (#643) Fixes #10722
2018-09-03 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-08-25 Bernard Banko <beernarrd@gmail.com>
* po/sl.po: Slovenian translation fixed to allow building mo
2018-08-25 Bernard Banko <beernarrd@gmail.com>
* po/sl.po: Slovenian translation updated
2018-08-18 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-08-11 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-08-09 John Ralls <jralls@ceridwen.us>
* mac/gramps.modules: Switch included moduleset to gitlab.gnome.org. Fixes bug #10733.
2018-08-08 Leonhaeuser <mirko@leonhaeuser.de>
* po/de.po: Reviewed German translation Thanks to bmendl
2018-08-08 niememat <niememat@gmail.com>
* po/fi.po: Fix translation in Finnish
2018-08-05 John Ralls <jralls@ceridwen.us>
* mac/gramps.bundle: File copy doesn't work if the glob can match
directories.
2018-08-04 John Ralls <jralls@ceridwen.us>
* mac/gramps.bundle: Install the docs/gramps directory in the
bundle. Fixes bug #10705.
2018-08-05 niememat <niememat@gmail.com>
* po/fi.po: Fix and updated translation in Finnish
2018-07-25 Ross Gammon <rossgammon@mail.dk>
* debian/changelog: Update the Debian changelog after the 5.0.0
release
2018-07-25 John Ralls <jralls@ceridwen.us>
* mac/Info.plist, mac/gramps.modules: Release Gramps-5.0.0 on Mac.
2018-07-24 Nick Hall <nick-h@gramps-project.org>
* gramps/gen/const.py, gramps/version.py: Bump to 5.0.1

186
FAQ
View File

@@ -1,4 +1,4 @@
**** This is Gramps Frequently Asked Questions ****
**** This is GRAMPS Frequently Asked Questions ****
The questions below frequently come up in mailing list discussions and forums.
This list is by no means complete. If you would like to add questions/answers
@@ -9,23 +9,23 @@ to this list, please email your suggestions to gramps-devel@lists.sf.net
==General==
1. What is Gramps?
1. What is GRAMPS?
2. Where do I get it and how much does it cost?
3. Does Gramps exist in other languages?
3. Does GRAMPS exist in other languages?
4. How do I keep backups?
5. Does Gramps support Unicode fonts? In particular, does it support non-Roman Unicode fonts?
6. What is needed to install Gramps under Linux, Solaris, or FreeBSD?
6. What is needed to install GRAMPS under Linux, Solaris, or FreeBSD?
7. Does it work with Windows (tm)?
8. Does it work with the Mac?
9. What are the Minimum Specs to run Gramps?
9. What are the Minimum Specs to run GRAMPS?
==Preferences==
@@ -33,43 +33,43 @@ to this list, please email your suggestions to gramps-devel@lists.sf.net
==Collaboration-Portability==
11. Is Gramps compatible with other genealogical software?
11. Is GRAMPS compatible with other genealogical software?
12. Can Gramps read files created by GenApp X?
12. Can GRAMPS read files created by GenApp X?
13. Can Gramps write files readable by GenApp X?
13. Can GRAMPS write files readable by GenApp X?
14. What standards does Gramps support?
14. What standards does GRAMPS support?
15. How do I import data from another genealogy program into Gramps?
15. How do I import data from another genealogy program into GRAMPS?
16. Can I install Gramps on a Linux Web Server and use it via a web browser? This would enable my relations worldwide to access and update it.
16. Can I install GRAMPS on a Linux Web Server and use it via a web browser? This would enable my relations worldwide to access and update it.
==Reports==
17. Can Gramps print a genealogical tree for my family?
17. Can GRAMPS print a genealogical tree for my family?
18. In what formats can Gramps output its reports?
18. In what formats can GRAMPS output its reports?
19. How can I change the default language in reports?
20. Is Gramps compatible with the Internet?
20. Is GRAMPS compatible with the Internet?
21. Can I create custom reports/filters/whatever?
22. Why are non-latin characters displayed as garbage in PDF/PS reports?
23. I would like to contribute to Gramps by writing my favorite report.
23. I would like to contribute to GRAMPS by writing my favorite report.
==Database - Gramps file formats==
==Database - GRAMPS file formats==
24. What is the maximum database size (bytes) Gramps can handle?
24. What is the maximum database size (bytes) GRAMPS can handle?
25. How many people can Gramps database handle?
25. How many people can GRAMPS database handle?
26. My database is really big. Is there a way around loading all the data into memory?
27. Can I run Gramps from a database on a NFS share?
27. Can I run GRAMPS from a database on a NFS share?
28. Why is the database format not portable?
@@ -77,116 +77,123 @@ to this list, please email your suggestions to gramps-devel@lists.sf.net
29. I found a bug and I want it fixed right now! What do I do?
30. Gramps should be a .... type of application
30. GRAMPS should be a .... type of application
==Gramps Webhosting ==
==GRAMPS Webhosting ==
31. How can I publish web sites generated by GRAMPS?
32. How do I submit my pages to the GRAMPS library site (http://library.gramps-project.org)?
33. After I upload my Family Web Page to library.gramps-project.org, is the password used for write privileges only or read privileges?
34. Do I view the Family Web Page with a url into my browser? Or through a link on a list of Family Web Pages on the GRAMPS-Project.org site?
31. How can I publish web sites generated by Gramps?
**** Questions and answers ****
==General==
1. What is Gramps?
1. What is GRAMPS?
Gramps is the Genealogical Research and Analysis Management Program System.
GRAMPS is the Genealogical Research and Analysis Management Program System.
In other words, it is a personal genealogy program letting you store, edit,
and research genealogical data using the powers of your computer.
2. Where do I get it and how much does it cost?
Gramps can be downloaded from http://sf.net/projects/gramps at no charge.
Gramps is an Open Source project covered by the GNU General Public License.
GRAMPS can be downloaded from http://sf.net/projects/gramps at no charge.
GRAMPS is an Open Source project covered by the GNU General Public License.
You have full access to the source code and are allowed to distribute the
program and source code freely.
3. Does Gramps exist in other languages?
3. Does GRAMPS exist in other languages?
Yes, at the moment Gramps is translated in 15 languages
Yes, at the moment GRAMPS is translated in 15 languages
4. How do I keep backups?
Use a recent version of Gramps! From 2.2.5 onwards there is an automatic backup utility.
It is extremely important to keep backups of your data, and keep them in a safe place. Gramps has a specific portable file format which is small, and human readable, denoted by .gramps. If you have allowed this in the preferences (In Edit menu->Preferences->General), Gramps will keep a backup of your database on exit. You can copy this backup file from time to time to a save location (eg a usb stick).
Use a recent version of GRAMPS! From 2.2.5 onwards there is an automatic backup utility.
It is extremely important to keep backups of your data, and keep them in a safe place. GRAMPS has a specific portable file format which is small, and human readable, denoted by .gramps. If you have allowed this in the preferences (In Edit menu->Preferences->General), GRAMPS will keep a backup of your database on exit. You can copy this backup file from time to time to a save location (eg a usb stick).
Note: The .gramps files are compressed. Clicking them will open Gramps. To see the XML select them and open them with a decompressing utility (like ark, gunzip), after which you can extract the XML file which is human readable.
Do not keep backups in GEDCOM. Not all information Gramps stores can be written in the GEDCOM. Hence, an export/import operation Gramps --> GEDCOM --> Gramps, will mean you lose data. Use the .gramps file format for backups!
Note: The .gramps files are compressed. Clicking them will open GRAMPS. To see the XML select them and open them with a decompressing utility (like ark, gunzip), after which you can extract the XML file which is human readable.
Do not keep backups in GEDCOM. Not all information GRAMPS stores can be written in the GEDCOM. Hence, an export/import operation GRAMPS --> GEDCOM --> GRAMPS, will mean you lose data. Use the .gramps file format for backups!
Do not keep backups in GRDB format. GRDB is a database, which might be computer dependent (read, not working on a different PC). Small damage to a GRDB file can also not be repaired. Use the .gramps file format for backups!
5. Does Gramps support Unicode fonts? In particular, does it support non-Roman Unicode fonts?
Yes. Gramps works internally with Unicode (UTF-8), so all alphabets can be used on all entry fields. All reports fully support this, although for PDF/PS you need to work with gnome-print or openoffice.
Yes. GRAMPS works internally with Unicode (UTF-8), so all alphabets can be used on all entry fields. All reports fully support this, although for PDF/PS you need to work with gnome-print or openoffice.
==Installation==
6. What is needed to install Gramps under Linux, Solaris, or FreeBSD?
6. What is needed to install GRAMPS under Linux, Solaris, or FreeBSD?
Gramps is a [http://en.wikipedia.org/wiki/Gtk GTK] application. Gramps needs to have the [http://en.wikipedia.org/wiki/Pygtk pygtk] libraries installed on the system. As long as these libraries are installed, Gramps should function. It will operate under the GNOME desktop, KDE desktop, or any other desktop. If the GNOME bindings for Python are installed on the system, Gramps will have additional functionality. The Gramps project recommends version 2.8 or higher of GTK.
GRAMPS is a [http://en.wikipedia.org/wiki/Gtk GTK] application. GRAMPS needs to have the [http://en.wikipedia.org/wiki/Pygtk pygtk] libraries installed on the system. As long as these libraries are installed, GRAMPS should function. It will operate under the GNOME desktop, KDE desktop, or any other desktop. If the GNOME bindings for Python are installed on the system, GRAMPS will have additional functionality. The GRAMPS project recommends version 2.8 or higher of GTK.
7. Does it work with Windows (tm)?
The Linux Genealogy CD can function as a live CD that you boot directly from. You can then run Linux and Gramps off the CD, even if your computer is entirely Windows.
The Linux Genealogy CD can function as a live CD that you boot directly from. You can then run Linux and GRAMPS off the CD, even if your computer is entirely Windows.
An experimental Windows installer is available, however we do not have the manpower to offer support for Windows. A windows mailing list is available however and we do do our best to solve windows related problems.
8. Does it work with the Mac?
The Fink project has ported some older versions of Gramps to OS X (tm). The Mac OS X port is not directly supported by the Gramps project, primarily because none of the Gramps developers have access to Mac OS X and because OS X is not Free Software.
The Fink project has ported some older versions of GRAMPS to OS X (tm). The Mac OS X port is not directly supported by the GRAMPS project, primarily because none of the GRAMPS developers have access to Mac OS X and because OS X is not Free Software.
This present version of Gramps (2.2.x) does not appear to have been ported by the Fink project. Please contact the Fink project for more information. However, some users had success in installing 2.2.x on Mac OSX either running in native mode or running on X11 using some of the fink packages.
This present version of GRAMPS (2.2.x) does not appear to have been ported by the Fink project. Please contact the Fink project for more information. However, some users had success in installing 2.2.x on Mac OSX either running in native mode or running on X11 using some of the fink packages.
9. What are the Minimum Specs to run Gramps?
9. What are the Minimum Specs to run GRAMPS?
We would recommend at least an 800x600 video display. For Gramps 2.0, the memory requirements have been reduced, and Gramps can run quite efficiently on a 256MB system, holding considerably more people. A system with 512MB should be able to hold around 200,000 people. Disk space requirements for databases are however considerably larger, with a typical database being several megabytes in size. For 120.000 people you must consider already 530Mb for the database. Pictures are stored on disk separately, so a large harddisk is necessary.
We would recommend at least an 800x600 video display. For GRAMPS 2.0, the memory requirements have been reduced, and GRAMPS can run quite efficiently on a 256MB system, holding considerably more people. A system with 512MB should be able to hold around 200,000 people. Disk space requirements for databases are however considerably larger, with a typical database being several megabytes in size. For 120.000 people you must consider already 530Mb for the database. Pictures are stored on disk separately, so a large harddisk is necessary.
==Preferences==
10. Can I change the dates in reports to 'day month year'
Yes, change in the preferences ("Edit->Preferences") the date for Gramps to the required format (eg YYYY-MM-DD or day mont year), and make the report. Your global date preferences will be used.
Yes, change in the preferences ("Edit->Preferences") the date for GRAMPS to the required format (eg YYYY-MM-DD or day mont year), and make the report. Your global date preferences will be used.
==Collaboration-Portability==
11. Is Gramps compatible with other genealogical software?
11. Is GRAMPS compatible with other genealogical software?
Gramps makes every effort to maintain compatibility with GEDCOM, the general standard of recording genealogical information. We have import and export filters that enable Gramps to read and write GEDCOM files.
GRAMPS makes every effort to maintain compatibility with GEDCOM, the general standard of recording genealogical information. We have import and export filters that enable GRAMPS to read and write GEDCOM files.
It is important to understand that the GEDCOM standard is poorly implemented -- virtually every genealogical software has its own "flavor" of GEDCOM. As we learn about new flavor, the import/export filters can be created very quickly. However, finding out about the unknown flavors requires user feedback. Please feel free to inform us about any GEDCOM flavor not supported by Gramps, and we will do our best to support it!
It is important to understand that the GEDCOM standard is poorly implemented -- virtually every genealogical software has its own "flavor" of GEDCOM. As we learn about new flavor, the import/export filters can be created very quickly. However, finding out about the unknown flavors requires user feedback. Please feel free to inform us about any GEDCOM flavor not supported by GRAMPS, and we will do our best to support it!
12. Can Gramps read files created by GenApp X?
12. Can GRAMPS read files created by GenApp X?
See above.
13. Can Gramps write files readable by GenApp X?
13. Can GRAMPS write files readable by GenApp X?
See above.
14. What standards does Gramps support?
14. What standards does GRAMPS support?
The nice thing about standards is that there never is a shortage of them. Gramps is tested to support the following flavors of GEDCOM: GEDCOM5.5, Brother's Keeper, Family Origins, Family Tree Maker, Ftree, GeneWeb, Legacy, Personal Ancestral File, Pro-Gen, Reunion, and Visual Genealogie.
The nice thing about standards is that there never is a shortage of them. GRAMPS is tested to support the following flavors of GEDCOM: GEDCOM5.5, Brother's Keeper, Family Origins, Family Tree Maker, Ftree, GeneWeb, Legacy, Personal Ancestral File, Pro-Gen, Reunion, and Visual Genealogie.
15. How do I import data from another genealogy program into Gramps?
15. How do I import data from another genealogy program into GRAMPS?
The best way is to create a new gramps database file (.grdb), and select the import option in the file menu. Here you select the GEDCOM you generated with the other program, and import it.
16. Can I install Gramps on a Linux Web Server and use it via a web browser? This would enable my relations worldwide to access and update it.
16. Can I install GRAMPS on a Linux Web Server and use it via a web browser? This would enable my relations worldwide to access and update it.
While Gramps can generate web sites, it does not provide a web interface that allows for editing. If this is a requirement, then [http://geneweb.org GeneWeb] or [http://phpgedview.sourceforge.net PhpGedView] are programs more likely to meet your needs. However, you may wish to ask yourself the following questions:
While GRAMPS can generate web sites, it does not provide a web interface that allows for editing. If this is a requirement, then [http://geneweb.org GeneWeb] or [http://phpgedview.sourceforge.net PhpGedView] are programs more likely to meet your needs. However, you may wish to ask yourself the following questions:
* Do I really want relatives or other people to directly edit my genealogy database?
* Do I implicitly trust, without verification, any data that people may enter?
* Do these people have the same understanding of good genealogy practice that I have?
@@ -197,7 +204,7 @@ You may also want to consider the effects of possible downtime of your site if y
==Reports==
17. Can Gramps print a genealogical tree for my family?
17. Can GRAMPS print a genealogical tree for my family?
Yes. Different people have different ideas of what a genealogical tree is.
Some think of it as a chart going from the distant ancestor and listing
@@ -205,14 +212,14 @@ all his/her descendants and their families. Others think it should be a
chart going from the person back in time, listing the ancestors and their
families. Yet other people think of a table, text report, etc.
Gramps can produce any of the above, and many more different charts and
GRAMPS can produce any of the above, and many more different charts and
reports. Moreover, the plugin architechture enables users (you) to create
their own plugins which could be new reports, charts, or research tools.
18. In what formats can Gramps output its reports?
18. In what formats can GRAMPS output its reports?
Text reports are available in HTML, PDF, ODT, LaTeX, and RTF formats. Graphical reports (charts and diagrams) are available in PostScript, PDF, SVG, ODS, and Graphviz formats.
Text reports are available in HTML, PDF, ODT, LaTeX, and RTF formats. Graphical reports (charts and diagrams) are available in PostScript, PDF, SVG, ODS, and GraphViz formats.
19. How can I change the default language in reports?
@@ -220,11 +227,11 @@ Text reports are available in HTML, PDF, ODT, LaTeX, and RTF formats. Graphical
The reports are in the language of your linux installation. You can change it by installing extra language packs, see [Howto: Change the language of reports] on wiki.
20. Is Gramps compatible with the Internet?
20. Is GRAMPS compatible with the Internet?
Gramps can store web addresses and direct your browser to them. It can import
GRAMPS can store web addresses and direct your browser to them. It can import
data that you download from the Internet. It can export data that you could
send over the Internet. Gramps is familiar with the standard file formats
send over the Internet. GRAMPS is familiar with the standard file formats
widely used on the Internet (e.g. JPEG, PNG, and GIF images, MP3, OGG, and
WAV sound files, QuickTime, MPEG, and AVI movie files, etc). Other than that,
there is little that a genealogical program can do with the Internet :-)
@@ -234,7 +241,7 @@ there is little that a genealogical program can do with the Internet :-)
Yes. There are many levels of customization. One is creating or modifying
the templates used for the reports. This gives you some control over
the fonts, colors, and some layout of the reports. You can also use Gramps
the fonts, colors, and some layout of the reports. You can also use GRAMPS
controls in the report dialogs to tell what contents should be used for a
particular report. In addition to this, you have an ability to create your
own filters -- this is useful in selecting people based on criteria set
@@ -246,47 +253,47 @@ knowledge of programming in Python.
22. Why are non-latin characters displayed as garbage in PDF/PS reports?
This is a limitation of the built-in fonts of PS and PDF formats. To print non-Latin text, use the Print... in the format selection menu of the report dialog. This will use the gnome-print backend, which supports PS and PDF creation, as well as direct printing. (Note: you might need to install gnome-print separately as it is not required for Gramps).
This is a limitation of the built-in fonts of PS and PDF formats. To print non-Latin text, use the Print... in the format selection menu of the report dialog. This will use the gnome-print backend, which supports PS and PDF creation, as well as direct printing. (Note: you might need to install gnome-print separately as it is not required for GRAMPS).
If you only have Latin text, the PDF option will produce a smaller PDF compared to that created by gnome-print, simply because no font information will be embedded.
23. I would like to contribute to Gramps by writing my favorite report.
23. I would like to contribute to GRAMPS by writing my favorite report.
How do I do that?
The easiest way to contribute to reports, filters, tools, etc. is to copy an existing Gramps report, filter, or tool. If you can create what you want by modifying existing code -- great! If your idea does not fit into the logic of any existing Gramps tool, you will need to write your own plugin from scratch. Help is available on the [Developers Portal] on wiki, or on the developers mailing list: gramps-devel@lists.sourceforge.net.
The easiest way to contribute to reports, filters, tools, etc. is to copy an existing GRAMPS report, filter, or tool. If you can create what you want by modifying existing code -- great! If your idea does not fit into the logic of any existing GRAMPS tool, you will need to write your own plugin from scratch. Help is available on the [Developers Portal] on wiki, or on the developers mailing list: gramps-devel@lists.sourceforge.net.
To test your work in progress, you may save your plugin under $HOME/.gramps/plugins directory and it should be found and imported on startup. The correctly written plugin will register itself with Gramps, create menu item, and so on.
To test your work in progress, you may save your plugin under $HOME/.gramps/plugins directory and it should be found and imported on startup. The correctly written plugin will register itself with GRAMPS, create menu item, and so on.
If you are happy with your plugin and would like to contribute your code back to the Gramps project, you are very welcome to do so by contacting us at gramps-devel@lists.sourceforge.net
If you are happy with your plugin and would like to contribute your code back to the GRAMPS project, you are very welcome to do so by contacting us at gramps-devel@lists.sourceforge.net
==Database - Gramps file formats==
==Database - GRAMPS file formats==
24. What is the maximum database size (bytes) Gramps can handle?
24. What is the maximum database size (bytes) GRAMPS can handle?
Gramps has no hard limits on the size of a database that it can handle. Starting with 2.0.0 release, Gramps no longer loads all data into memory, which allows it to work with a much larger database than before. In reality, however, there are practical limits. The main limiting factors are the available memory on the system and the cache size used for BSDDB database access. With common memory sizes these days, Gramps should have no problem using databases with tens of thousands of people.
GRAMPS has no hard limits on the size of a database that it can handle. Starting with 2.0.0 release, GRAMPS no longer loads all data into memory, which allows it to work with a much larger database than before. In reality, however, there are practical limits. The main limiting factors are the available memory on the system and the cache size used for BSDDB database access. With common memory sizes these days, GRAMPS should have no problem using databases with tens of thousands of people.
25. How many people can Gramps database handle?
25. How many people can GRAMPS database handle?
See above. Again, this is dependent on how much memory you have, see [Gramps Performance] on wiki.
See above. Again, this is dependent on how much memory you have, see [GRAMPS Performance] on wiki.
26. My database is really big. Is there a way around loading all the data into memory?
Starting with 2.0.0 release, Gramps no longer loads all data into memory, which allows it to work with a much larger database than before. The fileformat used is .grdb which means gramps database.
Starting with 2.0.0 release, GRAMPS no longer loads all data into memory, which allows it to work with a much larger database than before. The fileformat used is .grdb which means gramps database.
27. Can I run Gramps from a database on a NFS share?
27. Can I run GRAMPS from a database on a NFS share?
Yes you can.
28. Why is the database format not portable?
The biggest issue with Gramps portability lies with 'transactions'. With
Gramps 2.2, we added support for atomic transactions to protect data.
The biggest issue with GRAMPS portability lies with 'transactions'. With
GRAMPS 2.2, we added support for atomic transactions to protect data.
With atomic transactions, multiple changes are committed as a single
unit. Either all the changes make it, or none of the changes make it.
You are never left in a situation with a partial set of changes. A side
@@ -334,24 +341,41 @@ If the above explanations seem vague, please follow this link:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
30. Gramps should be a .... type of application
30. GRAMPS should be a .... type of application
The surest way to see it happen is to get it done by yourself. Since Gramps is free/open source, nobody prevents you from taking all of the code and continuing its development in whatever direction you see fit. In doing so, you may consider giving your new project another name to avoid confusion with the continuing Gramps development. If you would like the Gramps project to provide advice, expertise, filters, etc., we will gladly cooperate with your new project, to ensure compatibility or import/export options to your new format of a project.
The surest way to see it happen is to get it done by yourself. Since GRAMPS is free/open source, nobody prevents you from taking all of the code and continuing its development in whatever direction you see fit. In doing so, you may consider giving your new project another name to avoid confusion with the continuing GRAMPS development. If you would like the GRAMPS project to provide advice, expertise, filters, etc., we will gladly cooperate with your new project, to ensure compatibility or import/export options to your new format of a project.
If, however, you would like the Gramps project to adopt your strategy, you would need to convince Gramps developers that your strategy is good for Gramps and superior to the present development strategy.
If, however, you would like the GRAMPS project to adopt your strategy, you would need to convince GRAMPS developers that your strategy is good for GRAMPS and superior to the present development strategy.
HINT: if Gramps developers are still not convinced after about three
HINT: if GRAMPS developers are still not convinced after about three
messages sent to gramps-devel, maybe you are better off on your own
rather than with a company of retards who can't fully realize the
potential of your great idea :-)
==Gramps Webhosting ==
==GRAMPS Webhosting ==
31. How can I publish web sites generated by Gramps?
31. How can I publish web sites generated by GRAMPS?
Since Gramps generates HTML pages, you can upload the pages to your personal web site. If you do not have a personal web site, and still wish to have your pages available on the internet.
Since GRAMPS generates HTML pages, you can upload the pages to your personal web site. If you do not have a personal web site, and still wish to have your pages available on the internet, the GRAMPS project can provide space for you at the http://library.gramps-project.org, see the [webhosting article] on wiki.
**** End of Gramps Frequently Asked Questions ****
32. How do I submit my pages to the GRAMPS library site (http://library.gramps-project.org)?
If you wish to submit pages to the GRAMPS library site, you will need to contact the GRAMPS project, typically by sending a message to the gramps-users mailing list. You will then be given a username and password that will allow you to upload your files to the site. After you upload the files (in a gzip'ed tar file), the GRAMPS project will install the pages for you on the site.
33. After I upload my Family Web Page to library.gramps-project.org, is the password used for write privileges only or read privileges?
In order to prevent abuse of the library.gramsp-project.org site, the password given allows uploads only. If you wish to have a username and password combination to restrict read access to your pages, you will need to contact the GRAMPS project, and we could set this up for you. However, the read and write accounts will be separate accounts.
34. Do I view the Family Web Page with a url into my browser? Or through a link on a list of Family Web Pages on the GRAMPS-Project.org site?
The main page on the library.gramps-project.org site will contain an index of the available family sites. However, there will be a unique URL for each site as well.
**** End of GRAMPS Frequently Asked Questions ****
$Id$

5
Gramps.py Executable file → Normal file
View File

@@ -1,4 +1,3 @@
#! /usr/bin/env python3
#
# Gramps - a GTK+/GNOME based genealogy program
#
@@ -16,9 +15,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
"""
This is a stub to start Gramps. It is provided for the sole reason of being
able to run gramps from the source directory without setting PYTHONPATH

89
INSTALL
View File

@@ -1,55 +1,49 @@
$Id$
This file contains some useful details on the installation from source code
for Gramps. It does not cover installation of a pre-built binary package.
for GRAMPS. It does not cover installation of a pre-built binary package.
For that use your package manager, the rest is already done by the packager.
Uninstall old version
---------------------
If you do a source install in the same place as an existing install,
If you do a source install in the same place of an existing install,
you need to remove the old version first. You can delete the old
version by deleting the installed directories. For example, if your installation prefix is /usr/local, remove the following:
/usr/local/share/gramps
version by deleting the installed directories (for example,
/usr/share/gramps
/usr/local/lib/pythonx.x/site-packages/gramps
If you installed with a package manager you might instead need to remove
/usr/local/lib/pythonx.x/dist-packages/gramps
/usr/lib/pythonx.x/site-packages/gramps
/usr/lib/pythonx.x/dist-packages/gramps
where pythonx.x is python2.7 or whatever version you installed gramps with.
Also remove the gramps .egg files that are installed along the gramps directory.
replacing pythonx.x with the python version you used, e.g. python3.4.
Also remove any gramps .egg files that are installed along with the gramps
directory and the file /usr/local/bin/gramps.
If you don't know the list of all files that Gramps installed, you can reinstall
it with the --record option, and take a look at the list this produces (so
python setup.py install --record grampsfiles.txt
If you don't know the list of all files that Gramps installed, you can
reinstall it with the --record option, and take a look at the list this
produces (so python setup.py install --record grampsfiles.txt
Gramps is a python application, so loading happens on reading the
GRAMPS is a python application, so loading happens on reading the
files, meaning that files of a previous version that are no longer
present in the new version can still be loaded, making the new install
unstable!
distutils install
-----------------
We do not check all dependencies of Gramps, see README for a list of
all required and optional dependencies. Missing dependencies will
result in runtime errors.
We do not check all dependencies of Gramps, see README for a
list of all required and optional dependencies. On running Gramps, errors will
be returned if dependencies are missing.
To build and install, whether from a tarball or git repo:
python3 setup.py build
sudo python3 setup.py install
If you are building from released tarball, you should be able to just
run
You can avoid using sudo for the install step by specifying a prefix to which you have write priviledge. The default is /usr/local, which is usually owned by root. You can learn of more options with
python3 setup.py --help
python setup.py build
python setup.py install
One can use gramps from the command line without installing it by
setting the following environment variables, but that won't provide
things like MIME type and desktop entries.
export PYTHONPATH="/top/grampsdir/gramps:$PYTHONPATH"
export GRAMPS_RESOURCES="/top/grampsdir"
See below for ways to invoke Gramps.
where the last must be done as root. You can work with Gramps if you only build
it by pointing the PYTHONPATH to the build directory, but things like MIME type
and desktop entries will not be created then.
Typical install directories in linux (ubuntu) are:
* /usr/local/lib/python3.4/dist-packages/gramps/ : the gramps python module
* /usr/local/lib/python2.7/dist-packages/gramps/ : the gramps python module
* /usr/local/share/mime-info : mime info so gramps opens files automatically
* /usr/local/share/icons/gnome : our icons
* /usr/local/share/doc/gramps : documentation, also example .gramps and .gedcom
@@ -62,45 +56,46 @@ Typical install directories in linux (ubuntu) are:
Running Gramps
--------------
Gramps is python only, so no compilation is needed, you can even run gramps
from the source directory.
from the source directory.
a) You installed Gramps, then you can run it with the command
gramps
gramps
b) You installed Gramps, and want to start it from the PYTHONPATH. In this
case use the command:
python3 -c 'from gramps.grampsapp import main; main()'
python -c 'from gramps.grampsapp import main; main()'
The executable 'gramps' in /usr/local/bin or /usr/bin from a) does
The executable 'gramps' in /usr/local/bin or /usr/bin from a) does
this for you.
b) You downloaded the Gramps source code to a directory, and want to run it.
You can start Gramps from the source code directory with
First, copy/rename the gramps/gen/const.py.in to gramps/gen/const.py.
Edit this file if needed. Now you can start Gramps from the source code
directory with
python3 Gramps.py
python Gramps.py
See gramps/gen/const.py how Gramps finds its resource directories in case
you encounter problems.
Custom directory installation
-------------------------------------
If you would like to install Gramps without being root, or in an
If you would like to install GRAMPS without being root, or in an
alternative location on windows, supply the --root argument to setup.py
For example:
python3 setup.py install --root ~/test
python setup.py install --root ~/test
or
python setup.py install --root ~/test --enable-packager-mode
The last option, --enable-packager-mode, is needed if you want to disable
execution of post-install mime processing. If you don't have root/admin
access, this will be needed
Packager's issues
------------------
There is a MANIFEST.in file to indicate the work needed.
To create a source distribution run:
python3 setup.py sdist
python setup.py sdist
If Gramps is built outside of the source tree in a temporary location (e.g. when
packaging for a distribution), the --resourcepath option can be used to specify
the path to the installed location of the Gramps resources (e.g. /usr/share):
python3 setup.py install --resourcepath=/usr/share

397
LICENSE Normal file
View File

@@ -0,0 +1,397 @@
GNU Free Documentation License
Version 1.2, November 2002
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
0. PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
1. APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall subject
(or to related matters) and contains nothing that could fall directly
within that overall subject. (Thus, if the Document is in part a
textbook of mathematics, a Secondary Section may not explain any
mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled "History"
in the various original documents, forming one section Entitled
"History"; likewise combine any sections Entitled "Acknowledgements",
and any sections Entitled "Dedications". You must delete all sections
Entitled "Endorsements".
6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
7. AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an "aggregate" if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
8. TRANSLATION
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
If a section in the Document is Entitled "Acknowledgements",
"Dedications", or "History", the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
9. TERMINATION
You may not copy, modify, sublicense, or distribute the Document except
as expressly provided for under this License. Any other attempt to
copy, modify, sublicense or distribute the Document is void, and will
automatically terminate your rights under this License. However,
parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such
parties remain in full compliance.
10. FUTURE REVISIONS OF THIS LICENSE
The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation.
ADDENDUM: How to use this License for your documents
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
Copyright (c) YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the "with...Texts." line with this:
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.

View File

@@ -1,33 +1,44 @@
include ChangeLog
include AUTHORS
include COPYING
include FAQ
include Gramps.py
include INSTALL
include LICENSE
include MANIFEST.in
include NEWS
include RELEASE_NOTES
include TODO
include CONTRIBUTING
include TestPlan.txt
recursive-include bash *
recursive-include data *
recursive-include debian *
recursive-include docs *
recursive-include example *
recursive-include gramps *
recursive-include help *
recursive-include images *
recursive-include mac *
recursive-include po *
recursive-include gramps *
recursive-include test *
recursive-include windows *
# Remove files created in the build
exclude data/tips.xml
exclude data/holidays.xml
exclude data/gramps.desktop
exclude data/gramps.keys
exclude data/gramps.xml
recursive-exclude data/man *.1
recursive-exclude data/man *.1.gz
exclude gramps/const.py
exclude gramps/data/tips.xml
exclude gramps/plugins/lib/holidays.xml
exclude po/*.gmo
exclude po/.intltool-merge-cache
exclude po/stamp-it
exclude po/POTFILES
global-exclude *.pyc
global-exclude *.py~
global-exclude *.pyo
global-exclude *.bak
# Remove directories which should not be included in the distribution
prune gramps/guiQML
prune gramps/webapp
# Remove Makefiles used by autotools
global-exclude Makefile*

2548
NEWS

File diff suppressed because it is too large Load Diff

76
README Normal file
View File

@@ -0,0 +1,76 @@
Please read the COPYING file first.
If building from source, also read the INSTALL file (at least through the
"SUPER-SHORT VERSION") before going further.
Requirements
--------------------------------
The following packages *MUST* be installed in order for Gramps to work:
Python 2.7 or greater, Python 3.2 or greater (python version cannot be mixed)
GTK 3.0 or greater
pygobject 3.3.2 or greater
librsvg2 (svg icon view)
xdg-utils
The following package is needed for full translation of the interface
to your language:
language-pack-gnome-xx
Translation of GTK elements to your language, with
xx your language code eg for Dutch you need
language-pack-gnome-nl. The translation of the
Gramps strings is included with the source code.
The following packages are *STRONGLY RECOMMENDED* to be installed:
osmgpsmap Used to show maps in the geography view.
Without this the GeoView will not be active, see
http://gramps-project.org/wiki/index.php?title=Gramps_3.3_Wiki_Manual_-_Main_Window#Geography_Category
The package is named osmgpsmap, osm-gps-map
or python-osmgpsmap. Or obtain it from: http://nzjrs.github.com/osm-gps-map/
GraphViz Enable creation of graphs using GraphViz engine.
Without this no beautiful graphs can be created.
Obtain it from: http://www.graphviz.org
pyexiv2 Enables Gramps to manage Exif metadata embedded in your
media. Gramps needs version 0.1.3 or greater.
Obtain it from: http://tilloy.net/dev/pyexiv2/download.html
The following packages are optional
gtkspell Enable spell checking in the notes. Gtkspell depends on
enchant. A version of gtkspell with gobject introspection
is needed, so minimally version 3.0.0
ttf-freefont More font support in the reports
gir-webkit GObject introspection data of WebKit is required for the
hidden view 'Htmlview', which allows websites to be opened in
Gramps. Users can unhide the view in the plugin manager.
A html renderer must be installed to use the view.
!! PACKAGERS, Test if on your distribution
webkit and Gramps is stable. If you obtain crashes, patch
src/plugins/view/htmlrenderer.py and
src/plugins/view/geoview.gpr.py, so as to remove:
from gi.repository import WebKit as webkit
goocanvas2:
Required for the Graphview plugin
No longer needed in 4.0:
pygoocanvas, pygtk
No longer needed in 3.3:
python-enchant Enchant
No longer needed in 3.2:
python glade bindings
No longer needed in 3.1:
yelp Gnome help browser. At the moment no help is shipped
Remark: There is a conflict when using python-gnome2 in Ubuntu. This is evident
with the error: TypeError: Error when calling the metaclass bases
metaclass conflict
Documentation
---------------------------------
The User Manual is now maintained on the gramps website,
http://www.gramps-project.org/wiki/index.php?title=User_manual
--------------------------------
The Gramps Project
http://gramps-project.org

148
README.md
View File

@@ -1,148 +0,0 @@
The Gramps Project ( https://gramps-project.org ) [![Build Status](https://travis-ci.org/gramps-project/gramps.svg?branch=master)](https://travis-ci.org/gramps-project/gramps)[![codecov.io](https://codecov.io/github/gramps-project/gramps/coverage.svg?branch=master)](https://codecov.io/github/gramps-project/gramps?branch=master)
===================
We strive to produce a genealogy program that is both intuitive for hobbyists and feature-complete for professional genealogists.
Please read the **COPYING** file first.
Please read the **INSTALL** file if you intend to build from source.
Requirements
============
The following packages **MUST** be installed in order for Gramps to work:
* **Python** 3.2 or greater - The programming language used by Gramps. https://www.python.org/
* **GTK** 3.10 or greater - A cross-platform widget toolkit for creating graphical user interfaces. http://www.gtk.org/
* **pygobject** 3.12 or greater - Python Bindings for GLib/GObject/GIO/GTK+ https://wiki.gnome.org/Projects/PyGObject
The following three packages with GObject Introspection bindings (the gi packages)
* **cairo** 1.13.1 or greater - a 2D graphics library with support for multiple output devices. http://cairographics.org/
* **Pycairo** 1.13.3 or greater - GObject Introspection bindings for cairo. https://github.com/pygobject/pycairo
* **pango** - a library for laying out and rendering of text, with an emphasis on internationalization. http://www.pango.org/
* **pangocairo** - Allows you to use Pango with Cairo http://www.pango.org/
* **librsvg2** - (SVG icon view) a library to render SVG files using cairo. http://live.gnome.org/LibRsvg
* **xdg-utils** - Desktop integration utilities from freedesktop.org
* **bsddb3** - Python bindings for Oracle Berkeley DB https://pypi.python.org/pypi/bsddb3/
* **sqlite3** - Python bindings for SQLite Database library
The following package is needed for full translation of the interface
to your language:
* **language-pack-gnome-xx**
Translation of GTK elements to your language, with
xx your language code; e.g. for Dutch you need
language-pack-gnome-nl. The translation of the
Gramps strings is included with the gramps source.
The following packages are **STRONGLY RECOMMENDED** to be installed:
--------------------------------------------------------------------
* **osmgpsmap**
Used to show maps in the geography view.
It may be osmgpsmap, osm-gps-map, or python-osmgpsmap,
but the Python bindings for this must also be present, so gir1.2-osmgpsmap-1.0.
Without this the GeoView will not be active, see
https://gramps-project.org/wiki/index.php?title=Gramps_5.0_Wiki_Manual_-_Categories#Geography_Category
* **Graphviz**
Enable creation of graphs using Graphviz engine.
Without this, three reports cannot be run.
Obtain it from: http://www.graphviz.org or try graphviz and python3-pygraphviz from your packages.
* **PyICU**
Improves localised sorting in Gramps. In particular, this
applies to sorting in the various views and in the
Narrative Web output. It is particularly helpful for
non-Latin characters, for non-English locales and on MS
Windows and Mac OS X platforms. If it is not available,
sorting is done through built-in libraries. PyICU is
fairly widely available through the package managers of
distributions. See http://pyicu.osafoundation.org/
(These are Python bindings for the ICU package.
https://pypi.python.org/pypi/PyICU/)
* **Ghostscript**
Used by Graphviz reports to help create PDF's
The following packages are optional:
------------------------------------
* **gtkspell**
Enable spell checking in the notes. Gtkspell depends on
enchant. A version of gtkspell with gobject introspection
is needed, so minimally version 3.0.0
* **rcs**
The GNU Revision Control System (RCS) can be used to manage
multiple revisions of your family trees. See info at
https://gramps-project.org/wiki/index.php?title=Gramps_5.0_Wiki_Manual_-_Manage_Family_Trees#Archiving_a_Family_Tree
Only rcs is needed, NO python bindings are required
* **PIL**
Python Image Library (PILLOW) is needed to crop
images and also to convert non-JPG images to
JPG so as to include them in LaTeX output.
(For Python3 a different source may be needed,
python-imaging or python-pillow or python3-pillow)
* **GExiv2**
Enables Gramps to manage Exif metadata embedded in your
media. Gramps needs version 0.5 or greater.
See https://www.gramps-project.org/wiki/index.php?title=GEPS_029:_GTK3-GObject_introspection_Conversion#GExiv2_for_Image_metadata
* **ttf-freefont**
More font support in the reports
Optional packages required by Third-party Addons
------------------------------------------------
**Third-party Addons are written by users and developers and unless stated are not officially part of Gramps.**
For more information about Addons see: https://gramps-project.org/wiki/index.php?title=Third-party_Plugins
Prerequistes required for the following Addons to work:
* **Family Sheet** - Requires: PIL (Python Imaging Library) or PILLOW.
( https://gramps-project.org/wiki/index.php?title=Family_Sheet )
* **Graph View** - Requires: PyGoocanvas and Goocanvas (python-pygoocanvas, gir1.2-goocanvas-2.0).
( https://gramps-project.org/wiki/index.php?title=Graph_View )
* **Network Chart** - Requires: networkx and pygraphviz
( https://gramps-project.org/wiki/index.php?title=NetworkChart )
* **PedigreeChart** - Can optionally use - numpy if installed
( https://gramps-project.org/wiki/index.php?title=PedigreeChart )
No longer needed:
-----------------
* Since Gramps 4.2:
**gir-webkit**
* Since Gramps 4.0:
**pygoocanvas, pygtk, pyexiv2**
* Since Gramps 3.3:
**python-enchant Enchant**
* Since Gramps 3.2:
**python glade bindings**
* Since Gramps 3.1:
**yelp** - Gnome help browser. No offline help is shipped see Gramps website for User manual
Documentation
-------------
The User Manual is maintained on the Gramps website:
* https://www.gramps-project.org/wiki/index.php?title=User_manual

View File

@@ -1,13 +1,11 @@
"UNSTABLE Gramps 4.0.0 Alpha1 release.
UNSTABLE Gramps 4.0.0 Beta2 release.
This is a technology preview to allow plugin writers and packagers-installer
writers to update their plugins and scripts. This release is not production
ready, so use for testing!"
This is a technology preview to allow distribution packagers (and plugin
writers) to update their scripts (and plugins). This release is not
production ready, so only use it for testing!
It is recommended that Gramps 4.0.0 be used with python 2.7 since many
dependent packages do not yet have python 3 versions. A determined person
can probably download their sources and build them, however.
It is recommended to use Gramps 4.0.0 with python 3.2 so as to be ready
for the future (python 2.7 works though).
The dependencies for Gramps 4.0.0 are _completely_ different than 3.4 due
to the switch to GObject introspection, and the removal of autotools. So

View File

@@ -1,23 +0,0 @@
_gramps()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--action --config --create --databases --debug --export --format --help --import --open --options --quiet --remove --show --usage --version --yes -? -C -L -O -a -b -c -d -e -f -i -l -p -q -r -s -t -u -v -y"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
elif [[ ${cur} == --open ]] ; then
local IFS=$'\n'
local names=($( gramps -l | grep \" | cut -d\ -f4- ))
COMPREPLY=( $(compgen --W "${names[*]}" -- ${cur}) )
return 0
else
local IFS=$'\n'
local names=($( gramps -l | grep \" | cut -d\ -f4- ))
COMPREPLY=( $(compgen -W "${names[*]}" -- ${cur}) )
return 0
fi
}
complete -F _gramps gramps

View File

@@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop">
<id>gramps.desktop</id>
<metadata_license>CC0</metadata_license>
<name>Gramps</name>
<summary>Genealogical research program</summary>
<description>
<_p>Gramps is a genealogy program that is both intuitive for hobbyists and feature-complete for professional genealogists.</_p>
<_p>It gives you the ability to record the many details of the life of an individual as well as the complex relationships between various people, places and events.</_p>
<_p>All of your research is kept organized, searchable and as precise as you need it to be.</_p>
</description>
<url type="homepage">https://gramps-project.org/</url>
<url type="bugtracker">https://gramps-project.org/bugs/</url>
<url type="help">https://gramps-project.org/wiki/index.php?title=Main_page</url>
<project_license>GPL-2.0+</project_license>
<developer_name>Gramps Development Team</developer_name>
<screenshots>
<screenshot width="1226" height="740">http://www.gramps-project.org/wiki/images/5/5f/AppData1.png</screenshot>
<screenshot width="1226" height="740">http://www.gramps-project.org/wiki/images/6/68/AppData2.png</screenshot>
<screenshot type="default" width="1226" height="740">http://www.gramps-project.org/wiki/images/e/e9/AppData3.png</screenshot>
<screenshot width="1226" height="740">http://www.gramps-project.org/wiki/images/6/68/AppData4.png</screenshot>
<screenshot width="1226" height="740">http://www.gramps-project.org/wiki/images/5/50/AppData5.png</screenshot>
</screenshots>
<provides>
<binary>gramps</binary>
</provides>
</component>

View File

@@ -8,6 +8,5 @@ Terminal=false
Type=Application
StartupNotify=true
Categories=GTK;Office;
_Keywords=Genealogy;Family History;Research;Family Tree;GEDCOM;
MimeType=application/x-gramps;application/x-gedcom;application/x-gramps-package;application/x-gramps-xml;
Exec=gramps %F

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/x-gramps">

View File

@@ -16,9 +16,10 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id$
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"

View File

@@ -5,7 +5,7 @@
#
# Copyright (C) 2001 Graham J. Williams
# Copyright (C) 2000-2007 Donald N. Allingham
# Copyright (C) 2010-2014 Nick Hall
# Copyright (C) 2010-2011 Nick Hall
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,20 +19,21 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# $Id$
-->
<!--
This is the Document Type Definition file for v1.7.1
This is the Document Type Definition file for v1.5.0
of the GRAMPS XML genealogy data format.
Please use the following formal public identifier to identify it:
"-//GRAMPS//DTD GRAMPS XML V1.7.1//EN"
"-//GRAMPS//DTD GRAMPS XML V1.5.0//EN"
For example:
<!DOCTYPE database PUBLIC "-//GRAMPS//DTD GRAMPS XML V1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd"
<!DOCTYPE database PUBLIC "-//GRAMPS//DTD GRAMPS XML V1.5.0//EN"
"http://gramps-project.org/xml/1.5.0/grampsxml.dtd"
[...]>
-->
@@ -61,7 +62,7 @@ DATABASE
<!ELEMENT database (header, name-formats?, tags?, events?, people?, families?,
citations?, sources?, places?, objects?, repositories?,
notes?, bookmarks?, namemaps?)>
<!ATTLIST database xmlns CDATA #FIXED "http://gramps-project.org/xml/1.7.1/">
<!ATTLIST database xmlns CDATA #FIXED "http://gramps-project.org/xml/1.5.0/">
<!-- ************************************************************
@@ -121,7 +122,6 @@ GENDER has values of M, F, or U.
<!ELEMENT name (first?, call?, surname*, suffix?, title?, nick?, familynick?, group?,
(daterange|datespan|dateval|datestr)?, noteref*, citationref*)>
<!-- (Unknown|Also Know As|Birth Name|Married Name|Other Name) -->
<!ATTLIST name
alt (0|1) #IMPLIED
type CDATA #IMPLIED
@@ -138,8 +138,6 @@ GENDER has values of M, F, or U.
<!ELEMENT familynick (#PCDATA)>
<!ELEMENT group (#PCDATA)>
<!ELEMENT surname (#PCDATA)>
<!-- (Unknown|Inherited|Given|Taken|Patronymic|Matronymic|Feudal|
Pseudonym|Patrilineal|Matrilineal|Occupation|Location) -->
<!ATTLIST surname
prefix CDATA #IMPLIED
prim (1|0) #IMPLIED
@@ -198,13 +196,12 @@ FAMILY
<!ELEMENT mother EMPTY>
<!ATTLIST mother hlink IDREF #REQUIRED>
<!-- (None|Birth|Adopted|Stepchild|Sponsored|Foster|Other|Unknown) -->
<!ELEMENT childref (citationref*,noteref*)>
<!ATTLIST childref
hlink IDREF #REQUIRED
priv (0|1) #IMPLIED
mrel CDATA #IMPLIED
frel CDATA #IMPLIED
mrel (None|Birth|Adopted|Stepchild|Sponsored|Foster|Other|Unknown) #IMPLIED
frel (None|Birth|Adopted|Stepchild|Sponsored|Foster|Other|Unknown) #IMPLIED
>
<!ELEMENT type (#PCDATA)>
@@ -218,8 +215,7 @@ EVENT
<!ELEMENT events (event)*>
<!ELEMENT event (type?, (daterange|datespan|dateval|datestr)?, place?, cause?,
description?, attribute*, noteref*, citationref*, objref*,
tagref*)>
description?, attribute*, noteref*, citationref*, objref*)>
<!ATTLIST event
id CDATA #IMPLIED
handle ID #REQUIRED
@@ -233,7 +229,7 @@ SOURCES
<!ELEMENT sources (source)*>
<!ELEMENT source (stitle?, sauthor?, spubinfo?, sabbrev?,
noteref*, objref*, srcattribute*, reporef*, tagref*)>
noteref*, objref*, data_item*, reporef*)>
<!ATTLIST source
id CDATA #IMPLIED
handle ID #REQUIRED
@@ -251,25 +247,16 @@ PLACES
<!ELEMENT places (placeobj)*>
<!ELEMENT placeobj (ptitle?, pname+, code?, coord?, placeref*, location*,
objref*, url*, noteref*, citationref*, tagref*)>
<!ELEMENT placeobj (ptitle?, coord?, location*, objref*, url*, noteref*,
citationref*)>
<!ATTLIST placeobj
id CDATA #IMPLIED
handle ID #REQUIRED
priv (0|1) #IMPLIED
change CDATA #REQUIRED
type CDATA #REQUIRED
>
<!ELEMENT pname (daterange|datespan|dateval|datestr)?>
<!ATTLIST pname
lang CDATA #IMPLIED
value CDATA #REQUIRED
>
<!ELEMENT ptitle (#PCDATA)>
<!ELEMENT code (#PCDATA)>
<!ELEMENT coord EMPTY>
<!ATTLIST coord
@@ -309,7 +296,6 @@ OBJECTS
<!ATTLIST file
src CDATA #REQUIRED
mime CDATA #REQUIRED
checksum CDATA #IMPLIED
description CDATA #REQUIRED
>
@@ -319,7 +305,7 @@ REPOSITORIES
<!ELEMENT repositories (repository)*>
<!ELEMENT repository (rname, type, address*, url*, noteref*, tagref*)>
<!ELEMENT repository (rname, type, address*, url*, noteref*)>
<!ATTLIST repository
id CDATA #IMPLIED
handle ID #REQUIRED
@@ -381,8 +367,8 @@ CITATIONS
<!ELEMENT citations (citation)*>
<!ELEMENT citation ((daterange|datespan|dateval|datestr)?, page?, confidence,
noteref*, objref*, srcattribute*, sourceref, tagref*)>
<!ELEMENT citation ((daterange|datespan|dateval|datestr)?, page?, confidence?,
noteref*, objref*, data_item*, sourceref)>
<!ATTLIST citation
id CDATA #IMPLIED
handle ID #REQUIRED
@@ -507,13 +493,6 @@ SHARED ELEMENTS
value CDATA #REQUIRED
>
<!ELEMENT srcattribute EMPTY>
<!ATTLIST srcattribute
priv (0|1) #IMPLIED
type CDATA #REQUIRED
value CDATA #REQUIRED
>
<!ELEMENT place EMPTY>
<!ATTLIST place hlink IDREF #REQUIRED>
@@ -534,11 +513,6 @@ SHARED ELEMENTS
priv (0|1) #IMPLIED
>
<!ELEMENT placeref ((daterange|datespan|dateval|datestr)?)>
<!ATTLIST placeref
hlink IDREF #REQUIRED
>
<!ELEMENT region EMPTY>
<!ATTLIST region
corner1_x CDATA #REQUIRED

View File

@@ -4,7 +4,7 @@
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2005-2007 Donald N. Allingham
# Copyright (C) 2010-2014 Nick Hall
# Copyright (C) 2010-2011 Nick Hall
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -18,10 +18,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Written by Alex Roitman
# $Id$
-->
<!--
@@ -31,7 +32,7 @@
<grammar
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
ns="http://gramps-project.org/xml/1.7.1/"
ns="http://gramps-project.org/xml/1.5.0/"
xmlns="http://relaxng.org/ns/structure/1.0">
<start><element name="database">
@@ -210,7 +211,16 @@
</define>
<define name="child-rel">
<text/>
<choice>
<value>Birth</value>
<value>Adopted</value>
<value>Stepchild</value>
<value>Sponsored</value>
<value>Foster</value>
<value>None</value>
<value>Other</value>
<value>Unknown</value>
</choice>
</define>
<define name="name-content">
@@ -221,7 +231,13 @@
<optional><attribute name="priv">
<ref name="priv-content"/>
</attribute></optional>
<optional><attribute name="type"><text/></attribute></optional>
<optional><attribute name="type"><choice>
<value>Unknown</value>
<value>Also Known As</value>
<value>Birth Name</value>
<value>Married Name</value>
<value>Other Name</value>
</choice></attribute></optional>
<optional><attribute name="sort"><text/></attribute></optional>
<optional><attribute name="display"><text/></attribute></optional>
<optional><element name="first"><text/></element></optional>
@@ -250,7 +266,20 @@
<value>1</value>
<value>0</value>
</choice></attribute></optional>
<optional><attribute name="derivation"><text/></attribute></optional>
<optional><attribute name="derivation"><choice>
<value>Unknown</value>
<value>Inherited</value>
<value>Given</value>
<value>Taken</value>
<value>Patronymic</value>
<value>Matronymic</value>
<value>Feudal</value>
<value>Pseudonym</value>
<value>Patrilineal</value>
<value>Matrilineal</value>
<value>Occupation</value>
<value>Location</value>
</choice></attribute></optional>
<optional><attribute name="connector"><text/></attribute></optional>
</define>
@@ -399,31 +428,26 @@
<zeroOrMore><element name="objref">
<ref name="objref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="tagref">
<ref name="tagref-content"/>
</element></zeroOrMore>
</define>
<define name="citation-content">
<ref name="primary-object"/>
<optional><ref name="date-content"/></optional>
<optional><element name="page"><text/></element></optional>
<element name="confidence"><text/></element>
<optional><element name="confidence"><text/></element></optional>
<zeroOrMore><element name="noteref">
<ref name="noteref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="objref">
<ref name="objref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="srcattribute">
<ref name="srcattribute-content"/>
<zeroOrMore><element name="data_item">
<attribute name="key"><text/></attribute>
<attribute name="value"><text/></attribute>
</element></zeroOrMore>
<element name="sourceref">
<ref name="sourceref-content"/>
</element>
<zeroOrMore><element name="tagref">
<ref name="tagref-content"/>
</element></zeroOrMore>
</define>
<define name="source-content">
@@ -438,32 +462,22 @@
<zeroOrMore><element name="objref">
<ref name="objref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="srcattribute">
<ref name="srcattribute-content"/>
<zeroOrMore><element name="data_item">
<attribute name="key"><text/></attribute>
<attribute name="value"><text/></attribute>
</element></zeroOrMore>
<zeroOrMore><element name="reporef">
<ref name="reporef-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="tagref">
<ref name="tagref-content"/>
</element></zeroOrMore>
</define>
<define name="place-content">
<ref name="primary-object"/>
<attribute name="type"><text/></attribute>
<optional><element name="ptitle"><text/></element></optional>
<oneOrMore><element name="pname">
<ref name="placename-content"/>
</element></oneOrMore>
<optional><element name="code"><text/></element></optional>
<optional><element name="coord">
<attribute name="long"><text/></attribute>
<attribute name="lat"><text/></attribute>
</element></optional>
<zeroOrMore><element name="placeref">
<ref name="placeref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="location">
<optional><attribute name="street"><text/></attribute></optional>
<optional><attribute name="locality"><text/></attribute></optional>
@@ -487,9 +501,6 @@
<zeroOrMore><element name="citationref">
<ref name="citationref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="tagref">
<ref name="tagref-content"/>
</element></zeroOrMore>
</define>
<define name="object-content">
@@ -497,8 +508,7 @@
<element name="file">
<attribute name="src"><text/></attribute>
<attribute name="mime"><text/></attribute>
<optional><attribute name="checksum"><text/></attribute></optional>
<optional><attribute name="description"><text/></attribute></optional>
<attribute name="description"><text/></attribute>
</element>
<zeroOrMore><element name="attribute">
<ref name="attribute-content"/>
@@ -528,9 +538,6 @@
<zeroOrMore><element name="noteref">
<ref name="noteref-content"/>
</element></zeroOrMore>
<zeroOrMore><element name="tagref">
<ref name="tagref-content"/>
</element></zeroOrMore>
</define>
<define name="bookmark-content">
@@ -673,14 +680,6 @@
<ref name="noteref-content"/>
</element></zeroOrMore>
</define>
<define name="srcattribute-content">
<optional><attribute name="priv">
<ref name="priv-content"/>
</attribute></optional>
<attribute name="type"><text/></attribute>
<attribute name="value"><text/></attribute>
</define>
<define name="url-content">
<optional><attribute name="priv">
@@ -745,17 +744,6 @@
<text/>
</define>
<define name="placename-content">
<attribute name="value"><text/></attribute>
<optional><attribute name="lang"><text/></attribute></optional>
<optional><ref name="date-content"/></optional>
</define>
<define name="placeref-content">
<attribute name="hlink"><data type="IDREF"/></attribute>
<optional><ref name="date-content"/></optional>
</define>
<define name="tagref-content">
<attribute name="hlink"><data type="IDREF"/></attribute>
</define>

14
data/man/Makefile.am Normal file
View File

@@ -0,0 +1,14 @@
# This is the data/man level Makefile for Gramps
# $Id$
SUBDIRS = fr sv nl pl cs pt_BR
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'index'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

14
data/man/cs/Makefile.am Normal file
View File

@@ -0,0 +1,14 @@
# This is the data/man/sv level Makefile for Gramps
# $Id: Makefile.am 6189 2006-03-21 19:05:46Z rshura $
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
mandir = @mandir@/cs
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/cs/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'cs'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -249,9 +249,7 @@ gramps(1) 3.4.0 gramps(1)
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*

View File

@@ -1,7 +1,7 @@
English
=======
gramps(1) @VERSION@ gramps(1)
gramps(1) 4.0.0 gramps(1)
@@ -13,8 +13,8 @@ gramps(1) @VERSION@ gramps(1)
**SYNOPSIS**
**gramps** [**-?** | **--help**] [**--usage**] [**--version**]
[**-l**] [**-L**] [**-u** | **--force-unlock**] [**-O** | **--open=** *DATABASE*
[**-f** | **--format=** *FORMAT*] [**-i** | **--import=** *FILE*
[**-f** | **--format=** *FORMAT*]] [**--remove=** *FAMILY_TREE_PATTERN*]
[**-f** | **--format=** *FORMAT*]] [**-i** | **--import=** *FILE*
[**-f** | **--format=** *FORMAT*]] [**-i** | **--import=** *...*]
[**-e** | **--export=** *FILE* [**-f** | **--format=** *FORMAT*]]
[**-a** | **--action=** *ACTION*] [*-p* | **--options=** *OPTION
STRING*]] [*FILE*] [**--version**]
@@ -50,23 +50,23 @@ gramps(1) @VERSION@ gramps(1)
Formats available for export are **gramps-xml** (guessed if *FILE*
ends with **.gramps** ), **gedcom** (guessed if *FILE* ends with
**.ged** ), or any file export available through the Gramps plugin
**.ged** ), or any file export available through the Gramps plugin
system.
Formats available for import are **gramps-xml** , **gedcom** ,
**gramps-pkg** (guessed if *FILE* ends with **.gpkg** ),
and **geneweb** (guessed if *FILE* ends with **.gw** ).
Formats available for export are **gramps-xml** , **gedcom** ,
**gramps-pkg** , **wft** (guessed if *FILE* ends with **.wft** ),
Formats available for export are **gramps-xml** , **gedcom** ,
**gramps-pkg** , **wft** (guessed if *FILE* ends with **.wft** ),
**geneweb**.
**-l**
**-l**
Print a list of known family trees.
**-L**
**-L**
Print a detailed list of known family trees.
@@ -82,22 +82,22 @@ gramps(1) @VERSION@ gramps(1)
**-i** , **--import=** *FILE*
Import data from *FILE* . If you haven't specified a database, then
an empty database is created for you called Family Tree x
(where x is an incrementing number).
Import data from *FILE* . If you haven't specified a database then
a temporary database is used; this is deleted when you exit
gramps.
When more than one input file is given, each has to be preceded
by **-i** flag. The files are imported in the specified order, i.e.
**-i** *FILE1* **-i** *FILE2* and **-i** *FILE2* **-i** *FILE1*
**-i** *FILE1* **-i** *FILE2* and **-i** *FILE2* **-i** *FILE1*
might produce different gramps IDs in the resulting database.
**-e** , **--export=** *FILE*
Export data into *FILE* . For **gramps-xml** , **gedcom**
, **wft** , **gramps-pkg** , and **geneweb** , the *FILE* is the
**-e** , **--export=** *FICHIER*
Export data into *FILE* . For **gramps-xml** , **gedcom**
, **wft** , **gramps-pkg** , et **geneweb** , the *FILE* is the
name of the resulting file.
When more than one output file is given, each has to be preceded
When more than one output file is given, each has to be preceded
by **-e** flag. The files are written one by one, in the specified order.
@@ -165,7 +165,7 @@ gramps(1) @VERSION@ gramps(1)
With or without the **-O** flag, there could be multiple imports, exports,
and actions specified further on the command line by using **-i** ,
and actions specified further on the command line by using **-i** ,
**-e** , and **-a** flags.
@@ -194,46 +194,46 @@ gramps(1) @VERSION@ gramps(1)
**EXAMPLES**
To open an existing family tree and import an xml file into it, one
may type:
**gramps -O** *'My Family Tree'* **-i** *~/db3.gramps*
The above changes the opened family tree, to do the same, but import
both in a temporary family tree and start an interactive session, one
may type:
**gramps -i** *'My Family Tree'* **-i** *~/db3.gramps*
To import four databases (whose formats can be determined from their
names) and then check the resulting database for errors, one may type:
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
**-i** *file4.wft* **-a** *check*
To explicitly specify the formats in the above example, append file
names with appropriate **-f** options:
**gramps -i** *file1.ged* **-f** *gedcom* **-i** *file2.tgz* **-f**
**gramps -i** *file1.ged* **-f** *gedcom* **-i** *file2.tgz* **-f**
*gramps-pkg* **-i** *~/db3.gramps* **-f** *gramps-xml* **-i** *file4.wft*
**-f** *wft* **-a** *check*
To record the database resulting from all imports, supply **-e** flag (use
**-f** if the filename does not allow gramps to guess the format):
**gramps -i** *file1.ged* **-i** *file2.tgz* **-e** *~/new-package*
**-f** *gramps-pkg*
To import three databases and start interactive gramps session with the
result:
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
To run the Verify tool from the commandline and output the result to
stdout:
**gramps -O** *'My Family Tree'* **-a** *tool* **-p name=** *verify*
Finally, to start normal interactive session type:
**gramps**
@@ -257,20 +257,17 @@ gramps(1) @VERSION@ gramps(1)
modification of the main program.
In addition to generating direct printer output, report generators also
target other systems, such as *LibreOffice.org* , *AbiWord* , *HTML*,
target other systems, such as *LibreOffice.org* , *AbiWord* , *HTML*,
or *LaTeX* to allow the users to modify the format to suit their needs.
**KNOWN BUGS AND LIMITATIONS**
**FILES**
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python3/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*
@@ -290,10 +287,10 @@ gramps(1) @VERSION@ gramps(1)
The user documentation is available through standard web browser
in the form of Gramps Manual.
The developer documentation can be found on the
http://www.gramps-project.org/wiki/index.php?title=Portal:Developers
The developer documentation can be found on the
http://www.gramps-project.org/wiki/index.php?title=Portal:Developers
portal.
gramps(1) @VERSION@ gramps(1)
January 2013 4.0.0 gramps(1)

14
data/man/fr/Makefile.am Normal file
View File

@@ -0,0 +1,14 @@
# This is the data/man/fr level Makefile for Gramps
# $Id$
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
mandir = @mandir@/fr
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/fr/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'fr'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -1,7 +1,9 @@
French
=======
gramps(1) @VERSION@ gramps(1)
gramps(1) 4.0.0 gramps(1)
**NOM**
@@ -13,10 +15,11 @@ gramps(1) @VERSION@ gramps(1)
**SYNOPSIS**
**gramps** [**-?** | **--help**] [**--usage**] [**--version**]
[**-l**] [**-L**] [**-u** | **--force-unlock**] [**-O** | **--open=** *BASE_DE_DONNEES*]
[**-f** | **--format=** *FORMAT*] [**-i** | **--import=** *FICHIER*]
[**-e** | **--export=** *FICHIER*] [**--remove=** *FAMILY_TREE_PATTERN*]
[**-a** | **--action=** *ACTION* [*-p* | **--options=** *CHAÎNE
[**-l**] [**-L**] [**-u** | **--force-unlock**] [**-O** | **--open=** *BASE_DE_DONNEES*
[**-f** | **--format=** *FORMAT*]] [**-i** | **--import=** *FILE*
[**-f** | **--format=** *FORMAT*]] [**-i** | **--import=** *...*]
[**-e** | **--export=** *FICHIER* [**-f** | **--format=** *FORMAT*]]
[**-a** | **--action=** *ACTION*] [*-p* | **--options=** *CHAÎNE
OPTION*]] [*FICHIER*] [**--version**]
@@ -31,108 +34,108 @@ gramps(1) @VERSION@ gramps(1)
**OPTIONS**
**gramps** *FICHIER*
Si *FICHIER* est désigné (sans autres commandes) comme arbre
familial ou comme répertoire d'arbre familial, alors une session
interactive est ouverte. Si *FICHIER* est un format de fichier
supporté par Gramps, une base vide est créée dont le nom est
celui du *FICHIER* et les données y seront importées. Les autres
options sont ignorées. Ce type de lancement permet d'utiliser
gramps pour manipuler des données comme dans un navigateur web.
Les formats natifs de gramps sont acceptés, voir ci-dessous.
Si *FICHIER* est désigné (sans autres commandes) comme arbre
familial ou comme répertoire d'arbre familial, alors une session
interactive est ouverte. Si *FICHIER* est un format de fichier
supporté par Gramps, une base vide est créée dont le nom est
celui du *FICHIER* et les données y seront importées. Les autres
options sont ignorées. Ce type de lancement permet d'utiliser
gramps pour manipuler des données comme dans un navigateur web.
Les formats natifs de gramps sont acceptés, voir ci-dessous.
**-f** , **--format=** *FORMAT*
Le format spécifique du *FICHIER* est précédé par les arguments
**-i** , ou **-e** . Si l'option **-f** n'est pas donnée pour le *FICHIER* ,
alors le format sera celui de l'extension ou du type-MIME.
Le format spécifique du *FICHIER* est précédé par les arguments
**-i** , ou **-e** . Si l'option **-f** n'est pas donnée pour le *FICHIER* ,
alors le format sera celui de l'extension ou du type-MIME.
Les formats de sortie disponibles sont **gramps-xml** (deviné si
*FICHIER* se termine par **.gramps** ), et **gedcom** (deviné si *FICHIER* se
termine par **.ged** ), ou tout autre fichier d'exportation
disponible dans le système de plugin Gramps.
Les formats de sortie disponibles sont **gramps-xml** (deviné si
*FICHIER* se termine par **.gramps** ), et **gedcom** (deviné si *FICHIER* se
termine par **.ged** ), ou tout autre fichier d'exportation
disponible dans le système de plugin Gramps.
Les formats disponibles pour l'importation sont **grdb** ,
**gramps-xml** , **gedcom** , **gramps-pkg** (deviné si *FICHIER* se termine par
**.gpkg** ), et **geneweb** (deviné si *FICHIER* se termine par **.gw** ).
Les formats disponibles pour l'importation sont **grdb** ,
**gramps-xml** , **gedcom** , **gramps-pkg** (deviné si *FICHIER* se termine par
**.gpkg** ), et **geneweb** (deviné si *FICHIER* se termine par **.gw** ).
Les formats disponibles pour l'exportation sont **gramps-xml** , **ged
com** , **gramps-pkg** , **wft** (deviné si *FICHIER* se termine par **.wft** ),
**geneweb** .
Les formats disponibles pour l'exportation sont **gramps-xml** , **ged
com** , **gramps-pkg** , **wft** (deviné si *FICHIER* se termine par **.wft** ),
**geneweb** .
**-l**
**-l**
Imprime une liste des arbres familiaux disponibles.
**-u** , **--force-unlock**
Débloquer une base de données verrouillée.
Débloquer une base de données verrouillée.
**-O** , **--open=** *BASE_DE_DONNEES*
Ouvrir une *BASE_DE_DONNEES* qui doit être une base présente dans
le répertoire des bases ou le nom d'un arbre familial existant.
Si aucune action n'est définie, les options d'import ou d'export
sont données par la ligne de commande puis une session interactive
est ouverte, utilisant cette base de données.
Ouvrir une *BASE_DE_DONNEES* qui doit être une base présente dans
le répertoire des bases ou le nom d'un arbre familial existant.
Si aucune action n'est définie, les options d'import ou d'export
sont données par la ligne de commande puis une session interac
tive est ouverte, utilisant cette base de données.
Seulement une base peut être ouverte. Si vous utilisez plusieurs
sources, vous devez utiliser l'option d'import.
Seulement une base peut être ouverte. Si vous utilisez plusieurs
sources, vous devez utiliser l'option d'import.
**-i** , **--import=** *FICHIER*
Importer des données depuis un *FICHIER* . Si vous n'avez pas
spécifié de base de données, alors une base de données vide
est utilisée.
Importer des données depuis un *FICHIER* . Si vous n'avez pas
spécifié de base de données alors une base de données temporaire
est utilisée; elle sera effacée quand vous quitterez gramps.
Quand plus d'un fichier doit être importé, chacun doit être
précédé par la commande **-i** . Ces fichiers sont importés dans le
même ordre, **-i** *FICHIER1* **-i** *FICHIER2* et **-i** *FICHIER2* **-i**
*FICHIER1* vont tous les deux produire différents IDs gramps.
Quand plus d'un fichier doit être importé, chacun doit être
précédé par la commande **-i** . Ces fichiers sont importés dans le
même ordre, i.e. **-i** *FICHIER1* **-i** *FICHIER2* et **-i** *FICHIER2* **-i**
*FICHIER1* vont tous les deux produire différents IDs gramps.
**-e** , **--export=** *FICHIER*
Exporter des données dans un *FICHIER* . Pour les fichiers **gramps-xml**
, **gedcom** , **wft** , **gramps-pkg** , et **geneweb** , le
Exporter des données dans un *FICHIER* . Pour les fichiers **gramps-xml**
, **gedcom** , **wft** , **gramps-pkg** , et **geneweb** , le
*FICHIER* est le nom du fichier de sortie.
Quand plus d'un fichier doit être exporté, chacun doit être
Quand plus d'un fichier doit être exporté, chacun doit être
précédé par la commande **-e** . Ces fichiers sont importés dans le
même ordre.
**-a** , **--action=** *ACTION*
Accomplir une *ACTION* sur les données importées. C'est effectué à
la fin de l'importation. Les actions possibles sont **summary**
(comme le rapport -> Afficher -> Statistiques sur la base),
**check** (comme l'outil -> Réparation de la base -> Vérifier et
réparer), **report** (produit un rapport) et **tool** (utilise un
outil), ces derniers ont besoin de *OPTION* précédé par la commande -p.
Accomplir une *ACTION* sur les données importées. C'est effectué à
la fin de l'importation. Les actions possibles sont **summary**
(comme le rapport -> Afficher -> Statistiques sur la base),
**check** (comme l'outil -> Réparation de la base -> Vérifier et
réparer), **report** (produit un rapport) et **tool** (utilise un
outil), ces derniers ont besoin de *OPTION* précédé par la commande -p.
L' *OPTION* doit satisfaire ces conditions:
Il ne doit pas y avoir d'espace. Si certains arguments doivent
utiliser des espaces, la chaîne doit être encadrée par des
guillemets. Les options vont par paire nom et valeur. Une
paire est séparée par un signe égal. Différentes paires sont
séparées par une virgule.
L' *OPTION* doit satisfaire ces conditions:
Il ne doit pas y avoir d'espace. Si certains arguments doivent
utiliser des espaces, la chaîne doit être encadrée par des
guillemets. Les options vont par paire nom et valeur. Une
paire est séparée par un signe égal. Différentes paires sont
séparées par une virgule.
La plupart des options sont spécifiques à chaque rapport. Même
s'il existe des options communes.
La plupart des options sont spécifiques à chaque rapport. Même
s'il existe des options communes.
**name=name**
Cette option est obligatoire, elle détermine quel rapport ou
outil sera utilisé. Si le name saisi ne correspond à aucun
module disponible, un message d'erreur sera ajouté.
**name=name**
Cette option est obligatoire, elle détermine quel rapport ou
outil sera utilisé. Si le name saisi ne correspond à aucun
module disponible, un message d'erreur sera ajouté.
**show=all**
Cette option produit une liste avec les noms des options
disponibles pour un rapport donné.
**show=all**
Cette option produit une liste avec les noms des options
disponibles pour un rapport donné.
**show=optionname**
Cette option affiche une description de toutes les fonctionnalités
proposées par optionname, aussi bien les types que les valeurs pour une option.
Utiliser les options ci-dessus pour trouver tout sur un rapport
choisi.
choisi.
Quand plus d'une action doit être effectuée, chacune doit être précédée
@@ -141,23 +144,23 @@ gramps(1) @VERSION@ gramps(1)
**-d** , **--debug=** *NOM_LOGGER*
Permet les logs de debug pour le développement et les tests.
Regarder le code source pour les détails.
Permet les logs de debug pour le développement et les tests.
Regarder le code source pour les détails.
**--version**
Imprime le numéro de version pour gramps puis quitte.
Imprime le numéro de version pour gramps puis quitte.
**Opération**
Si le premie argument de la ligne de commande ne commence pas par un
tiret (i.e. pas d'instruction), gramps va essayer d'ouvrir la base de
données avec le nom donné par le premier argument et démarrer une ses
tiret (i.e. pas d'instruction), gramps va essayer d'ouvrir la base de
données avec le nom donné par le premier argument et démarrer une ses
sion interactive, en ignorant le reste de la ligne de commande.
Si la commande **-O** est notée, alors gramps va essayer le fichier défini
Si la commande **-O** est notée, alors gramps va essayer le fichier défini
et va travailler avec ses données, comme pour les autres paramètres de
la ligne de commande.
@@ -180,57 +183,57 @@ gramps(1) @VERSION@ gramps(1)
Cette base sera **import_db.grdb** dans le répertoire **~/.gramps/import**.
Les erreurs rencontrées lors d'importation, d'exportation, ou d'action, seront
Les erreurs rencontrées lors d'importation, d'exportation, ou d'action, seront
mémorisées en *stdout* (si elles sont le fait de la manipulation par
gramps) ou en *stderr* (si elles ne sont pas le fait d'une manipulation).
Utilisez les shell de redirection de *stdout* et *stderr* pour sauver
Utilisez les shell de redirection de *stdout* et *stderr* pour sauver
les messages et les erreurs dans les fichiers.
**EXEMPLES**
Pour ouvrir un arbre familial et y importer un fichier XML, on peut
Pour ouvrir un arbre familial et y importer un fichier XML, on peut
saisir:
**gramps -O** *'Mon Arbre Familial'* **-i** *~/db3.gramps*
**gramps -O** *'Mon Arbre Familial'* **-i** *~/db3.gramps*
Ceci ouvre un arbre familial, pour faire la même chose, mais importer
dans un arbre familial temporaire et démarrer une session interactive,
on peut saisir :
**gramps -i** *'Mon Arbre Familial'* **-i** *~/db3.gramps*
dans un arbre familial temporaire et démarrer une session interactive,
on peut saisir:
**gramps -i** *'Mon Arbre Familial'* **-i** *~/db3.gramps*
Lecture de quatre bases de données dont les formats peuvent être
devinés d'après les noms, puis vérification des données:
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
**-i** *file4.wft* **-a** *check*
Si vous voulez préciser lesformats de fichiers dans l'exemple ci-
dessus, complétez les noms de fichiers par les options -f appropriées:
**gramps -i** *file1.ged* **-f** *gedcom* **-i** *file2.tgz* **-f**
**gramps -i** *file1.ged* **-f** *gedcom* **-i** *file2.tgz* **-f**
*gramps-pkg* **-i** *~/db3.gramps* **-f** *gramps-xml* **-i** *file4.wft*
**-f** *wft* **-a** *check*
Pour enregistrer le résultat des lectures, donnez l'option **-e**
Pour enregistrer le résultat des lectures, donnez l'option **-e**
(utiliser -f si le nom de fichier ne permet pas à gramps de deviner le
format):
**gramps -i** *file1.ged* **-i** *file2.tgz* **-e** *~/new-package*
**-f** *gramps-pkg*
Pour lire trois ensembles de données puis lancer une session
Pour lire trois ensembles de données puis lancer une session
interactive de gramps sur le tout :
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
**gramps -i** *file1.ged* **-i** *file2.tgz* **-i** *~/db3.gramps*
Pour lancer l'outil de vérification de la base de données depuis la
ligne de commande et obtenir le résultat :
**gramps -O** *'My Family Tree'* **-a** *tool* **-p name=** *verify*
**gramps -O** *'My Family Tree'* **-a** *tool* **-p name=** *verify*
Enfin, pour lancer une session interactive normale, entrer :
Enfin, pour lancer une session interactive normale, entrer :
**gramps**
@@ -250,25 +253,22 @@ gramps(1) @VERSION@ gramps(1)
**CONCEPTS**
Gramps est un système basé sur le support de plugin-python, permettant
d'importer et d'exporter, la saisie, générer des rapports, des outils,
et afficher des filtres pouvant être ajoutés sans modifier le programme.
d'importer et d'exporter, la saisie, générer des rapports, des outils,
et afficher des filtres pouvant être ajoutés sans modifier le programme.
Par ailleurs, gramps permet la génération directe : impression, rap
ports avec sortie vers d'autres formats, comme *LibreOffice.org* ,
*HTML* , ou *LaTeX* pour permettre à l'utilisateur de choisir selon ses
*HTML* , ou *LaTeX* pour permettre à l'utilisateur de choisir selon ses
besoins
**BUGS CONNUS ET LIMITATIONS**
**FICHIERS**
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python3/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*
@@ -296,4 +296,4 @@ gramps(1) @VERSION@ gramps(1)
gramps(1) @VERSION@ gramps(1)
Janvier 2013 4.0.0 gramps(1)

View File

@@ -1,8 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH FRENCH "" "" ""
.TH "GRAMPS" "1" "04 December 2012" "4.0" "Gramps"
.SH NAME
French \-
gramps \- Gramps Documentation
.
.nr rst2man-indent-level 0
.
@@ -30,8 +28,10 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.\" Man page generated from reStructeredText.
.
.sp
gramps(1) @VERSION@ gramps(1)
gramps(1) 4.0.0 gramps(1)
.INDENT 0.0
.TP
.B \fBNOM\fP
@@ -42,10 +42,11 @@ données généalogiques)
.TP
.B \fBSYNOPSIS\fP
\fBgramps\fP [\fB\-?\fP | \fB\-\-help\fP] [\fB\-\-usage\fP] [\fB\-\-version\fP]
[\fB\-l\fP] [\fB\-L\fP] [\fB\-u\fP | \fB\-\-force\-unlock\fP] [\fB\-O\fP | \fB\-\-open=\fP \fIBASE_DE_DONNEES\fP]
[\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP] [\fB\-i\fP | \fB\-\-import=\fP \fIFICHIER\fP]
[\fB\-e\fP | \fB\-\-export=\fP \fIFICHIER\fP] [\fB\-\-remove=\fP \fIFAMILY_TREE_PATTERN\fP]
[\fB\-a\fP | \fB\-\-action=\fP \fIACTION\fP [\fI\-p\fP | \fB\-\-options=\fP \fICHAÎNE
[\fB\-l\fP] [\fB\-L\fP] [\fB\-u\fP | \fB\-\-force\-unlock\fP] [\fB\-O\fP | \fB\-\-open=\fP \fIBASE_DE_DONNEES\fP
[\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP]] [\fB\-i\fP | \fB\-\-import=\fP \fIFILE\fP
[\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP]] [\fB\-i\fP | \fB\-\-import=\fP \fI...\fP]
[\fB\-e\fP | \fB\-\-export=\fP \fIFICHIER\fP [\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP]]
[\fB\-a\fP | \fB\-\-action=\fP \fIACTION\fP] [\fI\-p\fP | \fB\-\-options=\fP \fICHAÎNE
OPTION\fP]] [\fIFICHIER\fP] [\fB\-\-version\fP]
.TP
.B \fBDESCRIPTION\fP
@@ -71,20 +72,20 @@ Les formats natifs de gramps sont acceptés, voir ci\-dessous.
.TP
.B \fB\-f\fP , \fB\-\-format=\fP \fIFORMAT\fP
Le format spécifique du \fIFICHIER\fP est précédé par les arguments
\fB\-i\fP , ou \fB\-e\fP . Si l\(aqoption \fB\-f\fP n\(aqest pas donnée pour le \fIFICHIER\fP ,
\fB\-i\fP , ou \fB\-e\fP . Si l\(aqoption \fB\-f\fP n\(aqest pas donnée pour le \fIFICHIER\fP ,
alors le format sera celui de l\(aqextension ou du type\-MIME.
.sp
Les formats de sortie disponibles sont \fBgramps\-xml\fP (deviné si
\fIFICHIER\fP se termine par \fB\&.gramps\fP ), et \fBgedcom\fP (deviné si \fIFICHIER\fP se
termine par \fB\&.ged\fP ), ou tout autre fichier d\(aqexportation
\fIFICHIER\fP se termine par \fB.gramps\fP ), et \fBgedcom\fP (deviné si \fIFICHIER\fP se
termine par \fB.ged\fP ), ou tout autre fichier d\(aqexportation
disponible dans le système de plugin Gramps.
.sp
Les formats disponibles pour l\(aqimportation sont \fBgrdb\fP ,
\fBgramps\-xml\fP , \fBgedcom\fP , \fBgramps\-pkg\fP (deviné si \fIFICHIER\fP se termine par
\fB\&.gpkg\fP ), et \fBgeneweb\fP (deviné si \fIFICHIER\fP se termine par \fB\&.gw\fP ).
\fB.gpkg\fP ), et \fBgeneweb\fP (deviné si \fIFICHIER\fP se termine par \fB.gw\fP ).
.sp
Les formats disponibles pour l\(aqexportation sont \fBgramps\-xml\fP , \fBged
com\fP , \fBgramps\-pkg\fP , \fBwft\fP (deviné si \fIFICHIER\fP se termine par \fB\&.wft\fP ),
com\fP , \fBgramps\-pkg\fP , \fBwft\fP (deviné si \fIFICHIER\fP se termine par \fB.wft\fP ),
\fBgeneweb\fP .
.TP
.B \fB\-l\fP
@@ -95,22 +96,22 @@ Débloquer une base de données verrouillée.
.TP
.B \fB\-O\fP , \fB\-\-open=\fP \fIBASE_DE_DONNEES\fP
Ouvrir une \fIBASE_DE_DONNEES\fP qui doit être une base présente dans
le répertoire des bases ou le nom d\(aqun arbre familial existant.
le répertoire des bases ou le nom d\(aqun arbre familial existant.
Si aucune action n\(aqest définie, les options d\(aqimport ou d\(aqexport
sont données par la ligne de commande puis une session interactive
est ouverte, utilisant cette base de données.
sont données par la ligne de commande puis une session interac
tive est ouverte, utilisant cette base de données.
.sp
Seulement une base peut être ouverte. Si vous utilisez plusieurs
sources, vous devez utiliser l\(aqoption d\(aqimport.
.TP
.B \fB\-i\fP , \fB\-\-import=\fP \fIFICHIER\fP
Importer des données depuis un \fIFICHIER\fP . Si vous n\(aqavez pas
spécifié de base de données, alors une base de données vide
est utilisée.
spécifié de base de données alors une base de données temporaire
est utilisée; elle sera effacée quand vous quitterez gramps.
.sp
Quand plus d\(aqun fichier doit être importé, chacun doit être
Quand plus d\(aqun fichier doit être importé, chacun doit être
précédé par la commande \fB\-i\fP . Ces fichiers sont importés dans le
même ordre, \fB\-i\fP \fIFICHIER1\fP \fB\-i\fP \fIFICHIER2\fP et \fB\-i\fP \fIFICHIER2\fP \fB\-i\fP
même ordre, i.e. \fB\-i\fP \fIFICHIER1\fP \fB\-i\fP \fIFICHIER2\fP et \fB\-i\fP \fIFICHIER2\fP \fB\-i\fP
\fIFICHIER1\fP vont tous les deux produire différents IDs gramps.
.TP
.B \fB\-e\fP , \fB\-\-export=\fP \fIFICHIER\fP
@@ -123,15 +124,17 @@ précédé par la commande \fB\-e\fP . Ces fichiers sont importés dans le
même ordre.
.TP
.B \fB\-a\fP , \fB\-\-action=\fP \fIACTION\fP
.INDENT 7.0
.INDENT 3.5
Accomplir une \fIACTION\fP sur les données importées. C\(aqest effectué à
la fin de l\(aqimportation. Les actions possibles sont \fBsummary\fP
(comme le rapport \-> Afficher \-> Statistiques sur la base),
\fBcheck\fP (comme l\(aqoutil \-> Réparation de la base \-> Vérifier et
réparer), \fBreport\fP (produit un rapport) et \fBtool\fP (utilise un
la fin de l\(aqimportation. Les actions possibles sont \fBsummary\fP
(comme le rapport \-> Afficher \-> Statistiques sur la base),
\fBcheck\fP (comme l\(aqoutil \-> Réparation de la base \-> Vérifier et
réparer), \fBreport\fP (produit un rapport) et \fBtool\fP (utilise un
outil), ces derniers ont besoin de \fIOPTION\fP précédé par la commande \-p.
.sp
L\(aq \fIOPTION\fP doit satisfaire ces conditions:
Il ne doit pas y avoir d\(aqespace. Si certains arguments doivent
Il ne doit pas y avoir d\(aqespace. Si certains arguments doivent
utiliser des espaces, la chaîne doit être encadrée par des
guillemets. Les options vont par paire nom et valeur. Une
paire est séparée par un signe égal. Différentes paires sont
@@ -141,21 +144,25 @@ La plupart des options sont spécifiques à chaque rapport. Même
s\(aqil existe des options communes.
.sp
\fBname=name\fP
Cette option est obligatoire, elle détermine quel rapport ou
Cette option est obligatoire, elle détermine quel rapport ou
outil sera utilisé. Si le name saisi ne correspond à aucun
module disponible, un message d\(aqerreur sera ajouté.
.sp
\fBshow=all\fP
Cette option produit une liste avec les noms des options
disponibles pour un rapport donné.
.UNINDENT
.UNINDENT
.sp
\fBshow=optionname\fP
Cette option affiche une description de toutes les fonctionnalités
proposées par optionname, aussi bien les types que les valeurs pour une option.
.sp
Utiliser les options ci\-dessus pour trouver tout sur un rapport
.INDENT 7.0
.TP
.B Utiliser les options ci\-dessus pour trouver tout sur un rapport
choisi.
.UNINDENT
.UNINDENT
.sp
Quand plus d\(aqune action doit être effectuée, chacune doit être précédée
par la commande \fB\-a\fP . Les actions seront réalisées une à une, dans
@@ -172,11 +179,11 @@ Imprime le numéro de version pour gramps puis quitte.
.TP
.B \fBOpération\fP
Si le premie argument de la ligne de commande ne commence pas par un
tiret (i.e. pas d\(aqinstruction), gramps va essayer d\(aqouvrir la base de
données avec le nom donné par le premier argument et démarrer une ses
tiret (i.e. pas d\(aqinstruction), gramps va essayer d\(aqouvrir la base de
données avec le nom donné par le premier argument et démarrer une ses
sion interactive, en ignorant le reste de la ligne de commande.
.sp
Si la commande \fB\-O\fP est notée, alors gramps va essayer le fichier défini
Si la commande \fB\-O\fP est notée, alors gramps va essayer le fichier défini
et va travailler avec ses données, comme pour les autres paramètres de
la ligne de commande.
.sp
@@ -192,7 +199,7 @@ fenêtre et demarrera avec une base vide, puisqu\(aqil n\(aqy a pas données.
.sp
Si aucune option \fB\-e\fP ou \fB\-a\fP n\(aqest donnée, gramps lancera sa propre
fenêtre et démarrera avec la base de données issue de tout les imports.
Cette base sera \fBimport_db.grdb\fP dans le répertoire \fB~/.gramps/import\fP\&.
Cette base sera \fBimport_db.grdb\fP dans le répertoire \fB~/.gramps/import\fP.
.sp
Les erreurs rencontrées lors d\(aqimportation, d\(aqexportation, ou d\(aqaction, seront
mémorisées en \fIstdout\fP (si elles sont le fait de la manipulation par
@@ -201,7 +208,7 @@ Utilisez les shell de redirection de \fIstdout\fP et \fIstderr\fP pour sauver
les messages et les erreurs dans les fichiers.
.TP
.B \fBEXEMPLES\fP
Pour ouvrir un arbre familial et y importer un fichier XML, on peut
Pour ouvrir un arbre familial et y importer un fichier XML, on peut
saisir:
.INDENT 7.0
.INDENT 3.5
@@ -210,8 +217,8 @@ saisir:
.UNINDENT
.sp
Ceci ouvre un arbre familial, pour faire la même chose, mais importer
dans un arbre familial temporaire et démarrer une session interactive,
on peut saisir :
dans un arbre familial temporaire et démarrer une session interactive,
on peut saisir:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fI\(aqMon Arbre Familial\(aq\fP \fB\-i\fP \fI~/db3.gramps\fP
@@ -285,25 +292,22 @@ PROFILE pour Windows 2000/XP).
.TP
.B \fBCONCEPTS\fP
Gramps est un système basé sur le support de plugin\-python, permettant
d\(aqimporter et d\(aqexporter, la saisie, générer des rapports, des outils,
et afficher des filtres pouvant être ajoutés sans modifier le programme.
d\(aqimporter et d\(aqexporter, la saisie, générer des rapports, des outils,
et afficher des filtres pouvant être ajoutés sans modifier le programme.
.sp
Par ailleurs, gramps permet la génération directe : impression, rap
ports avec sortie vers d\(aqautres formats, comme \fILibreOffice.org\fP ,
\fIHTML\fP , ou \fILaTeX\fP pour permettre à l\(aqutilisateur de choisir selon ses
\fIHTML\fP , ou \fILaTeX\fP pour permettre à l\(aqutilisateur de choisir selon ses
besoins
.UNINDENT
.sp
\fBBUGS CONNUS ET LIMITATIONS\fP
.sp
\fBFICHIERS\fP
.INDENT 0.0
.INDENT 3.5
\fI${PREFIX}/bin/gramps\fP
.sp
\fI${PREFIX}/lib/python3/dist\-packages/gramps/\fP
.sp
\fI${PREFIX}/share/\fP
\fI${PREFIX}/share/gramps\fP
.sp
\fI${HOME}/.gramps\fP
.UNINDENT
@@ -311,15 +315,15 @@ besoins
.INDENT 0.0
.TP
.B \fBAUTEURS\fP
Donald Allingham <\fI\%don@gramps\-project.org\fP>
\fI\%http://gramps\-project.org/\fP
Donald Allingham <\fI\%don@gramps-project.org\fP>
\fI\%http://gramps-project.org/\fP
.sp
Cette page man a d\(aqabord été écrite par :
Brandon L. Griffith <\fI\%brandon@debian.org\fP>
pour Debian GNU/Linux système.
.sp
Cette page man est maintenue par :
Gramps project <\fI\%xxx@gramps\-project.org\fP>
Gramps project <\fI\%xxx@gramps-project.org\fP>
.sp
La traduction française :
Jérôme Rapinat <\fI\%romjerome@yahoo.fr\fP>
@@ -329,9 +333,14 @@ La documentation\-utilisateur est disponible par un navigateur
standard sous la forme du manuel Gramps.
.sp
La documentation pour développeur est disponible sur le site
\fI\%http://www.gramps\-project.org/wiki/index.php?title=Portal:Developers\fP .
\fI\%http://www.gramps-project.org/wiki/index.php?title=Portal:Developers\fP .
.UNINDENT
.sp
gramps(1) @VERSION@ gramps(1)
Janvier 2013 4.0.0 gramps(1)
.SH AUTHOR
Jerome Rapinat
.SH COPYRIGHT
2012, Gramps project
.\" Generated by docutils manpage writer.
.\"
.

View File

@@ -1,335 +1,330 @@
.\" Man page generated from reStructuredText.
.
.TH ENGLISH "" "" ""
.TH gramps 1 "@VERSION@" "December 2012" "@VERSION@"
.SH NAME
English \-
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
gramps \- Genealogical Research and Analysis Management Programming System.
.SH SYNOPSIS
.B gramps
.RB [ \-?|\-\^\-help ]
.RB [ \-\^\-usage ]
.RB [ \-\^\-version ]
.RB [ \-l ]
.RB [ \-u|\-\^\-force-unlock ]
.RB [ \-O|\-\^\-open=
.IR DATABASE
.RB [ \-f|\-\^\-format=
.IR FORMAT ]]
.RB [ \-i|\-\^\-import=
.IR FILE
.RB [ \-f|\-\^\-format=
.IR FORMAT ]]
.RB [ \-i|\-\^\-import=
.IR ... ]
.RB [ \-e|\-\^\-export=
.IR FILE
.RB [ \-f|\-\^\-format=
.IR FORMAT ]]
.RB [ \-a|\-\^\-action=
.IR ACTION ]
.RB [ \-p|\-\^\-options=
.IR OPTIONSTRING ]]
.RB [
.IR FILE
.RB ]
.if 0 .RB [ bonobo\ options ]
.if 0 .RB [ sound\ options ]
.RB [ \-\-version ]
.SH DESCRIPTION
.PP
\fIGramps\fP is a Free/OpenSource genealogy program. It is written in Python,
using the GTK+/GNOME interface.
Gramps should seem familiar to anyone who has used other genealogy programs
before such as \fIFamily Tree Maker (TM)\fR, \fIPersonal Ancestral
Files (TM)\fR, or the GNU Geneweb.
It supports importing of the ever popular GEDCOM format which is used world
wide by almost all other genealogy software.
.SH OPTIONS
.TP
.BI gramps " FILE"
When \fIFILE\fR is given (without any flags) as a family tree name or as
a family tree database directory, then it is opened and an interactive
session is started. If FILE is a file format understood by Gramps, an empty
family tree is created whose name is based on the \fIFILE\fP name
and the data is imported into it. The rest of the
options is ignored. This way of launching is suitable for using gramps
as a handler for genealogical data in e.g. web browsers. This invocation
can accept any data format native to gramps, see below.
.br
.TP
.BI \-f,\-\^\-format= " FORMAT"
Explicitly specify format of \fIFILE\fR given by preceding
.ig
\fB\-O\fR,
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
\fB\-i\fR, or
\fB\-e\fR option. If the \fB\-f\fR option is not given for any \fIFILE\fR,
the format of that file is guessed according to its extension or MIME-type.
.br
Formats
available for export are \fBgramps\-xml\fR (guessed if \fIFILE\fR ends with
\fB.gramps\fR), \fBgedcom\fR (guessed if \fIFILE\fR ends with \fB.ged\fR), or
any file export available through the Gramps plugin system.
.br
Formats
available for import are \fBgrdb\fR, \fBgramps\-xml\fR, \fBgedcom\fR,
\fBgramps\-pkg\fR (guessed if \fIFILE\fR ends with \fB.gpkg\fR), and
\fBgeneweb\fR (guessed if \fIFILE\fR ends with \fB.gw\fR).
.br
Formats available for export are
.ig
\fBgrdb\fR,
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.sp
gramps(1) @VERSION@ gramps(1)
.INDENT 0.0
.TP
.B \fBNAME\fP
gramps \- Genealogical Research and Analysis Management Programming Sys
tem.
.TP
.B \fBSYNOPSIS\fP
\fBgramps\fP [\fB\-?\fP | \fB\-\-help\fP] [\fB\-\-usage\fP] [\fB\-\-version\fP]
[\fB\-l\fP] [\fB\-L\fP] [\fB\-u\fP | \fB\-\-force\-unlock\fP] [\fB\-O\fP | \fB\-\-open=\fP \fIDATABASE\fP
[\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP] [\fB\-i\fP | \fB\-\-import=\fP \fIFILE\fP
[\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP]] [\fB\-\-remove=\fP \fIFAMILY_TREE_PATTERN\fP]
[\fB\-e\fP | \fB\-\-export=\fP \fIFILE\fP [\fB\-f\fP | \fB\-\-format=\fP \fIFORMAT\fP]]
[\fB\-a\fP | \fB\-\-action=\fP \fIACTION\fP] [\fI\-p\fP | \fB\-\-options=\fP \fIOPTION
STRING\fP]] [\fIFILE\fP] [\fB\-\-version\fP]
.TP
.B \fBDESCRIPTION\fP
Gramps is a Free/OpenSource genealogy program. It is written in Python,
using the GTK+/GNOME interface. Gramps should seem familiar to anyone
who has used other genealogy programs before such as Family Tree Maker
(TM), Personal Ancestral Files (TM), or the GNU Geneweb. It supports
importing of the ever popular GEDCOM format which is used world wide by
almost all other genealogy software.
.TP
.B \fBOPTIONS\fP
.INDENT 7.0
.TP
.B \fBgramps\fP \fIFILE\fP
When \fIFILE\fP is given (without any flags) as a family tree name or
as a family tree database directory, then it is opened and an
interactive session is started. If \fIFILE\fP is a file format under
stood by Gramps, an empty family tree is created whose name is
based on the \fIFILE\fP name and the data is imported into it. The
rest of the options is ignored. This way of launching is suit
able for using gramps as a handler for genealogical data in e.g.
web browsers. This invocation can accept any data format native
to gramps, see below.
.TP
.B \fB\-f\fP , \fB\-\-format=\fP \fIFORMAT\fP
Explicitly specify format of \fIFILE\fP given by preceding \fB\-i\fP ,
or \fB\-e\fP option. If the \fB\-f\fP option is not given for any
\fIFILE\fP , the format of that file is guessed according to its extension
or MIME\-type.
.sp
Formats available for export are \fBgramps\-xml\fP (guessed if \fIFILE\fP
ends with \fB\&.gramps\fP ), \fBgedcom\fP (guessed if \fIFILE\fP ends with
\fB\&.ged\fP ), or any file export available through the Gramps plugin
system.
.sp
Formats available for import are \fBgramps\-xml\fP , \fBgedcom\fP ,
\fBgramps\-pkg\fP (guessed if \fIFILE\fP ends with \fB\&.gpkg\fP ),
and \fBgeneweb\fP (guessed if \fIFILE\fP ends with \fB\&.gw\fP ).
.sp
Formats available for export are \fBgramps\-xml\fP , \fBgedcom\fP ,
\fBgramps\-pkg\fP , \fBwft\fP (guessed if \fIFILE\fP ends with \fB\&.wft\fP ),
\fBgeneweb\fP\&.
.TP
.B \fB\-l\fP
\fBgramps\-xml\fR, \fBgedcom\fR,
\fBgramps\-pkg\fR, \fBwft\fR (guessed if \fIFILE\fR ends with \fB.wft\fR),
\fBgeneweb\fR, and \fBiso\fR (never guessed, always specify with
\fB\-f\fR option).
.TP
.BI \-l
Print a list of known family trees.
.TP
.B \fB\-L\fP
Print a detailed list of known family trees.
.TP
.B \fB\-u\fP , \fB\-\-force\-unlock\fP
.BI \-u,\-\^\-force-unlock
Unlock a locked database.
.TP
.BI \-O,\-\^\-open= " DATABASE"
Open \fIDATABASE\fR which must be an existing database directory or existing family tree name.
If no action, import or export options are given on the command line then an interactive session is started using that database.
.TP
.BI \-i,\-\^\-import= " FILE"
Import data from \fIFILE\fR. If you haven't specified a database then a temporary database is used; this is deleted when you exit gramps.
.br
When more than one input file is given, each has to be preceded by \fB\-i\fR
flag. The files are imported in the specified order,
i.e. \fB\-i\fR \fIFILE1\fR \fB\-i\fR \fIFILE2\fR
and \fB\-i\fR \fIFILE2\fR \fB\-i\fR \fIFILE1\fR might produce different
gramps IDs in the resulting database.
.TP
.BI \-e,\-\^\-export= " FILE"
Export data into \fIFILE\fR. For \fBgramps\-xml\fR, \fBgedcom\fR,
\fBwft\fR, \fBgramps\-pkg\fR, and \fBgeneweb\fR, the \fIFILE\fR is
the name of the resulting file.
.br
When more than one output file is given, each has to be preceded
by \fB\-e\fR flag. The files are written one by one, in the specified order.
.TP
.BI \-a,\-\^\-action= " ACTION"
Perform \fIACTION\fR on the imported data. This is done after all imports
are successfully completed. Currently available actions are
\fBsummary\fR (same as Reports->View->Summary),
\fBcheck\fR (same as Tools->Database Processing->Check and Repair),
\fBreport\fR (generates report), and
\fBtool\fR (runs a plugin tool).
Both \fBreport\fR and \fBtool\fR need the \fIOPTIONSTRING\fR supplied by the
\fB\-p\fR flag).
.br
The \fIOPTIONSTRING\fR should satisfy the following conditions:
.br
It must not contain any spaces.
If some arguments need to include spaces, the string should
be enclosed with quotation marks, i.e., follow the shell syntax.
Option string is a list of pairs with name and value (separated by the
equality sign). The name and value pairs must be separated by commas.
.br
Most of the report or tools options are specific for each report or tool.
However, there are some common options.
.BI "name=name"
.br
This mandatory option determines which report or tool will be run.
If the supplied \fIname\fR does not correspond to any available report or
tool, an error message will be printed followed by the list of
available reports or tools (depending on the \fIACTION\fR).
.BI "show=all"
.br
This will produce the list of names for all options available for a given
report or tool.
.BI "show="optionname
.br
This will print the description of
the functionality supplied by \fIoptionname\fR, as well as what are the
acceptable types and values for this option.
.br
Use the above options to find out
everything about a given report.
.LP
When more than one output action is given, each has to be preceded
by \fB\-a\fR flag. The actions are performed one by one, in the specified order.
.TP
.BI \-d,\-\^\-debug= " LOGGER_NAME"
Enables debug logs for development and testing. Look at the source code for details
.TP
.B \fB\-O\fP , \fB\-\-open=\fP \fIDATABASE\fP
Open \fIDATABASE\fP which must be an existing database directory or
existing family tree name. If no action, import or export
options are given on the command line then an interactive ses
sion is started using that database.
.TP
.B \fB\-i\fP , \fB\-\-import=\fP \fIFILE\fP
Import data from \fIFILE\fP . If you haven\(aqt specified a database, then
an empty database is created for you called Family Tree x
(where x is an incrementing number).
.sp
When more than one input file is given, each has to be preceded
by \fB\-i\fP flag. The files are imported in the specified order, i.e.
\fB\-i\fP \fIFILE1\fP \fB\-i\fP \fIFILE2\fP and \fB\-i\fP \fIFILE2\fP \fB\-i\fP \fIFILE1\fP
might produce different gramps IDs in the resulting database.
.TP
.B \fB\-e\fP , \fB\-\-export=\fP \fIFILE\fP
Export data into \fIFILE\fP . For \fBgramps\-xml\fP , \fBgedcom\fP
, \fBwft\fP , \fBgramps\-pkg\fP , and \fBgeneweb\fP , the \fIFILE\fP is the
name of the resulting file.
.sp
When more than one output file is given, each has to be preceded
by \fB\-e\fP flag. The files are written one by one, in the specified order.
.TP
.B \fB\-a\fP , \fB\-\-action=\fP \fIACTION\fP
Perform \fIACTION\fP on the imported data. This is done after all
imports are successfully completed. Currently available actions
are \fBsummary\fP (same as Reports\->View\->Summary), \fBcheck\fP (same as
Tools\->Database Processing\->Check and Repair), \fBreport\fP (generates
report), and tool (runs a plugin tool). Both \fBreport\fP and \fBtool\fP
need the \fIOPTIONSTRING\fP supplied by the \fB\-p\fP flag).
.sp
The \fIOPTIONSTRING\fP should satisfy the following conditions:
It must not contain any spaces. If some arguments need to
include spaces, the string should be enclosed with quotation
marks, i.e., follow the shell syntax. Option string is a list
of pairs with name and value (separated by the equality sign).
The name and value pairs must be separated by commas.
.sp
Most of the report or tools options are specific for each report
or tool. However, there are some common options.
.sp
\fBname=name\fP
This mandatory option determines which report or tool will be
run. If the supplied name does not correspond to any available
report or tool, an error message will be printed followed by the
list of available reports or tools (depending on the \fIACTION\fP ).
.sp
\fBshow=all\fP
This will produce the list of names for all options available
for a given report or tool.
.sp
\fBshow=optionname\fP
This will print the description of the functionality supplied by
\fIoptionname\fP, as well as what are the acceptable types and values
for this option.
.sp
Use the above options to find out everything about a given
report.
.UNINDENT
.sp
When more than one output action is given, each has to be preceded by
\fB\-a\fP flag. The actions are performed one by one, in the specified order.
.INDENT 7.0
.TP
.B \fB\-d\fP , \fB\-\-debug=\fP \fILOGGER_NAME\fP
Enables debug logs for development and testing. Look at the
source code for details
.TP
.B \fB\-\-version\fP
.BI \-\^\-version
Prints the version number of gramps and then exits
.UNINDENT
\" change 0 to 1 to enable output of OAF options
.if 0 \{
.PP
The following options are used for Bonobo activation.
.TP
.BI \-\^\-oaf-ior-fd= "FD"
File descriptor to print the OAF IOR on
.TP
.BI \-\^\-oaf-activate-iid= " IID"
OAF IID to activate
.TP
.BI \-\^\-oaf-private
Prevent registering of server with OAF
\}
\" change 0 to 1 to enable output of Gnome sound options
.if 0 \{
.PP
The following options are used for controlling sound using the Gnome Library.
.TP
.B \fBOperation\fP
If the first argument on the command line does not start with dash
(i.e. no flag), gramps will attempt to open the file with the name
given by the first argument and start interactive session, ignoring the
rest of the command line arguments.
.sp
If the \fB\-O\fP flag is given, then gramps will try opening the supplied
database and then work with that data, as instructed by the further
command line parameters.
.sp
With or without the \fB\-O\fP flag, there could be multiple imports, exports,
and actions specified further on the command line by using \fB\-i\fP ,
\fB\-e\fP , and \fB\-a\fP flags.
.sp
The order of \fB\-i\fP , \fB\-e\fP , or \fB\-a\fP options does not matter. The actual order
always is: all imports (if any) \-> all actions (if any) \-> all exports
(if any). But opening must always be first!
.sp
If no \fB\-O\fP or \fB\-i\fP option is given, gramps will launch its main window and
start the usual interactive session with the empty database, since
there is no data to process, anyway.
.sp
If no \fB\-e\fP or \fB\-a\fP options are given, gramps will launch its main window
and start the usual interactive session with the database resulted from
all imports. This database resides in the \fBimport_db.grdb\fP under
\fB~/.gramps/import\fP directory.
.sp
The error encountered during import, export, or action, will be either
dumped to stdout (if these are exceptions handled by gramps) or to
\fIstderr\fP (if these are not handled). Use usual shell redirections of
\fIstdout\fP and \fIstderr\fP to save messages and errors in files.
.BI \-\^\-disable-sound
Disable sound server usage
.TP
.B \fBEXAMPLES\fP
To open an existing family tree and import an xml file into it, one
may type:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-O\fP \fI\(aqMy Family Tree\(aq\fP \fB\-i\fP \fI~/db3.gramps\fP
.UNINDENT
.UNINDENT
.sp
The above changes the opened family tree, to do the same, but import
both in a temporary family tree and start an interactive session, one
may type:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fI\(aqMy Family Tree\(aq\fP \fB\-i\fP \fI~/db3.gramps\fP
.UNINDENT
.UNINDENT
.sp
To import four databases (whose formats can be determined from their
names) and then check the resulting database for errors, one may type:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fIfile1.ged\fP \fB\-i\fP \fIfile2.tgz\fP \fB\-i\fP \fI~/db3.gramps\fP
\fB\-i\fP \fIfile4.wft\fP \fB\-a\fP \fIcheck\fP
.UNINDENT
.UNINDENT
.sp
To explicitly specify the formats in the above example, append file
names with appropriate \fB\-f\fP options:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fIfile1.ged\fP \fB\-f\fP \fIgedcom\fP \fB\-i\fP \fIfile2.tgz\fP \fB\-f\fP
\fIgramps\-pkg\fP \fB\-i\fP \fI~/db3.gramps\fP \fB\-f\fP \fIgramps\-xml\fP \fB\-i\fP \fIfile4.wft\fP
\fB\-f\fP \fIwft\fP \fB\-a\fP \fIcheck\fP
.UNINDENT
.UNINDENT
.sp
To record the database resulting from all imports, supply \fB\-e\fP flag (use
\fB\-f\fP if the filename does not allow gramps to guess the format):
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fIfile1.ged\fP \fB\-i\fP \fIfile2.tgz\fP \fB\-e\fP \fI~/new\-package\fP
\fB\-f\fP \fIgramps\-pkg\fP
.UNINDENT
.UNINDENT
.sp
To import three databases and start interactive gramps session with the
result:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-i\fP \fIfile1.ged\fP \fB\-i\fP \fIfile2.tgz\fP \fB\-i\fP \fI~/db3.gramps\fP
.UNINDENT
.UNINDENT
.sp
To run the Verify tool from the commandline and output the result to
stdout:
.INDENT 7.0
.INDENT 3.5
\fBgramps \-O\fP \fI\(aqMy Family Tree\(aq\fP \fB\-a\fP \fItool\fP \fB\-p name=\fP \fIverify\fP
.UNINDENT
.UNINDENT
.sp
Finally, to start normal interactive session type:
.INDENT 7.0
.INDENT 3.5
\fBgramps\fP
.UNINDENT
.UNINDENT
.BI \-\^\-enable-sound
Enable sound server usage
.TP
.B \fBENVIRONMENT VARIABLES\fP
.BI \-\^\-espeaker= " HOSTNAME:PORT"
Host:port on which the sound server to use is running
\}
.SH "Operation"
.br
If the first argument on the command line does not start with dash (i.e. no
flag), gramps will attempt to open the file with the name given by the first
argument and start interactive session, ignoring the rest of the command line
arguments.
.LP
If the \fB\-O\fR flag is given, then gramps will try opening
the supplied database and then work with that data, as instructed by the
further command line parameters.
.LP
With or without the \fB\-O\fR flag, there could be multiple imports,
exports, and actions specified further on the command line by using \fB\-i\fR,
\fB\-e\fR, and \fB\-a\fR flags.
.LP
The order of \fB\-i\fR, \fB\-e\fR, or \fB\-a\fR options does not matter. The
actual order always is: all imports (if any) -> all actions (if any)
-> all exports (if any). But opening must always be first!
.LP
If no \fB\-O\fR or \fB\-i\fR option is given, gramps will launch its main
window and start the usual interactive session with the empty database,
since there is no data to process, anyway.
.LP
If no \fB\-e\fR or \fB\-a\fR options are given, gramps will launch its main
window and start the usual interactive session with the database resulted
from all imports. This database resides in the \fBimport_db.grdb\fR
under \fB~/.gramps/import\fR directory.
.LP
The error encountered during import, export, or action, will be either
dumped to \fIstdout\fR (if these are exceptions handled by gramps) or
to \fIstderr\fR (if these are not handled). Use usual shell redirections
of \fIstdout\fR and \fIstderr\fR to save messages and errors in files.
.SH EXAMPLES
.TP
To open an existing family tree and import an xml file into it, one may type:
\fBgramps\fR \fB\-O\fR \fI'My Family Tree'\fR \fB\-i\fR \fI~/db3.gramps\fR
.TP
The above changes the opened family tree, to do the same, but import both in a temporary family tree and start an interactive session, one may type:
\fBgramps\fR \fB\-i\fR \fI'My Family Tree'\fR \fB\-i\fR \fI~/db3.gramps\fR
.TP
To import four databases (whose formats can be determined from their names) and then check the resulting database for errors, one may type:
\fBgramps\fR \fB\-i\fR \fIfile1.ged\fR \fB\-i\fR \fIfile2.tgz\fR \fB\-i\fR \fI~/db3.gramps\fR \fB\-i\fR \fIfile4.wft\fR \fB\-a\fR \fIcheck\fR
.TP
To explicitly specify the formats in the above example, append filenames with appropriate \fB\-f\fR options:
\fBgramps\fR \fB\-i\fR \fIfile1.ged\fR \fB\-f\fR \fIgedcom\fR \fB\-i\fR \fIfile2.tgz\fR \fB\-f\fR \fIgramps-pkg\fR \fB\-i\fR \fI~/db3.gramps\fR \fB\-f\fR \fIgramps-xml\fR \fB\-i\fR \fIfile4.wft\fR \fB\-f\fR \fIwft\fR \fB\-a\fR \fIcheck\fR
.TP
To record the database resulting from all imports, supply \fB\-e\fR flag (use \fB\-f\fR if the filename does not allow gramps to guess the format):
\fBgramps\fR \fB\-i\fR \fIfile1.ged\fR \fB\-i\fR \fIfile2.tgz\fR \fB\-e\fR \fI~/new-package\fR \fB\-f\fR \fIgramps-pkg\fR
.TP
To import three databases and start interactive gramps session with the result:
\fBgramps\fR \fB\-i\fR \fIfile1.ged\fR \fB\-i\fR \fIfile2.tgz\fR \fB\-i\fR \fI~/db3.gramps\fR
.TP
To run the Verify tool from the commandline and output the result to stdout:
\fBgramps\fR \fB\-O\fR \fI'My Family Tree'\fR \fB-a\fR \fItool\fR \fB-p\fR \fBname\fR=\fIverify\fR
.TP
Finally, to start normal interactive session type:
\fBgramps\fR
.SH ENVIRONMENT VARIABLES
The program checks whether these environment variables are set:
.sp
\fBLANG\fP \- describe, which language to use: Ex.: for polish language this
variable has to be set to pl_PL.UTF\-8.
.sp
\fBGRAMPSHOME\fP \- if set, force Gramps to use the specified directory to
keep program settings and databases there. By default, this variable is
not set and gramps assumes that the folder with all databases and pro
file settings should be created within the user profile folder
(described by environment variable HOME for Linux or USERPROFILE for
Windows 2000/XP).
.TP
.B \fBCONCEPTS\fP
Supports a python\-based plugin system, allowing import and export writ
ers, report generators, tools, and display filters to be added without
modification of the main program.
.sp
In addition to generating direct printer output, report generators also
target other systems, such as \fILibreOffice.org\fP , \fIAbiWord\fP , \fIHTML\fP,
or \fILaTeX\fP to allow the users to modify the format to suit their needs.
.UNINDENT
.sp
\fBKNOWN BUGS AND LIMITATIONS\fP
.sp
\fBFILES\fP
.INDENT 0.0
.INDENT 3.5
\fI${PREFIX}/bin/gramps\fP
.sp
\fI${PREFIX}/lib/python3/dist\-packages/gramps/\fP
.sp
\fI${PREFIX}/share/\fP
.sp
\fI${HOME}/.gramps\fP
.UNINDENT
.UNINDENT
.INDENT 0.0
.TP
.B \fBAUTHORS\fP
Donald Allingham <\fI\%don@gramps\-project.org\fP>
\fI\%http://gramps\-project.org/\fP
.sp
\fBLANG\fR - describe, which language to use:
Ex.: for polish language this variable has to be set to pl_PL.UTF-8.
\fBGRAMPSHOME\fR - if set, force Gramps to use the specified directory to keep
program settings and databases there. By default, this variable is not set and
gramps assumes that the folder with all databases and profile settings
should be created within the user profile folder (described by environment
variable HOME for Linux or USERPROFILE for Windows 2000/XP).
.SH CONCEPTS
Supports a python\-based plugin system, allowing import and export writers,
report generators, tools, and display filters to be added without modification
of the main program.
.LP
In addition to generating direct printer output, report generators also
target other systems, such as \fIOpenOffice.org\fR, \fIAbiWord\fR, HTML,
or LaTeX to allow the users to modify the format to suit their needs.
.SH KNOWN BUGS AND LIMITATIONS
.SH FILES
.LP
\fI${PREFIX}/bin/gramps\fP
.br
\fI${PREFIX}/share/gramps\fP
.br
\fI${HOME}/.gramps\fP
.SH AUTHORS
Donald Allingham \fI<don@gramps-project.org>\fR
.br
\fIhttp://gramps.sourceforge.net\fR
.LP
This man page was originally written by:
Brandon L. Griffith <\fI\%brandon@debian.org\fP>
.br
Brandon L. Griffith \fI<brandon@debian.org>\fR
.br
for inclusion in the Debian GNU/Linux system.
.sp
.LP
This man page is currently maintained by:
Gramps project <\fI\%xxx@gramps\-project.org\fP>
.TP
.B \fBDOCUMENTATION\fP
The user documentation is available through standard web browser
in the form of Gramps Manual.
.sp
.br
Gramps project \fI<xxx@gramps-project.org>\fR
.br
.SH DOCUMENTATION
The user documentation is available through standard GNOME Help browser
in the form of Gramps Manual. The manual is also available in XML format
as \fBgramps-manual.xml\fR under \fIdoc/gramps-manual/$LANG\fR in the official
source distribution.
.LP
The developer documentation can be found on the
\fI\%http://www.gramps\-project.org/wiki/index.php?title=Portal:Developers\fP
portal.
.UNINDENT
.sp
gramps(1) @VERSION@ gramps(1)
.\" Generated by docutils manpage writer.
.
\fIhttp://developers.gramps-project.org\fR site.

15
data/man/nl/Makefile.am Normal file
View File

@@ -0,0 +1,15 @@
# This is the data/man/nl level Makefile for Gramps
# $Id: Makefile.am 9819 2008-01-15 15:42:10Z bmcage $
mandir = @mandir@/nl
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/nl/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'nl'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -227,14 +227,11 @@ gramps(1) 3.4.0 gramps(1)
**GEKENDE BUGS EN BEPERKINGEN**
**BESTANDEN**
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*

14
data/man/pl/Makefile.am Normal file
View File

@@ -0,0 +1,14 @@
# This is the data/man/sv level Makefile for Gramps
# $Id: Makefile.am 6189 2006-03-21 19:05:46Z rshura $
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
mandir = @mandir@/pl
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/pl/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'pl'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -276,9 +276,7 @@ gramps(1) 3.4.0 gramps(1)
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps (jeśli nie użyta została zmienna środowiskowa GRAMP
SHOME)*

View File

@@ -0,0 +1,14 @@
# This is the data/pt_BR level Makefile for Gramps
# $Id: Makefile.am 16377 2011-01-13 18:32:42Z matlas $
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
mandir = @mandir@/pt_BR
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/pt_BR/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'pt_BR'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -255,11 +255,9 @@ gramps(1) 4.0.0 gramps(1)
*ARQUIVOS**
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*

14
data/man/sv/Makefile.am Normal file
View File

@@ -0,0 +1,14 @@
# This is the data/man/sv level Makefile for Gramps
# $Id: Makefile.am 6189 2006-03-21 19:05:46Z rshura $
man_IN_FILES = gramps.1.in
man_MANS = $(man_IN_FILES:.1.in=.1)
mandir = @mandir@/sv
EXTRA_DIST = $(man_MANS) $(man_IN_FILES)
gramps.1: $(top_builddir)/config.status gramps.1.in
cd $(top_builddir) && CONFIG_FILES=data/man/sv/$@ $(SHELL) ./config.status
CLEANFILES=$(man_MANS)

View File

@@ -41,16 +41,16 @@ master_doc = 'sv'
# General information about the project.
project = u'Gramps'
copyright = u'2015, Gramps project'
copyright = u'2012, Gramps project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.2'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -246,9 +246,7 @@ Gramps(1) 3.4.0 Gramps(1)
*${PREFIX}/bin/gramps*
*${PREFIX}/lib/python/dist-packages/gramps/*
*${PREFIX}/share/*
*${PREFIX}/share/gramps*
*${HOME}/.gramps*

View File

@@ -19,12 +19,12 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
update_man.py for command line documentation.
Examples:
Examples:
python update_man.py -t
Tests if 'sphinx' and 'python' are well configured.
@@ -43,20 +43,20 @@ except:
DOCUTILS = False
LANGUAGES = ['sv', 'nl', 'pl', 'cs', 'pt_BR', 'fr']
VERSION = '5.0.0'
VERSION = '4.0.0'
DATE = ''
# You can set these variables from the command line.
SPHINXBUILD = 'sphinx-build'
if sys.platform == 'win32':
if sys.platform == 'win32':
pythonCmd = os.path.join(sys.prefix, 'bin', 'python.exe')
sphinxCmd = os.path.join(sys.prefix, 'bin', 'sphinx-build.exe')
elif sys.platform in ['linux2', 'darwin', 'cygwin']:
elif sys.platform == 'linux2' or os.name == 'darwin':
pythonCmd = os.path.join(sys.prefix, 'bin', 'python')
sphinxCmd = SPHINXBUILD
else:
print ("Update Man ERROR: unknown system, don't know sphinx, ... commands")
print ("ERROR: unknown system, don't know sphinx, ... commands")
sys.exit(0)
def tests():
@@ -70,13 +70,13 @@ def tests():
os.system('''%(program)s -V''' % {'program': pythonCmd})
except:
print ('Please, install python')
try:
print("\n=================='Sphinx-build'=============================\n")
print("\n=================='Shpinx-build'=============================\n")
os.system('''%(program)s''' % {'program': sphinxCmd})
except:
print ('Please, install sphinx')
if not DOCUTILS:
print('\nNo docutils support, cannot use -m/--man and -o/--odt arguments.')
@@ -85,49 +85,49 @@ def main():
The utility for handling documentation stuff.
What is need by Gramps, nothing more.
"""
parser = ArgumentParser(
description='This program aims to handle documentation'
' and related translated versions.',
parser = ArgumentParser(
description='This program aims to handle documentation'
' and realted translated versions.',
)
parser.add_argument("-t", "--test",
action="store_true", dest="test", default=True,
help="test if 'python' and 'sphinx' are properly installed")
parser.add_argument("-b", "--build",
action="store_true", dest="build", default=False,
help="build man documentation (via sphinx-build)")
parser.add_argument("-m", "--man",
action="store_true", dest="man", default=False,
help="build man documentation (via docutils)")
parser.add_argument("-o", "--odt",
action="store_true", dest="odt", default=False,
help="build odt documentation (via docutils)")
args = parser.parse_args()
if args.test:
tests()
if args.build:
build()
if args.man and DOCUTILS:
man()
if args.odt and DOCUTILS:
odt()
def build():
"""
Build documentation.
"""
# testing stage
os.system('''%(program)s -b html . _build/html''' % {'program': sphinxCmd})
os.system('''%(program)s -b htmlhelp . _build/htmlhelp''' % {'program': sphinxCmd})
if DOCUTILS:
@@ -136,48 +136,48 @@ def build():
os.system('''%(program)s -b changes . _build/changes''' % {'program': sphinxCmd})
#os.system('''%(program)s -b linkcheck . _build/linkcheck''' % {'program': sphinxCmd})
os.system('''%(program)s -b gettext . _build/gettext''' % {'program': sphinxCmd})
for lang in LANGUAGES:
os.system('''%(program)s -b html -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
os.system('''%(program)s -b html -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd})
os.system('''%(program)s -b htmlhelp -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
os.system('''%(program)s -b htmlhelp -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd})
if DOCUTILS:
os.system('''%(program)s -b man %(lang)s %(lang)s'''
os.system('''%(program)s -b man %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd})
os.system('''%(program)s -b text -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
os.system('''%(program)s -b text -D language="%(lang)s" master_doc="%(lang)s" %(lang)s %(lang)s'''
% {'lang': lang, 'program': sphinxCmd})
# for update/migration
os.system('''%(program)s -b gettext -D language="%(lang)s" master_doc="%(lang)s" . _build/gettext/%(lang)s'''
os.system('''%(program)s -b gettext -D language="%(lang)s" master_doc="%(lang)s" . _build/gettext/%(lang)s'''
% {'lang': lang, 'program': sphinxCmd})
def man():
"""
man file generation via docutils (python)
from docutils.core import publish_cmdline, default_description
from docutils.writers import manpage
"""
os.system('''rst2man en.rst gramps.1''')
os.system('''rst2man en.rst gramps.1''')
for lang in LANGUAGES:
os.system('''rst2man %(lang)s/%(lang)s.rst -l %(lang)s %(lang)s/gramps.1'''
os.system('''rst2man %(lang)s/%(lang)s.rst -l %(lang)s %(lang)s/gramps.1'''
% {'lang': lang})
def odt():
"""
odt file generation via docutils (python)
from docutils.core import publish_cmdline_to_binary, default_description
from docutils.writers.odf_odt import Writer, Reader
"""
os.system('''rst2odt en.rst gramps.odt''')
os.system('''rst2odt en.rst gramps.odt''')
for lang in LANGUAGES:
os.system('''rst2odt %(lang)s/%(lang)s.rst -l %(lang)s %(lang)s/gramps.odt'''
os.system('''rst2odt %(lang)s/%(lang)s.rst -l %(lang)s %(lang)s/gramps.odt'''
% {'lang': lang})
if __name__ == "__main__":
main()
main()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

View File

@@ -1,236 +0,0 @@
[PRO-GEN]
version=3.0b
type=def
format=2
[general]
dateformat=DD/MM/YYYY
pointerlength=4
tables=2
[Table_1]
name1=Person
name2=Persons
fileext=.PER
indexext=.IXP
n_lines=42
hiddenlines=4,5,6,7,8,10,12,13,14,15,19,25,30,32,33,34,35,36,40
t01=<3D>͵INDIVIDUAL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵pg30-1gb<67><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵LAST CHANGE <20>ͻ
t02=<3D> <20>Given name: <20>
t03=<3D> Surname : Sex: <20>
t04=<3D> Patronym : <20>
t05=<3D> Call name : Alias: Code: <20>
t06=<3D> Title 1 : Title 2: Title 3: <20>
t07=<3D> Father : <20>
t08=<3D> Mother : <20>
t09=<3D> Occupation: <20>
t10=<3D> Scratch : <20>
t11=<3D> Info : <20>
t12=<3D>Ĵ<EFBFBD>Address<73><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t13=<3D> Date : Street: <20>
t14=<3D> Zip : Place: Country: <20>
t15=<3D> Phone : Info: <20>
t16=<3D>Ĵ<EFBFBD>Birth<74><68><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t17=<3D> Date : Place: Time: <20>
t18=<3D> Source: Reference: <20>
t19=<3D> Text : <20>
t20=<3D> Info : <20>
t21=<3D>Ĵ<EFBFBD>Christening<6E><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t22=<3D> Date : Place: Religion: <20>
t23=<3D> Witn. : <20>
t24=<3D> Source: Reference: <20>
t25=<3D> Text : <20>
t26=<3D> Info : <20>
t27=<3D>Ĵ<EFBFBD>Death<74><68><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t28=<3D> Date : Place: Time: <20>
t29=<3D> Source: Reference: <20>
t30=<3D> Text : <20>
t31=<3D> Info : <20>
t32=<3D>ĴC<C4B4>remation<6F><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t33=<3D> Date : Place: <20>
t34=<3D> Source: Reference: <20>
t35=<3D> Text : <20>
t36=<3D> Info : <20>
t37=<3D>ĴB<C4B4>urial<61><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t38=<3D> Date : Place: <20>
t39=<3D> Source: Reference: <20>
t40=<3D> Text : <20>
t41=<3D> Info : <20>
t42=<3D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ
n_fields=58
f01=Person_record ,31, 6, 0, 1,15,"","INDI RFN"
f02=Person_last_change ,32,10,10, 1,68,"","INDI CHAN DATE"
f03=Given_name ,47,64, 4, 2,15,"",""
f04=Surname ,47,40, 4, 3,15,"","INDI NAME"
f05=Sex ,45, 1, 1, 3,67,"MMFFmmff??","INDI SEX"
f06=Patronym ,47,40, 4, 4,15,"","INDI _PATR"
f07=Call_name ,47,18, 4, 5,15,"","INDI NAME NICK/INDI NAME ALIA/INDI CHR NICK"
f08=Alias ,47,19, 4, 5,41,"","INDI NAME _ALIA/INDI NAME COMM"
f09=Person_code ,47,12, 4, 5,67,"","INDI REFN/INDI CODE"
f10=Title1 ,47,16, 4, 6,15,"","INDI TITL"
f11=Title2 ,47,16, 4, 6,41,"","INDI _TITL2"
f12=Title3 ,47,12, 4, 6,67,"","INDI _TITL3"
f13=Father , 2,64, 4, 7,15,"",""
f14=Mother , 3,64, 4, 8,15,"",""
f15=Occupation ,47,64, 4, 9,15,"","INDI OCCU"
f16=Person_scratch ,46,64, 4,10,15,"","INDI _COMM/INDI COMM"
f17=Person_info ,46,64, 4,11,15,"","INDI NOTE"
f18=Address_date ,44,10,10,13,11,"","INDI RESI DATE"
f19=Address_street ,47,49, 4,13,30,"","INDI RESI ADDR"
f20=Address_zip ,47,11, 4,14,11,"","INDI RESI ADDR POST/INDI RESI POST"
f21=Address_place ,47,27, 4,14,30,"","INDI RESI ADDR CITY/INDI RESI PLAC"
f22=Address_country ,47,12, 4,14,67,"","INDI RESI ADDR CTRY/INDI RESI CTRY"
f23=Address_phone ,47,12, 4,15,11,"","INDI RESI PHON/INDI PHON"
f24=Address_info ,46,49, 4,15,30,"","INDI RESI NOTE/INDI ADDR"
f25=Birth_date ,44,10,10,17,11,"","INDI BIRT DATE"
f26=Birth_place ,47,30, 4,17,30,"","INDI BIRT PLAC"
f27=Birth_time ,45, 5, 5,17,67,"09::..","INDI BIRT TIME"
f28=Birth_source ,47,44, 4,18,11,"","INDI BIRT SOUR/INDI BIRT SOUR TITL"
f29=Birth_ref ,45,12,12,18,67,"","INDI BIRT SOUR REFN"
f30=Birth_text ,46,68, 4,19,11,"","INDI BIRT SOUR TEXT"
f31=Birth_info ,46,68, 4,20,11,"","INDI BIRT NOTE"
f32=Christening_date ,44,10,10,22,11,"","INDI CHR DATE"
f33=Christening_place ,47,26, 4,22,30,"","INDI CHR PLAC"
f34=Religion ,47,12, 4,22,67,"","INDI CHR RELI/INDI RELI"
f35=Christening_witness ,47,68, 4,23,11,"","INDI CHR _WITN/INDI CHR WITN"
f36=Christening_source ,47,44, 4,24,11,"","INDI CHR SOUR/INDI CHR SOUR TITL"
f37=Christening_ref ,45,12,12,24,67,"","INDI CHR SOUR REFN"
f38=Christening_text ,46,68, 4,25,11,"","INDI CHR SOUR TEXT"
f39=Christening_info ,46,68, 4,26,11,"","INDI CHR NOTE"
f40=Death_date ,44,10,10,28,11,"","INDI DEAT DATE"
f41=Death_place ,47,30, 4,28,30,"","INDI DEAT PLAC"
f42=Death_time ,45, 5, 5,28,67,"09::..","INDI DEAT TIME"
f43=Death_source ,47,44, 4,29,11,"","INDI DEAT SOUR/INDI DEAT SOUR TITL"
f44=Death_ref ,45,12,12,29,67,"","INDI DEAT SOUR REFN"
f45=Death_text ,46,68, 4,30,11,"","INDI DEAT SOUR TEXT"
f46=Death_info ,46,68, 4,31,11,"","INDI DEAT NOTE"
f47=Cremation_date ,44,10,10,33,11,"","INDI CREM DATE"
f48=Cremation_place ,47,49, 4,33,30,"","INDI CREM PLAC"
f49=Cremation_source ,47,44, 4,34,11,"","INDI CREM SOUR/INDI CREM SOUR TITL"
f50=Cremation_ref ,45,12,12,34,67,"","INDI CREM SOUR REFN"
f51=Cremation_text ,46,68, 4,35,11,"","INDI CREM SOUR TEXT"
f52=Cremation_info ,46,68, 4,36,11,"","INDI CREM NOTE"
f53=Burial_date ,44,10,10,38,11,"","INDI BURI DATE"
f54=Burial_place ,47,49, 4,38,30,"","INDI BURI PLAC"
f55=Burial_source ,47,44, 4,39,11,"","INDI BURI SOUR/INDI BURI SOUR TITL"
f56=Burial_ref ,45,12,12,39,67,"","INDI BURI SOUR REFN"
f57=Burial_text ,46,68, 4,40,11,"","INDI BURI SOUR TEXT"
f58=Burial_info ,46,68, 4,41,11,"","INDI BURI NOTE"
n_replace=4
r01=Surname,Patronym
r02=Birth_date,Christening_date/Birth_place,Christening_place
r03=Death_date,Burial_date/Death_place,Burial_place
r04=Burial_date,Cremation_date/Burial_place,Cremation_place
[Table_2]
name1=Marriage
name2=Marriages
fileext=.REL
indexext=.IXR
n_lines=35
hiddenlines=5,7,8,9,10,11,16,22,28,30,31,32,33,34
t01=<3D>͵MARRIAGE <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵pg30-1gb<67><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵LAST CHANGE <20>ͻ
t02=<3D> <20>Husband: <20>
t03=<3D> Wife : <20>
t04=<3D> Code : <20>
t05=<3D> Scratch: <20>
t06=<3D> Info : <20>
t07=<3D>Ĵ<EFBFBD>Living together<65><72><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t08=<3D> Date : Place: <20>
t09=<3D> Source: Reference: <20>
t10=<3D> Text : <20>
t11=<3D> Info : <20>
t12=<3D>ĴPublication of the <20>banns<6E><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t13=<3D> Date : Place: <20>
t14=<3D> Witn. : <20>
t15=<3D> Source: Reference: <20>
t16=<3D> Text : <20>
t17=<3D> Info : <20>
t18=<3D>ĴCivil <20>marriage<67><65><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t19=<3D> Date : Place: <20>
t20=<3D> Witn. : <20>
t21=<3D> Source: Reference: <20>
t22=<3D> Text : <20>
t23=<3D> Info : <20>
t24=<3D>Ĵ<EFBFBD>Church marriage<67><65><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t25=<3D> Date : Place: Church: <20>
t26=<3D> Witn. : <20>
t27=<3D> Source: Reference: <20>
t28=<3D> Text : <20>
t29=<3D> Info : <20>
t30=<3D>Ĵ<EFBFBD>Divorce<63><65><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ
t31=<3D> Date : Place: <20>
t32=<3D> Source: Reference: <20>
t33=<3D> Text : <20>
t34=<3D> Info : <20>
t35=<3D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ
n_fields=41
f01=Relation_record ,31, 6, 0, 1,13,"","FAM RFN"
f02=Relation_last_change,32,10,10, 1,68,"","FAM CHAN DATE"
f03=Husband ,22,67, 4, 2,12,"","FAM HUSB"
f04=Wife ,23,67, 4, 3,12,"","FAM WIFE"
f05=Relation_code ,47,12, 4, 4,12,"","FAM REFN/FAM CODE"
f06=Relation_scratch ,46,67, 4, 5,12,"","FAM _COMM/FAM COMM"
f07=Relation_info ,46,67, 4, 6,12,"","FAM NOTE"
f08=Living_date ,44,10,10, 8,11,"","FAM _LIV DATE"
f09=Living_place ,47,49, 4, 8,30,"","FAM _LIV PLAC"
f10=Living_source ,47,44, 4, 9,11,"","FAM _LIV SOUR/FAM _LIV SOUR TITL"
f11=Living_ref ,45,12,12, 9,67,"","FAM _LIV SOUR REFN"
f12=Living_text ,46,68, 4,10,11,"","FAM _LIV SOUR TEXT"
f13=Living_info ,46,68, 4,11,11,"","FAM _LIV NOTE"
f14=Banns_date ,44,10,10,13,11,"","FAM MARB DATE/FAM REGS DATE"
f15=Banns_place ,47,49, 4,13,30,"","FAM MARB PLAC/FAM REGS PLAC"
f16=banns_witnesses ,47,68, 4,14,11,"","FAM MARB _WITN/FAM MARB WITN"
f17=Banns_source ,47,44, 4,15,11,"","FAM MARB SOUR/FAM MARB SOUR TITL/FAM REGS SOUR"
f18=Banns_ref ,45,12,12,15,67,"","FAM MARB SOUR REFN/FAM REGS SOUR REFN"
f19=Banns_text ,46,68, 4,16,11,"","FAM MARB SOUR TEXT"
f20=Banns_info ,46,68, 4,17,11,"","FAM MARB NOTE"
f21=Civil_date ,44,10,10,19,11,"","FAM MARR(Civil) DATE/FAM MARR DATE"
f22=Civil_place ,47,49, 4,19,30,"","FAM MARR(Civil) PLAC/FAM MARR PLAC"
f23=Civil_witnesses ,47,68, 4,20,11,"","FAM MARR(Civil) _WITN/FAM MARR _WITN/FAM MARR WITN/FAM WITN"
f24=Civil_source ,47,44, 4,21,11,"","FAM MARR(Civil) SOUR/FAM MARR SOUR/FAM MARR SOUR TITL"
f25=Civil_ref ,45,12,12,21,67,"","FAM MARR(Civil) SOUR REFN/FAM MARR SOUR REFN"
f26=Civil_text ,46,68, 4,22,11,"","FAM MARR(Civil) SOUR TEXT/FAM MARR SOUR TEXT"
f27=Civil_info ,46,68, 4,23,11,"","FAM MARR(Civil) NOTE/FAM MARR NOTE"
f28=Church_date ,44,10,10,25,11,"","FAM MARR(Church) DATE/FAM ORDI DATE"
f29=Church_place ,47,28, 4,25,30,"","FAM MARR(Church) PLAC/FAM ORDI PLAC"
f30=Church ,47,12, 4,25,67,"","FAM MARR(Church) _CHUR/FAM ORDI _CHUR/FAM ORDI RELI"
f31=Church_witnesses ,47,68, 4,26,11,"","FAM MARR(Church) _WITN/FAM ORDI _WITN/FAM ORDI WITN"
f32=Church_source ,47,44, 4,27,11,"","FAM MARR(Church) SOUR/FAM ORDI SOUR/FAM ORDI SOUR TITL"
f33=Church_ref ,45,12,12,27,67,"","FAM MARR(Church) SOUR REFN/FAM ORDI SOUR REFN"
f34=Church_text ,46,68, 4,28,11,"","FAM MARR(Church) SOUR TEXT/FAM ORDI SOUR TEXT"
f35=Church_info ,46,68, 4,29,11,"","FAM MARR(Church) NOTE/FAM ORDI NOTE"
f36=Divorce_date ,44,10,10,31,11,"","FAM DIV DATE/FAM DIVO DATE"
f37=Divorce_place ,47,49, 4,31,30,"","FAM DIV PLAC/FAM DIVO PLAC"
f38=Divorce_source ,47,44, 4,32,11,"","FAM DIV SOUR/FAM DIV SOUR TITL"
f39=Divorce_ref ,45,12,12,32,67,"","FAM DIV SOUR REFN"
f40=Divorce_text ,46,68, 4,33,11,"","FAM DIV SOUR TEXT"
f41=Divorce_info ,46,68, 4,34,11,"","FAM DIV NOTE"
n_replace=3
r01=Banns_date,Living_date/Banns_place,Living_place
r02=Civil_date,Church_date/Civil_place,Church_place
r03=Church_date,Banns_date/Church_place,Banns_place
[Genealogical]
male=M
female=F
function_father=[FATHER]
function_mother=[MOTHER]
function_husband=[HUSBAND]
function_wife=[WIFE]
function_age=[AGE]
function_initials=[INITIALS]
field_father=Father
field_mother=Mother
field_givenname=Given_name
field_surname=Surname
field_sex=Sex
field_birthdate=Birth_date
field_christeningdate=Christening_date
field_deathdate=Death_date
field_burialdate=Burial_date
field_husband=Husband
field_wife=Wife
field_marriagedate=Civil_date
field_churchdate=Church_date
field_divorcedate=Divorce_date

View File

@@ -1,2 +0,0 @@
\0
PG30-1GB.DEF

View File

@@ -1,22 +0,0 @@
[PRO-GEN]
version=3.21
type=ixi
indexformat=2
[Table_1]
current_record=0
current_index=1
indexes=1
sel_1=
sort_1=
mark_1=
marked_1=0
[Table_2]
current_record=0
current_index=1
indexes=1
sel_1=
sort_1=
mark_1=
marked_1=0

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,20 +0,0 @@
File of remarks for GEDCOM import.
GEDCOM file : D:\Users\PRC\Documents\Gramps\data\tests\exp_sample_ged.ged
PRO-GEN file : C:\PG30\GB\DATA\SAMPLE
Date : 13/01/2017
Rec. Remarks (P=person, R=Marriage)
--------------------------------------------------------------------------------
P1 (@I0000@) Surname (Anna Nana /Hansdotter/) has already been entered.
2 FAMC @F0008@
P25 (@I0024@) Death_date (BEF 23 JUL 1930) too long.
2 FAMC @F0010@
P43 (@I0042@) Surname (Frank /Neilsen/) has already been entered.
2 FAMC @F0005@
P47 (@I0046@) Address_date (FROM 1 JAN 1964 TO 3 MAR 1970) too long.
(@I0046@) Address_date (I think 1970 to 1971) has already been entered.
2 FAMC @F0016@
2 FAMC @F0016@
2 FAMC @F0016@
--------------------------------------------------------------------------------

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.6.0//EN"
"http://gramps-project.org/xml/1.6.0/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.6.0/">
<header>
<created date="2015-07-21" version="GrampsAIO64-4.1.3-1"/>
<researcher>
</researcher>
</header>
<people>
<person handle="_d12d89b02aa5121726adba4f517" change="1437459556" id="I0000">
<gender>M</gender>
<name type="Birth Name">
<first>Child</first>
<surname>Child</surname>
</name>
<childof hlink="_d12d8a32ae01d9449d5da18eda0"/>
<parentin hlink="_d12d8a7573462f21848658c9c5d"/>
</person>
<person handle="_d12d89d4dce7eaaa68e31f6100e" change="1437459556" id="I0001">
<gender>M</gender>
<name type="Birth Name">
<first>Father</first>
<surname>Father</surname>
</name>
<childof hlink="_d12d8a7573462f21848658c9c5d"/>
<parentin hlink="_d12d8a32ae01d9449d5da18eda0"/>
</person>
</people>
<families>
<family handle="_d12d8a32ae01d9449d5da18eda0" change="1437459531" id="F0000">
<rel type="Unknown"/>
<father hlink="_d12d89d4dce7eaaa68e31f6100e"/>
<childref hlink="_d12d89b02aa5121726adba4f517"/>
</family>
<family handle="_d12d8a7573462f21848658c9c5d" change="1437459556" id="F0001">
<rel type="Unknown"/>
<father hlink="_d12d89b02aa5121726adba4f517"/>
<childref hlink="_d12d89d4dce7eaaa68e31f6100e"/>
</family>
</families>
</database>

File diff suppressed because it is too large Load Diff

View File

@@ -1,782 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.5.0//EN"
"http://gramps-project.org/xml/1.5.0/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.5.0/">
<header>
<created date="2015-05-14" version="3.4.0"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_cde77b2c30c13ea85db" change="1426803047" id="E0000">
<type>Birth</type>
<dateval val="1823" type="before"/>
</event>
<event handle="_cde77b7eff96ae8455f" change="1426803072" id="E0001">
<type>Birth</type>
<dateval val="1823-03" type="before"/>
</event>
<event handle="_cde77be2a67401f7b16" change="1426803096" id="E0002">
<type>Birth</type>
<dateval val="1823-03-13" type="before"/>
</event>
<event handle="_cde7b70d22b30f00b14" change="1426802975" id="E0003">
<type>Birth</type>
<dateval val="1822" type="after"/>
</event>
<event handle="_cde7b8eb90e0a8792a9" change="1426802998" id="E0004">
<type>Birth</type>
<dateval val="1822-02" type="after"/>
</event>
<event handle="_cde7b95cb7e40432538" change="1426803021" id="E0005">
<type>Birth</type>
<dateval val="1822-02-13" type="after"/>
</event>
<event handle="_cde7b9b2b00713c42af" change="1426802885" id="E0006">
<type>Birth</type>
<dateval val="1821" type="about"/>
</event>
<event handle="_cde7b9f0da51d2ff10a" change="1426802925" id="E0007">
<type>Birth</type>
<dateval val="1821-01" type="about"/>
</event>
<event handle="_cde7ba310240e18a0ea" change="1426802949" id="E0008">
<type>Birth</type>
<dateval val="1821-01-13" type="about"/>
</event>
<event handle="_ce00f22be3443f0c30b" change="1426803671" id="E0009">
<type>Birth</type>
<dateval val="1851"/>
</event>
<event handle="_ce00f2ab83911df5354" change="1426803701" id="E0010">
<type>Birth</type>
<dateval val="1852-02"/>
</event>
<event handle="_ce00f2eb2f86d94ece0" change="1426803729" id="E0011">
<type>Birth</type>
<dateval val="1853-03-04"/>
</event>
<event handle="_cfa02e904f161e652da" change="1426793018" id="E0014">
<type>Birth</type>
<dateval val="1801-01"/>
</event>
<event handle="_cfa02efc75b0eb05cfa" change="1426793062" id="E0015">
<type>Birth</type>
<dateval val="1801-01-13"/>
</event>
<event handle="_cfa02f60fbe55ad36f7" change="1426793103" id="E0016">
<type>Birth</type>
<dateval val="1802-02"/>
</event>
<event handle="_cfa02fd93615614dc94" change="1426793153" id="E0017">
<type>Birth</type>
<dateval val="1802-02-13"/>
</event>
<event handle="_cfa030376d1228fb29b" change="1426793191" id="E0018">
<type>Birth</type>
<dateval val="1803-03"/>
</event>
<event handle="_cfa0308a9e766a18a5a" change="1426793225" id="E0019">
<type>Birth</type>
<dateval val="1803-03-13"/>
</event>
<event handle="_cfa0311ff9474a33dad" change="1426793404" id="E0020">
<type>Birth</type>
<dateval val="1804-04"/>
</event>
<event handle="_cfa0314208a175c695f" change="1426793300" id="E0021">
<type>Birth</type>
<dateval val="1804-04-13"/>
</event>
<event handle="_cfa031df6bb2f50f9c5" change="1426793365" id="E0022">
<type>Birth</type>
<dateval val="1805-05"/>
</event>
<event handle="_cfa0335efcf6eeb6bf6" change="1426793522" id="E0024">
<type>Birth</type>
<dateval val="1805-05-13"/>
</event>
<event handle="_cfa0342171e10e9a0c8" change="1426793602" id="E0025">
<type>Birth</type>
<dateval val="1806-06"/>
</event>
<event handle="_cfa03468bc76cf7a295" change="1426793631" id="E0026">
<type>Birth</type>
<dateval val="1807-07"/>
</event>
<event handle="_cfa034b07c9408b12cc" change="1426793660" id="E0027">
<type>Birth</type>
<dateval val="1808-08"/>
</event>
<event handle="_cfa034f8da44738c323" change="1426793690" id="E0028">
<type>Birth</type>
<dateval val="1809-09"/>
</event>
<event handle="_cfa03547c3765017895" change="1426793722" id="E0029">
<type>Birth</type>
<dateval val="1810-10"/>
</event>
<event handle="_cfa035965a02da81147" change="1426793754" id="E0030">
<type>Birth</type>
<dateval val="1811-11"/>
</event>
<event handle="_cfa035ee99b03f59cbc" change="1426793790" id="E0031">
<type>Birth</type>
<dateval val="1812-12"/>
</event>
<event handle="_cfa038cce441e73b1c5" change="1426794091" id="E0032">
<type>Birth</type>
<dateval val="1806-06-13"/>
</event>
<event handle="_cfa039308b34bf173be" change="1426794132" id="E0033">
<type>Birth</type>
<dateval val="1807-07-13"/>
</event>
<event handle="_cfa0399114e40ffcadf" change="1426794172" id="E0034">
<type>Birth</type>
<dateval val="1808-08-13"/>
</event>
<event handle="_cfa039f6e510c198300" change="1426794213" id="E0035">
<type>Birth</type>
<dateval val="1809-09-13"/>
</event>
<event handle="_cfa03a5c2fe4ce6e75d" change="1426794255" id="E0036">
<type>Birth</type>
<dateval val="1810-10-13"/>
</event>
<event handle="_cfa03aabe141219bb22" change="1426794287" id="E0037">
<type>Birth</type>
<dateval val="1811-11-13"/>
</event>
<event handle="_cfa03afa2ac4d140d9d" change="1426794319" id="E0038">
<type>Birth</type>
<dateval val="1812-12-13"/>
</event>
<event handle="_cfa0424ffcb19aed9f7" change="1426804001" id="E0039">
<type>Birth</type>
<datespan start="1876" stop="1877"/>
</event>
<event handle="_cfa042e5a0d52e9c63f" change="1426804044" id="E0040">
<type>Birth</type>
<datespan start="1876-06" stop="1877-07"/>
</event>
<event handle="_cfa0436b49b7746d225" change="1426804087" id="E0041">
<type>Birth</type>
<datespan start="1876-06-13" stop="1877-07-13"/>
</event>
<event handle="_cfa044b58de7b9a9759" change="1426803857" id="E0042">
<type>Birth</type>
<daterange start="1864" stop="1865"/>
</event>
<event handle="_cfa0454785d7f7fe074" change="1426803895" id="E0043">
<type>Birth</type>
<daterange start="1864-04" stop="1865-05"/>
</event>
<event handle="_cfa045f559074cd25a6" change="1426803934" id="E0044">
<type>Birth</type>
<daterange start="1864-04-13" stop="1865-05-13"/>
</event>
<event handle="_cfa05eab109493097d1" change="1426803468" id="E0045">
<type>Birth</type>
<dateval val="1849" quality="estimated"/>
</event>
<event handle="_cfa05fb82182cf228bc" change="1426803506" id="E0046">
<type>Birth</type>
<dateval val="1849-09" quality="estimated"/>
</event>
<event handle="_cfa0604633236ff9d43" change="1426803535" id="E0047">
<type>Birth</type>
<dateval val="1849-09-13" quality="estimated"/>
</event>
<event handle="_cfa060d09d433ae6313" change="1426803223" id="E0048">
<type>Birth</type>
<dateval val="1835" quality="calculated"/>
</event>
<event handle="_cfa062751af6a105a82" change="1426803248" id="E0049">
<type>Birth</type>
<dateval val="1835-05" quality="calculated"/>
</event>
<event handle="_cfa062e50d3096da9a5" change="1426803275" id="E0050">
<type>Birth</type>
<dateval val="1835-05-13" quality="calculated"/>
</event>
<event handle="_cfa063e88800cb80b33" change="1426803138" id="E0051">
<type>Birth</type>
<dateval val="1834" type="before" quality="calculated"/>
</event>
<event handle="_cfa064a6da37f0563f5" change="1426803166" id="E0052">
<type>Birth</type>
<dateval val="1834-04" type="before" quality="calculated"/>
</event>
<event handle="_cfa0654060124488afa" change="1426803189" id="E0053">
<type>Birth</type>
<dateval val="1834-04-13" type="before" quality="calculated"/>
</event>
<event handle="_cfa0670f11e1049f07b" change="1426803306" id="E0054">
<type>Birth</type>
<dateval val="1846" type="about" quality="estimated"/>
</event>
<event handle="_cfa067a8bbe2900a40c" change="1426803330" id="E0055">
<type>Birth</type>
<dateval val="1846-06" type="about" quality="estimated"/>
</event>
<event handle="_cfa0681c5085ac5e9e0" change="1426803354" id="E0056">
<type>Birth</type>
<dateval val="1846-06-13" type="about" quality="estimated"/>
</event>
<event handle="_cfa069a50b23f6b87fa" change="1426803388" id="E0057">
<type>Birth</type>
<daterange start="1848" stop="1849" quality="estimated"/>
</event>
<event handle="_cfa086bc43c31bcd49b" change="1426803415" id="E0058">
<type>Birth</type>
<daterange start="1848-08" stop="1849-09" quality="estimated"/>
</event>
<event handle="_cfa0873e5170a315aea" change="1426803439" id="E0059">
<type>Birth</type>
<daterange start="1848-08-13" stop="1849-09-13" quality="estimated"/>
</event>
<event handle="_cfa087488800cb80b33" change="1426803138" id="E0060">
<type>Birth</type>
<dateval val="1847" type="after" quality="estimated"/>
</event>
<event handle="_cfa08756da37f0563f5" change="1426803166" id="E0061">
<type>Birth</type>
<dateval val="1847-07" type="after" quality="estimated"/>
</event>
<event handle="_cfa0876060124488afa" change="1426803189" id="E0062">
<type>Birth</type>
<dateval val="1847-07-13" type="after" quality="estimated"/>
</event>
<event handle="_cfa0877ffcb19aed9f7" change="1426804001" id="E0063">
<type>Birth</type>
<datespan start="1878" stop="1879" quality="estimated"/>
</event>
<event handle="_cfa08785a0d52e9c63f" change="1426804044" id="E0064">
<type>Birth</type>
<datespan start="1878-08" stop="1879-09" quality="estimated"/>
</event>
<event handle="_cfa0879b49b7746d225" change="1426804087" id="E0065">
<type>Birth</type>
<datespan start="1878-08-13" stop="1879-09-13" quality="estimated"/>
</event>
<event handle="_d0545e83fa37336070a" change="1431629910" id="E0066">
<type>Birth</type>
<dateval val="1800-00-13"/>
</event>
</events>
<people home="_ce00f22fdb926a87cdd">
<person handle="_cde77b359d42a7abeb8" change="1426803052" id="I0000">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Before-Person</surname>
</name>
<eventref hlink="_cde77b2c30c13ea85db" role="Primary"/>
</person>
<person handle="_cde77b89083519bcf0b" change="1426803077" id="I0001">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Before-Person</surname>
</name>
<eventref hlink="_cde77b7eff96ae8455f" role="Primary"/>
</person>
<person handle="_cde77be591457afcffb" change="1426803099" id="I0002">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Before-Person</surname>
</name>
<eventref hlink="_cde77be2a67401f7b16" role="Primary"/>
</person>
<person handle="_cde7b70f31a17456a2e" change="1426802978" id="I0003">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>After-Person</surname>
</name>
<eventref hlink="_cde7b70d22b30f00b14" role="Primary"/>
</person>
<person handle="_cde7b8ed6cd11b5562e" change="1426803002" id="I0004">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>After-Person</surname>
</name>
<eventref hlink="_cde7b8eb90e0a8792a9" role="Primary"/>
</person>
<person handle="_cde7b95ec952bc2b12d" change="1426803025" id="I0005">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>After-Person</surname>
</name>
<eventref hlink="_cde7b95cb7e40432538" role="Primary"/>
</person>
<person handle="_cde7b9b4e9e5e81800d" change="1426802890" id="I0006">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>About-Person</surname>
</name>
<eventref hlink="_cde7b9b2b00713c42af" role="Primary"/>
</person>
<person handle="_cde7b9f2d2e633055b9" change="1426802928" id="I0007">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>About-Person</surname>
</name>
<eventref hlink="_cde7b9f0da51d2ff10a" role="Primary"/>
</person>
<person handle="_cde7ba324d85d019053" change="1426802954" id="I0008">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>About-Person</surname>
</name>
<eventref hlink="_cde7ba310240e18a0ea" role="Primary"/>
</person>
<person handle="_ce00f22fdb926a87cdd" change="1426803678" id="I0009">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Normal-Person</surname>
</name>
<eventref hlink="_ce00f22be3443f0c30b" role="Primary"/>
</person>
<person handle="_ce00f2aeb776bb53be5" change="1426803705" id="I0010">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Normal-Person</surname>
</name>
<eventref hlink="_ce00f2ab83911df5354" role="Primary"/>
</person>
<person handle="_ce00f2eda384642791d" change="1426803733" id="I0011">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Normal-Person</surname>
</name>
<eventref hlink="_ce00f2eb2f86d94ece0" role="Primary"/>
</person>
<person handle="_cfa02ea21cf2c08d6e2" change="1426793828" id="I0014">
<gender>M</gender>
<name type="Birth Name">
<first>B01</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa02e904f161e652da" role="Primary"/>
</person>
<person handle="_cfa02f060870eef1f71" change="1426793996" id="I0015">
<gender>M</gender>
<name type="Birth Name">
<first>C01</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa02efc75b0eb05cfa" role="Primary"/>
</person>
<person handle="_cfa02f6db513f4e1c14" change="1426793845" id="I0016">
<gender>M</gender>
<name type="Birth Name">
<first>B02</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa02f60fbe55ad36f7" role="Primary"/>
</person>
<person handle="_cfa02fe4e8d3cad65e6" change="1426794012" id="I0017">
<gender>M</gender>
<name type="Birth Name">
<first>C02</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa02fd93615614dc94" role="Primary"/>
</person>
<person handle="_cfa03042b93635f71a0" change="1426793861" id="I0018">
<gender>M</gender>
<name type="Birth Name">
<first>B03</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa030376d1228fb29b" role="Primary"/>
</person>
<person handle="_cfa03092fb610f772ba" change="1426794027" id="I0019">
<gender>M</gender>
<name type="Birth Name">
<first>C03</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0308a9e766a18a5a" role="Primary"/>
</person>
<person handle="_cfa0314a7de1852f830" change="1426794043" id="I0021">
<gender>M</gender>
<name type="Birth Name">
<first>C04</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0314208a175c695f" role="Primary"/>
</person>
<person handle="_cfa031e7f6333a37f87" change="1426793893" id="I0022">
<gender>M</gender>
<name type="Birth Name">
<first>B05</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa031df6bb2f50f9c5" role="Primary"/>
</person>
<person handle="_cfa03248bae711cb306" change="1426793877" id="I0023">
<gender>M</gender>
<name type="Birth Name">
<first>B04</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0311ff9474a33dad" role="Primary"/>
</person>
<person handle="_cfa033674d813cb83fb" change="1426794060" id="I0024">
<gender>M</gender>
<name type="Birth Name">
<first>C05</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0335efcf6eeb6bf6" role="Primary"/>
</person>
<person handle="_cfa03429a3506b90a17" change="1426793911" id="I0025">
<gender>M</gender>
<name type="Birth Name">
<first>B06</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0342171e10e9a0c8" role="Primary"/>
</person>
<person handle="_cfa03471249305e11a3" change="1426793926" id="I0026">
<gender>M</gender>
<name type="Birth Name">
<first>B07</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa03468bc76cf7a295" role="Primary"/>
</person>
<person handle="_cfa034ba95d55bbb30d" change="1426793947" id="I0027">
<gender>M</gender>
<name type="Birth Name">
<first>B08</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa034b07c9408b12cc" role="Primary"/>
</person>
<person handle="_cfa035043d730daedcc" change="1426793965" id="I0028">
<gender>M</gender>
<name type="Birth Name">
<first>B09</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa034f8da44738c323" role="Primary"/>
</person>
<person handle="_cfa03553f6327fb3aa3" change="1426793727" id="I0029">
<gender>M</gender>
<name type="Birth Name">
<first>B10</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa03547c3765017895" role="Primary"/>
</person>
<person handle="_cfa035a31fd38ced89e" change="1426793759" id="I0030">
<gender>M</gender>
<name type="Birth Name">
<first>B11</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa035965a02da81147" role="Primary"/>
</person>
<person handle="_cfa035f87450688702b" change="1426793794" id="I0031">
<gender>M</gender>
<name type="Birth Name">
<first>B12</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa035ee99b03f59cbc" role="Primary"/>
</person>
<person handle="_cfa038d6790220eb6a0" change="1426794095" id="I0032">
<gender>M</gender>
<name type="Birth Name">
<first>C06</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa038cce441e73b1c5" role="Primary"/>
</person>
<person handle="_cfa039412cf2c81aaa6" change="1426794139" id="I0033">
<gender>M</gender>
<name type="Birth Name">
<first>C07</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa039308b34bf173be" role="Primary"/>
</person>
<person handle="_cfa0399d5b4296c09ed" change="1426794177" id="I0034">
<gender>M</gender>
<name type="Birth Name">
<first>C08</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa0399114e40ffcadf" role="Primary"/>
</person>
<person handle="_cfa03a00ae7431e3c10" change="1426794217" id="I0035">
<gender>M</gender>
<name type="Birth Name">
<first>C09</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa039f6e510c198300" role="Primary"/>
</person>
<person handle="_cfa03a68a5e1f70d524" change="1426794260" id="I0036">
<gender>M</gender>
<name type="Birth Name">
<first>C10</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa03a5c2fe4ce6e75d" role="Primary"/>
</person>
<person handle="_cfa03ab437d05844dc3" change="1426794291" id="I0037">
<gender>M</gender>
<name type="Birth Name">
<first>C11</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa03aabe141219bb22" role="Primary"/>
</person>
<person handle="_cfa03b0c1635ed179a5" change="1426794327" id="I0038">
<gender>M</gender>
<name type="Birth Name">
<first>C12</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_cfa03afa2ac4d140d9d" role="Primary"/>
</person>
<person handle="_cfa0425f40e5bd7f546" change="1426804005" id="I0039">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa0424ffcb19aed9f7" role="Primary"/>
</person>
<person handle="_cfa0431254247adca83" change="1426804048" id="I0040">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa042e5a0d52e9c63f" role="Primary"/>
</person>
<person handle="_cfa0439de437d741e80" change="1426804091" id="I0041">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa0436b49b7746d225" role="Primary"/>
</person>
<person handle="_cfa044c262e1e5c8503" change="1426803860" id="I0042">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa044b58de7b9a9759" role="Primary"/>
</person>
<person handle="_cfa04565ce470dcd2f8" change="1426803898" id="I0043">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa0454785d7f7fe074" role="Primary"/>
</person>
<person handle="_cfa0460050935c9a427" change="1426803937" id="I0044">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa045f559074cd25a6" role="Primary"/>
</person>
<person handle="_cfa05ec0033766aaf99" change="1426803473" id="I0045">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Estimated-Person</surname>
</name>
<eventref hlink="_cfa05eab109493097d1" role="Primary"/>
</person>
<person handle="_cfa05fccf2c4051824b" change="1426803510" id="I0046">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Estimated-Person</surname>
</name>
<eventref hlink="_cfa05fb82182cf228bc" role="Primary"/>
</person>
<person handle="_cfa060511337394614d" change="1426803539" id="I0047">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Estimated-Person</surname>
</name>
<eventref hlink="_cfa0604633236ff9d43" role="Primary"/>
</person>
<person handle="_cfa060e177361c262d1" change="1426803227" id="I0048">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Calculated-Person</surname>
</name>
<eventref hlink="_cfa060d09d433ae6313" role="Primary"/>
</person>
<person handle="_cfa0627d4346f5a6156" change="1426803252" id="I0049">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Calculated-Person</surname>
</name>
<eventref hlink="_cfa062751af6a105a82" role="Primary"/>
</person>
<person handle="_cfa062f0f6d6be03ddb" change="1426803278" id="I0050">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Calculated-Person</surname>
</name>
<eventref hlink="_cfa062e50d3096da9a5" role="Primary"/>
</person>
<person handle="_cfa063f5677702eaa46" change="1426803142" id="I0051">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Calculated-Before-Person</surname>
</name>
<eventref hlink="_cfa063e88800cb80b33" role="Primary"/>
</person>
<person handle="_cfa064bb7630e608798" change="1426803169" id="I0052">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Calculated-Before-Person</surname>
</name>
<eventref hlink="_cfa064a6da37f0563f5" role="Primary"/>
</person>
<person handle="_cfa0654ca9f46930cc4" change="1426803193" id="I0053">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Calculated-Before-Person</surname>
</name>
<eventref hlink="_cfa0654060124488afa" role="Primary"/>
</person>
<person handle="_cfa06717fb57c27f756" change="1426803310" id="I0054">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Estimated-About-Person</surname>
</name>
<eventref hlink="_cfa0670f11e1049f07b" role="Primary"/>
</person>
<person handle="_cfa067b2e020880caf3" change="1426803333" id="I0055">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Estimated-About-Person</surname>
</name>
<eventref hlink="_cfa067a8bbe2900a40c" role="Primary"/>
</person>
<person handle="_cfa068250bc3c821f3c" change="1426803357" id="I0056">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Estimated-About-Person</surname>
</name>
<eventref hlink="_cfa0681c5085ac5e9e0" role="Primary"/>
</person>
<person handle="_cfa069b80556bceaf0b" change="1426803392" id="I0057">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Estimated-RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa069a50b23f6b87fa" role="Primary"/>
</person>
<person handle="_cfa086c6e4e248b4ac6" change="1426803418" id="I0058">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Estimated-RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa086bc43c31bcd49b" role="Primary"/>
</person>
<person handle="_cfa0874684b42b63ab7" change="1426803443" id="I0059">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Estimated-RangeBetween-Person</surname>
</name>
<eventref hlink="_cfa0873e5170a315aea" role="Primary"/>
</person>
<person handle="_cfa087580556bceaf0b" change="1426803392" id="I0060">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Estimated-After-Person</surname>
</name>
<eventref hlink="_cfa087488800cb80b33" role="Primary"/>
</person>
<person handle="_cfa08766e4e248b4ac6" change="1426803418" id="I0061">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Estimated-After-Person</surname>
</name>
<eventref hlink="_cfa08756da37f0563f5" role="Primary"/>
</person>
<person handle="_cfa0877684b42b63ab7" change="1426803443" id="I0062">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Estimated-After-Person</surname>
</name>
<eventref hlink="_cfa0876060124488afa" role="Primary"/>
</person>
<person handle="_cfa087780556bceaf0b" change="1426803392" id="I0063">
<gender>M</gender>
<name type="Birth Name">
<first>A</first>
<surname>Estimated-SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa0877ffcb19aed9f7" role="Primary"/>
</person>
<person handle="_cfa08786e4e248b4ac6" change="1426803418" id="I0064">
<gender>M</gender>
<name type="Birth Name">
<first>B</first>
<surname>Estimated-SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa08785a0d52e9c63f" role="Primary"/>
</person>
<person handle="_cfa0879684b42b63ab7" change="1426803443" id="I0065">
<gender>M</gender>
<name type="Birth Name">
<first>C</first>
<surname>Estimated-SpanFrom-Person</surname>
</name>
<eventref hlink="_cfa0879b49b7746d225" role="Primary"/>
</person>
<person handle="_d0545e25fed7da2d864" change="1431629912" id="I0066">
<gender>M</gender>
<name type="Birth Name">
<first>Zero-Month</first>
<surname>Month-Person</surname>
</name>
<eventref hlink="_d0545e83fa37336070a" role="Primary"/>
</person>
</people>
</database>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,114 +0,0 @@
fam Smith Gustaf.0 +27/11/1885 #mp R<>nne,_Bornholm,_Denmark Hansdotter Anna.1 2/10/1864 #bp L<>derup,_Malm<6C>hus_L<5F>n,_Sweden 29/9/1945 #dp Sparks,_Washoe_Co.,_NV
beg
- f Kirsti_Marie.2 15/12/1886 #bp R<>nne,_Bornholm,_Denmark 18/7/1966 #dp San_Francisco,_San_Francisco_Co.,_CA
- f Astrid_Shermanna_Augusta.3 31/1/1889 #bp R<>nne,_Bornholm,_Denmark 21/12/1963 #dp San_Francisco,_San_Francisco_Co.,_CA
- h Hjalmar.4 31/1/1893 #bp R<>nne,_Bornholm,_Denmark 25/9/1894 #dp R<>nne,_Bornholm,_Denmark
- h Hjalmar.5 7/4/1895 #bp R<>nne,_Bornholm,_Denmark 26/6/1975 #dp Reno,_Washoe_Co.,_NV
- h Gus.6 11/9/1897 #bp R<>nne,_Bornholm,_Denmark 21/10/1963 #dp San_Francisco,_San_Francisco_Co.,_CA
- h Carl_Emil.7 20/12/1899 #bp R<>nne,_Bornholm,_Denmark 28/1/1959 #dp Reno,_Washoe_Co.,_NV
- h Hans_Peter.8 17/4/1904 #bp R<>nne,_Bornholm,_Denmark 29/1/1977 #dp San_Francisco,_San_Francisco_Co.,_CA
end
notes Smith Hjalmar.5
beg
BIOGRAPHY
Hjalmar sailed from Copenhagen, Denmark on the OSCAR II, 14 November 1912 arriving in New York 27 November 1912. He was seventeen years old. On the ship passenger list his trade was listed as a Blacksmith. He came to Reno, Nevada and lived with his sister Marie for a time before settling in Sparks. He worked for Southern Pacific Railroad as a car inspector for a time, then went to work for Standard Oil
Company. He enlisted in the army at Sparks 7 December 1917 and served as a Corporal in the Medical Corp until his discharge 12 August 1919 at the Presidio in San Francisco, California. Both he and Marjorie are buried in the Masonic Memorial Gardens Mausoleum in Reno, he the 30th June 1975, and she the 25th of June 1980.
end notes
fam Smith Lloyd.9 +10/8/1958 #mp San_Francisco,_San_Francisco_Co.,_CA Green Janis_Elaine.10 2/12/1935
beg
- h Eric_Lloyd.11 28/8/1963 #bp San_Francisco,_San_Francisco_Co.,_CA
- h Keith_Lloyd.12 11/8/1966 #bp San_Francisco,_San_Francisco_Co.,_CA
- h Craig_Peter.13 >1966 #bp San_Francisco,_San_Francisco_Co.,_CA
- h The.14 Tester 29/12/1954 #bp 123_High_St,_Cleveland,_Cuyahoga,_Ohio,_USA
end
fam Smith Hans_Peter.8 + #nm Jones Lillie_Harriet.15 2/5/1910 #bp R<>nne,_Bornholm,_Denmark 26/6/1990
beg
- h Lloyd.9 13/3/1935 #bp San_Francisco,_San_Francisco_Co.,_CA
end
fam Smith Hans_Peter.8 + #nm Anderson Jennifer.16 5/11/1907 #bp R<>nne,_Bornholm,_Denmark 29/5/1985 #dp San_Francisco,_San_Francisco_Co.,_CA
fam Smith Martin.17 +~1816 #mp Gladsax,_Kristianstad_L<5F>n,_Sweden Jefferson Elna.18 14/9/1800 #bp Gladsax,_Kristianstad_L<5F>n,_Sweden #dp Sweden
beg
- f Hanna.19 29/1/1821 #bp Gladsax,_Kristianstad_L<5F>n,_Sweden 0
- f Ingar.20 >1823 #bp Gladsax,_Kristianstad_L<5F>n,_Sweden 0
- h Ingeman.21 29/1/1826 #bp Gladsax,_Kristianstad_L<5F>n,_Sweden 0
- h Martin.22 19/11/1830 #bp Gladsax,_Kristianstad_L<5F>n,_Sweden 1899..1905 #dp Sweden
end
notes Smith Martin.22
beg
BIOGRAPHY
Martin was listed as being a Husman, (owning a house as opposed to a farm) in the house records of Gladsax.
end notes
fam Nielsen Herman_Julius.23 31/8/1889 #bp R<>nne,_Bornholm,_Denmark 1945 +30/11/1912 #mp R<>nne,_Bornholm,_Denmark Smith Astrid_Shermanna_Augusta.3
beg
- h &#38634;.24 Ke_&#26607; 0
end
notes Ke_&#26607; &#38634;.24
beg
Some Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
Some Bold Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
Some Italic Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
Some Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
Some Bold Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
Some Italic Unicode Characters: &#2294;&#508;&#1024;&#1580;&#12228;&#13405;&#15691;&#22299;&#22665;&#24181;&#32863;&#32870;&#65865;&#128694;&#128712;
end notes
fam Smith Gus.6 +~1920 Michaels Evelyn.25 ~1897
fam Smith Hjalmar.5 +31/10/1927 #mp Reno,_Washoe_Co.,_NV Ohman Marjorie.26 3/6/1903 #bp Denver,_Denver_Co.,_CO,_Denver_Co.,_Colorado,_USA 22/6/1980 #dp Reno,_Washoe_Co.,_NV
beg
- h John_Hjalmar.27 30/1/1932 #bp San_Francisco,_San_Francisco_Co.,_CA
- f Marjorie_Lee.28 4/11/1934 #bp Reno,_Washoe_Co.,_NV
end
fam Smith John_Hjalmar.27 +4/6/1954 #mp Sparks,_Washoe_Co.,_NV Perkins Alice_Paula.29 22/11/1933 #bp Sparks,_Washoe_Co.,_NV
beg
- f Marjorie_Alice.30 5/2/1960 #bp San_Jose,_Santa_Clara_Co.,_CA
- h Edwin_Michael.31 24/5/1961 #bp San_Jose,_Santa_Clara_Co.,_CA
end
fam Smith Eric_Lloyd.11 +12/7/1986 #mp Woodland,_Yolo_Co.,_CA Horne Darcy.32 2/7/1966 #bp Sacramento,_Sacramento_Co.,_CA
beg
- h Lars_Peter.33 16/9/1991 #bp Santa_Rosa,_Sonoma_Co.,_CA
end
fam Smith Edwin_Michael.31 +27/5/1995 #mp San_Ramon,_Conta_Costa_Co.,_CA Adams Janice_Ann.34 26/8/1965 #bp Fremont,_Alameda_Co.,_CA
beg
- h Mason_Michael.35 26/6/1996 #bp Hayward,_Alameda_Co.,_CA
- f Amber_Marie.36 12/4/1998 #bp Hayward,_Alameda_Co.,_CA
end
fam Smith Martin.22 +~1856 Hansdotter Kerstina.37 29/11/1832 #bp Smestorp,_Kristianstad_L<5F>n,_Sweden <1908 #dp Sweden
beg
- h Magnes.38 6/10/1858 #bp Simrishamn,_Kristianstad_L<5F>n,_Sweden 20/2/1910 #dp R<>nne,_Bornholm,_Denmark
- h Emil.39 27/9/1860 #bp Simrishamn,_Kristianstad_L<5F>n,_Sweden 0
- h Gustaf.0 28/11/1862 #bp Grostorp,_Kristianstad_L<5F>n,_Sweden <23/7/1930 #dp Sparks,_Washoe_Co.,_NV
end
fam Smith Ingeman.40 ~1770 #bp Sweden 0 +~1790 #mp Sweden Ericsdotter Marta.41 ~1775 #bp Sweden 0
beg
- h Martin.17 1794..1796 #bp Tommarp,_Kristianstad_L<5F>n,_Sweden #dp Sweden
end
fam Willard Edwin.42 ~1886 +~1910 Smith Kirsti_Marie.2
fam Smith Magnes.38 +24/8/1884 #mp R<>nne,_Bornholm,_Denmark Streiffert Anna.43 23/9/1860 #bp Hoya/Jona/Hoia,_Sweden 2/2/1927 #dp R<>nne,_Bornholm,_Denmark
fam Tester The.14 + Tester Mrs.44 0
beg
- h Tom.45 0
end
notes Tester Mrs.44
beg
Address with PHON,FAX,EMAIL,WWW. attached directly to person is not legal Gedcom, but allowed here.
end notes

View File

@@ -1,518 +0,0 @@
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Anna Hansdotter
N:Hansdotter;Anna;;;
SORT-STRING:Hansdotter Anna
NICKNAME:Annanana
X-GENDER:Female
BDAY:1864-10-02
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Keith Lloyd Smith
N:Smith;Keith;Lloyd;;
SORT-STRING:Smith Keith Lloyd
X-GENDER:Male
BDAY:1966-08-11
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Hans Peter Smith
N:Smith;Hans;Peter;;
SORT-STRING:Smith Hans Peter
X-GENDER:Male
BDAY:1904-04-17
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Hanna Smith
N:Smith;Hanna;;;
SORT-STRING:Smith Hanna
X-GENDER:Female
BDAY:1821-01-29
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Herman Julius Nielsen
N:Nielsen;Herman;Julius;;
SORT-STRING:Nielsen Herman Julius
X-GENDER:Male
BDAY:1889-08-31
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Evelyn Michaels
N:Michaels;Evelyn;;;
SORT-STRING:Michaels Evelyn
X-GENDER:Female
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Marjorie Lee Smith
N:Smith;Marjorie;Lee;;
SORT-STRING:Smith Marjorie Lee
X-GENDER:Female
BDAY:1934-11-04
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Gus Smith
N:Smith;Gus;;;
SORT-STRING:Smith Gus
X-GENDER:Male
BDAY:1897-09-11
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Jennifer Anderson
N:Anderson;Jennifer;;;
SORT-STRING:Anderson Jennifer
X-GENDER:Female
BDAY:1907-11-05
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Lillie Harriet Jones
N:Jones;Lillie;Harriet;;
SORT-STRING:Jones Lillie Harriet
X-GENDER:Female
BDAY:1910-05-02
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:John Hjalmar Smith
N:Smith;John;Hjalmar;;
SORT-STRING:Smith John Hjalmar
X-GENDER:Male
BDAY:1932-01-30
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Dr. Eric Lloyd Smith
N:Smith;Eric;Lloyd;Dr.;
SORT-STRING:Smith Eric Lloyd
X-GENDER:Male
BDAY:1963-08-28
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Amber Marie Smith
N:Smith;Amber;Marie;;
SORT-STRING:Smith Amber Marie
X-GENDER:Female
BDAY:1998-04-12
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Carl Emil Smith
N:Smith;Carl;Emil;;
SORT-STRING:Smith Carl Emil
X-GENDER:Male
BDAY:1899-12-20
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Hjalmar Smith
N:Smith;Hjalmar;;;
SORT-STRING:Smith Hjalmar
X-GENDER:Male
BDAY:1893-01-31
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Martin Smith
N:Smith;Martin;;;
SORT-STRING:Smith Martin
X-GENDER:Male
BDAY:1830-11-19
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Astrid Shermanna Augusta Smith
N:Smith;Astrid;Shermanna,Augusta;;
SORT-STRING:Smith Astrid Shermanna Augusta
X-GENDER:Female
BDAY:1889-01-31
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Gustaf Smith\, Sr.
N:Smith;Gustaf;;;Sr.
SORT-STRING:Smith Gustaf Sr.
X-GENDER:Male
BDAY:1862-11-28
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Marta Ericsdotter
N:Ericsdotter;Marta;;;
SORT-STRING:Ericsdotter Marta
X-GENDER:Female
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Kirsti Marie Smith
N:Smith;Kirsti;Marie;;
SORT-STRING:Smith Kirsti Marie
X-GENDER:Female
BDAY:1886-12-15
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Ingeman Smith
N:Smith;Ingeman;;;
SORT-STRING:Smith Ingeman
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Anna Streiffert
N:Streiffert;Anna;;;
SORT-STRING:Streiffert Anna
X-GENDER:Female
BDAY:1860-09-23
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Craig Peter Smith
N:Smith;Craig;Peter;;
SORT-STRING:Smith Craig Peter
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Magnes Smith
N:Smith;Magnes;;;
SORT-STRING:Smith Magnes
X-GENDER:Male
BDAY:1858-10-06
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Janice Ann Adams
N:Adams;Janice;Ann;;
SORT-STRING:Adams Janice Ann
X-GENDER:Female
BDAY:1965-08-26
ROLE:Retail Manager
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Marjorie Ohman
N:Ohman;Marjorie;;;
SORT-STRING:Ohman Marjorie
X-GENDER:Female
BDAY:1903-06-03
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Darcy Horne
N:Horne;Darcy;;;
SORT-STRING:Horne Darcy
X-GENDER:Female
BDAY:1966-07-02
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Lloyd Smith
N:Smith;Lloyd;;;
SORT-STRING:Smith Lloyd
X-GENDER:Male
BDAY:1935-03-13
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Alice Paula Perkins
N:Perkins;Alice;Paula;;
SORT-STRING:Perkins Alice Paula
X-GENDER:Female
BDAY:1933-11-22
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Lars Peter Smith
N:Smith;Lars;Peter;;
SORT-STRING:Smith Lars Peter
X-GENDER:Male
BDAY:1991-09-16
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Elna Jefferson
N:Jefferson;Elna;;;
SORT-STRING:Jefferson Elna
X-GENDER:Female
BDAY:1800-09-14
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Edwin Michael Smith
N:Smith;Edwin;Michael;;
SORT-STRING:Smith Edwin Michael
X-GENDER:Male
BDAY:1961-05-24
ROLE:Software Engineer
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Kerstina Hansdotter
N:Hansdotter;Kerstina;;;
SORT-STRING:Hansdotter Kerstina
X-GENDER:Female
BDAY:1832-11-29
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Martin Smith
N:Smith;Martin;;;
SORT-STRING:Smith Martin
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Ingeman Smith
N:Smith;Ingeman;;;
SORT-STRING:Smith Ingeman
X-GENDER:Male
BDAY:1826-01-29
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Marjorie Alice Smith
N:Smith;Marjorie;Alice;;
SORT-STRING:Smith Marjorie Alice
X-GENDER:Female
BDAY:1960-02-05
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Janis Elaine Green
N:Green;Janis;Elaine;;
SORT-STRING:Green Janis Elaine
X-GENDER:Female
BDAY:1935-12-02
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Mason Michael Smith
N:Smith;Mason;Michael;;
SORT-STRING:Smith Mason Michael
X-GENDER:Male
BDAY:1996-06-26
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Edwin Willard
N:Willard;Edwin;;;
SORT-STRING:Willard Edwin
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Ingar Smith
N:Smith;Ingar;;;
SORT-STRING:Smith Ingar
X-GENDER:Female
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Hjalmar Smith
N:Smith;Hjalmar;;;
SORT-STRING:Smith Hjalmar
X-GENDER:Male
BDAY:1895-04-07
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Emil Smith
N:Smith;Emil;;;
SORT-STRING:Smith Emil
X-GENDER:Male
BDAY:1860-09-27
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:雪 Ke 柯
N:Ke 柯;雪;;;
SORT-STRING:Ke 柯 雪
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:ピーター リチミシキスイミ
N:リチミシキスイミ;ピーター;;;
SORT-STRING:リチミシキスイミ ピーター
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:The Tester
N:Tester;The;;;
SORT-STRING:Tester The
X-GENDER:Male
BDAY:1954-12-29
ADR:;;;Akron;OH;44177;Cuyahoga
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Mrs Tester
N:Tester;Mrs;;;
SORT-STRING:Tester Mrs
X-GENDER:Female
ADR:;;123 Main St.;Winslow;PA;12345;
URL:440-871-3401
URL:800-871-3401
EMAIL:mrstester@gmail.com
URL:440-321-4568
URL:http://mrstester.com
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Tom Von Tester y tested
N:Von Tester y,tested;Tom;;;
SORT-STRING:Tester Tom
NICKNAME:TesterNickname
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Fake person Fake von Person\, I
N:von Person;Person;Fake;Fake,person;I
SORT-STRING:Person Fake I
NICKNAME:Fake
ADR:;;8888 Cliff Dr;Bay Village;Ohio;44140;Cuyahoga
TEL:440-871-3400
URL:ftp://whoknows.org
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Mary Tester
N:Tester;Mary;;;
SORT-STRING:Tester Mary
X-GENDER:Female
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Martha Tester
N:Tester;Martha;;;
SORT-STRING:Tester Martha
X-GENDER:Female
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:John Tester
N:Tester;John;;;
SORT-STRING:Tester John
X-GENDER:Male
END:VCARD
BEGIN:VCARD
VERSION:3.0
PRODID:-//Gramps//NONSGML Gramps 5.0.0-alpha1//EN
FN:Mark Tester
N:Tester;Mark;;;
SORT-STRING:Tester Mark
X-GENDER:Male
END:VCARD

View File

@@ -1,856 +0,0 @@
BEGIN:VCALENDAR
PRODID:-//GNU//Gramps//EN
VERSION:1.0
BEGIN:VEVENT
SUMMARY:Birth of Hansdotter, Anna
LOCATION:L<>derup, Malm<6C>hus L<>n, Sweden
DTSTART:18641002T000001
DTEND:18641002T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Hansdotter, Anna
LOCATION:L<>derup, Malm<6C>hus L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20161002T000001
DTEND:20161002T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Hansdotter, Anna
LOCATION:Sparks, Washoe Co., NV
DTSTART:19450929T000001
DTEND:19450929T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Hansdotter, Anna
LOCATION:Sparks, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20160929T000001
DTEND:20160929T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Keith Lloyd
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19660811T000001
DTEND:19660811T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Keith Lloyd
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160811T000001
DTEND:20160811T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Hans Peter
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19040417T000001
DTEND:19040417T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Hans Peter
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160417T000001
DTEND:20160417T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Hans Peter
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19770129T000001
DTEND:19770129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Hans Peter
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160129T000001
DTEND:20160129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Hanna
LOCATION:Gladsax, Kristianstad L<>n, Sweden
DTSTART:18210129T000001
DTEND:18210129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Hanna
LOCATION:Gladsax, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20160129T000001
DTEND:20160129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Nielsen, Herman Julius
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18890831T000001
DTEND:18890831T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Nielsen, Herman Julius
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160831T000001
DTEND:20160831T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Marjorie Lee
LOCATION:Reno, Washoe Co., NV
DTSTART:19341104T000001
DTEND:19341104T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Marjorie Lee
LOCATION:Reno, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20161104T000001
DTEND:20161104T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Gus
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18970911T000001
DTEND:18970911T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Gus
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160911T000001
DTEND:20160911T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Gus
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19631021T000001
DTEND:19631021T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Gus
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20161021T000001
DTEND:20161021T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Anderson, Jennifer
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19071105T000001
DTEND:19071105T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Anderson, Jennifer
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20161105T000001
DTEND:20161105T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Anderson, Jennifer
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19850529T000001
DTEND:19850529T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Anderson, Jennifer
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160529T000001
DTEND:20160529T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Jones, Lillie Harriet
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19100502T000001
DTEND:19100502T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Jones, Lillie Harriet
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160502T000001
DTEND:20160502T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Jones, Lillie Harriet
DTSTART:19900626T000001
DTEND:19900626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Jones, Lillie Harriet
RRULE:FREQ=YEARLY
DTSTART:20160626T000001
DTEND:20160626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, John Hjalmar
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19320130T000001
DTEND:19320130T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, John Hjalmar
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160130T000001
DTEND:20160130T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Eric Lloyd
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19630828T000001
DTEND:19630828T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Eric Lloyd
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160828T000001
DTEND:20160828T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Amber Marie
LOCATION:Hayward, Alameda Co., CA
DTSTART:19980412T000001
DTEND:19980412T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Amber Marie
LOCATION:Hayward, Alameda Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160412T000001
DTEND:20160412T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Carl Emil
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18991220T000001
DTEND:18991220T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Carl Emil
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20161220T000001
DTEND:20161220T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Carl Emil
LOCATION:Reno, Washoe Co., NV
DTSTART:19590128T000001
DTEND:19590128T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Carl Emil
LOCATION:Reno, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20160128T000001
DTEND:20160128T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18930131T000001
DTEND:18930131T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160131T000001
DTEND:20160131T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18940925T000001
DTEND:18940925T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160925T000001
DTEND:20160925T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Martin
LOCATION:Gladsax, Kristianstad L<>n, Sweden
DTSTART:18301119T000001
DTEND:18301119T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Martin
LOCATION:Gladsax, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20161119T000001
DTEND:20161119T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Astrid Shermanna Augusta
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18890131T000001
DTEND:18890131T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Astrid Shermanna Augusta
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160131T000001
DTEND:20160131T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Astrid Shermanna Augusta
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19631221T000001
DTEND:19631221T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Astrid Shermanna Augusta
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20161221T000001
DTEND:20161221T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Gustaf Sr.
LOCATION:Grostorp, Kristianstad L<>n, Sweden
DTSTART:18621128T000001
DTEND:18621128T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Gustaf Sr.
LOCATION:Grostorp, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20161128T000001
DTEND:20161128T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Kirsti Marie
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18861215T000001
DTEND:18861215T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Kirsti Marie
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20161215T000001
DTEND:20161215T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Kirsti Marie
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19660718T000001
DTEND:19660718T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Kirsti Marie
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160718T000001
DTEND:20160718T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Streiffert, Anna
LOCATION:Hoya/Jona/Hoia, Sweden
DTSTART:18600923T000001
DTEND:18600923T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Streiffert, Anna
LOCATION:Hoya/Jona/Hoia, Sweden
RRULE:FREQ=YEARLY
DTSTART:20160923T000001
DTEND:20160923T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Streiffert, Anna
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19270202T000001
DTEND:19270202T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Streiffert, Anna
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160202T000001
DTEND:20160202T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Magnes
LOCATION:Simrishamn, Kristianstad L<>n, Sweden
DTSTART:18581006T000001
DTEND:18581006T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Magnes
LOCATION:Simrishamn, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20161006T000001
DTEND:20161006T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Magnes
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19100220T000001
DTEND:19100220T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Magnes
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160220T000001
DTEND:20160220T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Adams, Janice Ann
LOCATION:Fremont, Alameda Co., CA
DTSTART:19650826T000001
DTEND:19650826T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Adams, Janice Ann
LOCATION:Fremont, Alameda Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160826T000001
DTEND:20160826T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Ohman, Marjorie
LOCATION:Denver, Denver Co., CO, Denver Co., Colorado, USA
DTSTART:19030603T000001
DTEND:19030603T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Ohman, Marjorie
LOCATION:Denver, Denver Co., CO, Denver Co., Colorado, USA
RRULE:FREQ=YEARLY
DTSTART:20160603T000001
DTEND:20160603T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Ohman, Marjorie
LOCATION:Reno, Washoe Co., NV
DTSTART:19800622T000001
DTEND:19800622T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Ohman, Marjorie
LOCATION:Reno, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20160622T000001
DTEND:20160622T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Horne, Darcy
LOCATION:Sacramento, Sacramento Co., CA
DTSTART:19660702T000001
DTEND:19660702T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Horne, Darcy
LOCATION:Sacramento, Sacramento Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160702T000001
DTEND:20160702T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Perkins, Alice Paula
LOCATION:Sparks, Washoe Co., NV
DTSTART:19331122T000001
DTEND:19331122T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Perkins, Alice Paula
LOCATION:Sparks, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20161122T000001
DTEND:20161122T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Lars Peter
LOCATION:Santa Rosa, Sonoma Co., CA
DTSTART:19910916T000001
DTEND:19910916T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Lars Peter
LOCATION:Santa Rosa, Sonoma Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160916T000001
DTEND:20160916T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Ingeman
LOCATION:Gladsax, Kristianstad L<>n, Sweden
DTSTART:18260129T000001
DTEND:18260129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Ingeman
LOCATION:Gladsax, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20160129T000001
DTEND:20160129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Lloyd
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19350313T000001
DTEND:19350313T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Lloyd
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160313T000001
DTEND:20160313T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Jefferson, Elna
LOCATION:Gladsax, Kristianstad L<>n, Sweden
DTSTART:18000914T000001
DTEND:18000914T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Jefferson, Elna
LOCATION:Gladsax, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20160914T000001
DTEND:20160914T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Edwin Michael
LOCATION:San Jose, Santa Clara Co., CA
DTSTART:19610524T000001
DTEND:19610524T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Edwin Michael
LOCATION:San Jose, Santa Clara Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160524T000001
DTEND:20160524T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Hansdotter, Kerstina
LOCATION:Smestorp, Kristianstad L<>n, Sweden
DTSTART:18321129T000001
DTEND:18321129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Hansdotter, Kerstina
LOCATION:Smestorp, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20161129T000001
DTEND:20161129T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Marjorie Alice
LOCATION:San Jose, Santa Clara Co., CA
DTSTART:19600205T000001
DTEND:19600205T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Marjorie Alice
LOCATION:San Jose, Santa Clara Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160205T000001
DTEND:20160205T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Green, Janis Elaine
DTSTART:19351202T000001
DTEND:19351202T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Green, Janis Elaine
RRULE:FREQ=YEARLY
DTSTART:20161202T000001
DTEND:20161202T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Mason Michael
LOCATION:Hayward, Alameda Co., CA
DTSTART:19960626T000001
DTEND:19960626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Mason Michael
LOCATION:Hayward, Alameda Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160626T000001
DTEND:20160626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18950407T000001
DTEND:18950407T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Hjalmar
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160407T000001
DTEND:20160407T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Death of Smith, Hjalmar
LOCATION:Reno, Washoe Co., NV
DTSTART:19750626T000001
DTEND:19750626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Death of Smith, Hjalmar
LOCATION:Reno, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20160626T000001
DTEND:20160626T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Smith, Emil
LOCATION:Simrishamn, Kristianstad L<>n, Sweden
DTSTART:18600927T000001
DTEND:18600927T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Smith, Emil
LOCATION:Simrishamn, Kristianstad L<>n, Sweden
RRULE:FREQ=YEARLY
DTSTART:20160927T000001
DTEND:20160927T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Birth of Tester, The
LOCATION:123 High St, Cleveland, Cuyahoga, Ohio, USA
DTSTART:19541229T000001
DTEND:19541229T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Birth of Tester, The
LOCATION:123 High St, Cleveland, Cuyahoga, Ohio, USA
RRULE:FREQ=YEARLY
DTSTART:20161229T000001
DTEND:20161229T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Gustaf Sr. and Hansdotter, Anna
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18851127T000001
DTEND:18851127T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Gustaf Sr. and Hansdotter, Anna
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20161127T000001
DTEND:20161127T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Lloyd and Green, Janis Elaine
LOCATION:San Francisco, San Francisco Co., CA
DTSTART:19580810T000001
DTEND:19580810T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Lloyd and Green, Janis Elaine
LOCATION:San Francisco, San Francisco Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160810T000001
DTEND:20160810T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Nielsen, Herman Julius and Smith, Astrid Shermanna Augusta
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:19121130T000001
DTEND:19121130T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Nielsen, Herman Julius and Smith, Astrid Shermanna Augusta
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20161130T000001
DTEND:20161130T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Hjalmar and Ohman, Marjorie
LOCATION:Reno, Washoe Co., NV
DTSTART:19271031T000001
DTEND:19271031T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Hjalmar and Ohman, Marjorie
LOCATION:Reno, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20161031T000001
DTEND:20161031T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, John Hjalmar and Perkins, Alice Paula
LOCATION:Sparks, Washoe Co., NV
DTSTART:19540604T000001
DTEND:19540604T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, John Hjalmar and Perkins, Alice Paula
LOCATION:Sparks, Washoe Co., NV
RRULE:FREQ=YEARLY
DTSTART:20160604T000001
DTEND:20160604T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Eric Lloyd and Horne, Darcy
LOCATION:Woodland, Yolo Co., CA
DTSTART:19860712T000001
DTEND:19860712T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Eric Lloyd and Horne, Darcy
LOCATION:Woodland, Yolo Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160712T000001
DTEND:20160712T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Edwin Michael and Adams, Janice Ann
LOCATION:San Ramon, Conta Costa Co., CA
DTSTART:19950527T000001
DTEND:19950527T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Edwin Michael and Adams, Janice Ann
LOCATION:San Ramon, Conta Costa Co., CA
RRULE:FREQ=YEARLY
DTSTART:20160527T000001
DTEND:20160527T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Marriage of Smith, Magnes and Streiffert, Anna
LOCATION:R<>nne, Bornholm, Denmark
DTSTART:18840824T000001
DTEND:18840824T235959
END:VEVENT
BEGIN:VEVENT
SUMMARY:Anniversary: Marriage of Smith, Magnes and Streiffert, Anna
LOCATION:R<>nne, Bornholm, Denmark
RRULE:FREQ=YEARLY
DTSTART:20160824T000001
DTEND:20160824T235959
END:VEVENT
END:VCALENDAR

View File

@@ -1,47 +0,0 @@
Anna Hansdotter;;;;;2/10/1864-29/9/1945
Keith Lloyd Smith;Lloyd Smith;Janis Green;;;11/8/1966
Hans Peter Smith;Gustaf Smith;Anna Hansdotter;;;17/4/1904-29/1/1977
Hanna Smith;Martin Smith0;Elna Jefferson;;;29/1/1821
Herman Julius Nielsen;;;;;31/8/1889-1945
Evelyn Michaels;;;;;1897
Marjorie Lee Smith;Hjalmar Smith0;Marjorie Ohman;;;4/11/1934
Gus Smith;Gustaf Smith;Anna Hansdotter;;;11/9/1897-21/10/1963
Jennifer Anderson;;;;;5/11/1907-29/5/1985
Lillie Harriet Jones;;;;;2/5/1910-26/6/1990
John Hjalmar Smith;Hjalmar Smith0;Marjorie Ohman;;;30/1/1932
Eric Lloyd Smith;Lloyd Smith;Janis Green;;;28/8/1963
Amber Marie Smith;Edwin Smith;Janice Adams;;;12/4/1998
Carl Emil Smith;Gustaf Smith;Anna Hansdotter;;;20/12/1899-28/1/1959
Hjalmar Smith;Gustaf Smith;Anna Hansdotter;;;31/1/1893-25/9/1894
Martin Smith;Martin Smith0;Elna Jefferson;;;19/11/1830-1899
Astrid Shermanna Augusta Smith;Gustaf Smith;Anna Hansdotter;;;31/1/1889-21/12/1963
Gustaf Smith, Sr.;Martin Smith;Kerstina Hansdotter;;;28/11/1862-23/7/1930
Marta Ericsdotter;;;;;1775
Kirsti Marie Smith;Gustaf Smith;Anna Hansdotter;;;15/12/1886-18/7/1966
Ingeman Smith;;;;;1770
Anna Streiffert;;;;;23/9/1860-2/2/1927
Craig Peter Smith;Lloyd Smith;Janis Green;;;1966
Magnes Smith;Martin Smith;Kerstina Hansdotter;;;6/10/1858-20/2/1910
Janice Ann Adams;;;;;26/8/1965
Marjorie Ohman;;;;;3/6/1903-22/6/1980
Darcy Horne;;;;;2/7/1966
Alice Paula Perkins;;;;;22/11/1933
Lars Peter Smith;Eric Smith;Darcy Horne;;;16/9/1991
Ingeman Smith0;Martin Smith0;Elna Jefferson;;;29/1/1826
Lloyd Smith;Hans Smith;Lillie Jones;;;13/3/1935
Elna Jefferson;;;;;14/9/1800-
Edwin Michael Smith;John Smith;Alice Perkins;;;24/5/1961
Kerstina Hansdotter;;;;;29/11/1832-1908
Martin Smith0;Ingeman Smith;Marta Ericsdotter;;;1794-
Marjorie Alice Smith0;John Smith;Alice Perkins;;;5/2/1960
Janis Elaine Green;;;;;2/12/1935
Mason Michael Smith;Edwin Smith;Janice Adams;;;26/6/1996
Edwin Willard;;;;;1886
Ingar Smith;Martin Smith0;Elna Jefferson;;;1823
Hjalmar Smith0;Gustaf Smith;Anna Hansdotter;;;7/4/1895-26/6/1975
Emil Smith;Martin Smith;Kerstina Hansdotter;;;27/9/1860
雪 Ke 柯;Herman Nielsen;Astrid Smith;;;
The Tester;Lloyd Smith;Janis Green;;;29/12/1954
Mrs Tester;;;;;
ピーター リチミシキスイミ;;;;;
Tom Tester;The Tester;Mrs Tester;;;

View File

@@ -1,123 +0,0 @@
Place,Title,Name,Type,Latitude,Longitude,Code,Enclosed_by,Date
[P0000],"Löderup, Malmöhus Län, Sweden","Löderup, Malmöhus Län, Sweden",Unknown,,,,,
[P0001],"Sparks, Washoe Co., NV","Sparks, Washoe Co., NV",Unknown,,,,,
[P0002],"San Francisco, San Francisco Co., CA","San Francisco, San Francisco Co., CA",Unknown,,,,,
[P0003],"Rønne, Bornholm, Denmark","Rønne, Bornholm, Denmark",Unknown,,,,,
[P0004],"Gladsax, Kristianstad Län, Sweden","Gladsax, Kristianstad Län, Sweden",Unknown,,,,,
[P0005],"Reno, Washoe Co., NV","Reno, Washoe Co., NV",Unknown,,,,,
[P0006],"Hayward, Alameda Co., CA","Hayward, Alameda Co., CA",Unknown,,,,,
[P0007],"Community Presbyterian Church, Danville, CA","Community Presbyterian Church, Danville, CA",Unknown,,,,,
[P0008],Sweden,Sweden,Unknown,,,,,
[P0009],"Grostorp, Kristianstad Län, Sweden","Grostorp, Kristianstad Län, Sweden",Unknown,,,,,
[P0010],"Copenhagen, Denmark","Copenhagen, Denmark",Unknown,,,,,
[P0011],"Hoya/Jona/Hoia, Sweden","Hoya/Jona/Hoia, Sweden",Unknown,,,,,
[P0012],"Simrishamn, Kristianstad Län, Sweden","Simrishamn, Kristianstad Län, Sweden",Unknown,,,,,
[P0013],"Fremont, Alameda Co., CA","Fremont, Alameda Co., CA",Unknown,,,,,
[P0016],"Santa Rosa, Sonoma Co., CA","Santa Rosa, Sonoma Co., CA",Unknown,,,,,
[P0017],"San Jose, Santa Clara Co., CA","San Jose, Santa Clara Co., CA",Unknown,,,,,
[P0018],UC Berkeley,UC Berkeley,Unknown,,,,,
[P0019],"Smestorp, Kristianstad Län, Sweden","Smestorp, Kristianstad Län, Sweden",Unknown,,,,,
[P0020],"Tommarp, Kristianstad Län, Sweden","Tommarp, Kristianstad Län, Sweden",Unknown,,,,,
[P0021],"Rønne Bornholm, Denmark","Rønne Bornholm, Denmark",Unknown,,,,,
[P0022],"Woodland, Yolo Co., CA","Woodland, Yolo Co., CA",Unknown,,,,,
[P0023],"San Ramon, Conta Costa Co., CA","San Ramon, Conta Costa Co., CA",Unknown,,,,,
[P0026],United States of America,USA,Country,,,,,
[P0028],"California, USA",California,State,,,,[P0026],2016-06-04
[P0025],"Colorado, USA",Colorado,State,,,,[P0026],
[P0027],"Sacramento Co., California, USA",Sacramento Co.,County,,,,[P0028],2016-06-01
[P0015],"Sacramento, Sacramento Co., CA","Sacramento, Sacramento Co., CA",City,,,,[P0027],2016-06-04
[P0024],"Denver Co., Colorado, USA",Denver Co.,County,,,,[P0025],
[P0014],"Denver, Denver Co., CO","Denver, Denver Co., CO",City,39.7392,104.9903 W,,[P0024],
Person,Surname,Given,Call,Suffix,Prefix,Title,Gender,Birth date,Birth place,Birth source,Baptism date,Baptism place,Baptism source,Death date,Death place,Death source,Burial date,Burial place,Burial source,Note
[I0030],Adams,Janice Ann,,,,,female,26 Aug 1965,"Fremont, Alameda Co., CA",,,,,,,,,,,
[I0016],Anderson,Jennifer,,,,,female,5 Nov 1907,"Rønne, Bornholm, Denmark",,,,,29 May 1985,"San Francisco, San Francisco Co., CA",,,,,
[I0025],Ericsdotter,Marta,,,,,female,about 1775,Sweden,,,,,,,,,,,
[I0041],Green,Janis Elaine,,,,,female,2 Dec 1935,,,,,,,,,,,,
[I0000],Hansdotter,Anna,,,,,female,2 Oct 1864,"Löderup, Malmöhus Län, Sweden",,,,,29 Sep 1945,"Sparks, Washoe Co., NV",,,,,
[I0038],Hansdotter,Kerstina,,,,,female,29 Nov 1832,"Smestorp, Kristianstad Län, Sweden",,,,,before 1908,Sweden,,,,,
[I0032],Horne,Darcy,,,,,female,2 Jul 1966,"Sacramento, Sacramento Co., CA",,,,,,,,,,,
[I0036],Jefferson,Elna,,,,,female,14 Sep 1800,"Gladsax, Kristianstad Län, Sweden",,,,,,Sweden,,,,,
[I0017],Jones,Lillie Harriet,,,,,female,2 May 1910,"Rønne, Bornholm, Denmark",,,,,26 Jun 1990,,,,,,
[I0042],Ke 柯,,,,,,male,,,,,,,,,,,,,
[I0013],Michaels,Evelyn,,,,,female,about 1897,,,,,,,,,,,,
[I0012],Nielsen,Herman Julius,,,,,male,31 Aug 1889,"Rønne, Bornholm, Denmark",,,,,1945,,,,,,
[I0031],Ohman,Marjorie,,,,,female,3 Jun 1903,"Denver, Denver Co., CO, Denver Co., Colorado, USA",,,,,22 Jun 1980,"Reno, Washoe Co., NV",,,,,
[I0034],Perkins,Alice Paula,,,,,female,22 Nov 1933,"Sparks, Washoe Co., NV",,,,,,,,,,,
[I0002],Smith,Amber Marie,,,,,female,12 Apr 1998,"Hayward, Alameda Co., CA",,,,,,,,,,,
[I0023],Smith,Astrid Shermanna Augusta,,,,,female,31 Jan 1889,"Rønne, Bornholm, Denmark",,,,,21 Dec 1963,"San Francisco, San Francisco Co., CA",,,,,
[I0020],Smith,Carl Emil,,,,,male,20 Dec 1899,"Rønne, Bornholm, Denmark",,,,,28 Jan 1959,"Reno, Washoe Co., NV",,,,,
[I0029],Smith,Craig Peter,,,,,male,after 1966,"San Francisco, San Francisco Co., CA",,,,,,,,,,,
[I0037],Smith,Edwin Michael,,,,,male,24 May 1961,"San Jose, Santa Clara Co., CA","Birth, Death and Marriage Records",,,,,,,,,,
[I0009],Smith,Emil,,,,,male,27 Sep 1860,"Simrishamn, Kristianstad Län, Sweden",,,,,,,,,,,
[I0019],Smith,Eric Lloyd,,,,Dr.,male,28 Aug 1963,"San Francisco, San Francisco Co., CA",,,,,,,,,,,
[I0015],Smith,Gus,,,,,male,11 Sep 1897,"Rønne, Bornholm, Denmark",,,,,21 Oct 1963,"San Francisco, San Francisco Co., CA",,,,,
[I0024],Smith,Gustaf,,Sr.,,,male,28 Nov 1862,"Grostorp, Kristianstad Län, Sweden",,,,,before 23 Jul 1930,"Sparks, Washoe Co., NV",,,,,
[I0011],Smith,Hanna,,,,,female,29 Jan 1821,"Gladsax, Kristianstad Län, Sweden",,,,,,,,,,,
[I0010],Smith,Hans Peter,,,,,male,17 Apr 1904,"Rønne, Bornholm, Denmark",Birth Records,,,,29 Jan 1977,"San Francisco, San Francisco Co., CA",,5 Feb 1977,"San Francisco, San Francisco Co., CA",findagrave.com,
[I0021],Smith,Hjalmar,,,,,male,31 Jan 1893,"Rønne, Bornholm, Denmark",,,,,25 Sep 1894,"Rønne, Bornholm, Denmark",,,,,
[I0008],Smith,Hjalmar,,,,,male,7 Apr 1895,"Rønne, Bornholm, Denmark",,3 Jun 1895,"Rønne Bornholm, Denmark",,26 Jun 1975,"Reno, Washoe Co., NV",,,,,
[I0007],Smith,Ingar,,,,,female,after 1823,"Gladsax, Kristianstad Län, Sweden",,,,,,,,,,,
[I0027],Smith,Ingeman,,,,,male,about 1770,Sweden,,,,,,,,,,,
[I0004],Smith,Ingeman,,,,,male,29 Jan 1826,"Gladsax, Kristianstad Län, Sweden",,,,,,,,,,,
[I0018],Smith,John Hjalmar,,,,,male,30 Jan 1932,"San Francisco, San Francisco Co., CA",,,,,,,,,,,
[I0001],Smith,Keith Lloyd,,,,,male,11 Aug 1966,"San Francisco, San Francisco Co., CA",,,,,,,,,,,
[I0026],Smith,Kirsti Marie,,,,,female,15 Dec 1886,"Rønne, Bornholm, Denmark",,,,,18 Jul 1966,"San Francisco, San Francisco Co., CA",,,,,
[I0035],Smith,Lars Peter,,,,,male,16 Sep 1991,"Santa Rosa, Sonoma Co., CA",,,,,,,,,,,
[I0033],Smith,Lloyd,,,,,male,13 Mar 1935,"San Francisco, San Francisco Co., CA",,,,,,,,,,,
[I0003],Smith,Magnes,,,,,male,6 Oct 1858,"Simrishamn, Kristianstad Län, Sweden",,,,,20 Feb 1910,"Rønne, Bornholm, Denmark",,,,,
[I0040],Smith,Marjorie Alice,,,,,female,5 Feb 1960,"San Jose, Santa Clara Co., CA",,,,,,,,,,,
[I0014],Smith,Marjorie Lee,,,,,female,4 Nov 1934,"Reno, Washoe Co., NV",,,,,,,,,,,
[I0022],Smith,Martin,,,,,male,19 Nov 1830,"Gladsax, Kristianstad Län, Sweden",,23 Nov 1830,"Gladsax, Kristianstad Län, Sweden",,between 1899 and 1905,Sweden,,,,,
[I0039],Smith,Martin,,,,,male,between 1794 and 1796,"Tommarp, Kristianstad Län, Sweden",,,,,,Sweden,,,,,
[I0005],Smith,Mason Michael,,,,,male,26 Jun 1996,"Hayward, Alameda Co., CA",,,,,,,,,,,
[I0028],Streiffert,Anna,,,,,female,23 Sep 1860,"Hoya/Jona/Hoia, Sweden",,,,,2 Feb 1927,"Rønne, Bornholm, Denmark",,,,,
[I0006],Willard,Edwin,,,,,male,about 1886,,,,,,,,,,,,
[I0043],リチミシキスイミ,ピーター,,,,,male,,,,,,,,,,,,,
Marriage,Husband,Wife,Date,Place,Source,Note
[F0000],[I0039],[I0036],about 1816,"Gladsax, Kristianstad Län, Sweden",,
[F0001],[I0027],[I0025],about 1790,Sweden,,
[F0002],[I0022],[I0038],about 1856,,,
[F0003],[I0024],[I0000],27 Nov 1885,"Rønne, Bornholm, Denmark",,
[F0004],[I0006],[I0026],about 1910,,,
[F0005],[I0012],[I0023],30 Nov 1912,"Rønne, Bornholm, Denmark",,
[F0006],[I0008],[I0031],31 Oct 1927,"Reno, Washoe Co., NV",,
[F0007],[I0015],[I0013],about 1920,,,
[F0008],[I0033],[I0041],10 Aug 1958,"San Francisco, San Francisco Co., CA",,
[F0009],[I0010],[I0017],,,,
[F0010],[I0019],[I0032],12 Jul 1986,"Woodland, Yolo Co., CA",,
[F0011],[I0003],[I0028],24 Aug 1884,"Rønne, Bornholm, Denmark",,
[F0012],[I0018],[I0034],4 Jun 1954,"Sparks, Washoe Co., NV",Marriage Certificae,
[F0013],[I0037],[I0030],27 May 1995,"San Ramon, Conta Costa Co., CA",,
[F0014],[I0010],[I0016],,,,
Family,Child
[F0000],[I0011]
[F0000],[I0007]
[F0000],[I0004]
[F0000],[I0022]
[F0001],[I0039]
[F0002],[I0003]
[F0002],[I0009]
[F0002],[I0024]
[F0003],[I0026]
[F0003],[I0023]
[F0003],[I0021]
[F0003],[I0008]
[F0003],[I0015]
[F0003],[I0020]
[F0003],[I0010]
[F0005],[I0042]
[F0006],[I0018]
[F0006],[I0014]
[F0008],[I0019]
[F0008],[I0001]
[F0008],[I0029]
[F0009],[I0033]
[F0010],[I0035]
[F0012],[I0040]
[F0012],[I0037]
[F0013],[I0005]
[F0013],[I0002]
Can't render this file because it has a wrong number of fields in line 32.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,926 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-05-24" version="GrampsAIO64-4.2.1-2"/>
<researcher>
<resname>/H. Eichmann/</resname>
<resaddr>email: h.eichmann@@gmx.de</resaddr>
</researcher>
</header>
<events>
<event handle="_0000000500000005" change="1464096763" id="E0000">
<type>Birth</type>
<place hlink="_0000000600000006"/>
</event>
<event handle="_0000000700000007" change="1464096763" id="E0001">
<type>Death</type>
<place hlink="_0000000800000008"/>
</event>
<event handle="_0000000a0000000a" change="1464096763" id="E0002">
<type>Birth</type>
<place hlink="_0000000b0000000b"/>
</event>
<event handle="_0000000c0000000c" change="1464096763" id="E0003">
<type>Death</type>
<place hlink="_0000000d0000000d"/>
</event>
<event handle="_0000000f0000000f" change="1464096763" id="E0004">
<type>Birth</type>
<place hlink="_0000001000000010"/>
</event>
<event handle="_0000001100000011" change="1464096763" id="E0005">
<type>Death</type>
<place hlink="_0000001200000012"/>
</event>
<event handle="_0000001400000014" change="1464096763" id="E0006">
<type>Birth</type>
<place hlink="_0000001500000015"/>
</event>
<event handle="_0000001600000016" change="1464096763" id="E0007">
<type>Death</type>
<place hlink="_0000001700000017"/>
</event>
<event handle="_0000001900000019" change="1464096763" id="E0008">
<type>Birth</type>
<place hlink="_0000001a0000001a"/>
</event>
<event handle="_0000001b0000001b" change="1464096763" id="E0009">
<type>Death</type>
<place hlink="_0000001c0000001c"/>
</event>
<event handle="_0000001e0000001e" change="1464096763" id="E0010">
<type>Birth</type>
<place hlink="_0000001f0000001f"/>
</event>
<event handle="_0000002000000020" change="1464096763" id="E0011">
<type>Death</type>
<place hlink="_0000002100000021"/>
</event>
<event handle="_0000002300000023" change="1464096763" id="E0012">
<type>Birth</type>
<place hlink="_0000002400000024"/>
</event>
<event handle="_0000002500000025" change="1464096763" id="E0013">
<type>Death</type>
<place hlink="_0000002600000026"/>
</event>
<event handle="_0000002800000028" change="1464096763" id="E0014">
<type>Birth</type>
<place hlink="_0000002900000029"/>
</event>
<event handle="_0000002a0000002a" change="1464096763" id="E0015">
<type>Death</type>
<place hlink="_0000002b0000002b"/>
</event>
<event handle="_0000002d0000002d" change="1464096763" id="E0016">
<type>Birth</type>
<place hlink="_0000002e0000002e"/>
</event>
<event handle="_0000002f0000002f" change="1464096763" id="E0017">
<type>Death</type>
<place hlink="_0000003000000030"/>
</event>
<event handle="_0000003200000032" change="1464096763" id="E0018">
<type>Birth</type>
<place hlink="_0000003300000033"/>
</event>
<event handle="_0000003400000034" change="1464096763" id="E0019">
<type>Death</type>
<place hlink="_0000003500000035"/>
</event>
<event handle="_0000003700000037" change="1464096763" id="E0020">
<type>Birth</type>
<place hlink="_0000003800000038"/>
</event>
<event handle="_0000003900000039" change="1464096763" id="E0021">
<type>Death</type>
<place hlink="_0000003a0000003a"/>
</event>
<event handle="_0000003c0000003c" change="1464096763" id="E0022">
<type>Birth</type>
<place hlink="_0000003d0000003d"/>
</event>
<event handle="_0000003e0000003e" change="1464096763" id="E0023">
<type>Death</type>
<place hlink="_0000003f0000003f"/>
</event>
<event handle="_0000004100000041" change="1464096763" id="E0024">
<type>Birth</type>
<place hlink="_0000004200000042"/>
</event>
<event handle="_0000004300000043" change="1464096763" id="E0025">
<type>Death</type>
<place hlink="_0000004400000044"/>
</event>
<event handle="_0000004600000046" change="1464096763" id="E0026">
<type>Birth</type>
<place hlink="_0000004700000047"/>
</event>
<event handle="_0000004800000048" change="1464096763" id="E0027">
<type>Death</type>
<place hlink="_0000004900000049"/>
</event>
<event handle="_0000004b0000004b" change="1464096763" id="E0028">
<type>Birth</type>
<place hlink="_0000004c0000004c"/>
</event>
<event handle="_0000004d0000004d" change="1464096763" id="E0029">
<type>Death</type>
<place hlink="_0000004e0000004e"/>
</event>
<event handle="_0000005000000050" change="1464096763" id="E0030">
<type>Birth</type>
<place hlink="_0000005100000051"/>
</event>
<event handle="_0000005200000052" change="1464096763" id="E0031">
<type>Death</type>
<place hlink="_0000005300000053"/>
</event>
<event handle="_0000005500000055" change="1464096763" id="E0032">
<type>Birth</type>
<place hlink="_0000005600000056"/>
</event>
<event handle="_0000005700000057" change="1464096763" id="E0033">
<type>Death</type>
<place hlink="_0000005800000058"/>
</event>
<event handle="_0000005a0000005a" change="1464096763" id="E0034">
<type>Birth</type>
<place hlink="_0000005b0000005b"/>
</event>
<event handle="_0000005c0000005c" change="1464096763" id="E0035">
<type>Death</type>
<place hlink="_0000005d0000005d"/>
</event>
<event handle="_0000005f0000005f" change="1464096763" id="E0036">
<type>Birth</type>
<place hlink="_0000006000000060"/>
</event>
<event handle="_0000006100000061" change="1464096763" id="E0037">
<type>Death</type>
<place hlink="_0000006200000062"/>
</event>
<event handle="_0000006400000064" change="1464096763" id="E0038">
<type>Birth</type>
<place hlink="_0000006500000065"/>
</event>
<event handle="_0000006600000066" change="1464096763" id="E0039">
<type>Death</type>
<place hlink="_0000006700000067"/>
</event>
<event handle="_0000006900000069" change="1464096763" id="E0040">
<type>Birth</type>
<place hlink="_0000006a0000006a"/>
</event>
<event handle="_0000006b0000006b" change="1464096763" id="E0041">
<type>Death</type>
<place hlink="_0000006c0000006c"/>
</event>
<event handle="_0000006e0000006e" change="1464096763" id="E0042">
<type>Birth</type>
<place hlink="_0000006f0000006f"/>
</event>
<event handle="_0000007000000070" change="1464096763" id="E0043">
<type>Death</type>
<place hlink="_0000007100000071"/>
</event>
<event handle="_0000007300000073" change="1464096763" id="E0044">
<type>Birth</type>
<place hlink="_0000007400000074"/>
</event>
<event handle="_0000007500000075" change="1464096763" id="E0045">
<type>Death</type>
<place hlink="_0000007600000076"/>
</event>
<event handle="_0000007800000078" change="1464096763" id="E0046">
<type>Birth</type>
<place hlink="_0000007900000079"/>
</event>
<event handle="_0000007a0000007a" change="1464096763" id="E0047">
<type>Death</type>
<place hlink="_0000007b0000007b"/>
</event>
<event handle="_0000007d0000007d" change="1464096763" id="E0048">
<type>Birth</type>
<place hlink="_0000007e0000007e"/>
</event>
<event handle="_0000007f0000007f" change="1464096763" id="E0049">
<type>Death</type>
<place hlink="_0000008000000080"/>
</event>
<event handle="_0000008200000082" change="1464096763" id="E0050">
<type>Birth</type>
<place hlink="_0000008300000083"/>
</event>
<event handle="_0000008400000084" change="1464096763" id="E0051">
<type>Death</type>
<place hlink="_0000008500000085"/>
</event>
<event handle="_0000008700000087" change="1464096763" id="E0052">
<type>Birth</type>
<place hlink="_0000008800000088"/>
</event>
<event handle="_0000008900000089" change="1464096763" id="E0053">
<type>Death</type>
<place hlink="_0000008a0000008a"/>
</event>
<event handle="_0000008c0000008c" change="1464096763" id="E0054">
<type>Birth</type>
<place hlink="_0000008d0000008d"/>
</event>
<event handle="_0000008e0000008e" change="1464096763" id="E0055">
<type>Death</type>
<place hlink="_0000008f0000008f"/>
</event>
<event handle="_0000009100000091" change="1464096763" id="E0056">
<type>Birth</type>
<place hlink="_0000009200000092"/>
</event>
<event handle="_0000009300000093" change="1464096763" id="E0057">
<type>Death</type>
<place hlink="_0000009400000094"/>
</event>
<event handle="_0000009600000096" change="1464096763" id="E0058">
<type>Birth</type>
<place hlink="_0000009700000097"/>
</event>
<event handle="_0000009800000098" change="1464096763" id="E0059">
<type>Death</type>
<place hlink="_0000009900000099"/>
</event>
<event handle="_0000009b0000009b" change="1464096763" id="E0060">
<type>Birth</type>
<place hlink="_0000009c0000009c"/>
</event>
<event handle="_0000009d0000009d" change="1464096763" id="E0061">
<type>Death</type>
<place hlink="_0000009e0000009e"/>
</event>
<event handle="_000000a0000000a0" change="1464096763" id="E0062">
<type>Birth</type>
<place hlink="_000000a1000000a1"/>
</event>
<event handle="_000000a2000000a2" change="1464096763" id="E0063">
<type>Death</type>
<place hlink="_000000a3000000a3"/>
</event>
<event handle="_000000a5000000a5" change="1464096763" id="E0064">
<type>Birth</type>
<place hlink="_000000a6000000a6"/>
</event>
<event handle="_000000a7000000a7" change="1464096763" id="E0065">
<type>Death</type>
<place hlink="_000000a8000000a8"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1464096763" id="FATHER">
<gender>M</gender>
<name type="Birth Name">
<surname>cyrillic (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000300000003" change="1464096763" id="MOTHER">
<gender>F</gender>
<name type="Birth Name">
<surname>greek (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000400000004" change="1464096763" id="CHILD0">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 0</surname>
</name>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000700000007" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000900000009" change="1464096763" id="CHILD1">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 1</surname>
</name>
<eventref hlink="_0000000a0000000a" role="Primary"/>
<eventref hlink="_0000000c0000000c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000e0000000e" change="1464096763" id="CHILD2">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 2</surname>
</name>
<eventref hlink="_0000000f0000000f" role="Primary"/>
<eventref hlink="_0000001100000011" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001300000013" change="1464096763" id="CHILD3">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 3</surname>
</name>
<eventref hlink="_0000001400000014" role="Primary"/>
<eventref hlink="_0000001600000016" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001800000018" change="1464096763" id="CHILD4">
<gender>U</gender>
<name type="Birth Name">
<first>code: E0 (Unicode: hook above, 0309)</first>
<surname>low rising tone mark</surname>
</name>
<eventref hlink="_0000001900000019" role="Primary"/>
<eventref hlink="_0000001b0000001b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001d0000001d" change="1464096763" id="CHILD5">
<gender>U</gender>
<name type="Birth Name">
<first>code: E1 (Unicode: grave, 0300)</first>
<surname>grave accent</surname>
</name>
<eventref hlink="_0000001e0000001e" role="Primary"/>
<eventref hlink="_0000002000000020" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002200000022" change="1464096763" id="CHILD6">
<gender>U</gender>
<name type="Birth Name">
<first>code: E2 (Unicode: acute, 0301)</first>
<surname>acute accent</surname>
</name>
<eventref hlink="_0000002300000023" role="Primary"/>
<eventref hlink="_0000002500000025" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002700000027" change="1464096763" id="CHILD7">
<gender>U</gender>
<name type="Birth Name">
<first>code: E3 (Unicode: circumflex, 0302)</first>
<surname>circumflex accent</surname>
</name>
<eventref hlink="_0000002800000028" role="Primary"/>
<eventref hlink="_0000002a0000002a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002c0000002c" change="1464096763" id="CHILD8">
<gender>U</gender>
<name type="Birth Name">
<first>code: E4 (Unicode: tilde, 0303)</first>
<surname>tilde</surname>
</name>
<eventref hlink="_0000002d0000002d" role="Primary"/>
<eventref hlink="_0000002f0000002f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003100000031" change="1464096763" id="CHILD9">
<gender>U</gender>
<name type="Birth Name">
<first>code: E5 (Unicode: macron, 0304)</first>
<surname>macron</surname>
</name>
<eventref hlink="_0000003200000032" role="Primary"/>
<eventref hlink="_0000003400000034" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003600000036" change="1464096763" id="CHILD10">
<gender>U</gender>
<name type="Birth Name">
<first>code: E6 (Unicode: breve, 0306)</first>
<surname>breve</surname>
</name>
<eventref hlink="_0000003700000037" role="Primary"/>
<eventref hlink="_0000003900000039" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003b0000003b" change="1464096763" id="CHILD11">
<gender>U</gender>
<name type="Birth Name">
<first>code: E7 (Unicode: dot above, 0307)</first>
<surname>dot above</surname>
</name>
<eventref hlink="_0000003c0000003c" role="Primary"/>
<eventref hlink="_0000003e0000003e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004000000040" change="1464096763" id="CHILD12">
<gender>U</gender>
<name type="Birth Name">
<first>code: E8 (Unicode: diaeresis, 0308)</first>
<surname>umlaut (dieresis)</surname>
</name>
<eventref hlink="_0000004100000041" role="Primary"/>
<eventref hlink="_0000004300000043" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004500000045" change="1464096763" id="CHILD13">
<gender>U</gender>
<name type="Birth Name">
<first>code: E9 (Unicode: caron, 030C)</first>
<surname>hacek</surname>
</name>
<eventref hlink="_0000004600000046" role="Primary"/>
<eventref hlink="_0000004800000048" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004a0000004a" change="1464096763" id="CHILD14">
<gender>U</gender>
<name type="Birth Name">
<first>code: EA (Unicode: ring above, 030A)</first>
<surname>circle above (angstrom)</surname>
</name>
<eventref hlink="_0000004b0000004b" role="Primary"/>
<eventref hlink="_0000004d0000004d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004f0000004f" change="1464096763" id="CHILD15">
<gender>U</gender>
<name type="Birth Name">
<first>code: EB (Unicode: ligature left half, FE20)</first>
<surname>ligature, left half</surname>
</name>
<eventref hlink="_0000005000000050" role="Primary"/>
<eventref hlink="_0000005200000052" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005400000054" change="1464096763" id="CHILD16">
<gender>U</gender>
<name type="Birth Name">
<first>code: EC (Unicode: ligature right half, FE21)</first>
<surname>ligature, right half</surname>
</name>
<eventref hlink="_0000005500000055" role="Primary"/>
<eventref hlink="_0000005700000057" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005900000059" change="1464096763" id="CHILD17">
<gender>U</gender>
<name type="Birth Name">
<first>code: ED (Unicode: comma above right, 0315)</first>
<surname>high comma, off center</surname>
</name>
<eventref hlink="_0000005a0000005a" role="Primary"/>
<eventref hlink="_0000005c0000005c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005e0000005e" change="1464096763" id="CHILD18">
<gender>U</gender>
<name type="Birth Name">
<first>code: EE (Unicode: double acute, 030B)</first>
<surname>double acute accent</surname>
</name>
<eventref hlink="_0000005f0000005f" role="Primary"/>
<eventref hlink="_0000006100000061" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006300000063" change="1464096763" id="CHILD19">
<gender>U</gender>
<name type="Birth Name">
<first>code: EF (Unicode: candrabindu, 0310)</first>
<surname>candrabindu</surname>
</name>
<eventref hlink="_0000006400000064" role="Primary"/>
<eventref hlink="_0000006600000066" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006800000068" change="1464096763" id="CHILD20">
<gender>U</gender>
<name type="Birth Name">
<first>code: F0 (Unicode: cedilla, 0327)</first>
<surname>cedilla</surname>
</name>
<eventref hlink="_0000006900000069" role="Primary"/>
<eventref hlink="_0000006b0000006b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006d0000006d" change="1464096763" id="CHILD21">
<gender>U</gender>
<name type="Birth Name">
<first>code: F1 (Unicode: ogonek, 0328)</first>
<surname>right hook</surname>
</name>
<eventref hlink="_0000006e0000006e" role="Primary"/>
<eventref hlink="_0000007000000070" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007200000072" change="1464096763" id="CHILD22">
<gender>U</gender>
<name type="Birth Name">
<first>code: F2 (Unicode: dot below, 0323)</first>
<surname>dot below</surname>
</name>
<eventref hlink="_0000007300000073" role="Primary"/>
<eventref hlink="_0000007500000075" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007700000077" change="1464096763" id="CHILD23">
<gender>U</gender>
<name type="Birth Name">
<first>code: F3 (Unicode: diaeresis below, 0324)</first>
<surname>double dot below</surname>
</name>
<eventref hlink="_0000007800000078" role="Primary"/>
<eventref hlink="_0000007a0000007a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007c0000007c" change="1464096763" id="CHILD24">
<gender>U</gender>
<name type="Birth Name">
<first>code: F4 (Unicode: ring below, 0325)</first>
<surname>circle below</surname>
</name>
<eventref hlink="_0000007d0000007d" role="Primary"/>
<eventref hlink="_0000007f0000007f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008100000081" change="1464096763" id="CHILD25">
<gender>U</gender>
<name type="Birth Name">
<first>code: F5 (Unicode: double low line, 0333)</first>
<surname>double underscore</surname>
</name>
<eventref hlink="_0000008200000082" role="Primary"/>
<eventref hlink="_0000008400000084" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008600000086" change="1464096763" id="CHILD26">
<gender>U</gender>
<name type="Birth Name">
<first>code: F6 (Unicode: line below, 0332)</first>
<surname>underscore</surname>
</name>
<eventref hlink="_0000008700000087" role="Primary"/>
<eventref hlink="_0000008900000089" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008b0000008b" change="1464096763" id="CHILD27">
<gender>U</gender>
<name type="Birth Name">
<first>code: F7 (Unicode: comma below, 0326)</first>
<surname>left hook</surname>
</name>
<eventref hlink="_0000008c0000008c" role="Primary"/>
<eventref hlink="_0000008e0000008e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009000000090" change="1464096763" id="CHILD28">
<gender>U</gender>
<name type="Birth Name">
<first>code: F8 (Unicode: left half ring below, 031C)</first>
<surname>right cedilla</surname>
</name>
<eventref hlink="_0000009100000091" role="Primary"/>
<eventref hlink="_0000009300000093" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009500000095" change="1464096763" id="CHILD29">
<gender>U</gender>
<name type="Birth Name">
<first>code: F9 (Unicode: breve below, 032E)</first>
<surname>half circle below</surname>
</name>
<eventref hlink="_0000009600000096" role="Primary"/>
<eventref hlink="_0000009800000098" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009a0000009a" change="1464096763" id="CHILD30">
<gender>U</gender>
<name type="Birth Name">
<first>code: FA (Unicode: double tilde left half, FE22)</first>
<surname>double tilde, left half</surname>
</name>
<eventref hlink="_0000009b0000009b" role="Primary"/>
<eventref hlink="_0000009d0000009d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009f0000009f" change="1464096763" id="CHILD31">
<gender>U</gender>
<name type="Birth Name">
<first>code: FB (Unicode: double tilde right half, FE23)</first>
<surname>double tilde, right half</surname>
</name>
<eventref hlink="_000000a0000000a0" role="Primary"/>
<eventref hlink="_000000a2000000a2" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_000000a4000000a4" change="1464096763" id="CHILD32">
<gender>U</gender>
<name type="Birth Name">
<first>code: FE (Unicode: comma above, 0313)</first>
<surname>high comma, centered</surname>
</name>
<eventref hlink="_000000a5000000a5" role="Primary"/>
<eventref hlink="_000000a7000000a7" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
</people>
<families>
<family handle="_0000000200000002" change="1464096763" id="FAMILY">
<rel type="Unknown"/>
<father hlink="_0000000100000001"/>
<mother hlink="_0000000300000003"/>
<childref hlink="_0000000400000004"/>
<childref hlink="_0000000900000009"/>
<childref hlink="_0000000e0000000e"/>
<childref hlink="_0000001300000013"/>
<childref hlink="_0000001800000018"/>
<childref hlink="_0000001d0000001d"/>
<childref hlink="_0000002200000022"/>
<childref hlink="_0000002700000027"/>
<childref hlink="_0000002c0000002c"/>
<childref hlink="_0000003100000031"/>
<childref hlink="_0000003600000036"/>
<childref hlink="_0000003b0000003b"/>
<childref hlink="_0000004000000040"/>
<childref hlink="_0000004500000045"/>
<childref hlink="_0000004a0000004a"/>
<childref hlink="_0000004f0000004f"/>
<childref hlink="_0000005400000054"/>
<childref hlink="_0000005900000059"/>
<childref hlink="_0000005e0000005e"/>
<childref hlink="_0000006300000063"/>
<childref hlink="_0000006800000068"/>
<childref hlink="_0000006d0000006d"/>
<childref hlink="_0000007200000072"/>
<childref hlink="_0000007700000077"/>
<childref hlink="_0000007c0000007c"/>
<childref hlink="_0000008100000081"/>
<childref hlink="_0000008600000086"/>
<childref hlink="_0000008b0000008b"/>
<childref hlink="_0000009000000090"/>
<childref hlink="_0000009500000095"/>
<childref hlink="_0000009a0000009a"/>
<childref hlink="_0000009f0000009f"/>
<childref hlink="_000000a4000000a4"/>
</family>
</families>
<places>
<placeobj handle="_0000000600000006" change="1464096763" id="P0000" type="Unknown">
<ptitle>slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)</ptitle>
<pname value="slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)"/>
</placeobj>
<placeobj handle="_0000000800000008" change="1464096763" id="P0001" type="Unknown">
<ptitle>ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)</ptitle>
<pname value="ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)"/>
</placeobj>
<placeobj handle="_0000000b0000000b" change="1464096763" id="P0002" type="Unknown">
<ptitle>patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)</ptitle>
<pname value="patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)"/>
</placeobj>
<placeobj handle="_0000000d0000000d" change="1464096763" id="P0003" type="Unknown">
<ptitle>alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)</ptitle>
<pname value="alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)"/>
</placeobj>
<placeobj handle="_0000001000000010" change="1464096763" id="P0004" type="Unknown">
<ptitle>thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)</ptitle>
<pname value="thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)"/>
</placeobj>
<placeobj handle="_0000001200000012" change="1464096763" id="P0005" type="Unknown">
<ptitle>dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)</ptitle>
<pname value="dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)"/>
</placeobj>
<placeobj handle="_0000001500000015" change="1464096763" id="P0006" type="Unknown">
<ptitle>degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)</ptitle>
<pname value="degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)"/>
</placeobj>
<placeobj handle="_0000001700000017" change="1464096763" id="P0007" type="Unknown">
<ptitle>musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)</ptitle>
<pname value="musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)"/>
</placeobj>
<placeobj handle="_0000001a0000001a" change="1464096763" id="P0008" type="Unknown">
<ptitle>ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉</ptitle>
<pname value="ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉"/>
</placeobj>
<placeobj handle="_0000001c0000001c" change="1464096763" id="P0009" type="Unknown">
<ptitle>ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉</ptitle>
<pname value="ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉"/>
</placeobj>
<placeobj handle="_0000001f0000001f" change="1464096763" id="P0010" type="Unknown">
<ptitle>ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀</ptitle>
<pname value="ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀"/>
</placeobj>
<placeobj handle="_0000002100000021" change="1464096763" id="P0011" type="Unknown">
<ptitle>àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀</ptitle>
<pname value="àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀"/>
</placeobj>
<placeobj handle="_0000002400000024" change="1464096763" id="P0012" type="Unknown">
<ptitle>ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ</ptitle>
<pname value="ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ"/>
</placeobj>
<placeobj handle="_0000002600000026" change="1464096763" id="P0013" type="Unknown">
<ptitle>áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź</ptitle>
<pname value="áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź"/>
</placeobj>
<placeobj handle="_0000002900000029" change="1464096763" id="P0014" type="Unknown">
<ptitle>ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ</ptitle>
<pname value="ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ"/>
</placeobj>
<placeobj handle="_0000002b0000002b" change="1464096763" id="P0015" type="Unknown">
<ptitle>âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ</ptitle>
<pname value="âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ"/>
</placeobj>
<placeobj handle="_0000002e0000002e" change="1464096763" id="P0016" type="Unknown">
<ptitle>ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃</ptitle>
<pname value="ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃"/>
</placeobj>
<placeobj handle="_0000003000000030" change="1464096763" id="P0017" type="Unknown">
<ptitle>ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃</ptitle>
<pname value="ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃"/>
</placeobj>
<placeobj handle="_0000003300000033" change="1464096763" id="P0018" type="Unknown">
<ptitle>ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄</ptitle>
<pname value="ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄"/>
</placeobj>
<placeobj handle="_0000003500000035" change="1464096763" id="P0019" type="Unknown">
<ptitle>āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄</ptitle>
<pname value="āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄"/>
</placeobj>
<placeobj handle="_0000003800000038" change="1464096763" id="P0020" type="Unknown">
<ptitle>ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆</ptitle>
<pname value="ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆"/>
</placeobj>
<placeobj handle="_0000003a0000003a" change="1464096763" id="P0021" type="Unknown">
<ptitle>ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆</ptitle>
<pname value="ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆"/>
</placeobj>
<placeobj handle="_0000003d0000003d" change="1464096763" id="P0022" type="Unknown">
<ptitle>ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ</ptitle>
<pname value="ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ"/>
</placeobj>
<placeobj handle="_0000003f0000003f" change="1464096763" id="P0023" type="Unknown">
<ptitle>ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż</ptitle>
<pname value="ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż"/>
</placeobj>
<placeobj handle="_0000004200000042" change="1464096763" id="P0024" type="Unknown">
<ptitle>ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈</ptitle>
<pname value="ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈"/>
</placeobj>
<placeobj handle="_0000004400000044" change="1464096763" id="P0025" type="Unknown">
<ptitle>äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈</ptitle>
<pname value="äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈"/>
</placeobj>
<placeobj handle="_0000004700000047" change="1464096763" id="P0026" type="Unknown">
<ptitle>ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž</ptitle>
<pname value="ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž"/>
</placeobj>
<placeobj handle="_0000004900000049" change="1464096763" id="P0027" type="Unknown">
<ptitle>ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž</ptitle>
<pname value="ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž"/>
</placeobj>
<placeobj handle="_0000004c0000004c" change="1464096763" id="P0028" type="Unknown">
<ptitle>ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊</ptitle>
<pname value="ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊"/>
</placeobj>
<placeobj handle="_0000004e0000004e" change="1464096763" id="P0029" type="Unknown">
<ptitle>åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊</ptitle>
<pname value="åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊"/>
</placeobj>
<placeobj handle="_0000005100000051" change="1464096763" id="P0030" type="Unknown">
<ptitle>A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠</ptitle>
<pname value="A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠"/>
</placeobj>
<placeobj handle="_0000005300000053" change="1464096763" id="P0031" type="Unknown">
<ptitle>a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠</ptitle>
<pname value="a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠"/>
</placeobj>
<placeobj handle="_0000005600000056" change="1464096763" id="P0032" type="Unknown">
<ptitle>A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡</ptitle>
<pname value="A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡"/>
</placeobj>
<placeobj handle="_0000005800000058" change="1464096763" id="P0033" type="Unknown">
<ptitle>a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡</ptitle>
<pname value="a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡"/>
</placeobj>
<placeobj handle="_0000005b0000005b" change="1464096763" id="P0034" type="Unknown">
<ptitle>A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕</ptitle>
<pname value="A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕"/>
</placeobj>
<placeobj handle="_0000005d0000005d" change="1464096763" id="P0035" type="Unknown">
<ptitle>a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕</ptitle>
<pname value="a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕"/>
</placeobj>
<placeobj handle="_0000006000000060" change="1464096763" id="P0036" type="Unknown">
<ptitle>A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋</ptitle>
<pname value="A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋"/>
</placeobj>
<placeobj handle="_0000006200000062" change="1464096763" id="P0037" type="Unknown">
<ptitle>a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋</ptitle>
<pname value="a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋"/>
</placeobj>
<placeobj handle="_0000006500000065" change="1464096763" id="P0038" type="Unknown">
<ptitle>A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐</ptitle>
<pname value="A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐"/>
</placeobj>
<placeobj handle="_0000006700000067" change="1464096763" id="P0039" type="Unknown">
<ptitle>a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐</ptitle>
<pname value="a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐"/>
</placeobj>
<placeobj handle="_0000006a0000006a" change="1464096763" id="P0040" type="Unknown">
<ptitle>A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧</ptitle>
<pname value="A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧"/>
</placeobj>
<placeobj handle="_0000006c0000006c" change="1464096763" id="P0041" type="Unknown">
<ptitle>a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧</ptitle>
<pname value="a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧"/>
</placeobj>
<placeobj handle="_0000006f0000006f" change="1464096763" id="P0042" type="Unknown">
<ptitle>ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨</ptitle>
<pname value="ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨"/>
</placeobj>
<placeobj handle="_0000007100000071" change="1464096763" id="P0043" type="Unknown">
<ptitle>ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨</ptitle>
<pname value="ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨"/>
</placeobj>
<placeobj handle="_0000007400000074" change="1464096763" id="P0044" type="Unknown">
<ptitle>ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ</ptitle>
<pname value="ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ"/>
</placeobj>
<placeobj handle="_0000007600000076" change="1464096763" id="P0045" type="Unknown">
<ptitle>ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ</ptitle>
<pname value="ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ"/>
</placeobj>
<placeobj handle="_0000007900000079" change="1464096763" id="P0046" type="Unknown">
<ptitle>A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤</ptitle>
<pname value="A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤"/>
</placeobj>
<placeobj handle="_0000007b0000007b" change="1464096763" id="P0047" type="Unknown">
<ptitle>a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤</ptitle>
<pname value="a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤"/>
</placeobj>
<placeobj handle="_0000007e0000007e" change="1464096763" id="P0048" type="Unknown">
<ptitle>ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥</ptitle>
<pname value="ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥"/>
</placeobj>
<placeobj handle="_0000008000000080" change="1464096763" id="P0049" type="Unknown">
<ptitle>ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥</ptitle>
<pname value="ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥"/>
</placeobj>
<placeobj handle="_0000008300000083" change="1464096763" id="P0050" type="Unknown">
<ptitle>A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳</ptitle>
<pname value="A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳"/>
</placeobj>
<placeobj handle="_0000008500000085" change="1464096763" id="P0051" type="Unknown">
<ptitle>a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳</ptitle>
<pname value="a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳"/>
</placeobj>
<placeobj handle="_0000008800000088" change="1464096763" id="P0052" type="Unknown">
<ptitle>A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲</ptitle>
<pname value="A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲"/>
</placeobj>
<placeobj handle="_0000008a0000008a" change="1464096763" id="P0053" type="Unknown">
<ptitle>a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲</ptitle>
<pname value="a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲"/>
</placeobj>
<placeobj handle="_0000008d0000008d" change="1464096763" id="P0054" type="Unknown">
<ptitle>A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦</ptitle>
<pname value="A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦"/>
</placeobj>
<placeobj handle="_0000008f0000008f" change="1464096763" id="P0055" type="Unknown">
<ptitle>a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦</ptitle>
<pname value="a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦"/>
</placeobj>
<placeobj handle="_0000009200000092" change="1464096763" id="P0056" type="Unknown">
<ptitle>A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜</ptitle>
<pname value="A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜"/>
</placeobj>
<placeobj handle="_0000009400000094" change="1464096763" id="P0057" type="Unknown">
<ptitle>a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜</ptitle>
<pname value="a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜"/>
</placeobj>
<placeobj handle="_0000009700000097" change="1464096763" id="P0058" type="Unknown">
<ptitle>A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮</ptitle>
<pname value="A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮"/>
</placeobj>
<placeobj handle="_0000009900000099" change="1464096763" id="P0059" type="Unknown">
<ptitle>a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮</ptitle>
<pname value="a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮"/>
</placeobj>
<placeobj handle="_0000009c0000009c" change="1464096763" id="P0060" type="Unknown">
<ptitle>A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢</ptitle>
<pname value="A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢"/>
</placeobj>
<placeobj handle="_0000009e0000009e" change="1464096763" id="P0061" type="Unknown">
<ptitle>a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢</ptitle>
<pname value="a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢"/>
</placeobj>
<placeobj handle="_000000a1000000a1" change="1464096763" id="P0062" type="Unknown">
<ptitle>A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣</ptitle>
<pname value="A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣"/>
</placeobj>
<placeobj handle="_000000a3000000a3" change="1464096763" id="P0063" type="Unknown">
<ptitle>a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣</ptitle>
<pname value="a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣"/>
</placeobj>
<placeobj handle="_000000a6000000a6" change="1464096763" id="P0064" type="Unknown">
<ptitle>A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓</ptitle>
<pname value="A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓"/>
</placeobj>
<placeobj handle="_000000a8000000a8" change="1464096763" id="P0065" type="Unknown">
<ptitle>a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓</ptitle>
<pname value="a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓"/>
</placeobj>
</places>
</database>

View File

@@ -1,315 +0,0 @@
0 HEAD
1 CHAR ANSEL
1 SOUR REGISTERED_SOURCE_NAME
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
1 NOTE This GEDCOM transmission contains a charcter set test. It consists
2 CONT of a single family (two parents, many children). The parents are empty
2 CONT in the ANSEL version of the transmission. The children contain the
2 CONT combined letters and the special charcters (value > 128).
2 CONT The NAME tag of each 'person' is the name of the characters tested
2 CONT within the person. The BIRT.PLAC and DEAT.PLAC tags contain the
2 CONT test-strings.
2 CONT The first children contain special characters. Here the test string
2 CONT is 'character name (test character), ...' where 'character name'
2 CONT is the name of the character (like 'british pound') and
2 CONT 'test character' is a single byte representing this character
2 CONT in ANSEL.
2 CONT The last children contain combined characters. The name tag gives
2 CONT the name of the non-spacing character tested within the 'person'.
2 CONT Within the name the hex-values of the non-spacing character is given
2 CONT in ANSEL and UNICODE. The test strings contain the whole latin
2 CONT alphabet combined with this non-spacing character: captial letters
2 CONT in the BIRT.PLAC tag and small letters in the DEAT.PLAC tag.
2 CONT Example: One 'person' is named 'circle above'. The BIRT.PLAC
2 CONT tag contains all 26 capital letters with a small ring on top.
2 CONT Note: Not all charcters can be displayed on all computers.
2 CONT This strongly depends on the installed fonts and codepages.
2 CONT Many of the combined characters generated here do not even have
2 CONT a UNICDOE code point!
2 CONT This file based mainly on the GEDCOM 5.5 specification
2 CONT (see: ftp.gedcom.org/pub/genealogy/gedcom/gedcom55.zip)
2 CONT and on an updated ANSEL description in:
2 CONT http://www.gendex.com/gedcom55/55gcappd.htm
1 SUBM @SUBMITTER@
1 DATE 20 JAN 1998
0 @SUBMITTER@ SUBM
1 NAME /H. Eichmann/
1 ADDR email: h.eichmann@@gmx.de
0 @FATHER@ INDI
1 NAME /cyrillic (not possible in ANSEL)/
1 SEX M
1 FAMS @FAMILY@
0 @MOTHER@ INDI
1 NAME /greek (not possible in ANSEL)/
1 SEX F
1 FAMS @FAMILY@
0 @CHILD0@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 0/
1 BIRT
2 PLAC slash l - uppercase (<28>), slash o - uppercase (<28>), slash d - uppercase (<28>), thorn - uppercase (<28>)
1 DEAT
2 PLAC ligature ae - uppercase (<28>), ligature oe - uppercase (<28>), miagkii znak (<28>), middle dot (<28>), musical flat (<28>)
0 @CHILD1@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 1/
1 BIRT
2 PLAC patent mark (<28>), plus-or-minus (<28>), hook o - uppercase (<28>), hook u - uppercase (<28>)
1 DEAT
2 PLAC alif (<28>), ayn (<28>), slash l - lowercase (<28>), slash o - lowercase (<28>), slash d - lowercase (<28>)
0 @CHILD2@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 2/
1 BIRT
2 PLAC thorn - lowercase (<28>), ligature ae - lowercase (<28>), ligature oe - lowercase (<28>), tverdyi znak (<28>)
1 DEAT
2 PLAC dotless i - lowercase (<28>), british pound (<28>), eth (<28>), hook o - lowercase (<28>), hook u - lowercase (<28>)
0 @CHILD3@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 3/
1 BIRT
2 PLAC degree sign (<28>), script l (<28>), phonograph copyright mark (<28>), copyright symbol (<28>)
1 DEAT
2 PLAC musical sharp (<28>), inverted question mark (<28>), inverted exclamation mark (<28>), es zet (<28>)
0 @CHILD4@ INDI
1 FAMC @FAMILY@
1 NAME code: E0 (Unicode: hook above, 0309)/low rising tone mark/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD5@ INDI
1 FAMC @FAMILY@
1 NAME code: E1 (Unicode: grave, 0300)/grave accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD6@ INDI
1 FAMC @FAMILY@
1 NAME code: E2 (Unicode: acute, 0301)/acute accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD7@ INDI
1 FAMC @FAMILY@
1 NAME code: E3 (Unicode: circumflex, 0302)/circumflex accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD8@ INDI
1 FAMC @FAMILY@
1 NAME code: E4 (Unicode: tilde, 0303)/tilde/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD9@ INDI
1 FAMC @FAMILY@
1 NAME code: E5 (Unicode: macron, 0304)/macron/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD10@ INDI
1 FAMC @FAMILY@
1 NAME code: E6 (Unicode: breve, 0306)/breve/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD11@ INDI
1 FAMC @FAMILY@
1 NAME code: E7 (Unicode: dot above, 0307)/dot above/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD12@ INDI
1 FAMC @FAMILY@
1 NAME code: E8 (Unicode: diaeresis, 0308)/umlaut (dieresis)/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD13@ INDI
1 FAMC @FAMILY@
1 NAME code: E9 (Unicode: caron, 030C)/hacek/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD14@ INDI
1 FAMC @FAMILY@
1 NAME code: EA (Unicode: ring above, 030A)/circle above (angstrom)/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD15@ INDI
1 FAMC @FAMILY@
1 NAME code: EB (Unicode: ligature left half, FE20)/ligature, left half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD16@ INDI
1 FAMC @FAMILY@
1 NAME code: EC (Unicode: ligature right half, FE21)/ligature, right half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD17@ INDI
1 FAMC @FAMILY@
1 NAME code: ED (Unicode: comma above right, 0315)/high comma, off center/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD18@ INDI
1 FAMC @FAMILY@
1 NAME code: EE (Unicode: double acute, 030B)/double acute accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD19@ INDI
1 FAMC @FAMILY@
1 NAME code: EF (Unicode: candrabindu, 0310)/candrabindu/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD20@ INDI
1 FAMC @FAMILY@
1 NAME code: F0 (Unicode: cedilla, 0327)/cedilla/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD21@ INDI
1 FAMC @FAMILY@
1 NAME code: F1 (Unicode: ogonek, 0328)/right hook/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD22@ INDI
1 FAMC @FAMILY@
1 NAME code: F2 (Unicode: dot below, 0323)/dot below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD23@ INDI
1 FAMC @FAMILY@
1 NAME code: F3 (Unicode: diaeresis below, 0324)/double dot below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD24@ INDI
1 FAMC @FAMILY@
1 NAME code: F4 (Unicode: ring below, 0325)/circle below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD25@ INDI
1 FAMC @FAMILY@
1 NAME code: F5 (Unicode: double low line, 0333)/double underscore/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD26@ INDI
1 FAMC @FAMILY@
1 NAME code: F6 (Unicode: line below, 0332)/underscore/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD27@ INDI
1 FAMC @FAMILY@
1 NAME code: F7 (Unicode: comma below, 0326)/left hook/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD28@ INDI
1 FAMC @FAMILY@
1 NAME code: F8 (Unicode: left half ring below, 031C)/right cedilla/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD29@ INDI
1 FAMC @FAMILY@
1 NAME code: F9 (Unicode: breve below, 032E)/half circle below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD30@ INDI
1 FAMC @FAMILY@
1 NAME code: FA (Unicode: double tilde left half, FE22)/double tilde, left half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD31@ INDI
1 FAMC @FAMILY@
1 NAME code: FB (Unicode: double tilde right half, FE23)/double tilde, right half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD32@ INDI
1 FAMC @FAMILY@
1 NAME code: FE (Unicode: comma above, 0313)/high comma, centered/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @FAMILY@ FAM
1 HUSB @FATHER@
1 WIFE @MOTHER@
1 CHIL @CHILD0@
1 CHIL @CHILD1@
1 CHIL @CHILD2@
1 CHIL @CHILD3@
1 CHIL @CHILD4@
1 CHIL @CHILD5@
1 CHIL @CHILD6@
1 CHIL @CHILD7@
1 CHIL @CHILD8@
1 CHIL @CHILD9@
1 CHIL @CHILD10@
1 CHIL @CHILD11@
1 CHIL @CHILD12@
1 CHIL @CHILD13@
1 CHIL @CHILD14@
1 CHIL @CHILD15@
1 CHIL @CHILD16@
1 CHIL @CHILD17@
1 CHIL @CHILD18@
1 CHIL @CHILD19@
1 CHIL @CHILD20@
1 CHIL @CHILD21@
1 CHIL @CHILD22@
1 CHIL @CHILD23@
1 CHIL @CHILD24@
1 CHIL @CHILD25@
1 CHIL @CHILD26@
1 CHIL @CHILD27@
1 CHIL @CHILD28@
1 CHIL @CHILD29@
1 CHIL @CHILD30@
1 CHIL @CHILD31@
1 CHIL @CHILD32@
0 TRLR

View File

@@ -1,926 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-05-24" version="GrampsAIO64-4.2.1-2"/>
<researcher>
<resname>/H. Eichmann/</resname>
<resaddr>email: h.eichmann@@gmx.de</resaddr>
</researcher>
</header>
<events>
<event handle="_0000000500000005" change="1464096763" id="E0000">
<type>Birth</type>
<place hlink="_0000000600000006"/>
</event>
<event handle="_0000000700000007" change="1464096763" id="E0001">
<type>Death</type>
<place hlink="_0000000800000008"/>
</event>
<event handle="_0000000a0000000a" change="1464096763" id="E0002">
<type>Birth</type>
<place hlink="_0000000b0000000b"/>
</event>
<event handle="_0000000c0000000c" change="1464096763" id="E0003">
<type>Death</type>
<place hlink="_0000000d0000000d"/>
</event>
<event handle="_0000000f0000000f" change="1464096763" id="E0004">
<type>Birth</type>
<place hlink="_0000001000000010"/>
</event>
<event handle="_0000001100000011" change="1464096763" id="E0005">
<type>Death</type>
<place hlink="_0000001200000012"/>
</event>
<event handle="_0000001400000014" change="1464096763" id="E0006">
<type>Birth</type>
<place hlink="_0000001500000015"/>
</event>
<event handle="_0000001600000016" change="1464096763" id="E0007">
<type>Death</type>
<place hlink="_0000001700000017"/>
</event>
<event handle="_0000001900000019" change="1464096763" id="E0008">
<type>Birth</type>
<place hlink="_0000001a0000001a"/>
</event>
<event handle="_0000001b0000001b" change="1464096763" id="E0009">
<type>Death</type>
<place hlink="_0000001c0000001c"/>
</event>
<event handle="_0000001e0000001e" change="1464096763" id="E0010">
<type>Birth</type>
<place hlink="_0000001f0000001f"/>
</event>
<event handle="_0000002000000020" change="1464096763" id="E0011">
<type>Death</type>
<place hlink="_0000002100000021"/>
</event>
<event handle="_0000002300000023" change="1464096763" id="E0012">
<type>Birth</type>
<place hlink="_0000002400000024"/>
</event>
<event handle="_0000002500000025" change="1464096763" id="E0013">
<type>Death</type>
<place hlink="_0000002600000026"/>
</event>
<event handle="_0000002800000028" change="1464096763" id="E0014">
<type>Birth</type>
<place hlink="_0000002900000029"/>
</event>
<event handle="_0000002a0000002a" change="1464096763" id="E0015">
<type>Death</type>
<place hlink="_0000002b0000002b"/>
</event>
<event handle="_0000002d0000002d" change="1464096763" id="E0016">
<type>Birth</type>
<place hlink="_0000002e0000002e"/>
</event>
<event handle="_0000002f0000002f" change="1464096763" id="E0017">
<type>Death</type>
<place hlink="_0000003000000030"/>
</event>
<event handle="_0000003200000032" change="1464096763" id="E0018">
<type>Birth</type>
<place hlink="_0000003300000033"/>
</event>
<event handle="_0000003400000034" change="1464096763" id="E0019">
<type>Death</type>
<place hlink="_0000003500000035"/>
</event>
<event handle="_0000003700000037" change="1464096763" id="E0020">
<type>Birth</type>
<place hlink="_0000003800000038"/>
</event>
<event handle="_0000003900000039" change="1464096763" id="E0021">
<type>Death</type>
<place hlink="_0000003a0000003a"/>
</event>
<event handle="_0000003c0000003c" change="1464096763" id="E0022">
<type>Birth</type>
<place hlink="_0000003d0000003d"/>
</event>
<event handle="_0000003e0000003e" change="1464096763" id="E0023">
<type>Death</type>
<place hlink="_0000003f0000003f"/>
</event>
<event handle="_0000004100000041" change="1464096763" id="E0024">
<type>Birth</type>
<place hlink="_0000004200000042"/>
</event>
<event handle="_0000004300000043" change="1464096763" id="E0025">
<type>Death</type>
<place hlink="_0000004400000044"/>
</event>
<event handle="_0000004600000046" change="1464096763" id="E0026">
<type>Birth</type>
<place hlink="_0000004700000047"/>
</event>
<event handle="_0000004800000048" change="1464096763" id="E0027">
<type>Death</type>
<place hlink="_0000004900000049"/>
</event>
<event handle="_0000004b0000004b" change="1464096763" id="E0028">
<type>Birth</type>
<place hlink="_0000004c0000004c"/>
</event>
<event handle="_0000004d0000004d" change="1464096763" id="E0029">
<type>Death</type>
<place hlink="_0000004e0000004e"/>
</event>
<event handle="_0000005000000050" change="1464096763" id="E0030">
<type>Birth</type>
<place hlink="_0000005100000051"/>
</event>
<event handle="_0000005200000052" change="1464096763" id="E0031">
<type>Death</type>
<place hlink="_0000005300000053"/>
</event>
<event handle="_0000005500000055" change="1464096763" id="E0032">
<type>Birth</type>
<place hlink="_0000005600000056"/>
</event>
<event handle="_0000005700000057" change="1464096763" id="E0033">
<type>Death</type>
<place hlink="_0000005800000058"/>
</event>
<event handle="_0000005a0000005a" change="1464096763" id="E0034">
<type>Birth</type>
<place hlink="_0000005b0000005b"/>
</event>
<event handle="_0000005c0000005c" change="1464096763" id="E0035">
<type>Death</type>
<place hlink="_0000005d0000005d"/>
</event>
<event handle="_0000005f0000005f" change="1464096763" id="E0036">
<type>Birth</type>
<place hlink="_0000006000000060"/>
</event>
<event handle="_0000006100000061" change="1464096763" id="E0037">
<type>Death</type>
<place hlink="_0000006200000062"/>
</event>
<event handle="_0000006400000064" change="1464096763" id="E0038">
<type>Birth</type>
<place hlink="_0000006500000065"/>
</event>
<event handle="_0000006600000066" change="1464096763" id="E0039">
<type>Death</type>
<place hlink="_0000006700000067"/>
</event>
<event handle="_0000006900000069" change="1464096763" id="E0040">
<type>Birth</type>
<place hlink="_0000006a0000006a"/>
</event>
<event handle="_0000006b0000006b" change="1464096763" id="E0041">
<type>Death</type>
<place hlink="_0000006c0000006c"/>
</event>
<event handle="_0000006e0000006e" change="1464096763" id="E0042">
<type>Birth</type>
<place hlink="_0000006f0000006f"/>
</event>
<event handle="_0000007000000070" change="1464096763" id="E0043">
<type>Death</type>
<place hlink="_0000007100000071"/>
</event>
<event handle="_0000007300000073" change="1464096763" id="E0044">
<type>Birth</type>
<place hlink="_0000007400000074"/>
</event>
<event handle="_0000007500000075" change="1464096763" id="E0045">
<type>Death</type>
<place hlink="_0000007600000076"/>
</event>
<event handle="_0000007800000078" change="1464096763" id="E0046">
<type>Birth</type>
<place hlink="_0000007900000079"/>
</event>
<event handle="_0000007a0000007a" change="1464096763" id="E0047">
<type>Death</type>
<place hlink="_0000007b0000007b"/>
</event>
<event handle="_0000007d0000007d" change="1464096763" id="E0048">
<type>Birth</type>
<place hlink="_0000007e0000007e"/>
</event>
<event handle="_0000007f0000007f" change="1464096763" id="E0049">
<type>Death</type>
<place hlink="_0000008000000080"/>
</event>
<event handle="_0000008200000082" change="1464096763" id="E0050">
<type>Birth</type>
<place hlink="_0000008300000083"/>
</event>
<event handle="_0000008400000084" change="1464096763" id="E0051">
<type>Death</type>
<place hlink="_0000008500000085"/>
</event>
<event handle="_0000008700000087" change="1464096763" id="E0052">
<type>Birth</type>
<place hlink="_0000008800000088"/>
</event>
<event handle="_0000008900000089" change="1464096763" id="E0053">
<type>Death</type>
<place hlink="_0000008a0000008a"/>
</event>
<event handle="_0000008c0000008c" change="1464096763" id="E0054">
<type>Birth</type>
<place hlink="_0000008d0000008d"/>
</event>
<event handle="_0000008e0000008e" change="1464096763" id="E0055">
<type>Death</type>
<place hlink="_0000008f0000008f"/>
</event>
<event handle="_0000009100000091" change="1464096763" id="E0056">
<type>Birth</type>
<place hlink="_0000009200000092"/>
</event>
<event handle="_0000009300000093" change="1464096763" id="E0057">
<type>Death</type>
<place hlink="_0000009400000094"/>
</event>
<event handle="_0000009600000096" change="1464096763" id="E0058">
<type>Birth</type>
<place hlink="_0000009700000097"/>
</event>
<event handle="_0000009800000098" change="1464096763" id="E0059">
<type>Death</type>
<place hlink="_0000009900000099"/>
</event>
<event handle="_0000009b0000009b" change="1464096763" id="E0060">
<type>Birth</type>
<place hlink="_0000009c0000009c"/>
</event>
<event handle="_0000009d0000009d" change="1464096763" id="E0061">
<type>Death</type>
<place hlink="_0000009e0000009e"/>
</event>
<event handle="_000000a0000000a0" change="1464096763" id="E0062">
<type>Birth</type>
<place hlink="_000000a1000000a1"/>
</event>
<event handle="_000000a2000000a2" change="1464096763" id="E0063">
<type>Death</type>
<place hlink="_000000a3000000a3"/>
</event>
<event handle="_000000a5000000a5" change="1464096763" id="E0064">
<type>Birth</type>
<place hlink="_000000a6000000a6"/>
</event>
<event handle="_000000a7000000a7" change="1464096763" id="E0065">
<type>Death</type>
<place hlink="_000000a8000000a8"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1464096763" id="FATHER">
<gender>M</gender>
<name type="Birth Name">
<surname>cyrillic (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000300000003" change="1464096763" id="MOTHER">
<gender>F</gender>
<name type="Birth Name">
<surname>greek (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000400000004" change="1464096763" id="CHILD0">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 0</surname>
</name>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000700000007" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000900000009" change="1464096763" id="CHILD1">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 1</surname>
</name>
<eventref hlink="_0000000a0000000a" role="Primary"/>
<eventref hlink="_0000000c0000000c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000e0000000e" change="1464096763" id="CHILD2">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 2</surname>
</name>
<eventref hlink="_0000000f0000000f" role="Primary"/>
<eventref hlink="_0000001100000011" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001300000013" change="1464096763" id="CHILD3">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 3</surname>
</name>
<eventref hlink="_0000001400000014" role="Primary"/>
<eventref hlink="_0000001600000016" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001800000018" change="1464096763" id="CHILD4">
<gender>U</gender>
<name type="Birth Name">
<first>code: E0 (Unicode: hook above, 0309)</first>
<surname>low rising tone mark</surname>
</name>
<eventref hlink="_0000001900000019" role="Primary"/>
<eventref hlink="_0000001b0000001b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001d0000001d" change="1464096763" id="CHILD5">
<gender>U</gender>
<name type="Birth Name">
<first>code: E1 (Unicode: grave, 0300)</first>
<surname>grave accent</surname>
</name>
<eventref hlink="_0000001e0000001e" role="Primary"/>
<eventref hlink="_0000002000000020" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002200000022" change="1464096763" id="CHILD6">
<gender>U</gender>
<name type="Birth Name">
<first>code: E2 (Unicode: acute, 0301)</first>
<surname>acute accent</surname>
</name>
<eventref hlink="_0000002300000023" role="Primary"/>
<eventref hlink="_0000002500000025" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002700000027" change="1464096763" id="CHILD7">
<gender>U</gender>
<name type="Birth Name">
<first>code: E3 (Unicode: circumflex, 0302)</first>
<surname>circumflex accent</surname>
</name>
<eventref hlink="_0000002800000028" role="Primary"/>
<eventref hlink="_0000002a0000002a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002c0000002c" change="1464096763" id="CHILD8">
<gender>U</gender>
<name type="Birth Name">
<first>code: E4 (Unicode: tilde, 0303)</first>
<surname>tilde</surname>
</name>
<eventref hlink="_0000002d0000002d" role="Primary"/>
<eventref hlink="_0000002f0000002f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003100000031" change="1464096763" id="CHILD9">
<gender>U</gender>
<name type="Birth Name">
<first>code: E5 (Unicode: macron, 0304)</first>
<surname>macron</surname>
</name>
<eventref hlink="_0000003200000032" role="Primary"/>
<eventref hlink="_0000003400000034" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003600000036" change="1464096763" id="CHILD10">
<gender>U</gender>
<name type="Birth Name">
<first>code: E6 (Unicode: breve, 0306)</first>
<surname>breve</surname>
</name>
<eventref hlink="_0000003700000037" role="Primary"/>
<eventref hlink="_0000003900000039" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003b0000003b" change="1464096763" id="CHILD11">
<gender>U</gender>
<name type="Birth Name">
<first>code: E7 (Unicode: dot above, 0307)</first>
<surname>dot above</surname>
</name>
<eventref hlink="_0000003c0000003c" role="Primary"/>
<eventref hlink="_0000003e0000003e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004000000040" change="1464096763" id="CHILD12">
<gender>U</gender>
<name type="Birth Name">
<first>code: E8 (Unicode: diaeresis, 0308)</first>
<surname>umlaut (dieresis)</surname>
</name>
<eventref hlink="_0000004100000041" role="Primary"/>
<eventref hlink="_0000004300000043" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004500000045" change="1464096763" id="CHILD13">
<gender>U</gender>
<name type="Birth Name">
<first>code: E9 (Unicode: caron, 030C)</first>
<surname>hacek</surname>
</name>
<eventref hlink="_0000004600000046" role="Primary"/>
<eventref hlink="_0000004800000048" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004a0000004a" change="1464096763" id="CHILD14">
<gender>U</gender>
<name type="Birth Name">
<first>code: EA (Unicode: ring above, 030A)</first>
<surname>circle above (angstrom)</surname>
</name>
<eventref hlink="_0000004b0000004b" role="Primary"/>
<eventref hlink="_0000004d0000004d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004f0000004f" change="1464096763" id="CHILD15">
<gender>U</gender>
<name type="Birth Name">
<first>code: EB (Unicode: ligature left half, FE20)</first>
<surname>ligature, left half</surname>
</name>
<eventref hlink="_0000005000000050" role="Primary"/>
<eventref hlink="_0000005200000052" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005400000054" change="1464096763" id="CHILD16">
<gender>U</gender>
<name type="Birth Name">
<first>code: EC (Unicode: ligature right half, FE21)</first>
<surname>ligature, right half</surname>
</name>
<eventref hlink="_0000005500000055" role="Primary"/>
<eventref hlink="_0000005700000057" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005900000059" change="1464096763" id="CHILD17">
<gender>U</gender>
<name type="Birth Name">
<first>code: ED (Unicode: comma above right, 0315)</first>
<surname>high comma, off center</surname>
</name>
<eventref hlink="_0000005a0000005a" role="Primary"/>
<eventref hlink="_0000005c0000005c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005e0000005e" change="1464096763" id="CHILD18">
<gender>U</gender>
<name type="Birth Name">
<first>code: EE (Unicode: double acute, 030B)</first>
<surname>double acute accent</surname>
</name>
<eventref hlink="_0000005f0000005f" role="Primary"/>
<eventref hlink="_0000006100000061" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006300000063" change="1464096763" id="CHILD19">
<gender>U</gender>
<name type="Birth Name">
<first>code: EF (Unicode: candrabindu, 0310)</first>
<surname>candrabindu</surname>
</name>
<eventref hlink="_0000006400000064" role="Primary"/>
<eventref hlink="_0000006600000066" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006800000068" change="1464096763" id="CHILD20">
<gender>U</gender>
<name type="Birth Name">
<first>code: F0 (Unicode: cedilla, 0327)</first>
<surname>cedilla</surname>
</name>
<eventref hlink="_0000006900000069" role="Primary"/>
<eventref hlink="_0000006b0000006b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006d0000006d" change="1464096763" id="CHILD21">
<gender>U</gender>
<name type="Birth Name">
<first>code: F1 (Unicode: ogonek, 0328)</first>
<surname>right hook</surname>
</name>
<eventref hlink="_0000006e0000006e" role="Primary"/>
<eventref hlink="_0000007000000070" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007200000072" change="1464096763" id="CHILD22">
<gender>U</gender>
<name type="Birth Name">
<first>code: F2 (Unicode: dot below, 0323)</first>
<surname>dot below</surname>
</name>
<eventref hlink="_0000007300000073" role="Primary"/>
<eventref hlink="_0000007500000075" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007700000077" change="1464096763" id="CHILD23">
<gender>U</gender>
<name type="Birth Name">
<first>code: F3 (Unicode: diaeresis below, 0324)</first>
<surname>double dot below</surname>
</name>
<eventref hlink="_0000007800000078" role="Primary"/>
<eventref hlink="_0000007a0000007a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007c0000007c" change="1464096763" id="CHILD24">
<gender>U</gender>
<name type="Birth Name">
<first>code: F4 (Unicode: ring below, 0325)</first>
<surname>circle below</surname>
</name>
<eventref hlink="_0000007d0000007d" role="Primary"/>
<eventref hlink="_0000007f0000007f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008100000081" change="1464096763" id="CHILD25">
<gender>U</gender>
<name type="Birth Name">
<first>code: F5 (Unicode: double low line, 0333)</first>
<surname>double underscore</surname>
</name>
<eventref hlink="_0000008200000082" role="Primary"/>
<eventref hlink="_0000008400000084" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008600000086" change="1464096763" id="CHILD26">
<gender>U</gender>
<name type="Birth Name">
<first>code: F6 (Unicode: line below, 0332)</first>
<surname>underscore</surname>
</name>
<eventref hlink="_0000008700000087" role="Primary"/>
<eventref hlink="_0000008900000089" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008b0000008b" change="1464096763" id="CHILD27">
<gender>U</gender>
<name type="Birth Name">
<first>code: F7 (Unicode: comma below, 0326)</first>
<surname>left hook</surname>
</name>
<eventref hlink="_0000008c0000008c" role="Primary"/>
<eventref hlink="_0000008e0000008e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009000000090" change="1464096763" id="CHILD28">
<gender>U</gender>
<name type="Birth Name">
<first>code: F8 (Unicode: left half ring below, 031C)</first>
<surname>right cedilla</surname>
</name>
<eventref hlink="_0000009100000091" role="Primary"/>
<eventref hlink="_0000009300000093" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009500000095" change="1464096763" id="CHILD29">
<gender>U</gender>
<name type="Birth Name">
<first>code: F9 (Unicode: breve below, 032E)</first>
<surname>half circle below</surname>
</name>
<eventref hlink="_0000009600000096" role="Primary"/>
<eventref hlink="_0000009800000098" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009a0000009a" change="1464096763" id="CHILD30">
<gender>U</gender>
<name type="Birth Name">
<first>code: FA (Unicode: double tilde left half, FE22)</first>
<surname>double tilde, left half</surname>
</name>
<eventref hlink="_0000009b0000009b" role="Primary"/>
<eventref hlink="_0000009d0000009d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009f0000009f" change="1464096763" id="CHILD31">
<gender>U</gender>
<name type="Birth Name">
<first>code: FB (Unicode: double tilde right half, FE23)</first>
<surname>double tilde, right half</surname>
</name>
<eventref hlink="_000000a0000000a0" role="Primary"/>
<eventref hlink="_000000a2000000a2" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_000000a4000000a4" change="1464096763" id="CHILD32">
<gender>U</gender>
<name type="Birth Name">
<first>code: FE (Unicode: comma above, 0313)</first>
<surname>high comma, centered</surname>
</name>
<eventref hlink="_000000a5000000a5" role="Primary"/>
<eventref hlink="_000000a7000000a7" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
</people>
<families>
<family handle="_0000000200000002" change="1464096763" id="FAMILY">
<rel type="Unknown"/>
<father hlink="_0000000100000001"/>
<mother hlink="_0000000300000003"/>
<childref hlink="_0000000400000004"/>
<childref hlink="_0000000900000009"/>
<childref hlink="_0000000e0000000e"/>
<childref hlink="_0000001300000013"/>
<childref hlink="_0000001800000018"/>
<childref hlink="_0000001d0000001d"/>
<childref hlink="_0000002200000022"/>
<childref hlink="_0000002700000027"/>
<childref hlink="_0000002c0000002c"/>
<childref hlink="_0000003100000031"/>
<childref hlink="_0000003600000036"/>
<childref hlink="_0000003b0000003b"/>
<childref hlink="_0000004000000040"/>
<childref hlink="_0000004500000045"/>
<childref hlink="_0000004a0000004a"/>
<childref hlink="_0000004f0000004f"/>
<childref hlink="_0000005400000054"/>
<childref hlink="_0000005900000059"/>
<childref hlink="_0000005e0000005e"/>
<childref hlink="_0000006300000063"/>
<childref hlink="_0000006800000068"/>
<childref hlink="_0000006d0000006d"/>
<childref hlink="_0000007200000072"/>
<childref hlink="_0000007700000077"/>
<childref hlink="_0000007c0000007c"/>
<childref hlink="_0000008100000081"/>
<childref hlink="_0000008600000086"/>
<childref hlink="_0000008b0000008b"/>
<childref hlink="_0000009000000090"/>
<childref hlink="_0000009500000095"/>
<childref hlink="_0000009a0000009a"/>
<childref hlink="_0000009f0000009f"/>
<childref hlink="_000000a4000000a4"/>
</family>
</families>
<places>
<placeobj handle="_0000000600000006" change="1464096763" id="P0000" type="Unknown">
<ptitle>slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)</ptitle>
<pname value="slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)"/>
</placeobj>
<placeobj handle="_0000000800000008" change="1464096763" id="P0001" type="Unknown">
<ptitle>ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)</ptitle>
<pname value="ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)"/>
</placeobj>
<placeobj handle="_0000000b0000000b" change="1464096763" id="P0002" type="Unknown">
<ptitle>patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)</ptitle>
<pname value="patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)"/>
</placeobj>
<placeobj handle="_0000000d0000000d" change="1464096763" id="P0003" type="Unknown">
<ptitle>alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)</ptitle>
<pname value="alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)"/>
</placeobj>
<placeobj handle="_0000001000000010" change="1464096763" id="P0004" type="Unknown">
<ptitle>thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)</ptitle>
<pname value="thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)"/>
</placeobj>
<placeobj handle="_0000001200000012" change="1464096763" id="P0005" type="Unknown">
<ptitle>dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)</ptitle>
<pname value="dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)"/>
</placeobj>
<placeobj handle="_0000001500000015" change="1464096763" id="P0006" type="Unknown">
<ptitle>degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)</ptitle>
<pname value="degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)"/>
</placeobj>
<placeobj handle="_0000001700000017" change="1464096763" id="P0007" type="Unknown">
<ptitle>musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)</ptitle>
<pname value="musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)"/>
</placeobj>
<placeobj handle="_0000001a0000001a" change="1464096763" id="P0008" type="Unknown">
<ptitle>ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉</ptitle>
<pname value="ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉"/>
</placeobj>
<placeobj handle="_0000001c0000001c" change="1464096763" id="P0009" type="Unknown">
<ptitle>ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉</ptitle>
<pname value="ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉"/>
</placeobj>
<placeobj handle="_0000001f0000001f" change="1464096763" id="P0010" type="Unknown">
<ptitle>ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀</ptitle>
<pname value="ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀"/>
</placeobj>
<placeobj handle="_0000002100000021" change="1464096763" id="P0011" type="Unknown">
<ptitle>àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀</ptitle>
<pname value="àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀"/>
</placeobj>
<placeobj handle="_0000002400000024" change="1464096763" id="P0012" type="Unknown">
<ptitle>ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ</ptitle>
<pname value="ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ"/>
</placeobj>
<placeobj handle="_0000002600000026" change="1464096763" id="P0013" type="Unknown">
<ptitle>áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź</ptitle>
<pname value="áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź"/>
</placeobj>
<placeobj handle="_0000002900000029" change="1464096763" id="P0014" type="Unknown">
<ptitle>ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ</ptitle>
<pname value="ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ"/>
</placeobj>
<placeobj handle="_0000002b0000002b" change="1464096763" id="P0015" type="Unknown">
<ptitle>âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ</ptitle>
<pname value="âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ"/>
</placeobj>
<placeobj handle="_0000002e0000002e" change="1464096763" id="P0016" type="Unknown">
<ptitle>ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃</ptitle>
<pname value="ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃"/>
</placeobj>
<placeobj handle="_0000003000000030" change="1464096763" id="P0017" type="Unknown">
<ptitle>ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃</ptitle>
<pname value="ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃"/>
</placeobj>
<placeobj handle="_0000003300000033" change="1464096763" id="P0018" type="Unknown">
<ptitle>ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄</ptitle>
<pname value="ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄"/>
</placeobj>
<placeobj handle="_0000003500000035" change="1464096763" id="P0019" type="Unknown">
<ptitle>āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄</ptitle>
<pname value="āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄"/>
</placeobj>
<placeobj handle="_0000003800000038" change="1464096763" id="P0020" type="Unknown">
<ptitle>ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆</ptitle>
<pname value="ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆"/>
</placeobj>
<placeobj handle="_0000003a0000003a" change="1464096763" id="P0021" type="Unknown">
<ptitle>ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆</ptitle>
<pname value="ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆"/>
</placeobj>
<placeobj handle="_0000003d0000003d" change="1464096763" id="P0022" type="Unknown">
<ptitle>ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ</ptitle>
<pname value="ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ"/>
</placeobj>
<placeobj handle="_0000003f0000003f" change="1464096763" id="P0023" type="Unknown">
<ptitle>ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż</ptitle>
<pname value="ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż"/>
</placeobj>
<placeobj handle="_0000004200000042" change="1464096763" id="P0024" type="Unknown">
<ptitle>ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈</ptitle>
<pname value="ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈"/>
</placeobj>
<placeobj handle="_0000004400000044" change="1464096763" id="P0025" type="Unknown">
<ptitle>äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈</ptitle>
<pname value="äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈"/>
</placeobj>
<placeobj handle="_0000004700000047" change="1464096763" id="P0026" type="Unknown">
<ptitle>ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž</ptitle>
<pname value="ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž"/>
</placeobj>
<placeobj handle="_0000004900000049" change="1464096763" id="P0027" type="Unknown">
<ptitle>ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž</ptitle>
<pname value="ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž"/>
</placeobj>
<placeobj handle="_0000004c0000004c" change="1464096763" id="P0028" type="Unknown">
<ptitle>ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊</ptitle>
<pname value="ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊"/>
</placeobj>
<placeobj handle="_0000004e0000004e" change="1464096763" id="P0029" type="Unknown">
<ptitle>åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊</ptitle>
<pname value="åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊"/>
</placeobj>
<placeobj handle="_0000005100000051" change="1464096763" id="P0030" type="Unknown">
<ptitle>A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠</ptitle>
<pname value="A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠"/>
</placeobj>
<placeobj handle="_0000005300000053" change="1464096763" id="P0031" type="Unknown">
<ptitle>a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠</ptitle>
<pname value="a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠"/>
</placeobj>
<placeobj handle="_0000005600000056" change="1464096763" id="P0032" type="Unknown">
<ptitle>A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡</ptitle>
<pname value="A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡"/>
</placeobj>
<placeobj handle="_0000005800000058" change="1464096763" id="P0033" type="Unknown">
<ptitle>a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡</ptitle>
<pname value="a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡"/>
</placeobj>
<placeobj handle="_0000005b0000005b" change="1464096763" id="P0034" type="Unknown">
<ptitle>A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕</ptitle>
<pname value="A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕"/>
</placeobj>
<placeobj handle="_0000005d0000005d" change="1464096763" id="P0035" type="Unknown">
<ptitle>a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕</ptitle>
<pname value="a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕"/>
</placeobj>
<placeobj handle="_0000006000000060" change="1464096763" id="P0036" type="Unknown">
<ptitle>A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋</ptitle>
<pname value="A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋"/>
</placeobj>
<placeobj handle="_0000006200000062" change="1464096763" id="P0037" type="Unknown">
<ptitle>a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋</ptitle>
<pname value="a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋"/>
</placeobj>
<placeobj handle="_0000006500000065" change="1464096763" id="P0038" type="Unknown">
<ptitle>A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐</ptitle>
<pname value="A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐"/>
</placeobj>
<placeobj handle="_0000006700000067" change="1464096763" id="P0039" type="Unknown">
<ptitle>a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐</ptitle>
<pname value="a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐"/>
</placeobj>
<placeobj handle="_0000006a0000006a" change="1464096763" id="P0040" type="Unknown">
<ptitle>A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧</ptitle>
<pname value="A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧"/>
</placeobj>
<placeobj handle="_0000006c0000006c" change="1464096763" id="P0041" type="Unknown">
<ptitle>a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧</ptitle>
<pname value="a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧"/>
</placeobj>
<placeobj handle="_0000006f0000006f" change="1464096763" id="P0042" type="Unknown">
<ptitle>ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨</ptitle>
<pname value="ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨"/>
</placeobj>
<placeobj handle="_0000007100000071" change="1464096763" id="P0043" type="Unknown">
<ptitle>ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨</ptitle>
<pname value="ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨"/>
</placeobj>
<placeobj handle="_0000007400000074" change="1464096763" id="P0044" type="Unknown">
<ptitle>ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ</ptitle>
<pname value="ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ"/>
</placeobj>
<placeobj handle="_0000007600000076" change="1464096763" id="P0045" type="Unknown">
<ptitle>ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ</ptitle>
<pname value="ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ"/>
</placeobj>
<placeobj handle="_0000007900000079" change="1464096763" id="P0046" type="Unknown">
<ptitle>A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤</ptitle>
<pname value="A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤"/>
</placeobj>
<placeobj handle="_0000007b0000007b" change="1464096763" id="P0047" type="Unknown">
<ptitle>a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤</ptitle>
<pname value="a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤"/>
</placeobj>
<placeobj handle="_0000007e0000007e" change="1464096763" id="P0048" type="Unknown">
<ptitle>ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥</ptitle>
<pname value="ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥"/>
</placeobj>
<placeobj handle="_0000008000000080" change="1464096763" id="P0049" type="Unknown">
<ptitle>ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥</ptitle>
<pname value="ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥"/>
</placeobj>
<placeobj handle="_0000008300000083" change="1464096763" id="P0050" type="Unknown">
<ptitle>A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳</ptitle>
<pname value="A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳"/>
</placeobj>
<placeobj handle="_0000008500000085" change="1464096763" id="P0051" type="Unknown">
<ptitle>a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳</ptitle>
<pname value="a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳"/>
</placeobj>
<placeobj handle="_0000008800000088" change="1464096763" id="P0052" type="Unknown">
<ptitle>A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲</ptitle>
<pname value="A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲"/>
</placeobj>
<placeobj handle="_0000008a0000008a" change="1464096763" id="P0053" type="Unknown">
<ptitle>a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲</ptitle>
<pname value="a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲"/>
</placeobj>
<placeobj handle="_0000008d0000008d" change="1464096763" id="P0054" type="Unknown">
<ptitle>A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦</ptitle>
<pname value="A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦"/>
</placeobj>
<placeobj handle="_0000008f0000008f" change="1464096763" id="P0055" type="Unknown">
<ptitle>a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦</ptitle>
<pname value="a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦"/>
</placeobj>
<placeobj handle="_0000009200000092" change="1464096763" id="P0056" type="Unknown">
<ptitle>A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜</ptitle>
<pname value="A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜"/>
</placeobj>
<placeobj handle="_0000009400000094" change="1464096763" id="P0057" type="Unknown">
<ptitle>a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜</ptitle>
<pname value="a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜"/>
</placeobj>
<placeobj handle="_0000009700000097" change="1464096763" id="P0058" type="Unknown">
<ptitle>A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮</ptitle>
<pname value="A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮"/>
</placeobj>
<placeobj handle="_0000009900000099" change="1464096763" id="P0059" type="Unknown">
<ptitle>a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮</ptitle>
<pname value="a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮"/>
</placeobj>
<placeobj handle="_0000009c0000009c" change="1464096763" id="P0060" type="Unknown">
<ptitle>A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢</ptitle>
<pname value="A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢"/>
</placeobj>
<placeobj handle="_0000009e0000009e" change="1464096763" id="P0061" type="Unknown">
<ptitle>a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢</ptitle>
<pname value="a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢"/>
</placeobj>
<placeobj handle="_000000a1000000a1" change="1464096763" id="P0062" type="Unknown">
<ptitle>A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣</ptitle>
<pname value="A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣"/>
</placeobj>
<placeobj handle="_000000a3000000a3" change="1464096763" id="P0063" type="Unknown">
<ptitle>a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣</ptitle>
<pname value="a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣"/>
</placeobj>
<placeobj handle="_000000a6000000a6" change="1464096763" id="P0064" type="Unknown">
<ptitle>A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓</ptitle>
<pname value="A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓"/>
</placeobj>
<placeobj handle="_000000a8000000a8" change="1464096763" id="P0065" type="Unknown">
<ptitle>a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓</ptitle>
<pname value="a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓"/>
</placeobj>
</places>
</database>

View File

@@ -1,315 +0,0 @@
0 HEAD
1 CHAR ANSEL
1 SOUR REGISTERED_SOURCE_NAME
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
1 NOTE This GEDCOM transmission contains a charcter set test. It consists
2 CONT of a single family (two parents, many children). The parents are empty
2 CONT in the ANSEL version of the transmission. The children contain the
2 CONT combined letters and the special charcters (value > 128).
2 CONT The NAME tag of each 'person' is the name of the characters tested
2 CONT within the person. The BIRT.PLAC and DEAT.PLAC tags contain the
2 CONT test-strings.
2 CONT The first children contain special characters. Here the test string
2 CONT is 'character name (test character), ...' where 'character name'
2 CONT is the name of the character (like 'british pound') and
2 CONT 'test character' is a single byte representing this character
2 CONT in ANSEL.
2 CONT The last children contain combined characters. The name tag gives
2 CONT the name of the non-spacing character tested within the 'person'.
2 CONT Within the name the hex-values of the non-spacing character is given
2 CONT in ANSEL and UNICODE. The test strings contain the whole latin
2 CONT alphabet combined with this non-spacing character: captial letters
2 CONT in the BIRT.PLAC tag and small letters in the DEAT.PLAC tag.
2 CONT Example: One 'person' is named 'circle above'. The BIRT.PLAC
2 CONT tag contains all 26 capital letters with a small ring on top.
2 CONT Note: Not all charcters can be displayed on all computers.
2 CONT This strongly depends on the installed fonts and codepages.
2 CONT Many of the combined characters generated here do not even have
2 CONT a UNICDOE code point!
2 CONT This file based mainly on the GEDCOM 5.5 specification
2 CONT (see: ftp.gedcom.org/pub/genealogy/gedcom/gedcom55.zip)
2 CONT and on an updated ANSEL description in:
2 CONT http://www.gendex.com/gedcom55/55gcappd.htm
1 SUBM @SUBMITTER@
1 DATE 20 JAN 1998
0 @SUBMITTER@ SUBM
1 NAME /H. Eichmann/
1 ADDR email: h.eichmann@@gmx.de
0 @FATHER@ INDI
1 NAME /cyrillic (not possible in ANSEL)/
1 SEX M
1 FAMS @FAMILY@
0 @MOTHER@ INDI
1 NAME /greek (not possible in ANSEL)/
1 SEX F
1 FAMS @FAMILY@
0 @CHILD0@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 0/
1 BIRT
2 PLAC slash l - uppercase (<28>), slash o - uppercase (<28>), slash d - uppercase (<28>), thorn - uppercase (<28>)
1 DEAT
2 PLAC ligature ae - uppercase (<28>), ligature oe - uppercase (<28>), miagkii znak (<28>), middle dot (<28>), musical flat (<28>)
0 @CHILD1@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 1/
1 BIRT
2 PLAC patent mark (<28>), plus-or-minus (<28>), hook o - uppercase (<28>), hook u - uppercase (<28>)
1 DEAT
2 PLAC alif (<28>), ayn (<28>), slash l - lowercase (<28>), slash o - lowercase (<28>), slash d - lowercase (<28>)
0 @CHILD2@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 2/
1 BIRT
2 PLAC thorn - lowercase (<28>), ligature ae - lowercase (<28>), ligature oe - lowercase (<28>), tverdyi znak (<28>)
1 DEAT
2 PLAC dotless i - lowercase (<28>), british pound (<28>), eth (<28>), hook o - lowercase (<28>), hook u - lowercase (<28>)
0 @CHILD3@ INDI
1 FAMC @FAMILY@
1 NAME /Special Characters 3/
1 BIRT
2 PLAC degree sign (<28>), script l (<28>), phonograph copyright mark (<28>), copyright symbol (<28>)
1 DEAT
2 PLAC musical sharp (<28>), inverted question mark (<28>), inverted exclamation mark (<28>), es zet (<28>)
0 @CHILD4@ INDI
1 FAMC @FAMILY@
1 NAME code: E0 (Unicode: hook above, 0309)/low rising tone mark/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD5@ INDI
1 FAMC @FAMILY@
1 NAME code: E1 (Unicode: grave, 0300)/grave accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD6@ INDI
1 FAMC @FAMILY@
1 NAME code: E2 (Unicode: acute, 0301)/acute accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD7@ INDI
1 FAMC @FAMILY@
1 NAME code: E3 (Unicode: circumflex, 0302)/circumflex accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD8@ INDI
1 FAMC @FAMILY@
1 NAME code: E4 (Unicode: tilde, 0303)/tilde/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD9@ INDI
1 FAMC @FAMILY@
1 NAME code: E5 (Unicode: macron, 0304)/macron/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD10@ INDI
1 FAMC @FAMILY@
1 NAME code: E6 (Unicode: breve, 0306)/breve/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD11@ INDI
1 FAMC @FAMILY@
1 NAME code: E7 (Unicode: dot above, 0307)/dot above/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD12@ INDI
1 FAMC @FAMILY@
1 NAME code: E8 (Unicode: diaeresis, 0308)/umlaut (dieresis)/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD13@ INDI
1 FAMC @FAMILY@
1 NAME code: E9 (Unicode: caron, 030C)/hacek/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD14@ INDI
1 FAMC @FAMILY@
1 NAME code: EA (Unicode: ring above, 030A)/circle above (angstrom)/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD15@ INDI
1 FAMC @FAMILY@
1 NAME code: EB (Unicode: ligature left half, FE20)/ligature, left half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD16@ INDI
1 FAMC @FAMILY@
1 NAME code: EC (Unicode: ligature right half, FE21)/ligature, right half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD17@ INDI
1 FAMC @FAMILY@
1 NAME code: ED (Unicode: comma above right, 0315)/high comma, off center/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD18@ INDI
1 FAMC @FAMILY@
1 NAME code: EE (Unicode: double acute, 030B)/double acute accent/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD19@ INDI
1 FAMC @FAMILY@
1 NAME code: EF (Unicode: candrabindu, 0310)/candrabindu/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD20@ INDI
1 FAMC @FAMILY@
1 NAME code: F0 (Unicode: cedilla, 0327)/cedilla/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD21@ INDI
1 FAMC @FAMILY@
1 NAME code: F1 (Unicode: ogonek, 0328)/right hook/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD22@ INDI
1 FAMC @FAMILY@
1 NAME code: F2 (Unicode: dot below, 0323)/dot below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD23@ INDI
1 FAMC @FAMILY@
1 NAME code: F3 (Unicode: diaeresis below, 0324)/double dot below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD24@ INDI
1 FAMC @FAMILY@
1 NAME code: F4 (Unicode: ring below, 0325)/circle below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD25@ INDI
1 FAMC @FAMILY@
1 NAME code: F5 (Unicode: double low line, 0333)/double underscore/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD26@ INDI
1 FAMC @FAMILY@
1 NAME code: F6 (Unicode: line below, 0332)/underscore/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD27@ INDI
1 FAMC @FAMILY@
1 NAME code: F7 (Unicode: comma below, 0326)/left hook/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD28@ INDI
1 FAMC @FAMILY@
1 NAME code: F8 (Unicode: left half ring below, 031C)/right cedilla/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD29@ INDI
1 FAMC @FAMILY@
1 NAME code: F9 (Unicode: breve below, 032E)/half circle below/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD30@ INDI
1 FAMC @FAMILY@
1 NAME code: FA (Unicode: double tilde left half, FE22)/double tilde, left half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD31@ INDI
1 FAMC @FAMILY@
1 NAME code: FB (Unicode: double tilde right half, FE23)/double tilde, right half/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @CHILD32@ INDI
1 FAMC @FAMILY@
1 NAME code: FE (Unicode: comma above, 0313)/high comma, centered/
1 BIRT
2 PLAC <20>A<EFBFBD>B<EFBFBD>C<EFBFBD>D<EFBFBD>E<EFBFBD>F<EFBFBD>G<EFBFBD>H<EFBFBD>I<EFBFBD>J<EFBFBD>K<EFBFBD>L<EFBFBD>M<EFBFBD>N<EFBFBD>O<EFBFBD>P<EFBFBD>Q<EFBFBD>R<EFBFBD>S<EFBFBD>T<EFBFBD>U<EFBFBD>V<EFBFBD>W<EFBFBD>X<EFBFBD>Y<EFBFBD>Z
1 DEAT
2 PLAC <20>a<EFBFBD>b<EFBFBD>c<EFBFBD>d<EFBFBD>e<EFBFBD>f<EFBFBD>g<EFBFBD>h<EFBFBD>i<EFBFBD>j<EFBFBD>k<EFBFBD>l<EFBFBD>m<EFBFBD>n<EFBFBD>o<EFBFBD>p<EFBFBD>q<EFBFBD>r<EFBFBD>s<EFBFBD>t<EFBFBD>u<EFBFBD>v<EFBFBD>w<EFBFBD>x<EFBFBD>y<EFBFBD>z
0 @FAMILY@ FAM
1 HUSB @FATHER@
1 WIFE @MOTHER@
1 CHIL @CHILD0@
1 CHIL @CHILD1@
1 CHIL @CHILD2@
1 CHIL @CHILD3@
1 CHIL @CHILD4@
1 CHIL @CHILD5@
1 CHIL @CHILD6@
1 CHIL @CHILD7@
1 CHIL @CHILD8@
1 CHIL @CHILD9@
1 CHIL @CHILD10@
1 CHIL @CHILD11@
1 CHIL @CHILD12@
1 CHIL @CHILD13@
1 CHIL @CHILD14@
1 CHIL @CHILD15@
1 CHIL @CHILD16@
1 CHIL @CHILD17@
1 CHIL @CHILD18@
1 CHIL @CHILD19@
1 CHIL @CHILD20@
1 CHIL @CHILD21@
1 CHIL @CHILD22@
1 CHIL @CHILD23@
1 CHIL @CHILD24@
1 CHIL @CHILD25@
1 CHIL @CHILD26@
1 CHIL @CHILD27@
1 CHIL @CHILD28@
1 CHIL @CHILD29@
1 CHIL @CHILD30@
1 CHIL @CHILD31@
1 CHIL @CHILD32@
0 TRLR

View File

@@ -1,926 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-05-24" version="GrampsAIO64-4.2.1-2"/>
<researcher>
<resname>/H. Eichmann/</resname>
<resaddr>email: h.eichmann@@gmx.de</resaddr>
</researcher>
</header>
<events>
<event handle="_0000000500000005" change="1464096763" id="E0000">
<type>Birth</type>
<place hlink="_0000000600000006"/>
</event>
<event handle="_0000000700000007" change="1464096763" id="E0001">
<type>Death</type>
<place hlink="_0000000800000008"/>
</event>
<event handle="_0000000a0000000a" change="1464096763" id="E0002">
<type>Birth</type>
<place hlink="_0000000b0000000b"/>
</event>
<event handle="_0000000c0000000c" change="1464096763" id="E0003">
<type>Death</type>
<place hlink="_0000000d0000000d"/>
</event>
<event handle="_0000000f0000000f" change="1464096763" id="E0004">
<type>Birth</type>
<place hlink="_0000001000000010"/>
</event>
<event handle="_0000001100000011" change="1464096763" id="E0005">
<type>Death</type>
<place hlink="_0000001200000012"/>
</event>
<event handle="_0000001400000014" change="1464096763" id="E0006">
<type>Birth</type>
<place hlink="_0000001500000015"/>
</event>
<event handle="_0000001600000016" change="1464096763" id="E0007">
<type>Death</type>
<place hlink="_0000001700000017"/>
</event>
<event handle="_0000001900000019" change="1464096763" id="E0008">
<type>Birth</type>
<place hlink="_0000001a0000001a"/>
</event>
<event handle="_0000001b0000001b" change="1464096763" id="E0009">
<type>Death</type>
<place hlink="_0000001c0000001c"/>
</event>
<event handle="_0000001e0000001e" change="1464096763" id="E0010">
<type>Birth</type>
<place hlink="_0000001f0000001f"/>
</event>
<event handle="_0000002000000020" change="1464096763" id="E0011">
<type>Death</type>
<place hlink="_0000002100000021"/>
</event>
<event handle="_0000002300000023" change="1464096763" id="E0012">
<type>Birth</type>
<place hlink="_0000002400000024"/>
</event>
<event handle="_0000002500000025" change="1464096763" id="E0013">
<type>Death</type>
<place hlink="_0000002600000026"/>
</event>
<event handle="_0000002800000028" change="1464096763" id="E0014">
<type>Birth</type>
<place hlink="_0000002900000029"/>
</event>
<event handle="_0000002a0000002a" change="1464096763" id="E0015">
<type>Death</type>
<place hlink="_0000002b0000002b"/>
</event>
<event handle="_0000002d0000002d" change="1464096763" id="E0016">
<type>Birth</type>
<place hlink="_0000002e0000002e"/>
</event>
<event handle="_0000002f0000002f" change="1464096763" id="E0017">
<type>Death</type>
<place hlink="_0000003000000030"/>
</event>
<event handle="_0000003200000032" change="1464096763" id="E0018">
<type>Birth</type>
<place hlink="_0000003300000033"/>
</event>
<event handle="_0000003400000034" change="1464096763" id="E0019">
<type>Death</type>
<place hlink="_0000003500000035"/>
</event>
<event handle="_0000003700000037" change="1464096763" id="E0020">
<type>Birth</type>
<place hlink="_0000003800000038"/>
</event>
<event handle="_0000003900000039" change="1464096763" id="E0021">
<type>Death</type>
<place hlink="_0000003a0000003a"/>
</event>
<event handle="_0000003c0000003c" change="1464096763" id="E0022">
<type>Birth</type>
<place hlink="_0000003d0000003d"/>
</event>
<event handle="_0000003e0000003e" change="1464096763" id="E0023">
<type>Death</type>
<place hlink="_0000003f0000003f"/>
</event>
<event handle="_0000004100000041" change="1464096763" id="E0024">
<type>Birth</type>
<place hlink="_0000004200000042"/>
</event>
<event handle="_0000004300000043" change="1464096763" id="E0025">
<type>Death</type>
<place hlink="_0000004400000044"/>
</event>
<event handle="_0000004600000046" change="1464096763" id="E0026">
<type>Birth</type>
<place hlink="_0000004700000047"/>
</event>
<event handle="_0000004800000048" change="1464096763" id="E0027">
<type>Death</type>
<place hlink="_0000004900000049"/>
</event>
<event handle="_0000004b0000004b" change="1464096763" id="E0028">
<type>Birth</type>
<place hlink="_0000004c0000004c"/>
</event>
<event handle="_0000004d0000004d" change="1464096763" id="E0029">
<type>Death</type>
<place hlink="_0000004e0000004e"/>
</event>
<event handle="_0000005000000050" change="1464096763" id="E0030">
<type>Birth</type>
<place hlink="_0000005100000051"/>
</event>
<event handle="_0000005200000052" change="1464096763" id="E0031">
<type>Death</type>
<place hlink="_0000005300000053"/>
</event>
<event handle="_0000005500000055" change="1464096763" id="E0032">
<type>Birth</type>
<place hlink="_0000005600000056"/>
</event>
<event handle="_0000005700000057" change="1464096763" id="E0033">
<type>Death</type>
<place hlink="_0000005800000058"/>
</event>
<event handle="_0000005a0000005a" change="1464096763" id="E0034">
<type>Birth</type>
<place hlink="_0000005b0000005b"/>
</event>
<event handle="_0000005c0000005c" change="1464096763" id="E0035">
<type>Death</type>
<place hlink="_0000005d0000005d"/>
</event>
<event handle="_0000005f0000005f" change="1464096763" id="E0036">
<type>Birth</type>
<place hlink="_0000006000000060"/>
</event>
<event handle="_0000006100000061" change="1464096763" id="E0037">
<type>Death</type>
<place hlink="_0000006200000062"/>
</event>
<event handle="_0000006400000064" change="1464096763" id="E0038">
<type>Birth</type>
<place hlink="_0000006500000065"/>
</event>
<event handle="_0000006600000066" change="1464096763" id="E0039">
<type>Death</type>
<place hlink="_0000006700000067"/>
</event>
<event handle="_0000006900000069" change="1464096763" id="E0040">
<type>Birth</type>
<place hlink="_0000006a0000006a"/>
</event>
<event handle="_0000006b0000006b" change="1464096763" id="E0041">
<type>Death</type>
<place hlink="_0000006c0000006c"/>
</event>
<event handle="_0000006e0000006e" change="1464096763" id="E0042">
<type>Birth</type>
<place hlink="_0000006f0000006f"/>
</event>
<event handle="_0000007000000070" change="1464096763" id="E0043">
<type>Death</type>
<place hlink="_0000007100000071"/>
</event>
<event handle="_0000007300000073" change="1464096763" id="E0044">
<type>Birth</type>
<place hlink="_0000007400000074"/>
</event>
<event handle="_0000007500000075" change="1464096763" id="E0045">
<type>Death</type>
<place hlink="_0000007600000076"/>
</event>
<event handle="_0000007800000078" change="1464096763" id="E0046">
<type>Birth</type>
<place hlink="_0000007900000079"/>
</event>
<event handle="_0000007a0000007a" change="1464096763" id="E0047">
<type>Death</type>
<place hlink="_0000007b0000007b"/>
</event>
<event handle="_0000007d0000007d" change="1464096763" id="E0048">
<type>Birth</type>
<place hlink="_0000007e0000007e"/>
</event>
<event handle="_0000007f0000007f" change="1464096763" id="E0049">
<type>Death</type>
<place hlink="_0000008000000080"/>
</event>
<event handle="_0000008200000082" change="1464096763" id="E0050">
<type>Birth</type>
<place hlink="_0000008300000083"/>
</event>
<event handle="_0000008400000084" change="1464096763" id="E0051">
<type>Death</type>
<place hlink="_0000008500000085"/>
</event>
<event handle="_0000008700000087" change="1464096763" id="E0052">
<type>Birth</type>
<place hlink="_0000008800000088"/>
</event>
<event handle="_0000008900000089" change="1464096763" id="E0053">
<type>Death</type>
<place hlink="_0000008a0000008a"/>
</event>
<event handle="_0000008c0000008c" change="1464096763" id="E0054">
<type>Birth</type>
<place hlink="_0000008d0000008d"/>
</event>
<event handle="_0000008e0000008e" change="1464096763" id="E0055">
<type>Death</type>
<place hlink="_0000008f0000008f"/>
</event>
<event handle="_0000009100000091" change="1464096763" id="E0056">
<type>Birth</type>
<place hlink="_0000009200000092"/>
</event>
<event handle="_0000009300000093" change="1464096763" id="E0057">
<type>Death</type>
<place hlink="_0000009400000094"/>
</event>
<event handle="_0000009600000096" change="1464096763" id="E0058">
<type>Birth</type>
<place hlink="_0000009700000097"/>
</event>
<event handle="_0000009800000098" change="1464096763" id="E0059">
<type>Death</type>
<place hlink="_0000009900000099"/>
</event>
<event handle="_0000009b0000009b" change="1464096763" id="E0060">
<type>Birth</type>
<place hlink="_0000009c0000009c"/>
</event>
<event handle="_0000009d0000009d" change="1464096763" id="E0061">
<type>Death</type>
<place hlink="_0000009e0000009e"/>
</event>
<event handle="_000000a0000000a0" change="1464096763" id="E0062">
<type>Birth</type>
<place hlink="_000000a1000000a1"/>
</event>
<event handle="_000000a2000000a2" change="1464096763" id="E0063">
<type>Death</type>
<place hlink="_000000a3000000a3"/>
</event>
<event handle="_000000a5000000a5" change="1464096763" id="E0064">
<type>Birth</type>
<place hlink="_000000a6000000a6"/>
</event>
<event handle="_000000a7000000a7" change="1464096763" id="E0065">
<type>Death</type>
<place hlink="_000000a8000000a8"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1464096763" id="FATHER">
<gender>M</gender>
<name type="Birth Name">
<surname>cyrillic (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000300000003" change="1464096763" id="MOTHER">
<gender>F</gender>
<name type="Birth Name">
<surname>greek (not possible in ANSEL)</surname>
</name>
<parentin hlink="_0000000200000002"/>
</person>
<person handle="_0000000400000004" change="1464096763" id="CHILD0">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 0</surname>
</name>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000700000007" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000900000009" change="1464096763" id="CHILD1">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 1</surname>
</name>
<eventref hlink="_0000000a0000000a" role="Primary"/>
<eventref hlink="_0000000c0000000c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000000e0000000e" change="1464096763" id="CHILD2">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 2</surname>
</name>
<eventref hlink="_0000000f0000000f" role="Primary"/>
<eventref hlink="_0000001100000011" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001300000013" change="1464096763" id="CHILD3">
<gender>U</gender>
<name type="Birth Name">
<surname>Special Characters 3</surname>
</name>
<eventref hlink="_0000001400000014" role="Primary"/>
<eventref hlink="_0000001600000016" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001800000018" change="1464096763" id="CHILD4">
<gender>U</gender>
<name type="Birth Name">
<first>code: E0 (Unicode: hook above, 0309)</first>
<surname>low rising tone mark</surname>
</name>
<eventref hlink="_0000001900000019" role="Primary"/>
<eventref hlink="_0000001b0000001b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000001d0000001d" change="1464096763" id="CHILD5">
<gender>U</gender>
<name type="Birth Name">
<first>code: E1 (Unicode: grave, 0300)</first>
<surname>grave accent</surname>
</name>
<eventref hlink="_0000001e0000001e" role="Primary"/>
<eventref hlink="_0000002000000020" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002200000022" change="1464096763" id="CHILD6">
<gender>U</gender>
<name type="Birth Name">
<first>code: E2 (Unicode: acute, 0301)</first>
<surname>acute accent</surname>
</name>
<eventref hlink="_0000002300000023" role="Primary"/>
<eventref hlink="_0000002500000025" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002700000027" change="1464096763" id="CHILD7">
<gender>U</gender>
<name type="Birth Name">
<first>code: E3 (Unicode: circumflex, 0302)</first>
<surname>circumflex accent</surname>
</name>
<eventref hlink="_0000002800000028" role="Primary"/>
<eventref hlink="_0000002a0000002a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000002c0000002c" change="1464096763" id="CHILD8">
<gender>U</gender>
<name type="Birth Name">
<first>code: E4 (Unicode: tilde, 0303)</first>
<surname>tilde</surname>
</name>
<eventref hlink="_0000002d0000002d" role="Primary"/>
<eventref hlink="_0000002f0000002f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003100000031" change="1464096763" id="CHILD9">
<gender>U</gender>
<name type="Birth Name">
<first>code: E5 (Unicode: macron, 0304)</first>
<surname>macron</surname>
</name>
<eventref hlink="_0000003200000032" role="Primary"/>
<eventref hlink="_0000003400000034" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003600000036" change="1464096763" id="CHILD10">
<gender>U</gender>
<name type="Birth Name">
<first>code: E6 (Unicode: breve, 0306)</first>
<surname>breve</surname>
</name>
<eventref hlink="_0000003700000037" role="Primary"/>
<eventref hlink="_0000003900000039" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000003b0000003b" change="1464096763" id="CHILD11">
<gender>U</gender>
<name type="Birth Name">
<first>code: E7 (Unicode: dot above, 0307)</first>
<surname>dot above</surname>
</name>
<eventref hlink="_0000003c0000003c" role="Primary"/>
<eventref hlink="_0000003e0000003e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004000000040" change="1464096763" id="CHILD12">
<gender>U</gender>
<name type="Birth Name">
<first>code: E8 (Unicode: diaeresis, 0308)</first>
<surname>umlaut (dieresis)</surname>
</name>
<eventref hlink="_0000004100000041" role="Primary"/>
<eventref hlink="_0000004300000043" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004500000045" change="1464096763" id="CHILD13">
<gender>U</gender>
<name type="Birth Name">
<first>code: E9 (Unicode: caron, 030C)</first>
<surname>hacek</surname>
</name>
<eventref hlink="_0000004600000046" role="Primary"/>
<eventref hlink="_0000004800000048" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004a0000004a" change="1464096763" id="CHILD14">
<gender>U</gender>
<name type="Birth Name">
<first>code: EA (Unicode: ring above, 030A)</first>
<surname>circle above (angstrom)</surname>
</name>
<eventref hlink="_0000004b0000004b" role="Primary"/>
<eventref hlink="_0000004d0000004d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000004f0000004f" change="1464096763" id="CHILD15">
<gender>U</gender>
<name type="Birth Name">
<first>code: EB (Unicode: ligature left half, FE20)</first>
<surname>ligature, left half</surname>
</name>
<eventref hlink="_0000005000000050" role="Primary"/>
<eventref hlink="_0000005200000052" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005400000054" change="1464096763" id="CHILD16">
<gender>U</gender>
<name type="Birth Name">
<first>code: EC (Unicode: ligature right half, FE21)</first>
<surname>ligature, right half</surname>
</name>
<eventref hlink="_0000005500000055" role="Primary"/>
<eventref hlink="_0000005700000057" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005900000059" change="1464096763" id="CHILD17">
<gender>U</gender>
<name type="Birth Name">
<first>code: ED (Unicode: comma above right, 0315)</first>
<surname>high comma, off center</surname>
</name>
<eventref hlink="_0000005a0000005a" role="Primary"/>
<eventref hlink="_0000005c0000005c" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000005e0000005e" change="1464096763" id="CHILD18">
<gender>U</gender>
<name type="Birth Name">
<first>code: EE (Unicode: double acute, 030B)</first>
<surname>double acute accent</surname>
</name>
<eventref hlink="_0000005f0000005f" role="Primary"/>
<eventref hlink="_0000006100000061" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006300000063" change="1464096763" id="CHILD19">
<gender>U</gender>
<name type="Birth Name">
<first>code: EF (Unicode: candrabindu, 0310)</first>
<surname>candrabindu</surname>
</name>
<eventref hlink="_0000006400000064" role="Primary"/>
<eventref hlink="_0000006600000066" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006800000068" change="1464096763" id="CHILD20">
<gender>U</gender>
<name type="Birth Name">
<first>code: F0 (Unicode: cedilla, 0327)</first>
<surname>cedilla</surname>
</name>
<eventref hlink="_0000006900000069" role="Primary"/>
<eventref hlink="_0000006b0000006b" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000006d0000006d" change="1464096763" id="CHILD21">
<gender>U</gender>
<name type="Birth Name">
<first>code: F1 (Unicode: ogonek, 0328)</first>
<surname>right hook</surname>
</name>
<eventref hlink="_0000006e0000006e" role="Primary"/>
<eventref hlink="_0000007000000070" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007200000072" change="1464096763" id="CHILD22">
<gender>U</gender>
<name type="Birth Name">
<first>code: F2 (Unicode: dot below, 0323)</first>
<surname>dot below</surname>
</name>
<eventref hlink="_0000007300000073" role="Primary"/>
<eventref hlink="_0000007500000075" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007700000077" change="1464096763" id="CHILD23">
<gender>U</gender>
<name type="Birth Name">
<first>code: F3 (Unicode: diaeresis below, 0324)</first>
<surname>double dot below</surname>
</name>
<eventref hlink="_0000007800000078" role="Primary"/>
<eventref hlink="_0000007a0000007a" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000007c0000007c" change="1464096763" id="CHILD24">
<gender>U</gender>
<name type="Birth Name">
<first>code: F4 (Unicode: ring below, 0325)</first>
<surname>circle below</surname>
</name>
<eventref hlink="_0000007d0000007d" role="Primary"/>
<eventref hlink="_0000007f0000007f" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008100000081" change="1464096763" id="CHILD25">
<gender>U</gender>
<name type="Birth Name">
<first>code: F5 (Unicode: double low line, 0333)</first>
<surname>double underscore</surname>
</name>
<eventref hlink="_0000008200000082" role="Primary"/>
<eventref hlink="_0000008400000084" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008600000086" change="1464096763" id="CHILD26">
<gender>U</gender>
<name type="Birth Name">
<first>code: F6 (Unicode: line below, 0332)</first>
<surname>underscore</surname>
</name>
<eventref hlink="_0000008700000087" role="Primary"/>
<eventref hlink="_0000008900000089" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000008b0000008b" change="1464096763" id="CHILD27">
<gender>U</gender>
<name type="Birth Name">
<first>code: F7 (Unicode: comma below, 0326)</first>
<surname>left hook</surname>
</name>
<eventref hlink="_0000008c0000008c" role="Primary"/>
<eventref hlink="_0000008e0000008e" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009000000090" change="1464096763" id="CHILD28">
<gender>U</gender>
<name type="Birth Name">
<first>code: F8 (Unicode: left half ring below, 031C)</first>
<surname>right cedilla</surname>
</name>
<eventref hlink="_0000009100000091" role="Primary"/>
<eventref hlink="_0000009300000093" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009500000095" change="1464096763" id="CHILD29">
<gender>U</gender>
<name type="Birth Name">
<first>code: F9 (Unicode: breve below, 032E)</first>
<surname>half circle below</surname>
</name>
<eventref hlink="_0000009600000096" role="Primary"/>
<eventref hlink="_0000009800000098" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009a0000009a" change="1464096763" id="CHILD30">
<gender>U</gender>
<name type="Birth Name">
<first>code: FA (Unicode: double tilde left half, FE22)</first>
<surname>double tilde, left half</surname>
</name>
<eventref hlink="_0000009b0000009b" role="Primary"/>
<eventref hlink="_0000009d0000009d" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_0000009f0000009f" change="1464096763" id="CHILD31">
<gender>U</gender>
<name type="Birth Name">
<first>code: FB (Unicode: double tilde right half, FE23)</first>
<surname>double tilde, right half</surname>
</name>
<eventref hlink="_000000a0000000a0" role="Primary"/>
<eventref hlink="_000000a2000000a2" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
<person handle="_000000a4000000a4" change="1464096763" id="CHILD32">
<gender>U</gender>
<name type="Birth Name">
<first>code: FE (Unicode: comma above, 0313)</first>
<surname>high comma, centered</surname>
</name>
<eventref hlink="_000000a5000000a5" role="Primary"/>
<eventref hlink="_000000a7000000a7" role="Primary"/>
<childof hlink="_0000000200000002"/>
</person>
</people>
<families>
<family handle="_0000000200000002" change="1464096763" id="FAMILY">
<rel type="Unknown"/>
<father hlink="_0000000100000001"/>
<mother hlink="_0000000300000003"/>
<childref hlink="_0000000400000004"/>
<childref hlink="_0000000900000009"/>
<childref hlink="_0000000e0000000e"/>
<childref hlink="_0000001300000013"/>
<childref hlink="_0000001800000018"/>
<childref hlink="_0000001d0000001d"/>
<childref hlink="_0000002200000022"/>
<childref hlink="_0000002700000027"/>
<childref hlink="_0000002c0000002c"/>
<childref hlink="_0000003100000031"/>
<childref hlink="_0000003600000036"/>
<childref hlink="_0000003b0000003b"/>
<childref hlink="_0000004000000040"/>
<childref hlink="_0000004500000045"/>
<childref hlink="_0000004a0000004a"/>
<childref hlink="_0000004f0000004f"/>
<childref hlink="_0000005400000054"/>
<childref hlink="_0000005900000059"/>
<childref hlink="_0000005e0000005e"/>
<childref hlink="_0000006300000063"/>
<childref hlink="_0000006800000068"/>
<childref hlink="_0000006d0000006d"/>
<childref hlink="_0000007200000072"/>
<childref hlink="_0000007700000077"/>
<childref hlink="_0000007c0000007c"/>
<childref hlink="_0000008100000081"/>
<childref hlink="_0000008600000086"/>
<childref hlink="_0000008b0000008b"/>
<childref hlink="_0000009000000090"/>
<childref hlink="_0000009500000095"/>
<childref hlink="_0000009a0000009a"/>
<childref hlink="_0000009f0000009f"/>
<childref hlink="_000000a4000000a4"/>
</family>
</families>
<places>
<placeobj handle="_0000000600000006" change="1464096763" id="P0000" type="Unknown">
<ptitle>slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)</ptitle>
<pname value="slash l - uppercase (Ł), slash o - uppercase (Ø), slash d - uppercase (Đ), thorn - uppercase (Þ)"/>
</placeobj>
<placeobj handle="_0000000800000008" change="1464096763" id="P0001" type="Unknown">
<ptitle>ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)</ptitle>
<pname value="ligature ae - uppercase (Æ), ligature oe - uppercase (Œ), miagkii znak (ʹ), middle dot (·), musical flat (♭)"/>
</placeobj>
<placeobj handle="_0000000b0000000b" change="1464096763" id="P0002" type="Unknown">
<ptitle>patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)</ptitle>
<pname value="patent mark (®), plus-or-minus (±), hook o - uppercase (Ơ), hook u - uppercase (Ư)"/>
</placeobj>
<placeobj handle="_0000000d0000000d" change="1464096763" id="P0003" type="Unknown">
<ptitle>alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)</ptitle>
<pname value="alif (ʼ), ayn (ʻ), slash l - lowercase (ł), slash o - lowercase (ø), slash d - lowercase (đ)"/>
</placeobj>
<placeobj handle="_0000001000000010" change="1464096763" id="P0004" type="Unknown">
<ptitle>thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)</ptitle>
<pname value="thorn - lowercase (þ), ligature ae - lowercase (æ), ligature oe - lowercase (œ), tverdyi znak (ʺ)"/>
</placeobj>
<placeobj handle="_0000001200000012" change="1464096763" id="P0005" type="Unknown">
<ptitle>dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)</ptitle>
<pname value="dotless i - lowercase (ı), british pound (£), eth (ð), hook o - lowercase (ơ), hook u - lowercase (ư)"/>
</placeobj>
<placeobj handle="_0000001500000015" change="1464096763" id="P0006" type="Unknown">
<ptitle>degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)</ptitle>
<pname value="degree sign (°), script l (), phonograph copyright mark (℗), copyright symbol (©)"/>
</placeobj>
<placeobj handle="_0000001700000017" change="1464096763" id="P0007" type="Unknown">
<ptitle>musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)</ptitle>
<pname value="musical sharp (♯), inverted question mark (¿), inverted exclamation mark (¡), es zet (ß)"/>
</placeobj>
<placeobj handle="_0000001a0000001a" change="1464096763" id="P0008" type="Unknown">
<ptitle>ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉</ptitle>
<pname value="ẢB̉C̉D̉ẺF̉G̉H̉ỈJ̉K̉L̉M̉N̉ỎP̉Q̉R̉S̉T̉ỦV̉W̉X̉ỶZ̉"/>
</placeobj>
<placeobj handle="_0000001c0000001c" change="1464096763" id="P0009" type="Unknown">
<ptitle>ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉</ptitle>
<pname value="ảb̉c̉d̉ẻf̉g̉h̉ỉj̉k̉l̉m̉n̉ỏp̉q̉r̉s̉t̉ủv̉w̉x̉ỷz̉"/>
</placeobj>
<placeobj handle="_0000001f0000001f" change="1464096763" id="P0010" type="Unknown">
<ptitle>ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀</ptitle>
<pname value="ÀB̀C̀D̀ÈF̀G̀H̀ÌJ̀K̀L̀M̀ǸÒP̀Q̀R̀S̀T̀ÙV̀ẀX̀ỲZ̀"/>
</placeobj>
<placeobj handle="_0000002100000021" change="1464096763" id="P0011" type="Unknown">
<ptitle>àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀</ptitle>
<pname value="àb̀c̀d̀èf̀g̀h̀ìj̀k̀l̀m̀ǹòp̀q̀r̀s̀t̀ùv̀ẁx̀ỳz̀"/>
</placeobj>
<placeobj handle="_0000002400000024" change="1464096763" id="P0012" type="Unknown">
<ptitle>ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ</ptitle>
<pname value="ÁB́ĆD́ÉF́ǴH́ÍJ́ḰĹḾŃÓṔQ́ŔŚT́ÚV́ẂX́ÝŹ"/>
</placeobj>
<placeobj handle="_0000002600000026" change="1464096763" id="P0013" type="Unknown">
<ptitle>áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź</ptitle>
<pname value="áb́ćd́éf́ǵh́íj́ḱĺḿńóṕq́ŕśt́úv́ẃx́ýź"/>
</placeobj>
<placeobj handle="_0000002900000029" change="1464096763" id="P0014" type="Unknown">
<ptitle>ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ</ptitle>
<pname value="ÂB̂ĈD̂ÊF̂ĜĤÎĴK̂L̂M̂N̂ÔP̂Q̂R̂ŜT̂ÛV̂ŴX̂ŶẐ"/>
</placeobj>
<placeobj handle="_0000002b0000002b" change="1464096763" id="P0015" type="Unknown">
<ptitle>âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ</ptitle>
<pname value="âb̂ĉd̂êf̂ĝĥîĵk̂l̂m̂n̂ôp̂q̂r̂ŝt̂ûv̂ŵx̂ŷẑ"/>
</placeobj>
<placeobj handle="_0000002e0000002e" change="1464096763" id="P0016" type="Unknown">
<ptitle>ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃</ptitle>
<pname value="ÃB̃C̃D̃ẼF̃G̃H̃ĨJ̃K̃L̃M̃ÑÕP̃Q̃R̃S̃T̃ŨṼW̃X̃ỸZ̃"/>
</placeobj>
<placeobj handle="_0000003000000030" change="1464096763" id="P0017" type="Unknown">
<ptitle>ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃</ptitle>
<pname value="ãb̃c̃d̃ẽf̃g̃h̃ĩj̃k̃l̃m̃ñõp̃q̃r̃s̃t̃ũṽw̃x̃ỹz̃"/>
</placeobj>
<placeobj handle="_0000003300000033" change="1464096763" id="P0018" type="Unknown">
<ptitle>ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄</ptitle>
<pname value="ĀB̄C̄D̄ĒF̄ḠH̄ĪJ̄K̄L̄M̄N̄ŌP̄Q̄R̄S̄T̄ŪV̄W̄X̄ȲZ̄"/>
</placeobj>
<placeobj handle="_0000003500000035" change="1464096763" id="P0019" type="Unknown">
<ptitle>āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄</ptitle>
<pname value="āb̄c̄d̄ēf̄ḡh̄īj̄k̄l̄m̄n̄ōp̄q̄r̄s̄t̄ūv̄w̄x̄ȳz̄"/>
</placeobj>
<placeobj handle="_0000003800000038" change="1464096763" id="P0020" type="Unknown">
<ptitle>ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆</ptitle>
<pname value="ĂB̆C̆D̆ĔF̆ĞH̆ĬJ̆K̆L̆M̆N̆ŎP̆Q̆R̆S̆T̆ŬV̆W̆X̆Y̆Z̆"/>
</placeobj>
<placeobj handle="_0000003a0000003a" change="1464096763" id="P0021" type="Unknown">
<ptitle>ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆</ptitle>
<pname value="ăb̆c̆d̆ĕf̆ğh̆ĭj̆k̆l̆m̆n̆ŏp̆q̆r̆s̆t̆ŭv̆w̆x̆y̆z̆"/>
</placeobj>
<placeobj handle="_0000003d0000003d" change="1464096763" id="P0022" type="Unknown">
<ptitle>ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ</ptitle>
<pname value="ȦḂĊḊĖḞĠḢİJ̇K̇L̇ṀṄȮṖQ̇ṘṠṪU̇V̇ẆẊẎŻ"/>
</placeobj>
<placeobj handle="_0000003f0000003f" change="1464096763" id="P0023" type="Unknown">
<ptitle>ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż</ptitle>
<pname value="ȧḃċḋėḟġḣi̇j̇k̇l̇ṁṅȯṗq̇ṙṡṫu̇v̇ẇẋẏż"/>
</placeobj>
<placeobj handle="_0000004200000042" change="1464096763" id="P0024" type="Unknown">
<ptitle>ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈</ptitle>
<pname value="ÄB̈C̈D̈ËF̈G̈ḦÏJ̈K̈L̈M̈N̈ÖP̈Q̈R̈S̈T̈ÜV̈ẄẌŸZ̈"/>
</placeobj>
<placeobj handle="_0000004400000044" change="1464096763" id="P0025" type="Unknown">
<ptitle>äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈</ptitle>
<pname value="äb̈c̈d̈ëf̈g̈ḧïj̈k̈l̈m̈n̈öp̈q̈r̈s̈ẗüv̈ẅẍÿz̈"/>
</placeobj>
<placeobj handle="_0000004700000047" change="1464096763" id="P0026" type="Unknown">
<ptitle>ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž</ptitle>
<pname value="ǍB̌ČĎĚF̌ǦȞǏJ̌ǨĽM̌ŇǑP̌Q̌ŘŠŤǓV̌W̌X̌Y̌Ž"/>
</placeobj>
<placeobj handle="_0000004900000049" change="1464096763" id="P0027" type="Unknown">
<ptitle>ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž</ptitle>
<pname value="ǎb̌čďěf̌ǧȟǐǰǩľm̌ňǒp̌q̌řšťǔv̌w̌x̌y̌ž"/>
</placeobj>
<placeobj handle="_0000004c0000004c" change="1464096763" id="P0028" type="Unknown">
<ptitle>ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊</ptitle>
<pname value="ÅB̊C̊D̊E̊F̊G̊H̊I̊J̊K̊L̊M̊N̊O̊P̊Q̊R̊S̊T̊ŮV̊W̊X̊Y̊Z̊"/>
</placeobj>
<placeobj handle="_0000004e0000004e" change="1464096763" id="P0029" type="Unknown">
<ptitle>åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊</ptitle>
<pname value="åb̊c̊d̊e̊f̊g̊h̊i̊j̊k̊l̊m̊n̊o̊p̊q̊r̊s̊t̊ův̊ẘx̊ẙz̊"/>
</placeobj>
<placeobj handle="_0000005100000051" change="1464096763" id="P0030" type="Unknown">
<ptitle>A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠</ptitle>
<pname value="A︠B︠C︠D︠E︠F︠G︠H︠I︠J︠K︠L︠M︠N︠O︠P︠Q︠R︠S︠T︠U︠V︠W︠X︠Y︠Z︠"/>
</placeobj>
<placeobj handle="_0000005300000053" change="1464096763" id="P0031" type="Unknown">
<ptitle>a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠</ptitle>
<pname value="a︠b︠c︠d︠e︠f︠g︠h︠i︠j︠k︠l︠m︠n︠o︠p︠q︠r︠s︠t︠u︠v︠w︠x︠y︠z︠"/>
</placeobj>
<placeobj handle="_0000005600000056" change="1464096763" id="P0032" type="Unknown">
<ptitle>A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡</ptitle>
<pname value="A︡B︡C︡D︡E︡F︡G︡H︡I︡J︡K︡L︡M︡N︡O︡P︡Q︡R︡S︡T︡U︡V︡W︡X︡Y︡Z︡"/>
</placeobj>
<placeobj handle="_0000005800000058" change="1464096763" id="P0033" type="Unknown">
<ptitle>a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡</ptitle>
<pname value="a︡b︡c︡d︡e︡f︡g︡h︡i︡j︡k︡l︡m︡n︡o︡p︡q︡r︡s︡t︡u︡v︡w︡x︡y︡z︡"/>
</placeobj>
<placeobj handle="_0000005b0000005b" change="1464096763" id="P0034" type="Unknown">
<ptitle>A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕</ptitle>
<pname value="A̕B̕C̕D̕E̕F̕G̕H̕I̕J̕K̕L̕M̕N̕O̕P̕Q̕R̕S̕T̕U̕V̕W̕X̕Y̕Z̕"/>
</placeobj>
<placeobj handle="_0000005d0000005d" change="1464096763" id="P0035" type="Unknown">
<ptitle>a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕</ptitle>
<pname value="a̕b̕c̕d̕e̕f̕g̕h̕i̕j̕k̕l̕m̕n̕o̕p̕q̕r̕s̕t̕u̕v̕w̕x̕y̕z̕"/>
</placeobj>
<placeobj handle="_0000006000000060" change="1464096763" id="P0036" type="Unknown">
<ptitle>A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋</ptitle>
<pname value="A̋B̋C̋D̋E̋F̋G̋H̋I̋J̋K̋L̋M̋N̋ŐP̋Q̋R̋S̋T̋ŰV̋W̋X̋Y̋Z̋"/>
</placeobj>
<placeobj handle="_0000006200000062" change="1464096763" id="P0037" type="Unknown">
<ptitle>a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋</ptitle>
<pname value="a̋b̋c̋d̋e̋f̋g̋h̋i̋j̋k̋l̋m̋n̋őp̋q̋r̋s̋t̋űv̋w̋x̋y̋z̋"/>
</placeobj>
<placeobj handle="_0000006500000065" change="1464096763" id="P0038" type="Unknown">
<ptitle>A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐</ptitle>
<pname value="A̐B̐C̐D̐E̐F̐G̐H̐I̐J̐K̐L̐M̐N̐O̐P̐Q̐R̐S̐T̐U̐V̐W̐X̐Y̐Z̐"/>
</placeobj>
<placeobj handle="_0000006700000067" change="1464096763" id="P0039" type="Unknown">
<ptitle>a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐</ptitle>
<pname value="a̐b̐c̐d̐e̐f̐g̐h̐i̐j̐k̐l̐m̐n̐o̐p̐q̐r̐s̐t̐u̐v̐w̐x̐y̐z̐"/>
</placeobj>
<placeobj handle="_0000006a0000006a" change="1464096763" id="P0040" type="Unknown">
<ptitle>A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧</ptitle>
<pname value="A̧B̧ÇḐȨF̧ĢḨI̧J̧ĶĻM̧ŅO̧P̧Q̧ŖŞŢU̧V̧W̧X̧Y̧Z̧"/>
</placeobj>
<placeobj handle="_0000006c0000006c" change="1464096763" id="P0041" type="Unknown">
<ptitle>a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧</ptitle>
<pname value="a̧b̧çḑȩf̧ģḩi̧j̧ķļm̧ņo̧p̧q̧ŗşţu̧v̧w̧x̧y̧z̧"/>
</placeobj>
<placeobj handle="_0000006f0000006f" change="1464096763" id="P0042" type="Unknown">
<ptitle>ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨</ptitle>
<pname value="ĄB̨C̨D̨ĘF̨G̨H̨ĮJ̨K̨L̨M̨N̨ǪP̨Q̨R̨S̨T̨ŲV̨W̨X̨Y̨Z̨"/>
</placeobj>
<placeobj handle="_0000007100000071" change="1464096763" id="P0043" type="Unknown">
<ptitle>ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨</ptitle>
<pname value="ąb̨c̨d̨ęf̨g̨h̨įj̨k̨l̨m̨n̨ǫp̨q̨r̨s̨t̨ųv̨w̨x̨y̨z̨"/>
</placeobj>
<placeobj handle="_0000007400000074" change="1464096763" id="P0044" type="Unknown">
<ptitle>ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ</ptitle>
<pname value="ẠḄC̣ḌẸF̣G̣ḤỊJ̣ḲḶṂṆỌP̣Q̣ṚṢṬỤṾẈX̣ỴẒ"/>
</placeobj>
<placeobj handle="_0000007600000076" change="1464096763" id="P0045" type="Unknown">
<ptitle>ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ</ptitle>
<pname value="ạḅc̣ḍẹf̣g̣ḥịj̣ḳḷṃṇọp̣q̣ṛṣṭụṿẉx̣ỵẓ"/>
</placeobj>
<placeobj handle="_0000007900000079" change="1464096763" id="P0046" type="Unknown">
<ptitle>A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤</ptitle>
<pname value="A̤B̤C̤D̤E̤F̤G̤H̤I̤J̤K̤L̤M̤N̤O̤P̤Q̤R̤S̤T̤ṲV̤W̤X̤Y̤Z̤"/>
</placeobj>
<placeobj handle="_0000007b0000007b" change="1464096763" id="P0047" type="Unknown">
<ptitle>a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤</ptitle>
<pname value="a̤b̤c̤d̤e̤f̤g̤h̤i̤j̤k̤l̤m̤n̤o̤p̤q̤r̤s̤t̤ṳv̤w̤x̤y̤z̤"/>
</placeobj>
<placeobj handle="_0000007e0000007e" change="1464096763" id="P0048" type="Unknown">
<ptitle>ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥</ptitle>
<pname value="ḀB̥C̥D̥E̥F̥G̥H̥I̥J̥K̥L̥M̥N̥O̥P̥Q̥R̥S̥T̥U̥V̥W̥X̥Y̥Z̥"/>
</placeobj>
<placeobj handle="_0000008000000080" change="1464096763" id="P0049" type="Unknown">
<ptitle>ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥</ptitle>
<pname value="ḁb̥c̥d̥e̥f̥g̥h̥i̥j̥k̥l̥m̥n̥o̥p̥q̥r̥s̥t̥u̥v̥w̥x̥y̥z̥"/>
</placeobj>
<placeobj handle="_0000008300000083" change="1464096763" id="P0050" type="Unknown">
<ptitle>A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳</ptitle>
<pname value="A̳B̳C̳D̳E̳F̳G̳H̳I̳J̳K̳L̳M̳N̳O̳P̳Q̳R̳S̳T̳U̳V̳W̳X̳Y̳Z̳"/>
</placeobj>
<placeobj handle="_0000008500000085" change="1464096763" id="P0051" type="Unknown">
<ptitle>a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳</ptitle>
<pname value="a̳b̳c̳d̳e̳f̳g̳h̳i̳j̳k̳l̳m̳n̳o̳p̳q̳r̳s̳t̳u̳v̳w̳x̳y̳z̳"/>
</placeobj>
<placeobj handle="_0000008800000088" change="1464096763" id="P0052" type="Unknown">
<ptitle>A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲</ptitle>
<pname value="A̲B̲C̲D̲E̲F̲G̲H̲I̲J̲K̲L̲M̲N̲O̲P̲Q̲R̲S̲T̲U̲V̲W̲X̲Y̲Z̲"/>
</placeobj>
<placeobj handle="_0000008a0000008a" change="1464096763" id="P0053" type="Unknown">
<ptitle>a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲</ptitle>
<pname value="a̲b̲c̲d̲e̲f̲g̲h̲i̲j̲k̲l̲m̲n̲o̲p̲q̲r̲s̲t̲u̲v̲w̲x̲y̲z̲"/>
</placeobj>
<placeobj handle="_0000008d0000008d" change="1464096763" id="P0054" type="Unknown">
<ptitle>A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦</ptitle>
<pname value="A̦B̦C̦D̦E̦F̦G̦H̦I̦J̦K̦L̦M̦N̦O̦P̦Q̦R̦ȘȚU̦V̦W̦X̦Y̦Z̦"/>
</placeobj>
<placeobj handle="_0000008f0000008f" change="1464096763" id="P0055" type="Unknown">
<ptitle>a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦</ptitle>
<pname value="a̦b̦c̦d̦e̦f̦g̦h̦i̦j̦k̦l̦m̦n̦o̦p̦q̦r̦șțu̦v̦w̦x̦y̦z̦"/>
</placeobj>
<placeobj handle="_0000009200000092" change="1464096763" id="P0056" type="Unknown">
<ptitle>A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜</ptitle>
<pname value="A̜B̜C̜D̜E̜F̜G̜H̜I̜J̜K̜L̜M̜N̜O̜P̜Q̜R̜S̜T̜U̜V̜W̜X̜Y̜Z̜"/>
</placeobj>
<placeobj handle="_0000009400000094" change="1464096763" id="P0057" type="Unknown">
<ptitle>a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜</ptitle>
<pname value="a̜b̜c̜d̜e̜f̜g̜h̜i̜j̜k̜l̜m̜n̜o̜p̜q̜r̜s̜t̜u̜v̜w̜x̜y̜z̜"/>
</placeobj>
<placeobj handle="_0000009700000097" change="1464096763" id="P0058" type="Unknown">
<ptitle>A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮</ptitle>
<pname value="A̮B̮C̮D̮E̮F̮G̮ḪI̮J̮K̮L̮M̮N̮O̮P̮Q̮R̮S̮T̮U̮V̮W̮X̮Y̮Z̮"/>
</placeobj>
<placeobj handle="_0000009900000099" change="1464096763" id="P0059" type="Unknown">
<ptitle>a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮</ptitle>
<pname value="a̮b̮c̮d̮e̮f̮g̮ḫi̮j̮k̮l̮m̮n̮o̮p̮q̮r̮s̮t̮u̮v̮w̮x̮y̮z̮"/>
</placeobj>
<placeobj handle="_0000009c0000009c" change="1464096763" id="P0060" type="Unknown">
<ptitle>A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢</ptitle>
<pname value="A︢B︢C︢D︢E︢F︢G︢H︢I︢J︢K︢L︢M︢N︢O︢P︢Q︢R︢S︢T︢U︢V︢W︢X︢Y︢Z︢"/>
</placeobj>
<placeobj handle="_0000009e0000009e" change="1464096763" id="P0061" type="Unknown">
<ptitle>a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢</ptitle>
<pname value="a︢b︢c︢d︢e︢f︢g︢h︢i︢j︢k︢l︢m︢n︢o︢p︢q︢r︢s︢t︢u︢v︢w︢x︢y︢z︢"/>
</placeobj>
<placeobj handle="_000000a1000000a1" change="1464096763" id="P0062" type="Unknown">
<ptitle>A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣</ptitle>
<pname value="A︣B︣C︣D︣E︣F︣G︣H︣I︣J︣K︣L︣M︣N︣O︣P︣Q︣R︣S︣T︣U︣V︣W︣X︣Y︣Z︣"/>
</placeobj>
<placeobj handle="_000000a3000000a3" change="1464096763" id="P0063" type="Unknown">
<ptitle>a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣</ptitle>
<pname value="a︣b︣c︣d︣e︣f︣g︣h︣i︣j︣k︣l︣m︣n︣o︣p︣q︣r︣s︣t︣u︣v︣w︣x︣y︣z︣"/>
</placeobj>
<placeobj handle="_000000a6000000a6" change="1464096763" id="P0064" type="Unknown">
<ptitle>A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓</ptitle>
<pname value="A̓B̓C̓D̓E̓F̓G̓H̓I̓J̓K̓L̓M̓N̓O̓P̓Q̓R̓S̓T̓U̓V̓W̓X̓Y̓Z̓"/>
</placeobj>
<placeobj handle="_000000a8000000a8" change="1464096763" id="P0065" type="Unknown">
<ptitle>a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓</ptitle>
<pname value="a̓b̓c̓d̓e̓f̓g̓h̓i̓j̓k̓l̓m̓n̓o̓p̓q̓r̓s̓t̓u̓v̓w̓x̓y̓z̓"/>
</placeobj>
</places>
</database>

View File

@@ -1,82 +0,0 @@
0 HEAD
1 SOUR FTM
2 VERS Family Tree Maker (22.0.0.1410)
2 NAME Family Tree Maker for Windows
2 CORP Ancestry.com
3 ADDR 360 W 4800 N
4 CONT Provo, UT 84604
1 DEST GED55
1 DATE 01 MAR 2016
1 CHAR UTF-8
1 FILE D:\Family Tree Maker\imp_FTM_LINK.ged
1 SUBM @SUBM@
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
0 @SUBM@ SUBM
1 NAME The Subm /Tester/
1 ADDR 123 Main St., Winslow, PA, 12345
2 ADR1 123 Main St.
2 CITY Winslow
2 STAE PA
2 POST 12345
0 @I0@ INDI
1 NAME The /Tester/
2 SOUR @S6@
3 PAGE 777, record for The Tester
3 _JUST Because its good
1 BIRT
2 DATE 29 DEC 1954
2 PLAC 123 High St, Cleveland, Cuyahoga, Ohio, USA, 44140
3 FORM Street, City, County, State, Country, Zip code
1 _CIRC
2 DATE 11 JAN 1955
2 PLAC 456 Main St, Cleveland, Cuyahoga, Ohio, USA, 44140
3 FORM Street, City, County, State, Country, Zip code
1 _ELEC Mayor
2 TYPE Small town
2 DATE 1980
2 PLAC Littetown, Smallcounty, Ohio, USA
1 FAMS @F4211@
1 _XYZ He should keep his zipper closed
2 DATE 1979
1 EVEN Celebration
2 TYPE Independence Day
2 DATE 4 JUL 1981
0 @I1@ INDI
1 NAME Mrs /Tester/
1 RESI
2 DATE 30 DEC 1954
2 ADDR 123 Main St., Winslow, PA, 12345
3 ADR1 123 Main St.
3 CITY Winslow
3 STAE PA
3 POST 12345
2 NOTE Address as event is legal, with PHON,FAX,EMAIL,WWW
1 FAMS @F4211@
0 @I2@ INDI
1 NAME Tom /Tester/
1 FAMC @F4211@
0 @F4211@ FAM
1 HUSB @I0@
1 WIFE @I1@
1 CHIL @I2@
2 _FREL Natural
2 _MREL Natural
1 MARR
2 DATE 1970
2 PLAC St Rafaels Church, Bay Village, Cuyahoga, Ohio, USA
1 _INFIDELITY
2 DATE 1979
2 PLAC Of Ill Repute, Shaker Heights, Ohio, USA
1 _SEPR
2 DATE 1980
2 PLAC Cuyahoga, OHIO, USA
0 @S6@ SOUR
1 TITL Ohio Births, 1958-2002
1 REPO @R1@
0 @R1@ REPO
1 NAME Testers Repository
1 ADDR 123 High St., OSF village, CA, USA
1 NOTE Testers Repository Record
0 TRLR

View File

@@ -1,197 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
<resname>The Subm /Tester/</resname>
<resaddr>123 Main St.</resaddr>
<rescity>Winslow</rescity>
<resstate>PA</resstate>
<respostal>12345</respostal>
</researcher>
</header>
<events>
<event handle="_0000000500000005" change="1472500305" id="E0000">
<type>Birth</type>
<dateval val="1954-12-29"/>
<place hlink="_0000000600000006"/>
</event>
<event handle="_0000000700000007" change="1472500305" id="E0001">
<type>Circumcision</type>
<dateval val="1955-01-11"/>
<place hlink="_0000000800000008"/>
</event>
<event handle="_0000000900000009" change="1472500305" id="E0002">
<type>Elected</type>
<dateval val="1980"/>
<place hlink="_0000000a0000000a"/>
<description>Small town</description>
</event>
<event handle="_0000000c0000000c" change="1472500305" id="E0003">
<type>_XYZ</type>
<dateval val="1979"/>
<description>He should keep his zipper closed</description>
</event>
<event handle="_0000000d0000000d" change="1472500305" id="E0004">
<type>Independence Day</type>
<dateval val="1981-07-04"/>
<description>Celebration</description>
</event>
<event handle="_0000000f0000000f" change="1472500305" id="E0005">
<type>Residence</type>
<dateval val="1954-12-30"/>
<place hlink="_0000001100000011"/>
<noteref hlink="_0000001000000010"/>
</event>
<event handle="_0000001300000013" change="1472500305" id="E0006">
<type>Marriage</type>
<dateval val="1970"/>
<place hlink="_0000001400000014"/>
</event>
<event handle="_0000001500000015" change="1472500305" id="E0007">
<type>_INFIDELITY</type>
<dateval val="1979"/>
<place hlink="_0000001600000016"/>
</event>
<event handle="_0000001700000017" change="1472500305" id="E0008">
<type>Separation</type>
<dateval val="1980"/>
<place hlink="_0000001800000018"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1472500305" id="I0000">
<gender>U</gender>
<name type="Birth Name">
<first>The</first>
<surname>Tester</surname>
<citationref hlink="_0000000400000004"/>
</name>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000700000007" role="Primary"/>
<eventref hlink="_0000000900000009" role="Primary"/>
<eventref hlink="_0000000c0000000c" role="Primary"/>
<eventref hlink="_0000000d0000000d" role="Primary"/>
<parentin hlink="_0000000b0000000b"/>
</person>
<person handle="_0000000e0000000e" change="1472500305" id="I0001">
<gender>U</gender>
<name type="Birth Name">
<first>Mrs</first>
<surname>Tester</surname>
</name>
<eventref hlink="_0000000f0000000f" role="Primary"/>
<parentin hlink="_0000000b0000000b"/>
</person>
<person handle="_0000001200000012" change="1472500305" id="I0002">
<gender>U</gender>
<name type="Birth Name">
<first>Tom</first>
<surname>Tester</surname>
</name>
<childof hlink="_0000000b0000000b"/>
</person>
</people>
<families>
<family handle="_0000000b0000000b" change="1472500305" id="F4211">
<rel type="Married"/>
<father hlink="_0000000100000001"/>
<mother hlink="_0000000e0000000e"/>
<eventref hlink="_0000001300000013" role="Family"/>
<eventref hlink="_0000001500000015" role="Family"/>
<eventref hlink="_0000001700000017" role="Family"/>
<childref hlink="_0000001200000012"/>
</family>
</families>
<citations>
<citation handle="_0000000400000004" change="1472500305" id="C0000">
<page>777, record for The Tester</page>
<confidence>2</confidence>
<noteref hlink="_0000000300000003"/>
<sourceref hlink="_0000000200000002"/>
</citation>
</citations>
<sources>
<source handle="_0000000200000002" change="1472500305" id="S0006">
<stitle>Ohio Births, 1958-2002</stitle>
<reporef hlink="_0000001900000019" medium="Book"/>
</source>
</sources>
<places>
<placeobj handle="_0000000600000006" change="1472500305" id="P0000" type="Street">
<ptitle>123 High St, Cleveland, Cuyahoga, Ohio, USA, 44140</ptitle>
<code>44140</code>
<pname value="123 High St"/>
<placeref hlink="_0000001e0000001e"/>
</placeobj>
<placeobj handle="_0000000800000008" change="1472500305" id="P0001" type="Street">
<ptitle>456 Main St, Cleveland, Cuyahoga, Ohio, USA, 44140</ptitle>
<code>44140</code>
<pname value="456 Main St"/>
<placeref hlink="_0000001e0000001e"/>
</placeobj>
<placeobj handle="_0000000a0000000a" change="1472500305" id="P0002" type="Unknown">
<ptitle>Littetown, Smallcounty, Ohio, USA</ptitle>
<pname value="Littetown, Smallcounty, Ohio, USA"/>
</placeobj>
<placeobj handle="_0000001100000011" change="1472500305" id="P0003" type="Address">
<ptitle>123 Main St., Winslow, PA, 12345</ptitle>
<pname value="123 Main St., Winslow, PA, 12345"/>
<location street="123 Main St." city="Winslow" state="PA" postal="12345"/>
</placeobj>
<placeobj handle="_0000001400000014" change="1472500305" id="P0004" type="Unknown">
<ptitle>St Rafaels Church, Bay Village, Cuyahoga, Ohio, USA</ptitle>
<pname value="St Rafaels Church, Bay Village, Cuyahoga, Ohio, USA"/>
</placeobj>
<placeobj handle="_0000001600000016" change="1472500305" id="P0005" type="Unknown">
<ptitle>Of Ill Repute, Shaker Heights, Ohio, USA</ptitle>
<pname value="Of Ill Repute, Shaker Heights, Ohio, USA"/>
</placeobj>
<placeobj handle="_0000001800000018" change="1472500305" id="P0006" type="Unknown">
<ptitle>Cuyahoga, OHIO, USA</ptitle>
<pname value="Cuyahoga, OHIO, USA"/>
</placeobj>
<placeobj handle="_0000001b0000001b" change="1472500305" id="P0007" type="Country">
<ptitle>USA</ptitle>
<pname value="USA"/>
</placeobj>
<placeobj handle="_0000001c0000001c" change="1472500305" id="P0008" type="State">
<ptitle>Ohio, USA</ptitle>
<pname value="Ohio"/>
<placeref hlink="_0000001b0000001b"/>
</placeobj>
<placeobj handle="_0000001d0000001d" change="1472500305" id="P0009" type="County">
<ptitle>Cuyahoga, Ohio, USA</ptitle>
<pname value="Cuyahoga"/>
<placeref hlink="_0000001c0000001c"/>
</placeobj>
<placeobj handle="_0000001e0000001e" change="1472500305" id="P0010" type="City">
<ptitle>Cleveland, Cuyahoga, Ohio, USA</ptitle>
<pname value="Cleveland"/>
<placeref hlink="_0000001d0000001d"/>
</placeobj>
</places>
<repositories>
<repository handle="_0000001900000019" change="1472500305" id="R0001">
<rname>Testers Repository</rname>
<type>Library</type>
<address>
<street>123 High St., OSF village, CA, USA</street>
</address>
<noteref hlink="_0000001a0000001a"/>
</repository>
</repositories>
<notes>
<note handle="_0000000300000003" change="1472500305" id="N0000" type="Citation Justification">
<text>Because its good</text>
</note>
<note handle="_0000001000000010" change="1472500305" id="N0001" type="Event Note">
<text>Address as event is legal, with PHON,FAX,EMAIL,WWW</text>
</note>
<note handle="_0000001a0000001a" change="1472500305" id="N0002" type="Repository Note">
<text>Testers Repository Record</text>
</note>
</notes>
</database>

View File

@@ -1,78 +0,0 @@
0 HEAD
1 SOUR FTM
2 VERS Family Tree Maker (22.2.5)
2 NAME Family Tree Maker for Mac OS X
2 CORP Ancestry.com
3 ADDR 360 W 4800 N
4 CONT Provo, UT 84604
3 PHON (801) 705-7000
1 DEST GED55
1 DATE 16 DEC 2015
1 CHAR UTF-8
1 FILE test_FTM_16dec2015-mod.ged
1 SUBM @SUBM@
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
0 @SUBM@ SUBM
0 @I278@ INDI
1 NAME Andrew /May/
2 SOUR @S29@
3 PAGE Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll:
4 CONC M432_394; Page: 435B; Image: 248
3 OBJE @M159@
1 SEX M
1 BIRT
2 DATE 1816
2 PLAC Tennessee, USA
2 SOUR @S29@
3 PAGE Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll:
4 CONC M432_394; Page: 435B; Image: 248
3 OBJE @M159@
1 RESI
2 DATE 1850
2 PLAC District 14, Cape Girardeau, Missouri, USA
2 SOUR @S29@
3 PAGE Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll:
4 CONC M432_394; Page: 435B; Image: 248
3 OBJE @M159@
1 DEAT
2 DATE 1850/1860
2 PLAC Bollinger Co. MO
1 FAMS @F73@
1 FAMS @F74@
1 FAMC @F73@
1 FAMC @F73@
1 FAMC @F74@
1 FAMC @F74@
0 @F73@ FAM
1 HUSB @I278@
1 MARR
2 DATE ABT 1841
2 PLAC Union Co.?, IL
0 @F74@ FAM
1 HUSB @I278@
1 MARR
2 DATE AUG 1847
2 PLAC Wayne, Missouri, United States
0 @S29@ SOUR
1 AUTH Ancestry.com
1 TITL 1850 United States Federal Census
1 PUBL Name: Ancestry.com Operations, Inc.; Location: Provo, UT, USA; Date:
2 CONC 2009;
1 REPO @R1@
0 @R1@ REPO
1 NAME Ancestry.com
1 ADDR
1 EMAIL
1 PHON
0 @M159@ OBJE
1 FILE 1850 United States Federal Census(11)-1.jpg
2 TITL 1850 United States Federal Census
1 NOTE Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll:
2 CONC M432_394; Page: 435B; Image: 248
0 @M158@ OBJE
1 FILE D:\Users\PRC\Downloads\1850 United States Federal Census(11)-1.jpg
0 @M157@ OBJE
1 FILE http://1.gravatar.com/avatar/77e02a3c8c665155ad1acaac8c2742e0?s=120&d=mm&r=pg
0 TRLR

View File

@@ -1,155 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000500000005" change="1472500305" id="E0000">
<type>Birth</type>
<dateval val="1816"/>
<place hlink="_0000000700000007"/>
<citationref hlink="_0000000600000006"/>
</event>
<event handle="_0000000800000008" change="1472500305" id="E0001">
<type>Residence</type>
<dateval val="1850"/>
<place hlink="_0000000a0000000a"/>
<citationref hlink="_0000000900000009"/>
</event>
<event handle="_0000000b0000000b" change="1472500305" id="E0002">
<type>Death</type>
<datestr val="1850/1860"/>
<place hlink="_0000000c0000000c"/>
</event>
<event handle="_0000000f0000000f" change="1472500305" id="E0003">
<type>Marriage</type>
<dateval val="1841" type="about"/>
<place hlink="_0000001000000010"/>
</event>
<event handle="_0000001100000011" change="1472500305" id="E0004">
<type>Marriage</type>
<dateval val="1847-08"/>
<place hlink="_0000001200000012"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1472500305" id="I0278">
<gender>M</gender>
<name type="Birth Name">
<first>Andrew</first>
<surname>May</surname>
<citationref hlink="_0000000400000004"/>
</name>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000800000008" role="Primary"/>
<eventref hlink="_0000000b0000000b" role="Primary"/>
<childof hlink="_0000000d0000000d"/>
<childof hlink="_0000000e0000000e"/>
<parentin hlink="_0000000d0000000d"/>
<parentin hlink="_0000000e0000000e"/>
</person>
</people>
<families>
<family handle="_0000000d0000000d" change="1472500305" id="F0073">
<rel type="Married"/>
<father hlink="_0000000100000001"/>
<eventref hlink="_0000000f0000000f" role="Family"/>
<childref hlink="_0000000100000001"/>
</family>
<family handle="_0000000e0000000e" change="1472500305" id="F0074">
<rel type="Married"/>
<father hlink="_0000000100000001"/>
<eventref hlink="_0000001100000011" role="Family"/>
<childref hlink="_0000000100000001"/>
</family>
</families>
<citations>
<citation handle="_0000000400000004" change="1472500305" id="C0000">
<page>Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll: M432_394; Page: 435B; Image: 248</page>
<confidence>2</confidence>
<objref hlink="_0000000300000003"/>
<sourceref hlink="_0000000200000002"/>
</citation>
<citation handle="_0000000600000006" change="1472500305" id="C0001">
<page>Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll: M432_394; Page: 435B; Image: 248</page>
<confidence>2</confidence>
<objref hlink="_0000000300000003"/>
<sourceref hlink="_0000000200000002"/>
</citation>
<citation handle="_0000000900000009" change="1472500305" id="C0002">
<page>Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll: M432_394; Page: 435B; Image: 248</page>
<confidence>2</confidence>
<objref hlink="_0000000300000003"/>
<sourceref hlink="_0000000200000002"/>
</citation>
</citations>
<sources>
<source handle="_0000000200000002" change="1472500305" id="S0029">
<stitle>1850 United States Federal Census</stitle>
<sauthor>Ancestry.com</sauthor>
<spubinfo>Name: Ancestry.com Operations, Inc.; Location: Provo, UT, USA; Date: 2009;</spubinfo>
<reporef hlink="_0000001300000013" medium="Book"/>
</source>
</sources>
<places>
<placeobj handle="_0000000700000007" change="1472500305" id="P0000" type="Unknown">
<ptitle>Tennessee, USA</ptitle>
<pname value="Tennessee, USA"/>
</placeobj>
<placeobj handle="_0000000a0000000a" change="1472500305" id="P0001" type="Unknown">
<ptitle>District 14, Cape Girardeau, Missouri, USA</ptitle>
<pname value="District 14, Cape Girardeau, Missouri, USA"/>
</placeobj>
<placeobj handle="_0000000c0000000c" change="1472500305" id="P0002" type="Unknown">
<ptitle>Bollinger Co. MO</ptitle>
<pname value="Bollinger Co. MO"/>
</placeobj>
<placeobj handle="_0000001000000010" change="1472500305" id="P0003" type="Unknown">
<ptitle>Union Co.?, IL</ptitle>
<pname value="Union Co.?, IL"/>
</placeobj>
<placeobj handle="_0000001200000012" change="1472500305" id="P0004" type="Unknown">
<ptitle>Wayne, Missouri, United States</ptitle>
<pname value="Wayne, Missouri, United States"/>
</placeobj>
</places>
<objects>
<object handle="_0000000300000003" change="1472500305" id="M159">
<file src="1850 United States Federal Census(11)-1.jpg" mime="image/jpeg" description="1850 United States Federal Census"/>
<noteref hlink="_0000001400000014"/>
<noteref hlink="_0000001500000015"/>
</object>
<object handle="_0000001600000016" change="1472500305" id="M158">
<file src="D:/Users/PRC/Downloads/1850 United States Federal Census(11)-1.jpg" mime="image/jpeg" description="D:\Users\PRC\Downloads\1850 United States Federal Census(11)-1.jpg"/>
</object>
<object handle="_0000001700000017" change="1472500305" id="M157">
<file src="http://1.gravatar.com/avatar/77e02a3c8c665155ad1acaac8c2742e0?s=120&amp;d=mm&amp;r=pg" mime="unknown" description="http://1.gravatar.com/avatar/77e02a3c8c665155ad1acaac8c2742e0?s=120&amp;d=mm&amp;r=pg"/>
</object>
</objects>
<repositories>
<repository handle="_0000001300000013" change="1472500305" id="R0001">
<rname>Ancestry.com</rname>
<type>Library</type>
<address>
</address>
<url href="" type="E-mail"/>
</repository>
</repositories>
<notes>
<note handle="_0000001400000014" change="1472500305" id="N0000" type="Media Note">
<text>Year: 1850; Census Place: District 14, Cape Girardeau, Missouri; Roll: M432_394; Page: 435B; Image: 248</text>
</note>
<note handle="_0000001500000015" change="1472500305" id="N0001" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M159:
Could not import 1850 United States Federal Census(11)-1.jpg Line 70: 1 FILE 1850 United States Federal Census(11)-1.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="200"/>
</style>
</note>
</notes>
</database>

View File

@@ -1,41 +0,0 @@
0 HEAD
1 SOUR FTM
2 VERS Family Tree Maker (22.0.0.1410)
2 NAME Family Tree Maker for Windows
2 CORP Ancestry.com
3 ADDR 360 W 4800 N
4 CONT Provo, UT 84604
3 PHON (801) 705-7000
1 DEST GED55
1 DATE 01 MAR 2016
1 CHAR UTF-8
1 FILE D:\Family Tree Maker\imp_FTM_LINK.ged
1 SUBM @SUBM@
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
0 @SUBM@ SUBM
0 @I937@ INDI
1 NAME François Joseph /Raffath/
2 SOUR @S241@
3 _LINK http://gw.geneanet.org/danynogue2?lang=en&pz=anny+lise+marie&nz=le+vaillant&ocz=0&p=francois+joseph&n=raffath&oc=6
0 @I1@ INDI
1 NAME Michael /Sullivan/
2 SOUR @S118@
3 PAGE GS Film number: 2342492 Frame Number: Digital Folder Number:
4 CONC 4208243 Image Number: 339 Reference ID: p 493 rn 9850
3 DATA
4 TEXT Name: Michael Sullivan Race (Original): Age (Expanded): 25 years
5 CONC Birth Year: 1866 Birthplace: Ireland Spouse's Name: Nellie
5 CONC Moynahan Spouse's Race (Original): Spouse's Age
5 CONC (Expanded): 25 years Spouse's Birth Year: 1866 Spouse's
5 CONC Birthplace: Ireland Event Date: 04 Nov 1891 Event Place: Wayne,
5 CONC Michigan Father's Name: Michael Sullivan Mother's Name:
5 CONC Julia Brosnahan Spouse's Father's Name: Mich. Moynahan
5 CONC Spouse's Mother's Name: Ellen Quinlan
3 _LINK https://familysearch.org/pal:/MM9.1.1/N3XS-1BL
0 @S118@ SOUR
1 TITL Michigan, Marriages, 1868-1925
0 @S241@ SOUR
1 TITL Daniel NOGUE family tree
0 TRLR

View File

@@ -1,67 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-07-16" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<people>
<person handle="_0000000100000001" change="1468687774" id="I0937">
<gender>U</gender>
<name type="Birth Name">
<first>François Joseph</first>
<surname>Raffath</surname>
<citationref hlink="_0000000400000004"/>
</name>
</person>
<person handle="_0000000500000005" change="1468687774" id="I0001">
<gender>U</gender>
<name type="Birth Name">
<first>Michael</first>
<surname>Sullivan</surname>
<citationref hlink="_0000000900000009"/>
</name>
</person>
</people>
<citations>
<citation handle="_0000000400000004" change="1468687774" id="C0000">
<confidence>2</confidence>
<noteref hlink="_0000000300000003"/>
<sourceref hlink="_0000000200000002"/>
</citation>
<citation handle="_0000000900000009" change="1468687774" id="C0001">
<page>GS Film number: 2342492 Frame Number: Digital Folder Number: 4208243 Image Number: 339 Reference ID: p 493 rn 9850</page>
<confidence>2</confidence>
<noteref hlink="_0000000700000007"/>
<noteref hlink="_0000000800000008"/>
<sourceref hlink="_0000000600000006"/>
</citation>
</citations>
<sources>
<source handle="_0000000200000002" change="1468687774" id="S0241">
<stitle>Daniel NOGUE family tree</stitle>
</source>
<source handle="_0000000600000006" change="1468687774" id="S0118">
<stitle>Michigan, Marriages, 1868-1925</stitle>
</source>
</sources>
<notes>
<note handle="_0000000300000003" change="1468687774" id="N0000" type="Citation">
<text>http://gw.geneanet.org/danynogue2?lang=en&amp;pz=anny+lise+marie&amp;nz=le+vaillant&amp;ocz=0&amp;p=francois+joseph&amp;n=raffath&amp;oc=6</text>
<style name="link" value="http://gw.geneanet.org/danynogue2?lang=en&amp;pz=anny+lise+marie&amp;nz=le+vaillant&amp;ocz=0&amp;p=francois+joseph&amp;n=raffath&amp;oc=6">
<range start="0" end="114"/>
</style>
</note>
<note handle="_0000000700000007" change="1468687774" id="N0001" type="Source text">
<text>Name: Michael Sullivan Race (Original): Age (Expanded): 25 years Birth Year: 1866 Birthplace: Ireland Spouse's Name: Nellie Moynahan Spouse's Race (Original): Spouse's Age (Expanded): 25 years Spouse's Birth Year: 1866 Spouse's Birthplace: Ireland Event Date: 04 Nov 1891 Event Place: Wayne, Michigan Father's Name: Michael Sullivan Mother's Name: Julia Brosnahan Spouse's Father's Name: Mich. Moynahan Spouse's Mother's Name: Ellen Quinlan</text>
</note>
<note handle="_0000000800000008" change="1468687774" id="N0002" type="Citation">
<text>https://familysearch.org/pal:/MM9.1.1/N3XS-1BL</text>
<style name="link" value="https://familysearch.org/pal:/MM9.1.1/N3XS-1BL">
<range start="0" end="46"/>
</style>
</note>
</notes>
</database>

View File

@@ -1,37 +0,0 @@
0 HEAD
1 SOUR FTM
2 VERS Family Tree Maker (21.0.0.723)
2 NAME Family Tree Maker for Windows
2 CORP Ancestry.com
3 ADDR 360 W 4800 N
4 CONT Provo, UT 84604
3 PHON (801) 705-7000
1 DEST GED55
1 DATE 11 DEC 2013
1 CHAR UTF-8
1 FILE D:\Family Tree Maker\imp_FTM_OCCU_bug.ged
1 SUBM @SUBM@
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
0 @SUBM@ SUBM
0 @I1@ INDI
1 NAME The /Tester/
1 OCCU Working at Halle's Department Store
2 DATE 16 OCT 1946
2 PLAC Cleveland, Cuyahoga, Ohio, United States of America
1 OCCU
2 DATE 06 JUL 1950
2 PLAC Shoemaker
1 RELI Methodist
2 DATE 06 JUL 1940
1 RELI
2 PLAC Lutherin
2 DATE 06 JUL 1950
1 _DEG High School
2 PLAC Norwalk, Ohio, USA
2 DATE 06 JUL 1935
1 _DEG
2 PLAC Case Western University
2 DATE 06 JUL 1939
0 TRLR

View File

@@ -1,69 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-07-14" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000200000002" change="1468508301" id="E0000">
<type>Occupation</type>
<dateval val="1946-10-16"/>
<place hlink="_0000000300000003"/>
<description>Working at Halle's Department Store</description>
</event>
<event handle="_0000000400000004" change="1468508301" id="E0001">
<type>Occupation</type>
<dateval val="1950-07-06"/>
<description>Shoemaker</description>
</event>
<event handle="_0000000500000005" change="1468508301" id="E0002">
<type>Religion</type>
<dateval val="1940-07-06"/>
<description>Methodist</description>
</event>
<event handle="_0000000600000006" change="1468508301" id="E0003">
<type>Religion</type>
<dateval val="1950-07-06"/>
<description>Lutherin</description>
</event>
<event handle="_0000000700000007" change="1468508301" id="E0004">
<type>Degree</type>
<dateval val="1935-07-06"/>
<place hlink="_0000000800000008"/>
<description>High School</description>
</event>
<event handle="_0000000900000009" change="1468508301" id="E0005">
<type>Degree</type>
<dateval val="1939-07-06"/>
<description>Case Western University</description>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1468508301" id="I0001">
<gender>U</gender>
<name type="Birth Name">
<first>The</first>
<surname>Tester</surname>
</name>
<eventref hlink="_0000000200000002" role="Primary"/>
<eventref hlink="_0000000400000004" role="Primary"/>
<eventref hlink="_0000000500000005" role="Primary"/>
<eventref hlink="_0000000600000006" role="Primary"/>
<eventref hlink="_0000000700000007" role="Primary"/>
<eventref hlink="_0000000900000009" role="Primary"/>
</person>
</people>
<places>
<placeobj handle="_0000000300000003" change="1468508301" id="P0000" type="Unknown">
<ptitle>Cleveland, Cuyahoga, Ohio, United States of America</ptitle>
<pname value="Cleveland, Cuyahoga, Ohio, United States of America"/>
</placeobj>
<placeobj handle="_0000000800000008" change="1468508301" id="P0001" type="Unknown">
<ptitle>Norwalk, Ohio, USA</ptitle>
<pname value="Norwalk, Ohio, USA"/>
</placeobj>
</places>
</database>

View File

@@ -1,68 +0,0 @@
0 HEAD
1 SOUR FTM
2 VERS Family Tree Maker (21.0.0.723)
2 NAME Family Tree Maker for Windows
2 CORP Ancestry.com
3 ADDR 360 W 4800 N
4 CONT Provo, UT 84604
3 PHON (801) 705-7000
1 DEST GED55
1 DATE 26 JUL 2016
1 CHAR UTF-8
1 FILE D:\Family Tree Maker\imp_FTM_PHOTO.ged
1 SUBM @SUBM@
1 GEDC
2 VERS 5.5.1
2 FORM LINEAGE-LINKED
0 @SUBM@ SUBM
0 @I1@ INDI
1 NAME The /Tester/
1 NOTE The primary photo should be a male Sourpuss in a Hat 03.jpg or Gid:M3
1 _PHOTO @M3@
1 OBJE @M1@
1 OBJE @M2@
1 OBJE @M3@
1 OBJE @M4@
1 OBJE @M5@
0 @I2@ INDI
1 NAME She /Tester/
1 NOTE The primary photo should be a girl eating 04.jpg or Gid:M4
1 OBJE @M1@
1 OBJE @M2@
1 OBJE @M3@
1 OBJE @M4@
2 _PRIM Y
3 WHAT ???
1 OBJE @M5@
0 @M1@ OBJE
1 FILE O1.jpg
2 TITL Ferry Arriving 1910
0 @M2@ OBJE
1 FILE O2.jpg
2 TITL B&W Kids
0 @M3@ OBJE
1 FILE O3.jpg
2 TITL Sourpuss in Hat
0 @M4@ OBJE
1 FILE O4.jpg
2 TITL Girl Eating
0 @M5@ OBJE
1 FILE O5.jpg
2 TITL Edwin & Janice Smith
0 @I3@ INDI
1 NAME Edwin /Tester/
1 NOTE The primary photo should be a male of pair 05.jpg
1 OBJE
2 FILE O3.jpg
3 FORM jpeg
2 TITL Sourpuss in Hat
1 OBJE
2 FILE O4.jpg
3 FORM jpeg
2 TITL Girl Eating
1 OBJE
2 FILE O5.jpg
3 FORM jpeg
2 TITL Edwin & Janice Smith
2 _PRIM Y
0 TRLR

View File

@@ -1,151 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<people>
<person handle="_0000000100000001" change="1472500306" id="I0001">
<gender>U</gender>
<name type="Birth Name">
<first>The</first>
<surname>Tester</surname>
</name>
<objref hlink="_0000000500000005"/>
<objref hlink="_0000000300000003"/>
<objref hlink="_0000000400000004"/>
<objref hlink="_0000000600000006"/>
<objref hlink="_0000000700000007"/>
<noteref hlink="_0000000200000002"/>
</person>
<person handle="_0000000800000008" change="1472500306" id="I0002">
<gender>U</gender>
<name type="Birth Name">
<first>She</first>
<surname>Tester</surname>
</name>
<objref hlink="_0000000600000006"/>
<objref hlink="_0000000300000003"/>
<objref hlink="_0000000400000004"/>
<objref hlink="_0000000500000005"/>
<objref hlink="_0000000700000007"/>
<noteref hlink="_0000000900000009"/>
<noteref hlink="_0000000a0000000a"/>
</person>
<person handle="_0000001000000010" change="1472500306" id="I0003">
<gender>U</gender>
<name type="Birth Name">
<first>Edwin</first>
<surname>Tester</surname>
</name>
<objref hlink="_0000001400000014"/>
<objref hlink="_0000001200000012"/>
<objref hlink="_0000001300000013"/>
<noteref hlink="_0000001100000011"/>
<noteref hlink="_0000001500000015"/>
</person>
</people>
<objects>
<object handle="_0000000300000003" change="1472500306" id="M1">
<file src="O1.jpg" mime="image/jpeg" description="Ferry Arriving 1910"/>
<noteref hlink="_0000000b0000000b"/>
</object>
<object handle="_0000000400000004" change="1472500306" id="M2">
<file src="O2.jpg" mime="image/jpeg" description="B&amp;W Kids"/>
<noteref hlink="_0000000c0000000c"/>
</object>
<object handle="_0000000500000005" change="1472500306" id="M3">
<file src="O3.jpg" mime="image/jpeg" description="Sourpuss in Hat"/>
<noteref hlink="_0000000d0000000d"/>
</object>
<object handle="_0000000600000006" change="1472500306" id="M4">
<file src="O4.jpg" mime="image/jpeg" description="Girl Eating"/>
<noteref hlink="_0000000e0000000e"/>
</object>
<object handle="_0000000700000007" change="1472500306" id="M5">
<file src="O5.jpg" mime="image/jpeg" description="Edwin &amp; Janice Smith"/>
<noteref hlink="_0000000f0000000f"/>
</object>
<object handle="_0000001200000012" change="1472500306" id="O0000">
<file src="O3.jpg" mime="image/jpeg" description="Sourpuss in Hat"/>
</object>
<object handle="_0000001300000013" change="1472500306" id="O0001">
<file src="O4.jpg" mime="image/jpeg" description="Girl Eating"/>
</object>
<object handle="_0000001400000014" change="1472500306" id="O0002">
<file src="O5.jpg" mime="image/jpeg" description="Edwin &amp; Janice Smith"/>
</object>
</objects>
<notes>
<note handle="_0000000200000002" change="1472500306" id="N0000" type="Person Note">
<text>The primary photo should be a male Sourpuss in a Hat 03.jpg or Gid:M3</text>
</note>
<note handle="_0000000900000009" change="1472500306" id="N0001" type="Person Note">
<text>The primary photo should be a girl eating 04.jpg or Gid:M4</text>
</note>
<note handle="_0000000a0000000a" change="1472500306" id="N0002" type="GEDCOM import">
<text>Records not imported into INDI (individual) Gramps ID I0002:
Line ignored as not understood Line 35: 3 WHAT ???</text>
<style name="fontface" value="Monospace">
<range start="0" end="153"/>
</style>
</note>
<note handle="_0000000b0000000b" change="1472500306" id="N0003" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M1:
Could not import O1.jpg Line 38: 1 FILE O1.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="161"/>
</style>
</note>
<note handle="_0000000c0000000c" change="1472500306" id="N0004" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M2:
Could not import O2.jpg Line 41: 1 FILE O2.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="161"/>
</style>
</note>
<note handle="_0000000d0000000d" change="1472500306" id="N0005" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M3:
Could not import O3.jpg Line 44: 1 FILE O3.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="161"/>
</style>
</note>
<note handle="_0000000e0000000e" change="1472500306" id="N0006" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M4:
Could not import O4.jpg Line 47: 1 FILE O4.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="161"/>
</style>
</note>
<note handle="_0000000f0000000f" change="1472500306" id="N0007" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M5:
Could not import O5.jpg Line 50: 1 FILE O5.jpg</text>
<style name="fontface" value="Monospace">
<range start="0" end="161"/>
</style>
</note>
<note handle="_0000001100000011" change="1472500306" id="N0008" type="Person Note">
<text>The primary photo should be a male of pair 05.jpg</text>
</note>
<note handle="_0000001500000015" change="1472500306" id="N0009" type="GEDCOM import">
<text>Records not imported into INDI (individual) Gramps ID I0003:
Could not import O3.jpg Line 55: 1 OBJE
Could not import O4.jpg Line 59: 1 OBJE
Could not import O5.jpg Line 63: 1 OBJE</text>
<style name="fontface" value="Monospace">
<range start="0" end="326"/>
</style>
</note>
</notes>
</database>

View File

@@ -1 +0,0 @@
0 HEAD

View File

@@ -1,228 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000200000002" change="1472500306" id="E0000">
<type>Birth</type>
<dateval val="1955"/>
</event>
<event handle="_0000000300000003" change="1472500306" id="E0001">
<type>Death</type>
<dateval val="2017"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1472500306" id="I0001">
<gender>M</gender>
<name type="Birth Name">
<first>Paul</first>
<surname>Culley</surname>
</name>
<eventref hlink="_0000000200000002" role="Primary"/>
<eventref hlink="_0000000300000003" role="Primary"/>
<noteref hlink="_0000000400000004"/>
</person>
</people>
<notes>
<note handle="_0000000400000004" change="1472500306" id="N0000" type="Person Note">
<text>Table of Latin_1, ISO-8859-1 characters
32 [ ]
33 [!]
34 [&quot;]
35 [#]
36 [$]
37 [%]
38 [&amp;]
39 [']
40 [(]
41 [)]
42 [*]
43 [+]
44 [,]
45 [-]
46 [.]
47 [/]
48 [0]
49 [1]
50 [2]
51 [3]
52 [4]
53 [5]
54 [6]
55 [7]
56 [8]
57 [9]
58 [:]
59 [;]
60 [&lt;]
61 [=]
62 [&gt;]
63 [?]
64 [@]
65 [A]
66 [B]
67 [C]
68 [D]
69 [E]
70 [F]
71 [G]
72 [H]
73 [I]
74 [J]
75 [K]
76 [L]
77 [M]
78 [N]
79 [O]
80 [P]
81 [Q]
82 [R]
83 [S]
84 [T]
85 [U]
86 [V]
87 [W]
88 [X]
89 [Y]
90 [Z]
91 [[]
92 [\]
93 []]
94 [^]
95 [_]
96 [`]
97 [a]
98 [b]
99 [c]
100 [d]
101 [e]
102 [f]
103 [g]
104 [h]
105 [i]
106 [j]
107 [k]
108 [l]
109 [m]
110 [n]
111 [o]
112 [p]
113 [q]
114 [r]
115 [s]
116 [t]
117 [u]
118 [v]
119 [w]
120 [x]
121 [y]
122 [z]
123 [{]
124 [|]
125 [}]
126 [~]
160 [ ]
161 [¡]
162 [¢]
163 [£]
164 [¤]
165 [¥]
166 [¦]
167 [§]
168 [¨]
169 [©]
170 [ª]
171 [«]
172 [¬]
173 [­]
174 [®]
175 [¯]
176 [°]
177 [±]
178 [²]
179 [³]
180 [´]
181 [µ]
182 [¶]
183 [·]
184 [¸]
185 [¹]
186 [º]
187 [»]
188 [¼]
189 [½]
190 [¾]
191 [¿]
192 [À]
193 [Á]
194 [Â]
195 [Ã]
196 [Ä]
197 [Å]
198 [Æ]
199 [Ç]
200 [È]
201 [É]
202 [Ê]
203 [Ë]
204 [Ì]
205 [Í]
206 [Î]
207 [Ï]
208 [Ð]
209 [Ñ]
210 [Ò]
211 [Ó]
212 [Ô]
213 [Õ]
214 [Ö]
215 [×]
216 [Ø]
217 [Ù]
218 [Ú]
219 [Û]
220 [Ü]
221 [Ý]
222 [Þ]
223 [ß]
224 [à]
225 [á]
226 [â]
227 [ã]
228 [ä]
229 [å]
230 [æ]
231 [ç]
232 [è]
233 [é]
234 [ê]
235 [ë]
236 [ì]
237 [í]
238 [î]
239 [ï]
240 [ð]
241 [ñ]
242 [ò]
243 [ó]
244 [ô]
245 [õ]
246 [ö]
247 [÷]
248 [ø]
249 [ù]
250 [ú]
251 [û]
252 [ü]
253 [ý]
254 [þ]
255 [ÿ]</text>
</note>
</notes>
</database>

View File

@@ -1,211 +0,0 @@
0 HEAD
1 SOUR NOTEPAD++
1 DEST ANY
1 DATE 3 DEC 2010
2 TIME 7:03
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
1 LANG English
1 CHAR ASCII
0 @I1@ INDI
1 NAME Paul /Culley/
1 SEX M
1 BIRT
2 DATE 1955
1 DEAT
2 DATE 2017
1 NOTE
2 CONT Table of Latin_1, ISO-8859-1 characters
2 CONT 32 [ ]
2 CONT 33 [!]
2 CONT 34 ["]
2 CONT 35 [#]
2 CONT 36 [$]
2 CONT 37 [%]
2 CONT 38 [&]
2 CONT 39 [']
2 CONT 40 [(]
2 CONT 41 [)]
2 CONT 42 [*]
2 CONT 43 [+]
2 CONT 44 [,]
2 CONT 45 [-]
2 CONT 46 [.]
2 CONT 47 [/]
2 CONT 48 [0]
2 CONT 49 [1]
2 CONT 50 [2]
2 CONT 51 [3]
2 CONT 52 [4]
2 CONT 53 [5]
2 CONT 54 [6]
2 CONT 55 [7]
2 CONT 56 [8]
2 CONT 57 [9]
2 CONT 58 [:]
2 CONT 59 [;]
2 CONT 60 [<]
2 CONT 61 [=]
2 CONT 62 [>]
2 CONT 63 [?]
2 CONT 64 [@]
2 CONT 65 [A]
2 CONT 66 [B]
2 CONT 67 [C]
2 CONT 68 [D]
2 CONT 69 [E]
2 CONT 70 [F]
2 CONT 71 [G]
2 CONT 72 [H]
2 CONT 73 [I]
2 CONT 74 [J]
2 CONT 75 [K]
2 CONT 76 [L]
2 CONT 77 [M]
2 CONT 78 [N]
2 CONT 79 [O]
2 CONT 80 [P]
2 CONT 81 [Q]
2 CONT 82 [R]
2 CONT 83 [S]
2 CONT 84 [T]
2 CONT 85 [U]
2 CONT 86 [V]
2 CONT 87 [W]
2 CONT 88 [X]
2 CONT 89 [Y]
2 CONT 90 [Z]
2 CONT 91 [[]
2 CONT 92 [\]
2 CONT 93 []]
2 CONT 94 [^]
2 CONT 95 [_]
2 CONT 96 [`]
2 CONT 97 [a]
2 CONT 98 [b]
2 CONT 99 [c]
2 CONT 100 [d]
2 CONT 101 [e]
2 CONT 102 [f]
2 CONT 103 [g]
2 CONT 104 [h]
2 CONT 105 [i]
2 CONT 106 [j]
2 CONT 107 [k]
2 CONT 108 [l]
2 CONT 109 [m]
2 CONT 110 [n]
2 CONT 111 [o]
2 CONT 112 [p]
2 CONT 113 [q]
2 CONT 114 [r]
2 CONT 115 [s]
2 CONT 116 [t]
2 CONT 117 [u]
2 CONT 118 [v]
2 CONT 119 [w]
2 CONT 120 [x]
2 CONT 121 [y]
2 CONT 122 [z]
2 CONT 123 [{]
2 CONT 124 [|]
2 CONT 125 [}]
2 CONT 126 [~]
2 CONT 160 [<5B>]
2 CONT 161 [<5B>]
2 CONT 162 [<5B>]
2 CONT 163 [<5B>]
2 CONT 164 [<5B>]
2 CONT 165 [<5B>]
2 CONT 166 [<5B>]
2 CONT 167 [<5B>]
2 CONT 168 [<5B>]
2 CONT 169 [<5B>]
2 CONT 170 [<5B>]
2 CONT 171 [<5B>]
2 CONT 172 [<5B>]
2 CONT 173 [<5B>]
2 CONT 174 [<5B>]
2 CONT 175 [<5B>]
2 CONT 176 [<5B>]
2 CONT 177 [<5B>]
2 CONT 178 [<5B>]
2 CONT 179 [<5B>]
2 CONT 180 [<5B>]
2 CONT 181 [<5B>]
2 CONT 182 [<5B>]
2 CONT 183 [<5B>]
2 CONT 184 [<5B>]
2 CONT 185 [<5B>]
2 CONT 186 [<5B>]
2 CONT 187 [<5B>]
2 CONT 188 [<5B>]
2 CONT 189 [<5B>]
2 CONT 190 [<5B>]
2 CONT 191 [<5B>]
2 CONT 192 [<5B>]
2 CONT 193 [<5B>]
2 CONT 194 [<5B>]
2 CONT 195 [<5B>]
2 CONT 196 [<5B>]
2 CONT 197 [<5B>]
2 CONT 198 [<5B>]
2 CONT 199 [<5B>]
2 CONT 200 [<5B>]
2 CONT 201 [<5B>]
2 CONT 202 [<5B>]
2 CONT 203 [<5B>]
2 CONT 204 [<5B>]
2 CONT 205 [<5B>]
2 CONT 206 [<5B>]
2 CONT 207 [<5B>]
2 CONT 208 [<5B>]
2 CONT 209 [<5B>]
2 CONT 210 [<5B>]
2 CONT 211 [<5B>]
2 CONT 212 [<5B>]
2 CONT 213 [<5B>]
2 CONT 214 [<5B>]
2 CONT 215 [<5B>]
2 CONT 216 [<5B>]
2 CONT 217 [<5B>]
2 CONT 218 [<5B>]
2 CONT 219 [<5B>]
2 CONT 220 [<5B>]
2 CONT 221 [<5B>]
2 CONT 222 [<5B>]
2 CONT 223 [<5B>]
2 CONT 224 [<5B>]
2 CONT 225 [<5B>]
2 CONT 226 [<5B>]
2 CONT 227 [<5B>]
2 CONT 228 [<5B>]
2 CONT 229 [<5B>]
2 CONT 230 [<5B>]
2 CONT 231 [<5B>]
2 CONT 232 [<5B>]
2 CONT 233 [<5B>]
2 CONT 234 [<5B>]
2 CONT 235 [<5B>]
2 CONT 236 [<5B>]
2 CONT 237 [<5B>]
2 CONT 238 [<5B>]
2 CONT 239 [<5B>]
2 CONT 240 [<5B>]
2 CONT 241 [<5B>]
2 CONT 242 [<5B>]
2 CONT 243 [<5B>]
2 CONT 244 [<5B>]
2 CONT 245 [<5B>]
2 CONT 246 [<5B>]
2 CONT 247 [<5B>]
2 CONT 248 [<5B>]
2 CONT 249 [<5B>]
2 CONT 250 [<5B>]
2 CONT 251 [<5B>]
2 CONT 252 [<5B>]
2 CONT 253 [<5B>]
2 CONT 254 [<5B>]
2 CONT 255 [<5B>]
0 TRLR

View File

@@ -1,228 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000200000002" change="1472500306" id="E0000">
<type>Birth</type>
<dateval val="1955"/>
</event>
<event handle="_0000000300000003" change="1472500306" id="E0001">
<type>Death</type>
<dateval val="2017"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1472500306" id="I0001">
<gender>M</gender>
<name type="Birth Name">
<first>Paul</first>
<surname>Culley</surname>
</name>
<eventref hlink="_0000000200000002" role="Primary"/>
<eventref hlink="_0000000300000003" role="Primary"/>
<noteref hlink="_0000000400000004"/>
</person>
</people>
<notes>
<note handle="_0000000400000004" change="1472500306" id="N0000" type="Person Note">
<text>Table of Latin_1, ISO-8859-1 characters
32 [ ]
33 [!]
34 [&quot;]
35 [#]
36 [$]
37 [%]
38 [&amp;]
39 [']
40 [(]
41 [)]
42 [*]
43 [+]
44 [,]
45 [-]
46 [.]
47 [/]
48 [0]
49 [1]
50 [2]
51 [3]
52 [4]
53 [5]
54 [6]
55 [7]
56 [8]
57 [9]
58 [:]
59 [;]
60 [&lt;]
61 [=]
62 [&gt;]
63 [?]
64 [@]
65 [A]
66 [B]
67 [C]
68 [D]
69 [E]
70 [F]
71 [G]
72 [H]
73 [I]
74 [J]
75 [K]
76 [L]
77 [M]
78 [N]
79 [O]
80 [P]
81 [Q]
82 [R]
83 [S]
84 [T]
85 [U]
86 [V]
87 [W]
88 [X]
89 [Y]
90 [Z]
91 [[]
92 [\]
93 []]
94 [^]
95 [_]
96 [`]
97 [a]
98 [b]
99 [c]
100 [d]
101 [e]
102 [f]
103 [g]
104 [h]
105 [i]
106 [j]
107 [k]
108 [l]
109 [m]
110 [n]
111 [o]
112 [p]
113 [q]
114 [r]
115 [s]
116 [t]
117 [u]
118 [v]
119 [w]
120 [x]
121 [y]
122 [z]
123 [{]
124 [|]
125 [}]
126 [~]
160 [ ]
161 [¡]
162 [¢]
163 [£]
164 [¤]
165 [¥]
166 [¦]
167 [§]
168 [¨]
169 [©]
170 [ª]
171 [«]
172 [¬]
173 [­]
174 [®]
175 [¯]
176 [°]
177 [±]
178 [²]
179 [³]
180 [´]
181 [µ]
182 [¶]
183 [·]
184 [¸]
185 [¹]
186 [º]
187 [»]
188 [¼]
189 [½]
190 [¾]
191 [¿]
192 [À]
193 [Á]
194 [Â]
195 [Ã]
196 [Ä]
197 [Å]
198 [Æ]
199 [Ç]
200 [È]
201 [É]
202 [Ê]
203 [Ë]
204 [Ì]
205 [Í]
206 [Î]
207 [Ï]
208 [Ð]
209 [Ñ]
210 [Ò]
211 [Ó]
212 [Ô]
213 [Õ]
214 [Ö]
215 [×]
216 [Ø]
217 [Ù]
218 [Ú]
219 [Û]
220 [Ü]
221 [Ý]
222 [Þ]
223 [ß]
224 [à]
225 [á]
226 [â]
227 [ã]
228 [ä]
229 [å]
230 [æ]
231 [ç]
232 [è]
233 [é]
234 [ê]
235 [ë]
236 [ì]
237 [í]
238 [î]
239 [ï]
240 [ð]
241 [ñ]
242 [ò]
243 [ó]
244 [ô]
245 [õ]
246 [ö]
247 [÷]
248 [ø]
249 [ù]
250 [ú]
251 [û]
252 [ü]
253 [ý]
254 [þ]
255 [ÿ]</text>
</note>
</notes>
</database>

View File

@@ -1,211 +0,0 @@
0 HEAD
1 SOUR NOTEPAD++
1 DEST ANY
1 DATE 3 DEC 2010
2 TIME 7:03
1 GEDC
2 VERS 5.5
2 FORM LINEAGE-LINKED
1 LANG English
1 CHAR ASCII
0 @I1@ INDI
1 NAME Paul /Culley/
1 SEX M
1 BIRT
2 DATE 1955
1 DEAT
2 DATE 2017
1 NOTE
2 CONT Table of Latin_1, ISO-8859-1 characters
2 CONT 32 [ ]
2 CONT 33 [!]
2 CONT 34 ["]
2 CONT 35 [#]
2 CONT 36 [$]
2 CONT 37 [%]
2 CONT 38 [&]
2 CONT 39 [']
2 CONT 40 [(]
2 CONT 41 [)]
2 CONT 42 [*]
2 CONT 43 [+]
2 CONT 44 [,]
2 CONT 45 [-]
2 CONT 46 [.]
2 CONT 47 [/]
2 CONT 48 [0]
2 CONT 49 [1]
2 CONT 50 [2]
2 CONT 51 [3]
2 CONT 52 [4]
2 CONT 53 [5]
2 CONT 54 [6]
2 CONT 55 [7]
2 CONT 56 [8]
2 CONT 57 [9]
2 CONT 58 [:]
2 CONT 59 [;]
2 CONT 60 [<]
2 CONT 61 [=]
2 CONT 62 [>]
2 CONT 63 [?]
2 CONT 64 [@]
2 CONT 65 [A]
2 CONT 66 [B]
2 CONT 67 [C]
2 CONT 68 [D]
2 CONT 69 [E]
2 CONT 70 [F]
2 CONT 71 [G]
2 CONT 72 [H]
2 CONT 73 [I]
2 CONT 74 [J]
2 CONT 75 [K]
2 CONT 76 [L]
2 CONT 77 [M]
2 CONT 78 [N]
2 CONT 79 [O]
2 CONT 80 [P]
2 CONT 81 [Q]
2 CONT 82 [R]
2 CONT 83 [S]
2 CONT 84 [T]
2 CONT 85 [U]
2 CONT 86 [V]
2 CONT 87 [W]
2 CONT 88 [X]
2 CONT 89 [Y]
2 CONT 90 [Z]
2 CONT 91 [[]
2 CONT 92 [\]
2 CONT 93 []]
2 CONT 94 [^]
2 CONT 95 [_]
2 CONT 96 [`]
2 CONT 97 [a]
2 CONT 98 [b]
2 CONT 99 [c]
2 CONT 100 [d]
2 CONT 101 [e]
2 CONT 102 [f]
2 CONT 103 [g]
2 CONT 104 [h]
2 CONT 105 [i]
2 CONT 106 [j]
2 CONT 107 [k]
2 CONT 108 [l]
2 CONT 109 [m]
2 CONT 110 [n]
2 CONT 111 [o]
2 CONT 112 [p]
2 CONT 113 [q]
2 CONT 114 [r]
2 CONT 115 [s]
2 CONT 116 [t]
2 CONT 117 [u]
2 CONT 118 [v]
2 CONT 119 [w]
2 CONT 120 [x]
2 CONT 121 [y]
2 CONT 122 [z]
2 CONT 123 [{]
2 CONT 124 [|]
2 CONT 125 [}]
2 CONT 126 [~]
2 CONT 160 [<5B>]
2 CONT 161 [<5B>]
2 CONT 162 [<5B>]
2 CONT 163 [<5B>]
2 CONT 164 [<5B>]
2 CONT 165 [<5B>]
2 CONT 166 [<5B>]
2 CONT 167 [<5B>]
2 CONT 168 [<5B>]
2 CONT 169 [<5B>]
2 CONT 170 [<5B>]
2 CONT 171 [<5B>]
2 CONT 172 [<5B>]
2 CONT 173 [<5B>]
2 CONT 174 [<5B>]
2 CONT 175 [<5B>]
2 CONT 176 [<5B>]
2 CONT 177 [<5B>]
2 CONT 178 [<5B>]
2 CONT 179 [<5B>]
2 CONT 180 [<5B>]
2 CONT 181 [<5B>]
2 CONT 182 [<5B>]
2 CONT 183 [<5B>]
2 CONT 184 [<5B>]
2 CONT 185 [<5B>]
2 CONT 186 [<5B>]
2 CONT 187 [<5B>]
2 CONT 188 [<5B>]
2 CONT 189 [<5B>]
2 CONT 190 [<5B>]
2 CONT 191 [<5B>]
2 CONT 192 [<5B>]
2 CONT 193 [<5B>]
2 CONT 194 [<5B>]
2 CONT 195 [<5B>]
2 CONT 196 [<5B>]
2 CONT 197 [<5B>]
2 CONT 198 [<5B>]
2 CONT 199 [<5B>]
2 CONT 200 [<5B>]
2 CONT 201 [<5B>]
2 CONT 202 [<5B>]
2 CONT 203 [<5B>]
2 CONT 204 [<5B>]
2 CONT 205 [<5B>]
2 CONT 206 [<5B>]
2 CONT 207 [<5B>]
2 CONT 208 [<5B>]
2 CONT 209 [<5B>]
2 CONT 210 [<5B>]
2 CONT 211 [<5B>]
2 CONT 212 [<5B>]
2 CONT 213 [<5B>]
2 CONT 214 [<5B>]
2 CONT 215 [<5B>]
2 CONT 216 [<5B>]
2 CONT 217 [<5B>]
2 CONT 218 [<5B>]
2 CONT 219 [<5B>]
2 CONT 220 [<5B>]
2 CONT 221 [<5B>]
2 CONT 222 [<5B>]
2 CONT 223 [<5B>]
2 CONT 224 [<5B>]
2 CONT 225 [<5B>]
2 CONT 226 [<5B>]
2 CONT 227 [<5B>]
2 CONT 228 [<5B>]
2 CONT 229 [<5B>]
2 CONT 230 [<5B>]
2 CONT 231 [<5B>]
2 CONT 232 [<5B>]
2 CONT 233 [<5B>]
2 CONT 234 [<5B>]
2 CONT 235 [<5B>]
2 CONT 236 [<5B>]
2 CONT 237 [<5B>]
2 CONT 238 [<5B>]
2 CONT 239 [<5B>]
2 CONT 240 [<5B>]
2 CONT 241 [<5B>]
2 CONT 242 [<5B>]
2 CONT 243 [<5B>]
2 CONT 244 [<5B>]
2 CONT 245 [<5B>]
2 CONT 246 [<5B>]
2 CONT 247 [<5B>]
2 CONT 248 [<5B>]
2 CONT 249 [<5B>]
2 CONT 250 [<5B>]
2 CONT 251 [<5B>]
2 CONT 252 [<5B>]
2 CONT 253 [<5B>]
2 CONT 254 [<5B>]
2 CONT 255 [<5B>]
0 TRLR

View File

@@ -1,228 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2016-08-29" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000200000002" change="1472500307" id="E0000">
<type>Birth</type>
<dateval val="1955"/>
</event>
<event handle="_0000000300000003" change="1472500307" id="E0001">
<type>Death</type>
<dateval val="2017"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1472500307" id="I0001">
<gender>M</gender>
<name type="Birth Name">
<first>Paul</first>
<surname>Culley</surname>
</name>
<eventref hlink="_0000000200000002" role="Primary"/>
<eventref hlink="_0000000300000003" role="Primary"/>
<noteref hlink="_0000000400000004"/>
</person>
</people>
<notes>
<note handle="_0000000400000004" change="1472500307" id="N0000" type="Person Note">
<text>Table of Latin_1, ISO-8859-1 characters
32 [ ]
33 [!]
34 [&quot;]
35 [#]
36 [$]
37 [%]
38 [&amp;]
39 [']
40 [(]
41 [)]
42 [*]
43 [+]
44 [,]
45 [-]
46 [.]
47 [/]
48 [0]
49 [1]
50 [2]
51 [3]
52 [4]
53 [5]
54 [6]
55 [7]
56 [8]
57 [9]
58 [:]
59 [;]
60 [&lt;]
61 [=]
62 [&gt;]
63 [?]
64 [@]
65 [A]
66 [B]
67 [C]
68 [D]
69 [E]
70 [F]
71 [G]
72 [H]
73 [I]
74 [J]
75 [K]
76 [L]
77 [M]
78 [N]
79 [O]
80 [P]
81 [Q]
82 [R]
83 [S]
84 [T]
85 [U]
86 [V]
87 [W]
88 [X]
89 [Y]
90 [Z]
91 [[]
92 [\]
93 []]
94 [^]
95 [_]
96 [`]
97 [a]
98 [b]
99 [c]
100 [d]
101 [e]
102 [f]
103 [g]
104 [h]
105 [i]
106 [j]
107 [k]
108 [l]
109 [m]
110 [n]
111 [o]
112 [p]
113 [q]
114 [r]
115 [s]
116 [t]
117 [u]
118 [v]
119 [w]
120 [x]
121 [y]
122 [z]
123 [{]
124 [|]
125 [}]
126 [~]
160 [ ]
161 [¡]
162 [¢]
163 [£]
164 [¤]
165 [¥]
166 [¦]
167 [§]
168 [¨]
169 [©]
170 [ª]
171 [«]
172 [¬]
173 [­]
174 [®]
175 [¯]
176 [°]
177 [±]
178 [²]
179 [³]
180 [´]
181 [µ]
182 [¶]
183 [·]
184 [¸]
185 [¹]
186 [º]
187 [»]
188 [¼]
189 [½]
190 [¾]
191 [¿]
192 [À]
193 [Á]
194 [Â]
195 [Ã]
196 [Ä]
197 [Å]
198 [Æ]
199 [Ç]
200 [È]
201 [É]
202 [Ê]
203 [Ë]
204 [Ì]
205 [Í]
206 [Î]
207 [Ï]
208 [Ð]
209 [Ñ]
210 [Ò]
211 [Ó]
212 [Ô]
213 [Õ]
214 [Ö]
215 [×]
216 [Ø]
217 [Ù]
218 [Ú]
219 [Û]
220 [Ü]
221 [Ý]
222 [Þ]
223 [ß]
224 [à]
225 [á]
226 [â]
227 [ã]
228 [ä]
229 [å]
230 [æ]
231 [ç]
232 [è]
233 [é]
234 [ê]
235 [ë]
236 [ì]
237 [í]
238 [î]
239 [ï]
240 [ð]
241 [ñ]
242 [ò]
243 [ó]
244 [ô]
245 [õ]
246 [ö]
247 [÷]
248 [ø]
249 [ù]
250 [ú]
251 [û]
252 [ü]
253 [ý]
254 [þ]
255 [ÿ]</text>
</note>
</notes>
</database>

View File

@@ -1,199 +0,0 @@
0 HEAD
1 SOUR Tester
2 VERS 1.0
2 NAME The Tester
1 DATE 4 JUN 2016
2 TIME 10:19:42
1 FILE D:\Users\PRC\Documents\imp_MediaTest.ged
1 COPR Copyright (c) 2016 The Tester.
1 GEDC
2 VERS 5.5.1
2 FORM LINEAGE-LINKED
1 CHAR UTF-8
1 LANG English
0 @I1@ INDI
1 NAME The /Tester/
2 GIVN The
2 SURN Tester
1 OBJE
2 FORM jpeg
2 TITL Multimedia link embedded form v5.5
2 FILE test_emb_55.jpg
2 NOTE @N0010@
1 OBJE @M1@
1 OBJE @M3@
1 OBJE @M4@
1 OBJE
2 FILE test_emb_551.jpg
3 FORM jpeg
4 MEDI photo
2 TITL Multimedia link embedded form v5.5.1
2 NOTE @N0014@
1 OBJE @M5@
1 OBJE @M6@
1 OBJE
2 FORM jpeg
2 TITL Multimedia link embedded form v5.5 2nd copy
2 FILE test_emb_55.jpg
2 NOTE @N0018@
1 OBJE
2 FORM text/html
2 TITL Multimedia link embedded form v5.5 URL
2 FILE http://www.geni.com/photo/view?photo_id=6000000001341319061
2 NOTE @N0018@
1 OBJE @M7@
1 OBJE @M8@
1 OBJE
2 FORM URL
2 FILE http:\\obje.form.on_person.org
1 BIRT
2 TYPE Birth of the Tester
2 DATE 2 OCT 1864
2 OBJE
3 FORM URL
3 FILE http:\\obje.form.on_event.org
0 @M1@ OBJE
1 FORM jpeg
1 TITL Multimedia link to linked form v5.5 blob
1 BLOB
2 CONT .HM.......k.1..F.jwA.Dzzzzw............A....1.........0U.66..E.8
2 CONT .......A..k.a6.A.......A..k.........../6....G.......0../..U.....
2 CONT .w1/m........HC0..../...zzzzzzzz..5zzk..AnA..U..W6U....2rRrRrRrR
2 CONT .Dw...............k.1.......1..A...5ykE/zzzx/.g//.Hxzk6/.Tzy/.k1
2 CONT /Dw/.Tvz.E5zzUE9/kHz.Tw2/DzzzEEA.kE2zk5yzk2/zzs21.U2/Dw/.Tw/.Tzy
2 CONT /.fy/.HzzkHzzzo21Ds00.E2.UE2.U62/.k./Ds0.UE0/Do0..E8/UE2.U62.U9w
2 CONT /.Tx/.20.jg2/jo2..9u/.0U.6A.zk
1 OBJE @M2@
1 REFN Ref12345M1
2 TYPE SOMETEXT
1 NOTE @N0011@
1 RIN ID09876M1
1 CHAN
2 DATE 22 MAY 1987
3 TIME 13:58:11
0 @M2@ OBJE
1 FORM jpeg
1 TITL 2nd blob Multimedia link to linked form v5.5 blob
1 BLOB
2 CONT 67890gramps doesn't do this anyway, so don't bother doing it right.
0 @M3@ OBJE
1 FORM jpeg
1 TITL Multimedia link to linked form Gramps style v5.5ish file
1 FILE test.jpg
1 NOTE @N0012@
1 CHAN
2 DATE 23 MAY 1987
3 TIME 14:48:01
0 @M4@ OBJE
1 FILE test.jpg
2 FORM jpeg
3 TYPE photo
2 TITL Multimedia link to linked form v5.5.1 file
1 REFN Ref1234567M4
2 TYPE SOMETEXT
1 NOTE @N0013@
1 SOUR A Great Photographer
2 TEXT who shall remain un-named
2 QUAY 0
1 RIN ID098765M4
1 CHAN
2 DATE 24 MAY 1987
3 TIME 14:38:01
0 @M5@ OBJE
1 FILE test.jpg
2 TITL Multimedia link to linked form FTM style file
2 DATE 6/4/2016 9:33:57 AM
2 TEXT A fine gentelman was he, upstanding in his community and a great
3 CONC believer in the testing of open source software.
1 NOTE @N0015@
1 NOTE @N0016@
0 @M6@ OBJE
1 FILE test.jpg
2 FORM jpeg
3 TYPE photo
2 TITL Multimedia link to linked form v5.5.1 with two files(1)
1 FILE test1.jpg
2 FORM jpeg
3 TYPE photo
2 TITL Multimedia link to linked form v5.5.1 with two files(2)
1 REFN Ref1234567M6
2 TYPE SOMETEXT
1 NOTE @N0017@
1 SOUR @S1@
2 PAGE 77, 78 discussion of multimedia link with two files
2 DATA
3 DATE 7 JUN 2014
3 TEXT A source who shall remain un-named
2 QUAY 3
1 RIN ID098765M6
1 CHAN
2 DATE 26 MAY 1987
3 TIME 14:40:01
0 @M7@ OBJE
1 FILE http://s6.postimg.org/8i2erq27l/Preserve_Record_Numbers_Option.png
2 FORM png
3 TYPE photo
2 TITL Multimedia link to linked form v5.5.1 with URL
0 @M8@ OBJE
1 FILE No_path_No_Title_NoForm.jpg
0 @S1@ SOUR
1 AUTH The Tester
1 TITL The Testers personal files
1 PUBL Name: Tester Publishing Operations, Inc.; Location: OSF world
0 @N0010@ NOTE Media note test: Multimedia link embedded form v5.5
1 CONT n OBJE {1:1} p.55
1 CONT +1 FORM <MULTIMEDIA_FORMAT> {1:1} p.48
1 CONT +1 TITL <DESCRIPTIVE_TITLE> {0:1} p.43
1 CONT +1 FILE <MULTIMEDIA_FILE_REFERENCE> {1:1} p.47
1 CONT +1 <<NOTE_STRUCTURE>> {0:M} p.33
0 @N0011@ NOTE Media note test: Multimedia link to linked form v5.5 blob
1 CONT n @XREF:OBJE@ OBJE {1:1}
1 CONT +1 FORM <MULTIMEDIA_FORMAT> {1:1} p.48
1 CONT +1 TITL <DESCRIPTIVE_TITLE> {0:1} p.43
1 CONT +1 <<NOTE_STRUCTURE>> {0:M} p.33
1 CONT +1 BLOB {1:1}
1 CONT +2 CONT <ENCODED_MULTIMEDIA_LINE> {1:M} p.43
1 CONT +1 OBJE @<XREF:OBJE>@ /* chain to continued object */ {0:1} p.26
1 CONT +1 REFN <USER_REFERENCE_NUMBER> {0:M} p.55
1 CONT +2 TYPE <USER_REFERENCE_TYPE> {0:1} p.55
1 CONT +1 RIN <AUTOMATED_RECORD_ID> {0:1} p.38
1 CONT +1 <<CHANGE_DATE>> {0:1} p.29
0 @N0012@ NOTE Media note test: Multimedia link to linked form Gramps style v5.5ish file
1 CONT n @XREF:OBJE@ OBJE {1:1}
1 CONT +1 FORM <MULTIMEDIA_FORMAT> {1:1} p.48
1 CONT +1 TITL <DESCRIPTIVE_TITLE> {0:1} p.43
1 CONT +1 FILE <MULTIMEDIA_FILE_REFERENCE> {1:1} p.47
1 CONT +1 <<NOTE_STRUCTURE>> {0:M} p.33
0 @N0013@ NOTE Media note test: Multimedia link to linked form v5.5.1 file
1 CONT n @XREF:OBJE@ OBJE {1:1}
1 CONT +1 FILE <MULTIMEDIA_FILE_REFN> {1:M} p.54
1 CONT +2 FORM <MULTIMEDIA_FORMAT> {1:1} p.54
1 CONT +3 TYPE <SOURCE_MEDIA_TYPE> {0:1} p.62
1 CONT +2 TITL <DESCRIPTIVE_TITLE> {0:1} p.48
1 CONT +1 REFN <USER_REFERENCE_NUMBER> {0:M} p.63, 64 >> note?
1 CONT +2 TYPE <USER_REFERENCE_TYPE> {0:1} p.64
1 CONT +1 RIN <AUTOMATED_RECORD_ID> {0:1} p.43 >> Attribute ID?
1 CONT +1 <<NOTE_STRUCTURE>> {0:M} p.37
1 CONT +1 <<SOURCE_CITATION>> {0:M} p.39
1 CONT +1 <<CHANGE_DATE>> {0:1} p.31
0 @N0014@ NOTE Media note test: Multimedia link embedded form v5.5.1
1 CONT This note is not in the 5.5.1 spec, but is an obvious extrapolation from 5.5.
1 CONT n OBJE
1 CONT +1 FILE <MULTIMEDIA_FILE_REFN> {1:M} p.54
1 CONT +2 FORM <MULTIMEDIA_FORMAT> {1:1} p.54
1 CONT +3 MEDI <SOURCE_MEDIA_TYPE> {0:1} p.62
1 CONT +1 TITL <DESCRIPTIVE_TITLE> {0:1} p.48
0 @N0015@ NOTE
1 CONC A note on the FTM media, to see how this integrates... The DATE line
1 CONC is bad; it doesnt follow Gedcom standard at all, and includes the time.
1 CONT The TEXT line comes from the FTM media description. This is the media Note.
0 @N0016@ NOTE Multimedia link to linked form FTM style
1 CONT n @XREF:OBJE@ OBJE {1:1}
1 CONT +1 FILE <MULTIMEDIA_FILE_REFN> {1:M} p.54
1 CONT +2 TITL <DESCRIPTIVE_TITLE> {0:1} p.43
1 CONT +2 DATE text string from media page, sometimes populated from exif "mm/dd/yyyy hh:mn:ss AM"
1 CONT +2 TEXT text string from FTM media description sometimes populated from exif comments
1 CONT +1 <<NOTE_STRUCTURE>> {0:M} p.33
0 @N0017@ NOTE Multimedia link to linked form v5.5.1 with two files
0 @N0018@ NOTE Multimedia embedded 2nd copy v5.5
0 TRLR

View File

@@ -1,320 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE database PUBLIC "-//Gramps//DTD Gramps XML 1.7.1//EN"
"http://gramps-project.org/xml/1.7.1/grampsxml.dtd">
<database xmlns="http://gramps-project.org/xml/1.7.1/">
<header>
<created date="2017-05-30" version="5.0.0-alpha1"/>
<researcher>
</researcher>
</header>
<events>
<event handle="_0000000f0000000f" change="1" id="E0000">
<type>Birth</type>
<dateval val="1864-10-02"/>
<description>Birth of the Tester</description>
<noteref hlink="_0000001000000010"/>
</event>
</events>
<people>
<person handle="_0000000100000001" change="1" id="I0001">
<gender>U</gender>
<name type="Birth Name">
<first>The</first>
<surname>Tester</surname>
</name>
<eventref hlink="_0000000f0000000f" role="Primary"/>
<objref hlink="_0000000300000003"/>
<objref hlink="_0000000400000004"/>
<objref hlink="_0000000500000005"/>
<objref hlink="_0000000600000006"/>
<objref hlink="_0000000800000008"/>
<objref hlink="_0000000900000009"/>
<objref hlink="_0000000a0000000a"/>
<objref hlink="_0000000300000003"/>
<objref hlink="_0000000c0000000c"/>
<objref hlink="_0000000d0000000d"/>
<objref hlink="_0000000e0000000e"/>
<url href="http:\\obje.form.on_person.org" type="Web Home"/>
<noteref hlink="_0000001100000011"/>
</person>
</people>
<citations>
<citation handle="_0000001d0000001d" change="1" id="C0000">
<confidence>0</confidence>
<noteref hlink="_0000001c0000001c"/>
<sourceref hlink="_0000001b0000001b"/>
</citation>
<citation handle="_0000002700000027" change="1" id="C0001">
<dateval val="2014-06-07"/>
<page>77, 78 discussion of multimedia link with two files</page>
<confidence>4</confidence>
<noteref hlink="_0000002600000026"/>
<sourceref hlink="_0000002500000025"/>
</citation>
</citations>
<sources>
<source handle="_0000001b0000001b" change="1" id="S0002">
<stitle>A Great Photographer</stitle>
</source>
<source handle="_0000002500000025" change="1" id="S0001">
<stitle>The Testers personal files</stitle>
<sauthor>The Tester</sauthor>
<spubinfo>Name: Tester Publishing Operations, Inc.; Location: OSF world</spubinfo>
</source>
</sources>
<objects>
<object handle="_0000000300000003" change="1" id="O0000">
<file src="test_emb_55.jpg" mime="image/jpeg" description="Multimedia link embedded form v5.5"/>
<noteref hlink="_0000000200000002"/>
</object>
<object handle="_0000000400000004" change="548708291" id="M1">
<file src="" mime="" description="Multimedia link to linked form v5.5 blob"/>
<attribute type="REFN" value="Ref12345M1">
<noteref hlink="_0000001200000012"/>
</attribute>
<attribute type="RIN" value="ID09876M1"/>
<noteref hlink="_0000001300000013"/>
<noteref hlink="_0000001400000014"/>
</object>
<object handle="_0000000500000005" change="548797681" id="M3">
<file src="test.jpg" mime="image/jpeg" description="Multimedia link to linked form Gramps style v5.5ish file"/>
<noteref hlink="_0000001700000017"/>
<noteref hlink="_0000001800000018"/>
</object>
<object handle="_0000000600000006" change="548883481" id="M4">
<file src="test.jpg" mime="image/jpeg" description="Multimedia link to linked form v5.5.1 file"/>
<attribute type="Media-Type" value="Photo"/>
<attribute type="REFN" value="Ref1234567M4">
<noteref hlink="_0000001900000019"/>
</attribute>
<attribute type="RIN" value="ID098765M4"/>
<noteref hlink="_0000001a0000001a"/>
<noteref hlink="_0000001e0000001e"/>
<citationref hlink="_0000001d0000001d"/>
</object>
<object handle="_0000000800000008" change="1" id="O0001">
<file src="test_emb_551.jpg" mime="image/jpeg" description="Multimedia link embedded form v5.5.1"/>
<attribute type="Media-Type" value="Photo"/>
<noteref hlink="_0000000700000007"/>
</object>
<object handle="_0000000900000009" change="1" id="M5">
<file src="test.jpg" mime="image/jpeg" description="Multimedia link to linked form FTM style file"/>
<noteref hlink="_0000001f0000001f"/>
<noteref hlink="_0000002000000020"/>
<noteref hlink="_0000002100000021"/>
<noteref hlink="_0000002200000022"/>
<datestr val="6/4/2016 9:33:57 AM"/>
</object>
<object handle="_0000000a0000000a" change="549056401" id="M6">
<file src="test.jpg" mime="image/jpeg" description="Multimedia link to linked form v5.5.1 with two files(1)"/>
<attribute type="Media-Type" value="Photo"/>
<attribute type="REFN" value="Ref1234567M6">
<noteref hlink="_0000002300000023"/>
</attribute>
<attribute type="RIN" value="ID098765M6"/>
<noteref hlink="_0000002400000024"/>
<noteref hlink="_0000002800000028"/>
<citationref hlink="_0000002700000027"/>
</object>
<object handle="_0000000c0000000c" change="1" id="O0002">
<file src="http://www.geni.com/photo/view?photo_id=6000000001341319061" mime="unknown" description="Multimedia link embedded form v5.5 URL"/>
<noteref hlink="_0000000b0000000b"/>
</object>
<object handle="_0000000d0000000d" change="1" id="M7">
<file src="http://s6.postimg.org/8i2erq27l/Preserve_Record_Numbers_Option.png" mime="image/png" description="Multimedia link to linked form v5.5.1 with URL"/>
<attribute type="Media-Type" value="Photo"/>
</object>
<object handle="_0000000e0000000e" change="1" id="M8">
<file src="No_path_No_Title_NoForm.jpg" mime="image/jpeg" description="No_path_No_Title_NoForm.jpg"/>
<noteref hlink="_0000002900000029"/>
</object>
<object handle="_0000001500000015" change="1" id="M2">
<file src="" mime="" description="2nd blob Multimedia link to linked form v5.5 blob"/>
<noteref hlink="_0000001600000016"/>
</object>
</objects>
<notes>
<note handle="_0000000200000002" change="1" id="N0010" type="Media Note">
<text>Media note test: Multimedia link embedded form v5.5
n OBJE {1:1} p.55
+1 FORM &lt;MULTIMEDIA_FORMAT&gt; {1:1} p.48
+1 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.43
+1 FILE &lt;MULTIMEDIA_FILE_REFERENCE&gt; {1:1} p.47
+1 &lt;&lt;NOTE_STRUCTURE&gt;&gt; {0:M} p.33</text>
</note>
<note handle="_0000000700000007" change="1" id="N0014" type="Media Note">
<text>Media note test: Multimedia link embedded form v5.5.1
This note is not in the 5.5.1 spec, but is an obvious extrapolation from 5.5.
n OBJE
+1 FILE &lt;MULTIMEDIA_FILE_REFN&gt; {1:M} p.54
+2 FORM &lt;MULTIMEDIA_FORMAT&gt; {1:1} p.54
+3 MEDI &lt;SOURCE_MEDIA_TYPE&gt; {0:1} p.62
+1 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.48</text>
</note>
<note handle="_0000000b0000000b" change="1" id="N0018" type="Media Note">
<text>Multimedia embedded 2nd copy v5.5</text>
</note>
<note handle="_0000001000000010" change="1" id="N0000" type="Event Note">
<text>http:\\obje.form.on_event.org</text>
</note>
<note handle="_0000001100000011" change="1" id="N0001" type="GEDCOM import">
<text>Records not imported into INDI (individual) Gramps ID I0001:
Could not import test_emb_55.jpg Line 18: 1 OBJE
Could not import test_emb_551.jpg Line 26: 1 OBJE
Could not import test_emb_55.jpg Line 34: 1 OBJE
</text>
<style name="fontface" value="Monospace">
<range start="0" end="326"/>
</style>
</note>
<note handle="_0000001200000012" change="1" id="N0002" type="REFN-TYPE">
<text>SOMETEXT</text>
</note>
<note handle="_0000001300000013" change="1" id="N0011" type="Media Note">
<text>Media note test: Multimedia link to linked form v5.5 blob
n @XREF:OBJE@ OBJE {1:1}
+1 FORM &lt;MULTIMEDIA_FORMAT&gt; {1:1} p.48
+1 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.43
+1 &lt;&lt;NOTE_STRUCTURE&gt;&gt; {0:M} p.33
+1 BLOB {1:1}
+2 CONT &lt;ENCODED_MULTIMEDIA_LINE&gt; {1:M} p.43
+1 OBJE @&lt;XREF:OBJE&gt;@ /* chain to continued object */ {0:1} p.26
+1 REFN &lt;USER_REFERENCE_NUMBER&gt; {0:M} p.55
+2 TYPE &lt;USER_REFERENCE_TYPE&gt; {0:1} p.55
+1 RIN &lt;AUTOMATED_RECORD_ID&gt; {0:1} p.38
+1 &lt;&lt;CHANGE_DATE&gt;&gt; {0:1} p.29</text>
</note>
<note handle="_0000001400000014" change="1" id="N0003" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M1:
Tag recognized but not supported Line 58: 1 BLOB
.HM.......k.1..F.jwA.Dzzzzw............A....1.........0U.66..E.8
.......A..k.a6.A.......A..k.........../6....G.......0../..U.....
.w1/m........HC0..../...zzzzzzzz..5zzk..AnA..U..W6U....2rRrRrRrR
.Dw...............k.1.......1..A...5ykE/zzzx/.g//.Hxzk6/.Tzy/.k1
/Dw/.Tvz.E5zzUE9/kHz.Tw2/DzzzEEA.kE2zk5yzk2/zzs21.U2/Dw/.Tw/.Tzy
/.fy/.HzzkHzzzo21Ds00.E2.UE2.U62/.k./Ds0.UE0/Do0..E8/UE2.U62.U9w
/.Tx/.20.jg2/jo2..9u/.0U.6A.zk
Line ignored as not understood Line 66: 1 OBJE @M2@
Filename omitted Line 55: 0 M1 OBJE
</text>
<style name="fontface" value="Monospace">
<range start="0" end="1367"/>
</style>
</note>
<note handle="_0000001600000016" change="1" id="N0004" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M2:
Tag recognized but not supported Line 77: 1 BLOB
67890gramps doesn't do this anyway, so don't bother doing it right.
Filename omitted Line 74: 0 M2 OBJE
</text>
<style name="fontface" value="Monospace">
<range start="0" end="400"/>
</style>
</note>
<note handle="_0000001700000017" change="1" id="N0012" type="Media Note">
<text>Media note test: Multimedia link to linked form Gramps style v5.5ish file
n @XREF:OBJE@ OBJE {1:1}
+1 FORM &lt;MULTIMEDIA_FORMAT&gt; {1:1} p.48
+1 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.43
+1 FILE &lt;MULTIMEDIA_FILE_REFERENCE&gt; {1:1} p.47
+1 &lt;&lt;NOTE_STRUCTURE&gt;&gt; {0:M} p.33</text>
</note>
<note handle="_0000001800000018" change="1" id="N0005" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M3:
Could not import test.jpg Line 82: 1 FILE test.jpg
</text>
<style name="fontface" value="Monospace">
<range start="0" end="163"/>
</style>
</note>
<note handle="_0000001900000019" change="1" id="N0006" type="REFN-TYPE">
<text>SOMETEXT</text>
</note>
<note handle="_0000001a0000001a" change="1" id="N0013" type="Media Note">
<text>Media note test: Multimedia link to linked form v5.5.1 file
n @XREF:OBJE@ OBJE {1:1}
+1 FILE &lt;MULTIMEDIA_FILE_REFN&gt; {1:M} p.54
+2 FORM &lt;MULTIMEDIA_FORMAT&gt; {1:1} p.54
+3 TYPE &lt;SOURCE_MEDIA_TYPE&gt; {0:1} p.62
+2 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.48
+1 REFN &lt;USER_REFERENCE_NUMBER&gt; {0:M} p.63, 64 &gt;&gt; note?
+2 TYPE &lt;USER_REFERENCE_TYPE&gt; {0:1} p.64
+1 RIN &lt;AUTOMATED_RECORD_ID&gt; {0:1} p.43 &gt;&gt; Attribute ID?
+1 &lt;&lt;NOTE_STRUCTURE&gt;&gt; {0:M} p.37
+1 &lt;&lt;SOURCE_CITATION&gt;&gt; {0:M} p.39
+1 &lt;&lt;CHANGE_DATE&gt;&gt; {0:1} p.31</text>
</note>
<note handle="_0000001c0000001c" change="1" id="N0007" type="Source text">
<text>who shall remain un-named</text>
</note>
<note handle="_0000001e0000001e" change="1" id="N0008" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M4:
Could not import test.jpg Line 88: 1 FILE test.jpg
</text>
<style name="fontface" value="Monospace">
<range start="0" end="163"/>
</style>
</note>
<note handle="_0000001f0000001f" change="1" id="N0009" type="Media Note">
<text>A fine gentelman was he, upstanding in his community and a great believer in the testing of open source software.</text>
</note>
<note handle="_0000002000000020" change="1" id="N0015" type="Media Note">
<text>A note on the FTM media, to see how this integrates... The DATE line is bad; it doesnt follow Gedcom standard at all, and includes the time.
The TEXT line comes from the FTM media description. This is the media Note.</text>
</note>
<note handle="_0000002100000021" change="1" id="N0016" type="Media Note">
<text>Multimedia link to linked form FTM style
n @XREF:OBJE@ OBJE {1:1}
+1 FILE &lt;MULTIMEDIA_FILE_REFN&gt; {1:M} p.54
+2 TITL &lt;DESCRIPTIVE_TITLE&gt; {0:1} p.43
+2 DATE text string from media page, sometimes populated from exif &quot;mm/dd/yyyy hh:mn:ss AM&quot;
+2 TEXT text string from FTM media description sometimes populated from exif comments
+1 &lt;&lt;NOTE_STRUCTURE&gt;&gt; {0:M} p.33</text>
</note>
<note handle="_0000002200000022" change="1" id="N0017" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M5:
Could not import test.jpg Line 103: 1 FILE test.jpg
</text>
<style name="fontface" value="Monospace">
<range start="0" end="163"/>
</style>
</note>
<note handle="_0000002300000023" change="1" id="N0019" type="REFN-TYPE">
<text>SOMETEXT</text>
</note>
<note handle="_0000002400000024" change="1" id="N0020" type="Media Note">
<text>Multimedia link to linked form v5.5.1 with two files</text>
</note>
<note handle="_0000002600000026" change="1" id="N0021" type="Source text">
<text>A source who shall remain un-named</text>
</note>
<note handle="_0000002800000028" change="1" id="N0022" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M6:
Could not import test.jpg Line 111: 1 FILE test.jpg
Multiple FILE in a single OBJE ignored Line 115: 1 FILE test1.jpg
Skipped subordinate line Line 116: 2 FORM jpeg
Skipped subordinate line Line 117: 3 TYPE photo
Skipped subordinate line Line 118: 2 TITL Multimedia link to linked form v5.5.1 with two files(2)
</text>
<style name="fontface" value="Monospace">
<range start="0" end="588"/>
</style>
</note>
<note handle="_0000002900000029" change="1" id="N0023" type="GEDCOM import">
<text>Records not imported into OBJE (multi-media object) Gramps ID M8:
Could not import No_path_No_Title_NoForm.jpg Line 138: 1 FILE No_path_No_Title_NoForm.jpg
</text>
<style name="fontface" value="Monospace">
<range start="0" end="182"/>
</style>
</note>
</notes>
</database>

View File

@@ -1,34 +0,0 @@
0 HEAD
1 SOUR RootsMagic
2 NAME RootsMagic
2 VERS 7.0.2.2
2 CORP RootsMagic, Inc.
3 ADDR PO Box 495
4 CONT Springville, UT 84663
4 CONT USA
3 PHON 1-800-ROOTSMAGIC
1 DEST RootsMagic
1 DATE 26 JAN 2015
1 FILE rm.ged
1 GEDC
2 VERS 5.5.1
2 FORM LINEAGE-LINKED
1 CHAR UTF-8
0 @I1@ INDI
1 NAME Living1
1 SEX M
1 NOTE Inline 0
1 NOTE @N0@
1 NOTE Inline 1
1 SOUR Inline Source 1
0 @N0@ NOTE
1 CONC XREF N0
0 @I01@ INDI
1 NAME Living01
1 SEX M
1 SOUR inline Source 2
0 @S1@ SOUR
1 TITL Source S1
0 @S01@ SOUR
1 TITL Source S01
0 TRLR

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